blob: 7dbee867dedeaf220aef4818a046a67a2f97ba52 [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
42 * Interface CLI.
43 */
44
Ed Warnickecb9cada2015-12-08 15:45:58 -070045#include <vnet/vnet.h>
46#include <vnet/ip/ip.h>
John Lobcebbb92016-04-05 15:47:43 -040047#include <vppinfra/bitmap.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010048#include <vnet/fib/ip4_fib.h>
49#include <vnet/fib/ip6_fib.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070050
Dave Barachba868bb2016-08-08 09:51:21 -040051static int
52compare_interface_names (void *a1, void *a2)
Ed Warnickecb9cada2015-12-08 15:45:58 -070053{
Dave Barachba868bb2016-08-08 09:51:21 -040054 u32 *hi1 = a1;
55 u32 *hi2 = a2;
Ed Warnickecb9cada2015-12-08 15:45:58 -070056
Dave Barachba868bb2016-08-08 09:51:21 -040057 return vnet_hw_interface_compare (vnet_get_main (), *hi1, *hi2);
Ed Warnickecb9cada2015-12-08 15:45:58 -070058}
59
60static clib_error_t *
61show_or_clear_hw_interfaces (vlib_main_t * vm,
62 unformat_input_t * input,
63 vlib_cli_command_t * cmd)
64{
Dave Barachba868bb2016-08-08 09:51:21 -040065 clib_error_t *error = 0;
66 vnet_main_t *vnm = vnet_get_main ();
67 vnet_interface_main_t *im = &vnm->interface_main;
68 vnet_hw_interface_t *hi;
69 u32 hw_if_index, *hw_if_indices = 0;
John Lobcebbb92016-04-05 15:47:43 -040070 int i, verbose = -1, is_show, show_bond = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070071
72 is_show = strstr (cmd->path, "show") != 0;
73 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
74 {
75 /* See if user wants to show a specific interface. */
Dave Barachba868bb2016-08-08 09:51:21 -040076 if (unformat
77 (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
78 vec_add1 (hw_if_indices, hw_if_index);
John Lobcebbb92016-04-05 15:47:43 -040079
Sean Hope679ea792016-02-22 15:12:01 -050080 /* See if user wants to show an interface with a specific hw_if_index. */
81 else if (unformat (input, "%u", &hw_if_index))
Dave Barachba868bb2016-08-08 09:51:21 -040082 vec_add1 (hw_if_indices, hw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -070083
84 else if (unformat (input, "verbose"))
Dave Barachba868bb2016-08-08 09:51:21 -040085 verbose = 1; /* this is also the default */
Ed Warnickecb9cada2015-12-08 15:45:58 -070086
87 else if (unformat (input, "detail"))
88 verbose = 2;
89
90 else if (unformat (input, "brief"))
91 verbose = 0;
92
John Lobcebbb92016-04-05 15:47:43 -040093 else if (unformat (input, "bond"))
Dave Barachba868bb2016-08-08 09:51:21 -040094 {
95 show_bond = 1;
96 if (verbose < 0)
97 verbose = 0; /* default to brief for link bonding */
98 }
John Lobcebbb92016-04-05 15:47:43 -040099
Ed Warnickecb9cada2015-12-08 15:45:58 -0700100 else
101 {
102 error = clib_error_return (0, "unknown input `%U'",
103 format_unformat_error, input);
104 goto done;
105 }
106 }
Dave Barachba868bb2016-08-08 09:51:21 -0400107
Ed Warnickecb9cada2015-12-08 15:45:58 -0700108 /* Gather interfaces. */
109 if (vec_len (hw_if_indices) == 0)
110 pool_foreach (hi, im->hw_interfaces,
111 vec_add1 (hw_if_indices, hi - im->hw_interfaces));
112
Dave Barachba868bb2016-08-08 09:51:21 -0400113 if (verbose < 0)
114 verbose = 1; /* default to verbose (except bond) */
John Lobcebbb92016-04-05 15:47:43 -0400115
Ed Warnickecb9cada2015-12-08 15:45:58 -0700116 if (is_show)
117 {
118 /* Sort by name. */
119 vec_sort_with_function (hw_if_indices, compare_interface_names);
120
121 vlib_cli_output (vm, "%U\n", format_vnet_hw_interface, vnm, 0, verbose);
122 for (i = 0; i < vec_len (hw_if_indices); i++)
123 {
124 hi = vnet_get_hw_interface (vnm, hw_if_indices[i]);
Dave Barachba868bb2016-08-08 09:51:21 -0400125 if (show_bond == 0) /* show all interfaces */
126 vlib_cli_output (vm, "%U\n", format_vnet_hw_interface, vnm,
127 hi, verbose);
128 else if ((hi->bond_info) &&
John Lobcebbb92016-04-05 15:47:43 -0400129 (hi->bond_info != VNET_HW_INTERFACE_BOND_INFO_SLAVE))
Dave Barachba868bb2016-08-08 09:51:21 -0400130 { /* show only bonded interface and all its slave interfaces */
John Lobcebbb92016-04-05 15:47:43 -0400131 int hw_idx;
Dave Barachba868bb2016-08-08 09:51:21 -0400132 vnet_hw_interface_t *shi;
133 vlib_cli_output (vm, "%U\n", format_vnet_hw_interface, vnm,
John Lobcebbb92016-04-05 15:47:43 -0400134 hi, verbose);
Dave Barachba868bb2016-08-08 09:51:21 -0400135
136 /* *INDENT-OFF* */
John Lobcebbb92016-04-05 15:47:43 -0400137 clib_bitmap_foreach (hw_idx, hi->bond_info,
Dave Barachba868bb2016-08-08 09:51:21 -0400138 ({
139 shi = vnet_get_hw_interface(vnm, hw_idx);
140 vlib_cli_output (vm, "%U\n",
141 format_vnet_hw_interface, vnm, shi, verbose);
142 }));
143 /* *INDENT-ON* */
John Lobcebbb92016-04-05 15:47:43 -0400144 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700145 }
146 }
147 else
148 {
149 for (i = 0; i < vec_len (hw_if_indices); i++)
150 {
Dave Barachba868bb2016-08-08 09:51:21 -0400151 vnet_device_class_t *dc;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152
153 hi = vnet_get_hw_interface (vnm, hw_if_indices[i]);
154 dc = vec_elt_at_index (im->device_classes, hi->dev_class_index);
Dave Barachba868bb2016-08-08 09:51:21 -0400155
Ed Warnickecb9cada2015-12-08 15:45:58 -0700156 if (dc->clear_counters)
157 dc->clear_counters (hi->dev_instance);
158 }
159 }
160
Dave Barachba868bb2016-08-08 09:51:21 -0400161done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700162 vec_free (hw_if_indices);
163 return error;
164}
165
Dave Barachba868bb2016-08-08 09:51:21 -0400166/* *INDENT-OFF* */
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700167/*?
168 * Displays various information about the state of the current terminal
169 * session.
170 *
171 * @cliexpar
172 * @cliexstart{show hardware}
173 * Name Link Hardware
174 * GigabitEthernet2/0/0 up GigabitEthernet2/0/0
175 * Ethernet address 00:50:56:b7:7c:83
176 * Intel 82545em_copper
177 * link up, media 1000T full-duplex, master,
178 * 0 unprocessed, 384 total buffers on rx queue 0 ring
179 * 237 buffers in driver rx cache
180 * rx total packets 1816
181 * rx total bytes 181084
182 * rx good packets 1816
183 * rx good bytes 181084
184 * rx 65 127 byte packets 1586
185 * rx 256 511 byte packets 230
186 * tx total packets 346
187 * tx total bytes 90224
188 * tx good packets 346
189 * tx good bytes 88840
190 * tx 64 byte packets 1
191 * tx 65 127 byte packets 115
192 * tx 256 511 byte packets 230
193 * @cliexend
194 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195VLIB_CLI_COMMAND (show_hw_interfaces_command, static) = {
196 .path = "show hardware-interfaces",
John Lobcebbb92016-04-05 15:47:43 -0400197 .short_help = "show hardware-interfaces [brief|verbose|detail] [bond] [<if-name1> <if-name2> ...]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700198 .function = show_or_clear_hw_interfaces,
199};
Dave Barachba868bb2016-08-08 09:51:21 -0400200/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700201
Dave Barachba868bb2016-08-08 09:51:21 -0400202/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700203VLIB_CLI_COMMAND (clear_hw_interface_counters_command, static) = {
204 .path = "clear hardware-interfaces",
205 .short_help = "Clear hardware interfaces statistics",
206 .function = show_or_clear_hw_interfaces,
207};
Dave Barachba868bb2016-08-08 09:51:21 -0400208/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700209
Dave Barachba868bb2016-08-08 09:51:21 -0400210static int
211sw_interface_name_compare (void *a1, void *a2)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212{
213 vnet_sw_interface_t *si1 = a1;
214 vnet_sw_interface_t *si2 = a2;
215
Dave Barachba868bb2016-08-08 09:51:21 -0400216 return vnet_sw_interface_compare (vnet_get_main (),
217 si1->sw_if_index, si2->sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700218}
219
220static clib_error_t *
221show_sw_interfaces (vlib_main_t * vm,
Dave Barachba868bb2016-08-08 09:51:21 -0400222 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700223{
Dave Barachba868bb2016-08-08 09:51:21 -0400224 clib_error_t *error = 0;
225 vnet_main_t *vnm = vnet_get_main ();
226 vnet_interface_main_t *im = &vnm->interface_main;
227 vnet_sw_interface_t *si, *sorted_sis = 0;
Damjan Marion22311502016-10-28 20:30:15 +0200228 u32 sw_if_index = ~(u32) 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700229 u8 show_addresses = 0;
Damjan Marion22311502016-10-28 20:30:15 +0200230 u8 show_features = 0;
Dave Barach7be864a2016-11-28 11:41:35 -0500231 u8 show_tag = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700232
233 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
234 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700235 /* See if user wants to show specific interface */
Dave Barachba868bb2016-08-08 09:51:21 -0400236 if (unformat
237 (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700238 {
Dave Barachba868bb2016-08-08 09:51:21 -0400239 si = pool_elt_at_index (im->sw_interfaces, sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700240 vec_add1 (sorted_sis, si[0]);
241 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700242 else if (unformat (input, "address") || unformat (input, "addr"))
Dave Barachba868bb2016-08-08 09:51:21 -0400243 show_addresses = 1;
Damjan Marion22311502016-10-28 20:30:15 +0200244 else if (unformat (input, "features") || unformat (input, "feat"))
245 show_features = 1;
Dave Barach7be864a2016-11-28 11:41:35 -0500246 else if (unformat (input, "tag"))
247 show_tag = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700248 else
Dave Barachba868bb2016-08-08 09:51:21 -0400249 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250 error = clib_error_return (0, "unknown input `%U'",
251 format_unformat_error, input);
252 goto done;
Dave Barachba868bb2016-08-08 09:51:21 -0400253 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700254 }
255
Dave Barach7be864a2016-11-28 11:41:35 -0500256 if (show_features || show_tag)
Damjan Marion22311502016-10-28 20:30:15 +0200257 {
258 if (sw_if_index == ~(u32) 0)
259 return clib_error_return (0, "Interface not specified...");
Dave Barach7be864a2016-11-28 11:41:35 -0500260 }
Damjan Marion22311502016-10-28 20:30:15 +0200261
Dave Barach7be864a2016-11-28 11:41:35 -0500262 if (show_features)
263 {
Damjan Marion22311502016-10-28 20:30:15 +0200264 vnet_interface_features_show (vm, sw_if_index);
265 return 0;
266 }
Dave Barach7be864a2016-11-28 11:41:35 -0500267 if (show_tag)
268 {
269 u8 *tag;
270 tag = vnet_get_sw_interface_tag (vnm, sw_if_index);
271 vlib_cli_output (vm, "%U: %s",
272 format_vnet_sw_if_index_name, vnm, sw_if_index,
273 tag ? (char *) tag : "(none)");
274 return 0;
275 }
Damjan Marion22311502016-10-28 20:30:15 +0200276
Ed Warnickecb9cada2015-12-08 15:45:58 -0700277 if (!show_addresses)
Dave Barachba868bb2016-08-08 09:51:21 -0400278 vlib_cli_output (vm, "%U\n", format_vnet_sw_interface, vnm, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700279
Dave Barachba868bb2016-08-08 09:51:21 -0400280 if (vec_len (sorted_sis) == 0) /* Get all interfaces */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700281 {
282 /* Gather interfaces. */
Dave Barachba868bb2016-08-08 09:51:21 -0400283 sorted_sis =
284 vec_new (vnet_sw_interface_t, pool_elts (im->sw_interfaces));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700285 _vec_len (sorted_sis) = 0;
Dave Barachba868bb2016-08-08 09:51:21 -0400286 pool_foreach (si, im->sw_interfaces, (
287 {
288 vec_add1 (sorted_sis, si[0]);
289 }
290 ));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700291
292 /* Sort by name. */
293 vec_sort_with_function (sorted_sis, sw_interface_name_compare);
294 }
295
296 if (show_addresses)
297 {
298 vec_foreach (si, sorted_sis)
Dave Barachba868bb2016-08-08 09:51:21 -0400299 {
300 l2input_main_t *l2m = &l2input_main;
301 ip4_main_t *im4 = &ip4_main;
302 ip6_main_t *im6 = &ip6_main;
303 ip_lookup_main_t *lm4 = &im4->lookup_main;
304 ip_lookup_main_t *lm6 = &im6->lookup_main;
305 ip_interface_address_t *ia = 0;
306 ip4_address_t *r4;
307 ip6_address_t *r6;
308 u32 fib_index4 = 0, fib_index6 = 0;
309 ip4_fib_t *fib4;
310 ip6_fib_t *fib6;
311 l2_input_config_t *config;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700312
Dave Barachba868bb2016-08-08 09:51:21 -0400313 if (vec_len (im4->fib_index_by_sw_if_index) > si->sw_if_index)
314 fib_index4 = vec_elt (im4->fib_index_by_sw_if_index,
315 si->sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700316
Dave Barachba868bb2016-08-08 09:51:21 -0400317 if (vec_len (im6->fib_index_by_sw_if_index) > si->sw_if_index)
318 fib_index6 = vec_elt (im6->fib_index_by_sw_if_index,
319 si->sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700320
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100321 fib4 = ip4_fib_get (fib_index4);
322 fib6 = ip6_fib_get (fib_index6);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700323
Dave Barachba868bb2016-08-08 09:51:21 -0400324 if (si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED)
325 vlib_cli_output
326 (vm, "%U (%s): \n unnumbered, use %U",
327 format_vnet_sw_if_index_name,
328 vnm, si->sw_if_index,
329 (si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? "up" : "dn",
330 format_vnet_sw_if_index_name, vnm, si->unnumbered_sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700331
Dave Barachba868bb2016-08-08 09:51:21 -0400332 else
333 {
334 vlib_cli_output (vm, "%U (%s):",
335 format_vnet_sw_if_index_name,
336 vnm, si->sw_if_index,
337 (si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
338 ? "up" : "dn");
339 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700340
Dave Barachba868bb2016-08-08 09:51:21 -0400341 /* Display any L2 addressing info */
342 vec_validate (l2m->configs, si->sw_if_index);
343 config = vec_elt_at_index (l2m->configs, si->sw_if_index);
344 if (config->bridge)
345 {
346 u32 bd_id = l2input_main.bd_configs[config->bd_index].bd_id;
347 vlib_cli_output (vm, " l2 bridge bd_id %d%s%d", bd_id,
348 config->bvi ? " bvi shg " : " shg ",
349 config->shg);
350 }
351 else if (config->xconnect)
352 {
353 vlib_cli_output (vm, " l2 xconnect %U",
354 format_vnet_sw_if_index_name,
355 vnm, config->output_sw_if_index);
356 }
357
358 /* Display any IP4 addressing info */
359 /* *INDENT-OFF* */
360 foreach_ip_interface_address (lm4, ia, si->sw_if_index,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700361 1 /* honor unnumbered */,
362 ({
363 r4 = ip_interface_address_get_address (lm4, ia);
364 if (fib4->table_id)
365 {
Dave Barachba868bb2016-08-08 09:51:21 -0400366 vlib_cli_output (vm, " %U/%d table %d",
367 format_ip4_address, r4,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700368 ia->address_length,
369 fib4->table_id);
370 }
371 else
372 {
Dave Barachba868bb2016-08-08 09:51:21 -0400373 vlib_cli_output (vm, " %U/%d",
374 format_ip4_address, r4,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700375 ia->address_length);
376 }
377 }));
Dave Barachba868bb2016-08-08 09:51:21 -0400378 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700379
Dave Barachba868bb2016-08-08 09:51:21 -0400380 /* Display any IP6 addressing info */
381 /* *INDENT-OFF* */
382 foreach_ip_interface_address (lm6, ia, si->sw_if_index,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700383 1 /* honor unnumbered */,
384 ({
385 r6 = ip_interface_address_get_address (lm6, ia);
386 if (fib6->table_id)
387 {
Dave Barachba868bb2016-08-08 09:51:21 -0400388 vlib_cli_output (vm, " %U/%d table %d",
389 format_ip6_address, r6,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700390 ia->address_length,
391 fib6->table_id);
392 }
393 else
394 {
Dave Barachba868bb2016-08-08 09:51:21 -0400395 vlib_cli_output (vm, " %U/%d",
396 format_ip6_address, r6,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700397 ia->address_length);
398 }
399 }));
Dave Barachba868bb2016-08-08 09:51:21 -0400400 /* *INDENT-ON* */
401 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700402 }
403 else
404 {
405 vec_foreach (si, sorted_sis)
Dave Barachba868bb2016-08-08 09:51:21 -0400406 {
407 vlib_cli_output (vm, "%U\n", format_vnet_sw_interface, vnm, si);
408 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700409 }
410
Dave Barachba868bb2016-08-08 09:51:21 -0400411done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700412 vec_free (sorted_sis);
413 return error;
414}
415
Dave Barachba868bb2016-08-08 09:51:21 -0400416/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700417VLIB_CLI_COMMAND (show_sw_interfaces_command, static) = {
418 .path = "show interfaces",
Damjan Marion22311502016-10-28 20:30:15 +0200419 .short_help = "show interfaces [address|addr|features|feat] [<if-name1> <if-name2> ...]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700420 .function = show_sw_interfaces,
421};
Dave Barachba868bb2016-08-08 09:51:21 -0400422/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700423
424/* Root of all interface commands. */
Dave Barachba868bb2016-08-08 09:51:21 -0400425/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700426VLIB_CLI_COMMAND (vnet_cli_interface_command, static) = {
427 .path = "interface",
428 .short_help = "Interface commands",
429};
Dave Barachba868bb2016-08-08 09:51:21 -0400430/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700431
Dave Barachba868bb2016-08-08 09:51:21 -0400432/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700433VLIB_CLI_COMMAND (vnet_cli_set_interface_command, static) = {
434 .path = "set interface",
435 .short_help = "Interface commands",
436};
Dave Barachba868bb2016-08-08 09:51:21 -0400437/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700438
439static clib_error_t *
440clear_interface_counters (vlib_main_t * vm,
Dave Barachba868bb2016-08-08 09:51:21 -0400441 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700442{
Dave Barachba868bb2016-08-08 09:51:21 -0400443 vnet_main_t *vnm = vnet_get_main ();
444 vnet_interface_main_t *im = &vnm->interface_main;
445 vlib_simple_counter_main_t *sm;
446 vlib_combined_counter_main_t *cm;
447 static vnet_main_t **my_vnet_mains;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700448 int i, j, n_counters;
449
450 vec_reset_length (my_vnet_mains);
Dave Barachba868bb2016-08-08 09:51:21 -0400451
Ed Warnickecb9cada2015-12-08 15:45:58 -0700452 for (i = 0; i < vec_len (vnet_mains); i++)
453 {
454 if (vnet_mains[i])
Dave Barachba868bb2016-08-08 09:51:21 -0400455 vec_add1 (my_vnet_mains, vnet_mains[i]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700456 }
457
458 if (vec_len (vnet_mains) == 0)
459 vec_add1 (my_vnet_mains, vnm);
460
461 n_counters = vec_len (im->combined_sw_if_counters);
462
463 for (j = 0; j < n_counters; j++)
464 {
Dave Barachba868bb2016-08-08 09:51:21 -0400465 for (i = 0; i < vec_len (my_vnet_mains); i++)
466 {
467 im = &my_vnet_mains[i]->interface_main;
468 cm = im->combined_sw_if_counters + j;
469 vlib_clear_combined_counters (cm);
470 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700471 }
472
473 n_counters = vec_len (im->sw_if_counters);
474
475 for (j = 0; j < n_counters; j++)
476 {
Dave Barachba868bb2016-08-08 09:51:21 -0400477 for (i = 0; i < vec_len (my_vnet_mains); i++)
478 {
479 im = &my_vnet_mains[i]->interface_main;
480 sm = im->sw_if_counters + j;
481 vlib_clear_simple_counters (sm);
482 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700483 }
484
485 return 0;
486}
487
Dave Barachba868bb2016-08-08 09:51:21 -0400488/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700489VLIB_CLI_COMMAND (clear_interface_counters_command, static) = {
490 .path = "clear interfaces",
491 .short_help = "Clear interfaces statistics",
492 .function = clear_interface_counters,
493};
Dave Barachba868bb2016-08-08 09:51:21 -0400494/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700495
Chris Luke16bcf7d2016-09-01 14:31:46 -0400496/**
497 * Parse subinterface names.
498 *
Dave Barachba868bb2016-08-08 09:51:21 -0400499 * The following subinterface syntax is supported. The first two are for
500 * backwards compatability:
501 *
502 * <intf-name> <id>
503 * - a subinterface with the name <intf-name>.<id>. The subinterface
504 * is a single dot1q vlan with vlan id <id> and exact-match semantics.
505 *
506 * <intf-name> <min_id>-<max_id>
507 * - a set of the above subinterfaces, repeating for each id
508 * in the range <min_id> to <max_id>
509 *
510 * In the following, exact-match semantics (i.e. the number of vlan tags on the
511 * packet must match the number of tags in the configuration) are used only if
512 * the keyword exact-match is present. Non-exact match is the default.
513 *
514 * <intf-name> <id> dot1q <outer_id> [exact-match]
515 * - a subinterface with the name <intf-name>.<id>. The subinterface
516 * is a single dot1q vlan with vlan id <outer_id>.
517 *
518 * <intf-name> <id> dot1q any [exact-match]
519 * - a subinterface with the name <intf-name>.<id>. The subinterface
520 * is a single dot1q vlan with any vlan id.
521 *
522 * <intf-name> <id> dot1q <outer_id> inner-dot1q <inner_id> [exact-match]
523 * - a subinterface with the name <intf-name>.<id>. The subinterface
524 * is a double dot1q vlan with outer vlan id <outer_id> and inner vlan id
525 * <inner_id>.
526 *
527 * <intf-name> <id> dot1q <outer_id> inner-dot1q any [exact-match]
528 * - a subinterface with the name <intf-name>.<id>. The subinterface
529 * is a double dot1q vlan with outer vlan id <id> and any inner vlan id.
530 *
531 * <intf-name> <id> dot1q any inner-dot1q any [exact-match]
532 *
533 * - a subinterface with the name <intf-name>.<id>. The subinterface
534 * is a double dot1q vlan with any outer vlan id and any inner vlan id.
535 *
536 * For each of the above CLI, there is a duplicate that uses the keyword
537 * "dot1ad" in place of the first "dot1q". These interfaces use ethertype
538 * 0x88ad in place of 0x8100 for the outer ethertype. Note that for double-
539 * tagged packets the inner ethertype is always 0x8100. Also note that
540 * the dot1q and dot1ad naming spaces are independent, so it is legal to
541 * have both "Gig3/0/0.1 dot1q 100" and "Gig3/0/0.2 dot1ad 100". For example:
542 *
543 * <intf-name> <id> dot1ad <outer_id> inner-dot1q <inner_id> [exact-match]
544 * - a subinterface with the name <intf-name>.<id>. The subinterface
545 * is a double dot1ad vlan with outer vlan id <outer_id> and inner vlan
546 * id <inner_id>.
547 *
548 * <intf-name> <id> untagged
549 * - a subinterface with the name <intf-name>.<id>. The subinterface
550 * has no vlan tags. Only one can be specified per interface.
551 *
552 * <intf-name> <id> default
553 * - a subinterface with the name <intf-name>.<id>. This is associated
554 * with a packet that did not match any other configured subinterface
555 * on this interface. Only one can be specified per interface.
556 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700557
558static clib_error_t *
Dave Barachba868bb2016-08-08 09:51:21 -0400559parse_vlan_sub_interfaces (unformat_input_t * input,
560 vnet_sw_interface_t * template)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700561{
Dave Barachba868bb2016-08-08 09:51:21 -0400562 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700563 u32 inner_vlan, outer_vlan;
564
Dave Barachba868bb2016-08-08 09:51:21 -0400565 if (unformat (input, "any inner-dot1q any"))
566 {
567 template->sub.eth.flags.two_tags = 1;
568 template->sub.eth.flags.outer_vlan_id_any = 1;
569 template->sub.eth.flags.inner_vlan_id_any = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700570 }
Dave Barachba868bb2016-08-08 09:51:21 -0400571 else if (unformat (input, "any"))
572 {
573 template->sub.eth.flags.one_tag = 1;
574 template->sub.eth.flags.outer_vlan_id_any = 1;
575 }
576 else if (unformat (input, "%d inner-dot1q any", &outer_vlan))
577 {
578 template->sub.eth.flags.two_tags = 1;
579 template->sub.eth.flags.inner_vlan_id_any = 1;
580 template->sub.eth.outer_vlan_id = outer_vlan;
581 }
582 else if (unformat (input, "%d inner-dot1q %d", &outer_vlan, &inner_vlan))
583 {
584 template->sub.eth.flags.two_tags = 1;
585 template->sub.eth.outer_vlan_id = outer_vlan;
586 template->sub.eth.inner_vlan_id = inner_vlan;
587 }
588 else if (unformat (input, "%d", &outer_vlan))
589 {
590 template->sub.eth.flags.one_tag = 1;
591 template->sub.eth.outer_vlan_id = outer_vlan;
592 }
593 else
594 {
595 error = clib_error_return (0, "expected dot1q config, got `%U'",
596 format_unformat_error, input);
597 goto done;
598 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700599
Dave Barachba868bb2016-08-08 09:51:21 -0400600 if (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
601 {
602 if (unformat (input, "exact-match"))
603 {
604 template->sub.eth.flags.exact_match = 1;
605 }
606 }
607
608done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700609 return error;
610}
611
612static clib_error_t *
613create_sub_interfaces (vlib_main_t * vm,
Dave Barachba868bb2016-08-08 09:51:21 -0400614 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700615{
Dave Barachba868bb2016-08-08 09:51:21 -0400616 vnet_main_t *vnm = vnet_get_main ();
617 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700618 u32 hw_if_index, sw_if_index;
Dave Barachba868bb2016-08-08 09:51:21 -0400619 vnet_hw_interface_t *hi;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700620 u32 id, id_min, id_max;
621 vnet_sw_interface_t template;
622
623 hw_if_index = ~0;
Dave Barachba868bb2016-08-08 09:51:21 -0400624 if (!unformat_user (input, unformat_vnet_hw_interface, vnm, &hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700625 {
626 error = clib_error_return (0, "unknown interface `%U'",
627 format_unformat_error, input);
628 goto done;
629 }
630
631 memset (&template, 0, sizeof (template));
632 template.sub.eth.raw_flags = 0;
633
Dave Barachba868bb2016-08-08 09:51:21 -0400634 if (unformat (input, "%d default", &id_min))
635 {
636 id_max = id_min;
637 template.sub.eth.flags.default_sub = 1;
638 }
639 else if (unformat (input, "%d untagged", &id_min))
640 {
641 id_max = id_min;
642 template.sub.eth.flags.no_tags = 1;
643 template.sub.eth.flags.exact_match = 1;
644 }
645 else if (unformat (input, "%d dot1q", &id_min))
646 {
647 /* parse dot1q config */
648 id_max = id_min;
649 error = parse_vlan_sub_interfaces (input, &template);
650 if (error)
651 goto done;
652 }
653 else if (unformat (input, "%d dot1ad", &id_min))
654 {
655 /* parse dot1ad config */
656 id_max = id_min;
657 template.sub.eth.flags.dot1ad = 1;
658 error = parse_vlan_sub_interfaces (input, &template);
659 if (error)
660 goto done;
661 }
662 else if (unformat (input, "%d-%d", &id_min, &id_max))
663 {
664 template.sub.eth.flags.one_tag = 1;
Dave Barachba868bb2016-08-08 09:51:21 -0400665 template.sub.eth.flags.exact_match = 1;
666 if (id_min > id_max)
667 goto id_error;
668 }
669 else if (unformat (input, "%d", &id_min))
670 {
671 id_max = id_min;
672 template.sub.eth.flags.one_tag = 1;
673 template.sub.eth.outer_vlan_id = id_min;
674 template.sub.eth.flags.exact_match = 1;
675 }
676 else
677 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700678 id_error:
679 error = clib_error_return (0, "expected ID or ID MIN-MAX, got `%U'",
680 format_unformat_error, input);
681 goto done;
Dave Barachba868bb2016-08-08 09:51:21 -0400682 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700683
684 hi = vnet_get_hw_interface (vnm, hw_if_index);
John Lobcebbb92016-04-05 15:47:43 -0400685
Dave Barachba868bb2016-08-08 09:51:21 -0400686 if (hi->bond_info == VNET_HW_INTERFACE_BOND_INFO_SLAVE)
687 {
688 error =
689 clib_error_return (0,
690 "not allowed as %v belong to a BondEthernet interface",
691 hi->name);
692 goto done;
693 }
John Lobcebbb92016-04-05 15:47:43 -0400694
Ed Warnickecb9cada2015-12-08 15:45:58 -0700695 for (id = id_min; id <= id_max; id++)
696 {
Dave Barachba868bb2016-08-08 09:51:21 -0400697 uword *p;
698 vnet_interface_main_t *im = &vnm->interface_main;
699 u64 sup_and_sub_key = ((u64) (hi->sw_if_index) << 32) | (u64) id;
700 u64 *kp;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700701
702 p = hash_get_mem (im->sw_if_index_by_sup_and_sub, &sup_and_sub_key);
703 if (p)
Dave Barachba868bb2016-08-08 09:51:21 -0400704 {
705 if (CLIB_DEBUG > 0)
706 clib_warning ("sup sw_if_index %d, sub id %d already exists\n",
707 hi->sw_if_index, id);
708 continue;
709 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700710
711 kp = clib_mem_alloc (sizeof (*kp));
712 *kp = sup_and_sub_key;
713
714 template.type = VNET_SW_INTERFACE_TYPE_SUB;
Eyal Baric5b13602016-11-24 19:42:43 +0200715 template.flood_class = VNET_FLOOD_CLASS_NORMAL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700716 template.sup_sw_if_index = hi->sw_if_index;
717 template.sub.id = id;
Eyal Baria4509cf2016-09-26 09:24:09 +0300718 if (id_min < id_max)
719 template.sub.eth.outer_vlan_id = id;
720
Ed Warnickecb9cada2015-12-08 15:45:58 -0700721 error = vnet_create_sw_interface (vnm, &template, &sw_if_index);
Dave Barachba868bb2016-08-08 09:51:21 -0400722 if (error)
723 goto done;
Dave Barach16ad6ae2016-07-28 17:55:30 -0400724
Ed Warnickecb9cada2015-12-08 15:45:58 -0700725 hash_set (hi->sub_interface_sw_if_index_by_id, id, sw_if_index);
726 hash_set_mem (im->sw_if_index_by_sup_and_sub, kp, sw_if_index);
Dave Barachba868bb2016-08-08 09:51:21 -0400727 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name,
728 vnet_get_main (), sw_if_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700729 }
730
Dave Barachba868bb2016-08-08 09:51:21 -0400731done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700732 return error;
733}
734
Dave Barachba868bb2016-08-08 09:51:21 -0400735/* *INDENT-OFF* */
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700736/*?
737 * Create vlan subinterfaces
738 *
739 * @cliexpar
740 * @cliexstart{create sub-interfaces}
741 *
742 * To create a vlan subinterface 11 to process packets on 802.1q VLAN id 11, use:
743 *
744 * vpp# create sub GigabitEthernet2/0/0 11
745 *
746 * This shorthand is equivalent to:
747 * vpp# create sub GigabitEthernet2/0/0 11 dot1q 11 exact-match
748 *
749 * You can specify a subinterface number that is different from the vlan id:
750 * vpp# create sub GigabitEthernet2/0/0 11 dot1q 100
751 *
752 * You can create qinq and q-in-any interfaces:
753 * vpp# create sub GigabitEthernet2/0/0 11 dot1q 100 inner-dot1q 200
754 * vpp# create sub GigabitEthernet2/0/0 12 dot1q 100 inner-dot1q any
755 *
756 * You can also create dot1ad interfaces:
757 * vpp# create sub GigabitEthernet2/0/0 11 dot1ad 11
758 * vpp# create sub GigabitEthernet2/0/0 12 dot1q 100 inner-dot1q 200
759 *
760 * Subinterfaces can be configured as either exact-match or non-exact match.
761 * Non-exact match is the CLI default. If exact-match is specified,
762 * packets must have the same number of vlan tags as the configuration.
763 * For non-exact-match, packets must at least that number of tags.
764 * L3 (routed) interfaces must be configured as exact-match.
765 * L2 interfaces are typically configured as non-exact-match.
766 *
767 * For example, a packet with outer vlan 100 and inner 200 would match this interface:
768 * vpp# create sub GigabitEthernet2/0/0 5 dot1q 100
769 *
770 * but would not match this interface:
771 * vpp# create sub GigabitEthernet2/0/0 5 dot1q 100 exact-match
772 *
773 * There are two special subinterfaces that can be configured. Subinterface untagged has no vlan tags:
774 * vpp# create sub GigabitEthernet2/0/0 5 untagged
775 *
776 * The subinterface default matches any packet that does not match any other subinterface:
777 * vpp# create sub GigabitEthernet2/0/0 7 default
778 * @cliexend
779 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700780VLIB_CLI_COMMAND (create_sub_interfaces_command, static) = {
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700781 .path = "create sub-interfaces",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700782 .short_help = "create sub-interfaces <nn>[-<nn>] [dot1q|dot1ad|default|untagged]",
783 .function = create_sub_interfaces,
784};
Dave Barachba868bb2016-08-08 09:51:21 -0400785/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700786
787static clib_error_t *
788set_state (vlib_main_t * vm,
Dave Barachba868bb2016-08-08 09:51:21 -0400789 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700790{
Dave Barachba868bb2016-08-08 09:51:21 -0400791 vnet_main_t *vnm = vnet_get_main ();
792 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700793 u32 sw_if_index, flags;
794
795 sw_if_index = ~0;
Dave Barachba868bb2016-08-08 09:51:21 -0400796 if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700797 {
798 error = clib_error_return (0, "unknown interface `%U'",
799 format_unformat_error, input);
800 goto done;
801 }
802
Dave Barachba868bb2016-08-08 09:51:21 -0400803 if (!unformat (input, "%U", unformat_vnet_sw_interface_flags, &flags))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700804 {
805 error = clib_error_return (0, "unknown flags `%U'",
806 format_unformat_error, input);
807 goto done;
808 }
809
810 error = vnet_sw_interface_set_flags (vnm, sw_if_index, flags);
811 if (error)
812 goto done;
813
Dave Barachba868bb2016-08-08 09:51:21 -0400814done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700815 return error;
816}
817
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700818
Dave Barachba868bb2016-08-08 09:51:21 -0400819/* *INDENT-OFF* */
Keith Burns (alagalah)6ef7bb92016-09-10 14:55:04 -0700820/*?
821 * Interface admin up/down
822 *
823 * @cliexpar
824 * @cliexstart{set interface state}
825 * vpp# set interface state GigabitEthernet2/0/0 up
826 * vpp# set interface state GigabitEthernet2/0/0 down
827 * @cliexend
828 ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -0700829VLIB_CLI_COMMAND (set_state_command, static) = {
830 .path = "set interface state",
831 .short_help = "Set interface state",
832 .function = set_state,
833};
Dave Barachba868bb2016-08-08 09:51:21 -0400834/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700835
836static clib_error_t *
837set_unnumbered (vlib_main_t * vm,
Dave Barachba868bb2016-08-08 09:51:21 -0400838 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700839{
Dave Barachba868bb2016-08-08 09:51:21 -0400840 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700841 u32 unnumbered_sw_if_index;
842 u32 inherit_from_sw_if_index;
Dave Barachba868bb2016-08-08 09:51:21 -0400843 vnet_sw_interface_t *si;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700844 int is_set = 0;
845 int is_del = 0;
846
Igor Mikhailov (imichail)ab3e42b2016-09-25 15:11:53 -0700847 if (unformat (input, "%U use %U",
848 unformat_vnet_sw_interface, vnm, &unnumbered_sw_if_index,
849 unformat_vnet_sw_interface, vnm, &inherit_from_sw_if_index))
850 is_set = 1;
851 else if (unformat (input, "del %U",
852 unformat_vnet_sw_interface, vnm,
853 &unnumbered_sw_if_index))
854 is_del = 1;
855 else
856 return clib_error_return (0, "parse error '%U'",
857 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700858
859 si = vnet_get_sw_interface (vnm, unnumbered_sw_if_index);
Dave Barachba868bb2016-08-08 09:51:21 -0400860 if (is_del)
861 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700862 si->flags &= ~(VNET_SW_INTERFACE_FLAG_UNNUMBERED);
Dave Barachba868bb2016-08-08 09:51:21 -0400863 si->unnumbered_sw_if_index = (u32) ~ 0;
Igor Mikhailov (imichail)15977ef2016-10-04 20:09:41 -0700864 ip4_sw_interface_enable_disable (unnumbered_sw_if_index, 0);
865 ip6_sw_interface_enable_disable (unnumbered_sw_if_index, 0);
Dave Barachba868bb2016-08-08 09:51:21 -0400866 }
Igor Mikhailov (imichail)ab3e42b2016-09-25 15:11:53 -0700867 else if (is_set)
Dave Barachba868bb2016-08-08 09:51:21 -0400868 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700869 si->flags |= VNET_SW_INTERFACE_FLAG_UNNUMBERED;
870 si->unnumbered_sw_if_index = inherit_from_sw_if_index;
Igor Mikhailov (imichail)15977ef2016-10-04 20:09:41 -0700871 ip4_sw_interface_enable_disable (unnumbered_sw_if_index, 1);
872 ip6_sw_interface_enable_disable (unnumbered_sw_if_index, 1);
Dave Barachba868bb2016-08-08 09:51:21 -0400873 }
874
Ed Warnickecb9cada2015-12-08 15:45:58 -0700875 return 0;
876}
877
Dave Barachba868bb2016-08-08 09:51:21 -0400878/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700879VLIB_CLI_COMMAND (set_unnumbered_command, static) = {
880 .path = "set interface unnumbered",
Igor Mikhailov (imichail)ab3e42b2016-09-25 15:11:53 -0700881 .short_help = "set interface unnumbered [<intfc> use <intfc> | del <intfc>]",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700882 .function = set_unnumbered,
883};
Dave Barachba868bb2016-08-08 09:51:21 -0400884/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700885
886
887
888static clib_error_t *
889set_hw_class (vlib_main_t * vm,
Dave Barachba868bb2016-08-08 09:51:21 -0400890 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700891{
Dave Barachba868bb2016-08-08 09:51:21 -0400892 vnet_main_t *vnm = vnet_get_main ();
893 vnet_interface_main_t *im = &vnm->interface_main;
894 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700895 u32 hw_if_index, hw_class_index;
896
897 hw_if_index = ~0;
Dave Barachba868bb2016-08-08 09:51:21 -0400898 if (!unformat_user (input, unformat_vnet_hw_interface, vnm, &hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700899 {
900 error = clib_error_return (0, "unknown hardware interface `%U'",
901 format_unformat_error, input);
902 goto done;
903 }
904
Dave Barachba868bb2016-08-08 09:51:21 -0400905 if (!unformat_user (input, unformat_hash_string,
906 im->hw_interface_class_by_name, &hw_class_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700907 {
908 error = clib_error_return (0, "unknown hardware class `%U'",
909 format_unformat_error, input);
910 goto done;
911 }
912
913 error = vnet_hw_interface_set_class (vnm, hw_if_index, hw_class_index);
914 if (error)
915 goto done;
916
Dave Barachba868bb2016-08-08 09:51:21 -0400917done:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700918 return error;
919}
920
Dave Barachba868bb2016-08-08 09:51:21 -0400921/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700922VLIB_CLI_COMMAND (set_hw_class_command, static) = {
923 .path = "set interface hw-class",
924 .short_help = "Set interface hardware class",
925 .function = set_hw_class,
926};
Dave Barachba868bb2016-08-08 09:51:21 -0400927/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700928
Dave Barachba868bb2016-08-08 09:51:21 -0400929static clib_error_t *
930vnet_interface_cli_init (vlib_main_t * vm)
931{
932 return 0;
933}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700934
935VLIB_INIT_FUNCTION (vnet_interface_cli_init);
936
Dave Barachba868bb2016-08-08 09:51:21 -0400937static clib_error_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -0700938renumber_interface_command_fn (vlib_main_t * vm,
Dave Barachba868bb2016-08-08 09:51:21 -0400939 unformat_input_t * input,
940 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700941{
942 u32 hw_if_index;
943 u32 new_dev_instance;
Dave Barachba868bb2016-08-08 09:51:21 -0400944 vnet_main_t *vnm = vnet_get_main ();
Ed Warnickecb9cada2015-12-08 15:45:58 -0700945 int rv;
946
Dave Barachba868bb2016-08-08 09:51:21 -0400947 if (!unformat_user (input, unformat_vnet_hw_interface, vnm, &hw_if_index))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700948 return clib_error_return (0, "unknown hardware interface `%U'",
Dave Barachba868bb2016-08-08 09:51:21 -0400949 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700950
Dave Barachba868bb2016-08-08 09:51:21 -0400951 if (!unformat (input, "%d", &new_dev_instance))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700952 return clib_error_return (0, "new dev instance missing");
953
954 rv = vnet_interface_name_renumber (hw_if_index, new_dev_instance);
955
956 switch (rv)
957 {
958 case 0:
959 break;
960
961 default:
962 return clib_error_return (0, "vnet_interface_name_renumber returned %d",
Dave Barachba868bb2016-08-08 09:51:21 -0400963 rv);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700964
965 }
966
967 return 0;
968}
969
970
Dave Barachba868bb2016-08-08 09:51:21 -0400971/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700972VLIB_CLI_COMMAND (renumber_interface_command, static) = {
973 .path = "renumber interface",
974 .short_help = "renumber interface <if-name> <new-dev-instance>",
975 .function = renumber_interface_command_fn,
976};
Dave Barachba868bb2016-08-08 09:51:21 -0400977/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700978
Damjan Marion8358ff92016-04-15 14:26:00 +0200979static clib_error_t *
980promiscuous_cmd (vlib_main_t * vm,
Dave Barachba868bb2016-08-08 09:51:21 -0400981 unformat_input_t * input, vlib_cli_command_t * cmd)
Damjan Marion8358ff92016-04-15 14:26:00 +0200982{
Dave Barachba868bb2016-08-08 09:51:21 -0400983 vnet_main_t *vnm = vnet_get_main ();
Damjan Marion8358ff92016-04-15 14:26:00 +0200984 u32 hw_if_index;
985 u32 flags = ETHERNET_INTERFACE_FLAG_ACCEPT_ALL;
Dave Barachba868bb2016-08-08 09:51:21 -0400986 ethernet_main_t *em = &ethernet_main;
987 ethernet_interface_t *eif;
Damjan Marion8358ff92016-04-15 14:26:00 +0200988
989 if (unformat (input, "on %U",
Dave Barachba868bb2016-08-08 09:51:21 -0400990 unformat_vnet_hw_interface, vnm, &hw_if_index))
Damjan Marion8358ff92016-04-15 14:26:00 +0200991 ;
992 else if (unformat (input, "off %U",
Dave Barachba868bb2016-08-08 09:51:21 -0400993 unformat_ethernet_interface, vnm, &hw_if_index))
Damjan Marion8358ff92016-04-15 14:26:00 +0200994 flags = 0;
995 else
996 return clib_error_return (0, "unknown input `%U'",
Dave Barachba868bb2016-08-08 09:51:21 -0400997 format_unformat_error, input);
Damjan Marion8358ff92016-04-15 14:26:00 +0200998
999 eif = ethernet_get_interface (em, hw_if_index);
1000 if (!eif)
1001 return clib_error_return (0, "not supported");
1002
1003 ethernet_set_flags (vnm, hw_if_index, flags);
1004 return 0;
1005}
1006
Dave Barachba868bb2016-08-08 09:51:21 -04001007/* *INDENT-OFF* */
Damjan Marion8358ff92016-04-15 14:26:00 +02001008VLIB_CLI_COMMAND (set_interface_promiscuous_cmd, static) = {
1009 .path = "set interface promiscuous",
1010 .short_help = "set interface promiscuous [on | off] <intfc>",
1011 .function = promiscuous_cmd,
1012};
Dave Barachba868bb2016-08-08 09:51:21 -04001013/* *INDENT-ON* */
Damjan Marion8358ff92016-04-15 14:26:00 +02001014
1015static clib_error_t *
1016mtu_cmd (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd)
1017{
Dave Barachba868bb2016-08-08 09:51:21 -04001018 vnet_main_t *vnm = vnet_get_main ();
Damjan Marion8358ff92016-04-15 14:26:00 +02001019 u32 hw_if_index, mtu;
1020 u32 flags = ETHERNET_INTERFACE_FLAG_MTU;
Dave Barachba868bb2016-08-08 09:51:21 -04001021 ethernet_main_t *em = &ethernet_main;
Damjan Marion8358ff92016-04-15 14:26:00 +02001022
1023 if (unformat (input, "%d %U", &mtu,
Dave Barachba868bb2016-08-08 09:51:21 -04001024 unformat_vnet_hw_interface, vnm, &hw_if_index))
Damjan Marion8358ff92016-04-15 14:26:00 +02001025 {
Dave Barachba868bb2016-08-08 09:51:21 -04001026 vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1027 ethernet_interface_t *eif = ethernet_get_interface (em, hw_if_index);
Damjan Marion8358ff92016-04-15 14:26:00 +02001028
1029 if (!eif)
Dave Barachba868bb2016-08-08 09:51:21 -04001030 return clib_error_return (0, "not supported");
Damjan Marion8358ff92016-04-15 14:26:00 +02001031
Mohsin Kazmif2ba9aa2016-04-24 18:53:42 +02001032 if (mtu < hi->min_supported_packet_bytes)
Damjan Marion8358ff92016-04-15 14:26:00 +02001033 return clib_error_return (0, "Invalid mtu (%d): "
1034 "must be >= min pkt bytes (%d)", mtu,
Mohsin Kazmif2ba9aa2016-04-24 18:53:42 +02001035 hi->min_supported_packet_bytes);
Damjan Marion8358ff92016-04-15 14:26:00 +02001036
Mohsin Kazmif2ba9aa2016-04-24 18:53:42 +02001037 if (mtu > hi->max_supported_packet_bytes)
1038 return clib_error_return (0, "Invalid mtu (%d): must be <= (%d)", mtu,
Dave Barachba868bb2016-08-08 09:51:21 -04001039 hi->max_supported_packet_bytes);
Damjan Marion8358ff92016-04-15 14:26:00 +02001040
1041 if (hi->max_packet_bytes != mtu)
1042 {
1043 hi->max_packet_bytes = mtu;
1044 ethernet_set_flags (vnm, hw_if_index, flags);
1045 }
1046 }
1047 else
1048 return clib_error_return (0, "unknown input `%U'",
Dave Barachba868bb2016-08-08 09:51:21 -04001049 format_unformat_error, input);
Damjan Marion8358ff92016-04-15 14:26:00 +02001050 return 0;
1051}
1052
Dave Barachba868bb2016-08-08 09:51:21 -04001053/* *INDENT-OFF* */
Damjan Marion8358ff92016-04-15 14:26:00 +02001054VLIB_CLI_COMMAND (set_interface_mtu_cmd, static) = {
1055 .path = "set interface mtu",
Mohsin Kazmif2ba9aa2016-04-24 18:53:42 +02001056 .short_help = "set interface mtu <value> <intfc>",
Damjan Marion8358ff92016-04-15 14:26:00 +02001057 .function = mtu_cmd,
1058};
Dave Barachba868bb2016-08-08 09:51:21 -04001059/* *INDENT-ON* */
Damjan Marion8358ff92016-04-15 14:26:00 +02001060
Pavel Kotucekc631f2d2016-09-26 10:40:02 +02001061static clib_error_t *
1062set_interface_mac_address (vlib_main_t * vm, unformat_input_t * input,
1063 vlib_cli_command_t * cmd)
1064{
1065 vnet_main_t *vnm = vnet_get_main ();
1066 clib_error_t *error = 0;
1067 u32 sw_if_index = ~0;
1068 u64 mac = 0;
1069
1070 if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
1071 {
1072 error = clib_error_return (0, "unknown interface `%U'",
1073 format_unformat_error, input);
1074 goto done;
1075 }
1076 if (!unformat_user (input, unformat_ethernet_address, &mac))
1077 {
1078 error = clib_error_return (0, "expected mac address `%U'",
1079 format_unformat_error, input);
1080 goto done;
1081 }
1082 error = vnet_hw_interface_change_mac_address (vnm, sw_if_index, mac);
1083done:
1084 return error;
1085}
1086
1087/*?
1088 * The '<em>set interface mac address </em>' command allows to set MAC address of given interface.
1089 * In case of NIC interfaces the one has to support MAC address change. A side effect of MAC address
1090 * change are changes of MAC addresses in FIB tables (ipv4 and ipv6).
1091 *
1092 * @cliexpar
1093 * @parblock
1094 * Example of how to change MAC Address of interface:
1095 * @cliexcmd{set interface mac address GigabitEthernet0/8/0 aa:bb:cc:dd:ee:01}
1096 * @cliexcmd{set interface mac address host-vpp0 aa:bb:cc:dd:ee:02}
1097 * @cliexcmd{set interface mac address tap-0 aa:bb:cc:dd:ee:03}
1098 * @cliexcmd{set interface mac address pg0 aa:bb:cc:dd:ee:04}
1099 * @endparblock
1100?*/
1101/* *INDENT-OFF* */
1102VLIB_CLI_COMMAND (set_interface_mac_address_cmd, static) = {
1103 .path = "set interface mac address",
1104 .short_help = "set interface mac address <intfc> <mac-address>",
1105 .function = set_interface_mac_address,
1106};
1107/* *INDENT-ON* */
1108
Dave Barach7be864a2016-11-28 11:41:35 -05001109static clib_error_t *
1110set_tag (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd)
1111{
1112 vnet_main_t *vnm = vnet_get_main ();
1113 u32 sw_if_index = ~0;
1114 u8 *tag = 0;
1115
1116 if (!unformat (input, "%U %s", unformat_vnet_sw_interface,
1117 vnm, &sw_if_index, &tag))
1118 return clib_error_return (0, "unknown input `%U'",
1119 format_unformat_error, input);
1120
1121 vnet_set_sw_interface_tag (vnm, tag, sw_if_index);
1122
1123 return 0;
1124}
1125
1126/* *INDENT-OFF* */
1127VLIB_CLI_COMMAND (set_tag_command, static) = {
1128 .path = "set interface tag",
1129 .short_help = "set interface tag <intfc> <tag>",
1130 .function = set_tag,
1131};
1132/* *INDENT-ON* */
1133
1134static clib_error_t *
1135clear_tag (vlib_main_t * vm, unformat_input_t * input,
1136 vlib_cli_command_t * cmd)
1137{
1138 vnet_main_t *vnm = vnet_get_main ();
1139 u32 sw_if_index = ~0;
1140
1141 if (!unformat (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index))
1142 return clib_error_return (0, "unknown input `%U'",
1143 format_unformat_error, input);
1144
1145 vnet_clear_sw_interface_tag (vnm, sw_if_index);
1146
1147 return 0;
1148}
1149
1150/* *INDENT-OFF* */
1151VLIB_CLI_COMMAND (clear_tag_command, static) = {
1152 .path = "clear interface tag",
1153 .short_help = "clear interface tag <intfc>",
1154 .function = clear_tag,
1155};
1156/* *INDENT-ON* */
1157
1158
Dave Barachba868bb2016-08-08 09:51:21 -04001159/*
1160 * fd.io coding-style-patch-verification: ON
1161 *
1162 * Local Variables:
1163 * eval: (c-set-style "gnu")
1164 * End:
1165 */