blob: 15dc7f8d50408d1afe1773607b1580b0cf9b2442 [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>
Ed Warnickecb9cada2015-12-08 15:45:58 -070055
Dave Barachba868bb2016-08-08 09:51:21 -040056static int
57compare_interface_names (void *a1, void *a2)
Ed Warnickecb9cada2015-12-08 15:45:58 -070058{
Dave Barachba868bb2016-08-08 09:51:21 -040059 u32 *hi1 = a1;
60 u32 *hi2 = a2;
Ed Warnickecb9cada2015-12-08 15:45:58 -070061
Dave Barachba868bb2016-08-08 09:51:21 -040062 return vnet_hw_interface_compare (vnet_get_main (), *hi1, *hi2);
Ed Warnickecb9cada2015-12-08 15:45:58 -070063}
64
65static clib_error_t *
66show_or_clear_hw_interfaces (vlib_main_t * vm,
67 unformat_input_t * input,
68 vlib_cli_command_t * cmd)
69{
Dave Barachba868bb2016-08-08 09:51:21 -040070 clib_error_t *error = 0;
71 vnet_main_t *vnm = vnet_get_main ();
72 vnet_interface_main_t *im = &vnm->interface_main;
73 vnet_hw_interface_t *hi;
74 u32 hw_if_index, *hw_if_indices = 0;
John Lobcebbb92016-04-05 15:47:43 -040075 int i, verbose = -1, is_show, show_bond = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070076
77 is_show = strstr (cmd->path, "show") != 0;
78 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
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700171/*?
Billy McFalle9bac692017-08-11 14:05:11 -0400172 * Display more detailed information about all or a list of given interfaces.
173 * The verboseness of the output can be controlled by the following optional
174 * parameters:
175 * - brief: Only show name, index and state (default for bonded interfaces).
176 * - verbose: Also display additional attributes (default for all other interfaces).
177 * - detail: Also display all remaining attributes and extended statistics.
178 *
179 * To limit the output of the command to bonded interfaces and their slave
180 * interfaces, use the '<em>bond</em>' optional parameter.
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700181 *
182 * @cliexpar
Billy McFalle9bac692017-08-11 14:05:11 -0400183 * Example of how to display default data for all interfaces:
184 * @cliexstart{show hardware-interfaces}
185 * Name Idx Link Hardware
186 * GigabitEthernet7/0/0 1 up GigabitEthernet7/0/0
187 * Ethernet address ec:f4:bb:c0:bc:fc
188 * Intel e1000
189 * carrier up full duplex speed 1000 mtu 9216
190 * rx queues 1, rx desc 1024, tx queues 3, tx desc 1024
191 * cpu socket 0
192 * GigabitEthernet7/0/1 2 up GigabitEthernet7/0/1
193 * Ethernet address ec:f4:bb:c0:bc:fd
194 * Intel e1000
195 * carrier up full duplex speed 1000 mtu 9216
196 * rx queues 1, rx desc 1024, tx queues 3, tx desc 1024
197 * cpu socket 0
198 * VirtualEthernet0/0/0 3 up VirtualEthernet0/0/0
199 * Ethernet address 02:fe:a5:a9:8b:8e
200 * VirtualEthernet0/0/1 4 up VirtualEthernet0/0/1
201 * Ethernet address 02:fe:c0:4e:3b:b0
202 * VirtualEthernet0/0/2 5 up VirtualEthernet0/0/2
203 * Ethernet address 02:fe:1f:73:92:81
204 * VirtualEthernet0/0/3 6 up VirtualEthernet0/0/3
205 * Ethernet address 02:fe:f2:25:c4:68
206 * local0 0 down local0
207 * local
208 * @cliexend
209 * Example of how to display '<em>verbose</em>' data for an interface by name and
210 * software index (where 2 is the software index):
211 * @cliexstart{show hardware-interfaces GigabitEthernet7/0/0 2 verbose}
212 * Name Idx Link Hardware
213 * GigabitEthernet7/0/0 1 up GigabitEthernet7/0/0
214 * Ethernet address ec:f4:bb:c0:bc:fc
215 * Intel e1000
216 * carrier up full duplex speed 1000 mtu 9216
217 * rx queues 1, rx desc 1024, tx queues 3, tx desc 1024
218 * cpu socket 0
219 * GigabitEthernet7/0/1 2 down GigabitEthernet7/0/1
220 * Ethernet address ec:f4:bb:c0:bc:fd
221 * Intel e1000
222 * carrier up full duplex speed 1000 mtu 9216
223 * rx queues 1, rx desc 1024, tx queues 3, tx desc 1024
224 * cpu socket 0
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700225 * @cliexend
226 ?*/
Billy McFalle9bac692017-08-11 14:05:11 -0400227/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700228VLIB_CLI_COMMAND (show_hw_interfaces_command, static) = {
229 .path = "show hardware-interfaces",
Billy McFalle9bac692017-08-11 14:05:11 -0400230 .short_help = "show hardware-interfaces [brief|verbose|detail] [bond] "
231 "[<interface> [<interface> [..]]] [<sw_idx> [<sw_idx> [..]]]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700232 .function = show_or_clear_hw_interfaces,
233};
Dave Barachba868bb2016-08-08 09:51:21 -0400234/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700235
Billy McFalle9bac692017-08-11 14:05:11 -0400236
237/*?
238 * Clear the extended statistics for all or a list of given interfaces
239 * (statistics associated with the '<em>show hardware-interfaces</em>' command).
240 *
241 * @cliexpar
242 * Example of how to clear the extended statistics for all interfaces:
243 * @cliexcmd{clear hardware-interfaces}
244 * Example of how to clear the extended statistics for an interface by
245 * name and software index (where 2 is the software index):
246 * @cliexcmd{clear hardware-interfaces GigabitEthernet7/0/0 2}
247 ?*/
Dave Barachba868bb2016-08-08 09:51:21 -0400248/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700249VLIB_CLI_COMMAND (clear_hw_interface_counters_command, static) = {
250 .path = "clear hardware-interfaces",
Billy McFalle9bac692017-08-11 14:05:11 -0400251 .short_help = "clear hardware-interfaces "
252 "[<interface> [<interface> [..]]] [<sw_idx> [<sw_idx> [..]]]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700253 .function = show_or_clear_hw_interfaces,
254};
Dave Barachba868bb2016-08-08 09:51:21 -0400255/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700256
Dave Barachba868bb2016-08-08 09:51:21 -0400257static int
258sw_interface_name_compare (void *a1, void *a2)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700259{
260 vnet_sw_interface_t *si1 = a1;
261 vnet_sw_interface_t *si2 = a2;
262
Dave Barachba868bb2016-08-08 09:51:21 -0400263 return vnet_sw_interface_compare (vnet_get_main (),
264 si1->sw_if_index, si2->sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700265}
266
267static clib_error_t *
268show_sw_interfaces (vlib_main_t * vm,
Dave Barachba868bb2016-08-08 09:51:21 -0400269 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700270{
Dave Barachba868bb2016-08-08 09:51:21 -0400271 clib_error_t *error = 0;
272 vnet_main_t *vnm = vnet_get_main ();
273 vnet_interface_main_t *im = &vnm->interface_main;
274 vnet_sw_interface_t *si, *sorted_sis = 0;
Damjan Marion22311502016-10-28 20:30:15 +0200275 u32 sw_if_index = ~(u32) 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700276 u8 show_addresses = 0;
Damjan Marion22311502016-10-28 20:30:15 +0200277 u8 show_features = 0;
Dave Barach7be864a2016-11-28 11:41:35 -0500278 u8 show_tag = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700279
280 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
281 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700282 /* See if user wants to show specific interface */
Dave Barachba868bb2016-08-08 09:51:21 -0400283 if (unformat
284 (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700285 {
Dave Barachba868bb2016-08-08 09:51:21 -0400286 si = pool_elt_at_index (im->sw_interfaces, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700287 vec_add1 (sorted_sis, si[0]);
288 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700289 else if (unformat (input, "address") || unformat (input, "addr"))
Dave Barachba868bb2016-08-08 09:51:21 -0400290 show_addresses = 1;
Damjan Marion22311502016-10-28 20:30:15 +0200291 else if (unformat (input, "features") || unformat (input, "feat"))
292 show_features = 1;
Dave Barach7be864a2016-11-28 11:41:35 -0500293 else if (unformat (input, "tag"))
294 show_tag = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700295 else
Dave Barachba868bb2016-08-08 09:51:21 -0400296 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700297 error = clib_error_return (0, "unknown input `%U'",
298 format_unformat_error, input);
299 goto done;
Dave Barachba868bb2016-08-08 09:51:21 -0400300 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700301 }
302
Dave Barach7be864a2016-11-28 11:41:35 -0500303 if (show_features || show_tag)
Damjan Marion22311502016-10-28 20:30:15 +0200304 {
305 if (sw_if_index == ~(u32) 0)
306 return clib_error_return (0, "Interface not specified...");
Dave Barach7be864a2016-11-28 11:41:35 -0500307 }
Damjan Marion22311502016-10-28 20:30:15 +0200308
Dave Barach7be864a2016-11-28 11:41:35 -0500309 if (show_features)
310 {
Damjan Marion22311502016-10-28 20:30:15 +0200311 vnet_interface_features_show (vm, sw_if_index);
Eyal Bari942402b2017-07-26 11:57:04 +0300312
313 l2_input_config_t *l2_input = l2input_intf_config (sw_if_index);
314 u32 fb = l2_input->feature_bitmap;
315 /* intf input features are masked by bridge domain */
316 if (l2_input->bridge)
317 fb &= l2input_bd_config (l2_input->bd_index)->feature_bitmap;
318 vlib_cli_output (vm, "\nl2-input:\n%U", format_l2_input_features, fb);
319
320 l2_output_config_t *l2_output = l2output_intf_config (sw_if_index);
321 vlib_cli_output (vm, "\nl2-output:");
322 if (l2_output->out_vtr_flag)
323 vlib_cli_output (vm, "%10s (%s)", "VTR", "--internal--");
324 vlib_cli_output (vm, "%U", format_l2_output_features,
325 l2_output->feature_bitmap);
Damjan Marion22311502016-10-28 20:30:15 +0200326 return 0;
327 }
Dave Barach7be864a2016-11-28 11:41:35 -0500328 if (show_tag)
329 {
330 u8 *tag;
331 tag = vnet_get_sw_interface_tag (vnm, sw_if_index);
332 vlib_cli_output (vm, "%U: %s",
333 format_vnet_sw_if_index_name, vnm, sw_if_index,
334 tag ? (char *) tag : "(none)");
335 return 0;
336 }
Damjan Marion22311502016-10-28 20:30:15 +0200337
Ed Warnickecb9cada2015-12-08 15:45:58 -0700338 if (!show_addresses)
Dave Barachba868bb2016-08-08 09:51:21 -0400339 vlib_cli_output (vm, "%U\n", format_vnet_sw_interface, vnm, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700340
Dave Barachba868bb2016-08-08 09:51:21 -0400341 if (vec_len (sorted_sis) == 0) /* Get all interfaces */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700342 {
343 /* Gather interfaces. */
Dave Barachba868bb2016-08-08 09:51:21 -0400344 sorted_sis =
345 vec_new (vnet_sw_interface_t, pool_elts (im->sw_interfaces));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700346 _vec_len (sorted_sis) = 0;
Dave Barachba868bb2016-08-08 09:51:21 -0400347 pool_foreach (si, im->sw_interfaces, (
348 {
Eyal Bari942402b2017-07-26 11:57:04 +0300349 int visible =
350 vnet_swif_is_api_visible (si);
351 if (visible)
352 vec_add1 (sorted_sis, si[0]);}
Dave Barachba868bb2016-08-08 09:51:21 -0400353 ));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700354
355 /* Sort by name. */
356 vec_sort_with_function (sorted_sis, sw_interface_name_compare);
357 }
358
359 if (show_addresses)
360 {
361 vec_foreach (si, sorted_sis)
Dave Barachba868bb2016-08-08 09:51:21 -0400362 {
Dave Barachba868bb2016-08-08 09:51:21 -0400363 ip4_main_t *im4 = &ip4_main;
364 ip6_main_t *im6 = &ip6_main;
365 ip_lookup_main_t *lm4 = &im4->lookup_main;
366 ip_lookup_main_t *lm6 = &im6->lookup_main;
367 ip_interface_address_t *ia = 0;
368 ip4_address_t *r4;
369 ip6_address_t *r6;
370 u32 fib_index4 = 0, fib_index6 = 0;
371 ip4_fib_t *fib4;
372 ip6_fib_t *fib6;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700373
Dave Barachba868bb2016-08-08 09:51:21 -0400374 if (vec_len (im4->fib_index_by_sw_if_index) > si->sw_if_index)
375 fib_index4 = vec_elt (im4->fib_index_by_sw_if_index,
376 si->sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700377
Dave Barachba868bb2016-08-08 09:51:21 -0400378 if (vec_len (im6->fib_index_by_sw_if_index) > si->sw_if_index)
379 fib_index6 = vec_elt (im6->fib_index_by_sw_if_index,
380 si->sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700381
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100382 fib4 = ip4_fib_get (fib_index4);
383 fib6 = ip6_fib_get (fib_index6);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700384
Dave Barachba868bb2016-08-08 09:51:21 -0400385 if (si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED)
386 vlib_cli_output
387 (vm, "%U (%s): \n unnumbered, use %U",
388 format_vnet_sw_if_index_name,
389 vnm, si->sw_if_index,
390 (si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? "up" : "dn",
391 format_vnet_sw_if_index_name, vnm, si->unnumbered_sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700392
Dave Barachba868bb2016-08-08 09:51:21 -0400393 else
394 {
395 vlib_cli_output (vm, "%U (%s):",
396 format_vnet_sw_if_index_name,
397 vnm, si->sw_if_index,
398 (si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
399 ? "up" : "dn");
400 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700401
Eyal Bari942402b2017-07-26 11:57:04 +0300402 /* Display any L2 info */
403 l2_input_config_t *l2_input = l2input_intf_config (si->sw_if_index);
404 if (l2_input->bridge)
Dave Barachba868bb2016-08-08 09:51:21 -0400405 {
Eyal Bari942402b2017-07-26 11:57:04 +0300406 u32 bd_id = l2input_main.bd_configs[l2_input->bd_index].bd_id;
Dave Barachba868bb2016-08-08 09:51:21 -0400407 vlib_cli_output (vm, " l2 bridge bd_id %d%s%d", bd_id,
Eyal Bari942402b2017-07-26 11:57:04 +0300408 l2_input->bvi ? " bvi shg " : " shg ",
409 l2_input->shg);
Dave Barachba868bb2016-08-08 09:51:21 -0400410 }
Eyal Bari942402b2017-07-26 11:57:04 +0300411 else if (l2_input->xconnect)
Dave Barachba868bb2016-08-08 09:51:21 -0400412 {
413 vlib_cli_output (vm, " l2 xconnect %U",
414 format_vnet_sw_if_index_name,
Eyal Bari942402b2017-07-26 11:57:04 +0300415 vnm, l2_input->output_sw_if_index);
Dave Barachba868bb2016-08-08 09:51:21 -0400416 }
417
418 /* Display any IP4 addressing info */
419 /* *INDENT-OFF* */
420 foreach_ip_interface_address (lm4, ia, si->sw_if_index,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700421 1 /* honor unnumbered */,
422 ({
423 r4 = ip_interface_address_get_address (lm4, ia);
424 if (fib4->table_id)
425 {
Dave Barachba868bb2016-08-08 09:51:21 -0400426 vlib_cli_output (vm, " %U/%d table %d",
427 format_ip4_address, r4,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700428 ia->address_length,
429 fib4->table_id);
430 }
431 else
432 {
Dave Barachba868bb2016-08-08 09:51:21 -0400433 vlib_cli_output (vm, " %U/%d",
434 format_ip4_address, r4,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700435 ia->address_length);
436 }
437 }));
Dave Barachba868bb2016-08-08 09:51:21 -0400438 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700439
Dave Barachba868bb2016-08-08 09:51:21 -0400440 /* Display any IP6 addressing info */
441 /* *INDENT-OFF* */
442 foreach_ip_interface_address (lm6, ia, si->sw_if_index,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700443 1 /* honor unnumbered */,
444 ({
445 r6 = ip_interface_address_get_address (lm6, ia);
446 if (fib6->table_id)
447 {
Dave Barachba868bb2016-08-08 09:51:21 -0400448 vlib_cli_output (vm, " %U/%d table %d",
449 format_ip6_address, r6,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700450 ia->address_length,
451 fib6->table_id);
452 }
453 else
454 {
Dave Barachba868bb2016-08-08 09:51:21 -0400455 vlib_cli_output (vm, " %U/%d",
456 format_ip6_address, r6,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700457 ia->address_length);
458 }
459 }));
Dave Barachba868bb2016-08-08 09:51:21 -0400460 /* *INDENT-ON* */
461 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700462 }
463 else
464 {
465 vec_foreach (si, sorted_sis)
Dave Barachba868bb2016-08-08 09:51:21 -0400466 {
467 vlib_cli_output (vm, "%U\n", format_vnet_sw_interface, vnm, si);
468 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700469 }
470
Dave Barachba868bb2016-08-08 09:51:21 -0400471done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700472 vec_free (sorted_sis);
473 return error;
474}
475
Dave Barachba868bb2016-08-08 09:51:21 -0400476/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700477VLIB_CLI_COMMAND (show_sw_interfaces_command, static) = {
Dave Barach13ad1f02017-03-26 19:36:18 -0400478 .path = "show interface",
Billy McFalle9bac692017-08-11 14:05:11 -0400479 .short_help = "show interface [address|addr|features|feat] [<interface> [<interface> [..]]]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700480 .function = show_sw_interfaces,
481};
Dave Barachba868bb2016-08-08 09:51:21 -0400482/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700483
484/* Root of all interface commands. */
Dave Barachba868bb2016-08-08 09:51:21 -0400485/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700486VLIB_CLI_COMMAND (vnet_cli_interface_command, static) = {
487 .path = "interface",
488 .short_help = "Interface commands",
489};
Dave Barachba868bb2016-08-08 09:51:21 -0400490/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700491
Dave Barachba868bb2016-08-08 09:51:21 -0400492/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700493VLIB_CLI_COMMAND (vnet_cli_set_interface_command, static) = {
494 .path = "set interface",
495 .short_help = "Interface commands",
496};
Dave Barachba868bb2016-08-08 09:51:21 -0400497/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700498
499static clib_error_t *
500clear_interface_counters (vlib_main_t * vm,
Dave Barachba868bb2016-08-08 09:51:21 -0400501 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700502{
Dave Barachba868bb2016-08-08 09:51:21 -0400503 vnet_main_t *vnm = vnet_get_main ();
504 vnet_interface_main_t *im = &vnm->interface_main;
505 vlib_simple_counter_main_t *sm;
506 vlib_combined_counter_main_t *cm;
507 static vnet_main_t **my_vnet_mains;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700508 int i, j, n_counters;
509
510 vec_reset_length (my_vnet_mains);
Dave Barachba868bb2016-08-08 09:51:21 -0400511
Ed Warnickecb9cada2015-12-08 15:45:58 -0700512 for (i = 0; i < vec_len (vnet_mains); i++)
513 {
514 if (vnet_mains[i])
Dave Barachba868bb2016-08-08 09:51:21 -0400515 vec_add1 (my_vnet_mains, vnet_mains[i]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700516 }
517
518 if (vec_len (vnet_mains) == 0)
519 vec_add1 (my_vnet_mains, vnm);
520
521 n_counters = vec_len (im->combined_sw_if_counters);
522
523 for (j = 0; j < n_counters; j++)
524 {
Dave Barachba868bb2016-08-08 09:51:21 -0400525 for (i = 0; i < vec_len (my_vnet_mains); i++)
526 {
527 im = &my_vnet_mains[i]->interface_main;
528 cm = im->combined_sw_if_counters + j;
529 vlib_clear_combined_counters (cm);
530 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700531 }
532
533 n_counters = vec_len (im->sw_if_counters);
534
535 for (j = 0; j < n_counters; j++)
536 {
Dave Barachba868bb2016-08-08 09:51:21 -0400537 for (i = 0; i < vec_len (my_vnet_mains); i++)
538 {
539 im = &my_vnet_mains[i]->interface_main;
540 sm = im->sw_if_counters + j;
541 vlib_clear_simple_counters (sm);
542 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700543 }
544
545 return 0;
546}
547
Billy McFalle9bac692017-08-11 14:05:11 -0400548/*?
549 * Clear the statistics for all interfaces (statistics associated with the
550 * '<em>show interface</em>' command).
551 *
552 * @cliexpar
553 * Example of how to clear the statistics for all interfaces:
554 * @cliexcmd{clear interfaces}
555 ?*/
Dave Barachba868bb2016-08-08 09:51:21 -0400556/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700557VLIB_CLI_COMMAND (clear_interface_counters_command, static) = {
558 .path = "clear interfaces",
Billy McFalle9bac692017-08-11 14:05:11 -0400559 .short_help = "clear interfaces",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700560 .function = clear_interface_counters,
561};
Dave Barachba868bb2016-08-08 09:51:21 -0400562/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700563
Chris Luke16bcf7d2016-09-01 14:31:46 -0400564/**
565 * Parse subinterface names.
566 *
Dave Barachba868bb2016-08-08 09:51:21 -0400567 * The following subinterface syntax is supported. The first two are for
568 * backwards compatability:
569 *
570 * <intf-name> <id>
571 * - a subinterface with the name <intf-name>.<id>. The subinterface
572 * is a single dot1q vlan with vlan id <id> and exact-match semantics.
573 *
574 * <intf-name> <min_id>-<max_id>
575 * - a set of the above subinterfaces, repeating for each id
576 * in the range <min_id> to <max_id>
577 *
578 * In the following, exact-match semantics (i.e. the number of vlan tags on the
579 * packet must match the number of tags in the configuration) are used only if
580 * the keyword exact-match is present. Non-exact match is the default.
581 *
582 * <intf-name> <id> dot1q <outer_id> [exact-match]
583 * - a subinterface with the name <intf-name>.<id>. The subinterface
584 * is a single dot1q vlan with vlan id <outer_id>.
585 *
586 * <intf-name> <id> dot1q any [exact-match]
587 * - a subinterface with the name <intf-name>.<id>. The subinterface
588 * is a single dot1q vlan with any vlan id.
589 *
590 * <intf-name> <id> dot1q <outer_id> inner-dot1q <inner_id> [exact-match]
591 * - a subinterface with the name <intf-name>.<id>. The subinterface
592 * is a double dot1q vlan with outer vlan id <outer_id> and inner vlan id
593 * <inner_id>.
594 *
595 * <intf-name> <id> dot1q <outer_id> inner-dot1q any [exact-match]
596 * - a subinterface with the name <intf-name>.<id>. The subinterface
597 * is a double dot1q vlan with outer vlan id <id> and any inner vlan id.
598 *
599 * <intf-name> <id> dot1q any inner-dot1q any [exact-match]
600 *
601 * - a subinterface with the name <intf-name>.<id>. The subinterface
602 * is a double dot1q vlan with any outer vlan id and any inner vlan id.
603 *
604 * For each of the above CLI, there is a duplicate that uses the keyword
605 * "dot1ad" in place of the first "dot1q". These interfaces use ethertype
606 * 0x88ad in place of 0x8100 for the outer ethertype. Note that for double-
607 * tagged packets the inner ethertype is always 0x8100. Also note that
608 * the dot1q and dot1ad naming spaces are independent, so it is legal to
609 * have both "Gig3/0/0.1 dot1q 100" and "Gig3/0/0.2 dot1ad 100". For example:
610 *
611 * <intf-name> <id> dot1ad <outer_id> inner-dot1q <inner_id> [exact-match]
612 * - a subinterface with the name <intf-name>.<id>. The subinterface
613 * is a double dot1ad vlan with outer vlan id <outer_id> and inner vlan
614 * id <inner_id>.
615 *
616 * <intf-name> <id> untagged
617 * - a subinterface with the name <intf-name>.<id>. The subinterface
618 * has no vlan tags. Only one can be specified per interface.
619 *
620 * <intf-name> <id> default
621 * - a subinterface with the name <intf-name>.<id>. This is associated
622 * with a packet that did not match any other configured subinterface
623 * on this interface. Only one can be specified per interface.
624 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700625
626static clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -0400627parse_vlan_sub_interfaces (unformat_input_t * input,
628 vnet_sw_interface_t * template)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700629{
Dave Barachba868bb2016-08-08 09:51:21 -0400630 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700631 u32 inner_vlan, outer_vlan;
632
Dave Barachba868bb2016-08-08 09:51:21 -0400633 if (unformat (input, "any inner-dot1q any"))
634 {
635 template->sub.eth.flags.two_tags = 1;
636 template->sub.eth.flags.outer_vlan_id_any = 1;
637 template->sub.eth.flags.inner_vlan_id_any = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700638 }
Dave Barachba868bb2016-08-08 09:51:21 -0400639 else if (unformat (input, "any"))
640 {
641 template->sub.eth.flags.one_tag = 1;
642 template->sub.eth.flags.outer_vlan_id_any = 1;
643 }
644 else if (unformat (input, "%d inner-dot1q any", &outer_vlan))
645 {
646 template->sub.eth.flags.two_tags = 1;
647 template->sub.eth.flags.inner_vlan_id_any = 1;
648 template->sub.eth.outer_vlan_id = outer_vlan;
649 }
650 else if (unformat (input, "%d inner-dot1q %d", &outer_vlan, &inner_vlan))
651 {
652 template->sub.eth.flags.two_tags = 1;
653 template->sub.eth.outer_vlan_id = outer_vlan;
654 template->sub.eth.inner_vlan_id = inner_vlan;
655 }
656 else if (unformat (input, "%d", &outer_vlan))
657 {
658 template->sub.eth.flags.one_tag = 1;
659 template->sub.eth.outer_vlan_id = outer_vlan;
660 }
661 else
662 {
663 error = clib_error_return (0, "expected dot1q config, got `%U'",
664 format_unformat_error, input);
665 goto done;
666 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700667
Dave Barachba868bb2016-08-08 09:51:21 -0400668 if (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
669 {
670 if (unformat (input, "exact-match"))
671 {
672 template->sub.eth.flags.exact_match = 1;
673 }
674 }
675
676done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700677 return error;
678}
679
680static clib_error_t *
681create_sub_interfaces (vlib_main_t * vm,
Dave Barachba868bb2016-08-08 09:51:21 -0400682 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700683{
Dave Barachba868bb2016-08-08 09:51:21 -0400684 vnet_main_t *vnm = vnet_get_main ();
685 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700686 u32 hw_if_index, sw_if_index;
Dave Barachba868bb2016-08-08 09:51:21 -0400687 vnet_hw_interface_t *hi;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700688 u32 id, id_min, id_max;
689 vnet_sw_interface_t template;
690
691 hw_if_index = ~0;
Dave Barachba868bb2016-08-08 09:51:21 -0400692 if (!unformat_user (input, unformat_vnet_hw_interface, vnm, &hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700693 {
694 error = clib_error_return (0, "unknown interface `%U'",
695 format_unformat_error, input);
696 goto done;
697 }
698
699 memset (&template, 0, sizeof (template));
700 template.sub.eth.raw_flags = 0;
701
Dave Barachba868bb2016-08-08 09:51:21 -0400702 if (unformat (input, "%d default", &id_min))
703 {
704 id_max = id_min;
705 template.sub.eth.flags.default_sub = 1;
706 }
707 else if (unformat (input, "%d untagged", &id_min))
708 {
709 id_max = id_min;
710 template.sub.eth.flags.no_tags = 1;
711 template.sub.eth.flags.exact_match = 1;
712 }
713 else if (unformat (input, "%d dot1q", &id_min))
714 {
715 /* parse dot1q config */
716 id_max = id_min;
717 error = parse_vlan_sub_interfaces (input, &template);
718 if (error)
719 goto done;
720 }
721 else if (unformat (input, "%d dot1ad", &id_min))
722 {
723 /* parse dot1ad config */
724 id_max = id_min;
725 template.sub.eth.flags.dot1ad = 1;
726 error = parse_vlan_sub_interfaces (input, &template);
727 if (error)
728 goto done;
729 }
730 else if (unformat (input, "%d-%d", &id_min, &id_max))
731 {
732 template.sub.eth.flags.one_tag = 1;
Dave Barachba868bb2016-08-08 09:51:21 -0400733 template.sub.eth.flags.exact_match = 1;
734 if (id_min > id_max)
735 goto id_error;
736 }
737 else if (unformat (input, "%d", &id_min))
738 {
739 id_max = id_min;
740 template.sub.eth.flags.one_tag = 1;
741 template.sub.eth.outer_vlan_id = id_min;
742 template.sub.eth.flags.exact_match = 1;
743 }
744 else
745 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700746 id_error:
747 error = clib_error_return (0, "expected ID or ID MIN-MAX, got `%U'",
748 format_unformat_error, input);
749 goto done;
Dave Barachba868bb2016-08-08 09:51:21 -0400750 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700751
752 hi = vnet_get_hw_interface (vnm, hw_if_index);
John Lobcebbb92016-04-05 15:47:43 -0400753
Dave Barachba868bb2016-08-08 09:51:21 -0400754 if (hi->bond_info == VNET_HW_INTERFACE_BOND_INFO_SLAVE)
755 {
756 error =
757 clib_error_return (0,
758 "not allowed as %v belong to a BondEthernet interface",
759 hi->name);
760 goto done;
761 }
John Lobcebbb92016-04-05 15:47:43 -0400762
Ed Warnickecb9cada2015-12-08 15:45:58 -0700763 for (id = id_min; id <= id_max; id++)
764 {
Dave Barachba868bb2016-08-08 09:51:21 -0400765 uword *p;
766 vnet_interface_main_t *im = &vnm->interface_main;
767 u64 sup_and_sub_key = ((u64) (hi->sw_if_index) << 32) | (u64) id;
768 u64 *kp;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700769
770 p = hash_get_mem (im->sw_if_index_by_sup_and_sub, &sup_and_sub_key);
771 if (p)
Dave Barachba868bb2016-08-08 09:51:21 -0400772 {
773 if (CLIB_DEBUG > 0)
774 clib_warning ("sup sw_if_index %d, sub id %d already exists\n",
775 hi->sw_if_index, id);
776 continue;
777 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700778
779 kp = clib_mem_alloc (sizeof (*kp));
780 *kp = sup_and_sub_key;
781
782 template.type = VNET_SW_INTERFACE_TYPE_SUB;
Eyal Baric5b13602016-11-24 19:42:43 +0200783 template.flood_class = VNET_FLOOD_CLASS_NORMAL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700784 template.sup_sw_if_index = hi->sw_if_index;
785 template.sub.id = id;
Eyal Baria4509cf2016-09-26 09:24:09 +0300786 if (id_min < id_max)
787 template.sub.eth.outer_vlan_id = id;
788
Ed Warnickecb9cada2015-12-08 15:45:58 -0700789 error = vnet_create_sw_interface (vnm, &template, &sw_if_index);
Dave Barachba868bb2016-08-08 09:51:21 -0400790 if (error)
791 goto done;
Dave Barach16ad6ae2016-07-28 17:55:30 -0400792
Ed Warnickecb9cada2015-12-08 15:45:58 -0700793 hash_set (hi->sub_interface_sw_if_index_by_id, id, sw_if_index);
794 hash_set_mem (im->sw_if_index_by_sup_and_sub, kp, sw_if_index);
Dave Barachba868bb2016-08-08 09:51:21 -0400795 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name,
796 vnet_get_main (), sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700797 }
798
Dave Barachba868bb2016-08-08 09:51:21 -0400799done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700800 return error;
801}
802
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700803/*?
Billy McFalle9bac692017-08-11 14:05:11 -0400804 * This command is used to add VLAN IDs to interfaces, also known as subinterfaces.
805 * The primary input to this command is the '<em>interface</em>' and '<em>subId</em>'
806 * (subinterface Id) parameters. If no additional VLAN ID is provide, the VLAN ID is
807 * assumed to be the '<em>subId</em>'. The VLAN ID and '<em>subId</em>' can be different,
808 * but this is not recommended.
809 *
810 * This command has several variations:
811 * - <b>create sub-interfaces <interface> <subId></b> - Create a subinterface to
812 * process packets with a given 802.1q VLAN ID (same value as the '<em>subId</em>').
813 *
814 * - <b>create sub-interfaces <interface> <subId> default</b> - Adding the
815 * '<em>default</em>' parameter indicates that packets with VLAN IDs that do not
816 * match any other subinterfaces should be sent to this subinterface.
817 *
818 * - <b>create sub-interfaces <interface> <subId> untagged</b> - Adding the
819 * '<em>untagged</em>' parameter indicates that packets no VLAN IDs should be sent
820 * to this subinterface.
821 *
822 * - <b>create sub-interfaces <interface> <subId>-<subId></b> - Create a range of
823 * subinterfaces to handle a range of VLAN IDs.
824 *
825 * - <b>create sub-interfaces <interface> <subId> dot1q|dot1ad <vlanId>|any [exact-match]</b> -
826 * Use this command to specify the outer VLAN ID, to either be explicited or to make the
827 * VLAN ID different from the '<em>subId</em>'.
828 *
829 * - <b>create sub-interfaces <interface> <subId> dot1q|dot1ad <vlanId>|any inner-dot1q
830 * <vlanId>|any [exact-match]</b> - Use this command to specify the outer VLAN ID and
831 * the innner VLAN ID.
832 *
833 * When '<em>dot1q</em>' or '<em>dot1ad</em>' is explictly entered, subinterfaces
834 * can be configured as either exact-match or non-exact match. Non-exact match is the CLI
835 * default. If '<em>exact-match</em>' is specified, packets must have the same number of
836 * VLAN tags as the configuration. For non-exact-match, packets must at least that number
837 * of tags. L3 (routed) interfaces must be configured as exact-match. L2 interfaces are
838 * typically configured as non-exact-match. If '<em>dot1q</em>' or '<em>dot1ad</em>' is NOT
839 * entered, then the default behavior is exact-match.
840 *
841 * Use the '<em>show interface</em>' command to display all subinterfaces.
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700842 *
843 * @cliexpar
Billy McFalle9bac692017-08-11 14:05:11 -0400844 * @parblock
845 * Example of how to create a VLAN subinterface 11 to process packets on 802.1q VLAN ID 11:
846 * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 11}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700847 *
Billy McFalle9bac692017-08-11 14:05:11 -0400848 * The previous example is shorthand and is equivalent to:
849 * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 11 dot1q 11 exact-match}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700850 *
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700851 *
Billy McFalle9bac692017-08-11 14:05:11 -0400852 * Example of how to create a subinterface number that is different from the VLAN ID:
853 * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 11 dot1q 100}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700854 *
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700855 *
Billy McFalle9bac692017-08-11 14:05:11 -0400856 * Examples of how to create q-in-q and q-in-any subinterfaces:
857 * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 11 dot1q 100 inner-dot1q 200}
858 * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 12 dot1q 100 inner-dot1q any}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700859 *
Billy McFalle9bac692017-08-11 14:05:11 -0400860 * Examples of how to create dot1ad interfaces:
861 * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 11 dot1ad 11}
862 * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 12 dot1ad 100 inner-dot1q 200}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700863 *
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700864 *
Billy McFalle9bac692017-08-11 14:05:11 -0400865 * Examples of '<em>exact-match</em>' versus non-exact match. A packet with
866 * outer VLAN 100 and inner VLAN 200 would match this interface, because the default
867 * is non-exact match:
868 * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 5 dot1q 100}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700869 *
Billy McFalle9bac692017-08-11 14:05:11 -0400870 * However, the same packet would NOT match this interface because '<em>exact-match</em>'
871 * is specified and only one VLAN is configured, but packet contains two VLANs:
872 * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 5 dot1q 100 exact-match}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700873 *
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700874 *
Billy McFalle9bac692017-08-11 14:05:11 -0400875 * Example of how to created a subinterface to process untagged packets:
876 * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 5 untagged}
877 *
878 * Example of how to created a subinterface to process any packet with a VLAN ID that
879 * does not match any other subinterface:
880 * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 7 default}
881 *
882 * When subinterfaces are created, they are in the down state. Example of how to
883 * enable a newly created subinterface:
884 * @cliexcmd{set interface GigabitEthernet2/0/0.7 up}
885 * @endparblock
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700886 ?*/
Billy McFalle9bac692017-08-11 14:05:11 -0400887/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700888VLIB_CLI_COMMAND (create_sub_interfaces_command, static) = {
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700889 .path = "create sub-interfaces",
Billy McFalle9bac692017-08-11 14:05:11 -0400890 .short_help = "create sub-interfaces <interface> "
891 "{<subId> [default|untagged]} | "
892 "{<subId>-<subId>} | "
893 "{<subId> dot1q|dot1ad <vlanId>|any [inner-dot1q <vlanId>|any] [exact-match]}",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700894 .function = create_sub_interfaces,
895};
Dave Barachba868bb2016-08-08 09:51:21 -0400896/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700897
898static clib_error_t *
899set_state (vlib_main_t * vm,
Dave Barachba868bb2016-08-08 09:51:21 -0400900 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700901{
Dave Barachba868bb2016-08-08 09:51:21 -0400902 vnet_main_t *vnm = vnet_get_main ();
903 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700904 u32 sw_if_index, flags;
905
906 sw_if_index = ~0;
Dave Barachba868bb2016-08-08 09:51:21 -0400907 if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700908 {
909 error = clib_error_return (0, "unknown interface `%U'",
910 format_unformat_error, input);
911 goto done;
912 }
913
Dave Barachba868bb2016-08-08 09:51:21 -0400914 if (!unformat (input, "%U", unformat_vnet_sw_interface_flags, &flags))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700915 {
916 error = clib_error_return (0, "unknown flags `%U'",
917 format_unformat_error, input);
918 goto done;
919 }
920
921 error = vnet_sw_interface_set_flags (vnm, sw_if_index, flags);
922 if (error)
923 goto done;
924
Dave Barachba868bb2016-08-08 09:51:21 -0400925done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700926 return error;
927}
928
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700929
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700930/*?
Billy McFalle9bac692017-08-11 14:05:11 -0400931 * This command is used to change the admin state (up/down) of an interface.
932 *
933 * If an interface is down, the optional '<em>punt</em>' flag can also be set.
934 * The '<em>punt</em>' flag implies the interface is disabled for forwarding
935 * but punt all traffic to slow-path. Use the '<em>enable</em>' flag to clear
936 * '<em>punt</em>' flag (interface is still down).
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700937 *
938 * @cliexpar
Billy McFalle9bac692017-08-11 14:05:11 -0400939 * Example of how to configure the admin state of an interface to '<em>up</em?':
940 * @cliexcmd{set interface state GigabitEthernet2/0/0 up}
941 * Example of how to configure the admin state of an interface to '<em>down</em?':
942 * @cliexcmd{set interface state GigabitEthernet2/0/0 down}
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700943 ?*/
Billy McFalle9bac692017-08-11 14:05:11 -0400944/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700945VLIB_CLI_COMMAND (set_state_command, static) = {
946 .path = "set interface state",
Billy McFalle9bac692017-08-11 14:05:11 -0400947 .short_help = "set interface state <interface> [up|down|punt|enable]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700948 .function = set_state,
949};
Dave Barachba868bb2016-08-08 09:51:21 -0400950/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700951
952static clib_error_t *
953set_unnumbered (vlib_main_t * vm,
Dave Barachba868bb2016-08-08 09:51:21 -0400954 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700955{
Dave Barachba868bb2016-08-08 09:51:21 -0400956 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700957 u32 unnumbered_sw_if_index;
958 u32 inherit_from_sw_if_index;
Dave Barachba868bb2016-08-08 09:51:21 -0400959 vnet_sw_interface_t *si;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700960 int is_set = 0;
961 int is_del = 0;
Neale Ranns898273f2017-03-18 02:57:38 -0700962 u32 was_unnum;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700963
Igor Mikhailov (imichail)ab3e42b2016-09-25 15:11:53 -0700964 if (unformat (input, "%U use %U",
965 unformat_vnet_sw_interface, vnm, &unnumbered_sw_if_index,
966 unformat_vnet_sw_interface, vnm, &inherit_from_sw_if_index))
967 is_set = 1;
968 else if (unformat (input, "del %U",
969 unformat_vnet_sw_interface, vnm,
970 &unnumbered_sw_if_index))
971 is_del = 1;
972 else
973 return clib_error_return (0, "parse error '%U'",
974 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700975
976 si = vnet_get_sw_interface (vnm, unnumbered_sw_if_index);
Neale Ranns898273f2017-03-18 02:57:38 -0700977 was_unnum = (si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED);
978
Dave Barachba868bb2016-08-08 09:51:21 -0400979 if (is_del)
980 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700981 si->flags &= ~(VNET_SW_INTERFACE_FLAG_UNNUMBERED);
Dave Barachba868bb2016-08-08 09:51:21 -0400982 si->unnumbered_sw_if_index = (u32) ~ 0;
Neale Ranns898273f2017-03-18 02:57:38 -0700983
Neale Ranns4b919a52017-03-11 05:55:21 -0800984 ip4_main.lookup_main.if_address_pool_index_by_sw_if_index
985 [unnumbered_sw_if_index] = ~0;
986 ip6_main.lookup_main.if_address_pool_index_by_sw_if_index
987 [unnumbered_sw_if_index] = ~0;
Dave Barachba868bb2016-08-08 09:51:21 -0400988 }
Igor Mikhailov (imichail)ab3e42b2016-09-25 15:11:53 -0700989 else if (is_set)
Dave Barachba868bb2016-08-08 09:51:21 -0400990 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700991 si->flags |= VNET_SW_INTERFACE_FLAG_UNNUMBERED;
992 si->unnumbered_sw_if_index = inherit_from_sw_if_index;
Neale Ranns898273f2017-03-18 02:57:38 -0700993
Neale Ranns4b919a52017-03-11 05:55:21 -0800994 ip4_main.lookup_main.if_address_pool_index_by_sw_if_index
995 [unnumbered_sw_if_index] =
996 ip4_main.lookup_main.if_address_pool_index_by_sw_if_index
997 [inherit_from_sw_if_index];
998 ip6_main.lookup_main.if_address_pool_index_by_sw_if_index
999 [unnumbered_sw_if_index] =
1000 ip6_main.lookup_main.if_address_pool_index_by_sw_if_index
1001 [inherit_from_sw_if_index];
Dave Barachba868bb2016-08-08 09:51:21 -04001002 }
Neale Ranns898273f2017-03-18 02:57:38 -07001003
1004 if (was_unnum != (si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED))
1005 {
1006 ip4_sw_interface_enable_disable (unnumbered_sw_if_index, !is_del);
1007 ip6_sw_interface_enable_disable (unnumbered_sw_if_index, !is_del);
1008 }
Dave Barachba868bb2016-08-08 09:51:21 -04001009
Ed Warnickecb9cada2015-12-08 15:45:58 -07001010 return 0;
1011}
1012
Dave Barachba868bb2016-08-08 09:51:21 -04001013/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001014VLIB_CLI_COMMAND (set_unnumbered_command, static) = {
1015 .path = "set interface unnumbered",
Billy McFalle9bac692017-08-11 14:05:11 -04001016 .short_help = "set interface unnumbered [<interface> use <interface> | del <interface>]",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001017 .function = set_unnumbered,
1018};
Dave Barachba868bb2016-08-08 09:51:21 -04001019/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001020
1021
1022
1023static clib_error_t *
1024set_hw_class (vlib_main_t * vm,
Dave Barachba868bb2016-08-08 09:51:21 -04001025 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001026{
Dave Barachba868bb2016-08-08 09:51:21 -04001027 vnet_main_t *vnm = vnet_get_main ();
1028 vnet_interface_main_t *im = &vnm->interface_main;
1029 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001030 u32 hw_if_index, hw_class_index;
1031
1032 hw_if_index = ~0;
Dave Barachba868bb2016-08-08 09:51:21 -04001033 if (!unformat_user (input, unformat_vnet_hw_interface, vnm, &hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001034 {
1035 error = clib_error_return (0, "unknown hardware interface `%U'",
1036 format_unformat_error, input);
1037 goto done;
1038 }
1039
Dave Barachba868bb2016-08-08 09:51:21 -04001040 if (!unformat_user (input, unformat_hash_string,
1041 im->hw_interface_class_by_name, &hw_class_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001042 {
1043 error = clib_error_return (0, "unknown hardware class `%U'",
1044 format_unformat_error, input);
1045 goto done;
1046 }
1047
1048 error = vnet_hw_interface_set_class (vnm, hw_if_index, hw_class_index);
1049 if (error)
1050 goto done;
1051
Dave Barachba868bb2016-08-08 09:51:21 -04001052done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001053 return error;
1054}
1055
Dave Barachba868bb2016-08-08 09:51:21 -04001056/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001057VLIB_CLI_COMMAND (set_hw_class_command, static) = {
1058 .path = "set interface hw-class",
1059 .short_help = "Set interface hardware class",
1060 .function = set_hw_class,
1061};
Dave Barachba868bb2016-08-08 09:51:21 -04001062/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001063
Dave Barachba868bb2016-08-08 09:51:21 -04001064static clib_error_t *
1065vnet_interface_cli_init (vlib_main_t * vm)
1066{
1067 return 0;
1068}
Ed Warnickecb9cada2015-12-08 15:45:58 -07001069
1070VLIB_INIT_FUNCTION (vnet_interface_cli_init);
1071
Dave Barachba868bb2016-08-08 09:51:21 -04001072static clib_error_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -07001073renumber_interface_command_fn (vlib_main_t * vm,
Dave Barachba868bb2016-08-08 09:51:21 -04001074 unformat_input_t * input,
1075 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001076{
1077 u32 hw_if_index;
1078 u32 new_dev_instance;
Dave Barachba868bb2016-08-08 09:51:21 -04001079 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001080 int rv;
1081
Dave Barachba868bb2016-08-08 09:51:21 -04001082 if (!unformat_user (input, unformat_vnet_hw_interface, vnm, &hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001083 return clib_error_return (0, "unknown hardware interface `%U'",
Dave Barachba868bb2016-08-08 09:51:21 -04001084 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001085
Dave Barachba868bb2016-08-08 09:51:21 -04001086 if (!unformat (input, "%d", &new_dev_instance))
Ed Warnickecb9cada2015-12-08 15:45:58 -07001087 return clib_error_return (0, "new dev instance missing");
1088
1089 rv = vnet_interface_name_renumber (hw_if_index, new_dev_instance);
1090
1091 switch (rv)
1092 {
1093 case 0:
1094 break;
1095
1096 default:
1097 return clib_error_return (0, "vnet_interface_name_renumber returned %d",
Dave Barachba868bb2016-08-08 09:51:21 -04001098 rv);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001099
1100 }
1101
1102 return 0;
1103}
1104
1105
Dave Barachba868bb2016-08-08 09:51:21 -04001106/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001107VLIB_CLI_COMMAND (renumber_interface_command, static) = {
1108 .path = "renumber interface",
Billy McFalle9bac692017-08-11 14:05:11 -04001109 .short_help = "renumber interface <interface> <new-dev-instance>",
Ed Warnickecb9cada2015-12-08 15:45:58 -07001110 .function = renumber_interface_command_fn,
1111};
Dave Barachba868bb2016-08-08 09:51:21 -04001112/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001113
Damjan Marion8358ff92016-04-15 14:26:00 +02001114static clib_error_t *
1115promiscuous_cmd (vlib_main_t * vm,
Dave Barachba868bb2016-08-08 09:51:21 -04001116 unformat_input_t * input, vlib_cli_command_t * cmd)
Damjan Marion8358ff92016-04-15 14:26:00 +02001117{
Dave Barachba868bb2016-08-08 09:51:21 -04001118 vnet_main_t *vnm = vnet_get_main ();
Damjan Marion8358ff92016-04-15 14:26:00 +02001119 u32 hw_if_index;
1120 u32 flags = ETHERNET_INTERFACE_FLAG_ACCEPT_ALL;
Dave Barachba868bb2016-08-08 09:51:21 -04001121 ethernet_main_t *em = &ethernet_main;
1122 ethernet_interface_t *eif;
Damjan Marion8358ff92016-04-15 14:26:00 +02001123
1124 if (unformat (input, "on %U",
Dave Barachba868bb2016-08-08 09:51:21 -04001125 unformat_vnet_hw_interface, vnm, &hw_if_index))
Damjan Marion8358ff92016-04-15 14:26:00 +02001126 ;
1127 else if (unformat (input, "off %U",
Dave Barachba868bb2016-08-08 09:51:21 -04001128 unformat_ethernet_interface, vnm, &hw_if_index))
Damjan Marion8358ff92016-04-15 14:26:00 +02001129 flags = 0;
1130 else
1131 return clib_error_return (0, "unknown input `%U'",
Dave Barachba868bb2016-08-08 09:51:21 -04001132 format_unformat_error, input);
Damjan Marion8358ff92016-04-15 14:26:00 +02001133
1134 eif = ethernet_get_interface (em, hw_if_index);
1135 if (!eif)
1136 return clib_error_return (0, "not supported");
1137
1138 ethernet_set_flags (vnm, hw_if_index, flags);
1139 return 0;
1140}
1141
Dave Barachba868bb2016-08-08 09:51:21 -04001142/* *INDENT-OFF* */
Damjan Marion8358ff92016-04-15 14:26:00 +02001143VLIB_CLI_COMMAND (set_interface_promiscuous_cmd, static) = {
1144 .path = "set interface promiscuous",
Billy McFalle9bac692017-08-11 14:05:11 -04001145 .short_help = "set interface promiscuous [on|off] <interface>",
Damjan Marion8358ff92016-04-15 14:26:00 +02001146 .function = promiscuous_cmd,
1147};
Dave Barachba868bb2016-08-08 09:51:21 -04001148/* *INDENT-ON* */
Damjan Marion8358ff92016-04-15 14:26:00 +02001149
1150static clib_error_t *
1151mtu_cmd (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd)
1152{
Dave Barachba868bb2016-08-08 09:51:21 -04001153 vnet_main_t *vnm = vnet_get_main ();
Damjan Marion8358ff92016-04-15 14:26:00 +02001154 u32 hw_if_index, mtu;
1155 u32 flags = ETHERNET_INTERFACE_FLAG_MTU;
Dave Barachba868bb2016-08-08 09:51:21 -04001156 ethernet_main_t *em = &ethernet_main;
Damjan Marion8358ff92016-04-15 14:26:00 +02001157
1158 if (unformat (input, "%d %U", &mtu,
Dave Barachba868bb2016-08-08 09:51:21 -04001159 unformat_vnet_hw_interface, vnm, &hw_if_index))
Damjan Marion8358ff92016-04-15 14:26:00 +02001160 {
Dave Barachba868bb2016-08-08 09:51:21 -04001161 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1162 ethernet_interface_t *eif = ethernet_get_interface (em, hw_if_index);
Damjan Marion8358ff92016-04-15 14:26:00 +02001163
1164 if (!eif)
Dave Barachba868bb2016-08-08 09:51:21 -04001165 return clib_error_return (0, "not supported");
Damjan Marion8358ff92016-04-15 14:26:00 +02001166
Mohsin Kazmif2ba9aa2016-04-24 18:53:42 +02001167 if (mtu < hi->min_supported_packet_bytes)
Damjan Marion8358ff92016-04-15 14:26:00 +02001168 return clib_error_return (0, "Invalid mtu (%d): "
1169 "must be >= min pkt bytes (%d)", mtu,
Mohsin Kazmif2ba9aa2016-04-24 18:53:42 +02001170 hi->min_supported_packet_bytes);
Damjan Marion8358ff92016-04-15 14:26:00 +02001171
Mohsin Kazmif2ba9aa2016-04-24 18:53:42 +02001172 if (mtu > hi->max_supported_packet_bytes)
1173 return clib_error_return (0, "Invalid mtu (%d): must be <= (%d)", mtu,
Dave Barachba868bb2016-08-08 09:51:21 -04001174 hi->max_supported_packet_bytes);
Damjan Marion8358ff92016-04-15 14:26:00 +02001175
1176 if (hi->max_packet_bytes != mtu)
1177 {
1178 hi->max_packet_bytes = mtu;
1179 ethernet_set_flags (vnm, hw_if_index, flags);
1180 }
1181 }
1182 else
1183 return clib_error_return (0, "unknown input `%U'",
Dave Barachba868bb2016-08-08 09:51:21 -04001184 format_unformat_error, input);
Damjan Marion8358ff92016-04-15 14:26:00 +02001185 return 0;
1186}
1187
Dave Barachba868bb2016-08-08 09:51:21 -04001188/* *INDENT-OFF* */
Damjan Marion8358ff92016-04-15 14:26:00 +02001189VLIB_CLI_COMMAND (set_interface_mtu_cmd, static) = {
1190 .path = "set interface mtu",
Billy McFalle9bac692017-08-11 14:05:11 -04001191 .short_help = "set interface mtu <value> <interface>",
Damjan Marion8358ff92016-04-15 14:26:00 +02001192 .function = mtu_cmd,
1193};
Dave Barachba868bb2016-08-08 09:51:21 -04001194/* *INDENT-ON* */
Damjan Marion8358ff92016-04-15 14:26:00 +02001195
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001196static clib_error_t *
1197set_interface_mac_address (vlib_main_t * vm, unformat_input_t * input,
1198 vlib_cli_command_t * cmd)
1199{
1200 vnet_main_t *vnm = vnet_get_main ();
Neale Rannsd867a7c2017-10-04 02:29:07 -07001201 vnet_sw_interface_t *si = NULL;
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001202 clib_error_t *error = 0;
1203 u32 sw_if_index = ~0;
1204 u64 mac = 0;
1205
1206 if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
1207 {
1208 error = clib_error_return (0, "unknown interface `%U'",
1209 format_unformat_error, input);
1210 goto done;
1211 }
1212 if (!unformat_user (input, unformat_ethernet_address, &mac))
1213 {
1214 error = clib_error_return (0, "expected mac address `%U'",
1215 format_unformat_error, input);
1216 goto done;
1217 }
Neale Rannsd867a7c2017-10-04 02:29:07 -07001218 si = vnet_get_sw_interface (vnm, sw_if_index);
1219 error = vnet_hw_interface_change_mac_address (vnm, si->hw_if_index, mac);
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001220done:
1221 return error;
1222}
1223
1224/*?
1225 * The '<em>set interface mac address </em>' command allows to set MAC address of given interface.
1226 * In case of NIC interfaces the one has to support MAC address change. A side effect of MAC address
1227 * change are changes of MAC addresses in FIB tables (ipv4 and ipv6).
1228 *
1229 * @cliexpar
1230 * @parblock
1231 * Example of how to change MAC Address of interface:
1232 * @cliexcmd{set interface mac address GigabitEthernet0/8/0 aa:bb:cc:dd:ee:01}
1233 * @cliexcmd{set interface mac address host-vpp0 aa:bb:cc:dd:ee:02}
1234 * @cliexcmd{set interface mac address tap-0 aa:bb:cc:dd:ee:03}
1235 * @cliexcmd{set interface mac address pg0 aa:bb:cc:dd:ee:04}
1236 * @endparblock
1237?*/
1238/* *INDENT-OFF* */
1239VLIB_CLI_COMMAND (set_interface_mac_address_cmd, static) = {
1240 .path = "set interface mac address",
Billy McFalle9bac692017-08-11 14:05:11 -04001241 .short_help = "set interface mac address <interface> <mac-address>",
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001242 .function = set_interface_mac_address,
1243};
1244/* *INDENT-ON* */
1245
Dave Barach7be864a2016-11-28 11:41:35 -05001246static clib_error_t *
1247set_tag (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd)
1248{
1249 vnet_main_t *vnm = vnet_get_main ();
1250 u32 sw_if_index = ~0;
1251 u8 *tag = 0;
1252
1253 if (!unformat (input, "%U %s", unformat_vnet_sw_interface,
1254 vnm, &sw_if_index, &tag))
1255 return clib_error_return (0, "unknown input `%U'",
1256 format_unformat_error, input);
1257
1258 vnet_set_sw_interface_tag (vnm, tag, sw_if_index);
1259
1260 return 0;
1261}
1262
1263/* *INDENT-OFF* */
1264VLIB_CLI_COMMAND (set_tag_command, static) = {
1265 .path = "set interface tag",
Billy McFalle9bac692017-08-11 14:05:11 -04001266 .short_help = "set interface tag <interface> <tag>",
Dave Barach7be864a2016-11-28 11:41:35 -05001267 .function = set_tag,
1268};
1269/* *INDENT-ON* */
1270
1271static clib_error_t *
1272clear_tag (vlib_main_t * vm, unformat_input_t * input,
1273 vlib_cli_command_t * cmd)
1274{
1275 vnet_main_t *vnm = vnet_get_main ();
1276 u32 sw_if_index = ~0;
1277
1278 if (!unformat (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index))
1279 return clib_error_return (0, "unknown input `%U'",
1280 format_unformat_error, input);
1281
1282 vnet_clear_sw_interface_tag (vnm, sw_if_index);
1283
1284 return 0;
1285}
1286
1287/* *INDENT-OFF* */
1288VLIB_CLI_COMMAND (clear_tag_command, static) = {
1289 .path = "clear interface tag",
Billy McFalle9bac692017-08-11 14:05:11 -04001290 .short_help = "clear interface tag <interface>",
Dave Barach7be864a2016-11-28 11:41:35 -05001291 .function = clear_tag,
1292};
1293/* *INDENT-ON* */
1294
Damjan Marion44036902017-04-28 12:29:15 +02001295static clib_error_t *
Stevene3a395c2017-05-09 16:19:50 -07001296set_hw_interface_rx_mode (vnet_main_t * vnm, u32 hw_if_index,
1297 u32 queue_id, vnet_hw_interface_rx_mode mode)
1298{
1299 vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
1300 vnet_device_class_t *dev_class =
1301 vnet_get_device_class (vnm, hw->dev_class_index);
1302 clib_error_t *error;
1303 vnet_hw_interface_rx_mode old_mode;
1304 int rv;
1305
Damjan Marion4e53a0d2017-06-21 14:29:44 +02001306 if (mode == VNET_HW_INTERFACE_RX_MODE_DEFAULT)
1307 mode = hw->default_rx_mode;
1308
Stevene3a395c2017-05-09 16:19:50 -07001309 rv = vnet_hw_interface_get_rx_mode (vnm, hw_if_index, queue_id, &old_mode);
1310 switch (rv)
1311 {
1312 case 0:
1313 if (old_mode == mode)
1314 return 0; /* same rx-mode, no change */
1315 break;
1316 case VNET_API_ERROR_INVALID_INTERFACE:
1317 return clib_error_return (0, "invalid interface");
Stevenbd8a6112017-07-30 10:29:26 -07001318 case VNET_API_ERROR_INVALID_QUEUE:
1319 return clib_error_return (0, "invalid queue");
Stevene3a395c2017-05-09 16:19:50 -07001320 default:
1321 return clib_error_return (0, "unknown error");
1322 }
1323
1324 if (dev_class->rx_mode_change_function)
1325 {
1326 error = dev_class->rx_mode_change_function (vnm, hw_if_index, queue_id,
1327 mode);
1328 if (error)
1329 return (error);
1330 }
1331
1332 rv = vnet_hw_interface_set_rx_mode (vnm, hw_if_index, queue_id, mode);
1333 switch (rv)
1334 {
1335 case 0:
1336 break;
1337 case VNET_API_ERROR_UNSUPPORTED:
1338 return clib_error_return (0, "unsupported");
1339 case VNET_API_ERROR_INVALID_INTERFACE:
1340 return clib_error_return (0, "invalid interface");
Stevenbd8a6112017-07-30 10:29:26 -07001341 case VNET_API_ERROR_INVALID_QUEUE:
1342 return clib_error_return (0, "invalid queue");
Stevene3a395c2017-05-09 16:19:50 -07001343 default:
1344 return clib_error_return (0, "unknown error");
1345 }
1346
1347 return 0;
1348}
1349
1350static clib_error_t *
Damjan Marion44036902017-04-28 12:29:15 +02001351set_interface_rx_mode (vlib_main_t * vm, unformat_input_t * input,
1352 vlib_cli_command_t * cmd)
1353{
1354 clib_error_t *error = 0;
1355 unformat_input_t _line_input, *line_input = &_line_input;
1356 vnet_main_t *vnm = vnet_get_main ();
1357 vnet_hw_interface_t *hw;
1358 u32 hw_if_index = (u32) ~ 0;
1359 u32 queue_id = (u32) ~ 0;
1360 vnet_hw_interface_rx_mode mode = VNET_HW_INTERFACE_RX_MODE_UNKNOWN;
Stevene3a395c2017-05-09 16:19:50 -07001361 int i;
Stevenbd8a6112017-07-30 10:29:26 -07001362 u8 input_queue_id = 0;
Dave Barach7be864a2016-11-28 11:41:35 -05001363
Damjan Marion44036902017-04-28 12:29:15 +02001364 if (!unformat_user (input, unformat_line_input, line_input))
1365 return 0;
1366
1367 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1368 {
1369 if (unformat
1370 (line_input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
1371 ;
1372 else if (unformat (line_input, "queue %d", &queue_id))
Stevenbd8a6112017-07-30 10:29:26 -07001373 input_queue_id = 1;
Damjan Marion44036902017-04-28 12:29:15 +02001374 else if (unformat (line_input, "polling"))
1375 mode = VNET_HW_INTERFACE_RX_MODE_POLLING;
1376 else if (unformat (line_input, "interrupt"))
1377 mode = VNET_HW_INTERFACE_RX_MODE_INTERRUPT;
1378 else if (unformat (line_input, "adaptive"))
1379 mode = VNET_HW_INTERFACE_RX_MODE_ADAPTIVE;
1380 else
1381 {
1382 error = clib_error_return (0, "parse error: '%U'",
1383 format_unformat_error, line_input);
1384 unformat_free (line_input);
1385 return error;
1386 }
1387 }
1388
1389 unformat_free (line_input);
1390
1391 if (hw_if_index == (u32) ~ 0)
1392 return clib_error_return (0, "please specify valid interface name");
1393
1394 if (mode == VNET_HW_INTERFACE_RX_MODE_UNKNOWN)
1395 return clib_error_return (0, "please specify valid rx-mode");
1396
1397 hw = vnet_get_hw_interface (vnm, hw_if_index);
1398
Stevenbd8a6112017-07-30 10:29:26 -07001399 if (input_queue_id == 0)
Damjan Marion4e53a0d2017-06-21 14:29:44 +02001400 {
1401 for (i = 0; i < vec_len (hw->dq_runtime_index_by_queue); i++)
1402 {
1403 error = set_hw_interface_rx_mode (vnm, hw_if_index, i, mode);
1404 if (error)
1405 break;
1406 }
1407 hw->default_rx_mode = mode;
1408 }
Damjan Marion44036902017-04-28 12:29:15 +02001409 else
Stevene3a395c2017-05-09 16:19:50 -07001410 error = set_hw_interface_rx_mode (vnm, hw_if_index, queue_id, mode);
Damjan Marion44036902017-04-28 12:29:15 +02001411
Stevene3a395c2017-05-09 16:19:50 -07001412 return (error);
Damjan Marion44036902017-04-28 12:29:15 +02001413}
1414
1415/*?
Billy McFalle9bac692017-08-11 14:05:11 -04001416 * This command is used to assign the RX packet processing mode (polling,
1417 * interrupt, adaptive) of the a given interface, and optionally a
1418 * given queue. If the '<em>queue</em>' is not provided, the '<em>mode</em>'
1419 * is applied to all queues of the interface. Not all interfaces support
1420 * all modes. To display the current rx-mode use the command
1421 * '<em>show interface rx-placement</em>'.
Damjan Marion44036902017-04-28 12:29:15 +02001422 *
1423 * @cliexpar
Billy McFalle9bac692017-08-11 14:05:11 -04001424 * Example of how to assign rx-mode to all queues on an interface:
1425 * @cliexcmd{set interface rx-mode VirtualEthernet0/0/12 polling}
1426 * Example of how to assign rx-mode to one queue of an interface:
1427 * @cliexcmd{set interface rx-mode VirtualEthernet0/0/12 queue 0 interrupt}
1428 * Example of how to display the rx-mode of all interfaces:
Damjan Marion44036902017-04-28 12:29:15 +02001429 * @cliexstart{show interface rx-placement}
1430 * Thread 1 (vpp_wk_0):
Billy McFalle9bac692017-08-11 14:05:11 -04001431 * node dpdk-input:
1432 * GigabitEthernet7/0/0 queue 0 (polling)
1433 * node vhost-user-input:
1434 * VirtualEthernet0/0/12 queue 0 (interrupt)
1435 * VirtualEthernet0/0/12 queue 2 (polling)
1436 * VirtualEthernet0/0/13 queue 0 (polling)
1437 * VirtualEthernet0/0/13 queue 2 (polling)
Damjan Marion44036902017-04-28 12:29:15 +02001438 * Thread 2 (vpp_wk_1):
Billy McFalle9bac692017-08-11 14:05:11 -04001439 * node dpdk-input:
1440 * GigabitEthernet7/0/1 queue 0 (polling)
1441 * node vhost-user-input:
1442 * VirtualEthernet0/0/12 queue 1 (polling)
1443 * VirtualEthernet0/0/12 queue 3 (polling)
1444 * VirtualEthernet0/0/13 queue 1 (polling)
1445 * VirtualEthernet0/0/13 queue 3 (polling)
Damjan Marion44036902017-04-28 12:29:15 +02001446 * @cliexend
Damjan Marion44036902017-04-28 12:29:15 +02001447?*/
1448/* *INDENT-OFF* */
1449VLIB_CLI_COMMAND (cmd_set_if_rx_mode,static) = {
1450 .path = "set interface rx-mode",
1451 .short_help = "set interface rx-mode <interface> [queue <n>] [polling | interrupt | adaptive]",
1452 .function = set_interface_rx_mode,
1453};
1454/* *INDENT-ON* */
1455
1456static clib_error_t *
1457show_interface_rx_placement_fn (vlib_main_t * vm, unformat_input_t * input,
1458 vlib_cli_command_t * cmd)
1459{
1460 u8 *s = 0;
1461 vnet_main_t *vnm = vnet_get_main ();
1462 vnet_device_input_runtime_t *rt;
1463 vnet_device_and_queue_t *dq;
1464 vlib_node_t *pn = vlib_get_node_by_name (vm, (u8 *) "device-input");
1465 uword si;
1466 int index = 0;
1467
1468 /* *INDENT-OFF* */
1469 foreach_vlib_main (({
1470 clib_bitmap_foreach (si, pn->sibling_bitmap,
1471 ({
1472 rt = vlib_node_get_runtime_data (this_vlib_main, si);
1473
1474 if (vec_len (rt->devices_and_queues))
1475 s = format (s, " node %U:\n", format_vlib_node_name, vm, si);
1476
1477 vec_foreach (dq, rt->devices_and_queues)
1478 {
Steven9d6d9892017-06-30 07:15:02 -07001479 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm,
1480 dq->hw_if_index);
Damjan Marion44036902017-04-28 12:29:15 +02001481 s = format (s, " %U queue %u (%U)\n",
Steven9d6d9892017-06-30 07:15:02 -07001482 format_vnet_sw_if_index_name, vnm, hi->sw_if_index,
Damjan Marion44036902017-04-28 12:29:15 +02001483 dq->queue_id,
1484 format_vnet_hw_interface_rx_mode, dq->mode);
1485 }
1486 }));
1487 if (vec_len (s) > 0)
1488 {
1489 vlib_cli_output(vm, "Thread %u (%v):\n%v", index,
1490 vlib_worker_threads[index].name, s);
1491 vec_reset_length (s);
1492 }
1493 index++;
1494 }));
1495 /* *INDENT-ON* */
1496
1497 vec_free (s);
1498 return 0;
1499}
1500
Billy McFalle9bac692017-08-11 14:05:11 -04001501/*?
1502 * This command is used to display the interface and queue worker
1503 * thread placement.
1504 *
1505 * @cliexpar
1506 * Example of how to display the interface placement:
1507 * @cliexstart{show interface rx-placement}
1508 * Thread 1 (vpp_wk_0):
1509 * node dpdk-input:
1510 * GigabitEthernet7/0/0 queue 0 (polling)
1511 * node vhost-user-input:
1512 * VirtualEthernet0/0/12 queue 0 (polling)
1513 * VirtualEthernet0/0/12 queue 2 (polling)
1514 * VirtualEthernet0/0/13 queue 0 (polling)
1515 * VirtualEthernet0/0/13 queue 2 (polling)
1516 * Thread 2 (vpp_wk_1):
1517 * node dpdk-input:
1518 * GigabitEthernet7/0/1 queue 0 (polling)
1519 * node vhost-user-input:
1520 * VirtualEthernet0/0/12 queue 1 (polling)
1521 * VirtualEthernet0/0/12 queue 3 (polling)
1522 * VirtualEthernet0/0/13 queue 1 (polling)
1523 * VirtualEthernet0/0/13 queue 3 (polling)
1524 * @cliexend
1525?*/
Damjan Marion44036902017-04-28 12:29:15 +02001526/* *INDENT-OFF* */
1527VLIB_CLI_COMMAND (show_interface_rx_placement, static) = {
1528 .path = "show interface rx-placement",
1529 .short_help = "show interface rx-placement",
1530 .function = show_interface_rx_placement_fn,
1531};
1532/* *INDENT-ON* */
1533
1534static clib_error_t *
1535set_interface_rx_placement (vlib_main_t * vm, unformat_input_t * input,
1536 vlib_cli_command_t * cmd)
1537{
1538 clib_error_t *error = 0;
1539 unformat_input_t _line_input, *line_input = &_line_input;
1540 vnet_main_t *vnm = vnet_get_main ();
1541 vnet_device_main_t *vdm = &vnet_device_main;
1542 vnet_hw_interface_rx_mode mode;
1543 u32 hw_if_index = (u32) ~ 0;
1544 u32 queue_id = (u32) 0;
1545 u32 thread_index = (u32) ~ 0;
1546 int rv;
1547
1548 if (!unformat_user (input, unformat_line_input, line_input))
1549 return 0;
1550
1551 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1552 {
1553 if (unformat
1554 (line_input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
1555 ;
1556 else if (unformat (line_input, "queue %d", &queue_id))
1557 ;
1558 else if (unformat (line_input, "main", &thread_index))
1559 thread_index = 0;
1560 else if (unformat (line_input, "worker %d", &thread_index))
1561 thread_index += vdm->first_worker_thread_index;
1562 else
1563 {
1564 error = clib_error_return (0, "parse error: '%U'",
1565 format_unformat_error, line_input);
1566 unformat_free (line_input);
1567 return error;
1568 }
1569 }
1570
1571 unformat_free (line_input);
1572
1573 if (hw_if_index == (u32) ~ 0)
1574 return clib_error_return (0, "please specify valid interface name");
1575
1576 if (thread_index > vdm->last_worker_thread_index)
1577 return clib_error_return (0,
1578 "please specify valid worker thread or main");
1579
1580 rv = vnet_hw_interface_get_rx_mode (vnm, hw_if_index, queue_id, &mode);
1581
1582 if (rv)
1583 return clib_error_return (0, "not found");
1584
1585 rv = vnet_hw_interface_unassign_rx_thread (vnm, hw_if_index, queue_id);
1586
1587 if (rv)
1588 return clib_error_return (0, "not found");
1589
1590 vnet_hw_interface_assign_rx_thread (vnm, hw_if_index, queue_id,
1591 thread_index);
1592 vnet_hw_interface_set_rx_mode (vnm, hw_if_index, queue_id, mode);
1593
1594 return 0;
1595}
1596
1597/*?
1598 * This command is used to assign a given interface, and optionally a
1599 * given queue, to a different thread. If the '<em>queue</em>' is not provided,
Billy McFalle9bac692017-08-11 14:05:11 -04001600 * it defaults to 0. The '<em>worker</em>' parameter is zero based and the index
1601 * in the thread name, for example, 0 in the thread name '<em>vpp_wk_0</em>'.
Damjan Marion44036902017-04-28 12:29:15 +02001602 *
1603 * @cliexpar
1604 * Example of how to display the interface placement:
Billy McFalle9bac692017-08-11 14:05:11 -04001605 * @cliexstart{show interface rx-placement}
Damjan Marion44036902017-04-28 12:29:15 +02001606 * Thread 1 (vpp_wk_0):
Billy McFalle9bac692017-08-11 14:05:11 -04001607 * node dpdk-input:
1608 * GigabitEthernet7/0/0 queue 0 (polling)
1609 * node vhost-user-input:
1610 * VirtualEthernet0/0/12 queue 0 (polling)
1611 * VirtualEthernet0/0/12 queue 2 (polling)
1612 * VirtualEthernet0/0/13 queue 0 (polling)
1613 * VirtualEthernet0/0/13 queue 2 (polling)
Damjan Marion44036902017-04-28 12:29:15 +02001614 * Thread 2 (vpp_wk_1):
Billy McFalle9bac692017-08-11 14:05:11 -04001615 * node dpdk-input:
1616 * GigabitEthernet7/0/1 queue 0 (polling)
1617 * node vhost-user-input:
1618 * VirtualEthernet0/0/12 queue 1 (polling)
1619 * VirtualEthernet0/0/12 queue 3 (polling)
1620 * VirtualEthernet0/0/13 queue 1 (polling)
1621 * VirtualEthernet0/0/13 queue 3 (polling)
Damjan Marion44036902017-04-28 12:29:15 +02001622 * @cliexend
Billy McFalle9bac692017-08-11 14:05:11 -04001623 * Example of how to assign a interface and queue to a worker thread:
1624 * @cliexcmd{set interface rx-placement VirtualEthernet0/0/12 queue 1 worker 0}
1625 * Example of how to display the interface placement:
1626 * @cliexstart{show interface rx-placement}
1627 * Thread 1 (vpp_wk_0):
1628 * node dpdk-input:
1629 * GigabitEthernet7/0/0 queue 0 (polling)
1630 * node vhost-user-input:
1631 * VirtualEthernet0/0/12 queue 0 (polling)
1632 * VirtualEthernet0/0/12 queue 1 (polling)
1633 * VirtualEthernet0/0/12 queue 2 (polling)
1634 * VirtualEthernet0/0/13 queue 0 (polling)
1635 * VirtualEthernet0/0/13 queue 2 (polling)
1636 * Thread 2 (vpp_wk_1):
1637 * node dpdk-input:
1638 * GigabitEthernet7/0/1 queue 0 (polling)
1639 * node vhost-user-input:
1640 * VirtualEthernet0/0/12 queue 3 (polling)
1641 * VirtualEthernet0/0/13 queue 1 (polling)
1642 * VirtualEthernet0/0/13 queue 3 (polling)
1643 * @cliexend
Damjan Marion44036902017-04-28 12:29:15 +02001644?*/
1645/* *INDENT-OFF* */
1646VLIB_CLI_COMMAND (cmd_set_if_rx_placement,static) = {
1647 .path = "set interface rx-placement",
Billy McFalle9bac692017-08-11 14:05:11 -04001648 .short_help = "set interface rx-placement <interface> [queue <n>] "
Damjan Marion6f9ac652017-06-15 19:01:31 +02001649 "[worker <n> | main]",
Damjan Marion44036902017-04-28 12:29:15 +02001650 .function = set_interface_rx_placement,
Damjan Marion6f9ac652017-06-15 19:01:31 +02001651 .is_mp_safe = 1,
Damjan Marion44036902017-04-28 12:29:15 +02001652};
Damjan Marion44036902017-04-28 12:29:15 +02001653/* *INDENT-ON* */
Dave Barachba868bb2016-08-08 09:51:21 -04001654/*
1655 * fd.io coding-style-patch-verification: ON
1656 *
1657 * Local Variables:
1658 * eval: (c-set-style "gnu")
1659 * End:
1660 */