blob: c43ff903e756fe6997eb4ecc85ef0f0e8ea26944 [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* */
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +020067 pool_foreach (s, pg->streams, ({
68 pg_stream_enable_disable (pg, s, is_enable);
69 }));
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;
89 if (stat ((char *) 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);
Dave Barachb7b92992018-10-17 10:38:51 -040096 clib_memset (&pi->pcap_main, 0, sizeof (pi->pcap_main));
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +020097
Calvin71e97c62016-08-19 16:23:14 -040098 if (a->is_enabled == 0)
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +020099 return 0;
Calvin71e97c62016-08-19 16:23:14 -0400100
101 pi->pcap_file_name = a->pcap_file_name;
102 pi->pcap_main.file_name = (char *) pi->pcap_file_name;
103 pi->pcap_main.n_packets_to_capture = a->count;
104 pi->pcap_main.packet_type = PCAP_PACKET_TYPE_ethernet;
105
106 return 0;
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +0200107}
108
Ed Warnickecb9cada2015-12-08 15:45:58 -0700109static clib_error_t *
110enable_disable_stream (vlib_main_t * vm,
Calvin71e97c62016-08-19 16:23:14 -0400111 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700112{
Dave Barach7d31ab22019-05-08 19:18:18 -0400113 unformat_input_t _line_input, *line_input = &_line_input;
Calvin71e97c62016-08-19 16:23:14 -0400114 pg_main_t *pg = &pg_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700115 int is_enable = cmd->function_arg != 0;
116 u32 stream_index = ~0;
117
Dave Barach7d31ab22019-05-08 19:18:18 -0400118 if (!unformat_user (input, unformat_line_input, line_input))
119 goto doit;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120
Dave Barach7d31ab22019-05-08 19:18:18 -0400121 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
122 {
123 if (unformat (line_input, "%U", unformat_hash_vec_string,
124 pg->stream_index_by_name, &stream_index))
125 ;
126 else
127 return clib_error_create ("unknown input `%U'",
128 format_unformat_error, line_input);
129 }
130 unformat_free (line_input);
131
132doit:
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +0200133 pg_enable_disable (stream_index, is_enable);
134
Ed Warnickecb9cada2015-12-08 15:45:58 -0700135 return 0;
136}
137
Calvin71e97c62016-08-19 16:23:14 -0400138/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700139VLIB_CLI_COMMAND (enable_streams_cli, static) = {
140 .path = "packet-generator enable-stream",
141 .short_help = "Enable packet generator streams",
142 .function = enable_disable_stream,
143 .function_arg = 1, /* is_enable */
144};
Calvin71e97c62016-08-19 16:23:14 -0400145/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700146
Calvin71e97c62016-08-19 16:23:14 -0400147/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700148VLIB_CLI_COMMAND (disable_streams_cli, static) = {
149 .path = "packet-generator disable-stream",
150 .short_help = "Disable packet generator streams",
151 .function = enable_disable_stream,
152 .function_arg = 0, /* is_enable */
153};
Calvin71e97c62016-08-19 16:23:14 -0400154/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700155
Calvin71e97c62016-08-19 16:23:14 -0400156static u8 *
Kingwel Xie42223472019-01-19 22:49:26 -0500157format_pg_edit_group (u8 * s, va_list * va)
158{
159 pg_edit_group_t *g = va_arg (*va, pg_edit_group_t *);
160
161 s =
162 format (s, "hdr-size %d, offset %d, ", g->n_packet_bytes,
163 g->start_byte_offset);
164 if (g->edit_function)
165 {
166 u8 *function_name;
167 u8 *junk_after_name;
168 function_name = format (0, "%U%c", format_clib_elf_symbol_with_address,
169 g->edit_function, 0);
170 junk_after_name = function_name;
171 while (*junk_after_name && *junk_after_name != ' ')
172 junk_after_name++;
173 *junk_after_name = 0;
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -0700174 s = format (s, "edit-function %s, ", function_name);
Kingwel Xie42223472019-01-19 22:49:26 -0500175 vec_free (function_name);
176 }
177
178 return s;
179}
180
181static u8 *
Calvin71e97c62016-08-19 16:23:14 -0400182format_pg_stream (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700183{
Calvin71e97c62016-08-19 16:23:14 -0400184 pg_stream_t *t = va_arg (*va, pg_stream_t *);
Kingwel Xie42223472019-01-19 22:49:26 -0500185 int verbose = va_arg (*va, int);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700186
Calvin71e97c62016-08-19 16:23:14 -0400187 if (!t)
Kingwel Xie42223472019-01-19 22:49:26 -0500188 return format (s, "%-16s%=12s%=16s%s",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700189 "Name", "Enabled", "Count", "Parameters");
190
Kingwel Xie42223472019-01-19 22:49:26 -0500191 s = format (s, "%-16v%=12s%=16Ld",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700192 t->name,
193 pg_stream_is_enabled (t) ? "Yes" : "No",
194 t->n_packets_generated);
195
Kingwel Xie42223472019-01-19 22:49:26 -0500196 int indent = format_get_indent (s);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700197
Kingwel Xie42223472019-01-19 22:49:26 -0500198 s = format (s, "limit %Ld, ", t->n_packets_limit);
199 s = format (s, "rate %.2e pps, ", t->rate_packets_per_second);
200 s = format (s, "size %d%c%d, ",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700201 t->min_packet_bytes,
202 t->packet_size_edit_type == PG_EDIT_RANDOM ? '+' : '-',
203 t->max_packet_bytes);
Kingwel Xie42223472019-01-19 22:49:26 -0500204 s = format (s, "buffer-size %d, ", t->buffer_bytes);
205 s = format (s, "worker %d, ", t->worker_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700206
Kingwel Xie42223472019-01-19 22:49:26 -0500207 if (verbose)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700208 {
Kingwel Xie42223472019-01-19 22:49:26 -0500209 pg_edit_group_t *g;
210 /* *INDENT-OFF* */
211 vec_foreach (g, t->edit_groups)
212 {
213 s = format (s, "\n%U%U", format_white_space, indent, format_pg_edit_group, g);
214 }
215 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216 }
217
218 return s;
219}
220
221static clib_error_t *
222show_streams (vlib_main_t * vm,
Calvin71e97c62016-08-19 16:23:14 -0400223 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700224{
Calvin71e97c62016-08-19 16:23:14 -0400225 pg_main_t *pg = &pg_main;
226 pg_stream_t *s;
Kingwel Xie42223472019-01-19 22:49:26 -0500227 int verbose = 0;
228
229 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
230 {
231 if (unformat (input, "verbose"))
232 verbose = 1;
233 else
234 break;
235 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700236
237 if (pool_elts (pg->streams) == 0)
238 {
239 vlib_cli_output (vm, "no streams currently defined");
240 goto done;
241 }
242
Kingwel Xie42223472019-01-19 22:49:26 -0500243 vlib_cli_output (vm, "%U", format_pg_stream, 0, 0);
Calvin71e97c62016-08-19 16:23:14 -0400244 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700245 pool_foreach (s, pg->streams, ({
Kingwel Xie42223472019-01-19 22:49:26 -0500246 vlib_cli_output (vm, "%U", format_pg_stream, s, verbose);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700247 }));
Calvin71e97c62016-08-19 16:23:14 -0400248 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700249
Calvin71e97c62016-08-19 16:23:14 -0400250done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700251 return 0;
252}
253
Calvin71e97c62016-08-19 16:23:14 -0400254/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700255VLIB_CLI_COMMAND (show_streams_cli, static) = {
Kingwel Xie42223472019-01-19 22:49:26 -0500256 .path = "show packet-generator ",
257 .short_help = "show packet-generator [verbose]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700258 .function = show_streams,
259};
Calvin71e97c62016-08-19 16:23:14 -0400260/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700261
262static clib_error_t *
Calvin71e97c62016-08-19 16:23:14 -0400263pg_pcap_read (pg_stream_t * s, char *file_name)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700264{
265#ifndef CLIB_UNIX
266 return clib_error_return (0, "no pcap support");
267#else
268 pcap_main_t pm;
Calvin71e97c62016-08-19 16:23:14 -0400269 clib_error_t *error;
Dave Barachb7b92992018-10-17 10:38:51 -0400270 clib_memset (&pm, 0, sizeof (pm));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700271 pm.file_name = file_name;
272 error = pcap_read (&pm);
273 s->replay_packet_templates = pm.packets_read;
Dave Barach78c56892018-05-16 11:34:35 -0400274 s->replay_packet_timestamps = pm.timestamps;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275 s->min_packet_bytes = pm.min_packet_bytes;
276 s->max_packet_bytes = pm.max_packet_bytes;
277 s->buffer_bytes = pm.max_packet_bytes;
Damjan Marionddbdd4f2016-07-08 22:08:16 +0200278
279 if (s->n_packets_limit == 0)
280 s->n_packets_limit = vec_len (pm.packets_read);
281
Ed Warnickecb9cada2015-12-08 15:45:58 -0700282 return error;
283#endif /* CLIB_UNIX */
284}
285
286static uword
287unformat_pg_stream_parameter (unformat_input_t * input, va_list * args)
288{
Calvin71e97c62016-08-19 16:23:14 -0400289 pg_stream_t *s = va_arg (*args, pg_stream_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700290 f64 x;
291
292 if (unformat (input, "limit %f", &x))
293 s->n_packets_limit = x;
294
295 else if (unformat (input, "rate %f", &x))
296 s->rate_packets_per_second = x;
297
298 else if (unformat (input, "size %d-%d", &s->min_packet_bytes,
299 &s->max_packet_bytes))
300 s->packet_size_edit_type = PG_EDIT_INCREMENT;
301
302 else if (unformat (input, "size %d+%d", &s->min_packet_bytes,
303 &s->max_packet_bytes))
304 s->packet_size_edit_type = PG_EDIT_RANDOM;
305
306 else if (unformat (input, "buffer-size %d", &s->buffer_bytes))
307 ;
308
309 else
310 return 0;
311
312 return 1;
313}
314
315static clib_error_t *
316validate_stream (pg_stream_t * s)
317{
318 if (s->max_packet_bytes < s->min_packet_bytes)
319 return clib_error_create ("max-size < min-size");
320
Kingwel Xie42223472019-01-19 22:49:26 -0500321 u32 hdr_size = pg_edit_group_n_bytes (s, 0);
322 if (s->min_packet_bytes < hdr_size)
323 return clib_error_create ("min-size < total header size %d", hdr_size);
324 if (s->buffer_bytes == 0)
325 return clib_error_create ("buffer-size must be positive");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700326
327 if (s->rate_packets_per_second < 0)
328 return clib_error_create ("negative rate");
329
330 return 0;
331}
332
333static clib_error_t *
334new_stream (vlib_main_t * vm,
Calvin71e97c62016-08-19 16:23:14 -0400335 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700336{
Calvin71e97c62016-08-19 16:23:14 -0400337 clib_error_t *error = 0;
338 u8 *tmp = 0;
Christian E. Hopps87d7bac2019-09-27 12:59:30 -0400339 u32 maxframe, hw_if_index;
Calvin71e97c62016-08-19 16:23:14 -0400340 unformat_input_t sub_input = { 0 };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700341 int sub_input_given = 0;
Calvin71e97c62016-08-19 16:23:14 -0400342 vnet_main_t *vnm = vnet_get_main ();
343 pg_main_t *pg = &pg_main;
344 pg_stream_t s = { 0 };
345 char *pcap_file_name;
346
Ed Warnickecb9cada2015-12-08 15:45:58 -0700347 s.sw_if_index[VLIB_RX] = s.sw_if_index[VLIB_TX] = ~0;
348 s.node_index = ~0;
349 s.max_packet_bytes = s.min_packet_bytes = 64;
Damjan Marion8934a042019-02-09 23:29:26 +0100350 s.buffer_bytes = vlib_buffer_get_default_data_size (vm);
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200351 s.if_id = 0;
Christian E. Hopps87d7bac2019-09-27 12:59:30 -0400352 s.n_max_frame = VLIB_FRAME_SIZE;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700353 pcap_file_name = 0;
Christian E. Hopps87d7bac2019-09-27 12:59:30 -0400354
Ed Warnickecb9cada2015-12-08 15:45:58 -0700355 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
356 {
357 if (unformat (input, "name %v", &tmp))
358 {
359 if (s.name)
360 vec_free (s.name);
361 s.name = tmp;
362 }
363
364 else if (unformat (input, "node %U",
365 unformat_vnet_hw_interface, vnm, &hw_if_index))
366 {
Calvin71e97c62016-08-19 16:23:14 -0400367 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700368
369 s.node_index = hi->output_node_index;
370 s.sw_if_index[VLIB_TX] = hi->sw_if_index;
371 }
372
Calvin71e97c62016-08-19 16:23:14 -0400373 else if (unformat (input, "source pg%u", &s.if_id))
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200374 ;
375
Ed Warnickecb9cada2015-12-08 15:45:58 -0700376 else if (unformat (input, "node %U",
377 unformat_vlib_node, vm, &s.node_index))
378 ;
Christian E. Hopps87d7bac2019-09-27 12:59:30 -0400379 else if (unformat (input, "maxframe %u", &maxframe))
380 s.n_max_frame = s.n_max_frame < maxframe ? s.n_max_frame : maxframe;
Damjan Marion64034362016-11-07 22:19:55 +0100381 else if (unformat (input, "worker %u", &s.worker_index))
382 ;
383
Ed Warnickecb9cada2015-12-08 15:45:58 -0700384 else if (unformat (input, "interface %U",
Calvin71e97c62016-08-19 16:23:14 -0400385 unformat_vnet_sw_interface, vnm,
386 &s.sw_if_index[VLIB_RX]))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700387 ;
Dave Barach7d31ab22019-05-08 19:18:18 -0400388 else if (unformat (input, "tx-interface %U",
389 unformat_vnet_sw_interface, vnm,
390 &s.sw_if_index[VLIB_TX]))
391 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700392
393 else if (unformat (input, "pcap %s", &pcap_file_name))
394 ;
395
Calvin71e97c62016-08-19 16:23:14 -0400396 else if (!sub_input_given
Ed Warnickecb9cada2015-12-08 15:45:58 -0700397 && unformat (input, "data %U", unformat_input, &sub_input))
398 sub_input_given++;
Calvin71e97c62016-08-19 16:23:14 -0400399
Ed Warnickecb9cada2015-12-08 15:45:58 -0700400 else if (unformat_user (input, unformat_pg_stream_parameter, &s))
401 ;
402
Ed Warnickecb9cada2015-12-08 15:45:58 -0700403 else
404 {
405 error = clib_error_create ("unknown input `%U'",
406 format_unformat_error, input);
407 goto done;
408 }
409 }
410
Calvin71e97c62016-08-19 16:23:14 -0400411 if (!sub_input_given && !pcap_file_name)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700412 {
413 error = clib_error_create ("no packet data given");
414 goto done;
415 }
416
417 if (s.node_index == ~0)
418 {
Damjan Marionddbdd4f2016-07-08 22:08:16 +0200419 if (pcap_file_name != 0)
420 {
Calvin71e97c62016-08-19 16:23:14 -0400421 vlib_node_t *n =
422 vlib_get_node_by_name (vm, (u8 *) "ethernet-input");
Damjan Marionddbdd4f2016-07-08 22:08:16 +0200423 s.node_index = n->index;
424 }
425 else
426 {
427 error = clib_error_create ("output interface or node not given");
428 goto done;
429 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700430 }
431
432 {
Calvin71e97c62016-08-19 16:23:14 -0400433 pg_node_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700434
435 if (s.node_index < vec_len (pg->nodes))
436 n = pg->nodes + s.node_index;
437 else
438 n = 0;
439
Damjan Marion64034362016-11-07 22:19:55 +0100440 if (s.worker_index >= vlib_num_workers ())
441 s.worker_index = 0;
442
Ed Warnickecb9cada2015-12-08 15:45:58 -0700443 if (pcap_file_name != 0)
444 {
445 error = pg_pcap_read (&s, pcap_file_name);
446 if (error)
447 goto done;
448 vec_free (pcap_file_name);
449 }
450
451 else if (n && n->unformat_edit
Calvin71e97c62016-08-19 16:23:14 -0400452 && unformat_user (&sub_input, n->unformat_edit, &s))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700453 ;
454
Calvin71e97c62016-08-19 16:23:14 -0400455 else if (!unformat_user (&sub_input, unformat_pg_payload, &s))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700456 {
457 error = clib_error_create
458 ("failed to parse packet data from `%U'",
459 format_unformat_error, &sub_input);
460 goto done;
461 }
462 }
463
Kingwel Xie42223472019-01-19 22:49:26 -0500464 error = validate_stream (&s);
465 if (error)
466 return error;
467
Ed Warnickecb9cada2015-12-08 15:45:58 -0700468 pg_stream_add (pg, &s);
469 return 0;
470
Calvin71e97c62016-08-19 16:23:14 -0400471done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700472 pg_stream_free (&s);
473 unformat_free (&sub_input);
474 return error;
475}
476
Calvin71e97c62016-08-19 16:23:14 -0400477/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700478VLIB_CLI_COMMAND (new_stream_cli, static) = {
479 .path = "packet-generator new",
480 .function = new_stream,
481 .short_help = "Create packet generator stream",
482 .long_help =
483 "Create packet generator stream\n"
484 "\n"
485 "Arguments:\n"
486 "\n"
487 "name STRING sets stream name\n"
488 "interface STRING interface for stream output \n"
489 "node NODE-NAME node for stream output\n"
Damjan Marionddbdd4f2016-07-08 22:08:16 +0200490 "data STRING specifies packet data\n"
Christian E. Hopps87d7bac2019-09-27 12:59:30 -0400491 "pcap FILENAME read packet data from pcap file\n"
492 "rate PPS rate to transfer packet data\n"
493 "maxframe NPKTS maximum number of packets per frame\n",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700494};
Calvin71e97c62016-08-19 16:23:14 -0400495/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700496
497static clib_error_t *
498del_stream (vlib_main_t * vm,
Calvin71e97c62016-08-19 16:23:14 -0400499 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700500{
Calvin71e97c62016-08-19 16:23:14 -0400501 pg_main_t *pg = &pg_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700502 u32 i;
Calvin71e97c62016-08-19 16:23:14 -0400503
504 if (!unformat (input, "%U",
505 &unformat_hash_vec_string, pg->stream_index_by_name, &i))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700506 return clib_error_create ("expected stream name `%U'",
507 format_unformat_error, input);
508
509 pg_stream_del (pg, i);
510 return 0;
511}
512
Calvin71e97c62016-08-19 16:23:14 -0400513/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700514VLIB_CLI_COMMAND (del_stream_cli, static) = {
515 .path = "packet-generator delete",
516 .function = del_stream,
517 .short_help = "Delete stream with given name",
518};
Calvin71e97c62016-08-19 16:23:14 -0400519/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700520
521static clib_error_t *
522change_stream_parameters (vlib_main_t * vm,
Calvin71e97c62016-08-19 16:23:14 -0400523 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700524{
Calvin71e97c62016-08-19 16:23:14 -0400525 pg_main_t *pg = &pg_main;
526 pg_stream_t *s, s_new;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700527 u32 stream_index = ~0;
Calvin71e97c62016-08-19 16:23:14 -0400528 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700529
530 if (unformat (input, "%U", unformat_hash_vec_string,
531 pg->stream_index_by_name, &stream_index))
532 ;
533 else
534 return clib_error_create ("expecting stream name; got `%U'",
535 format_unformat_error, input);
536
537 s = pool_elt_at_index (pg->streams, stream_index);
538 s_new = s[0];
539
540 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
541 {
542 if (unformat_user (input, unformat_pg_stream_parameter, &s_new))
543 ;
544
545 else
546 return clib_error_create ("unknown input `%U'",
547 format_unformat_error, input);
548 }
549
550 error = validate_stream (&s_new);
Calvin71e97c62016-08-19 16:23:14 -0400551 if (!error)
Kingwel Xie42223472019-01-19 22:49:26 -0500552 {
553 s[0] = s_new;
554 pg_stream_change (pg, s);
555 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700556
557 return error;
558}
559
Calvin71e97c62016-08-19 16:23:14 -0400560/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700561VLIB_CLI_COMMAND (change_stream_parameters_cli, static) = {
562 .path = "packet-generator configure",
563 .short_help = "Change packet generator stream parameters",
564 .function = change_stream_parameters,
565};
Calvin71e97c62016-08-19 16:23:14 -0400566/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700567
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200568static clib_error_t *
569pg_capture_cmd_fn (vlib_main_t * vm,
Calvin71e97c62016-08-19 16:23:14 -0400570 unformat_input_t * input, vlib_cli_command_t * cmd)
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200571{
Calvin71e97c62016-08-19 16:23:14 -0400572 clib_error_t *error = 0;
573 vnet_main_t *vnm = vnet_get_main ();
574 unformat_input_t _line_input, *line_input = &_line_input;
575 vnet_hw_interface_t *hi = 0;
576 u8 *pcap_file_name = 0;
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200577 u32 hw_if_index;
Damjan Marion92217f32016-07-12 21:58:19 +0200578 u32 is_disable = 0;
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200579 u32 count = ~0;
580
Calvin71e97c62016-08-19 16:23:14 -0400581 if (!unformat_user (input, unformat_line_input, line_input))
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200582 return 0;
583
584 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
585 {
586 if (unformat (line_input, "%U",
Calvin71e97c62016-08-19 16:23:14 -0400587 unformat_vnet_hw_interface, vnm, &hw_if_index))
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200588 {
589 hi = vnet_get_hw_interface (vnm, hw_if_index);
590 }
591
592 else if (unformat (line_input, "pcap %s", &pcap_file_name))
593 ;
594 else if (unformat (line_input, "count %u", &count))
595 ;
Damjan Marion92217f32016-07-12 21:58:19 +0200596 else if (unformat (line_input, "disable"))
597 is_disable = 1;
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200598
599 else
600 {
601 error = clib_error_create ("unknown input `%U'",
Billy McFalla9a20e72017-02-15 11:39:12 -0500602 format_unformat_error, line_input);
603 goto done;
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200604 }
605 }
606
607 if (!hi)
Billy McFalla9a20e72017-02-15 11:39:12 -0500608 {
609 error = clib_error_return (0, "Please specify interface name");
610 goto done;
611 }
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200612
613 if (hi->dev_class_index != pg_dev_class.index)
Billy McFalla9a20e72017-02-15 11:39:12 -0500614 {
615 error =
616 clib_error_return (0, "Please specify packet-generator interface");
617 goto done;
618 }
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200619
Damjan Marion92217f32016-07-12 21:58:19 +0200620 if (!pcap_file_name && is_disable == 0)
Billy McFalla9a20e72017-02-15 11:39:12 -0500621 {
622 error = clib_error_return (0, "Please specify pcap file name");
623 goto done;
624 }
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200625
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200626
Calvin71e97c62016-08-19 16:23:14 -0400627 pg_capture_args_t _a, *a = &_a;
Damjan Marion92217f32016-07-12 21:58:19 +0200628
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +0200629 a->hw_if_index = hw_if_index;
630 a->dev_instance = hi->dev_instance;
631 a->is_enabled = !is_disable;
632 a->pcap_file_name = pcap_file_name;
633 a->count = count;
Damjan Marion92217f32016-07-12 21:58:19 +0200634
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +0200635 error = pg_capture (a);
Billy McFalla9a20e72017-02-15 11:39:12 -0500636
637done:
638 unformat_free (line_input);
639
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +0200640 return error;
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200641}
642
Calvin71e97c62016-08-19 16:23:14 -0400643/* *INDENT-OFF* */
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200644VLIB_CLI_COMMAND (pg_capture_cmd, static) = {
645 .path = "packet-generator capture",
646 .short_help = "packet-generator capture <interface name> pcap <filename> [count <n>]",
647 .function = pg_capture_cmd_fn,
648};
Calvin71e97c62016-08-19 16:23:14 -0400649/* *INDENT-ON* */
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200650
651static clib_error_t *
652create_pg_if_cmd_fn (vlib_main_t * vm,
Calvin71e97c62016-08-19 16:23:14 -0400653 unformat_input_t * input, vlib_cli_command_t * cmd)
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200654{
Calvin71e97c62016-08-19 16:23:14 -0400655 pg_main_t *pg = &pg_main;
656 unformat_input_t _line_input, *line_input = &_line_input;
Mohsin Kazmi22e9cfd2019-07-23 11:54:48 +0200657 u32 if_id, gso_enabled = 0, gso_size = 0;
Billy McFalla9a20e72017-02-15 11:39:12 -0500658 clib_error_t *error = NULL;
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200659
Calvin71e97c62016-08-19 16:23:14 -0400660 if (!unformat_user (input, unformat_line_input, line_input))
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200661 return 0;
662
663 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
664 {
665 if (unformat (line_input, "interface pg%u", &if_id))
666 ;
Mohsin Kazmi22e9cfd2019-07-23 11:54:48 +0200667 else if (unformat (line_input, "gso-enabled"))
668 {
669 gso_enabled = 1;
670 if (unformat (line_input, "gso-size %u", &gso_size))
671 ;
672 else
673 {
674 error = clib_error_create ("gso enabled but gso size missing");
675 goto done;
676 }
677 }
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200678 else
Billy McFalla9a20e72017-02-15 11:39:12 -0500679 {
680 error = clib_error_create ("unknown input `%U'",
681 format_unformat_error, line_input);
682 goto done;
683 }
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200684 }
685
Mohsin Kazmi22e9cfd2019-07-23 11:54:48 +0200686 pg_interface_add_or_get (pg, if_id, gso_enabled, gso_size);
Billy McFalla9a20e72017-02-15 11:39:12 -0500687
688done:
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200689 unformat_free (line_input);
690
Billy McFalla9a20e72017-02-15 11:39:12 -0500691 return error;
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200692}
693
Calvin71e97c62016-08-19 16:23:14 -0400694/* *INDENT-OFF* */
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200695VLIB_CLI_COMMAND (create_pg_if_cmd, static) = {
696 .path = "create packet-generator",
Mohsin Kazmi22e9cfd2019-07-23 11:54:48 +0200697 .short_help = "create packet-generator interface <interface name> [gso-enabled gso-size <size>]",
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200698 .function = create_pg_if_cmd_fn,
699};
Calvin71e97c62016-08-19 16:23:14 -0400700/* *INDENT-ON* */
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200701
Ed Warnickecb9cada2015-12-08 15:45:58 -0700702/* Dummy init function so that we can be linked in. */
Calvin71e97c62016-08-19 16:23:14 -0400703static clib_error_t *
704pg_cli_init (vlib_main_t * vm)
705{
706 return 0;
707}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700708
709VLIB_INIT_FUNCTION (pg_cli_init);
Calvin71e97c62016-08-19 16:23:14 -0400710
711/*
712 * fd.io coding-style-patch-verification: ON
713 *
714 * Local Variables:
715 * eval: (c-set-style "gnu")
716 * End:
717 */