Line data Source code
1 : /*
2 : * pg.c: packet generator for L2TPv3 header
3 : *
4 : * Copyright (c) 2013 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 <l2tp/l2tp.h>
21 :
22 : typedef struct
23 : {
24 : pg_edit_t session_id;
25 : pg_edit_t cookie;
26 : } pg_l2tp_header_t;
27 :
28 : typedef struct
29 : {
30 : pg_edit_t l2_sublayer;
31 : } pg_l2tp_header_l2_sublayer_t;
32 :
33 : static inline void
34 0 : pg_l2tp_header_init (pg_l2tp_header_t * e)
35 : {
36 0 : pg_edit_init (&e->session_id, l2tpv3_header_t, session_id);
37 0 : pg_edit_init (&e->cookie, l2tpv3_header_t, cookie);
38 0 : }
39 :
40 : uword
41 0 : unformat_pg_l2tp_header (unformat_input_t * input, va_list * args)
42 : {
43 0 : pg_stream_t *s = va_arg (*args, pg_stream_t *);
44 : pg_l2tp_header_t *h;
45 : u32 group_index, error;
46 0 : vlib_main_t *vm = vlib_get_main ();
47 :
48 0 : h = pg_create_edit_group (s, sizeof (h[0]),
49 : sizeof (l2tpv3_header_t) - sizeof (u32),
50 : &group_index);
51 0 : pg_l2tp_header_init (h);
52 :
53 0 : error = 1;
54 :
55 : /* session id and cookie are required */
56 0 : if (!unformat (input, "L2TP: session_id %U cookie %U",
57 : unformat_pg_edit, unformat_pg_number, &h->session_id,
58 : unformat_pg_edit, unformat_pg_number, &h->cookie))
59 : {
60 0 : goto done;
61 : }
62 :
63 : /* "l2_sublayer <value>" is optional */
64 0 : if (unformat (input, "l2_sublayer"))
65 : {
66 : pg_l2tp_header_l2_sublayer_t *h2;
67 :
68 0 : h2 = pg_add_edits (s, sizeof (h2[0]), sizeof (u32), group_index);
69 0 : pg_edit_init (&h2->l2_sublayer, l2tpv3_header_t, l2_specific_sublayer);
70 0 : if (!unformat_user (input, unformat_pg_edit,
71 : unformat_pg_number, &h2->l2_sublayer))
72 : {
73 0 : goto done;
74 : }
75 : }
76 :
77 : /* Parse an ethernet header if it is present */
78 : {
79 0 : pg_node_t *pg_node = 0;
80 : vlib_node_t *eth_lookup_node;
81 :
82 0 : eth_lookup_node = vlib_get_node_by_name (vm, (u8 *) "ethernet-input");
83 0 : ASSERT (eth_lookup_node);
84 :
85 0 : pg_node = pg_get_node (eth_lookup_node->index);
86 :
87 0 : if (pg_node && pg_node->unformat_edit
88 0 : && unformat_user (input, pg_node->unformat_edit, s))
89 : ;
90 : }
91 :
92 0 : error = 0;
93 :
94 0 : done:
95 0 : if (error)
96 0 : pg_free_edit_group (s);
97 0 : return error == 0;
98 : }
99 :
100 : /*
101 : * fd.io coding-style-patch-verification: ON
102 : *
103 : * Local Variables:
104 : * eval: (c-set-style "gnu")
105 : * End:
106 : */
|