blob: 8f82ac1c1f71c9e4da4dc5dfd9d906ae0843382c [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)
Paul Vinciguerra9673e3e2019-05-10 20:41:08 -040090 return clib_error_return (0, "pcap file '%s' does not exist.",
91 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;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700339 u32 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;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700352 pcap_file_name = 0;
353 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
354 {
355 if (unformat (input, "name %v", &tmp))
356 {
357 if (s.name)
358 vec_free (s.name);
359 s.name = tmp;
360 }
361
362 else if (unformat (input, "node %U",
363 unformat_vnet_hw_interface, vnm, &hw_if_index))
364 {
Calvin71e97c62016-08-19 16:23:14 -0400365 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700366
367 s.node_index = hi->output_node_index;
368 s.sw_if_index[VLIB_TX] = hi->sw_if_index;
369 }
370
Calvin71e97c62016-08-19 16:23:14 -0400371 else if (unformat (input, "source pg%u", &s.if_id))
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200372 ;
373
Ed Warnickecb9cada2015-12-08 15:45:58 -0700374 else if (unformat (input, "node %U",
375 unformat_vlib_node, vm, &s.node_index))
376 ;
Calvin71e97c62016-08-19 16:23:14 -0400377
Damjan Marion64034362016-11-07 22:19:55 +0100378 else if (unformat (input, "worker %u", &s.worker_index))
379 ;
380
Ed Warnickecb9cada2015-12-08 15:45:58 -0700381 else if (unformat (input, "interface %U",
Calvin71e97c62016-08-19 16:23:14 -0400382 unformat_vnet_sw_interface, vnm,
383 &s.sw_if_index[VLIB_RX]))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700384 ;
Dave Barach7d31ab22019-05-08 19:18:18 -0400385 else if (unformat (input, "tx-interface %U",
386 unformat_vnet_sw_interface, vnm,
387 &s.sw_if_index[VLIB_TX]))
388 ;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700389
390 else if (unformat (input, "pcap %s", &pcap_file_name))
391 ;
392
Calvin71e97c62016-08-19 16:23:14 -0400393 else if (!sub_input_given
Ed Warnickecb9cada2015-12-08 15:45:58 -0700394 && unformat (input, "data %U", unformat_input, &sub_input))
395 sub_input_given++;
Calvin71e97c62016-08-19 16:23:14 -0400396
Ed Warnickecb9cada2015-12-08 15:45:58 -0700397 else if (unformat_user (input, unformat_pg_stream_parameter, &s))
398 ;
399
Ed Warnickecb9cada2015-12-08 15:45:58 -0700400 else
401 {
402 error = clib_error_create ("unknown input `%U'",
403 format_unformat_error, input);
404 goto done;
405 }
406 }
407
Calvin71e97c62016-08-19 16:23:14 -0400408 if (!sub_input_given && !pcap_file_name)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700409 {
410 error = clib_error_create ("no packet data given");
411 goto done;
412 }
413
414 if (s.node_index == ~0)
415 {
Damjan Marionddbdd4f2016-07-08 22:08:16 +0200416 if (pcap_file_name != 0)
417 {
Calvin71e97c62016-08-19 16:23:14 -0400418 vlib_node_t *n =
419 vlib_get_node_by_name (vm, (u8 *) "ethernet-input");
Damjan Marionddbdd4f2016-07-08 22:08:16 +0200420 s.node_index = n->index;
421 }
422 else
423 {
424 error = clib_error_create ("output interface or node not given");
425 goto done;
426 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700427 }
428
429 {
Calvin71e97c62016-08-19 16:23:14 -0400430 pg_node_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700431
432 if (s.node_index < vec_len (pg->nodes))
433 n = pg->nodes + s.node_index;
434 else
435 n = 0;
436
Damjan Marion64034362016-11-07 22:19:55 +0100437 if (s.worker_index >= vlib_num_workers ())
438 s.worker_index = 0;
439
Ed Warnickecb9cada2015-12-08 15:45:58 -0700440 if (pcap_file_name != 0)
441 {
442 error = pg_pcap_read (&s, pcap_file_name);
443 if (error)
444 goto done;
445 vec_free (pcap_file_name);
446 }
447
448 else if (n && n->unformat_edit
Calvin71e97c62016-08-19 16:23:14 -0400449 && unformat_user (&sub_input, n->unformat_edit, &s))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700450 ;
451
Calvin71e97c62016-08-19 16:23:14 -0400452 else if (!unformat_user (&sub_input, unformat_pg_payload, &s))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700453 {
454 error = clib_error_create
455 ("failed to parse packet data from `%U'",
456 format_unformat_error, &sub_input);
457 goto done;
458 }
459 }
460
Kingwel Xie42223472019-01-19 22:49:26 -0500461 error = validate_stream (&s);
462 if (error)
463 return error;
464
Ed Warnickecb9cada2015-12-08 15:45:58 -0700465 pg_stream_add (pg, &s);
466 return 0;
467
Calvin71e97c62016-08-19 16:23:14 -0400468done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700469 pg_stream_free (&s);
470 unformat_free (&sub_input);
471 return error;
472}
473
Calvin71e97c62016-08-19 16:23:14 -0400474/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700475VLIB_CLI_COMMAND (new_stream_cli, static) = {
476 .path = "packet-generator new",
477 .function = new_stream,
478 .short_help = "Create packet generator stream",
479 .long_help =
480 "Create packet generator stream\n"
481 "\n"
482 "Arguments:\n"
483 "\n"
484 "name STRING sets stream name\n"
485 "interface STRING interface for stream output \n"
486 "node NODE-NAME node for stream output\n"
Damjan Marionddbdd4f2016-07-08 22:08:16 +0200487 "data STRING specifies packet data\n"
488 "pcap FILENAME read packet data from pcap file\n",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700489};
Calvin71e97c62016-08-19 16:23:14 -0400490/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700491
492static clib_error_t *
493del_stream (vlib_main_t * vm,
Calvin71e97c62016-08-19 16:23:14 -0400494 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700495{
Calvin71e97c62016-08-19 16:23:14 -0400496 pg_main_t *pg = &pg_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700497 u32 i;
Calvin71e97c62016-08-19 16:23:14 -0400498
499 if (!unformat (input, "%U",
500 &unformat_hash_vec_string, pg->stream_index_by_name, &i))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700501 return clib_error_create ("expected stream name `%U'",
502 format_unformat_error, input);
503
504 pg_stream_del (pg, i);
505 return 0;
506}
507
Calvin71e97c62016-08-19 16:23:14 -0400508/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700509VLIB_CLI_COMMAND (del_stream_cli, static) = {
510 .path = "packet-generator delete",
511 .function = del_stream,
512 .short_help = "Delete stream with given name",
513};
Calvin71e97c62016-08-19 16:23:14 -0400514/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700515
516static clib_error_t *
517change_stream_parameters (vlib_main_t * vm,
Calvin71e97c62016-08-19 16:23:14 -0400518 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700519{
Calvin71e97c62016-08-19 16:23:14 -0400520 pg_main_t *pg = &pg_main;
521 pg_stream_t *s, s_new;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700522 u32 stream_index = ~0;
Calvin71e97c62016-08-19 16:23:14 -0400523 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700524
525 if (unformat (input, "%U", unformat_hash_vec_string,
526 pg->stream_index_by_name, &stream_index))
527 ;
528 else
529 return clib_error_create ("expecting stream name; got `%U'",
530 format_unformat_error, input);
531
532 s = pool_elt_at_index (pg->streams, stream_index);
533 s_new = s[0];
534
535 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
536 {
537 if (unformat_user (input, unformat_pg_stream_parameter, &s_new))
538 ;
539
540 else
541 return clib_error_create ("unknown input `%U'",
542 format_unformat_error, input);
543 }
544
545 error = validate_stream (&s_new);
Calvin71e97c62016-08-19 16:23:14 -0400546 if (!error)
Kingwel Xie42223472019-01-19 22:49:26 -0500547 {
548 s[0] = s_new;
549 pg_stream_change (pg, s);
550 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700551
552 return error;
553}
554
Calvin71e97c62016-08-19 16:23:14 -0400555/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700556VLIB_CLI_COMMAND (change_stream_parameters_cli, static) = {
557 .path = "packet-generator configure",
558 .short_help = "Change packet generator stream parameters",
559 .function = change_stream_parameters,
560};
Calvin71e97c62016-08-19 16:23:14 -0400561/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700562
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200563static clib_error_t *
564pg_capture_cmd_fn (vlib_main_t * vm,
Calvin71e97c62016-08-19 16:23:14 -0400565 unformat_input_t * input, vlib_cli_command_t * cmd)
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200566{
Calvin71e97c62016-08-19 16:23:14 -0400567 clib_error_t *error = 0;
568 vnet_main_t *vnm = vnet_get_main ();
569 unformat_input_t _line_input, *line_input = &_line_input;
570 vnet_hw_interface_t *hi = 0;
571 u8 *pcap_file_name = 0;
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200572 u32 hw_if_index;
Damjan Marion92217f32016-07-12 21:58:19 +0200573 u32 is_disable = 0;
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200574 u32 count = ~0;
575
Calvin71e97c62016-08-19 16:23:14 -0400576 if (!unformat_user (input, unformat_line_input, line_input))
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200577 return 0;
578
579 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
580 {
581 if (unformat (line_input, "%U",
Calvin71e97c62016-08-19 16:23:14 -0400582 unformat_vnet_hw_interface, vnm, &hw_if_index))
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200583 {
584 hi = vnet_get_hw_interface (vnm, hw_if_index);
585 }
586
587 else if (unformat (line_input, "pcap %s", &pcap_file_name))
588 ;
589 else if (unformat (line_input, "count %u", &count))
590 ;
Damjan Marion92217f32016-07-12 21:58:19 +0200591 else if (unformat (line_input, "disable"))
592 is_disable = 1;
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200593
594 else
595 {
596 error = clib_error_create ("unknown input `%U'",
Billy McFalla9a20e72017-02-15 11:39:12 -0500597 format_unformat_error, line_input);
598 goto done;
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200599 }
600 }
601
602 if (!hi)
Billy McFalla9a20e72017-02-15 11:39:12 -0500603 {
604 error = clib_error_return (0, "Please specify interface name");
605 goto done;
606 }
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200607
608 if (hi->dev_class_index != pg_dev_class.index)
Billy McFalla9a20e72017-02-15 11:39:12 -0500609 {
610 error =
611 clib_error_return (0, "Please specify packet-generator interface");
612 goto done;
613 }
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200614
Damjan Marion92217f32016-07-12 21:58:19 +0200615 if (!pcap_file_name && is_disable == 0)
Billy McFalla9a20e72017-02-15 11:39:12 -0500616 {
617 error = clib_error_return (0, "Please specify pcap file name");
618 goto done;
619 }
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200620
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200621
Calvin71e97c62016-08-19 16:23:14 -0400622 pg_capture_args_t _a, *a = &_a;
Damjan Marion92217f32016-07-12 21:58:19 +0200623
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +0200624 a->hw_if_index = hw_if_index;
625 a->dev_instance = hi->dev_instance;
626 a->is_enabled = !is_disable;
627 a->pcap_file_name = pcap_file_name;
628 a->count = count;
Damjan Marion92217f32016-07-12 21:58:19 +0200629
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +0200630 error = pg_capture (a);
Billy McFalla9a20e72017-02-15 11:39:12 -0500631
632done:
633 unformat_free (line_input);
634
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +0200635 return error;
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200636}
637
Calvin71e97c62016-08-19 16:23:14 -0400638/* *INDENT-OFF* */
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200639VLIB_CLI_COMMAND (pg_capture_cmd, static) = {
640 .path = "packet-generator capture",
641 .short_help = "packet-generator capture <interface name> pcap <filename> [count <n>]",
642 .function = pg_capture_cmd_fn,
643};
Calvin71e97c62016-08-19 16:23:14 -0400644/* *INDENT-ON* */
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200645
646static clib_error_t *
647create_pg_if_cmd_fn (vlib_main_t * vm,
Calvin71e97c62016-08-19 16:23:14 -0400648 unformat_input_t * input, vlib_cli_command_t * cmd)
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200649{
Calvin71e97c62016-08-19 16:23:14 -0400650 pg_main_t *pg = &pg_main;
651 unformat_input_t _line_input, *line_input = &_line_input;
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200652 u32 if_id;
Billy McFalla9a20e72017-02-15 11:39:12 -0500653 clib_error_t *error = NULL;
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200654
Calvin71e97c62016-08-19 16:23:14 -0400655 if (!unformat_user (input, unformat_line_input, line_input))
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200656 return 0;
657
658 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
659 {
660 if (unformat (line_input, "interface pg%u", &if_id))
661 ;
662
663 else
Billy McFalla9a20e72017-02-15 11:39:12 -0500664 {
665 error = clib_error_create ("unknown input `%U'",
666 format_unformat_error, line_input);
667 goto done;
668 }
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200669 }
670
Billy McFalla9a20e72017-02-15 11:39:12 -0500671 pg_interface_add_or_get (pg, if_id);
672
673done:
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200674 unformat_free (line_input);
675
Billy McFalla9a20e72017-02-15 11:39:12 -0500676 return error;
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200677}
678
Calvin71e97c62016-08-19 16:23:14 -0400679/* *INDENT-OFF* */
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200680VLIB_CLI_COMMAND (create_pg_if_cmd, static) = {
681 .path = "create packet-generator",
682 .short_help = "create packet-generator interface <interface name>",
683 .function = create_pg_if_cmd_fn,
684};
Calvin71e97c62016-08-19 16:23:14 -0400685/* *INDENT-ON* */
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200686
Ed Warnickecb9cada2015-12-08 15:45:58 -0700687/* Dummy init function so that we can be linked in. */
Calvin71e97c62016-08-19 16:23:14 -0400688static clib_error_t *
689pg_cli_init (vlib_main_t * vm)
690{
691 return 0;
692}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700693
694VLIB_INIT_FUNCTION (pg_cli_init);
Calvin71e97c62016-08-19 16:23:14 -0400695
696/*
697 * fd.io coding-style-patch-verification: ON
698 *
699 * Local Variables:
700 * eval: (c-set-style "gnu")
701 * End:
702 */