blob: 4053887633d36d7f27ebf6bda8c639f9e881c5d8 [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)
90 return clib_error_return (0, "Cannot create pcap file");
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +020091 }
92
Calvin71e97c62016-08-19 16:23:14 -040093 pi = pool_elt_at_index (pg->interfaces, a->dev_instance);
94 vec_free (pi->pcap_file_name);
Dave Barachb7b92992018-10-17 10:38:51 -040095 clib_memset (&pi->pcap_main, 0, sizeof (pi->pcap_main));
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +020096
Calvin71e97c62016-08-19 16:23:14 -040097 if (a->is_enabled == 0)
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +020098 return 0;
Calvin71e97c62016-08-19 16:23:14 -040099
100 pi->pcap_file_name = a->pcap_file_name;
101 pi->pcap_main.file_name = (char *) pi->pcap_file_name;
102 pi->pcap_main.n_packets_to_capture = a->count;
103 pi->pcap_main.packet_type = PCAP_PACKET_TYPE_ethernet;
104
105 return 0;
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +0200106}
107
Ed Warnickecb9cada2015-12-08 15:45:58 -0700108static clib_error_t *
109enable_disable_stream (vlib_main_t * vm,
Calvin71e97c62016-08-19 16:23:14 -0400110 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700111{
Calvin71e97c62016-08-19 16:23:14 -0400112 pg_main_t *pg = &pg_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113 int is_enable = cmd->function_arg != 0;
114 u32 stream_index = ~0;
115
116 if (unformat (input, "%U", unformat_eof))
117 ;
118 else if (unformat (input, "%U", unformat_hash_vec_string,
119 pg->stream_index_by_name, &stream_index))
120 ;
121 else
122 return clib_error_create ("unknown input `%U'",
123 format_unformat_error, input);
124
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +0200125 pg_enable_disable (stream_index, is_enable);
126
Ed Warnickecb9cada2015-12-08 15:45:58 -0700127 return 0;
128}
129
Calvin71e97c62016-08-19 16:23:14 -0400130/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700131VLIB_CLI_COMMAND (enable_streams_cli, static) = {
132 .path = "packet-generator enable-stream",
133 .short_help = "Enable packet generator streams",
134 .function = enable_disable_stream,
135 .function_arg = 1, /* is_enable */
136};
Calvin71e97c62016-08-19 16:23:14 -0400137/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138
Calvin71e97c62016-08-19 16:23:14 -0400139/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700140VLIB_CLI_COMMAND (disable_streams_cli, static) = {
141 .path = "packet-generator disable-stream",
142 .short_help = "Disable packet generator streams",
143 .function = enable_disable_stream,
144 .function_arg = 0, /* is_enable */
145};
Calvin71e97c62016-08-19 16:23:14 -0400146/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700147
Calvin71e97c62016-08-19 16:23:14 -0400148static u8 *
Kingwel Xie42223472019-01-19 22:49:26 -0500149format_pg_edit_group (u8 * s, va_list * va)
150{
151 pg_edit_group_t *g = va_arg (*va, pg_edit_group_t *);
152
153 s =
154 format (s, "hdr-size %d, offset %d, ", g->n_packet_bytes,
155 g->start_byte_offset);
156 if (g->edit_function)
157 {
158 u8 *function_name;
159 u8 *junk_after_name;
160 function_name = format (0, "%U%c", format_clib_elf_symbol_with_address,
161 g->edit_function, 0);
162 junk_after_name = function_name;
163 while (*junk_after_name && *junk_after_name != ' ')
164 junk_after_name++;
165 *junk_after_name = 0;
166 s = format (s, "edit-funtion %s, ", function_name);
167 vec_free (function_name);
168 }
169
170 return s;
171}
172
173static u8 *
Calvin71e97c62016-08-19 16:23:14 -0400174format_pg_stream (u8 * s, va_list * va)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700175{
Calvin71e97c62016-08-19 16:23:14 -0400176 pg_stream_t *t = va_arg (*va, pg_stream_t *);
Kingwel Xie42223472019-01-19 22:49:26 -0500177 int verbose = va_arg (*va, int);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700178
Calvin71e97c62016-08-19 16:23:14 -0400179 if (!t)
Kingwel Xie42223472019-01-19 22:49:26 -0500180 return format (s, "%-16s%=12s%=16s%s",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700181 "Name", "Enabled", "Count", "Parameters");
182
Kingwel Xie42223472019-01-19 22:49:26 -0500183 s = format (s, "%-16v%=12s%=16Ld",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700184 t->name,
185 pg_stream_is_enabled (t) ? "Yes" : "No",
186 t->n_packets_generated);
187
Kingwel Xie42223472019-01-19 22:49:26 -0500188 int indent = format_get_indent (s);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700189
Kingwel Xie42223472019-01-19 22:49:26 -0500190 s = format (s, "limit %Ld, ", t->n_packets_limit);
191 s = format (s, "rate %.2e pps, ", t->rate_packets_per_second);
192 s = format (s, "size %d%c%d, ",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700193 t->min_packet_bytes,
194 t->packet_size_edit_type == PG_EDIT_RANDOM ? '+' : '-',
195 t->max_packet_bytes);
Kingwel Xie42223472019-01-19 22:49:26 -0500196 s = format (s, "buffer-size %d, ", t->buffer_bytes);
197 s = format (s, "worker %d, ", t->worker_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700198
Kingwel Xie42223472019-01-19 22:49:26 -0500199 if (verbose)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700200 {
Kingwel Xie42223472019-01-19 22:49:26 -0500201 pg_edit_group_t *g;
202 /* *INDENT-OFF* */
203 vec_foreach (g, t->edit_groups)
204 {
205 s = format (s, "\n%U%U", format_white_space, indent, format_pg_edit_group, g);
206 }
207 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700208 }
209
210 return s;
211}
212
213static clib_error_t *
214show_streams (vlib_main_t * vm,
Calvin71e97c62016-08-19 16:23:14 -0400215 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216{
Calvin71e97c62016-08-19 16:23:14 -0400217 pg_main_t *pg = &pg_main;
218 pg_stream_t *s;
Kingwel Xie42223472019-01-19 22:49:26 -0500219 int verbose = 0;
220
221 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
222 {
223 if (unformat (input, "verbose"))
224 verbose = 1;
225 else
226 break;
227 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700228
229 if (pool_elts (pg->streams) == 0)
230 {
231 vlib_cli_output (vm, "no streams currently defined");
232 goto done;
233 }
234
Kingwel Xie42223472019-01-19 22:49:26 -0500235 vlib_cli_output (vm, "%U", format_pg_stream, 0, 0);
Calvin71e97c62016-08-19 16:23:14 -0400236 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700237 pool_foreach (s, pg->streams, ({
Kingwel Xie42223472019-01-19 22:49:26 -0500238 vlib_cli_output (vm, "%U", format_pg_stream, s, verbose);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700239 }));
Calvin71e97c62016-08-19 16:23:14 -0400240 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700241
Calvin71e97c62016-08-19 16:23:14 -0400242done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700243 return 0;
244}
245
Calvin71e97c62016-08-19 16:23:14 -0400246/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700247VLIB_CLI_COMMAND (show_streams_cli, static) = {
Kingwel Xie42223472019-01-19 22:49:26 -0500248 .path = "show packet-generator ",
249 .short_help = "show packet-generator [verbose]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250 .function = show_streams,
251};
Calvin71e97c62016-08-19 16:23:14 -0400252/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700253
254static clib_error_t *
Calvin71e97c62016-08-19 16:23:14 -0400255pg_pcap_read (pg_stream_t * s, char *file_name)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700256{
257#ifndef CLIB_UNIX
258 return clib_error_return (0, "no pcap support");
259#else
260 pcap_main_t pm;
Calvin71e97c62016-08-19 16:23:14 -0400261 clib_error_t *error;
Dave Barachb7b92992018-10-17 10:38:51 -0400262 clib_memset (&pm, 0, sizeof (pm));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700263 pm.file_name = file_name;
264 error = pcap_read (&pm);
265 s->replay_packet_templates = pm.packets_read;
Dave Barach78c56892018-05-16 11:34:35 -0400266 s->replay_packet_timestamps = pm.timestamps;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700267 s->min_packet_bytes = pm.min_packet_bytes;
268 s->max_packet_bytes = pm.max_packet_bytes;
269 s->buffer_bytes = pm.max_packet_bytes;
270 /* For PCAP buffers we never re-use buffers. */
271 s->flags |= PG_STREAM_FLAGS_DISABLE_BUFFER_RECYCLE;
Damjan Marionddbdd4f2016-07-08 22:08:16 +0200272
273 if (s->n_packets_limit == 0)
274 s->n_packets_limit = vec_len (pm.packets_read);
275
Ed Warnickecb9cada2015-12-08 15:45:58 -0700276 return error;
277#endif /* CLIB_UNIX */
278}
279
280static uword
281unformat_pg_stream_parameter (unformat_input_t * input, va_list * args)
282{
Calvin71e97c62016-08-19 16:23:14 -0400283 pg_stream_t *s = va_arg (*args, pg_stream_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700284 f64 x;
285
286 if (unformat (input, "limit %f", &x))
287 s->n_packets_limit = x;
288
289 else if (unformat (input, "rate %f", &x))
290 s->rate_packets_per_second = x;
291
292 else if (unformat (input, "size %d-%d", &s->min_packet_bytes,
293 &s->max_packet_bytes))
294 s->packet_size_edit_type = PG_EDIT_INCREMENT;
295
296 else if (unformat (input, "size %d+%d", &s->min_packet_bytes,
297 &s->max_packet_bytes))
298 s->packet_size_edit_type = PG_EDIT_RANDOM;
299
300 else if (unformat (input, "buffer-size %d", &s->buffer_bytes))
301 ;
302
303 else
304 return 0;
305
306 return 1;
307}
308
309static clib_error_t *
310validate_stream (pg_stream_t * s)
311{
312 if (s->max_packet_bytes < s->min_packet_bytes)
313 return clib_error_create ("max-size < min-size");
314
Kingwel Xie42223472019-01-19 22:49:26 -0500315 u32 hdr_size = pg_edit_group_n_bytes (s, 0);
316 if (s->min_packet_bytes < hdr_size)
317 return clib_error_create ("min-size < total header size %d", hdr_size);
318 if (s->buffer_bytes == 0)
319 return clib_error_create ("buffer-size must be positive");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700320
321 if (s->rate_packets_per_second < 0)
322 return clib_error_create ("negative rate");
323
324 return 0;
325}
326
327static clib_error_t *
328new_stream (vlib_main_t * vm,
Calvin71e97c62016-08-19 16:23:14 -0400329 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700330{
Calvin71e97c62016-08-19 16:23:14 -0400331 clib_error_t *error = 0;
332 u8 *tmp = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700333 u32 hw_if_index;
Calvin71e97c62016-08-19 16:23:14 -0400334 unformat_input_t sub_input = { 0 };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700335 int sub_input_given = 0;
Calvin71e97c62016-08-19 16:23:14 -0400336 vnet_main_t *vnm = vnet_get_main ();
337 pg_main_t *pg = &pg_main;
338 pg_stream_t s = { 0 };
339 char *pcap_file_name;
340
Ed Warnickecb9cada2015-12-08 15:45:58 -0700341 s.sw_if_index[VLIB_RX] = s.sw_if_index[VLIB_TX] = ~0;
342 s.node_index = ~0;
343 s.max_packet_bytes = s.min_packet_bytes = 64;
Damjan Marion5de3fec2019-02-06 14:22:32 +0100344 s.buffer_bytes = vlib_bufer_get_default_size (vm);
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200345 s.if_id = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700346 pcap_file_name = 0;
347 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
348 {
349 if (unformat (input, "name %v", &tmp))
350 {
351 if (s.name)
352 vec_free (s.name);
353 s.name = tmp;
354 }
355
356 else if (unformat (input, "node %U",
357 unformat_vnet_hw_interface, vnm, &hw_if_index))
358 {
Calvin71e97c62016-08-19 16:23:14 -0400359 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700360
361 s.node_index = hi->output_node_index;
362 s.sw_if_index[VLIB_TX] = hi->sw_if_index;
363 }
364
Calvin71e97c62016-08-19 16:23:14 -0400365 else if (unformat (input, "source pg%u", &s.if_id))
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200366 ;
367
Ed Warnickecb9cada2015-12-08 15:45:58 -0700368 else if (unformat (input, "node %U",
369 unformat_vlib_node, vm, &s.node_index))
370 ;
Calvin71e97c62016-08-19 16:23:14 -0400371
Damjan Marion64034362016-11-07 22:19:55 +0100372 else if (unformat (input, "worker %u", &s.worker_index))
373 ;
374
Ed Warnickecb9cada2015-12-08 15:45:58 -0700375 else if (unformat (input, "interface %U",
Calvin71e97c62016-08-19 16:23:14 -0400376 unformat_vnet_sw_interface, vnm,
377 &s.sw_if_index[VLIB_RX]))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700378 ;
379
380 else if (unformat (input, "pcap %s", &pcap_file_name))
381 ;
382
Calvin71e97c62016-08-19 16:23:14 -0400383 else if (!sub_input_given
Ed Warnickecb9cada2015-12-08 15:45:58 -0700384 && unformat (input, "data %U", unformat_input, &sub_input))
385 sub_input_given++;
Calvin71e97c62016-08-19 16:23:14 -0400386
Ed Warnickecb9cada2015-12-08 15:45:58 -0700387 else if (unformat_user (input, unformat_pg_stream_parameter, &s))
388 ;
389
390 else if (unformat (input, "no-recycle"))
391 s.flags |= PG_STREAM_FLAGS_DISABLE_BUFFER_RECYCLE;
392
393 else
394 {
395 error = clib_error_create ("unknown input `%U'",
396 format_unformat_error, input);
397 goto done;
398 }
399 }
400
Calvin71e97c62016-08-19 16:23:14 -0400401 if (!sub_input_given && !pcap_file_name)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700402 {
403 error = clib_error_create ("no packet data given");
404 goto done;
405 }
406
407 if (s.node_index == ~0)
408 {
Damjan Marionddbdd4f2016-07-08 22:08:16 +0200409 if (pcap_file_name != 0)
410 {
Calvin71e97c62016-08-19 16:23:14 -0400411 vlib_node_t *n =
412 vlib_get_node_by_name (vm, (u8 *) "ethernet-input");
Damjan Marionddbdd4f2016-07-08 22:08:16 +0200413 s.node_index = n->index;
414 }
415 else
416 {
417 error = clib_error_create ("output interface or node not given");
418 goto done;
419 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700420 }
421
422 {
Calvin71e97c62016-08-19 16:23:14 -0400423 pg_node_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700424
425 if (s.node_index < vec_len (pg->nodes))
426 n = pg->nodes + s.node_index;
427 else
428 n = 0;
429
Damjan Marion64034362016-11-07 22:19:55 +0100430 if (s.worker_index >= vlib_num_workers ())
431 s.worker_index = 0;
432
Ed Warnickecb9cada2015-12-08 15:45:58 -0700433 if (pcap_file_name != 0)
434 {
435 error = pg_pcap_read (&s, pcap_file_name);
436 if (error)
437 goto done;
438 vec_free (pcap_file_name);
439 }
440
441 else if (n && n->unformat_edit
Calvin71e97c62016-08-19 16:23:14 -0400442 && unformat_user (&sub_input, n->unformat_edit, &s))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700443 ;
444
Calvin71e97c62016-08-19 16:23:14 -0400445 else if (!unformat_user (&sub_input, unformat_pg_payload, &s))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700446 {
447 error = clib_error_create
448 ("failed to parse packet data from `%U'",
449 format_unformat_error, &sub_input);
450 goto done;
451 }
452 }
453
Kingwel Xie42223472019-01-19 22:49:26 -0500454 error = validate_stream (&s);
455 if (error)
456 return error;
457
Ed Warnickecb9cada2015-12-08 15:45:58 -0700458 pg_stream_add (pg, &s);
459 return 0;
460
Calvin71e97c62016-08-19 16:23:14 -0400461done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700462 pg_stream_free (&s);
463 unformat_free (&sub_input);
464 return error;
465}
466
Calvin71e97c62016-08-19 16:23:14 -0400467/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700468VLIB_CLI_COMMAND (new_stream_cli, static) = {
469 .path = "packet-generator new",
470 .function = new_stream,
471 .short_help = "Create packet generator stream",
472 .long_help =
473 "Create packet generator stream\n"
474 "\n"
475 "Arguments:\n"
476 "\n"
477 "name STRING sets stream name\n"
478 "interface STRING interface for stream output \n"
479 "node NODE-NAME node for stream output\n"
Damjan Marionddbdd4f2016-07-08 22:08:16 +0200480 "data STRING specifies packet data\n"
481 "pcap FILENAME read packet data from pcap file\n",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700482};
Calvin71e97c62016-08-19 16:23:14 -0400483/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700484
485static clib_error_t *
486del_stream (vlib_main_t * vm,
Calvin71e97c62016-08-19 16:23:14 -0400487 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700488{
Calvin71e97c62016-08-19 16:23:14 -0400489 pg_main_t *pg = &pg_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700490 u32 i;
Calvin71e97c62016-08-19 16:23:14 -0400491
492 if (!unformat (input, "%U",
493 &unformat_hash_vec_string, pg->stream_index_by_name, &i))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700494 return clib_error_create ("expected stream name `%U'",
495 format_unformat_error, input);
496
497 pg_stream_del (pg, i);
498 return 0;
499}
500
Calvin71e97c62016-08-19 16:23:14 -0400501/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700502VLIB_CLI_COMMAND (del_stream_cli, static) = {
503 .path = "packet-generator delete",
504 .function = del_stream,
505 .short_help = "Delete stream with given name",
506};
Calvin71e97c62016-08-19 16:23:14 -0400507/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700508
509static clib_error_t *
510change_stream_parameters (vlib_main_t * vm,
Calvin71e97c62016-08-19 16:23:14 -0400511 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700512{
Calvin71e97c62016-08-19 16:23:14 -0400513 pg_main_t *pg = &pg_main;
514 pg_stream_t *s, s_new;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700515 u32 stream_index = ~0;
Calvin71e97c62016-08-19 16:23:14 -0400516 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700517
518 if (unformat (input, "%U", unformat_hash_vec_string,
519 pg->stream_index_by_name, &stream_index))
520 ;
521 else
522 return clib_error_create ("expecting stream name; got `%U'",
523 format_unformat_error, input);
524
525 s = pool_elt_at_index (pg->streams, stream_index);
526 s_new = s[0];
527
528 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
529 {
530 if (unformat_user (input, unformat_pg_stream_parameter, &s_new))
531 ;
532
533 else
534 return clib_error_create ("unknown input `%U'",
535 format_unformat_error, input);
536 }
537
538 error = validate_stream (&s_new);
Calvin71e97c62016-08-19 16:23:14 -0400539 if (!error)
Kingwel Xie42223472019-01-19 22:49:26 -0500540 {
541 s[0] = s_new;
542 pg_stream_change (pg, s);
543 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700544
545 return error;
546}
547
Calvin71e97c62016-08-19 16:23:14 -0400548/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700549VLIB_CLI_COMMAND (change_stream_parameters_cli, static) = {
550 .path = "packet-generator configure",
551 .short_help = "Change packet generator stream parameters",
552 .function = change_stream_parameters,
553};
Calvin71e97c62016-08-19 16:23:14 -0400554/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700555
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200556static clib_error_t *
557pg_capture_cmd_fn (vlib_main_t * vm,
Calvin71e97c62016-08-19 16:23:14 -0400558 unformat_input_t * input, vlib_cli_command_t * cmd)
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200559{
Calvin71e97c62016-08-19 16:23:14 -0400560 clib_error_t *error = 0;
561 vnet_main_t *vnm = vnet_get_main ();
562 unformat_input_t _line_input, *line_input = &_line_input;
563 vnet_hw_interface_t *hi = 0;
564 u8 *pcap_file_name = 0;
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200565 u32 hw_if_index;
Damjan Marion92217f32016-07-12 21:58:19 +0200566 u32 is_disable = 0;
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200567 u32 count = ~0;
568
Calvin71e97c62016-08-19 16:23:14 -0400569 if (!unformat_user (input, unformat_line_input, line_input))
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200570 return 0;
571
572 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
573 {
574 if (unformat (line_input, "%U",
Calvin71e97c62016-08-19 16:23:14 -0400575 unformat_vnet_hw_interface, vnm, &hw_if_index))
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200576 {
577 hi = vnet_get_hw_interface (vnm, hw_if_index);
578 }
579
580 else if (unformat (line_input, "pcap %s", &pcap_file_name))
581 ;
582 else if (unformat (line_input, "count %u", &count))
583 ;
Damjan Marion92217f32016-07-12 21:58:19 +0200584 else if (unformat (line_input, "disable"))
585 is_disable = 1;
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200586
587 else
588 {
589 error = clib_error_create ("unknown input `%U'",
Billy McFalla9a20e72017-02-15 11:39:12 -0500590 format_unformat_error, line_input);
591 goto done;
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200592 }
593 }
594
595 if (!hi)
Billy McFalla9a20e72017-02-15 11:39:12 -0500596 {
597 error = clib_error_return (0, "Please specify interface name");
598 goto done;
599 }
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200600
601 if (hi->dev_class_index != pg_dev_class.index)
Billy McFalla9a20e72017-02-15 11:39:12 -0500602 {
603 error =
604 clib_error_return (0, "Please specify packet-generator interface");
605 goto done;
606 }
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200607
Damjan Marion92217f32016-07-12 21:58:19 +0200608 if (!pcap_file_name && is_disable == 0)
Billy McFalla9a20e72017-02-15 11:39:12 -0500609 {
610 error = clib_error_return (0, "Please specify pcap file name");
611 goto done;
612 }
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200613
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200614
Calvin71e97c62016-08-19 16:23:14 -0400615 pg_capture_args_t _a, *a = &_a;
Damjan Marion92217f32016-07-12 21:58:19 +0200616
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +0200617 a->hw_if_index = hw_if_index;
618 a->dev_instance = hi->dev_instance;
619 a->is_enabled = !is_disable;
620 a->pcap_file_name = pcap_file_name;
621 a->count = count;
Damjan Marion92217f32016-07-12 21:58:19 +0200622
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +0200623 error = pg_capture (a);
Billy McFalla9a20e72017-02-15 11:39:12 -0500624
625done:
626 unformat_free (line_input);
627
Pavel Kotucek9e6ed6e2016-07-12 10:18:26 +0200628 return error;
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200629}
630
Calvin71e97c62016-08-19 16:23:14 -0400631/* *INDENT-OFF* */
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200632VLIB_CLI_COMMAND (pg_capture_cmd, static) = {
633 .path = "packet-generator capture",
634 .short_help = "packet-generator capture <interface name> pcap <filename> [count <n>]",
635 .function = pg_capture_cmd_fn,
636};
Calvin71e97c62016-08-19 16:23:14 -0400637/* *INDENT-ON* */
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200638
639static clib_error_t *
640create_pg_if_cmd_fn (vlib_main_t * vm,
Calvin71e97c62016-08-19 16:23:14 -0400641 unformat_input_t * input, vlib_cli_command_t * cmd)
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200642{
Calvin71e97c62016-08-19 16:23:14 -0400643 pg_main_t *pg = &pg_main;
644 unformat_input_t _line_input, *line_input = &_line_input;
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200645 u32 if_id;
Billy McFalla9a20e72017-02-15 11:39:12 -0500646 clib_error_t *error = NULL;
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200647
Calvin71e97c62016-08-19 16:23:14 -0400648 if (!unformat_user (input, unformat_line_input, line_input))
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200649 return 0;
650
651 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
652 {
653 if (unformat (line_input, "interface pg%u", &if_id))
654 ;
655
656 else
Billy McFalla9a20e72017-02-15 11:39:12 -0500657 {
658 error = clib_error_create ("unknown input `%U'",
659 format_unformat_error, line_input);
660 goto done;
661 }
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200662 }
663
Billy McFalla9a20e72017-02-15 11:39:12 -0500664 pg_interface_add_or_get (pg, if_id);
665
666done:
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200667 unformat_free (line_input);
668
Billy McFalla9a20e72017-02-15 11:39:12 -0500669 return error;
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200670}
671
Calvin71e97c62016-08-19 16:23:14 -0400672/* *INDENT-OFF* */
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200673VLIB_CLI_COMMAND (create_pg_if_cmd, static) = {
674 .path = "create packet-generator",
675 .short_help = "create packet-generator interface <interface name>",
676 .function = create_pg_if_cmd_fn,
677};
Calvin71e97c62016-08-19 16:23:14 -0400678/* *INDENT-ON* */
Damjan Marion3d9c86e2016-07-04 21:04:40 +0200679
Ed Warnickecb9cada2015-12-08 15:45:58 -0700680/* Dummy init function so that we can be linked in. */
Calvin71e97c62016-08-19 16:23:14 -0400681static clib_error_t *
682pg_cli_init (vlib_main_t * vm)
683{
684 return 0;
685}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700686
687VLIB_INIT_FUNCTION (pg_cli_init);
Calvin71e97c62016-08-19 16:23:14 -0400688
689/*
690 * fd.io coding-style-patch-verification: ON
691 *
692 * Local Variables:
693 * eval: (c-set-style "gnu")
694 * End:
695 */