blob: c62a9858e8cc41cc98ba7647a4943c2b3e043bf8 [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 * interface_cli.c: interface 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
Chris Luke16bcf7d2016-09-01 14:31:46 -040040/**
41 * @file
Billy McFalle9bac692017-08-11 14:05:11 -040042 * @brief Interface CLI.
43 *
44 * Source code for several CLI interface commands.
45 *
Chris Luke16bcf7d2016-09-01 14:31:46 -040046 */
47
Ed Warnickecb9cada2015-12-08 15:45:58 -070048#include <vnet/vnet.h>
49#include <vnet/ip/ip.h>
John Lobcebbb92016-04-05 15:47:43 -040050#include <vppinfra/bitmap.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010051#include <vnet/fib/ip4_fib.h>
52#include <vnet/fib/ip6_fib.h>
Eyal Bari942402b2017-07-26 11:57:04 +030053#include <vnet/l2/l2_output.h>
54#include <vnet/l2/l2_input.h>
Neale Rannsba4a5bf2020-01-09 06:43:14 +000055#include <vnet/classify/vnet_classify.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070056
Dave Barachba868bb2016-08-08 09:51:21 -040057static int
58compare_interface_names (void *a1, void *a2)
Ed Warnickecb9cada2015-12-08 15:45:58 -070059{
Dave Barachba868bb2016-08-08 09:51:21 -040060 u32 *hi1 = a1;
61 u32 *hi2 = a2;
Ed Warnickecb9cada2015-12-08 15:45:58 -070062
Dave Barachba868bb2016-08-08 09:51:21 -040063 return vnet_hw_interface_compare (vnet_get_main (), *hi1, *hi2);
Ed Warnickecb9cada2015-12-08 15:45:58 -070064}
65
66static clib_error_t *
67show_or_clear_hw_interfaces (vlib_main_t * vm,
68 unformat_input_t * input,
Benoît Ganne17814d72020-07-24 09:57:11 +020069 vlib_cli_command_t * cmd, int is_show)
Ed Warnickecb9cada2015-12-08 15:45:58 -070070{
Dave Barachba868bb2016-08-08 09:51:21 -040071 clib_error_t *error = 0;
72 vnet_main_t *vnm = vnet_get_main ();
73 vnet_interface_main_t *im = &vnm->interface_main;
74 vnet_hw_interface_t *hi;
75 u32 hw_if_index, *hw_if_indices = 0;
Benoît Ganne17814d72020-07-24 09:57:11 +020076 int i, verbose = -1, show_bond = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070077
Ed Warnickecb9cada2015-12-08 15:45:58 -070078 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
79 {
80 /* See if user wants to show a specific interface. */
Dave Barachba868bb2016-08-08 09:51:21 -040081 if (unformat
82 (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
83 vec_add1 (hw_if_indices, hw_if_index);
John Lobcebbb92016-04-05 15:47:43 -040084
Sean Hope679ea792016-02-22 15:12:01 -050085 /* See if user wants to show an interface with a specific hw_if_index. */
86 else if (unformat (input, "%u", &hw_if_index))
Dave Barachba868bb2016-08-08 09:51:21 -040087 vec_add1 (hw_if_indices, hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -070088
89 else if (unformat (input, "verbose"))
Dave Barachba868bb2016-08-08 09:51:21 -040090 verbose = 1; /* this is also the default */
Ed Warnickecb9cada2015-12-08 15:45:58 -070091
92 else if (unformat (input, "detail"))
93 verbose = 2;
94
95 else if (unformat (input, "brief"))
96 verbose = 0;
97
John Lobcebbb92016-04-05 15:47:43 -040098 else if (unformat (input, "bond"))
Dave Barachba868bb2016-08-08 09:51:21 -040099 {
100 show_bond = 1;
101 if (verbose < 0)
102 verbose = 0; /* default to brief for link bonding */
103 }
John Lobcebbb92016-04-05 15:47:43 -0400104
Ed Warnickecb9cada2015-12-08 15:45:58 -0700105 else
106 {
107 error = clib_error_return (0, "unknown input `%U'",
108 format_unformat_error, input);
109 goto done;
110 }
111 }
Dave Barachba868bb2016-08-08 09:51:21 -0400112
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113 /* Gather interfaces. */
114 if (vec_len (hw_if_indices) == 0)
115 pool_foreach (hi, im->hw_interfaces,
116 vec_add1 (hw_if_indices, hi - im->hw_interfaces));
117
Dave Barachba868bb2016-08-08 09:51:21 -0400118 if (verbose < 0)
119 verbose = 1; /* default to verbose (except bond) */
John Lobcebbb92016-04-05 15:47:43 -0400120
Ed Warnickecb9cada2015-12-08 15:45:58 -0700121 if (is_show)
122 {
123 /* Sort by name. */
124 vec_sort_with_function (hw_if_indices, compare_interface_names);
125
126 vlib_cli_output (vm, "%U\n", format_vnet_hw_interface, vnm, 0, verbose);
127 for (i = 0; i < vec_len (hw_if_indices); i++)
128 {
129 hi = vnet_get_hw_interface (vnm, hw_if_indices[i]);
Dave Barachba868bb2016-08-08 09:51:21 -0400130 if (show_bond == 0) /* show all interfaces */
131 vlib_cli_output (vm, "%U\n", format_vnet_hw_interface, vnm,
132 hi, verbose);
133 else if ((hi->bond_info) &&
John Lobcebbb92016-04-05 15:47:43 -0400134 (hi->bond_info != VNET_HW_INTERFACE_BOND_INFO_SLAVE))
Dave Barachba868bb2016-08-08 09:51:21 -0400135 { /* show only bonded interface and all its slave interfaces */
John Lobcebbb92016-04-05 15:47:43 -0400136 int hw_idx;
Dave Barachba868bb2016-08-08 09:51:21 -0400137 vnet_hw_interface_t *shi;
138 vlib_cli_output (vm, "%U\n", format_vnet_hw_interface, vnm,
John Lobcebbb92016-04-05 15:47:43 -0400139 hi, verbose);
Dave Barachba868bb2016-08-08 09:51:21 -0400140
141 /* *INDENT-OFF* */
John Lobcebbb92016-04-05 15:47:43 -0400142 clib_bitmap_foreach (hw_idx, hi->bond_info,
Dave Barachba868bb2016-08-08 09:51:21 -0400143 ({
144 shi = vnet_get_hw_interface(vnm, hw_idx);
145 vlib_cli_output (vm, "%U\n",
146 format_vnet_hw_interface, vnm, shi, verbose);
147 }));
148 /* *INDENT-ON* */
John Lobcebbb92016-04-05 15:47:43 -0400149 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150 }
151 }
152 else
153 {
154 for (i = 0; i < vec_len (hw_if_indices); i++)
155 {
Dave Barachba868bb2016-08-08 09:51:21 -0400156 vnet_device_class_t *dc;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700157
158 hi = vnet_get_hw_interface (vnm, hw_if_indices[i]);
159 dc = vec_elt_at_index (im->device_classes, hi->dev_class_index);
Dave Barachba868bb2016-08-08 09:51:21 -0400160
Ed Warnickecb9cada2015-12-08 15:45:58 -0700161 if (dc->clear_counters)
162 dc->clear_counters (hi->dev_instance);
163 }
164 }
165
Dave Barachba868bb2016-08-08 09:51:21 -0400166done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700167 vec_free (hw_if_indices);
168 return error;
169}
170
Benoît Ganne17814d72020-07-24 09:57:11 +0200171static clib_error_t *
172show_hw_interfaces (vlib_main_t * vm,
173 unformat_input_t * input, vlib_cli_command_t * cmd)
174{
175 return show_or_clear_hw_interfaces (vm, input, cmd, 1 /* is_show */ );
176}
177
178static clib_error_t *
179clear_hw_interfaces (vlib_main_t * vm,
180 unformat_input_t * input, vlib_cli_command_t * cmd)
181{
182 return show_or_clear_hw_interfaces (vm, input, cmd, 0 /* is_show */ );
183}
184
185
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700186/*?
Billy McFalle9bac692017-08-11 14:05:11 -0400187 * Display more detailed information about all or a list of given interfaces.
188 * The verboseness of the output can be controlled by the following optional
189 * parameters:
190 * - brief: Only show name, index and state (default for bonded interfaces).
191 * - verbose: Also display additional attributes (default for all other interfaces).
192 * - detail: Also display all remaining attributes and extended statistics.
193 *
194 * To limit the output of the command to bonded interfaces and their slave
195 * interfaces, use the '<em>bond</em>' optional parameter.
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700196 *
197 * @cliexpar
Billy McFalle9bac692017-08-11 14:05:11 -0400198 * Example of how to display default data for all interfaces:
199 * @cliexstart{show hardware-interfaces}
200 * Name Idx Link Hardware
201 * GigabitEthernet7/0/0 1 up GigabitEthernet7/0/0
202 * Ethernet address ec:f4:bb:c0:bc:fc
203 * Intel e1000
204 * carrier up full duplex speed 1000 mtu 9216
205 * rx queues 1, rx desc 1024, tx queues 3, tx desc 1024
206 * cpu socket 0
207 * GigabitEthernet7/0/1 2 up GigabitEthernet7/0/1
208 * Ethernet address ec:f4:bb:c0:bc:fd
209 * Intel e1000
210 * carrier up full duplex speed 1000 mtu 9216
211 * rx queues 1, rx desc 1024, tx queues 3, tx desc 1024
212 * cpu socket 0
213 * VirtualEthernet0/0/0 3 up VirtualEthernet0/0/0
214 * Ethernet address 02:fe:a5:a9:8b:8e
215 * VirtualEthernet0/0/1 4 up VirtualEthernet0/0/1
216 * Ethernet address 02:fe:c0:4e:3b:b0
217 * VirtualEthernet0/0/2 5 up VirtualEthernet0/0/2
218 * Ethernet address 02:fe:1f:73:92:81
219 * VirtualEthernet0/0/3 6 up VirtualEthernet0/0/3
220 * Ethernet address 02:fe:f2:25:c4:68
221 * local0 0 down local0
222 * local
223 * @cliexend
224 * Example of how to display '<em>verbose</em>' data for an interface by name and
225 * software index (where 2 is the software index):
226 * @cliexstart{show hardware-interfaces GigabitEthernet7/0/0 2 verbose}
227 * Name Idx Link Hardware
228 * GigabitEthernet7/0/0 1 up GigabitEthernet7/0/0
229 * Ethernet address ec:f4:bb:c0:bc:fc
230 * Intel e1000
231 * carrier up full duplex speed 1000 mtu 9216
232 * rx queues 1, rx desc 1024, tx queues 3, tx desc 1024
233 * cpu socket 0
234 * GigabitEthernet7/0/1 2 down GigabitEthernet7/0/1
235 * Ethernet address ec:f4:bb:c0:bc:fd
236 * Intel e1000
237 * carrier up full duplex speed 1000 mtu 9216
238 * rx queues 1, rx desc 1024, tx queues 3, tx desc 1024
239 * cpu socket 0
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700240 * @cliexend
241 ?*/
Billy McFalle9bac692017-08-11 14:05:11 -0400242/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700243VLIB_CLI_COMMAND (show_hw_interfaces_command, static) = {
244 .path = "show hardware-interfaces",
Billy McFalle9bac692017-08-11 14:05:11 -0400245 .short_help = "show hardware-interfaces [brief|verbose|detail] [bond] "
246 "[<interface> [<interface> [..]]] [<sw_idx> [<sw_idx> [..]]]",
Benoît Ganne17814d72020-07-24 09:57:11 +0200247 .function = show_hw_interfaces,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700248};
Dave Barachba868bb2016-08-08 09:51:21 -0400249/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250
Billy McFalle9bac692017-08-11 14:05:11 -0400251
252/*?
253 * Clear the extended statistics for all or a list of given interfaces
254 * (statistics associated with the '<em>show hardware-interfaces</em>' command).
255 *
256 * @cliexpar
257 * Example of how to clear the extended statistics for all interfaces:
258 * @cliexcmd{clear hardware-interfaces}
259 * Example of how to clear the extended statistics for an interface by
260 * name and software index (where 2 is the software index):
261 * @cliexcmd{clear hardware-interfaces GigabitEthernet7/0/0 2}
262 ?*/
Dave Barachba868bb2016-08-08 09:51:21 -0400263/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700264VLIB_CLI_COMMAND (clear_hw_interface_counters_command, static) = {
265 .path = "clear hardware-interfaces",
Billy McFalle9bac692017-08-11 14:05:11 -0400266 .short_help = "clear hardware-interfaces "
267 "[<interface> [<interface> [..]]] [<sw_idx> [<sw_idx> [..]]]",
Benoît Ganne17814d72020-07-24 09:57:11 +0200268 .function = clear_hw_interfaces,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700269};
Dave Barachba868bb2016-08-08 09:51:21 -0400270/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700271
Dave Barachba868bb2016-08-08 09:51:21 -0400272static int
273sw_interface_name_compare (void *a1, void *a2)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700274{
275 vnet_sw_interface_t *si1 = a1;
276 vnet_sw_interface_t *si2 = a2;
277
Dave Barachba868bb2016-08-08 09:51:21 -0400278 return vnet_sw_interface_compare (vnet_get_main (),
279 si1->sw_if_index, si2->sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700280}
281
282static clib_error_t *
283show_sw_interfaces (vlib_main_t * vm,
Dave Barachba868bb2016-08-08 09:51:21 -0400284 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700285{
Dave Barachba868bb2016-08-08 09:51:21 -0400286 clib_error_t *error = 0;
287 vnet_main_t *vnm = vnet_get_main ();
Dave Barach525c9d02018-05-26 10:48:55 -0400288 unformat_input_t _linput, *linput = &_linput;
Dave Barachba868bb2016-08-08 09:51:21 -0400289 vnet_interface_main_t *im = &vnm->interface_main;
290 vnet_sw_interface_t *si, *sorted_sis = 0;
Damjan Marion22311502016-10-28 20:30:15 +0200291 u32 sw_if_index = ~(u32) 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700292 u8 show_addresses = 0;
Damjan Marion22311502016-10-28 20:30:15 +0200293 u8 show_features = 0;
Dave Barach7be864a2016-11-28 11:41:35 -0500294 u8 show_tag = 0;
Jon Loeliger9485d992019-11-08 15:05:23 -0600295 u8 show_vtr = 0;
Dave Barach525c9d02018-05-26 10:48:55 -0400296 int verbose = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700297
Dave Barach525c9d02018-05-26 10:48:55 -0400298 /*
299 * Get a line of input. Won't work if the user typed
300 * "show interface" and nothing more.
301 */
302 if (unformat_user (input, unformat_line_input, linput))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700303 {
Dave Barach525c9d02018-05-26 10:48:55 -0400304 while (unformat_check_input (linput) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700305 {
Dave Barach525c9d02018-05-26 10:48:55 -0400306 /* See if user wants to show specific interface */
307 if (unformat
308 (linput, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index))
309 {
310 si = pool_elt_at_index (im->sw_interfaces, sw_if_index);
311 vec_add1 (sorted_sis, si[0]);
312 }
313 else if (unformat (linput, "address") || unformat (linput, "addr"))
314 show_addresses = 1;
315 else if (unformat (linput, "features") || unformat (linput, "feat"))
316 show_features = 1;
317 else if (unformat (linput, "tag"))
318 show_tag = 1;
Jon Loeliger9485d992019-11-08 15:05:23 -0600319 else if (unformat (linput, "vtr"))
320 show_vtr = 1;
Dave Barach525c9d02018-05-26 10:48:55 -0400321 else if (unformat (linput, "verbose"))
322 verbose = 1;
323 else
324 {
Dave Barach8fdde3c2019-05-17 10:46:40 -0400325 vec_free (sorted_sis);
Dave Barach525c9d02018-05-26 10:48:55 -0400326 error = clib_error_return (0, "unknown input `%U'",
327 format_unformat_error, linput);
328 goto done;
329 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700330 }
Dave Barach525c9d02018-05-26 10:48:55 -0400331 unformat_free (linput);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700332 }
Jon Loeliger9485d992019-11-08 15:05:23 -0600333 if (show_features || show_tag || show_vtr)
Damjan Marion22311502016-10-28 20:30:15 +0200334 {
335 if (sw_if_index == ~(u32) 0)
Dave Barach8fdde3c2019-05-17 10:46:40 -0400336 {
337 vec_free (sorted_sis);
338 return clib_error_return (0, "Interface not specified...");
339 }
Dave Barach7be864a2016-11-28 11:41:35 -0500340 }
Damjan Marion22311502016-10-28 20:30:15 +0200341
Dave Barach7be864a2016-11-28 11:41:35 -0500342 if (show_features)
343 {
Dave Barach525c9d02018-05-26 10:48:55 -0400344 vnet_interface_features_show (vm, sw_if_index, verbose);
Eyal Bari942402b2017-07-26 11:57:04 +0300345
346 l2_input_config_t *l2_input = l2input_intf_config (sw_if_index);
347 u32 fb = l2_input->feature_bitmap;
348 /* intf input features are masked by bridge domain */
349 if (l2_input->bridge)
350 fb &= l2input_bd_config (l2_input->bd_index)->feature_bitmap;
Neale Ranns5d9df1d2018-11-09 08:19:27 -0800351 vlib_cli_output (vm, "\nl2-input:\n%U", format_l2_input_features, fb,
352 1);
Eyal Bari942402b2017-07-26 11:57:04 +0300353
354 l2_output_config_t *l2_output = l2output_intf_config (sw_if_index);
355 vlib_cli_output (vm, "\nl2-output:");
356 if (l2_output->out_vtr_flag)
357 vlib_cli_output (vm, "%10s (%s)", "VTR", "--internal--");
358 vlib_cli_output (vm, "%U", format_l2_output_features,
Neale Ranns5d9df1d2018-11-09 08:19:27 -0800359 l2_output->feature_bitmap, 1);
Dave Barach8fdde3c2019-05-17 10:46:40 -0400360 vec_free (sorted_sis);
Damjan Marion22311502016-10-28 20:30:15 +0200361 return 0;
362 }
Dave Barach7be864a2016-11-28 11:41:35 -0500363 if (show_tag)
364 {
365 u8 *tag;
366 tag = vnet_get_sw_interface_tag (vnm, sw_if_index);
367 vlib_cli_output (vm, "%U: %s",
368 format_vnet_sw_if_index_name, vnm, sw_if_index,
369 tag ? (char *) tag : "(none)");
Dave Barach8fdde3c2019-05-17 10:46:40 -0400370 vec_free (sorted_sis);
Dave Barach7be864a2016-11-28 11:41:35 -0500371 return 0;
372 }
Damjan Marion22311502016-10-28 20:30:15 +0200373
Jon Loeliger9485d992019-11-08 15:05:23 -0600374 /*
375 * Show vlan tag rewrite data for one interface.
376 */
377 if (show_vtr)
378 {
379 u32 vtr_op = L2_VTR_DISABLED;
380 u32 push_dot1q = 0, tag1 = 0, tag2 = 0;
381
382 if (l2vtr_get (vm, vnm, sw_if_index,
383 &vtr_op, &push_dot1q, &tag1, &tag2) != 0)
384 {
385 vlib_cli_output (vm, "%U: Problem getting vlan tag-rewrite data",
386 format_vnet_sw_if_index_name, vnm, sw_if_index);
387 return 0;
388 }
389 vlib_cli_output (vm, "%U: VTR %0U",
390 format_vnet_sw_if_index_name, vnm, sw_if_index,
391 format_vtr, vtr_op, push_dot1q, tag1, tag2);
392 return 0;
393 }
394
Ed Warnickecb9cada2015-12-08 15:45:58 -0700395 if (!show_addresses)
Dave Barachba868bb2016-08-08 09:51:21 -0400396 vlib_cli_output (vm, "%U\n", format_vnet_sw_interface, vnm, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700397
Dave Barachba868bb2016-08-08 09:51:21 -0400398 if (vec_len (sorted_sis) == 0) /* Get all interfaces */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700399 {
400 /* Gather interfaces. */
Dave Barachba868bb2016-08-08 09:51:21 -0400401 sorted_sis =
402 vec_new (vnet_sw_interface_t, pool_elts (im->sw_interfaces));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700403 _vec_len (sorted_sis) = 0;
Dave Barach525c9d02018-05-26 10:48:55 -0400404 /* *INDENT-OFF* */
405 pool_foreach (si, im->sw_interfaces,
406 ({
407 int visible = vnet_swif_is_api_visible (si);
408 if (visible)
409 vec_add1 (sorted_sis, si[0]);}
410 ));
Ole Troand7231612018-06-07 10:17:57 +0200411 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700412 /* Sort by name. */
413 vec_sort_with_function (sorted_sis, sw_interface_name_compare);
414 }
415
416 if (show_addresses)
417 {
418 vec_foreach (si, sorted_sis)
Dave Barachba868bb2016-08-08 09:51:21 -0400419 {
Dave Barachba868bb2016-08-08 09:51:21 -0400420 ip4_main_t *im4 = &ip4_main;
421 ip6_main_t *im6 = &ip6_main;
422 ip_lookup_main_t *lm4 = &im4->lookup_main;
423 ip_lookup_main_t *lm6 = &im6->lookup_main;
424 ip_interface_address_t *ia = 0;
Dave Barachba868bb2016-08-08 09:51:21 -0400425 u32 fib_index4 = 0, fib_index6 = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700426
Dave Barachba868bb2016-08-08 09:51:21 -0400427 if (vec_len (im4->fib_index_by_sw_if_index) > si->sw_if_index)
428 fib_index4 = vec_elt (im4->fib_index_by_sw_if_index,
429 si->sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700430
Dave Barachba868bb2016-08-08 09:51:21 -0400431 if (vec_len (im6->fib_index_by_sw_if_index) > si->sw_if_index)
432 fib_index6 = vec_elt (im6->fib_index_by_sw_if_index,
433 si->sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700434
John Lo4478d8e2018-01-12 17:15:25 -0500435 ip4_fib_t *fib4 = ip4_fib_get (fib_index4);
436 ip6_fib_t *fib6 = ip6_fib_get (fib_index6);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700437
Dave Barachba868bb2016-08-08 09:51:21 -0400438 if (si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED)
439 vlib_cli_output
440 (vm, "%U (%s): \n unnumbered, use %U",
John Lo4478d8e2018-01-12 17:15:25 -0500441 format_vnet_sw_if_index_name, vnm, si->sw_if_index,
Dave Barachba868bb2016-08-08 09:51:21 -0400442 (si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? "up" : "dn",
443 format_vnet_sw_if_index_name, vnm, si->unnumbered_sw_if_index);
Dave Barachba868bb2016-08-08 09:51:21 -0400444 else
John Lo4478d8e2018-01-12 17:15:25 -0500445 vlib_cli_output
446 (vm, "%U (%s):",
447 format_vnet_sw_if_index_name, vnm, si->sw_if_index,
448 (si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? "up" : "dn");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700449
Eyal Bari942402b2017-07-26 11:57:04 +0300450 /* Display any L2 info */
451 l2_input_config_t *l2_input = l2input_intf_config (si->sw_if_index);
452 if (l2_input->bridge)
Dave Barachba868bb2016-08-08 09:51:21 -0400453 {
John Lo4478d8e2018-01-12 17:15:25 -0500454 bd_main_t *bdm = &bd_main;
Eyal Bari942402b2017-07-26 11:57:04 +0300455 u32 bd_id = l2input_main.bd_configs[l2_input->bd_index].bd_id;
John Lo4478d8e2018-01-12 17:15:25 -0500456 vlib_cli_output (vm, " L2 bridge bd-id %d idx %d shg %d %s",
457 bd_id, bd_find_index (bdm, bd_id), l2_input->shg,
458 l2_input->bvi ? "bvi" : " ");
Dave Barachba868bb2016-08-08 09:51:21 -0400459 }
Eyal Bari942402b2017-07-26 11:57:04 +0300460 else if (l2_input->xconnect)
John Lo4478d8e2018-01-12 17:15:25 -0500461 vlib_cli_output (vm, " L2 xconnect %U",
462 format_vnet_sw_if_index_name, vnm,
463 l2_input->output_sw_if_index);
Dave Barachba868bb2016-08-08 09:51:21 -0400464
John Lo4478d8e2018-01-12 17:15:25 -0500465 /* *INDENT-OFF* */
Dave Barachba868bb2016-08-08 09:51:21 -0400466 /* Display any IP4 addressing info */
John Lo4478d8e2018-01-12 17:15:25 -0500467 foreach_ip_interface_address (lm4, ia, si->sw_if_index,
468 1 /* honor unnumbered */,
469 ({
470 ip4_address_t *r4 = ip_interface_address_get_address (lm4, ia);
471 if (fib4->table_id)
472 vlib_cli_output (vm, " L3 %U/%d ip4 table-id %d fib-idx %d",
473 format_ip4_address, r4, ia->address_length,
474 fib4->table_id,
475 ip4_fib_index_from_table_id (fib4->table_id));
476 else
477 vlib_cli_output (vm, " L3 %U/%d",
478 format_ip4_address, r4, ia->address_length);
479 }));
480 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700481
John Lo4478d8e2018-01-12 17:15:25 -0500482 /* *INDENT-OFF* */
Dave Barachba868bb2016-08-08 09:51:21 -0400483 /* Display any IP6 addressing info */
John Lo4478d8e2018-01-12 17:15:25 -0500484 foreach_ip_interface_address (lm6, ia, si->sw_if_index,
485 1 /* honor unnumbered */,
486 ({
487 ip6_address_t *r6 = ip_interface_address_get_address (lm6, ia);
488 if (fib6->table_id)
489 vlib_cli_output (vm, " L3 %U/%d ip6 table-id %d fib-idx %d",
490 format_ip6_address, r6, ia->address_length,
491 fib6->table_id,
492 ip6_fib_index_from_table_id (fib6->table_id));
493 else
494 vlib_cli_output (vm, " L3 %U/%d",
495 format_ip6_address, r6, ia->address_length);
496 }));
497 /* *INDENT-ON* */
Ole Troand7231612018-06-07 10:17:57 +0200498 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700499 }
Ole Troand7231612018-06-07 10:17:57 +0200500 else
501 {
502 vec_foreach (si, sorted_sis)
503 {
504 vlib_cli_output (vm, "%U\n", format_vnet_sw_interface, vnm, si);
505 }
506 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700507
Dave Barachba868bb2016-08-08 09:51:21 -0400508done:
Ole Troand7231612018-06-07 10:17:57 +0200509 vec_free (sorted_sis);
510 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700511}
512
Dave Barachba868bb2016-08-08 09:51:21 -0400513/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700514VLIB_CLI_COMMAND (show_sw_interfaces_command, static) = {
Dave Barach13ad1f02017-03-26 19:36:18 -0400515 .path = "show interface",
Jon Loeliger9485d992019-11-08 15:05:23 -0600516 .short_help = "show interface [address|addr|features|feat|vtr] [<interface> [<interface> [..]]] [verbose]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700517 .function = show_sw_interfaces,
Steven Luongc5fa2b82019-04-25 11:19:49 -0700518 .is_mp_safe = 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700519};
Dave Barachba868bb2016-08-08 09:51:21 -0400520/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700521
522/* Root of all interface commands. */
Dave Barachba868bb2016-08-08 09:51:21 -0400523/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700524VLIB_CLI_COMMAND (vnet_cli_interface_command, static) = {
525 .path = "interface",
526 .short_help = "Interface commands",
527};
Dave Barachba868bb2016-08-08 09:51:21 -0400528/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700529
Dave Barachba868bb2016-08-08 09:51:21 -0400530/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700531VLIB_CLI_COMMAND (vnet_cli_set_interface_command, static) = {
532 .path = "set interface",
533 .short_help = "Interface commands",
534};
Dave Barachba868bb2016-08-08 09:51:21 -0400535/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700536
537static clib_error_t *
538clear_interface_counters (vlib_main_t * vm,
Dave Barachba868bb2016-08-08 09:51:21 -0400539 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700540{
Dave Barachba868bb2016-08-08 09:51:21 -0400541 vnet_main_t *vnm = vnet_get_main ();
542 vnet_interface_main_t *im = &vnm->interface_main;
543 vlib_simple_counter_main_t *sm;
544 vlib_combined_counter_main_t *cm;
Dave Barach8fdde3c2019-05-17 10:46:40 -0400545 int j, n_counters;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700546
547 n_counters = vec_len (im->combined_sw_if_counters);
548
549 for (j = 0; j < n_counters; j++)
550 {
Dave Barach8fdde3c2019-05-17 10:46:40 -0400551 im = &vnm->interface_main;
552 cm = im->combined_sw_if_counters + j;
553 vlib_clear_combined_counters (cm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700554 }
555
556 n_counters = vec_len (im->sw_if_counters);
557
558 for (j = 0; j < n_counters; j++)
559 {
Dave Barach8fdde3c2019-05-17 10:46:40 -0400560 im = &vnm->interface_main;
561 sm = im->sw_if_counters + j;
562 vlib_clear_simple_counters (sm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700563 }
564
565 return 0;
566}
567
Billy McFalle9bac692017-08-11 14:05:11 -0400568/*?
569 * Clear the statistics for all interfaces (statistics associated with the
570 * '<em>show interface</em>' command).
571 *
572 * @cliexpar
573 * Example of how to clear the statistics for all interfaces:
574 * @cliexcmd{clear interfaces}
575 ?*/
Dave Barachba868bb2016-08-08 09:51:21 -0400576/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700577VLIB_CLI_COMMAND (clear_interface_counters_command, static) = {
578 .path = "clear interfaces",
Billy McFalle9bac692017-08-11 14:05:11 -0400579 .short_help = "clear interfaces",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700580 .function = clear_interface_counters,
581};
Dave Barachba868bb2016-08-08 09:51:21 -0400582/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700583
Chris Luke16bcf7d2016-09-01 14:31:46 -0400584/**
585 * Parse subinterface names.
586 *
Dave Barachba868bb2016-08-08 09:51:21 -0400587 * The following subinterface syntax is supported. The first two are for
588 * backwards compatability:
589 *
590 * <intf-name> <id>
591 * - a subinterface with the name <intf-name>.<id>. The subinterface
592 * is a single dot1q vlan with vlan id <id> and exact-match semantics.
593 *
594 * <intf-name> <min_id>-<max_id>
595 * - a set of the above subinterfaces, repeating for each id
596 * in the range <min_id> to <max_id>
597 *
598 * In the following, exact-match semantics (i.e. the number of vlan tags on the
599 * packet must match the number of tags in the configuration) are used only if
600 * the keyword exact-match is present. Non-exact match is the default.
601 *
602 * <intf-name> <id> dot1q <outer_id> [exact-match]
603 * - a subinterface with the name <intf-name>.<id>. The subinterface
604 * is a single dot1q vlan with vlan id <outer_id>.
605 *
606 * <intf-name> <id> dot1q any [exact-match]
607 * - a subinterface with the name <intf-name>.<id>. The subinterface
608 * is a single dot1q vlan with any vlan id.
609 *
610 * <intf-name> <id> dot1q <outer_id> inner-dot1q <inner_id> [exact-match]
611 * - a subinterface with the name <intf-name>.<id>. The subinterface
612 * is a double dot1q vlan with outer vlan id <outer_id> and inner vlan id
613 * <inner_id>.
614 *
615 * <intf-name> <id> dot1q <outer_id> inner-dot1q any [exact-match]
616 * - a subinterface with the name <intf-name>.<id>. The subinterface
617 * is a double dot1q vlan with outer vlan id <id> and any inner vlan id.
618 *
619 * <intf-name> <id> dot1q any inner-dot1q any [exact-match]
620 *
621 * - a subinterface with the name <intf-name>.<id>. The subinterface
622 * is a double dot1q vlan with any outer vlan id and any inner vlan id.
623 *
624 * For each of the above CLI, there is a duplicate that uses the keyword
625 * "dot1ad" in place of the first "dot1q". These interfaces use ethertype
626 * 0x88ad in place of 0x8100 for the outer ethertype. Note that for double-
627 * tagged packets the inner ethertype is always 0x8100. Also note that
628 * the dot1q and dot1ad naming spaces are independent, so it is legal to
629 * have both "Gig3/0/0.1 dot1q 100" and "Gig3/0/0.2 dot1ad 100". For example:
630 *
631 * <intf-name> <id> dot1ad <outer_id> inner-dot1q <inner_id> [exact-match]
632 * - a subinterface with the name <intf-name>.<id>. The subinterface
633 * is a double dot1ad vlan with outer vlan id <outer_id> and inner vlan
634 * id <inner_id>.
635 *
636 * <intf-name> <id> untagged
637 * - a subinterface with the name <intf-name>.<id>. The subinterface
638 * has no vlan tags. Only one can be specified per interface.
639 *
640 * <intf-name> <id> default
641 * - a subinterface with the name <intf-name>.<id>. This is associated
642 * with a packet that did not match any other configured subinterface
643 * on this interface. Only one can be specified per interface.
644 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700645
646static clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -0400647parse_vlan_sub_interfaces (unformat_input_t * input,
648 vnet_sw_interface_t * template)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700649{
Dave Barachba868bb2016-08-08 09:51:21 -0400650 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700651 u32 inner_vlan, outer_vlan;
652
Dave Barachba868bb2016-08-08 09:51:21 -0400653 if (unformat (input, "any inner-dot1q any"))
654 {
655 template->sub.eth.flags.two_tags = 1;
656 template->sub.eth.flags.outer_vlan_id_any = 1;
657 template->sub.eth.flags.inner_vlan_id_any = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700658 }
Dave Barachba868bb2016-08-08 09:51:21 -0400659 else if (unformat (input, "any"))
660 {
661 template->sub.eth.flags.one_tag = 1;
662 template->sub.eth.flags.outer_vlan_id_any = 1;
663 }
664 else if (unformat (input, "%d inner-dot1q any", &outer_vlan))
665 {
666 template->sub.eth.flags.two_tags = 1;
667 template->sub.eth.flags.inner_vlan_id_any = 1;
668 template->sub.eth.outer_vlan_id = outer_vlan;
669 }
670 else if (unformat (input, "%d inner-dot1q %d", &outer_vlan, &inner_vlan))
671 {
672 template->sub.eth.flags.two_tags = 1;
673 template->sub.eth.outer_vlan_id = outer_vlan;
674 template->sub.eth.inner_vlan_id = inner_vlan;
675 }
676 else if (unformat (input, "%d", &outer_vlan))
677 {
678 template->sub.eth.flags.one_tag = 1;
679 template->sub.eth.outer_vlan_id = outer_vlan;
680 }
681 else
682 {
683 error = clib_error_return (0, "expected dot1q config, got `%U'",
684 format_unformat_error, input);
685 goto done;
686 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700687
Dave Barachba868bb2016-08-08 09:51:21 -0400688 if (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
689 {
690 if (unformat (input, "exact-match"))
691 {
692 template->sub.eth.flags.exact_match = 1;
693 }
694 }
695
696done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700697 return error;
698}
699
700static clib_error_t *
701create_sub_interfaces (vlib_main_t * vm,
Dave Barachba868bb2016-08-08 09:51:21 -0400702 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700703{
Dave Barachba868bb2016-08-08 09:51:21 -0400704 vnet_main_t *vnm = vnet_get_main ();
705 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700706 u32 hw_if_index, sw_if_index;
Dave Barachba868bb2016-08-08 09:51:21 -0400707 vnet_hw_interface_t *hi;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700708 u32 id, id_min, id_max;
709 vnet_sw_interface_t template;
710
711 hw_if_index = ~0;
Dave Barachba868bb2016-08-08 09:51:21 -0400712 if (!unformat_user (input, unformat_vnet_hw_interface, vnm, &hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700713 {
714 error = clib_error_return (0, "unknown interface `%U'",
715 format_unformat_error, input);
716 goto done;
717 }
718
Dave Barachb7b92992018-10-17 10:38:51 -0400719 clib_memset (&template, 0, sizeof (template));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700720 template.sub.eth.raw_flags = 0;
721
Dave Barachba868bb2016-08-08 09:51:21 -0400722 if (unformat (input, "%d default", &id_min))
723 {
724 id_max = id_min;
725 template.sub.eth.flags.default_sub = 1;
726 }
727 else if (unformat (input, "%d untagged", &id_min))
728 {
729 id_max = id_min;
730 template.sub.eth.flags.no_tags = 1;
731 template.sub.eth.flags.exact_match = 1;
732 }
733 else if (unformat (input, "%d dot1q", &id_min))
734 {
735 /* parse dot1q config */
736 id_max = id_min;
737 error = parse_vlan_sub_interfaces (input, &template);
738 if (error)
739 goto done;
740 }
741 else if (unformat (input, "%d dot1ad", &id_min))
742 {
743 /* parse dot1ad config */
744 id_max = id_min;
745 template.sub.eth.flags.dot1ad = 1;
746 error = parse_vlan_sub_interfaces (input, &template);
747 if (error)
748 goto done;
749 }
750 else if (unformat (input, "%d-%d", &id_min, &id_max))
751 {
752 template.sub.eth.flags.one_tag = 1;
Dave Barachba868bb2016-08-08 09:51:21 -0400753 template.sub.eth.flags.exact_match = 1;
754 if (id_min > id_max)
755 goto id_error;
756 }
757 else if (unformat (input, "%d", &id_min))
758 {
759 id_max = id_min;
760 template.sub.eth.flags.one_tag = 1;
761 template.sub.eth.outer_vlan_id = id_min;
762 template.sub.eth.flags.exact_match = 1;
763 }
764 else
765 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700766 id_error:
767 error = clib_error_return (0, "expected ID or ID MIN-MAX, got `%U'",
768 format_unformat_error, input);
769 goto done;
Dave Barachba868bb2016-08-08 09:51:21 -0400770 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700771
772 hi = vnet_get_hw_interface (vnm, hw_if_index);
John Lobcebbb92016-04-05 15:47:43 -0400773
Dave Barachba868bb2016-08-08 09:51:21 -0400774 if (hi->bond_info == VNET_HW_INTERFACE_BOND_INFO_SLAVE)
775 {
776 error =
777 clib_error_return (0,
778 "not allowed as %v belong to a BondEthernet interface",
779 hi->name);
780 goto done;
781 }
John Lobcebbb92016-04-05 15:47:43 -0400782
Ed Warnickecb9cada2015-12-08 15:45:58 -0700783 for (id = id_min; id <= id_max; id++)
784 {
Dave Barachba868bb2016-08-08 09:51:21 -0400785 uword *p;
786 vnet_interface_main_t *im = &vnm->interface_main;
787 u64 sup_and_sub_key = ((u64) (hi->sw_if_index) << 32) | (u64) id;
788 u64 *kp;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700789
790 p = hash_get_mem (im->sw_if_index_by_sup_and_sub, &sup_and_sub_key);
791 if (p)
Dave Barachba868bb2016-08-08 09:51:21 -0400792 {
793 if (CLIB_DEBUG > 0)
794 clib_warning ("sup sw_if_index %d, sub id %d already exists\n",
795 hi->sw_if_index, id);
796 continue;
797 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700798
Ed Warnickecb9cada2015-12-08 15:45:58 -0700799 template.type = VNET_SW_INTERFACE_TYPE_SUB;
Eyal Baric5b13602016-11-24 19:42:43 +0200800 template.flood_class = VNET_FLOOD_CLASS_NORMAL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700801 template.sup_sw_if_index = hi->sw_if_index;
802 template.sub.id = id;
Eyal Baria4509cf2016-09-26 09:24:09 +0300803 if (id_min < id_max)
804 template.sub.eth.outer_vlan_id = id;
805
Ed Warnickecb9cada2015-12-08 15:45:58 -0700806 error = vnet_create_sw_interface (vnm, &template, &sw_if_index);
Dave Barachba868bb2016-08-08 09:51:21 -0400807 if (error)
808 goto done;
Dave Barach16ad6ae2016-07-28 17:55:30 -0400809
Jon Loeligerb22e1f02019-12-19 09:03:52 -0600810 kp = clib_mem_alloc (sizeof (*kp));
811 *kp = sup_and_sub_key;
812
Ed Warnickecb9cada2015-12-08 15:45:58 -0700813 hash_set (hi->sub_interface_sw_if_index_by_id, id, sw_if_index);
814 hash_set_mem (im->sw_if_index_by_sup_and_sub, kp, sw_if_index);
Dave Barachba868bb2016-08-08 09:51:21 -0400815 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name,
816 vnet_get_main (), sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700817 }
818
Dave Barachba868bb2016-08-08 09:51:21 -0400819done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700820 return error;
821}
822
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700823/*?
Billy McFalle9bac692017-08-11 14:05:11 -0400824 * This command is used to add VLAN IDs to interfaces, also known as subinterfaces.
825 * The primary input to this command is the '<em>interface</em>' and '<em>subId</em>'
826 * (subinterface Id) parameters. If no additional VLAN ID is provide, the VLAN ID is
827 * assumed to be the '<em>subId</em>'. The VLAN ID and '<em>subId</em>' can be different,
828 * but this is not recommended.
829 *
830 * This command has several variations:
831 * - <b>create sub-interfaces <interface> <subId></b> - Create a subinterface to
832 * process packets with a given 802.1q VLAN ID (same value as the '<em>subId</em>').
833 *
834 * - <b>create sub-interfaces <interface> <subId> default</b> - Adding the
835 * '<em>default</em>' parameter indicates that packets with VLAN IDs that do not
836 * match any other subinterfaces should be sent to this subinterface.
837 *
838 * - <b>create sub-interfaces <interface> <subId> untagged</b> - Adding the
839 * '<em>untagged</em>' parameter indicates that packets no VLAN IDs should be sent
840 * to this subinterface.
841 *
842 * - <b>create sub-interfaces <interface> <subId>-<subId></b> - Create a range of
843 * subinterfaces to handle a range of VLAN IDs.
844 *
845 * - <b>create sub-interfaces <interface> <subId> dot1q|dot1ad <vlanId>|any [exact-match]</b> -
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700846 * Use this command to specify the outer VLAN ID, to either be explicit or to make the
Billy McFalle9bac692017-08-11 14:05:11 -0400847 * VLAN ID different from the '<em>subId</em>'.
848 *
849 * - <b>create sub-interfaces <interface> <subId> dot1q|dot1ad <vlanId>|any inner-dot1q
850 * <vlanId>|any [exact-match]</b> - Use this command to specify the outer VLAN ID and
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700851 * the inner VLAN ID.
Billy McFalle9bac692017-08-11 14:05:11 -0400852 *
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700853 * When '<em>dot1q</em>' or '<em>dot1ad</em>' is explicitly entered, subinterfaces
Billy McFalle9bac692017-08-11 14:05:11 -0400854 * can be configured as either exact-match or non-exact match. Non-exact match is the CLI
855 * default. If '<em>exact-match</em>' is specified, packets must have the same number of
856 * VLAN tags as the configuration. For non-exact-match, packets must at least that number
857 * of tags. L3 (routed) interfaces must be configured as exact-match. L2 interfaces are
858 * typically configured as non-exact-match. If '<em>dot1q</em>' or '<em>dot1ad</em>' is NOT
859 * entered, then the default behavior is exact-match.
860 *
861 * Use the '<em>show interface</em>' command to display all subinterfaces.
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700862 *
863 * @cliexpar
Billy McFalle9bac692017-08-11 14:05:11 -0400864 * @parblock
865 * Example of how to create a VLAN subinterface 11 to process packets on 802.1q VLAN ID 11:
866 * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 11}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700867 *
Billy McFalle9bac692017-08-11 14:05:11 -0400868 * The previous example is shorthand and is equivalent to:
869 * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 11 dot1q 11 exact-match}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700870 *
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700871 *
Billy McFalle9bac692017-08-11 14:05:11 -0400872 * Example of how to create a subinterface number that is different from the VLAN ID:
873 * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 11 dot1q 100}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700874 *
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700875 *
Billy McFalle9bac692017-08-11 14:05:11 -0400876 * Examples of how to create q-in-q and q-in-any subinterfaces:
877 * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 11 dot1q 100 inner-dot1q 200}
878 * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 12 dot1q 100 inner-dot1q any}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700879 *
Billy McFalle9bac692017-08-11 14:05:11 -0400880 * Examples of how to create dot1ad interfaces:
881 * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 11 dot1ad 11}
882 * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 12 dot1ad 100 inner-dot1q 200}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700883 *
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700884 *
Billy McFalle9bac692017-08-11 14:05:11 -0400885 * Examples of '<em>exact-match</em>' versus non-exact match. A packet with
886 * outer VLAN 100 and inner VLAN 200 would match this interface, because the default
887 * is non-exact match:
888 * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 5 dot1q 100}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700889 *
Billy McFalle9bac692017-08-11 14:05:11 -0400890 * However, the same packet would NOT match this interface because '<em>exact-match</em>'
891 * is specified and only one VLAN is configured, but packet contains two VLANs:
892 * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 5 dot1q 100 exact-match}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700893 *
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700894 *
Billy McFalle9bac692017-08-11 14:05:11 -0400895 * Example of how to created a subinterface to process untagged packets:
896 * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 5 untagged}
897 *
898 * Example of how to created a subinterface to process any packet with a VLAN ID that
899 * does not match any other subinterface:
900 * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 7 default}
901 *
902 * When subinterfaces are created, they are in the down state. Example of how to
903 * enable a newly created subinterface:
904 * @cliexcmd{set interface GigabitEthernet2/0/0.7 up}
905 * @endparblock
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700906 ?*/
Billy McFalle9bac692017-08-11 14:05:11 -0400907/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700908VLIB_CLI_COMMAND (create_sub_interfaces_command, static) = {
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700909 .path = "create sub-interfaces",
Billy McFalle9bac692017-08-11 14:05:11 -0400910 .short_help = "create sub-interfaces <interface> "
911 "{<subId> [default|untagged]} | "
912 "{<subId>-<subId>} | "
913 "{<subId> dot1q|dot1ad <vlanId>|any [inner-dot1q <vlanId>|any] [exact-match]}",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700914 .function = create_sub_interfaces,
915};
Dave Barachba868bb2016-08-08 09:51:21 -0400916/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700917
918static clib_error_t *
919set_state (vlib_main_t * vm,
Dave Barachba868bb2016-08-08 09:51:21 -0400920 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700921{
Dave Barachba868bb2016-08-08 09:51:21 -0400922 vnet_main_t *vnm = vnet_get_main ();
923 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700924 u32 sw_if_index, flags;
925
926 sw_if_index = ~0;
Dave Barachba868bb2016-08-08 09:51:21 -0400927 if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700928 {
929 error = clib_error_return (0, "unknown interface `%U'",
930 format_unformat_error, input);
931 goto done;
932 }
933
Dave Barachba868bb2016-08-08 09:51:21 -0400934 if (!unformat (input, "%U", unformat_vnet_sw_interface_flags, &flags))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700935 {
936 error = clib_error_return (0, "unknown flags `%U'",
937 format_unformat_error, input);
938 goto done;
939 }
940
941 error = vnet_sw_interface_set_flags (vnm, sw_if_index, flags);
942 if (error)
943 goto done;
944
Dave Barachba868bb2016-08-08 09:51:21 -0400945done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700946 return error;
947}
948
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700949
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700950/*?
Billy McFalle9bac692017-08-11 14:05:11 -0400951 * This command is used to change the admin state (up/down) of an interface.
952 *
953 * If an interface is down, the optional '<em>punt</em>' flag can also be set.
954 * The '<em>punt</em>' flag implies the interface is disabled for forwarding
955 * but punt all traffic to slow-path. Use the '<em>enable</em>' flag to clear
956 * '<em>punt</em>' flag (interface is still down).
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700957 *
958 * @cliexpar
Billy McFalle9bac692017-08-11 14:05:11 -0400959 * Example of how to configure the admin state of an interface to '<em>up</em?':
960 * @cliexcmd{set interface state GigabitEthernet2/0/0 up}
961 * Example of how to configure the admin state of an interface to '<em>down</em?':
962 * @cliexcmd{set interface state GigabitEthernet2/0/0 down}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700963 ?*/
Billy McFalle9bac692017-08-11 14:05:11 -0400964/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700965VLIB_CLI_COMMAND (set_state_command, static) = {
966 .path = "set interface state",
Billy McFalle9bac692017-08-11 14:05:11 -0400967 .short_help = "set interface state <interface> [up|down|punt|enable]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700968 .function = set_state,
969};
Dave Barachba868bb2016-08-08 09:51:21 -0400970/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700971
972static clib_error_t *
973set_unnumbered (vlib_main_t * vm,
Dave Barachba868bb2016-08-08 09:51:21 -0400974 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700975{
Dave Barachba868bb2016-08-08 09:51:21 -0400976 vnet_main_t *vnm = vnet_get_main ();
Neale Ranns2ae2bc52018-03-16 03:22:39 -0700977 u32 unnumbered_sw_if_index = ~0;
978 u32 inherit_from_sw_if_index = ~0;
979 int enable = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700980
Igor Mikhailov (imichail)ab3e42b2016-09-25 15:11:53 -0700981 if (unformat (input, "%U use %U",
982 unformat_vnet_sw_interface, vnm, &unnumbered_sw_if_index,
983 unformat_vnet_sw_interface, vnm, &inherit_from_sw_if_index))
Neale Ranns2ae2bc52018-03-16 03:22:39 -0700984 enable = 1;
Igor Mikhailov (imichail)ab3e42b2016-09-25 15:11:53 -0700985 else if (unformat (input, "del %U",
986 unformat_vnet_sw_interface, vnm,
987 &unnumbered_sw_if_index))
Neale Ranns2ae2bc52018-03-16 03:22:39 -0700988 enable = 0;
Igor Mikhailov (imichail)ab3e42b2016-09-25 15:11:53 -0700989 else
990 return clib_error_return (0, "parse error '%U'",
991 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700992
Neale Ranns2ae2bc52018-03-16 03:22:39 -0700993 if (~0 == unnumbered_sw_if_index)
994 return clib_error_return (0, "Specify the unnumbered interface");
995 if (enable && ~0 == inherit_from_sw_if_index)
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700996 return clib_error_return (0, "When enabling unnumbered specify the"
Neale Ranns2ae2bc52018-03-16 03:22:39 -0700997 " IP enabled interface that it uses");
Neale Ranns898273f2017-03-18 02:57:38 -0700998
Neale Ranns2ae2bc52018-03-16 03:22:39 -0700999 vnet_sw_interface_update_unnumbered (unnumbered_sw_if_index,
1000 inherit_from_sw_if_index, enable);
Neale Ranns898273f2017-03-18 02:57:38 -07001001
Neale Ranns2ae2bc52018-03-16 03:22:39 -07001002 return (NULL);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001003}
1004
Dave Barachba868bb2016-08-08 09:51:21 -04001005/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001006VLIB_CLI_COMMAND (set_unnumbered_command, static) = {
1007 .path = "set interface unnumbered",
Billy McFalle9bac692017-08-11 14:05:11 -04001008 .short_help = "set interface unnumbered [<interface> use <interface> | del <interface>]",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001009 .function = set_unnumbered,
1010};
Dave Barachba868bb2016-08-08 09:51:21 -04001011/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001012
1013
1014
1015static clib_error_t *
1016set_hw_class (vlib_main_t * vm,
Dave Barachba868bb2016-08-08 09:51:21 -04001017 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001018{
Dave Barachba868bb2016-08-08 09:51:21 -04001019 vnet_main_t *vnm = vnet_get_main ();
1020 vnet_interface_main_t *im = &vnm->interface_main;
1021 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001022 u32 hw_if_index, hw_class_index;
1023
1024 hw_if_index = ~0;
Dave Barachba868bb2016-08-08 09:51:21 -04001025 if (!unformat_user (input, unformat_vnet_hw_interface, vnm, &hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001026 {
1027 error = clib_error_return (0, "unknown hardware interface `%U'",
1028 format_unformat_error, input);
1029 goto done;
1030 }
1031
Dave Barachba868bb2016-08-08 09:51:21 -04001032 if (!unformat_user (input, unformat_hash_string,
1033 im->hw_interface_class_by_name, &hw_class_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001034 {
1035 error = clib_error_return (0, "unknown hardware class `%U'",
1036 format_unformat_error, input);
1037 goto done;
1038 }
1039
1040 error = vnet_hw_interface_set_class (vnm, hw_if_index, hw_class_index);
1041 if (error)
1042 goto done;
1043
Dave Barachba868bb2016-08-08 09:51:21 -04001044done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001045 return error;
1046}
1047
Dave Barachba868bb2016-08-08 09:51:21 -04001048/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001049VLIB_CLI_COMMAND (set_hw_class_command, static) = {
1050 .path = "set interface hw-class",
1051 .short_help = "Set interface hardware class",
1052 .function = set_hw_class,
1053};
Dave Barachba868bb2016-08-08 09:51:21 -04001054/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001055
Dave Barachba868bb2016-08-08 09:51:21 -04001056static clib_error_t *
1057vnet_interface_cli_init (vlib_main_t * vm)
1058{
1059 return 0;
1060}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001061
1062VLIB_INIT_FUNCTION (vnet_interface_cli_init);
1063
Dave Barachba868bb2016-08-08 09:51:21 -04001064static clib_error_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -07001065renumber_interface_command_fn (vlib_main_t * vm,
Dave Barachba868bb2016-08-08 09:51:21 -04001066 unformat_input_t * input,
1067 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001068{
1069 u32 hw_if_index;
1070 u32 new_dev_instance;
Dave Barachba868bb2016-08-08 09:51:21 -04001071 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001072 int rv;
1073
Dave Barachba868bb2016-08-08 09:51:21 -04001074 if (!unformat_user (input, unformat_vnet_hw_interface, vnm, &hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001075 return clib_error_return (0, "unknown hardware interface `%U'",
Dave Barachba868bb2016-08-08 09:51:21 -04001076 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001077
Dave Barachba868bb2016-08-08 09:51:21 -04001078 if (!unformat (input, "%d", &new_dev_instance))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001079 return clib_error_return (0, "new dev instance missing");
1080
1081 rv = vnet_interface_name_renumber (hw_if_index, new_dev_instance);
1082
1083 switch (rv)
1084 {
1085 case 0:
1086 break;
1087
1088 default:
1089 return clib_error_return (0, "vnet_interface_name_renumber returned %d",
Dave Barachba868bb2016-08-08 09:51:21 -04001090 rv);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001091
1092 }
1093
1094 return 0;
1095}
1096
1097
Dave Barachba868bb2016-08-08 09:51:21 -04001098/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001099VLIB_CLI_COMMAND (renumber_interface_command, static) = {
1100 .path = "renumber interface",
Billy McFalle9bac692017-08-11 14:05:11 -04001101 .short_help = "renumber interface <interface> <new-dev-instance>",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001102 .function = renumber_interface_command_fn,
1103};
Dave Barachba868bb2016-08-08 09:51:21 -04001104/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001105
Damjan Marion8358ff92016-04-15 14:26:00 +02001106static clib_error_t *
1107promiscuous_cmd (vlib_main_t * vm,
Dave Barachba868bb2016-08-08 09:51:21 -04001108 unformat_input_t * input, vlib_cli_command_t * cmd)
Damjan Marion8358ff92016-04-15 14:26:00 +02001109{
Dave Barachba868bb2016-08-08 09:51:21 -04001110 vnet_main_t *vnm = vnet_get_main ();
Damjan Marion8358ff92016-04-15 14:26:00 +02001111 u32 hw_if_index;
1112 u32 flags = ETHERNET_INTERFACE_FLAG_ACCEPT_ALL;
Dave Barachba868bb2016-08-08 09:51:21 -04001113 ethernet_main_t *em = &ethernet_main;
1114 ethernet_interface_t *eif;
Damjan Marion8358ff92016-04-15 14:26:00 +02001115
1116 if (unformat (input, "on %U",
Dave Barachba868bb2016-08-08 09:51:21 -04001117 unformat_vnet_hw_interface, vnm, &hw_if_index))
Damjan Marion8358ff92016-04-15 14:26:00 +02001118 ;
1119 else if (unformat (input, "off %U",
Dave Barachba868bb2016-08-08 09:51:21 -04001120 unformat_ethernet_interface, vnm, &hw_if_index))
Damjan Marion8358ff92016-04-15 14:26:00 +02001121 flags = 0;
1122 else
1123 return clib_error_return (0, "unknown input `%U'",
Dave Barachba868bb2016-08-08 09:51:21 -04001124 format_unformat_error, input);
Damjan Marion8358ff92016-04-15 14:26:00 +02001125
1126 eif = ethernet_get_interface (em, hw_if_index);
1127 if (!eif)
1128 return clib_error_return (0, "not supported");
1129
1130 ethernet_set_flags (vnm, hw_if_index, flags);
1131 return 0;
1132}
1133
Dave Barachba868bb2016-08-08 09:51:21 -04001134/* *INDENT-OFF* */
Damjan Marion8358ff92016-04-15 14:26:00 +02001135VLIB_CLI_COMMAND (set_interface_promiscuous_cmd, static) = {
1136 .path = "set interface promiscuous",
Billy McFalle9bac692017-08-11 14:05:11 -04001137 .short_help = "set interface promiscuous [on|off] <interface>",
Damjan Marion8358ff92016-04-15 14:26:00 +02001138 .function = promiscuous_cmd,
1139};
Dave Barachba868bb2016-08-08 09:51:21 -04001140/* *INDENT-ON* */
Damjan Marion8358ff92016-04-15 14:26:00 +02001141
1142static clib_error_t *
1143mtu_cmd (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd)
1144{
Dave Barachba868bb2016-08-08 09:51:21 -04001145 vnet_main_t *vnm = vnet_get_main ();
Ole Troand7231612018-06-07 10:17:57 +02001146 u32 hw_if_index, sw_if_index, mtu;
Damjan Marionfe7d4a22018-04-13 19:43:39 +02001147 ethernet_main_t *em = &ethernet_main;
Ole Troand7231612018-06-07 10:17:57 +02001148 u32 mtus[VNET_N_MTU] = { 0, 0, 0, 0 };
Damjan Marion8358ff92016-04-15 14:26:00 +02001149
Damjan Marionfe7d4a22018-04-13 19:43:39 +02001150 if (unformat (input, "%d %U", &mtu,
1151 unformat_vnet_hw_interface, vnm, &hw_if_index))
Damjan Marion8358ff92016-04-15 14:26:00 +02001152 {
Ole Troand7231612018-06-07 10:17:57 +02001153 /*
1154 * Change physical MTU on interface. Only supported for Ethernet
1155 * interfaces
1156 */
Damjan Marionfe7d4a22018-04-13 19:43:39 +02001157 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1158 ethernet_interface_t *eif = ethernet_get_interface (em, hw_if_index);
1159
1160 if (!eif)
1161 return clib_error_return (0, "not supported");
1162
1163 if (mtu < hi->min_supported_packet_bytes)
1164 return clib_error_return (0, "Invalid mtu (%d): "
1165 "must be >= min pkt bytes (%d)", mtu,
1166 hi->min_supported_packet_bytes);
1167
1168 if (mtu > hi->max_supported_packet_bytes)
1169 return clib_error_return (0, "Invalid mtu (%d): must be <= (%d)", mtu,
1170 hi->max_supported_packet_bytes);
1171
1172 vnet_hw_interface_set_mtu (vnm, hw_if_index, mtu);
Ole Troand7231612018-06-07 10:17:57 +02001173 goto done;
Damjan Marion8358ff92016-04-15 14:26:00 +02001174 }
Ole Troand7231612018-06-07 10:17:57 +02001175 else if (unformat (input, "packet %d %U", &mtu,
1176 unformat_vnet_sw_interface, vnm, &sw_if_index))
1177 /* Set default packet MTU (including L3 header */
1178 mtus[VNET_MTU_L3] = mtu;
1179 else if (unformat (input, "ip4 %d %U", &mtu,
1180 unformat_vnet_sw_interface, vnm, &sw_if_index))
1181 mtus[VNET_MTU_IP4] = mtu;
1182 else if (unformat (input, "ip6 %d %U", &mtu,
1183 unformat_vnet_sw_interface, vnm, &sw_if_index))
1184 mtus[VNET_MTU_IP6] = mtu;
1185 else if (unformat (input, "mpls %d %U", &mtu,
1186 unformat_vnet_sw_interface, vnm, &sw_if_index))
1187 mtus[VNET_MTU_MPLS] = mtu;
Damjan Marion8358ff92016-04-15 14:26:00 +02001188 else
Damjan Marionfe7d4a22018-04-13 19:43:39 +02001189 return clib_error_return (0, "unknown input `%U'",
1190 format_unformat_error, input);
Ole Troand7231612018-06-07 10:17:57 +02001191
1192 vnet_sw_interface_set_protocol_mtu (vnm, sw_if_index, mtus);
1193
1194done:
Damjan Marion8358ff92016-04-15 14:26:00 +02001195 return 0;
1196}
1197
Dave Barachba868bb2016-08-08 09:51:21 -04001198/* *INDENT-OFF* */
Damjan Marion8358ff92016-04-15 14:26:00 +02001199VLIB_CLI_COMMAND (set_interface_mtu_cmd, static) = {
1200 .path = "set interface mtu",
Ole Troand7231612018-06-07 10:17:57 +02001201 .short_help = "set interface mtu [packet|ip4|ip6|mpls] <value> <interface>",
Damjan Marion8358ff92016-04-15 14:26:00 +02001202 .function = mtu_cmd,
1203};
Dave Barachba868bb2016-08-08 09:51:21 -04001204/* *INDENT-ON* */
Damjan Marion8358ff92016-04-15 14:26:00 +02001205
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001206static clib_error_t *
Matthew Smithe0792fd2019-07-12 11:48:24 -05001207show_interface_sec_mac_addr_fn (vlib_main_t * vm, unformat_input_t * input,
1208 vlib_cli_command_t * cmd)
1209{
1210 vnet_main_t *vnm = vnet_get_main ();
1211 vnet_interface_main_t *im = &vnm->interface_main;
1212 ethernet_main_t *em = &ethernet_main;
1213 u32 sw_if_index = ~0;
1214 vnet_sw_interface_t *si, *sorted_sis = 0;
1215
1216 if (unformat (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index))
1217 {
1218 si = pool_elt_at_index (im->sw_interfaces, sw_if_index);
1219 vec_add1 (sorted_sis, si[0]);
1220 }
1221
1222 /* if an interface name was not passed, get all interfaces */
1223 if (vec_len (sorted_sis) == 0)
1224 {
1225 sorted_sis =
1226 vec_new (vnet_sw_interface_t, pool_elts (im->sw_interfaces));
1227 _vec_len (sorted_sis) = 0;
1228 /* *INDENT-OFF* */
1229 pool_foreach (si, im->sw_interfaces,
1230 ({
1231 int visible = vnet_swif_is_api_visible (si);
1232 if (visible)
1233 vec_add1 (sorted_sis, si[0]);}
1234 ));
1235 /* *INDENT-ON* */
1236 /* Sort by name. */
1237 vec_sort_with_function (sorted_sis, sw_interface_name_compare);
1238 }
1239
1240 vec_foreach (si, sorted_sis)
1241 {
1242 vnet_sw_interface_t *sup_si;
1243 ethernet_interface_t *ei;
1244
1245 sup_si = vnet_get_sup_sw_interface (vnm, si->sw_if_index);
1246 ei = ethernet_get_interface (em, sup_si->hw_if_index);
1247
1248 vlib_cli_output (vm, "%U (%s):",
1249 format_vnet_sw_if_index_name, vnm, si->sw_if_index,
1250 (si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ?
1251 "up" : "dn");
1252
1253 if (ei && ei->secondary_addrs)
1254 {
1255 mac_address_t *sec_addr;
1256
1257 vec_foreach (sec_addr, ei->secondary_addrs)
1258 {
1259 vlib_cli_output (vm, " %U", format_mac_address_t, sec_addr);
1260 }
1261 }
1262 }
1263
1264 vec_free (sorted_sis);
1265 return 0;
1266}
1267
1268/*?
1269 * This command is used to display interface secondary mac addresses.
1270 *
1271 * @cliexpar
1272 * Example of how to display interface secondary mac addresses:
1273 * @cliexstart{show interface secondary-mac-address}
1274 * @cliexend
1275?*/
1276/* *INDENT-OFF* */
1277VLIB_CLI_COMMAND (show_interface_sec_mac_addr, static) = {
1278 .path = "show interface secondary-mac-address",
1279 .short_help = "show interface secondary-mac-address [<interface>]",
1280 .function = show_interface_sec_mac_addr_fn,
1281};
1282/* *INDENT-ON* */
1283
1284static clib_error_t *
1285interface_add_del_mac_address (vlib_main_t * vm, unformat_input_t * input,
1286 vlib_cli_command_t * cmd)
1287{
1288 vnet_main_t *vnm = vnet_get_main ();
1289 vnet_sw_interface_t *si = NULL;
1290 clib_error_t *error = 0;
1291 u32 sw_if_index = ~0;
1292 u8 mac[6] = { 0 };
1293 u8 is_add, is_del;
1294
1295 is_add = is_del = 0;
1296
1297 if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
1298 {
1299 error = clib_error_return (0, "unknown interface `%U'",
1300 format_unformat_error, input);
1301 goto done;
1302 }
1303 if (!unformat_user (input, unformat_ethernet_address, mac))
1304 {
1305 error = clib_error_return (0, "expected mac address `%U'",
1306 format_unformat_error, input);
1307 goto done;
1308 }
1309
1310 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1311 {
1312 if (unformat (input, "add"))
1313 is_add = 1;
1314 else if (unformat (input, "del"))
1315 is_del = 1;
1316 else
1317 break;
1318 }
1319
1320 if (is_add == is_del)
1321 {
1322 error = clib_error_return (0, "must choose one of add or del");
1323 goto done;
1324 }
1325
1326 si = vnet_get_sw_interface (vnm, sw_if_index);
1327 error =
1328 vnet_hw_interface_add_del_mac_address (vnm, si->hw_if_index, mac, is_add);
1329
1330done:
1331 return error;
1332}
1333
1334/*?
1335 * The '<em>set interface secondary-mac-address </em>' command allows adding
1336 * or deleting extra MAC addresses on a given interface without changing the
1337 * default MAC address. This could allow packets sent to these MAC addresses
1338 * to be received without setting the interface to promiscuous mode.
1339 * Not all interfaces support this operation. The ones that do are mostly
1340 * hardware NICs, though virtio does also.
1341 *
1342 * @cliexpar
1343 * @parblock
1344 * Example of how to add a secondary MAC Address on an interface:
1345 * @cliexcmd{set interface secondary-mac-address GigabitEthernet0/8/0 aa:bb:cc:dd:ee:01 add}
1346 * Example of how to delete a secondary MAC address from an interface:
1347 * @cliexcmd{set interface secondary-mac-address GigabitEthernet0/8/0 aa:bb:cc:dd:ee:01 del}
1348 * @endparblock
1349?*/
1350/* *INDENT-OFF* */
1351VLIB_CLI_COMMAND (interface_add_del_mac_address_cmd, static) = {
1352 .path = "set interface secondary-mac-address",
1353 .short_help = "set interface secondary-mac-address <interface> <mac-address> [(add|del)]",
1354 .function = interface_add_del_mac_address,
1355};
1356/* *INDENT-ON* */
1357
1358static clib_error_t *
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001359set_interface_mac_address (vlib_main_t * vm, unformat_input_t * input,
1360 vlib_cli_command_t * cmd)
1361{
1362 vnet_main_t *vnm = vnet_get_main ();
Neale Rannsd867a7c2017-10-04 02:29:07 -07001363 vnet_sw_interface_t *si = NULL;
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001364 clib_error_t *error = 0;
1365 u32 sw_if_index = ~0;
John Lo62fcc0a2017-10-31 14:31:10 -04001366 u8 mac[6] = { 0 };
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001367
1368 if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
1369 {
1370 error = clib_error_return (0, "unknown interface `%U'",
1371 format_unformat_error, input);
1372 goto done;
1373 }
John Lo62fcc0a2017-10-31 14:31:10 -04001374 if (!unformat_user (input, unformat_ethernet_address, mac))
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001375 {
1376 error = clib_error_return (0, "expected mac address `%U'",
1377 format_unformat_error, input);
1378 goto done;
1379 }
Neale Rannsd867a7c2017-10-04 02:29:07 -07001380 si = vnet_get_sw_interface (vnm, sw_if_index);
1381 error = vnet_hw_interface_change_mac_address (vnm, si->hw_if_index, mac);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001382done:
1383 return error;
1384}
1385
1386/*?
1387 * The '<em>set interface mac address </em>' command allows to set MAC address of given interface.
1388 * In case of NIC interfaces the one has to support MAC address change. A side effect of MAC address
1389 * change are changes of MAC addresses in FIB tables (ipv4 and ipv6).
1390 *
1391 * @cliexpar
1392 * @parblock
1393 * Example of how to change MAC Address of interface:
1394 * @cliexcmd{set interface mac address GigabitEthernet0/8/0 aa:bb:cc:dd:ee:01}
1395 * @cliexcmd{set interface mac address host-vpp0 aa:bb:cc:dd:ee:02}
1396 * @cliexcmd{set interface mac address tap-0 aa:bb:cc:dd:ee:03}
1397 * @cliexcmd{set interface mac address pg0 aa:bb:cc:dd:ee:04}
1398 * @endparblock
1399?*/
1400/* *INDENT-OFF* */
1401VLIB_CLI_COMMAND (set_interface_mac_address_cmd, static) = {
1402 .path = "set interface mac address",
Billy McFalle9bac692017-08-11 14:05:11 -04001403 .short_help = "set interface mac address <interface> <mac-address>",
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001404 .function = set_interface_mac_address,
1405};
1406/* *INDENT-ON* */
1407
Dave Barach7be864a2016-11-28 11:41:35 -05001408static clib_error_t *
1409set_tag (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd)
1410{
1411 vnet_main_t *vnm = vnet_get_main ();
1412 u32 sw_if_index = ~0;
1413 u8 *tag = 0;
1414
1415 if (!unformat (input, "%U %s", unformat_vnet_sw_interface,
1416 vnm, &sw_if_index, &tag))
1417 return clib_error_return (0, "unknown input `%U'",
1418 format_unformat_error, input);
1419
1420 vnet_set_sw_interface_tag (vnm, tag, sw_if_index);
1421
1422 return 0;
1423}
1424
1425/* *INDENT-OFF* */
1426VLIB_CLI_COMMAND (set_tag_command, static) = {
1427 .path = "set interface tag",
Billy McFalle9bac692017-08-11 14:05:11 -04001428 .short_help = "set interface tag <interface> <tag>",
Dave Barach7be864a2016-11-28 11:41:35 -05001429 .function = set_tag,
1430};
1431/* *INDENT-ON* */
1432
1433static clib_error_t *
1434clear_tag (vlib_main_t * vm, unformat_input_t * input,
1435 vlib_cli_command_t * cmd)
1436{
1437 vnet_main_t *vnm = vnet_get_main ();
1438 u32 sw_if_index = ~0;
1439
1440 if (!unformat (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index))
1441 return clib_error_return (0, "unknown input `%U'",
1442 format_unformat_error, input);
1443
1444 vnet_clear_sw_interface_tag (vnm, sw_if_index);
1445
1446 return 0;
1447}
1448
1449/* *INDENT-OFF* */
1450VLIB_CLI_COMMAND (clear_tag_command, static) = {
1451 .path = "clear interface tag",
Billy McFalle9bac692017-08-11 14:05:11 -04001452 .short_help = "clear interface tag <interface>",
Dave Barach7be864a2016-11-28 11:41:35 -05001453 .function = clear_tag,
1454};
1455/* *INDENT-ON* */
1456
Damjan Marion44036902017-04-28 12:29:15 +02001457static clib_error_t *
Neale Ranns1855b8e2018-07-11 10:31:26 -07001458set_ip_directed_broadcast (vlib_main_t * vm,
1459 unformat_input_t * input, vlib_cli_command_t * cmd)
1460{
1461 vnet_main_t *vnm = vnet_get_main ();
1462 u32 sw_if_index = ~0;
1463 u8 enable = 0;
1464
1465 if (!unformat (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index));
1466 else if (unformat (input, "enable"))
1467 enable = 1;
1468 else if (unformat (input, "disable"))
1469 enable = 0;
1470 else
1471 return clib_error_return (0, "unknown input: `%U'",
1472 format_unformat_error, input);
1473
1474 if (~0 == sw_if_index)
1475 return clib_error_return (0, "specify an interface: `%U'",
1476 format_unformat_error, input);
1477
1478 vnet_sw_interface_ip_directed_broadcast (vnm, sw_if_index, enable);
1479
1480 return 0;
1481}
1482
1483/*?
1484 * This command is used to enable/disable IP directed broadcast
1485 * If directed broadcast is enabled a packet sent to the interface's
1486 * subnet broadcast address will be sent L2 broadcast on the interface,
1487 * otherwise it is dropped.
1488 ?*/
1489/* *INDENT-OFF* */
1490VLIB_CLI_COMMAND (set_ip_directed_broadcast_command, static) = {
1491 .path = "set interface ip directed-broadcast",
1492 .short_help = "set interface enable <interface> <enable|disable>",
1493 .function = set_ip_directed_broadcast,
1494};
1495/* *INDENT-ON* */
1496
1497static clib_error_t *
Stevene3a395c2017-05-09 16:19:50 -07001498set_hw_interface_rx_mode (vnet_main_t * vnm, u32 hw_if_index,
1499 u32 queue_id, vnet_hw_interface_rx_mode mode)
1500{
1501 vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
1502 vnet_device_class_t *dev_class =
1503 vnet_get_device_class (vnm, hw->dev_class_index);
1504 clib_error_t *error;
1505 vnet_hw_interface_rx_mode old_mode;
1506 int rv;
1507
Damjan Marion4e53a0d2017-06-21 14:29:44 +02001508 if (mode == VNET_HW_INTERFACE_RX_MODE_DEFAULT)
1509 mode = hw->default_rx_mode;
1510
Stevene3a395c2017-05-09 16:19:50 -07001511 rv = vnet_hw_interface_get_rx_mode (vnm, hw_if_index, queue_id, &old_mode);
1512 switch (rv)
1513 {
1514 case 0:
1515 if (old_mode == mode)
1516 return 0; /* same rx-mode, no change */
1517 break;
1518 case VNET_API_ERROR_INVALID_INTERFACE:
1519 return clib_error_return (0, "invalid interface");
Stevenbd8a6112017-07-30 10:29:26 -07001520 case VNET_API_ERROR_INVALID_QUEUE:
1521 return clib_error_return (0, "invalid queue");
Stevene3a395c2017-05-09 16:19:50 -07001522 default:
1523 return clib_error_return (0, "unknown error");
1524 }
1525
1526 if (dev_class->rx_mode_change_function)
1527 {
1528 error = dev_class->rx_mode_change_function (vnm, hw_if_index, queue_id,
1529 mode);
1530 if (error)
1531 return (error);
1532 }
1533
1534 rv = vnet_hw_interface_set_rx_mode (vnm, hw_if_index, queue_id, mode);
1535 switch (rv)
1536 {
1537 case 0:
1538 break;
1539 case VNET_API_ERROR_UNSUPPORTED:
1540 return clib_error_return (0, "unsupported");
1541 case VNET_API_ERROR_INVALID_INTERFACE:
1542 return clib_error_return (0, "invalid interface");
Stevenbd8a6112017-07-30 10:29:26 -07001543 case VNET_API_ERROR_INVALID_QUEUE:
1544 return clib_error_return (0, "invalid queue");
Stevene3a395c2017-05-09 16:19:50 -07001545 default:
1546 return clib_error_return (0, "unknown error");
1547 }
1548
1549 return 0;
1550}
1551
Stevenad8015b2017-10-29 22:10:46 -07001552clib_error_t *
1553set_hw_interface_change_rx_mode (vnet_main_t * vnm, u32 hw_if_index,
1554 u8 queue_id_valid, u32 queue_id,
1555 vnet_hw_interface_rx_mode mode)
1556{
1557 clib_error_t *error = 0;
1558 vnet_hw_interface_t *hw;
1559 int i;
1560
1561 hw = vnet_get_hw_interface (vnm, hw_if_index);
1562
1563 if (queue_id_valid == 0)
1564 {
1565 for (i = 0; i < vec_len (hw->dq_runtime_index_by_queue); i++)
1566 {
1567 error = set_hw_interface_rx_mode (vnm, hw_if_index, i, mode);
1568 if (error)
1569 break;
1570 }
1571 hw->default_rx_mode = mode;
1572 }
1573 else
1574 error = set_hw_interface_rx_mode (vnm, hw_if_index, queue_id, mode);
1575
1576 return (error);
1577}
1578
Stevene3a395c2017-05-09 16:19:50 -07001579static clib_error_t *
Damjan Marion44036902017-04-28 12:29:15 +02001580set_interface_rx_mode (vlib_main_t * vm, unformat_input_t * input,
1581 vlib_cli_command_t * cmd)
1582{
1583 clib_error_t *error = 0;
1584 unformat_input_t _line_input, *line_input = &_line_input;
1585 vnet_main_t *vnm = vnet_get_main ();
Damjan Marion44036902017-04-28 12:29:15 +02001586 u32 hw_if_index = (u32) ~ 0;
1587 u32 queue_id = (u32) ~ 0;
1588 vnet_hw_interface_rx_mode mode = VNET_HW_INTERFACE_RX_MODE_UNKNOWN;
Stevenad8015b2017-10-29 22:10:46 -07001589 u8 queue_id_valid = 0;
Dave Barach7be864a2016-11-28 11:41:35 -05001590
Damjan Marion44036902017-04-28 12:29:15 +02001591 if (!unformat_user (input, unformat_line_input, line_input))
1592 return 0;
1593
1594 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1595 {
1596 if (unformat
1597 (line_input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
1598 ;
1599 else if (unformat (line_input, "queue %d", &queue_id))
Stevenad8015b2017-10-29 22:10:46 -07001600 queue_id_valid = 1;
Damjan Marion44036902017-04-28 12:29:15 +02001601 else if (unformat (line_input, "polling"))
1602 mode = VNET_HW_INTERFACE_RX_MODE_POLLING;
1603 else if (unformat (line_input, "interrupt"))
1604 mode = VNET_HW_INTERFACE_RX_MODE_INTERRUPT;
1605 else if (unformat (line_input, "adaptive"))
1606 mode = VNET_HW_INTERFACE_RX_MODE_ADAPTIVE;
1607 else
1608 {
1609 error = clib_error_return (0, "parse error: '%U'",
1610 format_unformat_error, line_input);
1611 unformat_free (line_input);
1612 return error;
1613 }
1614 }
1615
1616 unformat_free (line_input);
1617
1618 if (hw_if_index == (u32) ~ 0)
1619 return clib_error_return (0, "please specify valid interface name");
1620
1621 if (mode == VNET_HW_INTERFACE_RX_MODE_UNKNOWN)
1622 return clib_error_return (0, "please specify valid rx-mode");
1623
Stevenad8015b2017-10-29 22:10:46 -07001624 error = set_hw_interface_change_rx_mode (vnm, hw_if_index, queue_id_valid,
1625 queue_id, mode);
Damjan Marion44036902017-04-28 12:29:15 +02001626
Stevene3a395c2017-05-09 16:19:50 -07001627 return (error);
Damjan Marion44036902017-04-28 12:29:15 +02001628}
1629
1630/*?
Billy McFalle9bac692017-08-11 14:05:11 -04001631 * This command is used to assign the RX packet processing mode (polling,
1632 * interrupt, adaptive) of the a given interface, and optionally a
1633 * given queue. If the '<em>queue</em>' is not provided, the '<em>mode</em>'
1634 * is applied to all queues of the interface. Not all interfaces support
1635 * all modes. To display the current rx-mode use the command
1636 * '<em>show interface rx-placement</em>'.
Damjan Marion44036902017-04-28 12:29:15 +02001637 *
1638 * @cliexpar
Billy McFalle9bac692017-08-11 14:05:11 -04001639 * Example of how to assign rx-mode to all queues on an interface:
1640 * @cliexcmd{set interface rx-mode VirtualEthernet0/0/12 polling}
1641 * Example of how to assign rx-mode to one queue of an interface:
1642 * @cliexcmd{set interface rx-mode VirtualEthernet0/0/12 queue 0 interrupt}
1643 * Example of how to display the rx-mode of all interfaces:
Damjan Marion44036902017-04-28 12:29:15 +02001644 * @cliexstart{show interface rx-placement}
1645 * Thread 1 (vpp_wk_0):
Billy McFalle9bac692017-08-11 14:05:11 -04001646 * node dpdk-input:
1647 * GigabitEthernet7/0/0 queue 0 (polling)
1648 * node vhost-user-input:
1649 * VirtualEthernet0/0/12 queue 0 (interrupt)
1650 * VirtualEthernet0/0/12 queue 2 (polling)
1651 * VirtualEthernet0/0/13 queue 0 (polling)
1652 * VirtualEthernet0/0/13 queue 2 (polling)
Damjan Marion44036902017-04-28 12:29:15 +02001653 * Thread 2 (vpp_wk_1):
Billy McFalle9bac692017-08-11 14:05:11 -04001654 * node dpdk-input:
1655 * GigabitEthernet7/0/1 queue 0 (polling)
1656 * node vhost-user-input:
1657 * VirtualEthernet0/0/12 queue 1 (polling)
1658 * VirtualEthernet0/0/12 queue 3 (polling)
1659 * VirtualEthernet0/0/13 queue 1 (polling)
1660 * VirtualEthernet0/0/13 queue 3 (polling)
Damjan Marion44036902017-04-28 12:29:15 +02001661 * @cliexend
Damjan Marion44036902017-04-28 12:29:15 +02001662?*/
1663/* *INDENT-OFF* */
Damjan Marionfe7d4a22018-04-13 19:43:39 +02001664VLIB_CLI_COMMAND (cmd_set_if_rx_mode,static) = {
Damjan Marion44036902017-04-28 12:29:15 +02001665 .path = "set interface rx-mode",
1666 .short_help = "set interface rx-mode <interface> [queue <n>] [polling | interrupt | adaptive]",
1667 .function = set_interface_rx_mode,
1668};
1669/* *INDENT-ON* */
1670
1671static clib_error_t *
1672show_interface_rx_placement_fn (vlib_main_t * vm, unformat_input_t * input,
1673 vlib_cli_command_t * cmd)
1674{
1675 u8 *s = 0;
1676 vnet_main_t *vnm = vnet_get_main ();
1677 vnet_device_input_runtime_t *rt;
1678 vnet_device_and_queue_t *dq;
1679 vlib_node_t *pn = vlib_get_node_by_name (vm, (u8 *) "device-input");
1680 uword si;
1681 int index = 0;
1682
1683 /* *INDENT-OFF* */
1684 foreach_vlib_main (({
1685 clib_bitmap_foreach (si, pn->sibling_bitmap,
1686 ({
1687 rt = vlib_node_get_runtime_data (this_vlib_main, si);
1688
1689 if (vec_len (rt->devices_and_queues))
1690 s = format (s, " node %U:\n", format_vlib_node_name, vm, si);
1691
1692 vec_foreach (dq, rt->devices_and_queues)
1693 {
Steven9d6d9892017-06-30 07:15:02 -07001694 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm,
1695 dq->hw_if_index);
Damjan Marion44036902017-04-28 12:29:15 +02001696 s = format (s, " %U queue %u (%U)\n",
Steven9d6d9892017-06-30 07:15:02 -07001697 format_vnet_sw_if_index_name, vnm, hi->sw_if_index,
Damjan Marion44036902017-04-28 12:29:15 +02001698 dq->queue_id,
1699 format_vnet_hw_interface_rx_mode, dq->mode);
1700 }
1701 }));
1702 if (vec_len (s) > 0)
1703 {
Steven84f36cb2018-09-26 10:44:54 -07001704 vlib_cli_output(vm, "Thread %u (%s):\n%v", index,
Damjan Marion44036902017-04-28 12:29:15 +02001705 vlib_worker_threads[index].name, s);
1706 vec_reset_length (s);
1707 }
1708 index++;
1709 }));
1710 /* *INDENT-ON* */
1711
1712 vec_free (s);
1713 return 0;
1714}
1715
Billy McFalle9bac692017-08-11 14:05:11 -04001716/*?
1717 * This command is used to display the interface and queue worker
1718 * thread placement.
1719 *
1720 * @cliexpar
1721 * Example of how to display the interface placement:
1722 * @cliexstart{show interface rx-placement}
1723 * Thread 1 (vpp_wk_0):
1724 * node dpdk-input:
1725 * GigabitEthernet7/0/0 queue 0 (polling)
1726 * node vhost-user-input:
1727 * VirtualEthernet0/0/12 queue 0 (polling)
1728 * VirtualEthernet0/0/12 queue 2 (polling)
1729 * VirtualEthernet0/0/13 queue 0 (polling)
1730 * VirtualEthernet0/0/13 queue 2 (polling)
1731 * Thread 2 (vpp_wk_1):
1732 * node dpdk-input:
1733 * GigabitEthernet7/0/1 queue 0 (polling)
1734 * node vhost-user-input:
1735 * VirtualEthernet0/0/12 queue 1 (polling)
1736 * VirtualEthernet0/0/12 queue 3 (polling)
1737 * VirtualEthernet0/0/13 queue 1 (polling)
1738 * VirtualEthernet0/0/13 queue 3 (polling)
1739 * @cliexend
1740?*/
Damjan Marion44036902017-04-28 12:29:15 +02001741/* *INDENT-OFF* */
1742VLIB_CLI_COMMAND (show_interface_rx_placement, static) = {
1743 .path = "show interface rx-placement",
1744 .short_help = "show interface rx-placement",
1745 .function = show_interface_rx_placement_fn,
1746};
1747/* *INDENT-ON* */
1748
Mohsin Kazmi54f7c512018-08-23 18:28:11 +02001749clib_error_t *
1750set_hw_interface_rx_placement (u32 hw_if_index, u32 queue_id,
1751 u32 thread_index, u8 is_main)
Damjan Marion44036902017-04-28 12:29:15 +02001752{
Damjan Marion44036902017-04-28 12:29:15 +02001753 vnet_main_t *vnm = vnet_get_main ();
1754 vnet_device_main_t *vdm = &vnet_device_main;
Mohsin Kazmi54f7c512018-08-23 18:28:11 +02001755 clib_error_t *error = 0;
1756 vnet_hw_interface_rx_mode mode = VNET_HW_INTERFACE_RX_MODE_UNKNOWN;
Damjan Marion44036902017-04-28 12:29:15 +02001757 int rv;
1758
Mohsin Kazmi54f7c512018-08-23 18:28:11 +02001759 if (is_main)
1760 thread_index = 0;
1761 else
1762 thread_index += vdm->first_worker_thread_index;
Damjan Marion44036902017-04-28 12:29:15 +02001763
1764 if (thread_index > vdm->last_worker_thread_index)
1765 return clib_error_return (0,
1766 "please specify valid worker thread or main");
1767
1768 rv = vnet_hw_interface_get_rx_mode (vnm, hw_if_index, queue_id, &mode);
1769
1770 if (rv)
1771 return clib_error_return (0, "not found");
1772
1773 rv = vnet_hw_interface_unassign_rx_thread (vnm, hw_if_index, queue_id);
1774
1775 if (rv)
1776 return clib_error_return (0, "not found");
1777
1778 vnet_hw_interface_assign_rx_thread (vnm, hw_if_index, queue_id,
1779 thread_index);
1780 vnet_hw_interface_set_rx_mode (vnm, hw_if_index, queue_id, mode);
1781
Mohsin Kazmi54f7c512018-08-23 18:28:11 +02001782 return (error);
1783}
1784
1785static clib_error_t *
1786set_interface_rx_placement (vlib_main_t * vm, unformat_input_t * input,
1787 vlib_cli_command_t * cmd)
1788{
1789 clib_error_t *error = 0;
1790 unformat_input_t _line_input, *line_input = &_line_input;
1791 vnet_main_t *vnm = vnet_get_main ();
1792 u32 hw_if_index = (u32) ~ 0;
1793 u32 queue_id = (u32) 0;
1794 u32 thread_index = (u32) ~ 0;
1795 u8 is_main = 0;
1796
1797 if (!unformat_user (input, unformat_line_input, line_input))
1798 return 0;
1799
1800 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1801 {
1802 if (unformat
1803 (line_input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
1804 ;
1805 else if (unformat (line_input, "queue %d", &queue_id))
1806 ;
1807 else if (unformat (line_input, "main", &thread_index))
1808 is_main = 1;
1809 else if (unformat (line_input, "worker %d", &thread_index))
1810 ;
1811 else
1812 {
1813 error = clib_error_return (0, "parse error: '%U'",
1814 format_unformat_error, line_input);
1815 unformat_free (line_input);
1816 return error;
1817 }
1818 }
1819
1820 unformat_free (line_input);
1821
1822 if (hw_if_index == (u32) ~ 0)
1823 return clib_error_return (0, "please specify valid interface name");
1824
1825 error = set_hw_interface_rx_placement (hw_if_index, queue_id, thread_index,
1826 is_main);
1827
1828 return (error);
Damjan Marion44036902017-04-28 12:29:15 +02001829}
1830
1831/*?
1832 * This command is used to assign a given interface, and optionally a
1833 * given queue, to a different thread. If the '<em>queue</em>' is not provided,
Billy McFalle9bac692017-08-11 14:05:11 -04001834 * it defaults to 0. The '<em>worker</em>' parameter is zero based and the index
1835 * in the thread name, for example, 0 in the thread name '<em>vpp_wk_0</em>'.
Damjan Marion44036902017-04-28 12:29:15 +02001836 *
1837 * @cliexpar
1838 * Example of how to display the interface placement:
Billy McFalle9bac692017-08-11 14:05:11 -04001839 * @cliexstart{show interface rx-placement}
Damjan Marion44036902017-04-28 12:29:15 +02001840 * Thread 1 (vpp_wk_0):
Billy McFalle9bac692017-08-11 14:05:11 -04001841 * node dpdk-input:
1842 * GigabitEthernet7/0/0 queue 0 (polling)
1843 * node vhost-user-input:
1844 * VirtualEthernet0/0/12 queue 0 (polling)
1845 * VirtualEthernet0/0/12 queue 2 (polling)
1846 * VirtualEthernet0/0/13 queue 0 (polling)
1847 * VirtualEthernet0/0/13 queue 2 (polling)
Damjan Marion44036902017-04-28 12:29:15 +02001848 * Thread 2 (vpp_wk_1):
Billy McFalle9bac692017-08-11 14:05:11 -04001849 * node dpdk-input:
1850 * GigabitEthernet7/0/1 queue 0 (polling)
1851 * node vhost-user-input:
1852 * VirtualEthernet0/0/12 queue 1 (polling)
1853 * VirtualEthernet0/0/12 queue 3 (polling)
1854 * VirtualEthernet0/0/13 queue 1 (polling)
1855 * VirtualEthernet0/0/13 queue 3 (polling)
Damjan Marion44036902017-04-28 12:29:15 +02001856 * @cliexend
Billy McFalle9bac692017-08-11 14:05:11 -04001857 * Example of how to assign a interface and queue to a worker thread:
1858 * @cliexcmd{set interface rx-placement VirtualEthernet0/0/12 queue 1 worker 0}
1859 * Example of how to display the interface placement:
1860 * @cliexstart{show interface rx-placement}
1861 * Thread 1 (vpp_wk_0):
1862 * node dpdk-input:
1863 * GigabitEthernet7/0/0 queue 0 (polling)
1864 * node vhost-user-input:
1865 * VirtualEthernet0/0/12 queue 0 (polling)
1866 * VirtualEthernet0/0/12 queue 1 (polling)
1867 * VirtualEthernet0/0/12 queue 2 (polling)
1868 * VirtualEthernet0/0/13 queue 0 (polling)
1869 * VirtualEthernet0/0/13 queue 2 (polling)
1870 * Thread 2 (vpp_wk_1):
1871 * node dpdk-input:
1872 * GigabitEthernet7/0/1 queue 0 (polling)
1873 * node vhost-user-input:
1874 * VirtualEthernet0/0/12 queue 3 (polling)
1875 * VirtualEthernet0/0/13 queue 1 (polling)
1876 * VirtualEthernet0/0/13 queue 3 (polling)
1877 * @cliexend
Damjan Marion44036902017-04-28 12:29:15 +02001878?*/
1879/* *INDENT-OFF* */
1880VLIB_CLI_COMMAND (cmd_set_if_rx_placement,static) = {
1881 .path = "set interface rx-placement",
Billy McFalle9bac692017-08-11 14:05:11 -04001882 .short_help = "set interface rx-placement <interface> [queue <n>] "
Damjan Marion6f9ac652017-06-15 19:01:31 +02001883 "[worker <n> | main]",
Damjan Marion44036902017-04-28 12:29:15 +02001884 .function = set_interface_rx_placement,
Damjan Marion6f9ac652017-06-15 19:01:31 +02001885 .is_mp_safe = 1,
Damjan Marion44036902017-04-28 12:29:15 +02001886};
Damjan Marion44036902017-04-28 12:29:15 +02001887/* *INDENT-ON* */
Dave Barach5ecd5a52019-02-25 15:27:28 -05001888
Dave Barach33909772019-09-23 10:27:27 -04001889static u8 *
1890format_vnet_pcap (u8 * s, va_list * args)
1891{
1892 vnet_pcap_t *pp = va_arg (*args, vnet_pcap_t *);
1893 int type = va_arg (*args, int);
1894 int printed = 0;
1895
1896 if (type == 0)
1897 {
1898 if (pp->pcap_rx_enable)
1899 {
1900 s = format (s, "rx");
1901 printed = 1;
1902 }
1903 if (pp->pcap_tx_enable)
1904 {
1905 if (printed)
1906 s = format (s, " and ");
1907 s = format (s, "tx");
1908 printed = 1;
1909 }
1910 if (pp->pcap_drop_enable)
1911 {
1912 if (printed)
1913 s = format (s, " and ");
1914 s = format (s, "drop");
1915 printed = 1;
1916 }
1917 return s;
1918 }
1919 s = format (s, "unknown type %d!", type);
1920 return s;
1921}
1922
1923
Dave Barachb97641c2019-09-09 16:38:17 -04001924int
1925vnet_pcap_dispatch_trace_configure (vnet_pcap_dispatch_trace_args_t * a)
1926{
1927 vlib_main_t *vm = vlib_get_main ();
Dave Barach33909772019-09-23 10:27:27 -04001928 vnet_pcap_t *pp = &vm->pcap;
Dave Barachb97641c2019-09-09 16:38:17 -04001929 pcap_main_t *pm = &pp->pcap_main;
Dave Barachf5667c32019-09-25 11:27:46 -04001930 vnet_classify_main_t *cm = &vnet_classify_main;
1931 vnet_classify_filter_set_t *set = 0;
Dave Barachb97641c2019-09-09 16:38:17 -04001932
1933 if (a->status)
1934 {
Dave Barach33909772019-09-23 10:27:27 -04001935 if (pp->pcap_rx_enable || pp->pcap_tx_enable || pp->pcap_drop_enable)
Dave Barachb97641c2019-09-09 16:38:17 -04001936 {
1937 vlib_cli_output
Dave Barach33909772019-09-23 10:27:27 -04001938 (vm, "pcap %U dispatch capture enabled: %d of %d pkts...",
1939 format_vnet_pcap, pp, 0 /* print type */ ,
Dave Barachb97641c2019-09-09 16:38:17 -04001940 pm->n_packets_captured, pm->n_packets_to_capture);
1941 vlib_cli_output (vm, "capture to file %s", pm->file_name);
1942 }
1943 else
Dave Barach33909772019-09-23 10:27:27 -04001944 vlib_cli_output (vm, "pcap dispatch capture disabled");
1945
Dave Barachb97641c2019-09-09 16:38:17 -04001946 return 0;
1947 }
1948
1949 /* Consistency checks */
1950
1951 /* Enable w/ capture already enabled not allowed */
Dave Barach33909772019-09-23 10:27:27 -04001952 if ((pp->pcap_rx_enable + pp->pcap_tx_enable + pp->pcap_drop_enable)
1953 && (a->rx_enable + a->tx_enable + a->drop_enable))
Dave Barachb97641c2019-09-09 16:38:17 -04001954 return VNET_API_ERROR_INVALID_VALUE;
1955
1956 /* Disable capture with capture already disabled, not interesting */
Dave Barach33909772019-09-23 10:27:27 -04001957 if (((pp->pcap_rx_enable + pp->pcap_tx_enable + pp->pcap_drop_enable) == 0)
1958 && ((a->rx_enable + a->tx_enable + a->drop_enable == 0)))
Dave Barachb97641c2019-09-09 16:38:17 -04001959 return VNET_API_ERROR_VALUE_EXIST;
1960
1961 /* Change number of packets to capture while capturing */
Dave Barach33909772019-09-23 10:27:27 -04001962 if ((pp->pcap_rx_enable + pp->pcap_tx_enable + pp->pcap_drop_enable)
1963 && (a->rx_enable + a->tx_enable + a->drop_enable)
Dave Barachb97641c2019-09-09 16:38:17 -04001964 && (pm->n_packets_to_capture != a->packets_to_capture))
1965 return VNET_API_ERROR_INVALID_VALUE_2;
1966
Dave Barachf5667c32019-09-25 11:27:46 -04001967 set = pool_elt_at_index (cm->filter_sets, cm->filter_set_by_sw_if_index[0]);
1968
Dave Barach33909772019-09-23 10:27:27 -04001969 /* Classify filter specified, but no classify filter configured */
Dave Barachf5667c32019-09-25 11:27:46 -04001970 if ((a->rx_enable + a->tx_enable + a->drop_enable) && a->filter &&
Dave Barach196fce22020-01-27 09:56:58 -05001971 (set->table_indices == 0 || set->table_indices[0] == ~0))
Dave Barach9137e542019-09-13 17:47:50 -04001972 return VNET_API_ERROR_NO_SUCH_LABEL;
1973
Dave Barach33909772019-09-23 10:27:27 -04001974 if (a->rx_enable + a->tx_enable + a->drop_enable)
Dave Barachb97641c2019-09-09 16:38:17 -04001975 {
Dave Barach33909772019-09-23 10:27:27 -04001976 /* Sanity check max bytes per pkt */
1977 if (a->max_bytes_per_pkt < 32 || a->max_bytes_per_pkt > 9000)
1978 return VNET_API_ERROR_INVALID_MEMORY_SIZE;
1979
Dave Barachb97641c2019-09-09 16:38:17 -04001980 /* Clean up from previous run, if any */
1981 vec_free (pm->file_name);
1982 vec_free (pm->pcap_data);
1983 memset (pm, 0, sizeof (*pm));
1984
1985 vec_validate_aligned (vnet_trace_dummy, 2048, CLIB_CACHE_LINE_BYTES);
1986 if (pm->lock == 0)
1987 clib_spinlock_init (&(pm->lock));
1988
1989 if (a->filename == 0)
Dave Barach33909772019-09-23 10:27:27 -04001990 {
1991 u8 *stem = 0;
1992
1993 if (a->rx_enable)
1994 stem = format (stem, "rx");
1995 if (a->tx_enable)
1996 stem = format (stem, "tx");
1997 if (a->drop_enable)
1998 stem = format (stem, "drop");
1999 a->filename = format (0, "/tmp/%s.pcap%c", stem, 0);
2000 vec_free (stem);
2001 }
Dave Barachb97641c2019-09-09 16:38:17 -04002002
2003 pm->file_name = (char *) a->filename;
2004 pm->n_packets_captured = 0;
2005 pm->packet_type = PCAP_PACKET_TYPE_ethernet;
2006 pm->n_packets_to_capture = a->packets_to_capture;
2007 pp->pcap_sw_if_index = a->sw_if_index;
Dave Barach9137e542019-09-13 17:47:50 -04002008 if (a->filter)
Dave Barachf5667c32019-09-25 11:27:46 -04002009 pp->filter_classify_table_index = set->table_indices[0];
Dave Barach9137e542019-09-13 17:47:50 -04002010 else
2011 pp->filter_classify_table_index = ~0;
Dave Barach33909772019-09-23 10:27:27 -04002012 pp->pcap_rx_enable = a->rx_enable;
2013 pp->pcap_tx_enable = a->tx_enable;
2014 pp->pcap_drop_enable = a->drop_enable;
2015 pp->max_bytes_per_pkt = a->max_bytes_per_pkt;
Dave Barachb97641c2019-09-09 16:38:17 -04002016 }
2017 else
2018 {
Dave Barach33909772019-09-23 10:27:27 -04002019 pp->pcap_rx_enable = 0;
2020 pp->pcap_tx_enable = 0;
2021 pp->pcap_drop_enable = 0;
Dave Barachf5667c32019-09-25 11:27:46 -04002022 pp->filter_classify_table_index = ~0;
Dave Barachb97641c2019-09-09 16:38:17 -04002023 if (pm->n_packets_captured)
2024 {
2025 clib_error_t *error;
2026 pm->n_packets_to_capture = pm->n_packets_captured;
2027 vlib_cli_output (vm, "Write %d packets to %s, and stop capture...",
2028 pm->n_packets_captured, pm->file_name);
2029 error = pcap_write (pm);
Andrew Yourtchenko4da15062019-09-11 14:14:43 +00002030 if (pm->flags & PCAP_MAIN_INIT_DONE)
Dave Barachb97641c2019-09-09 16:38:17 -04002031 pcap_close (pm);
2032 /* Report I/O errors... */
2033 if (error)
2034 {
2035 clib_error_report (error);
2036 return VNET_API_ERROR_SYSCALL_ERROR_1;
2037 }
2038 return 0;
2039 }
2040 else
2041 return VNET_API_ERROR_NO_SUCH_ENTRY;
2042 }
2043
2044 return 0;
2045}
2046
2047static clib_error_t *
Dave Barach33909772019-09-23 10:27:27 -04002048pcap_trace_command_fn (vlib_main_t * vm,
2049 unformat_input_t * input, vlib_cli_command_t * cmd)
Dave Barach5ecd5a52019-02-25 15:27:28 -05002050{
Dave Barach5ecd5a52019-02-25 15:27:28 -05002051 unformat_input_t _line_input, *line_input = &_line_input;
Dave Barachb97641c2019-09-09 16:38:17 -04002052 vnet_pcap_dispatch_trace_args_t _a, *a = &_a;
Dave Barach5ecd5a52019-02-25 15:27:28 -05002053 vnet_main_t *vnm = vnet_get_main ();
Dave Barachb97641c2019-09-09 16:38:17 -04002054 u8 *filename = 0;
2055 u32 max = 1000;
Dave Barach33909772019-09-23 10:27:27 -04002056 u32 max_bytes_per_pkt = 512;
Dave Barachb97641c2019-09-09 16:38:17 -04002057 int rv;
Dave Barach33909772019-09-23 10:27:27 -04002058 int rx_enable = 0;
2059 int tx_enable = 0;
2060 int drop_enable = 0;
Dave Barachb97641c2019-09-09 16:38:17 -04002061 int status = 0;
Dave Barach9137e542019-09-13 17:47:50 -04002062 int filter = 0;
Dave Barach4330c462020-06-10 17:07:32 -04002063 u32 sw_if_index = 0; /* default: any interface */
Dave Barach5ecd5a52019-02-25 15:27:28 -05002064
2065 /* Get a line of input. */
2066 if (!unformat_user (input, unformat_line_input, line_input))
2067 return 0;
2068
2069 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
2070 {
Dave Barach33909772019-09-23 10:27:27 -04002071 if (unformat (line_input, "rx"))
2072 rx_enable = 1;
2073 else if (unformat (line_input, "tx"))
2074 tx_enable = 1;
2075 else if (unformat (line_input, "drop"))
2076 drop_enable = 1;
2077 else if (unformat (line_input, "off"))
2078 rx_enable = tx_enable = drop_enable = 0;
2079 else if (unformat (line_input, "max-bytes-per-pkt %u",
2080 &max_bytes_per_pkt))
Dave Barachb97641c2019-09-09 16:38:17 -04002081 ;
2082 else if (unformat (line_input, "max %d", &max))
2083 ;
2084 else if (unformat (line_input, "packets-to-capture %d", &max))
2085 ;
2086 else if (unformat (line_input, "file %U", unformat_vlib_tmpfile,
2087 &filename))
2088 ;
2089 else if (unformat (line_input, "status %=", &status, 1))
2090 ;
2091 else if (unformat (line_input, "intfc %U",
2092 unformat_vnet_sw_interface, vnm, &sw_if_index))
2093 ;
Dave Barach5ecd5a52019-02-25 15:27:28 -05002094 else if (unformat (line_input, "intfc any"))
Dave Barachb97641c2019-09-09 16:38:17 -04002095 sw_if_index = 0;
Dave Barach9137e542019-09-13 17:47:50 -04002096 else if (unformat (line_input, "filter"))
2097 filter = 1;
Dave Barach5ecd5a52019-02-25 15:27:28 -05002098 else
2099 {
Dave Barachb97641c2019-09-09 16:38:17 -04002100 return clib_error_return (0, "unknown input `%U'",
2101 format_unformat_error, line_input);
Dave Barach5ecd5a52019-02-25 15:27:28 -05002102 }
2103 }
Dave Barachb97641c2019-09-09 16:38:17 -04002104
Dave Barach5ecd5a52019-02-25 15:27:28 -05002105 unformat_free (line_input);
2106
Dave Barachb97641c2019-09-09 16:38:17 -04002107 /* no need for memset (a, 0, sizeof (*a)), set all fields here. */
2108 a->filename = filename;
Dave Barach33909772019-09-23 10:27:27 -04002109 a->rx_enable = rx_enable;
2110 a->tx_enable = tx_enable;
2111 a->drop_enable = drop_enable;
Dave Barachb97641c2019-09-09 16:38:17 -04002112 a->status = status;
2113 a->packets_to_capture = max;
Dave Barachb97641c2019-09-09 16:38:17 -04002114 a->sw_if_index = sw_if_index;
Dave Barach9137e542019-09-13 17:47:50 -04002115 a->filter = filter;
Dave Barach33909772019-09-23 10:27:27 -04002116 a->max_bytes_per_pkt = max_bytes_per_pkt;
Dave Barach5ecd5a52019-02-25 15:27:28 -05002117
Dave Barachb97641c2019-09-09 16:38:17 -04002118 rv = vnet_pcap_dispatch_trace_configure (a);
2119
2120 switch (rv)
Dave Barach5ecd5a52019-02-25 15:27:28 -05002121 {
Dave Barachb97641c2019-09-09 16:38:17 -04002122 case 0:
2123 break;
Dave Barach5ecd5a52019-02-25 15:27:28 -05002124
Dave Barachb97641c2019-09-09 16:38:17 -04002125 case VNET_API_ERROR_INVALID_VALUE:
2126 return clib_error_return (0, "dispatch trace already enabled...");
Dave Barach5ecd5a52019-02-25 15:27:28 -05002127
Dave Barachb97641c2019-09-09 16:38:17 -04002128 case VNET_API_ERROR_VALUE_EXIST:
2129 return clib_error_return (0, "dispatch trace already disabled...");
Dave Barach5ecd5a52019-02-25 15:27:28 -05002130
Dave Barachb97641c2019-09-09 16:38:17 -04002131 case VNET_API_ERROR_INVALID_VALUE_2:
2132 return clib_error_return
2133 (0, "can't change number of records to capture while tracing...");
2134
2135 case VNET_API_ERROR_SYSCALL_ERROR_1:
2136 return clib_error_return (0, "I/O writing trace capture...");
2137
2138 case VNET_API_ERROR_NO_SUCH_ENTRY:
2139 return clib_error_return (0, "No packets captured...");
2140
Dave Barach33909772019-09-23 10:27:27 -04002141 case VNET_API_ERROR_INVALID_MEMORY_SIZE:
2142 return clib_error_return (0,
2143 "Max bytes per pkt must be > 32, < 9000...");
2144
Dave Barach9137e542019-09-13 17:47:50 -04002145 case VNET_API_ERROR_NO_SUCH_LABEL:
2146 return clib_error_return
2147 (0, "No classify filter configured, see 'classify filter...'");
2148
Dave Barachb97641c2019-09-09 16:38:17 -04002149 default:
2150 vlib_cli_output (vm, "WARNING: trace configure returned %d", rv);
2151 break;
Dave Barach5ecd5a52019-02-25 15:27:28 -05002152 }
Dave Barachb97641c2019-09-09 16:38:17 -04002153 return 0;
Dave Barach5ecd5a52019-02-25 15:27:28 -05002154}
2155
Dave Barach5ecd5a52019-02-25 15:27:28 -05002156/*?
2157 * This command is used to start or stop a packet capture, or show
Dave Barach33909772019-09-23 10:27:27 -04002158 * the status of packet capture.
Dave Barach5ecd5a52019-02-25 15:27:28 -05002159 *
2160 * This command has the following optional parameters:
2161 *
Dave Barach33909772019-09-23 10:27:27 -04002162 *
2163 * - <b>rx</b> - Capture received packets
2164 *
2165 * - <b>tx</b> - Capture transmitted packets
2166 *
2167 * - <b>drop</b> - Capture dropped packets
2168 *
2169 * - <b>off</b> - Stop capturing packets, write results to the specified file
Dave Barach5ecd5a52019-02-25 15:27:28 -05002170 *
2171 * - <b>max <nn></b> - Depth of local buffer. Once '<em>nn</em>' number
2172 * of packets have been received, buffer is flushed to file. Once another
2173 * '<em>nn</em>' number of packets have been received, buffer is flushed
2174 * to file, overwriting previous write. If not entered, value defaults
2175 * to 100. Can only be updated if packet capture is off.
2176 *
Dave Barach33909772019-09-23 10:27:27 -04002177 * - <b>max-bytes-per-pkt <nnnn></b> - Maximum number of bytes to capture
2178 * for each packet. Must be >= 32, <= 9000.
2179 *
2180 * - <b>intfc <interface-name>|any</b> - Used to specify a given interface,
Dave Barach5ecd5a52019-02-25 15:27:28 -05002181 * or use '<em>any</em>' to run packet capture on all interfaces.
2182 * '<em>any</em>' is the default if not provided. Settings from a previous
2183 * packet capture are preserved, so '<em>any</em>' can be used to reset
2184 * the interface setting.
2185 *
Dave Barachf5667c32019-09-25 11:27:46 -04002186 * - <b>filter</b> - Use the pcap rx / tx / drop trace filter, which
2187 * must be configured. Use <b>classify filter pcap...</b> to configure the
2188 * filter. The filter will only be executed if the per-interface or
2189 * any-interface tests fail.
2190 *
Dave Barach5ecd5a52019-02-25 15:27:28 -05002191 * - <b>file <name></b> - Used to specify the output filename. The file will
2192 * be placed in the '<em>/tmp</em>' directory, so only the filename is
2193 * supported. Directory should not be entered. If file already exists, file
Dave Barach33909772019-09-23 10:27:27 -04002194 * will be overwritten. If no filename is provided, the file will be
2195 * named "/tmp/rx.pcap", "/tmp/tx.pcap", "/tmp/rxandtx.pcap", etc.
2196 * Can only be updated if packet capture is off.
Dave Barach5ecd5a52019-02-25 15:27:28 -05002197 *
2198 * - <b>status</b> - Displays the current status and configured attributes
2199 * associated with a packet capture. If packet capture is in progress,
2200 * '<em>status</em>' also will return the number of packets currently in
2201 * the local buffer. All additional attributes entered on command line
2202 * with '<em>status</em>' will be ignored and not applied.
2203 *
2204 * @cliexpar
2205 * Example of how to display the status of a tx packet capture when off:
Dave Barach33909772019-09-23 10:27:27 -04002206 * @cliexstart{pcap trace status}
Dave Barach5ecd5a52019-02-25 15:27:28 -05002207 * max is 100, for any interface to file /tmp/vpe.pcap
2208 * pcap tx capture is off...
2209 * @cliexend
2210 * Example of how to start a tx packet capture:
Dave Barach33909772019-09-23 10:27:27 -04002211 * @cliexstart{pcap trace tx max 35 intfc GigabitEthernet0/8/0 file vppTest.pcap}
Dave Barach5ecd5a52019-02-25 15:27:28 -05002212 * @cliexend
2213 * Example of how to display the status of a tx packet capture in progress:
Dave Barach33909772019-09-23 10:27:27 -04002214 * @cliexstart{pcap trace status}
Dave Barach5ecd5a52019-02-25 15:27:28 -05002215 * max is 35, for interface GigabitEthernet0/8/0 to file /tmp/vppTest.pcap
2216 * pcap tx capture is on: 20 of 35 pkts...
2217 * @cliexend
2218 * Example of how to stop a tx packet capture:
Dave Barach33909772019-09-23 10:27:27 -04002219 * @cliexstart{pcap trace off}
Dave Barach5ecd5a52019-02-25 15:27:28 -05002220 * captured 21 pkts...
2221 * saved to /tmp/vppTest.pcap...
2222 * @cliexend
2223?*/
2224/* *INDENT-OFF* */
2225
2226VLIB_CLI_COMMAND (pcap_tx_trace_command, static) = {
Dave Barach33909772019-09-23 10:27:27 -04002227 .path = "pcap trace",
Dave Barach5ecd5a52019-02-25 15:27:28 -05002228 .short_help =
Dave Barachf5667c32019-09-25 11:27:46 -04002229 "pcap trace rx tx drop off [max <nn>] [intfc <interface>|any] [file <name>] [status] [max-bytes-per-pkt <nnnn>][filter]",
Dave Barach33909772019-09-23 10:27:27 -04002230 .function = pcap_trace_command_fn,
Dave Barach5ecd5a52019-02-25 15:27:28 -05002231};
2232/* *INDENT-ON* */
2233
Dave Barachba868bb2016-08-08 09:51:21 -04002234/*
2235 * fd.io coding-style-patch-verification: ON
2236 *
2237 * Local Variables:
2238 * eval: (c-set-style "gnu")
2239 * End:
2240 */