IP directed broadcast
[vpp.git] / src / vnet / interface_cli.c
1 /*
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
40 /**
41  * @file
42  * @brief Interface CLI.
43  *
44  * Source code for several CLI interface commands.
45  *
46  */
47
48 #include <vnet/vnet.h>
49 #include <vnet/ip/ip.h>
50 #include <vppinfra/bitmap.h>
51 #include <vnet/fib/ip4_fib.h>
52 #include <vnet/fib/ip6_fib.h>
53 #include <vnet/l2/l2_output.h>
54 #include <vnet/l2/l2_input.h>
55
56 static int
57 compare_interface_names (void *a1, void *a2)
58 {
59   u32 *hi1 = a1;
60   u32 *hi2 = a2;
61
62   return vnet_hw_interface_compare (vnet_get_main (), *hi1, *hi2);
63 }
64
65 static clib_error_t *
66 show_or_clear_hw_interfaces (vlib_main_t * vm,
67                              unformat_input_t * input,
68                              vlib_cli_command_t * cmd)
69 {
70   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;
75   int i, verbose = -1, is_show, show_bond = 0;
76
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. */
81       if (unformat
82           (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
83         vec_add1 (hw_if_indices, hw_if_index);
84
85       /* See if user wants to show an interface with a specific hw_if_index. */
86       else if (unformat (input, "%u", &hw_if_index))
87         vec_add1 (hw_if_indices, hw_if_index);
88
89       else if (unformat (input, "verbose"))
90         verbose = 1;            /* this is also the default */
91
92       else if (unformat (input, "detail"))
93         verbose = 2;
94
95       else if (unformat (input, "brief"))
96         verbose = 0;
97
98       else if (unformat (input, "bond"))
99         {
100           show_bond = 1;
101           if (verbose < 0)
102             verbose = 0;        /* default to brief for link bonding */
103         }
104
105       else
106         {
107           error = clib_error_return (0, "unknown input `%U'",
108                                      format_unformat_error, input);
109           goto done;
110         }
111     }
112
113   /* 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
118   if (verbose < 0)
119     verbose = 1;                /* default to verbose (except bond) */
120
121   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]);
130           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) &&
134                    (hi->bond_info != VNET_HW_INTERFACE_BOND_INFO_SLAVE))
135             {                   /* show only bonded interface and all its slave interfaces */
136               int hw_idx;
137               vnet_hw_interface_t *shi;
138               vlib_cli_output (vm, "%U\n", format_vnet_hw_interface, vnm,
139                                hi, verbose);
140
141               /* *INDENT-OFF* */
142               clib_bitmap_foreach (hw_idx, hi->bond_info,
143               ({
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* */
149             }
150         }
151     }
152   else
153     {
154       for (i = 0; i < vec_len (hw_if_indices); i++)
155         {
156           vnet_device_class_t *dc;
157
158           hi = vnet_get_hw_interface (vnm, hw_if_indices[i]);
159           dc = vec_elt_at_index (im->device_classes, hi->dev_class_index);
160
161           if (dc->clear_counters)
162             dc->clear_counters (hi->dev_instance);
163         }
164     }
165
166 done:
167   vec_free (hw_if_indices);
168   return error;
169 }
170
171 /*?
172  * 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.
181  *
182  * @cliexpar
183  * 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
225  * @cliexend
226  ?*/
227 /* *INDENT-OFF* */
228 VLIB_CLI_COMMAND (show_hw_interfaces_command, static) = {
229   .path = "show hardware-interfaces",
230   .short_help = "show hardware-interfaces [brief|verbose|detail] [bond] "
231     "[<interface> [<interface> [..]]] [<sw_idx> [<sw_idx> [..]]]",
232   .function = show_or_clear_hw_interfaces,
233 };
234 /* *INDENT-ON* */
235
236
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  ?*/
248 /* *INDENT-OFF* */
249 VLIB_CLI_COMMAND (clear_hw_interface_counters_command, static) = {
250   .path = "clear hardware-interfaces",
251   .short_help = "clear hardware-interfaces "
252     "[<interface> [<interface> [..]]] [<sw_idx> [<sw_idx> [..]]]",
253   .function = show_or_clear_hw_interfaces,
254 };
255 /* *INDENT-ON* */
256
257 static int
258 sw_interface_name_compare (void *a1, void *a2)
259 {
260   vnet_sw_interface_t *si1 = a1;
261   vnet_sw_interface_t *si2 = a2;
262
263   return vnet_sw_interface_compare (vnet_get_main (),
264                                     si1->sw_if_index, si2->sw_if_index);
265 }
266
267 static clib_error_t *
268 show_sw_interfaces (vlib_main_t * vm,
269                     unformat_input_t * input, vlib_cli_command_t * cmd)
270 {
271   clib_error_t *error = 0;
272   vnet_main_t *vnm = vnet_get_main ();
273   unformat_input_t _linput, *linput = &_linput;
274   vnet_interface_main_t *im = &vnm->interface_main;
275   vnet_sw_interface_t *si, *sorted_sis = 0;
276   u32 sw_if_index = ~(u32) 0;
277   u8 show_addresses = 0;
278   u8 show_features = 0;
279   u8 show_tag = 0;
280   int verbose = 0;
281
282   /*
283    * Get a line of input. Won't work if the user typed
284    * "show interface" and nothing more.
285    */
286   if (unformat_user (input, unformat_line_input, linput))
287     {
288       while (unformat_check_input (linput) != UNFORMAT_END_OF_INPUT)
289         {
290           /* See if user wants to show specific interface */
291           if (unformat
292               (linput, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index))
293             {
294               si = pool_elt_at_index (im->sw_interfaces, sw_if_index);
295               vec_add1 (sorted_sis, si[0]);
296             }
297           else if (unformat (linput, "address") || unformat (linput, "addr"))
298             show_addresses = 1;
299           else if (unformat (linput, "features") || unformat (linput, "feat"))
300             show_features = 1;
301           else if (unformat (linput, "tag"))
302             show_tag = 1;
303           else if (unformat (linput, "verbose"))
304             verbose = 1;
305           else
306             {
307               error = clib_error_return (0, "unknown input `%U'",
308                                          format_unformat_error, linput);
309               goto done;
310             }
311         }
312       unformat_free (linput);
313     }
314   if (show_features || show_tag)
315     {
316       if (sw_if_index == ~(u32) 0)
317         return clib_error_return (0, "Interface not specified...");
318     }
319
320   if (show_features)
321     {
322       vnet_interface_features_show (vm, sw_if_index, verbose);
323
324       l2_input_config_t *l2_input = l2input_intf_config (sw_if_index);
325       u32 fb = l2_input->feature_bitmap;
326       /* intf input features are masked by bridge domain */
327       if (l2_input->bridge)
328         fb &= l2input_bd_config (l2_input->bd_index)->feature_bitmap;
329       vlib_cli_output (vm, "\nl2-input:\n%U", format_l2_input_features, fb);
330
331       l2_output_config_t *l2_output = l2output_intf_config (sw_if_index);
332       vlib_cli_output (vm, "\nl2-output:");
333       if (l2_output->out_vtr_flag)
334         vlib_cli_output (vm, "%10s (%s)", "VTR", "--internal--");
335       vlib_cli_output (vm, "%U", format_l2_output_features,
336                        l2_output->feature_bitmap);
337       return 0;
338     }
339   if (show_tag)
340     {
341       u8 *tag;
342       tag = vnet_get_sw_interface_tag (vnm, sw_if_index);
343       vlib_cli_output (vm, "%U: %s",
344                        format_vnet_sw_if_index_name, vnm, sw_if_index,
345                        tag ? (char *) tag : "(none)");
346       return 0;
347     }
348
349   if (!show_addresses)
350     vlib_cli_output (vm, "%U\n", format_vnet_sw_interface, vnm, 0);
351
352   if (vec_len (sorted_sis) == 0)        /* Get all interfaces */
353     {
354       /* Gather interfaces. */
355       sorted_sis =
356         vec_new (vnet_sw_interface_t, pool_elts (im->sw_interfaces));
357       _vec_len (sorted_sis) = 0;
358       /* *INDENT-OFF* */
359       pool_foreach (si, im->sw_interfaces,
360       ({
361         int visible = vnet_swif_is_api_visible (si);
362         if (visible)
363           vec_add1 (sorted_sis, si[0]);}
364         ));
365       /* *INDENT-ON* */
366       /* Sort by name. */
367       vec_sort_with_function (sorted_sis, sw_interface_name_compare);
368     }
369
370   if (show_addresses)
371     {
372       vec_foreach (si, sorted_sis)
373       {
374         ip4_main_t *im4 = &ip4_main;
375         ip6_main_t *im6 = &ip6_main;
376         ip_lookup_main_t *lm4 = &im4->lookup_main;
377         ip_lookup_main_t *lm6 = &im6->lookup_main;
378         ip_interface_address_t *ia = 0;
379         u32 fib_index4 = 0, fib_index6 = 0;
380
381         if (vec_len (im4->fib_index_by_sw_if_index) > si->sw_if_index)
382           fib_index4 = vec_elt (im4->fib_index_by_sw_if_index,
383                                 si->sw_if_index);
384
385         if (vec_len (im6->fib_index_by_sw_if_index) > si->sw_if_index)
386           fib_index6 = vec_elt (im6->fib_index_by_sw_if_index,
387                                 si->sw_if_index);
388
389         ip4_fib_t *fib4 = ip4_fib_get (fib_index4);
390         ip6_fib_t *fib6 = ip6_fib_get (fib_index6);
391
392         if (si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED)
393           vlib_cli_output
394             (vm, "%U (%s): \n  unnumbered, use %U",
395              format_vnet_sw_if_index_name, vnm, si->sw_if_index,
396              (si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? "up" : "dn",
397              format_vnet_sw_if_index_name, vnm, si->unnumbered_sw_if_index);
398         else
399           vlib_cli_output
400             (vm, "%U (%s):",
401              format_vnet_sw_if_index_name, vnm, si->sw_if_index,
402              (si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? "up" : "dn");
403
404         /* Display any L2 info */
405         l2_input_config_t *l2_input = l2input_intf_config (si->sw_if_index);
406         if (l2_input->bridge)
407           {
408             bd_main_t *bdm = &bd_main;
409             u32 bd_id = l2input_main.bd_configs[l2_input->bd_index].bd_id;
410             vlib_cli_output (vm, "  L2 bridge bd-id %d idx %d shg %d %s",
411                              bd_id, bd_find_index (bdm, bd_id), l2_input->shg,
412                              l2_input->bvi ? "bvi" : " ");
413           }
414         else if (l2_input->xconnect)
415           vlib_cli_output (vm, "  L2 xconnect %U",
416                            format_vnet_sw_if_index_name, vnm,
417                            l2_input->output_sw_if_index);
418
419         /* *INDENT-OFF* */
420         /* Display any IP4 addressing info */
421         foreach_ip_interface_address (lm4, ia, si->sw_if_index,
422                                       1 /* honor unnumbered */,
423         ({
424           ip4_address_t *r4 = ip_interface_address_get_address (lm4, ia);
425           if (fib4->table_id)
426             vlib_cli_output (vm, "  L3 %U/%d ip4 table-id %d fib-idx %d",
427                              format_ip4_address, r4, ia->address_length,
428                              fib4->table_id,
429                              ip4_fib_index_from_table_id (fib4->table_id));
430           else
431             vlib_cli_output (vm, "  L3 %U/%d",
432                              format_ip4_address, r4, ia->address_length);
433         }));
434         /* *INDENT-ON* */
435
436         /* *INDENT-OFF* */
437         /* Display any IP6 addressing info */
438         foreach_ip_interface_address (lm6, ia, si->sw_if_index,
439                                       1 /* honor unnumbered */,
440         ({
441           ip6_address_t *r6 = ip_interface_address_get_address (lm6, ia);
442           if (fib6->table_id)
443             vlib_cli_output (vm, "  L3 %U/%d ip6 table-id %d fib-idx %d",
444                              format_ip6_address, r6, ia->address_length,
445                              fib6->table_id,
446                              ip6_fib_index_from_table_id (fib6->table_id));
447           else
448             vlib_cli_output (vm, "  L3 %U/%d",
449                              format_ip6_address, r6, ia->address_length);
450         }));
451         /* *INDENT-ON* */
452       }
453     }
454   else
455     {
456       vec_foreach (si, sorted_sis)
457       {
458         vlib_cli_output (vm, "%U\n", format_vnet_sw_interface, vnm, si);
459       }
460     }
461
462 done:
463   vec_free (sorted_sis);
464   return error;
465 }
466
467 /* *INDENT-OFF* */
468 VLIB_CLI_COMMAND (show_sw_interfaces_command, static) = {
469   .path = "show interface",
470   .short_help = "show interface [address|addr|features|feat] [<interface> [<interface> [..]]] [verbose]",
471   .function = show_sw_interfaces,
472 };
473 /* *INDENT-ON* */
474
475 /* Root of all interface commands. */
476 /* *INDENT-OFF* */
477 VLIB_CLI_COMMAND (vnet_cli_interface_command, static) = {
478   .path = "interface",
479   .short_help = "Interface commands",
480 };
481 /* *INDENT-ON* */
482
483 /* *INDENT-OFF* */
484 VLIB_CLI_COMMAND (vnet_cli_set_interface_command, static) = {
485   .path = "set interface",
486   .short_help = "Interface commands",
487 };
488 /* *INDENT-ON* */
489
490 static clib_error_t *
491 clear_interface_counters (vlib_main_t * vm,
492                           unformat_input_t * input, vlib_cli_command_t * cmd)
493 {
494   vnet_main_t *vnm = vnet_get_main ();
495   vnet_interface_main_t *im = &vnm->interface_main;
496   vlib_simple_counter_main_t *sm;
497   vlib_combined_counter_main_t *cm;
498   static vnet_main_t **my_vnet_mains;
499   int i, j, n_counters;
500
501   vec_reset_length (my_vnet_mains);
502
503   for (i = 0; i < vec_len (vnet_mains); i++)
504     {
505       if (vnet_mains[i])
506         vec_add1 (my_vnet_mains, vnet_mains[i]);
507     }
508
509   if (vec_len (vnet_mains) == 0)
510     vec_add1 (my_vnet_mains, vnm);
511
512   n_counters = vec_len (im->combined_sw_if_counters);
513
514   for (j = 0; j < n_counters; j++)
515     {
516       for (i = 0; i < vec_len (my_vnet_mains); i++)
517         {
518           im = &my_vnet_mains[i]->interface_main;
519           cm = im->combined_sw_if_counters + j;
520           vlib_clear_combined_counters (cm);
521         }
522     }
523
524   n_counters = vec_len (im->sw_if_counters);
525
526   for (j = 0; j < n_counters; j++)
527     {
528       for (i = 0; i < vec_len (my_vnet_mains); i++)
529         {
530           im = &my_vnet_mains[i]->interface_main;
531           sm = im->sw_if_counters + j;
532           vlib_clear_simple_counters (sm);
533         }
534     }
535
536   return 0;
537 }
538
539 /*?
540  * Clear the statistics for all interfaces (statistics associated with the
541  * '<em>show interface</em>' command).
542  *
543  * @cliexpar
544  * Example of how to clear the statistics for all interfaces:
545  * @cliexcmd{clear interfaces}
546  ?*/
547 /* *INDENT-OFF* */
548 VLIB_CLI_COMMAND (clear_interface_counters_command, static) = {
549   .path = "clear interfaces",
550   .short_help = "clear interfaces",
551   .function = clear_interface_counters,
552 };
553 /* *INDENT-ON* */
554
555 /**
556  * Parse subinterface names.
557  *
558  * The following subinterface syntax is supported. The first two are for
559  * backwards compatability:
560  *
561  * <intf-name> <id>
562  *     - a subinterface with the name <intf-name>.<id>. The subinterface
563  *       is a single dot1q vlan with vlan id <id> and exact-match semantics.
564  *
565  * <intf-name> <min_id>-<max_id>
566  *     - a set of the above subinterfaces, repeating for each id
567  *       in the range <min_id> to <max_id>
568  *
569  * In the following, exact-match semantics (i.e. the number of vlan tags on the
570  * packet must match the number of tags in the configuration) are used only if
571  * the keyword exact-match is present. Non-exact match is the default.
572  *
573  * <intf-name> <id> dot1q <outer_id> [exact-match]
574  *     - a subinterface with the name <intf-name>.<id>. The subinterface
575  *       is a single dot1q vlan with vlan id <outer_id>.
576  *
577  * <intf-name> <id> dot1q any [exact-match]
578  *     - a subinterface with the name <intf-name>.<id>. The subinterface
579  *       is a single dot1q vlan with any vlan id.
580  *
581  * <intf-name> <id> dot1q <outer_id> inner-dot1q <inner_id> [exact-match]
582  *     - a subinterface with the name <intf-name>.<id>. The subinterface
583  *       is a double dot1q vlan with outer vlan id <outer_id> and inner vlan id
584  *       <inner_id>.
585  *
586  * <intf-name> <id> dot1q <outer_id> inner-dot1q any [exact-match]
587  *     - a subinterface with the name <intf-name>.<id>. The subinterface
588  *       is a double dot1q vlan with outer vlan id <id> and any inner vlan id.
589  *
590  * <intf-name> <id> dot1q any inner-dot1q any [exact-match]
591  *
592  *     - a subinterface with the name <intf-name>.<id>. The subinterface
593  *       is a double dot1q vlan with any outer vlan id and any inner vlan id.
594  *
595  * For each of the above CLI, there is a duplicate that uses the keyword
596  * "dot1ad" in place of the first "dot1q". These interfaces use ethertype
597  * 0x88ad in place of 0x8100 for the outer ethertype. Note that for double-
598  * tagged packets the inner ethertype is always 0x8100. Also note that
599  * the dot1q and dot1ad naming spaces are independent, so it is legal to
600  * have both "Gig3/0/0.1 dot1q 100" and "Gig3/0/0.2 dot1ad 100". For example:
601  *
602  * <intf-name> <id> dot1ad <outer_id> inner-dot1q <inner_id> [exact-match]
603  *     - a subinterface with the name <intf-name>.<id>. The subinterface
604  *       is a double dot1ad vlan with outer vlan id <outer_id> and inner vlan
605  *       id <inner_id>.
606  *
607  * <intf-name> <id> untagged
608  *     - a subinterface with the name <intf-name>.<id>. The subinterface
609  *       has no vlan tags. Only one can be specified per interface.
610  *
611  * <intf-name> <id> default
612  *     - a subinterface with the name <intf-name>.<id>. This is associated
613  *       with a packet that did not match any other configured subinterface
614  *       on this interface. Only one can be specified per interface.
615  */
616
617 static clib_error_t *
618 parse_vlan_sub_interfaces (unformat_input_t * input,
619                            vnet_sw_interface_t * template)
620 {
621   clib_error_t *error = 0;
622   u32 inner_vlan, outer_vlan;
623
624   if (unformat (input, "any inner-dot1q any"))
625     {
626       template->sub.eth.flags.two_tags = 1;
627       template->sub.eth.flags.outer_vlan_id_any = 1;
628       template->sub.eth.flags.inner_vlan_id_any = 1;
629     }
630   else if (unformat (input, "any"))
631     {
632       template->sub.eth.flags.one_tag = 1;
633       template->sub.eth.flags.outer_vlan_id_any = 1;
634     }
635   else if (unformat (input, "%d inner-dot1q any", &outer_vlan))
636     {
637       template->sub.eth.flags.two_tags = 1;
638       template->sub.eth.flags.inner_vlan_id_any = 1;
639       template->sub.eth.outer_vlan_id = outer_vlan;
640     }
641   else if (unformat (input, "%d inner-dot1q %d", &outer_vlan, &inner_vlan))
642     {
643       template->sub.eth.flags.two_tags = 1;
644       template->sub.eth.outer_vlan_id = outer_vlan;
645       template->sub.eth.inner_vlan_id = inner_vlan;
646     }
647   else if (unformat (input, "%d", &outer_vlan))
648     {
649       template->sub.eth.flags.one_tag = 1;
650       template->sub.eth.outer_vlan_id = outer_vlan;
651     }
652   else
653     {
654       error = clib_error_return (0, "expected dot1q config, got `%U'",
655                                  format_unformat_error, input);
656       goto done;
657     }
658
659   if (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
660     {
661       if (unformat (input, "exact-match"))
662         {
663           template->sub.eth.flags.exact_match = 1;
664         }
665     }
666
667 done:
668   return error;
669 }
670
671 static clib_error_t *
672 create_sub_interfaces (vlib_main_t * vm,
673                        unformat_input_t * input, vlib_cli_command_t * cmd)
674 {
675   vnet_main_t *vnm = vnet_get_main ();
676   clib_error_t *error = 0;
677   u32 hw_if_index, sw_if_index;
678   vnet_hw_interface_t *hi;
679   u32 id, id_min, id_max;
680   vnet_sw_interface_t template;
681
682   hw_if_index = ~0;
683   if (!unformat_user (input, unformat_vnet_hw_interface, vnm, &hw_if_index))
684     {
685       error = clib_error_return (0, "unknown interface `%U'",
686                                  format_unformat_error, input);
687       goto done;
688     }
689
690   memset (&template, 0, sizeof (template));
691   template.sub.eth.raw_flags = 0;
692
693   if (unformat (input, "%d default", &id_min))
694     {
695       id_max = id_min;
696       template.sub.eth.flags.default_sub = 1;
697     }
698   else if (unformat (input, "%d untagged", &id_min))
699     {
700       id_max = id_min;
701       template.sub.eth.flags.no_tags = 1;
702       template.sub.eth.flags.exact_match = 1;
703     }
704   else if (unformat (input, "%d dot1q", &id_min))
705     {
706       /* parse dot1q config */
707       id_max = id_min;
708       error = parse_vlan_sub_interfaces (input, &template);
709       if (error)
710         goto done;
711     }
712   else if (unformat (input, "%d dot1ad", &id_min))
713     {
714       /* parse dot1ad config */
715       id_max = id_min;
716       template.sub.eth.flags.dot1ad = 1;
717       error = parse_vlan_sub_interfaces (input, &template);
718       if (error)
719         goto done;
720     }
721   else if (unformat (input, "%d-%d", &id_min, &id_max))
722     {
723       template.sub.eth.flags.one_tag = 1;
724       template.sub.eth.flags.exact_match = 1;
725       if (id_min > id_max)
726         goto id_error;
727     }
728   else if (unformat (input, "%d", &id_min))
729     {
730       id_max = id_min;
731       template.sub.eth.flags.one_tag = 1;
732       template.sub.eth.outer_vlan_id = id_min;
733       template.sub.eth.flags.exact_match = 1;
734     }
735   else
736     {
737     id_error:
738       error = clib_error_return (0, "expected ID or ID MIN-MAX, got `%U'",
739                                  format_unformat_error, input);
740       goto done;
741     }
742
743   hi = vnet_get_hw_interface (vnm, hw_if_index);
744
745   if (hi->bond_info == VNET_HW_INTERFACE_BOND_INFO_SLAVE)
746     {
747       error =
748         clib_error_return (0,
749                            "not allowed as %v belong to a BondEthernet interface",
750                            hi->name);
751       goto done;
752     }
753
754   for (id = id_min; id <= id_max; id++)
755     {
756       uword *p;
757       vnet_interface_main_t *im = &vnm->interface_main;
758       u64 sup_and_sub_key = ((u64) (hi->sw_if_index) << 32) | (u64) id;
759       u64 *kp;
760
761       p = hash_get_mem (im->sw_if_index_by_sup_and_sub, &sup_and_sub_key);
762       if (p)
763         {
764           if (CLIB_DEBUG > 0)
765             clib_warning ("sup sw_if_index %d, sub id %d already exists\n",
766                           hi->sw_if_index, id);
767           continue;
768         }
769
770       kp = clib_mem_alloc (sizeof (*kp));
771       *kp = sup_and_sub_key;
772
773       template.type = VNET_SW_INTERFACE_TYPE_SUB;
774       template.flood_class = VNET_FLOOD_CLASS_NORMAL;
775       template.sup_sw_if_index = hi->sw_if_index;
776       template.sub.id = id;
777       if (id_min < id_max)
778         template.sub.eth.outer_vlan_id = id;
779
780       error = vnet_create_sw_interface (vnm, &template, &sw_if_index);
781       if (error)
782         goto done;
783
784       hash_set (hi->sub_interface_sw_if_index_by_id, id, sw_if_index);
785       hash_set_mem (im->sw_if_index_by_sup_and_sub, kp, sw_if_index);
786       vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name,
787                        vnet_get_main (), sw_if_index);
788     }
789
790 done:
791   return error;
792 }
793
794 /*?
795  * This command is used to add VLAN IDs to interfaces, also known as subinterfaces.
796  * The primary input to this command is the '<em>interface</em>' and '<em>subId</em>'
797  * (subinterface Id) parameters. If no additional VLAN ID is provide, the VLAN ID is
798  * assumed to be the '<em>subId</em>'. The VLAN ID and '<em>subId</em>' can be different,
799  * but this is not recommended.
800  *
801  * This command has several variations:
802  * - <b>create sub-interfaces <interface> <subId></b> - Create a subinterface to
803  * process packets with a given 802.1q VLAN ID (same value as the '<em>subId</em>').
804  *
805  * - <b>create sub-interfaces <interface> <subId> default</b> - Adding the
806  * '<em>default</em>' parameter indicates that packets with VLAN IDs that do not
807  * match any other subinterfaces should be sent to this subinterface.
808  *
809  * - <b>create sub-interfaces <interface> <subId> untagged</b> - Adding the
810  * '<em>untagged</em>' parameter indicates that packets no VLAN IDs should be sent
811  * to this subinterface.
812  *
813  * - <b>create sub-interfaces <interface> <subId>-<subId></b> - Create a range of
814  * subinterfaces to handle a range of VLAN IDs.
815  *
816  * - <b>create sub-interfaces <interface> <subId> dot1q|dot1ad <vlanId>|any [exact-match]</b> -
817  * Use this command to specify the outer VLAN ID, to either be explicited or to make the
818  * VLAN ID different from the '<em>subId</em>'.
819  *
820  * - <b>create sub-interfaces <interface> <subId> dot1q|dot1ad <vlanId>|any inner-dot1q
821  * <vlanId>|any [exact-match]</b> - Use this command to specify the outer VLAN ID and
822  * the innner VLAN ID.
823  *
824  * When '<em>dot1q</em>' or '<em>dot1ad</em>' is explictly entered, subinterfaces
825  * can be configured as either exact-match or non-exact match. Non-exact match is the CLI
826  * default. If '<em>exact-match</em>' is specified, packets must have the same number of
827  * VLAN tags as the configuration. For non-exact-match, packets must at least that number
828  * of tags. L3 (routed) interfaces must be configured as exact-match. L2 interfaces are
829  * typically configured as non-exact-match. If '<em>dot1q</em>' or '<em>dot1ad</em>' is NOT
830  * entered, then the default behavior is exact-match.
831  *
832  * Use the '<em>show interface</em>' command to display all subinterfaces.
833  *
834  * @cliexpar
835  * @parblock
836  * Example of how to create a VLAN subinterface 11 to process packets on 802.1q VLAN ID 11:
837  * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 11}
838  *
839  * The previous example is shorthand and is equivalent to:
840  * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 11 dot1q 11 exact-match}
841  *
842  *
843  * Example of how to create a subinterface number that is different from the VLAN ID:
844  * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 11 dot1q 100}
845  *
846  *
847  * Examples of how to create q-in-q and q-in-any subinterfaces:
848  * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 11 dot1q 100 inner-dot1q 200}
849  * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 12 dot1q 100 inner-dot1q any}
850  *
851  * Examples of how to create dot1ad interfaces:
852  * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 11 dot1ad 11}
853  * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 12 dot1ad 100 inner-dot1q 200}
854  *
855  *
856  * Examples of '<em>exact-match</em>' versus non-exact match. A packet with
857  * outer VLAN 100 and inner VLAN 200 would match this interface, because the default
858  * is non-exact match:
859  * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 5 dot1q 100}
860  *
861  * However, the same packet would NOT match this interface because '<em>exact-match</em>'
862  * is specified and only one VLAN is configured, but packet contains two VLANs:
863  * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 5 dot1q 100 exact-match}
864  *
865  *
866  * Example of how to created a subinterface to process untagged packets:
867  * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 5 untagged}
868  *
869  * Example of how to created a subinterface to process any packet with a VLAN ID that
870  * does not match any other subinterface:
871  * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 7 default}
872  *
873  * When subinterfaces are created, they are in the down state. Example of how to
874  * enable a newly created subinterface:
875  * @cliexcmd{set interface GigabitEthernet2/0/0.7 up}
876  * @endparblock
877  ?*/
878 /* *INDENT-OFF* */
879 VLIB_CLI_COMMAND (create_sub_interfaces_command, static) = {
880   .path = "create sub-interfaces",
881   .short_help = "create sub-interfaces <interface> "
882     "{<subId> [default|untagged]} | "
883     "{<subId>-<subId>} | "
884     "{<subId> dot1q|dot1ad <vlanId>|any [inner-dot1q <vlanId>|any] [exact-match]}",
885   .function = create_sub_interfaces,
886 };
887 /* *INDENT-ON* */
888
889 static clib_error_t *
890 set_state (vlib_main_t * vm,
891            unformat_input_t * input, vlib_cli_command_t * cmd)
892 {
893   vnet_main_t *vnm = vnet_get_main ();
894   clib_error_t *error;
895   u32 sw_if_index, flags;
896
897   sw_if_index = ~0;
898   if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
899     {
900       error = clib_error_return (0, "unknown interface `%U'",
901                                  format_unformat_error, input);
902       goto done;
903     }
904
905   if (!unformat (input, "%U", unformat_vnet_sw_interface_flags, &flags))
906     {
907       error = clib_error_return (0, "unknown flags `%U'",
908                                  format_unformat_error, input);
909       goto done;
910     }
911
912   error = vnet_sw_interface_set_flags (vnm, sw_if_index, flags);
913   if (error)
914     goto done;
915
916 done:
917   return error;
918 }
919
920
921 /*?
922  * This command is used to change the admin state (up/down) of an interface.
923  *
924  * If an interface is down, the optional '<em>punt</em>' flag can also be set.
925  * The '<em>punt</em>' flag implies the interface is disabled for forwarding
926  * but punt all traffic to slow-path. Use the '<em>enable</em>' flag to clear
927  * '<em>punt</em>' flag (interface is still down).
928  *
929  * @cliexpar
930  * Example of how to configure the admin state of an interface to '<em>up</em?':
931  * @cliexcmd{set interface state GigabitEthernet2/0/0 up}
932  * Example of how to configure the admin state of an interface to '<em>down</em?':
933  * @cliexcmd{set interface state GigabitEthernet2/0/0 down}
934  ?*/
935 /* *INDENT-OFF* */
936 VLIB_CLI_COMMAND (set_state_command, static) = {
937   .path = "set interface state",
938   .short_help = "set interface state <interface> [up|down|punt|enable]",
939   .function = set_state,
940 };
941 /* *INDENT-ON* */
942
943 static clib_error_t *
944 set_unnumbered (vlib_main_t * vm,
945                 unformat_input_t * input, vlib_cli_command_t * cmd)
946 {
947   vnet_main_t *vnm = vnet_get_main ();
948   u32 unnumbered_sw_if_index = ~0;
949   u32 inherit_from_sw_if_index = ~0;
950   int enable = 1;
951
952   if (unformat (input, "%U use %U",
953                 unformat_vnet_sw_interface, vnm, &unnumbered_sw_if_index,
954                 unformat_vnet_sw_interface, vnm, &inherit_from_sw_if_index))
955     enable = 1;
956   else if (unformat (input, "del %U",
957                      unformat_vnet_sw_interface, vnm,
958                      &unnumbered_sw_if_index))
959     enable = 0;
960   else
961     return clib_error_return (0, "parse error '%U'",
962                               format_unformat_error, input);
963
964   if (~0 == unnumbered_sw_if_index)
965     return clib_error_return (0, "Specify the unnumbered interface");
966   if (enable && ~0 == inherit_from_sw_if_index)
967     return clib_error_return (0, "When enabling unnumberered specify the"
968                               " IP enabled interface that it uses");
969
970   vnet_sw_interface_update_unnumbered (unnumbered_sw_if_index,
971                                        inherit_from_sw_if_index, enable);
972
973   return (NULL);
974 }
975
976 /* *INDENT-OFF* */
977 VLIB_CLI_COMMAND (set_unnumbered_command, static) = {
978   .path = "set interface unnumbered",
979   .short_help = "set interface unnumbered [<interface> use <interface> | del <interface>]",
980   .function = set_unnumbered,
981 };
982 /* *INDENT-ON* */
983
984
985
986 static clib_error_t *
987 set_hw_class (vlib_main_t * vm,
988               unformat_input_t * input, vlib_cli_command_t * cmd)
989 {
990   vnet_main_t *vnm = vnet_get_main ();
991   vnet_interface_main_t *im = &vnm->interface_main;
992   clib_error_t *error;
993   u32 hw_if_index, hw_class_index;
994
995   hw_if_index = ~0;
996   if (!unformat_user (input, unformat_vnet_hw_interface, vnm, &hw_if_index))
997     {
998       error = clib_error_return (0, "unknown hardware interface `%U'",
999                                  format_unformat_error, input);
1000       goto done;
1001     }
1002
1003   if (!unformat_user (input, unformat_hash_string,
1004                       im->hw_interface_class_by_name, &hw_class_index))
1005     {
1006       error = clib_error_return (0, "unknown hardware class `%U'",
1007                                  format_unformat_error, input);
1008       goto done;
1009     }
1010
1011   error = vnet_hw_interface_set_class (vnm, hw_if_index, hw_class_index);
1012   if (error)
1013     goto done;
1014
1015 done:
1016   return error;
1017 }
1018
1019 /* *INDENT-OFF* */
1020 VLIB_CLI_COMMAND (set_hw_class_command, static) = {
1021   .path = "set interface hw-class",
1022   .short_help = "Set interface hardware class",
1023   .function = set_hw_class,
1024 };
1025 /* *INDENT-ON* */
1026
1027 static clib_error_t *
1028 vnet_interface_cli_init (vlib_main_t * vm)
1029 {
1030   return 0;
1031 }
1032
1033 VLIB_INIT_FUNCTION (vnet_interface_cli_init);
1034
1035 static clib_error_t *
1036 renumber_interface_command_fn (vlib_main_t * vm,
1037                                unformat_input_t * input,
1038                                vlib_cli_command_t * cmd)
1039 {
1040   u32 hw_if_index;
1041   u32 new_dev_instance;
1042   vnet_main_t *vnm = vnet_get_main ();
1043   int rv;
1044
1045   if (!unformat_user (input, unformat_vnet_hw_interface, vnm, &hw_if_index))
1046     return clib_error_return (0, "unknown hardware interface `%U'",
1047                               format_unformat_error, input);
1048
1049   if (!unformat (input, "%d", &new_dev_instance))
1050     return clib_error_return (0, "new dev instance missing");
1051
1052   rv = vnet_interface_name_renumber (hw_if_index, new_dev_instance);
1053
1054   switch (rv)
1055     {
1056     case 0:
1057       break;
1058
1059     default:
1060       return clib_error_return (0, "vnet_interface_name_renumber returned %d",
1061                                 rv);
1062
1063     }
1064
1065   return 0;
1066 }
1067
1068
1069 /* *INDENT-OFF* */
1070 VLIB_CLI_COMMAND (renumber_interface_command, static) = {
1071   .path = "renumber interface",
1072   .short_help = "renumber interface <interface> <new-dev-instance>",
1073   .function = renumber_interface_command_fn,
1074 };
1075 /* *INDENT-ON* */
1076
1077 static clib_error_t *
1078 promiscuous_cmd (vlib_main_t * vm,
1079                  unformat_input_t * input, vlib_cli_command_t * cmd)
1080 {
1081   vnet_main_t *vnm = vnet_get_main ();
1082   u32 hw_if_index;
1083   u32 flags = ETHERNET_INTERFACE_FLAG_ACCEPT_ALL;
1084   ethernet_main_t *em = &ethernet_main;
1085   ethernet_interface_t *eif;
1086
1087   if (unformat (input, "on %U",
1088                 unformat_vnet_hw_interface, vnm, &hw_if_index))
1089     ;
1090   else if (unformat (input, "off %U",
1091                      unformat_ethernet_interface, vnm, &hw_if_index))
1092     flags = 0;
1093   else
1094     return clib_error_return (0, "unknown input `%U'",
1095                               format_unformat_error, input);
1096
1097   eif = ethernet_get_interface (em, hw_if_index);
1098   if (!eif)
1099     return clib_error_return (0, "not supported");
1100
1101   ethernet_set_flags (vnm, hw_if_index, flags);
1102   return 0;
1103 }
1104
1105 /* *INDENT-OFF* */
1106 VLIB_CLI_COMMAND (set_interface_promiscuous_cmd, static) = {
1107   .path = "set interface promiscuous",
1108   .short_help = "set interface promiscuous [on|off] <interface>",
1109   .function = promiscuous_cmd,
1110 };
1111 /* *INDENT-ON* */
1112
1113 static clib_error_t *
1114 mtu_cmd (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd)
1115 {
1116   vnet_main_t *vnm = vnet_get_main ();
1117   u32 hw_if_index, sw_if_index, mtu;
1118   ethernet_main_t *em = &ethernet_main;
1119   u32 mtus[VNET_N_MTU] = { 0, 0, 0, 0 };
1120
1121   if (unformat (input, "%d %U", &mtu,
1122                 unformat_vnet_hw_interface, vnm, &hw_if_index))
1123     {
1124       /*
1125        * Change physical MTU on interface. Only supported for Ethernet
1126        * interfaces
1127        */
1128       vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1129       ethernet_interface_t *eif = ethernet_get_interface (em, hw_if_index);
1130
1131       if (!eif)
1132         return clib_error_return (0, "not supported");
1133
1134       if (mtu < hi->min_supported_packet_bytes)
1135         return clib_error_return (0, "Invalid mtu (%d): "
1136                                   "must be >= min pkt bytes (%d)", mtu,
1137                                   hi->min_supported_packet_bytes);
1138
1139       if (mtu > hi->max_supported_packet_bytes)
1140         return clib_error_return (0, "Invalid mtu (%d): must be <= (%d)", mtu,
1141                                   hi->max_supported_packet_bytes);
1142
1143       vnet_hw_interface_set_mtu (vnm, hw_if_index, mtu);
1144       goto done;
1145     }
1146   else if (unformat (input, "packet %d %U", &mtu,
1147                      unformat_vnet_sw_interface, vnm, &sw_if_index))
1148     /* Set default packet MTU (including L3 header */
1149     mtus[VNET_MTU_L3] = mtu;
1150   else if (unformat (input, "ip4 %d %U", &mtu,
1151                      unformat_vnet_sw_interface, vnm, &sw_if_index))
1152     mtus[VNET_MTU_IP4] = mtu;
1153   else if (unformat (input, "ip6 %d %U", &mtu,
1154                      unformat_vnet_sw_interface, vnm, &sw_if_index))
1155     mtus[VNET_MTU_IP6] = mtu;
1156   else if (unformat (input, "mpls %d %U", &mtu,
1157                      unformat_vnet_sw_interface, vnm, &sw_if_index))
1158     mtus[VNET_MTU_MPLS] = mtu;
1159   else
1160     return clib_error_return (0, "unknown input `%U'",
1161                               format_unformat_error, input);
1162
1163   vnet_sw_interface_set_protocol_mtu (vnm, sw_if_index, mtus);
1164
1165 done:
1166   return 0;
1167 }
1168
1169 /* *INDENT-OFF* */
1170 VLIB_CLI_COMMAND (set_interface_mtu_cmd, static) = {
1171   .path = "set interface mtu",
1172   .short_help = "set interface mtu [packet|ip4|ip6|mpls] <value> <interface>",
1173   .function = mtu_cmd,
1174 };
1175 /* *INDENT-ON* */
1176
1177 static clib_error_t *
1178 set_interface_mac_address (vlib_main_t * vm, unformat_input_t * input,
1179                            vlib_cli_command_t * cmd)
1180 {
1181   vnet_main_t *vnm = vnet_get_main ();
1182   vnet_sw_interface_t *si = NULL;
1183   clib_error_t *error = 0;
1184   u32 sw_if_index = ~0;
1185   u8 mac[6] = { 0 };
1186
1187   if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
1188     {
1189       error = clib_error_return (0, "unknown interface `%U'",
1190                                  format_unformat_error, input);
1191       goto done;
1192     }
1193   if (!unformat_user (input, unformat_ethernet_address, mac))
1194     {
1195       error = clib_error_return (0, "expected mac address `%U'",
1196                                  format_unformat_error, input);
1197       goto done;
1198     }
1199   si = vnet_get_sw_interface (vnm, sw_if_index);
1200   error = vnet_hw_interface_change_mac_address (vnm, si->hw_if_index, mac);
1201 done:
1202   return error;
1203 }
1204
1205 /*?
1206  * The '<em>set interface mac address </em>' command allows to set MAC address of given interface.
1207  * In case of NIC interfaces the one has to support MAC address change. A side effect of MAC address
1208  * change are changes of MAC addresses in FIB tables (ipv4 and ipv6).
1209  *
1210  * @cliexpar
1211  * @parblock
1212  * Example of how to change MAC Address of interface:
1213  * @cliexcmd{set interface mac address GigabitEthernet0/8/0 aa:bb:cc:dd:ee:01}
1214  * @cliexcmd{set interface mac address host-vpp0 aa:bb:cc:dd:ee:02}
1215  * @cliexcmd{set interface mac address tap-0 aa:bb:cc:dd:ee:03}
1216  * @cliexcmd{set interface mac address pg0 aa:bb:cc:dd:ee:04}
1217  * @endparblock
1218 ?*/
1219 /* *INDENT-OFF* */
1220 VLIB_CLI_COMMAND (set_interface_mac_address_cmd, static) = {
1221   .path = "set interface mac address",
1222   .short_help = "set interface mac address <interface> <mac-address>",
1223   .function = set_interface_mac_address,
1224 };
1225 /* *INDENT-ON* */
1226
1227 static clib_error_t *
1228 set_tag (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd)
1229 {
1230   vnet_main_t *vnm = vnet_get_main ();
1231   u32 sw_if_index = ~0;
1232   u8 *tag = 0;
1233
1234   if (!unformat (input, "%U %s", unformat_vnet_sw_interface,
1235                  vnm, &sw_if_index, &tag))
1236     return clib_error_return (0, "unknown input `%U'",
1237                               format_unformat_error, input);
1238
1239   vnet_set_sw_interface_tag (vnm, tag, sw_if_index);
1240
1241   return 0;
1242 }
1243
1244 /* *INDENT-OFF* */
1245 VLIB_CLI_COMMAND (set_tag_command, static) = {
1246   .path = "set interface tag",
1247   .short_help = "set interface tag <interface> <tag>",
1248   .function = set_tag,
1249 };
1250 /* *INDENT-ON* */
1251
1252 static clib_error_t *
1253 clear_tag (vlib_main_t * vm, unformat_input_t * input,
1254            vlib_cli_command_t * cmd)
1255 {
1256   vnet_main_t *vnm = vnet_get_main ();
1257   u32 sw_if_index = ~0;
1258
1259   if (!unformat (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index))
1260     return clib_error_return (0, "unknown input `%U'",
1261                               format_unformat_error, input);
1262
1263   vnet_clear_sw_interface_tag (vnm, sw_if_index);
1264
1265   return 0;
1266 }
1267
1268 /* *INDENT-OFF* */
1269 VLIB_CLI_COMMAND (clear_tag_command, static) = {
1270   .path = "clear interface tag",
1271   .short_help = "clear interface tag <interface>",
1272   .function = clear_tag,
1273 };
1274 /* *INDENT-ON* */
1275
1276 static clib_error_t *
1277 set_ip_directed_broadcast (vlib_main_t * vm,
1278                            unformat_input_t * input, vlib_cli_command_t * cmd)
1279 {
1280   vnet_main_t *vnm = vnet_get_main ();
1281   u32 sw_if_index = ~0;
1282   u8 enable = 0;
1283
1284   if (!unformat (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index));
1285   else if (unformat (input, "enable"))
1286     enable = 1;
1287   else if (unformat (input, "disable"))
1288     enable = 0;
1289   else
1290     return clib_error_return (0, "unknown input: `%U'",
1291                               format_unformat_error, input);
1292
1293   if (~0 == sw_if_index)
1294     return clib_error_return (0, "specify an interface: `%U'",
1295                               format_unformat_error, input);
1296
1297   vnet_sw_interface_ip_directed_broadcast (vnm, sw_if_index, enable);
1298
1299   return 0;
1300 }
1301
1302 /*?
1303  * This command is used to enable/disable IP directed broadcast
1304  * If directed broadcast is enabled a packet sent to the interface's
1305  * subnet broadcast address will be sent L2 broadcast on the interface,
1306  * otherwise it is dropped.
1307  ?*/
1308 /* *INDENT-OFF* */
1309 VLIB_CLI_COMMAND (set_ip_directed_broadcast_command, static) = {
1310   .path = "set interface ip directed-broadcast",
1311   .short_help = "set interface enable <interface> <enable|disable>",
1312   .function = set_ip_directed_broadcast,
1313 };
1314 /* *INDENT-ON* */
1315
1316 static clib_error_t *
1317 set_hw_interface_rx_mode (vnet_main_t * vnm, u32 hw_if_index,
1318                           u32 queue_id, vnet_hw_interface_rx_mode mode)
1319 {
1320   vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
1321   vnet_device_class_t *dev_class =
1322     vnet_get_device_class (vnm, hw->dev_class_index);
1323   clib_error_t *error;
1324   vnet_hw_interface_rx_mode old_mode;
1325   int rv;
1326
1327   if (mode == VNET_HW_INTERFACE_RX_MODE_DEFAULT)
1328     mode = hw->default_rx_mode;
1329
1330   rv = vnet_hw_interface_get_rx_mode (vnm, hw_if_index, queue_id, &old_mode);
1331   switch (rv)
1332     {
1333     case 0:
1334       if (old_mode == mode)
1335         return 0;               /* same rx-mode, no change */
1336       break;
1337     case VNET_API_ERROR_INVALID_INTERFACE:
1338       return clib_error_return (0, "invalid interface");
1339     case VNET_API_ERROR_INVALID_QUEUE:
1340       return clib_error_return (0, "invalid queue");
1341     default:
1342       return clib_error_return (0, "unknown error");
1343     }
1344
1345   if (dev_class->rx_mode_change_function)
1346     {
1347       error = dev_class->rx_mode_change_function (vnm, hw_if_index, queue_id,
1348                                                   mode);
1349       if (error)
1350         return (error);
1351     }
1352
1353   rv = vnet_hw_interface_set_rx_mode (vnm, hw_if_index, queue_id, mode);
1354   switch (rv)
1355     {
1356     case 0:
1357       break;
1358     case VNET_API_ERROR_UNSUPPORTED:
1359       return clib_error_return (0, "unsupported");
1360     case VNET_API_ERROR_INVALID_INTERFACE:
1361       return clib_error_return (0, "invalid interface");
1362     case VNET_API_ERROR_INVALID_QUEUE:
1363       return clib_error_return (0, "invalid queue");
1364     default:
1365       return clib_error_return (0, "unknown error");
1366     }
1367
1368   return 0;
1369 }
1370
1371 clib_error_t *
1372 set_hw_interface_change_rx_mode (vnet_main_t * vnm, u32 hw_if_index,
1373                                  u8 queue_id_valid, u32 queue_id,
1374                                  vnet_hw_interface_rx_mode mode)
1375 {
1376   clib_error_t *error = 0;
1377   vnet_hw_interface_t *hw;
1378   int i;
1379
1380   hw = vnet_get_hw_interface (vnm, hw_if_index);
1381
1382   if (queue_id_valid == 0)
1383     {
1384       for (i = 0; i < vec_len (hw->dq_runtime_index_by_queue); i++)
1385         {
1386           error = set_hw_interface_rx_mode (vnm, hw_if_index, i, mode);
1387           if (error)
1388             break;
1389         }
1390       hw->default_rx_mode = mode;
1391     }
1392   else
1393     error = set_hw_interface_rx_mode (vnm, hw_if_index, queue_id, mode);
1394
1395   return (error);
1396 }
1397
1398 static clib_error_t *
1399 set_interface_rx_mode (vlib_main_t * vm, unformat_input_t * input,
1400                        vlib_cli_command_t * cmd)
1401 {
1402   clib_error_t *error = 0;
1403   unformat_input_t _line_input, *line_input = &_line_input;
1404   vnet_main_t *vnm = vnet_get_main ();
1405   u32 hw_if_index = (u32) ~ 0;
1406   u32 queue_id = (u32) ~ 0;
1407   vnet_hw_interface_rx_mode mode = VNET_HW_INTERFACE_RX_MODE_UNKNOWN;
1408   u8 queue_id_valid = 0;
1409
1410   if (!unformat_user (input, unformat_line_input, line_input))
1411     return 0;
1412
1413   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1414     {
1415       if (unformat
1416           (line_input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
1417         ;
1418       else if (unformat (line_input, "queue %d", &queue_id))
1419         queue_id_valid = 1;
1420       else if (unformat (line_input, "polling"))
1421         mode = VNET_HW_INTERFACE_RX_MODE_POLLING;
1422       else if (unformat (line_input, "interrupt"))
1423         mode = VNET_HW_INTERFACE_RX_MODE_INTERRUPT;
1424       else if (unformat (line_input, "adaptive"))
1425         mode = VNET_HW_INTERFACE_RX_MODE_ADAPTIVE;
1426       else
1427         {
1428           error = clib_error_return (0, "parse error: '%U'",
1429                                      format_unformat_error, line_input);
1430           unformat_free (line_input);
1431           return error;
1432         }
1433     }
1434
1435   unformat_free (line_input);
1436
1437   if (hw_if_index == (u32) ~ 0)
1438     return clib_error_return (0, "please specify valid interface name");
1439
1440   if (mode == VNET_HW_INTERFACE_RX_MODE_UNKNOWN)
1441     return clib_error_return (0, "please specify valid rx-mode");
1442
1443   error = set_hw_interface_change_rx_mode (vnm, hw_if_index, queue_id_valid,
1444                                            queue_id, mode);
1445
1446   return (error);
1447 }
1448
1449 /*?
1450  * This command is used to assign the RX packet processing mode (polling,
1451  * interrupt, adaptive) of the a given interface, and optionally a
1452  * given queue. If the '<em>queue</em>' is not provided, the '<em>mode</em>'
1453  * is applied to all queues of the interface. Not all interfaces support
1454  * all modes. To display the current rx-mode use the command
1455  * '<em>show interface rx-placement</em>'.
1456  *
1457  * @cliexpar
1458  * Example of how to assign rx-mode to all queues on an interface:
1459  * @cliexcmd{set interface rx-mode VirtualEthernet0/0/12 polling}
1460  * Example of how to assign rx-mode to one queue of an interface:
1461  * @cliexcmd{set interface rx-mode VirtualEthernet0/0/12 queue 0 interrupt}
1462  * Example of how to display the rx-mode of all interfaces:
1463  * @cliexstart{show interface rx-placement}
1464  * Thread 1 (vpp_wk_0):
1465  *   node dpdk-input:
1466  *     GigabitEthernet7/0/0 queue 0 (polling)
1467  *   node vhost-user-input:
1468  *     VirtualEthernet0/0/12 queue 0 (interrupt)
1469  *     VirtualEthernet0/0/12 queue 2 (polling)
1470  *     VirtualEthernet0/0/13 queue 0 (polling)
1471  *     VirtualEthernet0/0/13 queue 2 (polling)
1472  * Thread 2 (vpp_wk_1):
1473  *   node dpdk-input:
1474  *     GigabitEthernet7/0/1 queue 0 (polling)
1475  *   node vhost-user-input:
1476  *     VirtualEthernet0/0/12 queue 1 (polling)
1477  *     VirtualEthernet0/0/12 queue 3 (polling)
1478  *     VirtualEthernet0/0/13 queue 1 (polling)
1479  *     VirtualEthernet0/0/13 queue 3 (polling)
1480  * @cliexend
1481 ?*/
1482 /* *INDENT-OFF* */
1483 VLIB_CLI_COMMAND (cmd_set_if_rx_mode,static) = {
1484     .path = "set interface rx-mode",
1485     .short_help = "set interface rx-mode <interface> [queue <n>] [polling | interrupt | adaptive]",
1486     .function = set_interface_rx_mode,
1487 };
1488 /* *INDENT-ON* */
1489
1490 static clib_error_t *
1491 show_interface_rx_placement_fn (vlib_main_t * vm, unformat_input_t * input,
1492                                 vlib_cli_command_t * cmd)
1493 {
1494   u8 *s = 0;
1495   vnet_main_t *vnm = vnet_get_main ();
1496   vnet_device_input_runtime_t *rt;
1497   vnet_device_and_queue_t *dq;
1498   vlib_node_t *pn = vlib_get_node_by_name (vm, (u8 *) "device-input");
1499   uword si;
1500   int index = 0;
1501
1502   /* *INDENT-OFF* */
1503   foreach_vlib_main (({
1504     clib_bitmap_foreach (si, pn->sibling_bitmap,
1505       ({
1506         rt = vlib_node_get_runtime_data (this_vlib_main, si);
1507
1508         if (vec_len (rt->devices_and_queues))
1509           s = format (s, "  node %U:\n", format_vlib_node_name, vm, si);
1510
1511         vec_foreach (dq, rt->devices_and_queues)
1512           {
1513             vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm,
1514                                                              dq->hw_if_index);
1515             s = format (s, "    %U queue %u (%U)\n",
1516                         format_vnet_sw_if_index_name, vnm, hi->sw_if_index,
1517                         dq->queue_id,
1518                         format_vnet_hw_interface_rx_mode, dq->mode);
1519           }
1520       }));
1521     if (vec_len (s) > 0)
1522       {
1523         vlib_cli_output(vm, "Thread %u (%v):\n%v", index,
1524                         vlib_worker_threads[index].name, s);
1525         vec_reset_length (s);
1526       }
1527     index++;
1528   }));
1529   /* *INDENT-ON* */
1530
1531   vec_free (s);
1532   return 0;
1533 }
1534
1535 /*?
1536  * This command is used to display the interface and queue worker
1537  * thread placement.
1538  *
1539  * @cliexpar
1540  * Example of how to display the interface placement:
1541  * @cliexstart{show interface rx-placement}
1542  * Thread 1 (vpp_wk_0):
1543  *   node dpdk-input:
1544  *     GigabitEthernet7/0/0 queue 0 (polling)
1545  *   node vhost-user-input:
1546  *     VirtualEthernet0/0/12 queue 0 (polling)
1547  *     VirtualEthernet0/0/12 queue 2 (polling)
1548  *     VirtualEthernet0/0/13 queue 0 (polling)
1549  *     VirtualEthernet0/0/13 queue 2 (polling)
1550  * Thread 2 (vpp_wk_1):
1551  *   node dpdk-input:
1552  *     GigabitEthernet7/0/1 queue 0 (polling)
1553  *   node vhost-user-input:
1554  *     VirtualEthernet0/0/12 queue 1 (polling)
1555  *     VirtualEthernet0/0/12 queue 3 (polling)
1556  *     VirtualEthernet0/0/13 queue 1 (polling)
1557  *     VirtualEthernet0/0/13 queue 3 (polling)
1558  * @cliexend
1559 ?*/
1560 /* *INDENT-OFF* */
1561 VLIB_CLI_COMMAND (show_interface_rx_placement, static) = {
1562   .path = "show interface rx-placement",
1563   .short_help = "show interface rx-placement",
1564   .function = show_interface_rx_placement_fn,
1565 };
1566 /* *INDENT-ON* */
1567
1568 static clib_error_t *
1569 set_interface_rx_placement (vlib_main_t * vm, unformat_input_t * input,
1570                             vlib_cli_command_t * cmd)
1571 {
1572   clib_error_t *error = 0;
1573   unformat_input_t _line_input, *line_input = &_line_input;
1574   vnet_main_t *vnm = vnet_get_main ();
1575   vnet_device_main_t *vdm = &vnet_device_main;
1576   vnet_hw_interface_rx_mode mode;
1577   u32 hw_if_index = (u32) ~ 0;
1578   u32 queue_id = (u32) 0;
1579   u32 thread_index = (u32) ~ 0;
1580   int rv;
1581
1582   if (!unformat_user (input, unformat_line_input, line_input))
1583     return 0;
1584
1585   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1586     {
1587       if (unformat
1588           (line_input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
1589         ;
1590       else if (unformat (line_input, "queue %d", &queue_id))
1591         ;
1592       else if (unformat (line_input, "main", &thread_index))
1593         thread_index = 0;
1594       else if (unformat (line_input, "worker %d", &thread_index))
1595         thread_index += vdm->first_worker_thread_index;
1596       else
1597         {
1598           error = clib_error_return (0, "parse error: '%U'",
1599                                      format_unformat_error, line_input);
1600           unformat_free (line_input);
1601           return error;
1602         }
1603     }
1604
1605   unformat_free (line_input);
1606
1607   if (hw_if_index == (u32) ~ 0)
1608     return clib_error_return (0, "please specify valid interface name");
1609
1610   if (thread_index > vdm->last_worker_thread_index)
1611     return clib_error_return (0,
1612                               "please specify valid worker thread or main");
1613
1614   rv = vnet_hw_interface_get_rx_mode (vnm, hw_if_index, queue_id, &mode);
1615
1616   if (rv)
1617     return clib_error_return (0, "not found");
1618
1619   rv = vnet_hw_interface_unassign_rx_thread (vnm, hw_if_index, queue_id);
1620
1621   if (rv)
1622     return clib_error_return (0, "not found");
1623
1624   vnet_hw_interface_assign_rx_thread (vnm, hw_if_index, queue_id,
1625                                       thread_index);
1626   vnet_hw_interface_set_rx_mode (vnm, hw_if_index, queue_id, mode);
1627
1628   return 0;
1629 }
1630
1631 /*?
1632  * This command is used to assign a given interface, and optionally a
1633  * given queue, to a different thread. If the '<em>queue</em>' is not provided,
1634  * it defaults to 0. The '<em>worker</em>' parameter is zero based and the index
1635  * in the thread name, for example, 0 in the thread name '<em>vpp_wk_0</em>'.
1636  *
1637  * @cliexpar
1638  * Example of how to display the interface placement:
1639  * @cliexstart{show interface rx-placement}
1640  * Thread 1 (vpp_wk_0):
1641  *   node dpdk-input:
1642  *     GigabitEthernet7/0/0 queue 0 (polling)
1643  *   node vhost-user-input:
1644  *     VirtualEthernet0/0/12 queue 0 (polling)
1645  *     VirtualEthernet0/0/12 queue 2 (polling)
1646  *     VirtualEthernet0/0/13 queue 0 (polling)
1647  *     VirtualEthernet0/0/13 queue 2 (polling)
1648  * Thread 2 (vpp_wk_1):
1649  *   node dpdk-input:
1650  *     GigabitEthernet7/0/1 queue 0 (polling)
1651  *   node vhost-user-input:
1652  *     VirtualEthernet0/0/12 queue 1 (polling)
1653  *     VirtualEthernet0/0/12 queue 3 (polling)
1654  *     VirtualEthernet0/0/13 queue 1 (polling)
1655  *     VirtualEthernet0/0/13 queue 3 (polling)
1656  * @cliexend
1657  * Example of how to assign a interface and queue to a worker thread:
1658  * @cliexcmd{set interface rx-placement VirtualEthernet0/0/12 queue 1 worker 0}
1659  * Example of how to display the interface placement:
1660  * @cliexstart{show interface rx-placement}
1661  * Thread 1 (vpp_wk_0):
1662  *   node dpdk-input:
1663  *     GigabitEthernet7/0/0 queue 0 (polling)
1664  *   node vhost-user-input:
1665  *     VirtualEthernet0/0/12 queue 0 (polling)
1666  *     VirtualEthernet0/0/12 queue 1 (polling)
1667  *     VirtualEthernet0/0/12 queue 2 (polling)
1668  *     VirtualEthernet0/0/13 queue 0 (polling)
1669  *     VirtualEthernet0/0/13 queue 2 (polling)
1670  * Thread 2 (vpp_wk_1):
1671  *   node dpdk-input:
1672  *     GigabitEthernet7/0/1 queue 0 (polling)
1673  *   node vhost-user-input:
1674  *     VirtualEthernet0/0/12 queue 3 (polling)
1675  *     VirtualEthernet0/0/13 queue 1 (polling)
1676  *     VirtualEthernet0/0/13 queue 3 (polling)
1677  * @cliexend
1678 ?*/
1679 /* *INDENT-OFF* */
1680 VLIB_CLI_COMMAND (cmd_set_if_rx_placement,static) = {
1681     .path = "set interface rx-placement",
1682     .short_help = "set interface rx-placement <interface> [queue <n>] "
1683       "[worker <n> | main]",
1684     .function = set_interface_rx_placement,
1685     .is_mp_safe = 1,
1686 };
1687 /* *INDENT-ON* */
1688 /*
1689  * fd.io coding-style-patch-verification: ON
1690  *
1691  * Local Variables:
1692  * eval: (c-set-style "gnu")
1693  * End:
1694  */