FD.io VPP  v17.04.2-2-ga8f93f8
Vector Packet Processing
pg.c
Go to the documentation of this file.
1 /*
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 
22 typedef struct {
26 
27 static inline void
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 
34 uword
35 unformat_pg_gre_header (unformat_input_t * input, va_list * args)
36 {
37  pg_stream_t * s = va_arg (*args, pg_stream_t *);
39  u32 group_index, error;
40 
41  h = pg_create_edit_group (s, sizeof (h[0]), sizeof (gre_header_t),
42  &group_index);
44 
46 
47  error = 1;
48  if (! unformat (input, "%U",
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)
75  return error == 0;
76 }
77 
Definition: edit.h:64
static void pg_gre_header_init(pg_gre_header_t *e)
Definition: pg.c:28
#define PG_EDIT_LO
Definition: edit.h:83
GRE related global data.
Definition: gre.h:130
static void pg_edit_set_fixed(pg_edit_t *e, u64 value)
Definition: edit.h:153
A GRE payload protocol registration.
Definition: gre.h:42
uword unformat_user(unformat_input_t *input, unformat_function_t *func,...)
Definition: unformat.c:982
uword unformat_pg_edit(unformat_input_t *input, va_list *args)
Definition: edit.c:106
static pg_node_t * pg_get_node(uword node_index)
Definition: pg.h:350
pg_edit_type_t type
Definition: edit.h:66
#define pg_edit_init(e, type, field)
Definition: edit.h:116
pg_edit_t protocol
Definition: pg.c:24
static void * pg_create_edit_group(pg_stream_t *s, int n_edit_bytes, int n_packet_bytes, u32 *group_index)
Definition: pg.h:225
u8 * values[2]
Definition: edit.h:82
unformat_function_t unformat_gre_protocol_net_byte_order
Definition: gre.h:214
struct _unformat_input_t unformat_input_t
u32 node_index
Node which handles this type.
Definition: gre.h:50
uword unformat_pg_gre_header(unformat_input_t *input, va_list *args)
Definition: pg.c:35
vec_header_t h
Definition: buffer.c:275
unformat_function_t * unformat_edit
Definition: pg.h:307
pg_edit_t flags_and_version
Definition: pg.c:23
unsigned int u32
Definition: types.h:88
static void pg_free_edit_group(pg_stream_t *s)
Definition: pg.h:278
Definition: pg.h:96
u64 uword
Definition: types.h:112
unsigned short u16
Definition: types.h:57
static gre_protocol_info_t * gre_get_protocol_info(gre_main_t *em, gre_protocol_t protocol)
Definition: gre.h:180
gre_main_t gre_main
Definition: gre.c:22
Definition: pg.h:304
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:971