FD.io VPP  v20.09-64-g4f7b92f0a
Vector Packet Processing
pg.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 /*
16  * pg.h: VLIB packet generator
17  *
18  * Copyright (c) 2008 Eliot Dresselhaus
19  *
20  * Permission is hereby granted, free of charge, to any person obtaining
21  * a copy of this software and associated documentation files (the
22  * "Software"), to deal in the Software without restriction, including
23  * without limitation the rights to use, copy, modify, merge, publish,
24  * distribute, sublicense, and/or sell copies of the Software, and to
25  * permit persons to whom the Software is furnished to do so, subject to
26  * the following conditions:
27  *
28  * The above copyright notice and this permission notice shall be
29  * included in all copies or substantial portions of the Software.
30  *
31  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38  */
39 
40 #ifndef included_vlib_pg_h
41 #define included_vlib_pg_h
42 
43 #include <vlib/vlib.h> /* for VLIB_N_RX_TX */
44 #include <vnet/pg/edit.h>
45 #include <vppinfra/fifo.h> /* for buffer_fifo */
46 #include <vppinfra/pcap.h>
47 #include <vnet/interface.h>
48 #include <vnet/gso/gro.h>
49 
51 
52 struct pg_main_t;
53 struct pg_stream_t;
54 
55 typedef struct pg_edit_group_t
56 {
57  /* Edits in this group. */
59 
60  /* Vector of non-fixed edits for this group. */
62 
63  /* Fixed edits for this group. */
66 
67  /* Byte offset where packet data begins. */
69 
70  /* Number of packet bytes for this edit group. */
72 
73  /* Function to perform miscellaneous edits (e.g. set IP checksum, ...). */
74  void (*edit_function) (struct pg_main_t * pg,
75  struct pg_stream_t * s,
76  struct pg_edit_group_t * g,
77  u32 * buffers, u32 n_buffers);
78 
79  /* Opaque data for edit function's use. */
82 
83 /* Packets are made of multiple buffers chained together.
84  This struct keeps track of data per-chain index. */
85 typedef struct
86 {
87  /* Vector of buffer edits for this stream and buffer index. */
89 
90  /* Buffers pre-initialized with fixed buffer data for this stream. */
92 
94 
95 typedef struct pg_stream_t
96 {
97  /* Stream name. */
98  u8 *name;
99 
101 
102  /* Stream is currently enabled. */
103 #define PG_STREAM_FLAGS_IS_ENABLED (1 << 0)
104 
105  /* Edit groups are created by each protocol level (e.g. ethernet,
106  ip4, tcp, ...). */
108 
110 
111  /* Min/max packet size. */
112  u32 min_packet_bytes, max_packet_bytes;
113 
114  /* Vector of non-fixed edits for this stream.
115  All fixed edits are performed and placed into fixed_packet_data. */
117 
118  /* Packet data with all fixed edits performed.
119  All packets in stream are initialized according with this data.
120  Mask specifies which bits of packet data are covered by fixed edits. */
122 
123  /* Size to use for buffers. 0 means use buffers big enough
124  for max_packet_bytes. */
126 
127  /* Buffer flags to set in each packet e.g. checksum offload flags */
129 
130  /* Last packet length if packet size edit type is increment. */
132 
133  /* Index into main interface pool for this stream. */
135 
136  /* Interface used to mark packets for this stream. May be different
137  than hw/sw index from pg main interface pool. They will be
138  different if this stream is being used generate buffers as if
139  they were received on a non-pg interface. For example, suppose you
140  are trying to test vlan code and you want to generate buffers that
141  appear to come from an ethernet interface. */
143 
144  /* Node where stream's buffers get put. */
146 
147  /* Worker thread index */
149 
150  /* Output next index to reach output node from stream input node. */
152 
154 
155  /* Number of packets currently generated. */
157 
158  /* Stream is disabled when packet limit is reached.
159  Zero means no packet limit. */
161 
162  /* Only generate up to n_max_frame per frame. */
164 
165  /* Rate for this stream in packets/second.
166  Zero means unlimited rate. */
168 
170 
172 
174 
178 } pg_stream_t;
179 
180 always_inline void
182 {
183  vec_free (bi->edits);
185 }
186 
187 always_inline void
189 {
190  pg_edit_t *e;
191  vec_foreach (e, g->edits) pg_edit_free (e);
192  vec_free (g->edits);
195 }
196 
197 always_inline void
199 {
200  int i;
201  pg_edit_group_t *g;
202  pg_edit_t *e;
206  vec_free (s->edit_groups);
209  vec_free (s->name);
210  for (i = 0; i < vec_len (s->replay_packet_templates); i++)
214 
215  {
216  pg_buffer_index_t *bi;
219  }
220 }
221 
222 always_inline int
224 {
225  return (s->flags & PG_STREAM_FLAGS_IS_ENABLED) != 0;
226 }
227 
230 {
231  return vec_elt_at_index (s->edit_groups, group_index);
232 }
233 
234 always_inline void *
236  int n_edit_bytes, int n_packet_bytes, u32 * group_index)
237 {
238  pg_edit_group_t *g;
239  int n_edits;
240 
241  vec_add2 (s->edit_groups, g, 1);
242  if (group_index)
243  *group_index = g - s->edit_groups;
244 
245  ASSERT (n_edit_bytes % sizeof (pg_edit_t) == 0);
246  n_edits = n_edit_bytes / sizeof (pg_edit_t);
247  vec_resize (g->edits, n_edits);
248 
250 
251  return g->edits;
252 }
253 
254 always_inline void *
255 pg_add_edits (pg_stream_t * s, int n_edit_bytes, int n_packet_bytes,
256  u32 group_index)
257 {
258  pg_edit_group_t *g = pg_stream_get_group (s, group_index);
259  pg_edit_t *e;
260  int n_edits;
261  ASSERT (n_edit_bytes % sizeof (pg_edit_t) == 0);
262  n_edits = n_edit_bytes / sizeof (pg_edit_t);
263  vec_add2 (g->edits, e, n_edits);
265  return e;
266 }
267 
268 always_inline void *
270 {
271  pg_edit_group_t *g = pg_stream_get_group (s, group_index);
272  return g->edits;
273 }
274 
275 /* Number of bytes for all groups >= given group. */
278 {
279  pg_edit_group_t *g;
280  uword n_bytes = 0;
281 
282  for (g = s->edit_groups + group_index; g < vec_end (s->edit_groups); g++)
283  n_bytes += g->n_packet_bytes;
284  return n_bytes;
285 }
286 
287 always_inline void
289 {
290  uword i = vec_len (s->edit_groups) - 1;
292 
293  pg_edit_group_free (g);
294  clib_memset (g, 0, sizeof (g[0]));
295  _vec_len (s->edit_groups) = i;
296 }
297 
298 typedef struct
299 {
300  /* TX lock */
301  volatile u32 *lockp;
302 
303  /* VLIB interface indices. */
304  u32 hw_if_index, sw_if_index;
305 
306  /* Identifies stream for this interface. */
308 
316 
317 /* Per VLIB node data. */
318 typedef struct
319 {
320  /* Parser function indexed by node index. */
322 } pg_node_t;
323 
324 typedef struct pg_main_t
325 {
326  /* Pool of streams. */
328 
329  /* Bitmap indicating which streams are currently enabled. */
331 
332  /* Hash mapping name -> stream index. */
334 
335  /* Pool of interfaces. */
338 
339  /* Vector of buffer indices for use in pg_stream_fill_replay, per thread */
341 
342  /* Per VLIB node information. */
344 } pg_main_t;
345 
346 /* Global main structure. */
347 extern pg_main_t pg_main;
348 
349 /* Global node. */
351 
352 /* Buffer generator input, output node functions. */
354 
355 /* Stream add/delete. */
356 void pg_stream_del (pg_main_t * pg, uword index);
357 void pg_stream_add (pg_main_t * pg, pg_stream_t * s_init);
358 void pg_stream_change (pg_main_t * pg, pg_stream_t * s);
359 
360 /* Enable/disable stream. */
362  int is_enable);
363 
364 /* Enable/disable packet coalesce on given interface */
366  u32 tx_node_index);
367 
368 /* Find/create free packet-generator interface index. */
369 u32 pg_interface_add_or_get (pg_main_t * pg, uword stream_index,
370  u8 gso_enabled, u32 gso_size,
371  u8 coalesce_enabled);
372 
374 pg_get_node (uword node_index)
375 {
376  pg_main_t *pg = &pg_main;
377  vec_validate (pg->nodes, node_index);
378  return pg->nodes + node_index;
379 }
380 
382  u32 group_index,
383  void *fixed_packet_data,
384  void *fixed_packet_data_mask);
385 
386 void pg_enable_disable (u32 stream_index, int is_enable);
387 
388 typedef struct
389 {
396 
398 
399 typedef struct
400 {
403 }
405 
406 #endif /* included_vlib_pg_h */
407 
408 /*
409  * fd.io coding-style-patch-verification: ON
410  *
411  * Local Variables:
412  * eval: (c-set-style "gnu")
413  * End:
414  */
u32 sw_if_index
Definition: pg.h:304
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:509
Definition: edit.h:64
static int pg_stream_is_enabled(pg_stream_t *s)
Definition: pg.h:223
u32 next_index
Definition: pg.h:151
u64 n_packets_limit
Definition: pg.h:160
void pg_stream_add(pg_main_t *pg, pg_stream_t *s_init)
Definition: stream.c:413
u32 pg_interface_add_or_get(pg_main_t *pg, uword stream_index, u8 gso_enabled, u32 gso_size, u8 coalesce_enabled)
Definition: stream.c:199
void pg_interface_enable_disable_coalesce(pg_interface_t *pi, u8 enable, u32 tx_node_index)
Definition: stream.c:182
u8 * fixed_packet_data
Definition: pg.h:121
static void * pg_get_edit_group(pg_stream_t *s, u32 group_index)
Definition: pg.h:269
a
Definition: bitmap.h:538
vlib_buffer_t buffer
Definition: pg.h:401
Definition: pg.h:324
unsigned long u64
Definition: types.h:89
pg_edit_group_t * edit_groups
Definition: pg.h:107
char * pcap_file_name
Definition: pg.h:393
PCAP utility definitions.
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
pg_edit_type_t
Definition: edit.h:46
void(* edit_function)(struct pg_main_t *pg, struct pg_stream_t *s, struct pg_edit_group_t *g, u32 *buffers, u32 n_buffers)
Definition: pg.h:74
uword * stream_index_by_name
Definition: pg.h:333
u8 coalesce_enabled
Definition: pg.h:309
u32 worker_index
Definition: pg.h:148
u32 n_max_frame
Definition: pg.h:163
char * pcap_file_name
Definition: pg.h:314
#define vec_add2(V, P, N)
Add N elements to end of vector V, return pointer to new elements in P.
Definition: vec.h:630
u32 buffer_index
Definition: pg.h:402
u32 hw_if_index
Definition: pg.h:390
pg_buffer_index_t * buffer_indices
Definition: pg.h:173
struct _vnet_device_class vnet_device_class_t
pg_edit_type_t packet_size_edit_type
Definition: pg.h:109
void pg_stream_del(pg_main_t *pg, uword index)
Definition: stream.c:497
unsigned char u8
Definition: types.h:56
u8 * fixed_packet_data_mask
Definition: pg.h:121
u32 start_byte_offset
Definition: pg.h:68
static pg_edit_group_t * pg_stream_get_group(pg_stream_t *s, u32 group_index)
Definition: pg.h:229
gro_flow_table_t * flow_table
Definition: pg.h:310
double f64
Definition: types.h:142
static pg_node_t * pg_get_node(uword node_index)
Definition: pg.h:374
u32 gso_size
Definition: pg.h:312
PCAP main state data structure.
Definition: pcap.h:156
static void * pg_add_edits(pg_stream_t *s, int n_edit_bytes, int n_packet_bytes, u32 group_index)
Definition: pg.h:255
u8 * fixed_packet_data_mask
Definition: pg.h:65
pg_edit_t * edits
Definition: pg.h:88
u32 n_packet_bytes
Definition: pg.h:71
u8 * fixed_packet_data
Definition: pg.h:64
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
#define vec_resize(V, N)
Resize a vector (no header, unspecified alignment) Add N elements to end of given vector V...
Definition: vec.h:281
unsigned int u32
Definition: types.h:88
#define vec_end(v)
End (last data address) of vector.
static void * pg_create_edit_group(pg_stream_t *s, int n_edit_bytes, int n_packet_bytes, u32 *group_index)
Definition: pg.h:235
#define PG_STREAM_FLAGS_IS_ENABLED
Definition: pg.h:103
uword * if_index_by_if_id
Definition: pg.h:337
clib_error_t * pg_capture(pg_capture_args_t *a)
Definition: cli.c:81
pg_main_t pg_main
Definition: init.c:44
u32 buffer_bytes
Definition: pg.h:125
volatile u32 * lockp
Definition: pg.h:301
void pg_edit_group_get_fixed_packet_data(pg_stream_t *s, u32 group_index, void *fixed_packet_data, void *fixed_packet_data_mask)
Definition: stream.c:354
f64 packet_accumulator
Definition: pg.h:171
u32 last_increment_packet_size
Definition: pg.h:131
u32 pg_if_index
Definition: pg.h:134
u32 current_replay_packet_index
Definition: pg.h:177
pg_edit_t * non_fixed_edits
Definition: pg.h:61
u32 ** replay_buffers_by_thread
Definition: pg.h:340
u8 * name
Definition: pg.h:98
static void pg_stream_free(pg_stream_t *s)
Definition: pg.h:198
pcap_main_t pcap_main
Definition: pg.h:313
vlib_node_registration_t pg_input_node
(constructor) VLIB_REGISTER_NODE (pg_input_node)
Definition: input.c:1812
#define always_inline
Definition: ipsec.h:28
vlib_node_function_t pg_output
Definition: pg.h:353
pg_node_t * nodes
Definition: pg.h:343
uword() unformat_function_t(unformat_input_t *input, va_list *args)
Definition: format.h:233
uword ** enabled_streams
Definition: pg.h:330
u8 gso_enabled
Definition: pg.h:311
u64 * replay_packet_timestamps
Definition: pg.h:176
sll srl srl sll sra u16x4 i
Definition: vector_sse42.h:317
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:380
u32 min_packet_bytes
Definition: pg.h:112
static uword pg_edit_group_n_bytes(pg_stream_t *s, u32 group_index)
Definition: pg.h:277
struct pg_stream_t pg_stream_t
void pg_stream_change(pg_main_t *pg, pg_stream_t *s)
Definition: stream.c:517
unformat_function_t * unformat_edit
Definition: pg.h:321
vlib_node_function_t pg_input
Definition: pg.h:353
pg_edit_t * non_fixed_edits
Definition: pg.h:116
u8 ** replay_packet_templates
Definition: pg.h:175
pg_stream_t * streams
Definition: pg.h:327
#define ASSERT(truth)
uword() vlib_node_function_t(struct vlib_main_t *vm, struct vlib_node_runtime_t *node, struct vlib_frame_t *frame)
Definition: node.h:54
static void pg_free_edit_group(pg_stream_t *s)
Definition: pg.h:288
void pg_stream_enable_disable(pg_main_t *pg, pg_stream_t *s, int is_enable)
Definition: stream.c:49
uword edit_function_opaque
Definition: pg.h:80
#define clib_fifo_free(f)
Definition: fifo.h:257
Definition: pg.h:95
struct _vlib_node_registration vlib_node_registration_t
static void pg_buffer_index_free(pg_buffer_index_t *bi)
Definition: pg.h:181
u32 node_index
Definition: pg.h:145
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
u32 id
Definition: pg.h:307
struct pg_edit_group_t pg_edit_group_t
VLIB buffer representation.
Definition: buffer.h:102
u32 if_id
Definition: pg.h:153
u64 uword
Definition: types.h:112
u32 index
Definition: flow_types.api:221
pg_edit_t * edits
Definition: pg.h:58
u32 dev_instance
Definition: pg.h:391
f64 rate_packets_per_second
Definition: pg.h:167
u32 buffer_flags
Definition: pg.h:128
u64 n_packets_generated
Definition: pg.h:156
u8 is_enabled
Definition: pg.h:392
#define vec_foreach(var, vec)
Vector iterator.
static void pg_edit_free(pg_edit_t *e)
Definition: edit.h:91
vnet_device_class_t pg_dev_class
struct pg_main_t pg_main_t
f64 time_last_generate
Definition: pg.h:169
Definition: pg.h:318
pg_interface_t * interfaces
Definition: pg.h:336
vl_api_interface_index_t sw_if_index
Definition: wireguard.api:33
static void pg_edit_group_free(pg_edit_group_t *g)
Definition: pg.h:188
void pg_enable_disable(u32 stream_index, int is_enable)
Definition: cli.c:58
u32 flags
Definition: pg.h:100
u32 * buffer_fifo
Definition: pg.h:91