blob: cc065d3b6b5ef6659d8d5fb4f793c052fd97a237 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * hdlc_pg.c: packet generator gre interface
3 *
4 * Copyright (c) 2012 Cisco and/or its affiliates.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#include <vlib/vlib.h>
19#include <vnet/pg/pg.h>
20#include <vnet/gre/gre.h>
21
22typedef struct {
23 pg_edit_t flags_and_version;
24 pg_edit_t protocol;
25} pg_gre_header_t;
26
27static inline void
28pg_gre_header_init (pg_gre_header_t * e)
29{
30 pg_edit_init (&e->flags_and_version, gre_header_t, flags_and_version);
31 pg_edit_init (&e->protocol, gre_header_t, protocol);
32}
33
34uword
35unformat_pg_gre_header (unformat_input_t * input, va_list * args)
36{
37 pg_stream_t * s = va_arg (*args, pg_stream_t *);
38 pg_gre_header_t * h;
39 u32 group_index, error;
40
41 h = pg_create_edit_group (s, sizeof (h[0]), sizeof (gre_header_t),
42 &group_index);
43 pg_gre_header_init (h);
44
45 pg_edit_set_fixed (&h->flags_and_version, 0);
46
47 error = 1;
48 if (! unformat (input, "%U",
49 unformat_pg_edit,
50 unformat_gre_protocol_net_byte_order, &h->protocol))
51 goto done;
52
53 {
54 gre_main_t * pm = &gre_main;
55 gre_protocol_info_t * pi = 0;
56 pg_node_t * pg_node = 0;
57
58 if (h->protocol.type == PG_EDIT_FIXED)
59 {
60 u16 t = *(u16 *) h->protocol.values[PG_EDIT_LO];
61 pi = gre_get_protocol_info (pm, clib_net_to_host_u16 (t));
62 if (pi && pi->node_index != ~0)
63 pg_node = pg_get_node (pi->node_index);
64 }
65
66 if (pg_node && pg_node->unformat_edit
67 && unformat_user (input, pg_node->unformat_edit, s))
68 ;
69 }
70
71 error = 0;
72 done:
73 if (error)
74 pg_free_edit_group (s);
75 return error == 0;
76}
77