blob: e57e72573f3bbb7390059370af836890153cc07e [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
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_cli.c: packet generator cli
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
Damjan Marion3d9c86e2016-07-04 21:04:40 +020040#include <sys/stat.h>
41
Ed Warnickecb9cada2015-12-08 15:45:58 -070042#include <vnet/vnet.h>
43#include <vnet/pg/pg.h>
44
Kingwel Xie42223472019-01-19 22:49:26 -050045#include <strings.h>
Dave Barach3ae28732018-11-16 17:19:00 -050046#include <vppinfra/pcap.h>
Kingwel Xie42223472019-01-19 22:49:26 -050047
Ed Warnickecb9cada2015-12-08 15:45:58 -070048
49/* Root of all packet generator cli commands. */
Calvin71e97c62016-08-19 16:23:14 -040050/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070051VLIB_CLI_COMMAND (vlib_cli_pg_command, static) = {
52 .path = "packet-generator",
53 .short_help = "Packet generator commands",
54};
Calvin71e97c62016-08-19 16:23:14 -040055/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070056
Calvin71e97c62016-08-19 16:23:14 -040057void
58pg_enable_disable (u32 stream_index, int is_enable)
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +020059{
Calvin71e97c62016-08-19 16:23:14 -040060 pg_main_t *pg = &pg_main;
61 pg_stream_t *s;
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +020062
Calvin71e97c62016-08-19 16:23:14 -040063 if (stream_index == ~0)
64 {
65 /* No stream specified: enable/disable all streams. */
66 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +010067 pool_foreach (s, pg->streams) {
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +020068 pg_stream_enable_disable (pg, s, is_enable);
Damjan Marionb2c31b62020-12-13 21:47:40 +010069 }
Calvin71e97c62016-08-19 16:23:14 -040070 /* *INDENT-ON* */
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +020071 }
Calvin71e97c62016-08-19 16:23:14 -040072 else
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +020073 {
Calvin71e97c62016-08-19 16:23:14 -040074 /* enable/disable specified stream. */
75 s = pool_elt_at_index (pg->streams, stream_index);
76 pg_stream_enable_disable (pg, s, is_enable);
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +020077 }
78}
79
Calvin71e97c62016-08-19 16:23:14 -040080clib_error_t *
81pg_capture (pg_capture_args_t * a)
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +020082{
Calvin71e97c62016-08-19 16:23:14 -040083 pg_main_t *pg = &pg_main;
84 pg_interface_t *pi;
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +020085
Calvin71e97c62016-08-19 16:23:14 -040086 if (a->is_enabled == 1)
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +020087 {
Calvin71e97c62016-08-19 16:23:14 -040088 struct stat sb;
Jakub Grajciardb863292020-01-30 14:14:15 +010089 if (stat (a->pcap_file_name, &sb) != -1)
Andrew Yourtchenkoe3cb1f92019-07-29 09:27:10 +000090 return clib_error_return (0, "pcap file '%s' already exists.",
Paul Vinciguerra9673e3e2019-05-10 20:41:08 -040091 a->pcap_file_name);
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +020092 }
93
Calvin71e97c62016-08-19 16:23:14 -040094 pi = pool_elt_at_index (pg->interfaces, a->dev_instance);
95 vec_free (pi->pcap_file_name);
Christian E. Hopps19871f22019-09-27 14:35:32 -040096 if ((pi->pcap_main.flags & PCAP_MAIN_INIT_DONE))
97 pcap_close (&pi->pcap_main);
Dave Barachb7b92992018-10-17 10:38:51 -040098 clib_memset (&pi->pcap_main, 0, sizeof (pi->pcap_main));
Christian E. Hopps19871f22019-09-27 14:35:32 -040099 pi->pcap_main.file_descriptor = -1;
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +0200100
Calvin71e97c62016-08-19 16:23:14 -0400101 if (a->is_enabled == 0)
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +0200102 return 0;
Calvin71e97c62016-08-19 16:23:14 -0400103
104 pi->pcap_file_name = a->pcap_file_name;
105 pi->pcap_main.file_name = (char *) pi->pcap_file_name;
106 pi->pcap_main.n_packets_to_capture = a->count;
107 pi->pcap_main.packet_type = PCAP_PACKET_TYPE_ethernet;
108
109 return 0;
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +0200110}
111
Ed Warnickecb9cada2015-12-08 15:45:58 -0700112static clib_error_t *
113enable_disable_stream (vlib_main_t * vm,
Calvin71e97c62016-08-19 16:23:14 -0400114 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700115{
Dave Barach7d31ab22019-05-08 19:18:18 -0400116 unformat_input_t _line_input, *line_input = &_line_input;
Calvin71e97c62016-08-19 16:23:14 -0400117 pg_main_t *pg = &pg_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700118 int is_enable = cmd->function_arg != 0;
119 u32 stream_index = ~0;
120
Dave Barach7d31ab22019-05-08 19:18:18 -0400121 if (!unformat_user (input, unformat_line_input, line_input))
122 goto doit;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700123
Dave Barach7d31ab22019-05-08 19:18:18 -0400124 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
125 {
126 if (unformat (line_input, "%U", unformat_hash_vec_string,
127 pg->stream_index_by_name, &stream_index))
128 ;
129 else
130 return clib_error_create ("unknown input `%U'",
131 format_unformat_error, line_input);
132 }
133 unformat_free (line_input);
134
135doit:
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +0200136 pg_enable_disable (stream_index, is_enable);
137
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138 return 0;
139}
140
Calvin71e97c62016-08-19 16:23:14 -0400141/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700142VLIB_CLI_COMMAND (enable_streams_cli, static) = {
143 .path = "packet-generator enable-stream",
144 .short_help = "Enable packet generator streams",
145 .function = enable_disable_stream,
146 .function_arg = 1, /* is_enable */
147};
Calvin71e97c62016-08-19 16:23:14 -0400148/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700149
Calvin71e97c62016-08-19 16:23:14 -0400150/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700151VLIB_CLI_COMMAND (disable_streams_cli, static) = {
152 .path = "packet-generator disable-stream",
153 .short_help = "Disable packet generator streams",
154 .function = enable_disable_stream,
155 .function_arg = 0, /* is_enable */
156};
Calvin71e97c62016-08-19 16:23:14 -0400157/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700158
Calvin71e97c62016-08-19 16:23:14 -0400159static u8 *
Kingwel Xie42223472019-01-19 22:49:26 -0500160format_pg_edit_group (u8 * s, va_list * va)
161{
162 pg_edit_group_t *g = va_arg (*va, pg_edit_group_t *);
163
164 s =
165 format (s, "hdr-size %d, offset %d, ", g->n_packet_bytes,
166 g->start_byte_offset);
167 if (g->edit_function)
168 {
169 u8 *function_name;
170 u8 *junk_after_name;
171 function_name = format (0, "%U%c", format_clib_elf_symbol_with_address,
172 g->edit_function, 0);
173 junk_after_name = function_name;
174 while (*junk_after_name && *junk_after_name != ' ')
175 junk_after_name++;
176 *junk_after_name = 0;
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -0700177 s = format (s, "edit-function %s, ", function_name);
Kingwel Xie42223472019-01-19 22:49:26 -0500178 vec_free (function_name);
179 }
180
181 return s;
182}
183
184static u8 *
Calvin71e97c62016-08-19 16:23:14 -0400185format_pg_stream (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700186{
Calvin71e97c62016-08-19 16:23:14 -0400187 pg_stream_t *t = va_arg (*va, pg_stream_t *);
Kingwel Xie42223472019-01-19 22:49:26 -0500188 int verbose = va_arg (*va, int);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700189
Calvin71e97c62016-08-19 16:23:14 -0400190 if (!t)
Kingwel Xie42223472019-01-19 22:49:26 -0500191 return format (s, "%-16s%=12s%=16s%s",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700192 "Name", "Enabled", "Count", "Parameters");
193
Kingwel Xie42223472019-01-19 22:49:26 -0500194 s = format (s, "%-16v%=12s%=16Ld",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195 t->name,
196 pg_stream_is_enabled (t) ? "Yes" : "No",
197 t->n_packets_generated);
198
Kingwel Xie42223472019-01-19 22:49:26 -0500199 int indent = format_get_indent (s);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700200
Kingwel Xie42223472019-01-19 22:49:26 -0500201 s = format (s, "limit %Ld, ", t->n_packets_limit);
202 s = format (s, "rate %.2e pps, ", t->rate_packets_per_second);
203 s = format (s, "size %d%c%d, ",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700204 t->min_packet_bytes,
205 t->packet_size_edit_type == PG_EDIT_RANDOM ? '+' : '-',
206 t->max_packet_bytes);
Kingwel Xie42223472019-01-19 22:49:26 -0500207 s = format (s, "buffer-size %d, ", t->buffer_bytes);
208 s = format (s, "worker %d, ", t->worker_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700209
Kingwel Xie42223472019-01-19 22:49:26 -0500210 if (verbose)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700211 {
Kingwel Xie42223472019-01-19 22:49:26 -0500212 pg_edit_group_t *g;
213 /* *INDENT-OFF* */
214 vec_foreach (g, t->edit_groups)
215 {
216 s = format (s, "\n%U%U", format_white_space, indent, format_pg_edit_group, g);
217 }
218 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700219 }
220
221 return s;
222}
223
224static clib_error_t *
225show_streams (vlib_main_t * vm,
Calvin71e97c62016-08-19 16:23:14 -0400226 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700227{
Calvin71e97c62016-08-19 16:23:14 -0400228 pg_main_t *pg = &pg_main;
229 pg_stream_t *s;
Kingwel Xie42223472019-01-19 22:49:26 -0500230 int verbose = 0;
231
232 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
233 {
234 if (unformat (input, "verbose"))
235 verbose = 1;
236 else
237 break;
238 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700239
240 if (pool_elts (pg->streams) == 0)
241 {
242 vlib_cli_output (vm, "no streams currently defined");
243 goto done;
244 }
245
Kingwel Xie42223472019-01-19 22:49:26 -0500246 vlib_cli_output (vm, "%U", format_pg_stream, 0, 0);
Calvin71e97c62016-08-19 16:23:14 -0400247 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100248 pool_foreach (s, pg->streams) {
Kingwel Xie42223472019-01-19 22:49:26 -0500249 vlib_cli_output (vm, "%U", format_pg_stream, s, verbose);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100250 }
Calvin71e97c62016-08-19 16:23:14 -0400251 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700252
Calvin71e97c62016-08-19 16:23:14 -0400253done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700254 return 0;
255}
256
Calvin71e97c62016-08-19 16:23:14 -0400257/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700258VLIB_CLI_COMMAND (show_streams_cli, static) = {
Kingwel Xie42223472019-01-19 22:49:26 -0500259 .path = "show packet-generator ",
260 .short_help = "show packet-generator [verbose]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700261 .function = show_streams,
262};
Calvin71e97c62016-08-19 16:23:14 -0400263/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700264
265static clib_error_t *
Calvin71e97c62016-08-19 16:23:14 -0400266pg_pcap_read (pg_stream_t * s, char *file_name)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700267{
268#ifndef CLIB_UNIX
269 return clib_error_return (0, "no pcap support");
270#else
271 pcap_main_t pm;
Calvin71e97c62016-08-19 16:23:14 -0400272 clib_error_t *error;
Dave Barachb7b92992018-10-17 10:38:51 -0400273 clib_memset (&pm, 0, sizeof (pm));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700274 pm.file_name = file_name;
275 error = pcap_read (&pm);
276 s->replay_packet_templates = pm.packets_read;
Dave Barach78c56892018-05-16 11:34:35 -0400277 s->replay_packet_timestamps = pm.timestamps;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700278 s->min_packet_bytes = pm.min_packet_bytes;
279 s->max_packet_bytes = pm.max_packet_bytes;
280 s->buffer_bytes = pm.max_packet_bytes;
Damjan Marionddbdd4f2016-07-08 22:08:16 +0200281
282 if (s->n_packets_limit == 0)
283 s->n_packets_limit = vec_len (pm.packets_read);
284
Ed Warnickecb9cada2015-12-08 15:45:58 -0700285 return error;
286#endif /* CLIB_UNIX */
287}
288
289static uword
290unformat_pg_stream_parameter (unformat_input_t * input, va_list * args)
291{
Calvin71e97c62016-08-19 16:23:14 -0400292 pg_stream_t *s = va_arg (*args, pg_stream_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700293 f64 x;
294
295 if (unformat (input, "limit %f", &x))
296 s->n_packets_limit = x;
297
298 else if (unformat (input, "rate %f", &x))
299 s->rate_packets_per_second = x;
300
301 else if (unformat (input, "size %d-%d", &s->min_packet_bytes,
302 &s->max_packet_bytes))
303 s->packet_size_edit_type = PG_EDIT_INCREMENT;
304
305 else if (unformat (input, "size %d+%d", &s->min_packet_bytes,
306 &s->max_packet_bytes))
307 s->packet_size_edit_type = PG_EDIT_RANDOM;
308
309 else if (unformat (input, "buffer-size %d", &s->buffer_bytes))
310 ;
311
312 else
313 return 0;
314
315 return 1;
316}
317
318static clib_error_t *
319validate_stream (pg_stream_t * s)
320{
321 if (s->max_packet_bytes < s->min_packet_bytes)
322 return clib_error_create ("max-size < min-size");
323
Kingwel Xie42223472019-01-19 22:49:26 -0500324 u32 hdr_size = pg_edit_group_n_bytes (s, 0);
325 if (s->min_packet_bytes < hdr_size)
326 return clib_error_create ("min-size < total header size %d", hdr_size);
327 if (s->buffer_bytes == 0)
328 return clib_error_create ("buffer-size must be positive");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700329
330 if (s->rate_packets_per_second < 0)
331 return clib_error_create ("negative rate");
332
333 return 0;
334}
335
Neale Ranns6197cb72021-06-03 14:43:21 +0000336const char *
337pg_interface_get_input_node (pg_interface_t *pi)
338{
339 switch (pi->mode)
340 {
341 case PG_MODE_ETHERNET:
342 return ("ethernet-input");
343 case PG_MODE_IP4:
344 return ("ip4-input");
345 case PG_MODE_IP6:
346 return ("ip6-input");
347 }
348
349 ASSERT (0);
350 return ("ethernet-input");
351}
352
Ed Warnickecb9cada2015-12-08 15:45:58 -0700353static clib_error_t *
354new_stream (vlib_main_t * vm,
Calvin71e97c62016-08-19 16:23:14 -0400355 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700356{
Calvin71e97c62016-08-19 16:23:14 -0400357 clib_error_t *error = 0;
358 u8 *tmp = 0;
Christian E. Hopps87d7bac2019-09-27 12:59:30 -0400359 u32 maxframe, hw_if_index;
Calvin71e97c62016-08-19 16:23:14 -0400360 unformat_input_t sub_input = { 0 };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700361 int sub_input_given = 0;
Calvin71e97c62016-08-19 16:23:14 -0400362 vnet_main_t *vnm = vnet_get_main ();
363 pg_main_t *pg = &pg_main;
364 pg_stream_t s = { 0 };
365 char *pcap_file_name;
366
Ed Warnickecb9cada2015-12-08 15:45:58 -0700367 s.sw_if_index[VLIB_RX] = s.sw_if_index[VLIB_TX] = ~0;
368 s.node_index = ~0;
369 s.max_packet_bytes = s.min_packet_bytes = 64;
Damjan Marion8934a042019-02-09 23:29:26 +0100370 s.buffer_bytes = vlib_buffer_get_default_data_size (vm);
Neale Ranns6197cb72021-06-03 14:43:21 +0000371 s.if_id = ~0;
Christian E. Hopps87d7bac2019-09-27 12:59:30 -0400372 s.n_max_frame = VLIB_FRAME_SIZE;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700373 pcap_file_name = 0;
Christian E. Hopps87d7bac2019-09-27 12:59:30 -0400374
Ed Warnickecb9cada2015-12-08 15:45:58 -0700375 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
376 {
377 if (unformat (input, "name %v", &tmp))
378 {
379 if (s.name)
380 vec_free (s.name);
381 s.name = tmp;
382 }
383
384 else if (unformat (input, "node %U",
385 unformat_vnet_hw_interface, vnm, &hw_if_index))
386 {
Calvin71e97c62016-08-19 16:23:14 -0400387 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700388
389 s.node_index = hi->output_node_index;
390 s.sw_if_index[VLIB_TX] = hi->sw_if_index;
391 }
392
Calvin71e97c62016-08-19 16:23:14 -0400393 else if (unformat (input, "source pg%u", &s.if_id))
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200394 ;
395
Dave Barach08eb2bb2020-04-15 09:34:43 -0400396 else if (unformat (input, "buffer-flags %U",
397 unformat_vnet_buffer_flags, &s.buffer_flags))
398 ;
Mohsin Kazmi68095382021-02-10 11:26:24 +0100399 else if (unformat (input, "buffer-offload-flags %U",
400 unformat_vnet_buffer_offload_flags, &s.buffer_oflags))
401 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700402 else if (unformat (input, "node %U",
403 unformat_vlib_node, vm, &s.node_index))
404 ;
Christian E. Hopps87d7bac2019-09-27 12:59:30 -0400405 else if (unformat (input, "maxframe %u", &maxframe))
406 s.n_max_frame = s.n_max_frame < maxframe ? s.n_max_frame : maxframe;
Damjan Marion64034362016-11-07 22:19:55 +0100407 else if (unformat (input, "worker %u", &s.worker_index))
408 ;
409
Ed Warnickecb9cada2015-12-08 15:45:58 -0700410 else if (unformat (input, "interface %U",
Calvin71e97c62016-08-19 16:23:14 -0400411 unformat_vnet_sw_interface, vnm,
412 &s.sw_if_index[VLIB_RX]))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700413 ;
Dave Barach7d31ab22019-05-08 19:18:18 -0400414 else if (unformat (input, "tx-interface %U",
415 unformat_vnet_sw_interface, vnm,
416 &s.sw_if_index[VLIB_TX]))
417 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700418
419 else if (unformat (input, "pcap %s", &pcap_file_name))
420 ;
421
Calvin71e97c62016-08-19 16:23:14 -0400422 else if (!sub_input_given
Ed Warnickecb9cada2015-12-08 15:45:58 -0700423 && unformat (input, "data %U", unformat_input, &sub_input))
424 sub_input_given++;
Calvin71e97c62016-08-19 16:23:14 -0400425
Ed Warnickecb9cada2015-12-08 15:45:58 -0700426 else if (unformat_user (input, unformat_pg_stream_parameter, &s))
427 ;
428
Ed Warnickecb9cada2015-12-08 15:45:58 -0700429 else
430 {
431 error = clib_error_create ("unknown input `%U'",
432 format_unformat_error, input);
433 goto done;
434 }
435 }
436
Calvin71e97c62016-08-19 16:23:14 -0400437 if (!sub_input_given && !pcap_file_name)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700438 {
439 error = clib_error_create ("no packet data given");
440 goto done;
441 }
442
443 if (s.node_index == ~0)
444 {
Damjan Marionddbdd4f2016-07-08 22:08:16 +0200445 if (pcap_file_name != 0)
446 {
Neale Ranns6197cb72021-06-03 14:43:21 +0000447 vlib_node_t *n;
448
449 ASSERT (s.if_id != ~0);
450
451 if (s.if_id != ~0)
452 n = vlib_get_node_by_name (vm, (u8 *) pg_interface_get_input_node (
453 &pg->interfaces[s.if_id]));
454 else
455 n = vlib_get_node_by_name (vm, (u8 *) "ethernet-input");
Damjan Marionddbdd4f2016-07-08 22:08:16 +0200456 s.node_index = n->index;
457 }
458 else
459 {
460 error = clib_error_create ("output interface or node not given");
461 goto done;
462 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700463 }
464
465 {
Calvin71e97c62016-08-19 16:23:14 -0400466 pg_node_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700467
468 if (s.node_index < vec_len (pg->nodes))
469 n = pg->nodes + s.node_index;
470 else
471 n = 0;
472
Damjan Marion64034362016-11-07 22:19:55 +0100473 if (s.worker_index >= vlib_num_workers ())
474 s.worker_index = 0;
475
Ed Warnickecb9cada2015-12-08 15:45:58 -0700476 if (pcap_file_name != 0)
477 {
478 error = pg_pcap_read (&s, pcap_file_name);
479 if (error)
480 goto done;
481 vec_free (pcap_file_name);
482 }
483
484 else if (n && n->unformat_edit
Calvin71e97c62016-08-19 16:23:14 -0400485 && unformat_user (&sub_input, n->unformat_edit, &s))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700486 ;
487
Calvin71e97c62016-08-19 16:23:14 -0400488 else if (!unformat_user (&sub_input, unformat_pg_payload, &s))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700489 {
490 error = clib_error_create
491 ("failed to parse packet data from `%U'",
492 format_unformat_error, &sub_input);
493 goto done;
494 }
495 }
496
Kingwel Xie42223472019-01-19 22:49:26 -0500497 error = validate_stream (&s);
498 if (error)
499 return error;
500
Ed Warnickecb9cada2015-12-08 15:45:58 -0700501 pg_stream_add (pg, &s);
502 return 0;
503
Calvin71e97c62016-08-19 16:23:14 -0400504done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700505 pg_stream_free (&s);
506 unformat_free (&sub_input);
507 return error;
508}
509
Calvin71e97c62016-08-19 16:23:14 -0400510/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700511VLIB_CLI_COMMAND (new_stream_cli, static) = {
512 .path = "packet-generator new",
513 .function = new_stream,
514 .short_help = "Create packet generator stream",
515 .long_help =
516 "Create packet generator stream\n"
517 "\n"
518 "Arguments:\n"
519 "\n"
520 "name STRING sets stream name\n"
521 "interface STRING interface for stream output \n"
522 "node NODE-NAME node for stream output\n"
Damjan Marionddbdd4f2016-07-08 22:08:16 +0200523 "data STRING specifies packet data\n"
Christian E. Hopps87d7bac2019-09-27 12:59:30 -0400524 "pcap FILENAME read packet data from pcap file\n"
525 "rate PPS rate to transfer packet data\n"
526 "maxframe NPKTS maximum number of packets per frame\n",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700527};
Calvin71e97c62016-08-19 16:23:14 -0400528/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700529
530static clib_error_t *
531del_stream (vlib_main_t * vm,
Calvin71e97c62016-08-19 16:23:14 -0400532 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700533{
Calvin71e97c62016-08-19 16:23:14 -0400534 pg_main_t *pg = &pg_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700535 u32 i;
Calvin71e97c62016-08-19 16:23:14 -0400536
537 if (!unformat (input, "%U",
538 &unformat_hash_vec_string, pg->stream_index_by_name, &i))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700539 return clib_error_create ("expected stream name `%U'",
540 format_unformat_error, input);
541
542 pg_stream_del (pg, i);
543 return 0;
544}
545
Calvin71e97c62016-08-19 16:23:14 -0400546/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700547VLIB_CLI_COMMAND (del_stream_cli, static) = {
548 .path = "packet-generator delete",
549 .function = del_stream,
550 .short_help = "Delete stream with given name",
551};
Calvin71e97c62016-08-19 16:23:14 -0400552/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700553
554static clib_error_t *
555change_stream_parameters (vlib_main_t * vm,
Calvin71e97c62016-08-19 16:23:14 -0400556 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700557{
Calvin71e97c62016-08-19 16:23:14 -0400558 pg_main_t *pg = &pg_main;
559 pg_stream_t *s, s_new;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700560 u32 stream_index = ~0;
Calvin71e97c62016-08-19 16:23:14 -0400561 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700562
563 if (unformat (input, "%U", unformat_hash_vec_string,
564 pg->stream_index_by_name, &stream_index))
565 ;
566 else
567 return clib_error_create ("expecting stream name; got `%U'",
568 format_unformat_error, input);
569
570 s = pool_elt_at_index (pg->streams, stream_index);
571 s_new = s[0];
572
573 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
574 {
575 if (unformat_user (input, unformat_pg_stream_parameter, &s_new))
576 ;
577
578 else
579 return clib_error_create ("unknown input `%U'",
580 format_unformat_error, input);
581 }
582
583 error = validate_stream (&s_new);
Calvin71e97c62016-08-19 16:23:14 -0400584 if (!error)
Kingwel Xie42223472019-01-19 22:49:26 -0500585 {
586 s[0] = s_new;
587 pg_stream_change (pg, s);
588 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700589
590 return error;
591}
592
Calvin71e97c62016-08-19 16:23:14 -0400593/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700594VLIB_CLI_COMMAND (change_stream_parameters_cli, static) = {
595 .path = "packet-generator configure",
596 .short_help = "Change packet generator stream parameters",
597 .function = change_stream_parameters,
598};
Calvin71e97c62016-08-19 16:23:14 -0400599/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700600
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200601static clib_error_t *
602pg_capture_cmd_fn (vlib_main_t * vm,
Calvin71e97c62016-08-19 16:23:14 -0400603 unformat_input_t * input, vlib_cli_command_t * cmd)
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200604{
Calvin71e97c62016-08-19 16:23:14 -0400605 clib_error_t *error = 0;
606 vnet_main_t *vnm = vnet_get_main ();
607 unformat_input_t _line_input, *line_input = &_line_input;
608 vnet_hw_interface_t *hi = 0;
609 u8 *pcap_file_name = 0;
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200610 u32 hw_if_index;
Damjan Marion92217f32016-07-12 21:58:19 +0200611 u32 is_disable = 0;
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200612 u32 count = ~0;
613
Calvin71e97c62016-08-19 16:23:14 -0400614 if (!unformat_user (input, unformat_line_input, line_input))
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200615 return 0;
616
617 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
618 {
619 if (unformat (line_input, "%U",
Calvin71e97c62016-08-19 16:23:14 -0400620 unformat_vnet_hw_interface, vnm, &hw_if_index))
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200621 {
622 hi = vnet_get_hw_interface (vnm, hw_if_index);
623 }
624
625 else if (unformat (line_input, "pcap %s", &pcap_file_name))
626 ;
627 else if (unformat (line_input, "count %u", &count))
628 ;
Damjan Marion92217f32016-07-12 21:58:19 +0200629 else if (unformat (line_input, "disable"))
630 is_disable = 1;
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200631
632 else
633 {
634 error = clib_error_create ("unknown input `%U'",
Billy McFalla9a20e72017-02-15 11:39:12 -0500635 format_unformat_error, line_input);
636 goto done;
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200637 }
638 }
639
640 if (!hi)
Billy McFalla9a20e72017-02-15 11:39:12 -0500641 {
642 error = clib_error_return (0, "Please specify interface name");
643 goto done;
644 }
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200645
646 if (hi->dev_class_index != pg_dev_class.index)
Billy McFalla9a20e72017-02-15 11:39:12 -0500647 {
648 error =
649 clib_error_return (0, "Please specify packet-generator interface");
650 goto done;
651 }
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200652
Damjan Marion92217f32016-07-12 21:58:19 +0200653 if (!pcap_file_name && is_disable == 0)
Billy McFalla9a20e72017-02-15 11:39:12 -0500654 {
655 error = clib_error_return (0, "Please specify pcap file name");
656 goto done;
657 }
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200658
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200659
Calvin71e97c62016-08-19 16:23:14 -0400660 pg_capture_args_t _a, *a = &_a;
Damjan Marion92217f32016-07-12 21:58:19 +0200661
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +0200662 a->hw_if_index = hw_if_index;
663 a->dev_instance = hi->dev_instance;
664 a->is_enabled = !is_disable;
Jakub Grajciardb863292020-01-30 14:14:15 +0100665 a->pcap_file_name = (char *) pcap_file_name;
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +0200666 a->count = count;
Damjan Marion92217f32016-07-12 21:58:19 +0200667
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +0200668 error = pg_capture (a);
Billy McFalla9a20e72017-02-15 11:39:12 -0500669
670done:
671 unformat_free (line_input);
672
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +0200673 return error;
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200674}
675
Calvin71e97c62016-08-19 16:23:14 -0400676/* *INDENT-OFF* */
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200677VLIB_CLI_COMMAND (pg_capture_cmd, static) = {
678 .path = "packet-generator capture",
679 .short_help = "packet-generator capture <interface name> pcap <filename> [count <n>]",
680 .function = pg_capture_cmd_fn,
681};
Calvin71e97c62016-08-19 16:23:14 -0400682/* *INDENT-ON* */
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200683
684static clib_error_t *
685create_pg_if_cmd_fn (vlib_main_t * vm,
Calvin71e97c62016-08-19 16:23:14 -0400686 unformat_input_t * input, vlib_cli_command_t * cmd)
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200687{
Calvin71e97c62016-08-19 16:23:14 -0400688 pg_main_t *pg = &pg_main;
689 unformat_input_t _line_input, *line_input = &_line_input;
Mohsin Kazmif382b062020-08-11 15:00:44 +0200690 u32 if_id, gso_enabled = 0, gso_size = 0, coalesce_enabled = 0;
Billy McFalla9a20e72017-02-15 11:39:12 -0500691 clib_error_t *error = NULL;
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200692
Calvin71e97c62016-08-19 16:23:14 -0400693 if (!unformat_user (input, unformat_line_input, line_input))
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200694 return 0;
695
696 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
697 {
698 if (unformat (line_input, "interface pg%u", &if_id))
699 ;
Ray Kinsellac99ab122021-03-12 14:29:48 +0000700 else if (unformat (line_input, "coalesce-enabled"))
701 coalesce_enabled = 1;
Mohsin Kazmi22e9cfd2019-07-23 11:54:48 +0200702 else if (unformat (line_input, "gso-enabled"))
703 {
704 gso_enabled = 1;
705 if (unformat (line_input, "gso-size %u", &gso_size))
706 ;
707 else
708 {
709 error = clib_error_create ("gso enabled but gso size missing");
710 goto done;
711 }
712 }
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200713 else
Billy McFalla9a20e72017-02-15 11:39:12 -0500714 {
715 error = clib_error_create ("unknown input `%U'",
716 format_unformat_error, line_input);
717 goto done;
718 }
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200719 }
720
Neale Ranns6197cb72021-06-03 14:43:21 +0000721 pg_interface_add_or_get (pg, if_id, gso_enabled, gso_size, coalesce_enabled,
722 PG_MODE_ETHERNET);
Billy McFalla9a20e72017-02-15 11:39:12 -0500723
724done:
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200725 unformat_free (line_input);
726
Billy McFalla9a20e72017-02-15 11:39:12 -0500727 return error;
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200728}
729
Calvin71e97c62016-08-19 16:23:14 -0400730/* *INDENT-OFF* */
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200731VLIB_CLI_COMMAND (create_pg_if_cmd, static) = {
732 .path = "create packet-generator",
Mohsin Kazmif382b062020-08-11 15:00:44 +0200733 .short_help = "create packet-generator interface <interface name>"
734 " [gso-enabled gso-size <size> [coalesce-enabled]]",
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200735 .function = create_pg_if_cmd_fn,
736};
Calvin71e97c62016-08-19 16:23:14 -0400737/* *INDENT-ON* */
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200738
Ed Warnickecb9cada2015-12-08 15:45:58 -0700739/* Dummy init function so that we can be linked in. */
Calvin71e97c62016-08-19 16:23:14 -0400740static clib_error_t *
741pg_cli_init (vlib_main_t * vm)
742{
743 return 0;
744}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700745
746VLIB_INIT_FUNCTION (pg_cli_init);
Calvin71e97c62016-08-19 16:23:14 -0400747
748/*
749 * fd.io coding-style-patch-verification: ON
750 *
751 * Local Variables:
752 * eval: (c-set-style "gnu")
753 * End:
754 */