FD.io VPP  v19.08-27-gf4dcae4
Vector Packet Processing
interface_cli.c
Go to the documentation of this file.
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 *
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 ();
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;
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. */
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) &&
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  {
157 
158  hi = vnet_get_hw_interface (vnm, hw_if_indices[i]);
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 
264  si1->sw_if_index, si2->sw_if_index);
265 }
266 
267 static clib_error_t *
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;
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  vec_free (sorted_sis);
308  error = clib_error_return (0, "unknown input `%U'",
309  format_unformat_error, linput);
310  goto done;
311  }
312  }
313  unformat_free (linput);
314  }
315  if (show_features || show_tag)
316  {
317  if (sw_if_index == ~(u32) 0)
318  {
319  vec_free (sorted_sis);
320  return clib_error_return (0, "Interface not specified...");
321  }
322  }
323 
324  if (show_features)
325  {
326  vnet_interface_features_show (vm, sw_if_index, verbose);
327 
328  l2_input_config_t *l2_input = l2input_intf_config (sw_if_index);
329  u32 fb = l2_input->feature_bitmap;
330  /* intf input features are masked by bridge domain */
331  if (l2_input->bridge)
332  fb &= l2input_bd_config (l2_input->bd_index)->feature_bitmap;
333  vlib_cli_output (vm, "\nl2-input:\n%U", format_l2_input_features, fb,
334  1);
335 
336  l2_output_config_t *l2_output = l2output_intf_config (sw_if_index);
337  vlib_cli_output (vm, "\nl2-output:");
338  if (l2_output->out_vtr_flag)
339  vlib_cli_output (vm, "%10s (%s)", "VTR", "--internal--");
341  l2_output->feature_bitmap, 1);
342  vec_free (sorted_sis);
343  return 0;
344  }
345  if (show_tag)
346  {
347  u8 *tag;
348  tag = vnet_get_sw_interface_tag (vnm, sw_if_index);
349  vlib_cli_output (vm, "%U: %s",
350  format_vnet_sw_if_index_name, vnm, sw_if_index,
351  tag ? (char *) tag : "(none)");
352  vec_free (sorted_sis);
353  return 0;
354  }
355 
356  if (!show_addresses)
357  vlib_cli_output (vm, "%U\n", format_vnet_sw_interface, vnm, 0);
358 
359  if (vec_len (sorted_sis) == 0) /* Get all interfaces */
360  {
361  /* Gather interfaces. */
362  sorted_sis =
364  _vec_len (sorted_sis) = 0;
365  /* *INDENT-OFF* */
366  pool_foreach (si, im->sw_interfaces,
367  ({
368  int visible = vnet_swif_is_api_visible (si);
369  if (visible)
370  vec_add1 (sorted_sis, si[0]);}
371  ));
372  /* *INDENT-ON* */
373  /* Sort by name. */
375  }
376 
377  if (show_addresses)
378  {
379  vec_foreach (si, sorted_sis)
380  {
381  ip4_main_t *im4 = &ip4_main;
382  ip6_main_t *im6 = &ip6_main;
383  ip_lookup_main_t *lm4 = &im4->lookup_main;
384  ip_lookup_main_t *lm6 = &im6->lookup_main;
385  ip_interface_address_t *ia = 0;
386  u32 fib_index4 = 0, fib_index6 = 0;
387 
389  fib_index4 = vec_elt (im4->fib_index_by_sw_if_index,
390  si->sw_if_index);
391 
393  fib_index6 = vec_elt (im6->fib_index_by_sw_if_index,
394  si->sw_if_index);
395 
396  ip4_fib_t *fib4 = ip4_fib_get (fib_index4);
397  ip6_fib_t *fib6 = ip6_fib_get (fib_index6);
398 
401  (vm, "%U (%s): \n unnumbered, use %U",
403  (si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? "up" : "dn",
405  else
407  (vm, "%U (%s):",
409  (si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? "up" : "dn");
410 
411  /* Display any L2 info */
413  if (l2_input->bridge)
414  {
415  bd_main_t *bdm = &bd_main;
417  vlib_cli_output (vm, " L2 bridge bd-id %d idx %d shg %d %s",
418  bd_id, bd_find_index (bdm, bd_id), l2_input->shg,
419  l2_input->bvi ? "bvi" : " ");
420  }
421  else if (l2_input->xconnect)
422  vlib_cli_output (vm, " L2 xconnect %U",
424  l2_input->output_sw_if_index);
425 
426  /* *INDENT-OFF* */
427  /* Display any IP4 addressing info */
429  1 /* honor unnumbered */,
430  ({
431  ip4_address_t *r4 = ip_interface_address_get_address (lm4, ia);
432  if (fib4->table_id)
433  vlib_cli_output (vm, " L3 %U/%d ip4 table-id %d fib-idx %d",
434  format_ip4_address, r4, ia->address_length,
435  fib4->table_id,
436  ip4_fib_index_from_table_id (fib4->table_id));
437  else
438  vlib_cli_output (vm, " L3 %U/%d",
439  format_ip4_address, r4, ia->address_length);
440  }));
441  /* *INDENT-ON* */
442 
443  /* *INDENT-OFF* */
444  /* Display any IP6 addressing info */
446  1 /* honor unnumbered */,
447  ({
448  ip6_address_t *r6 = ip_interface_address_get_address (lm6, ia);
449  if (fib6->table_id)
450  vlib_cli_output (vm, " L3 %U/%d ip6 table-id %d fib-idx %d",
451  format_ip6_address, r6, ia->address_length,
452  fib6->table_id,
453  ip6_fib_index_from_table_id (fib6->table_id));
454  else
455  vlib_cli_output (vm, " L3 %U/%d",
456  format_ip6_address, r6, ia->address_length);
457  }));
458  /* *INDENT-ON* */
459  }
460  }
461  else
462  {
463  vec_foreach (si, sorted_sis)
464  {
465  vlib_cli_output (vm, "%U\n", format_vnet_sw_interface, vnm, si);
466  }
467  }
468 
469 done:
470  vec_free (sorted_sis);
471  return error;
472 }
473 
474 /* *INDENT-OFF* */
475 VLIB_CLI_COMMAND (show_sw_interfaces_command, static) = {
476  .path = "show interface",
477  .short_help = "show interface [address|addr|features|feat] [<interface> [<interface> [..]]] [verbose]",
478  .function = show_sw_interfaces,
479  .is_mp_safe = 1,
480 };
481 /* *INDENT-ON* */
482 
483 /* Root of all interface commands. */
484 /* *INDENT-OFF* */
485 VLIB_CLI_COMMAND (vnet_cli_interface_command, static) = {
486  .path = "interface",
487  .short_help = "Interface commands",
488 };
489 /* *INDENT-ON* */
490 
491 /* *INDENT-OFF* */
492 VLIB_CLI_COMMAND (vnet_cli_set_interface_command, static) = {
493  .path = "set interface",
494  .short_help = "Interface commands",
495 };
496 /* *INDENT-ON* */
497 
498 static clib_error_t *
500  unformat_input_t * input, vlib_cli_command_t * cmd)
501 {
502  vnet_main_t *vnm = vnet_get_main ();
506  int j, n_counters;
507 
508  n_counters = vec_len (im->combined_sw_if_counters);
509 
510  for (j = 0; j < n_counters; j++)
511  {
512  im = &vnm->interface_main;
513  cm = im->combined_sw_if_counters + j;
515  }
516 
517  n_counters = vec_len (im->sw_if_counters);
518 
519  for (j = 0; j < n_counters; j++)
520  {
521  im = &vnm->interface_main;
522  sm = im->sw_if_counters + j;
524  }
525 
526  return 0;
527 }
528 
529 /*?
530  * Clear the statistics for all interfaces (statistics associated with the
531  * '<em>show interface</em>' command).
532  *
533  * @cliexpar
534  * Example of how to clear the statistics for all interfaces:
535  * @cliexcmd{clear interfaces}
536  ?*/
537 /* *INDENT-OFF* */
538 VLIB_CLI_COMMAND (clear_interface_counters_command, static) = {
539  .path = "clear interfaces",
540  .short_help = "clear interfaces",
541  .function = clear_interface_counters,
542 };
543 /* *INDENT-ON* */
544 
545 /**
546  * Parse subinterface names.
547  *
548  * The following subinterface syntax is supported. The first two are for
549  * backwards compatability:
550  *
551  * <intf-name> <id>
552  * - a subinterface with the name <intf-name>.<id>. The subinterface
553  * is a single dot1q vlan with vlan id <id> and exact-match semantics.
554  *
555  * <intf-name> <min_id>-<max_id>
556  * - a set of the above subinterfaces, repeating for each id
557  * in the range <min_id> to <max_id>
558  *
559  * In the following, exact-match semantics (i.e. the number of vlan tags on the
560  * packet must match the number of tags in the configuration) are used only if
561  * the keyword exact-match is present. Non-exact match is the default.
562  *
563  * <intf-name> <id> dot1q <outer_id> [exact-match]
564  * - a subinterface with the name <intf-name>.<id>. The subinterface
565  * is a single dot1q vlan with vlan id <outer_id>.
566  *
567  * <intf-name> <id> dot1q any [exact-match]
568  * - a subinterface with the name <intf-name>.<id>. The subinterface
569  * is a single dot1q vlan with any vlan id.
570  *
571  * <intf-name> <id> dot1q <outer_id> inner-dot1q <inner_id> [exact-match]
572  * - a subinterface with the name <intf-name>.<id>. The subinterface
573  * is a double dot1q vlan with outer vlan id <outer_id> and inner vlan id
574  * <inner_id>.
575  *
576  * <intf-name> <id> dot1q <outer_id> inner-dot1q any [exact-match]
577  * - a subinterface with the name <intf-name>.<id>. The subinterface
578  * is a double dot1q vlan with outer vlan id <id> and any inner vlan id.
579  *
580  * <intf-name> <id> dot1q any inner-dot1q any [exact-match]
581  *
582  * - a subinterface with the name <intf-name>.<id>. The subinterface
583  * is a double dot1q vlan with any outer vlan id and any inner vlan id.
584  *
585  * For each of the above CLI, there is a duplicate that uses the keyword
586  * "dot1ad" in place of the first "dot1q". These interfaces use ethertype
587  * 0x88ad in place of 0x8100 for the outer ethertype. Note that for double-
588  * tagged packets the inner ethertype is always 0x8100. Also note that
589  * the dot1q and dot1ad naming spaces are independent, so it is legal to
590  * have both "Gig3/0/0.1 dot1q 100" and "Gig3/0/0.2 dot1ad 100". For example:
591  *
592  * <intf-name> <id> dot1ad <outer_id> inner-dot1q <inner_id> [exact-match]
593  * - a subinterface with the name <intf-name>.<id>. The subinterface
594  * is a double dot1ad vlan with outer vlan id <outer_id> and inner vlan
595  * id <inner_id>.
596  *
597  * <intf-name> <id> untagged
598  * - a subinterface with the name <intf-name>.<id>. The subinterface
599  * has no vlan tags. Only one can be specified per interface.
600  *
601  * <intf-name> <id> default
602  * - a subinterface with the name <intf-name>.<id>. This is associated
603  * with a packet that did not match any other configured subinterface
604  * on this interface. Only one can be specified per interface.
605  */
606 
607 static clib_error_t *
609  vnet_sw_interface_t * template)
610 {
611  clib_error_t *error = 0;
612  u32 inner_vlan, outer_vlan;
613 
614  if (unformat (input, "any inner-dot1q any"))
615  {
616  template->sub.eth.flags.two_tags = 1;
617  template->sub.eth.flags.outer_vlan_id_any = 1;
618  template->sub.eth.flags.inner_vlan_id_any = 1;
619  }
620  else if (unformat (input, "any"))
621  {
622  template->sub.eth.flags.one_tag = 1;
623  template->sub.eth.flags.outer_vlan_id_any = 1;
624  }
625  else if (unformat (input, "%d inner-dot1q any", &outer_vlan))
626  {
627  template->sub.eth.flags.two_tags = 1;
628  template->sub.eth.flags.inner_vlan_id_any = 1;
629  template->sub.eth.outer_vlan_id = outer_vlan;
630  }
631  else if (unformat (input, "%d inner-dot1q %d", &outer_vlan, &inner_vlan))
632  {
633  template->sub.eth.flags.two_tags = 1;
634  template->sub.eth.outer_vlan_id = outer_vlan;
635  template->sub.eth.inner_vlan_id = inner_vlan;
636  }
637  else if (unformat (input, "%d", &outer_vlan))
638  {
639  template->sub.eth.flags.one_tag = 1;
640  template->sub.eth.outer_vlan_id = outer_vlan;
641  }
642  else
643  {
644  error = clib_error_return (0, "expected dot1q config, got `%U'",
645  format_unformat_error, input);
646  goto done;
647  }
648 
650  {
651  if (unformat (input, "exact-match"))
652  {
653  template->sub.eth.flags.exact_match = 1;
654  }
655  }
656 
657 done:
658  return error;
659 }
660 
661 static clib_error_t *
663  unformat_input_t * input, vlib_cli_command_t * cmd)
664 {
665  vnet_main_t *vnm = vnet_get_main ();
666  clib_error_t *error = 0;
667  u32 hw_if_index, sw_if_index;
669  u32 id, id_min, id_max;
670  vnet_sw_interface_t template;
671 
672  hw_if_index = ~0;
673  if (!unformat_user (input, unformat_vnet_hw_interface, vnm, &hw_if_index))
674  {
675  error = clib_error_return (0, "unknown interface `%U'",
676  format_unformat_error, input);
677  goto done;
678  }
679 
680  clib_memset (&template, 0, sizeof (template));
681  template.sub.eth.raw_flags = 0;
682 
683  if (unformat (input, "%d default", &id_min))
684  {
685  id_max = id_min;
686  template.sub.eth.flags.default_sub = 1;
687  }
688  else if (unformat (input, "%d untagged", &id_min))
689  {
690  id_max = id_min;
691  template.sub.eth.flags.no_tags = 1;
692  template.sub.eth.flags.exact_match = 1;
693  }
694  else if (unformat (input, "%d dot1q", &id_min))
695  {
696  /* parse dot1q config */
697  id_max = id_min;
698  error = parse_vlan_sub_interfaces (input, &template);
699  if (error)
700  goto done;
701  }
702  else if (unformat (input, "%d dot1ad", &id_min))
703  {
704  /* parse dot1ad config */
705  id_max = id_min;
706  template.sub.eth.flags.dot1ad = 1;
707  error = parse_vlan_sub_interfaces (input, &template);
708  if (error)
709  goto done;
710  }
711  else if (unformat (input, "%d-%d", &id_min, &id_max))
712  {
713  template.sub.eth.flags.one_tag = 1;
714  template.sub.eth.flags.exact_match = 1;
715  if (id_min > id_max)
716  goto id_error;
717  }
718  else if (unformat (input, "%d", &id_min))
719  {
720  id_max = id_min;
721  template.sub.eth.flags.one_tag = 1;
722  template.sub.eth.outer_vlan_id = id_min;
723  template.sub.eth.flags.exact_match = 1;
724  }
725  else
726  {
727  id_error:
728  error = clib_error_return (0, "expected ID or ID MIN-MAX, got `%U'",
729  format_unformat_error, input);
730  goto done;
731  }
732 
733  hi = vnet_get_hw_interface (vnm, hw_if_index);
734 
736  {
737  error =
739  "not allowed as %v belong to a BondEthernet interface",
740  hi->name);
741  goto done;
742  }
743 
744  for (id = id_min; id <= id_max; id++)
745  {
746  uword *p;
748  u64 sup_and_sub_key = ((u64) (hi->sw_if_index) << 32) | (u64) id;
749  u64 *kp;
750 
751  p = hash_get_mem (im->sw_if_index_by_sup_and_sub, &sup_and_sub_key);
752  if (p)
753  {
754  if (CLIB_DEBUG > 0)
755  clib_warning ("sup sw_if_index %d, sub id %d already exists\n",
756  hi->sw_if_index, id);
757  continue;
758  }
759 
760  kp = clib_mem_alloc (sizeof (*kp));
761  *kp = sup_and_sub_key;
762 
763  template.type = VNET_SW_INTERFACE_TYPE_SUB;
764  template.flood_class = VNET_FLOOD_CLASS_NORMAL;
765  template.sup_sw_if_index = hi->sw_if_index;
766  template.sub.id = id;
767  if (id_min < id_max)
768  template.sub.eth.outer_vlan_id = id;
769 
770  error = vnet_create_sw_interface (vnm, &template, &sw_if_index);
771  if (error)
772  goto done;
773 
774  hash_set (hi->sub_interface_sw_if_index_by_id, id, sw_if_index);
775  hash_set_mem (im->sw_if_index_by_sup_and_sub, kp, sw_if_index);
777  vnet_get_main (), sw_if_index);
778  }
779 
780 done:
781  return error;
782 }
783 
784 /*?
785  * This command is used to add VLAN IDs to interfaces, also known as subinterfaces.
786  * The primary input to this command is the '<em>interface</em>' and '<em>subId</em>'
787  * (subinterface Id) parameters. If no additional VLAN ID is provide, the VLAN ID is
788  * assumed to be the '<em>subId</em>'. The VLAN ID and '<em>subId</em>' can be different,
789  * but this is not recommended.
790  *
791  * This command has several variations:
792  * - <b>create sub-interfaces <interface> <subId></b> - Create a subinterface to
793  * process packets with a given 802.1q VLAN ID (same value as the '<em>subId</em>').
794  *
795  * - <b>create sub-interfaces <interface> <subId> default</b> - Adding the
796  * '<em>default</em>' parameter indicates that packets with VLAN IDs that do not
797  * match any other subinterfaces should be sent to this subinterface.
798  *
799  * - <b>create sub-interfaces <interface> <subId> untagged</b> - Adding the
800  * '<em>untagged</em>' parameter indicates that packets no VLAN IDs should be sent
801  * to this subinterface.
802  *
803  * - <b>create sub-interfaces <interface> <subId>-<subId></b> - Create a range of
804  * subinterfaces to handle a range of VLAN IDs.
805  *
806  * - <b>create sub-interfaces <interface> <subId> dot1q|dot1ad <vlanId>|any [exact-match]</b> -
807  * Use this command to specify the outer VLAN ID, to either be explicit or to make the
808  * VLAN ID different from the '<em>subId</em>'.
809  *
810  * - <b>create sub-interfaces <interface> <subId> dot1q|dot1ad <vlanId>|any inner-dot1q
811  * <vlanId>|any [exact-match]</b> - Use this command to specify the outer VLAN ID and
812  * the inner VLAN ID.
813  *
814  * When '<em>dot1q</em>' or '<em>dot1ad</em>' is explicitly entered, subinterfaces
815  * can be configured as either exact-match or non-exact match. Non-exact match is the CLI
816  * default. If '<em>exact-match</em>' is specified, packets must have the same number of
817  * VLAN tags as the configuration. For non-exact-match, packets must at least that number
818  * of tags. L3 (routed) interfaces must be configured as exact-match. L2 interfaces are
819  * typically configured as non-exact-match. If '<em>dot1q</em>' or '<em>dot1ad</em>' is NOT
820  * entered, then the default behavior is exact-match.
821  *
822  * Use the '<em>show interface</em>' command to display all subinterfaces.
823  *
824  * @cliexpar
825  * @parblock
826  * Example of how to create a VLAN subinterface 11 to process packets on 802.1q VLAN ID 11:
827  * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 11}
828  *
829  * The previous example is shorthand and is equivalent to:
830  * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 11 dot1q 11 exact-match}
831  *
832  *
833  * Example of how to create a subinterface number that is different from the VLAN ID:
834  * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 11 dot1q 100}
835  *
836  *
837  * Examples of how to create q-in-q and q-in-any subinterfaces:
838  * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 11 dot1q 100 inner-dot1q 200}
839  * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 12 dot1q 100 inner-dot1q any}
840  *
841  * Examples of how to create dot1ad interfaces:
842  * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 11 dot1ad 11}
843  * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 12 dot1ad 100 inner-dot1q 200}
844  *
845  *
846  * Examples of '<em>exact-match</em>' versus non-exact match. A packet with
847  * outer VLAN 100 and inner VLAN 200 would match this interface, because the default
848  * is non-exact match:
849  * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 5 dot1q 100}
850  *
851  * However, the same packet would NOT match this interface because '<em>exact-match</em>'
852  * is specified and only one VLAN is configured, but packet contains two VLANs:
853  * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 5 dot1q 100 exact-match}
854  *
855  *
856  * Example of how to created a subinterface to process untagged packets:
857  * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 5 untagged}
858  *
859  * Example of how to created a subinterface to process any packet with a VLAN ID that
860  * does not match any other subinterface:
861  * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 7 default}
862  *
863  * When subinterfaces are created, they are in the down state. Example of how to
864  * enable a newly created subinterface:
865  * @cliexcmd{set interface GigabitEthernet2/0/0.7 up}
866  * @endparblock
867  ?*/
868 /* *INDENT-OFF* */
869 VLIB_CLI_COMMAND (create_sub_interfaces_command, static) = {
870  .path = "create sub-interfaces",
871  .short_help = "create sub-interfaces <interface> "
872  "{<subId> [default|untagged]} | "
873  "{<subId>-<subId>} | "
874  "{<subId> dot1q|dot1ad <vlanId>|any [inner-dot1q <vlanId>|any] [exact-match]}",
875  .function = create_sub_interfaces,
876 };
877 /* *INDENT-ON* */
878 
879 static clib_error_t *
881  unformat_input_t * input, vlib_cli_command_t * cmd)
882 {
883  vnet_main_t *vnm = vnet_get_main ();
884  clib_error_t *error;
886 
887  sw_if_index = ~0;
888  if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
889  {
890  error = clib_error_return (0, "unknown interface `%U'",
891  format_unformat_error, input);
892  goto done;
893  }
894 
895  if (!unformat (input, "%U", unformat_vnet_sw_interface_flags, &flags))
896  {
897  error = clib_error_return (0, "unknown flags `%U'",
898  format_unformat_error, input);
899  goto done;
900  }
901 
902  error = vnet_sw_interface_set_flags (vnm, sw_if_index, flags);
903  if (error)
904  goto done;
905 
906 done:
907  return error;
908 }
909 
910 
911 /*?
912  * This command is used to change the admin state (up/down) of an interface.
913  *
914  * If an interface is down, the optional '<em>punt</em>' flag can also be set.
915  * The '<em>punt</em>' flag implies the interface is disabled for forwarding
916  * but punt all traffic to slow-path. Use the '<em>enable</em>' flag to clear
917  * '<em>punt</em>' flag (interface is still down).
918  *
919  * @cliexpar
920  * Example of how to configure the admin state of an interface to '<em>up</em?':
921  * @cliexcmd{set interface state GigabitEthernet2/0/0 up}
922  * Example of how to configure the admin state of an interface to '<em>down</em?':
923  * @cliexcmd{set interface state GigabitEthernet2/0/0 down}
924  ?*/
925 /* *INDENT-OFF* */
926 VLIB_CLI_COMMAND (set_state_command, static) = {
927  .path = "set interface state",
928  .short_help = "set interface state <interface> [up|down|punt|enable]",
929  .function = set_state,
930 };
931 /* *INDENT-ON* */
932 
933 static clib_error_t *
935  unformat_input_t * input, vlib_cli_command_t * cmd)
936 {
937  vnet_main_t *vnm = vnet_get_main ();
938  u32 unnumbered_sw_if_index = ~0;
939  u32 inherit_from_sw_if_index = ~0;
940  int enable = 1;
941 
942  if (unformat (input, "%U use %U",
943  unformat_vnet_sw_interface, vnm, &unnumbered_sw_if_index,
944  unformat_vnet_sw_interface, vnm, &inherit_from_sw_if_index))
945  enable = 1;
946  else if (unformat (input, "del %U",
948  &unnumbered_sw_if_index))
949  enable = 0;
950  else
951  return clib_error_return (0, "parse error '%U'",
952  format_unformat_error, input);
953 
954  if (~0 == unnumbered_sw_if_index)
955  return clib_error_return (0, "Specify the unnumbered interface");
956  if (enable && ~0 == inherit_from_sw_if_index)
957  return clib_error_return (0, "When enabling unnumbered specify the"
958  " IP enabled interface that it uses");
959 
960  vnet_sw_interface_update_unnumbered (unnumbered_sw_if_index,
961  inherit_from_sw_if_index, enable);
962 
963  return (NULL);
964 }
965 
966 /* *INDENT-OFF* */
967 VLIB_CLI_COMMAND (set_unnumbered_command, static) = {
968  .path = "set interface unnumbered",
969  .short_help = "set interface unnumbered [<interface> use <interface> | del <interface>]",
970  .function = set_unnumbered,
971 };
972 /* *INDENT-ON* */
973 
974 
975 
976 static clib_error_t *
978  unformat_input_t * input, vlib_cli_command_t * cmd)
979 {
980  vnet_main_t *vnm = vnet_get_main ();
982  clib_error_t *error;
983  u32 hw_if_index, hw_class_index;
984 
985  hw_if_index = ~0;
986  if (!unformat_user (input, unformat_vnet_hw_interface, vnm, &hw_if_index))
987  {
988  error = clib_error_return (0, "unknown hardware interface `%U'",
989  format_unformat_error, input);
990  goto done;
991  }
992 
993  if (!unformat_user (input, unformat_hash_string,
994  im->hw_interface_class_by_name, &hw_class_index))
995  {
996  error = clib_error_return (0, "unknown hardware class `%U'",
997  format_unformat_error, input);
998  goto done;
999  }
1000 
1001  error = vnet_hw_interface_set_class (vnm, hw_if_index, hw_class_index);
1002  if (error)
1003  goto done;
1004 
1005 done:
1006  return error;
1007 }
1008 
1009 /* *INDENT-OFF* */
1010 VLIB_CLI_COMMAND (set_hw_class_command, static) = {
1011  .path = "set interface hw-class",
1012  .short_help = "Set interface hardware class",
1013  .function = set_hw_class,
1014 };
1015 /* *INDENT-ON* */
1016 
1017 static clib_error_t *
1019 {
1020  return 0;
1021 }
1022 
1024 
1025 static clib_error_t *
1027  unformat_input_t * input,
1028  vlib_cli_command_t * cmd)
1029 {
1030  u32 hw_if_index;
1031  u32 new_dev_instance;
1032  vnet_main_t *vnm = vnet_get_main ();
1033  int rv;
1034 
1035  if (!unformat_user (input, unformat_vnet_hw_interface, vnm, &hw_if_index))
1036  return clib_error_return (0, "unknown hardware interface `%U'",
1037  format_unformat_error, input);
1038 
1039  if (!unformat (input, "%d", &new_dev_instance))
1040  return clib_error_return (0, "new dev instance missing");
1041 
1042  rv = vnet_interface_name_renumber (hw_if_index, new_dev_instance);
1043 
1044  switch (rv)
1045  {
1046  case 0:
1047  break;
1048 
1049  default:
1050  return clib_error_return (0, "vnet_interface_name_renumber returned %d",
1051  rv);
1052 
1053  }
1054 
1055  return 0;
1056 }
1057 
1058 
1059 /* *INDENT-OFF* */
1060 VLIB_CLI_COMMAND (renumber_interface_command, static) = {
1061  .path = "renumber interface",
1062  .short_help = "renumber interface <interface> <new-dev-instance>",
1063  .function = renumber_interface_command_fn,
1064 };
1065 /* *INDENT-ON* */
1066 
1067 static clib_error_t *
1069  unformat_input_t * input, vlib_cli_command_t * cmd)
1070 {
1071  vnet_main_t *vnm = vnet_get_main ();
1072  u32 hw_if_index;
1075  ethernet_interface_t *eif;
1076 
1077  if (unformat (input, "on %U",
1078  unformat_vnet_hw_interface, vnm, &hw_if_index))
1079  ;
1080  else if (unformat (input, "off %U",
1081  unformat_ethernet_interface, vnm, &hw_if_index))
1082  flags = 0;
1083  else
1084  return clib_error_return (0, "unknown input `%U'",
1085  format_unformat_error, input);
1086 
1087  eif = ethernet_get_interface (em, hw_if_index);
1088  if (!eif)
1089  return clib_error_return (0, "not supported");
1090 
1091  ethernet_set_flags (vnm, hw_if_index, flags);
1092  return 0;
1093 }
1094 
1095 /* *INDENT-OFF* */
1096 VLIB_CLI_COMMAND (set_interface_promiscuous_cmd, static) = {
1097  .path = "set interface promiscuous",
1098  .short_help = "set interface promiscuous [on|off] <interface>",
1099  .function = promiscuous_cmd,
1100 };
1101 /* *INDENT-ON* */
1102 
1103 static clib_error_t *
1105 {
1106  vnet_main_t *vnm = vnet_get_main ();
1107  u32 hw_if_index, sw_if_index, mtu;
1109  u32 mtus[VNET_N_MTU] = { 0, 0, 0, 0 };
1110 
1111  if (unformat (input, "%d %U", &mtu,
1112  unformat_vnet_hw_interface, vnm, &hw_if_index))
1113  {
1114  /*
1115  * Change physical MTU on interface. Only supported for Ethernet
1116  * interfaces
1117  */
1118  vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1119  ethernet_interface_t *eif = ethernet_get_interface (em, hw_if_index);
1120 
1121  if (!eif)
1122  return clib_error_return (0, "not supported");
1123 
1124  if (mtu < hi->min_supported_packet_bytes)
1125  return clib_error_return (0, "Invalid mtu (%d): "
1126  "must be >= min pkt bytes (%d)", mtu,
1128 
1129  if (mtu > hi->max_supported_packet_bytes)
1130  return clib_error_return (0, "Invalid mtu (%d): must be <= (%d)", mtu,
1132 
1133  vnet_hw_interface_set_mtu (vnm, hw_if_index, mtu);
1134  goto done;
1135  }
1136  else if (unformat (input, "packet %d %U", &mtu,
1137  unformat_vnet_sw_interface, vnm, &sw_if_index))
1138  /* Set default packet MTU (including L3 header */
1139  mtus[VNET_MTU_L3] = mtu;
1140  else if (unformat (input, "ip4 %d %U", &mtu,
1141  unformat_vnet_sw_interface, vnm, &sw_if_index))
1142  mtus[VNET_MTU_IP4] = mtu;
1143  else if (unformat (input, "ip6 %d %U", &mtu,
1144  unformat_vnet_sw_interface, vnm, &sw_if_index))
1145  mtus[VNET_MTU_IP6] = mtu;
1146  else if (unformat (input, "mpls %d %U", &mtu,
1147  unformat_vnet_sw_interface, vnm, &sw_if_index))
1148  mtus[VNET_MTU_MPLS] = mtu;
1149  else
1150  return clib_error_return (0, "unknown input `%U'",
1151  format_unformat_error, input);
1152 
1153  vnet_sw_interface_set_protocol_mtu (vnm, sw_if_index, mtus);
1154 
1155 done:
1156  return 0;
1157 }
1158 
1159 /* *INDENT-OFF* */
1160 VLIB_CLI_COMMAND (set_interface_mtu_cmd, static) = {
1161  .path = "set interface mtu",
1162  .short_help = "set interface mtu [packet|ip4|ip6|mpls] <value> <interface>",
1163  .function = mtu_cmd,
1164 };
1165 /* *INDENT-ON* */
1166 
1167 static clib_error_t *
1169  vlib_cli_command_t * cmd)
1170 {
1171  vnet_main_t *vnm = vnet_get_main ();
1172  vnet_sw_interface_t *si = NULL;
1173  clib_error_t *error = 0;
1174  u32 sw_if_index = ~0;
1175  u8 mac[6] = { 0 };
1176 
1177  if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
1178  {
1179  error = clib_error_return (0, "unknown interface `%U'",
1180  format_unformat_error, input);
1181  goto done;
1182  }
1183  if (!unformat_user (input, unformat_ethernet_address, mac))
1184  {
1185  error = clib_error_return (0, "expected mac address `%U'",
1186  format_unformat_error, input);
1187  goto done;
1188  }
1189  si = vnet_get_sw_interface (vnm, sw_if_index);
1190  error = vnet_hw_interface_change_mac_address (vnm, si->hw_if_index, mac);
1191 done:
1192  return error;
1193 }
1194 
1195 /*?
1196  * The '<em>set interface mac address </em>' command allows to set MAC address of given interface.
1197  * In case of NIC interfaces the one has to support MAC address change. A side effect of MAC address
1198  * change are changes of MAC addresses in FIB tables (ipv4 and ipv6).
1199  *
1200  * @cliexpar
1201  * @parblock
1202  * Example of how to change MAC Address of interface:
1203  * @cliexcmd{set interface mac address GigabitEthernet0/8/0 aa:bb:cc:dd:ee:01}
1204  * @cliexcmd{set interface mac address host-vpp0 aa:bb:cc:dd:ee:02}
1205  * @cliexcmd{set interface mac address tap-0 aa:bb:cc:dd:ee:03}
1206  * @cliexcmd{set interface mac address pg0 aa:bb:cc:dd:ee:04}
1207  * @endparblock
1208 ?*/
1209 /* *INDENT-OFF* */
1210 VLIB_CLI_COMMAND (set_interface_mac_address_cmd, static) = {
1211  .path = "set interface mac address",
1212  .short_help = "set interface mac address <interface> <mac-address>",
1213  .function = set_interface_mac_address,
1214 };
1215 /* *INDENT-ON* */
1216 
1217 static clib_error_t *
1219 {
1220  vnet_main_t *vnm = vnet_get_main ();
1221  u32 sw_if_index = ~0;
1222  u8 *tag = 0;
1223 
1224  if (!unformat (input, "%U %s", unformat_vnet_sw_interface,
1225  vnm, &sw_if_index, &tag))
1226  return clib_error_return (0, "unknown input `%U'",
1227  format_unformat_error, input);
1228 
1229  vnet_set_sw_interface_tag (vnm, tag, sw_if_index);
1230 
1231  return 0;
1232 }
1233 
1234 /* *INDENT-OFF* */
1235 VLIB_CLI_COMMAND (set_tag_command, static) = {
1236  .path = "set interface tag",
1237  .short_help = "set interface tag <interface> <tag>",
1238  .function = set_tag,
1239 };
1240 /* *INDENT-ON* */
1241 
1242 static clib_error_t *
1244  vlib_cli_command_t * cmd)
1245 {
1246  vnet_main_t *vnm = vnet_get_main ();
1247  u32 sw_if_index = ~0;
1248 
1249  if (!unformat (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index))
1250  return clib_error_return (0, "unknown input `%U'",
1251  format_unformat_error, input);
1252 
1253  vnet_clear_sw_interface_tag (vnm, sw_if_index);
1254 
1255  return 0;
1256 }
1257 
1258 /* *INDENT-OFF* */
1259 VLIB_CLI_COMMAND (clear_tag_command, static) = {
1260  .path = "clear interface tag",
1261  .short_help = "clear interface tag <interface>",
1262  .function = clear_tag,
1263 };
1264 /* *INDENT-ON* */
1265 
1266 static clib_error_t *
1268  unformat_input_t * input, vlib_cli_command_t * cmd)
1269 {
1270  vnet_main_t *vnm = vnet_get_main ();
1271  u32 sw_if_index = ~0;
1272  u8 enable = 0;
1273 
1274  if (!unformat (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index));
1275  else if (unformat (input, "enable"))
1276  enable = 1;
1277  else if (unformat (input, "disable"))
1278  enable = 0;
1279  else
1280  return clib_error_return (0, "unknown input: `%U'",
1281  format_unformat_error, input);
1282 
1283  if (~0 == sw_if_index)
1284  return clib_error_return (0, "specify an interface: `%U'",
1285  format_unformat_error, input);
1286 
1287  vnet_sw_interface_ip_directed_broadcast (vnm, sw_if_index, enable);
1288 
1289  return 0;
1290 }
1291 
1292 /*?
1293  * This command is used to enable/disable IP directed broadcast
1294  * If directed broadcast is enabled a packet sent to the interface's
1295  * subnet broadcast address will be sent L2 broadcast on the interface,
1296  * otherwise it is dropped.
1297  ?*/
1298 /* *INDENT-OFF* */
1299 VLIB_CLI_COMMAND (set_ip_directed_broadcast_command, static) = {
1300  .path = "set interface ip directed-broadcast",
1301  .short_help = "set interface enable <interface> <enable|disable>",
1302  .function = set_ip_directed_broadcast,
1303 };
1304 /* *INDENT-ON* */
1305 
1306 static clib_error_t *
1309 {
1310  vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
1311  vnet_device_class_t *dev_class =
1313  clib_error_t *error;
1314  vnet_hw_interface_rx_mode old_mode;
1315  int rv;
1316 
1318  mode = hw->default_rx_mode;
1319 
1320  rv = vnet_hw_interface_get_rx_mode (vnm, hw_if_index, queue_id, &old_mode);
1321  switch (rv)
1322  {
1323  case 0:
1324  if (old_mode == mode)
1325  return 0; /* same rx-mode, no change */
1326  break;
1327  case VNET_API_ERROR_INVALID_INTERFACE:
1328  return clib_error_return (0, "invalid interface");
1329  case VNET_API_ERROR_INVALID_QUEUE:
1330  return clib_error_return (0, "invalid queue");
1331  default:
1332  return clib_error_return (0, "unknown error");
1333  }
1334 
1335  if (dev_class->rx_mode_change_function)
1336  {
1337  error = dev_class->rx_mode_change_function (vnm, hw_if_index, queue_id,
1338  mode);
1339  if (error)
1340  return (error);
1341  }
1342 
1343  rv = vnet_hw_interface_set_rx_mode (vnm, hw_if_index, queue_id, mode);
1344  switch (rv)
1345  {
1346  case 0:
1347  break;
1348  case VNET_API_ERROR_UNSUPPORTED:
1349  return clib_error_return (0, "unsupported");
1350  case VNET_API_ERROR_INVALID_INTERFACE:
1351  return clib_error_return (0, "invalid interface");
1352  case VNET_API_ERROR_INVALID_QUEUE:
1353  return clib_error_return (0, "invalid queue");
1354  default:
1355  return clib_error_return (0, "unknown error");
1356  }
1357 
1358  return 0;
1359 }
1360 
1361 clib_error_t *
1363  u8 queue_id_valid, u32 queue_id,
1365 {
1366  clib_error_t *error = 0;
1367  vnet_hw_interface_t *hw;
1368  int i;
1369 
1370  hw = vnet_get_hw_interface (vnm, hw_if_index);
1371 
1372  if (queue_id_valid == 0)
1373  {
1374  for (i = 0; i < vec_len (hw->dq_runtime_index_by_queue); i++)
1375  {
1376  error = set_hw_interface_rx_mode (vnm, hw_if_index, i, mode);
1377  if (error)
1378  break;
1379  }
1380  hw->default_rx_mode = mode;
1381  }
1382  else
1383  error = set_hw_interface_rx_mode (vnm, hw_if_index, queue_id, mode);
1384 
1385  return (error);
1386 }
1387 
1388 static clib_error_t *
1390  vlib_cli_command_t * cmd)
1391 {
1392  clib_error_t *error = 0;
1393  unformat_input_t _line_input, *line_input = &_line_input;
1394  vnet_main_t *vnm = vnet_get_main ();
1395  u32 hw_if_index = (u32) ~ 0;
1396  u32 queue_id = (u32) ~ 0;
1398  u8 queue_id_valid = 0;
1399 
1400  if (!unformat_user (input, unformat_line_input, line_input))
1401  return 0;
1402 
1403  while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1404  {
1405  if (unformat
1406  (line_input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
1407  ;
1408  else if (unformat (line_input, "queue %d", &queue_id))
1409  queue_id_valid = 1;
1410  else if (unformat (line_input, "polling"))
1412  else if (unformat (line_input, "interrupt"))
1414  else if (unformat (line_input, "adaptive"))
1416  else
1417  {
1418  error = clib_error_return (0, "parse error: '%U'",
1419  format_unformat_error, line_input);
1420  unformat_free (line_input);
1421  return error;
1422  }
1423  }
1424 
1425  unformat_free (line_input);
1426 
1427  if (hw_if_index == (u32) ~ 0)
1428  return clib_error_return (0, "please specify valid interface name");
1429 
1431  return clib_error_return (0, "please specify valid rx-mode");
1432 
1433  error = set_hw_interface_change_rx_mode (vnm, hw_if_index, queue_id_valid,
1434  queue_id, mode);
1435 
1436  return (error);
1437 }
1438 
1439 /*?
1440  * This command is used to assign the RX packet processing mode (polling,
1441  * interrupt, adaptive) of the a given interface, and optionally a
1442  * given queue. If the '<em>queue</em>' is not provided, the '<em>mode</em>'
1443  * is applied to all queues of the interface. Not all interfaces support
1444  * all modes. To display the current rx-mode use the command
1445  * '<em>show interface rx-placement</em>'.
1446  *
1447  * @cliexpar
1448  * Example of how to assign rx-mode to all queues on an interface:
1449  * @cliexcmd{set interface rx-mode VirtualEthernet0/0/12 polling}
1450  * Example of how to assign rx-mode to one queue of an interface:
1451  * @cliexcmd{set interface rx-mode VirtualEthernet0/0/12 queue 0 interrupt}
1452  * Example of how to display the rx-mode of all interfaces:
1453  * @cliexstart{show interface rx-placement}
1454  * Thread 1 (vpp_wk_0):
1455  * node dpdk-input:
1456  * GigabitEthernet7/0/0 queue 0 (polling)
1457  * node vhost-user-input:
1458  * VirtualEthernet0/0/12 queue 0 (interrupt)
1459  * VirtualEthernet0/0/12 queue 2 (polling)
1460  * VirtualEthernet0/0/13 queue 0 (polling)
1461  * VirtualEthernet0/0/13 queue 2 (polling)
1462  * Thread 2 (vpp_wk_1):
1463  * node dpdk-input:
1464  * GigabitEthernet7/0/1 queue 0 (polling)
1465  * node vhost-user-input:
1466  * VirtualEthernet0/0/12 queue 1 (polling)
1467  * VirtualEthernet0/0/12 queue 3 (polling)
1468  * VirtualEthernet0/0/13 queue 1 (polling)
1469  * VirtualEthernet0/0/13 queue 3 (polling)
1470  * @cliexend
1471 ?*/
1472 /* *INDENT-OFF* */
1473 VLIB_CLI_COMMAND (cmd_set_if_rx_mode,static) = {
1474  .path = "set interface rx-mode",
1475  .short_help = "set interface rx-mode <interface> [queue <n>] [polling | interrupt | adaptive]",
1476  .function = set_interface_rx_mode,
1477 };
1478 /* *INDENT-ON* */
1479 
1480 static clib_error_t *
1482  vlib_cli_command_t * cmd)
1483 {
1484  u8 *s = 0;
1485  vnet_main_t *vnm = vnet_get_main ();
1488  vlib_node_t *pn = vlib_get_node_by_name (vm, (u8 *) "device-input");
1489  uword si;
1490  int index = 0;
1491 
1492  /* *INDENT-OFF* */
1493  foreach_vlib_main (({
1495  ({
1496  rt = vlib_node_get_runtime_data (this_vlib_main, si);
1497 
1498  if (vec_len (rt->devices_and_queues))
1499  s = format (s, " node %U:\n", format_vlib_node_name, vm, si);
1500 
1501  vec_foreach (dq, rt->devices_and_queues)
1502  {
1503  vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm,
1504  dq->hw_if_index);
1505  s = format (s, " %U queue %u (%U)\n",
1506  format_vnet_sw_if_index_name, vnm, hi->sw_if_index,
1507  dq->queue_id,
1508  format_vnet_hw_interface_rx_mode, dq->mode);
1509  }
1510  }));
1511  if (vec_len (s) > 0)
1512  {
1513  vlib_cli_output(vm, "Thread %u (%s):\n%v", index,
1514  vlib_worker_threads[index].name, s);
1515  vec_reset_length (s);
1516  }
1517  index++;
1518  }));
1519  /* *INDENT-ON* */
1520 
1521  vec_free (s);
1522  return 0;
1523 }
1524 
1525 /*?
1526  * This command is used to display the interface and queue worker
1527  * thread placement.
1528  *
1529  * @cliexpar
1530  * Example of how to display the interface placement:
1531  * @cliexstart{show interface rx-placement}
1532  * Thread 1 (vpp_wk_0):
1533  * node dpdk-input:
1534  * GigabitEthernet7/0/0 queue 0 (polling)
1535  * node vhost-user-input:
1536  * VirtualEthernet0/0/12 queue 0 (polling)
1537  * VirtualEthernet0/0/12 queue 2 (polling)
1538  * VirtualEthernet0/0/13 queue 0 (polling)
1539  * VirtualEthernet0/0/13 queue 2 (polling)
1540  * Thread 2 (vpp_wk_1):
1541  * node dpdk-input:
1542  * GigabitEthernet7/0/1 queue 0 (polling)
1543  * node vhost-user-input:
1544  * VirtualEthernet0/0/12 queue 1 (polling)
1545  * VirtualEthernet0/0/12 queue 3 (polling)
1546  * VirtualEthernet0/0/13 queue 1 (polling)
1547  * VirtualEthernet0/0/13 queue 3 (polling)
1548  * @cliexend
1549 ?*/
1550 /* *INDENT-OFF* */
1551 VLIB_CLI_COMMAND (show_interface_rx_placement, static) = {
1552  .path = "show interface rx-placement",
1553  .short_help = "show interface rx-placement",
1554  .function = show_interface_rx_placement_fn,
1555 };
1556 /* *INDENT-ON* */
1557 
1558 clib_error_t *
1559 set_hw_interface_rx_placement (u32 hw_if_index, u32 queue_id,
1560  u32 thread_index, u8 is_main)
1561 {
1562  vnet_main_t *vnm = vnet_get_main ();
1564  clib_error_t *error = 0;
1566  int rv;
1567 
1568  if (is_main)
1569  thread_index = 0;
1570  else
1571  thread_index += vdm->first_worker_thread_index;
1572 
1573  if (thread_index > vdm->last_worker_thread_index)
1574  return clib_error_return (0,
1575  "please specify valid worker thread or main");
1576 
1577  rv = vnet_hw_interface_get_rx_mode (vnm, hw_if_index, queue_id, &mode);
1578 
1579  if (rv)
1580  return clib_error_return (0, "not found");
1581 
1582  rv = vnet_hw_interface_unassign_rx_thread (vnm, hw_if_index, queue_id);
1583 
1584  if (rv)
1585  return clib_error_return (0, "not found");
1586 
1587  vnet_hw_interface_assign_rx_thread (vnm, hw_if_index, queue_id,
1588  thread_index);
1589  vnet_hw_interface_set_rx_mode (vnm, hw_if_index, queue_id, mode);
1590 
1591  return (error);
1592 }
1593 
1594 static clib_error_t *
1596  vlib_cli_command_t * cmd)
1597 {
1598  clib_error_t *error = 0;
1599  unformat_input_t _line_input, *line_input = &_line_input;
1600  vnet_main_t *vnm = vnet_get_main ();
1601  u32 hw_if_index = (u32) ~ 0;
1602  u32 queue_id = (u32) 0;
1603  u32 thread_index = (u32) ~ 0;
1604  u8 is_main = 0;
1605 
1606  if (!unformat_user (input, unformat_line_input, line_input))
1607  return 0;
1608 
1609  while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1610  {
1611  if (unformat
1612  (line_input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index))
1613  ;
1614  else if (unformat (line_input, "queue %d", &queue_id))
1615  ;
1616  else if (unformat (line_input, "main", &thread_index))
1617  is_main = 1;
1618  else if (unformat (line_input, "worker %d", &thread_index))
1619  ;
1620  else
1621  {
1622  error = clib_error_return (0, "parse error: '%U'",
1623  format_unformat_error, line_input);
1624  unformat_free (line_input);
1625  return error;
1626  }
1627  }
1628 
1629  unformat_free (line_input);
1630 
1631  if (hw_if_index == (u32) ~ 0)
1632  return clib_error_return (0, "please specify valid interface name");
1633 
1634  error = set_hw_interface_rx_placement (hw_if_index, queue_id, thread_index,
1635  is_main);
1636 
1637  return (error);
1638 }
1639 
1640 /*?
1641  * This command is used to assign a given interface, and optionally a
1642  * given queue, to a different thread. If the '<em>queue</em>' is not provided,
1643  * it defaults to 0. The '<em>worker</em>' parameter is zero based and the index
1644  * in the thread name, for example, 0 in the thread name '<em>vpp_wk_0</em>'.
1645  *
1646  * @cliexpar
1647  * Example of how to display the interface placement:
1648  * @cliexstart{show interface rx-placement}
1649  * Thread 1 (vpp_wk_0):
1650  * node dpdk-input:
1651  * GigabitEthernet7/0/0 queue 0 (polling)
1652  * node vhost-user-input:
1653  * VirtualEthernet0/0/12 queue 0 (polling)
1654  * VirtualEthernet0/0/12 queue 2 (polling)
1655  * VirtualEthernet0/0/13 queue 0 (polling)
1656  * VirtualEthernet0/0/13 queue 2 (polling)
1657  * Thread 2 (vpp_wk_1):
1658  * node dpdk-input:
1659  * GigabitEthernet7/0/1 queue 0 (polling)
1660  * node vhost-user-input:
1661  * VirtualEthernet0/0/12 queue 1 (polling)
1662  * VirtualEthernet0/0/12 queue 3 (polling)
1663  * VirtualEthernet0/0/13 queue 1 (polling)
1664  * VirtualEthernet0/0/13 queue 3 (polling)
1665  * @cliexend
1666  * Example of how to assign a interface and queue to a worker thread:
1667  * @cliexcmd{set interface rx-placement VirtualEthernet0/0/12 queue 1 worker 0}
1668  * Example of how to display the interface placement:
1669  * @cliexstart{show interface rx-placement}
1670  * Thread 1 (vpp_wk_0):
1671  * node dpdk-input:
1672  * GigabitEthernet7/0/0 queue 0 (polling)
1673  * node vhost-user-input:
1674  * VirtualEthernet0/0/12 queue 0 (polling)
1675  * VirtualEthernet0/0/12 queue 1 (polling)
1676  * VirtualEthernet0/0/12 queue 2 (polling)
1677  * VirtualEthernet0/0/13 queue 0 (polling)
1678  * VirtualEthernet0/0/13 queue 2 (polling)
1679  * Thread 2 (vpp_wk_1):
1680  * node dpdk-input:
1681  * GigabitEthernet7/0/1 queue 0 (polling)
1682  * node vhost-user-input:
1683  * VirtualEthernet0/0/12 queue 3 (polling)
1684  * VirtualEthernet0/0/13 queue 1 (polling)
1685  * VirtualEthernet0/0/13 queue 3 (polling)
1686  * @cliexend
1687 ?*/
1688 /* *INDENT-OFF* */
1689 VLIB_CLI_COMMAND (cmd_set_if_rx_placement,static) = {
1690  .path = "set interface rx-placement",
1691  .short_help = "set interface rx-placement <interface> [queue <n>] "
1692  "[worker <n> | main]",
1693  .function = set_interface_rx_placement,
1694  .is_mp_safe = 1,
1695 };
1696 /* *INDENT-ON* */
1697 
1698 int
1700 {
1702  vlib_rx_or_tx_t rxtx = a->rxtx;
1703  vnet_pcap_t *pp = &vm->pcap[rxtx];
1704  pcap_main_t *pm = &pp->pcap_main;
1705 
1706  if (a->status)
1707  {
1708  if (pp->pcap_enable == 0)
1709  {
1711  (vm, "pcap %s dispatch capture enabled: %d of %d pkts...",
1712  (rxtx == VLIB_RX) ? "rx" : "tx",
1714  vlib_cli_output (vm, "capture to file %s", pm->file_name);
1715  }
1716  else
1717  vlib_cli_output (vm, "pcap %s dispatch capture disabled",
1718  (rxtx == VLIB_RX) ? "rx" : "tx");
1719  return 0;
1720  }
1721 
1722  /* Consistency checks */
1723 
1724  /* Enable w/ capture already enabled not allowed */
1725  if (pp->pcap_enable && a->enable)
1726  return VNET_API_ERROR_INVALID_VALUE;
1727 
1728  /* Disable capture with capture already disabled, not interesting */
1729  if (pp->pcap_enable == 0 && a->enable == 0)
1730  return VNET_API_ERROR_VALUE_EXIST;
1731 
1732  /* Change number of packets to capture while capturing */
1733  if (pp->pcap_enable && a->enable
1735  return VNET_API_ERROR_INVALID_VALUE_2;
1736 
1737  if (a->enable)
1738  {
1739  /* Clean up from previous run, if any */
1740  vec_free (pm->file_name);
1741  vec_free (pm->pcap_data);
1742  memset (pm, 0, sizeof (*pm));
1743 
1745  if (pm->lock == 0)
1746  clib_spinlock_init (&(pm->lock));
1747 
1748  if (a->filename == 0)
1749  a->filename = format (0, "/tmp/%s.pcap%c",
1750  (rxtx == VLIB_RX) ? "rx" : "tx", 0);
1751 
1752  pm->file_name = (char *) a->filename;
1753  pm->n_packets_captured = 0;
1754  pm->packet_type = PCAP_PACKET_TYPE_ethernet;
1756  pp->pcap_sw_if_index = a->sw_if_index;
1757  pp->pcap_enable = 1;
1758  }
1759  else
1760  {
1761  pp->pcap_enable = 0;
1762  if (pm->n_packets_captured)
1763  {
1764  clib_error_t *error;
1766  vlib_cli_output (vm, "Write %d packets to %s, and stop capture...",
1767  pm->n_packets_captured, pm->file_name);
1768  error = pcap_write (pm);
1769  if (pm->file_descriptor >= 0)
1770  pcap_close (pm);
1771  /* Report I/O errors... */
1772  if (error)
1773  {
1774  clib_error_report (error);
1775  return VNET_API_ERROR_SYSCALL_ERROR_1;
1776  }
1777  return 0;
1778  }
1779  else
1780  return VNET_API_ERROR_NO_SUCH_ENTRY;
1781  }
1782 
1783  return 0;
1784 }
1785 
1786 static clib_error_t *
1788  unformat_input_t * input,
1789  vlib_cli_command_t * cmd, vlib_rx_or_tx_t rxtx)
1790 {
1791  unformat_input_t _line_input, *line_input = &_line_input;
1793  vnet_main_t *vnm = vnet_get_main ();
1794  u8 *filename = 0;
1795  u32 max = 1000;
1796  int rv;
1797  int enable = 0;
1798  int status = 0;
1799  u32 sw_if_index = 0;
1800 
1801  /* Get a line of input. */
1802  if (!unformat_user (input, unformat_line_input, line_input))
1803  return 0;
1804 
1805  while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1806  {
1807  if (unformat (line_input, "on %=", &enable, 1))
1808  ;
1809  else if (unformat (line_input, "enable %=", &enable, 1))
1810  ;
1811  else if (unformat (line_input, "off %=", &enable, 0))
1812  ;
1813  else if (unformat (line_input, "disable %=", &enable, 0))
1814  ;
1815  else if (unformat (line_input, "max %d", &max))
1816  ;
1817  else if (unformat (line_input, "packets-to-capture %d", &max))
1818  ;
1819  else if (unformat (line_input, "file %U", unformat_vlib_tmpfile,
1820  &filename))
1821  ;
1822  else if (unformat (line_input, "status %=", &status, 1))
1823  ;
1824  else if (unformat (line_input, "intfc %U",
1825  unformat_vnet_sw_interface, vnm, &sw_if_index))
1826  ;
1827  else if (unformat (line_input, "intfc any"))
1828  sw_if_index = 0;
1829  else
1830  {
1831  return clib_error_return (0, "unknown input `%U'",
1832  format_unformat_error, line_input);
1833  }
1834  }
1835 
1836  unformat_free (line_input);
1837 
1838  /* no need for memset (a, 0, sizeof (*a)), set all fields here. */
1839  a->filename = filename;
1840  a->enable = enable;
1841  a->status = status;
1842  a->packets_to_capture = max;
1843  a->rxtx = rxtx;
1844  a->sw_if_index = sw_if_index;
1845 
1847 
1848  switch (rv)
1849  {
1850  case 0:
1851  break;
1852 
1853  case VNET_API_ERROR_INVALID_VALUE:
1854  return clib_error_return (0, "dispatch trace already enabled...");
1855 
1856  case VNET_API_ERROR_VALUE_EXIST:
1857  return clib_error_return (0, "dispatch trace already disabled...");
1858 
1859  case VNET_API_ERROR_INVALID_VALUE_2:
1860  return clib_error_return
1861  (0, "can't change number of records to capture while tracing...");
1862 
1863  case VNET_API_ERROR_SYSCALL_ERROR_1:
1864  return clib_error_return (0, "I/O writing trace capture...");
1865 
1866  case VNET_API_ERROR_NO_SUCH_ENTRY:
1867  return clib_error_return (0, "No packets captured...");
1868 
1869  default:
1870  vlib_cli_output (vm, "WARNING: trace configure returned %d", rv);
1871  break;
1872  }
1873  return 0;
1874 }
1875 
1876 static clib_error_t *
1878  unformat_input_t * input, vlib_cli_command_t * cmd)
1879 {
1880  return pcap_trace_command_internal (vm, input, cmd, VLIB_RX);
1881 }
1882 
1883 static clib_error_t *
1885  unformat_input_t * input, vlib_cli_command_t * cmd)
1886 {
1887  return pcap_trace_command_internal (vm, input, cmd, VLIB_TX);
1888 }
1889 
1890 /*?
1891  * This command is used to start or stop a packet capture, or show
1892  * the status of packet capture. Note that both "pcap rx trace" and
1893  * "pcap tx trace" are implemented. The command syntax is identical,
1894  * simply substitute rx for tx as needed.
1895  *
1896  * This command has the following optional parameters:
1897  *
1898  * - <b>on|off</b> - Used to start or stop a packet capture.
1899  *
1900  * - <b>max <nn></b> - Depth of local buffer. Once '<em>nn</em>' number
1901  * of packets have been received, buffer is flushed to file. Once another
1902  * '<em>nn</em>' number of packets have been received, buffer is flushed
1903  * to file, overwriting previous write. If not entered, value defaults
1904  * to 100. Can only be updated if packet capture is off.
1905  *
1906  * - <b>intfc <interface>|any</b> - Used to specify a given interface,
1907  * or use '<em>any</em>' to run packet capture on all interfaces.
1908  * '<em>any</em>' is the default if not provided. Settings from a previous
1909  * packet capture are preserved, so '<em>any</em>' can be used to reset
1910  * the interface setting.
1911  *
1912  * - <b>file <name></b> - Used to specify the output filename. The file will
1913  * be placed in the '<em>/tmp</em>' directory, so only the filename is
1914  * supported. Directory should not be entered. If file already exists, file
1915  * will be overwritten. If no filename is provided, '<em>/tmp/vpe.pcap</em>'
1916  * will be used. Can only be updated if packet capture is off.
1917  *
1918  * - <b>status</b> - Displays the current status and configured attributes
1919  * associated with a packet capture. If packet capture is in progress,
1920  * '<em>status</em>' also will return the number of packets currently in
1921  * the local buffer. All additional attributes entered on command line
1922  * with '<em>status</em>' will be ignored and not applied.
1923  *
1924  * @cliexpar
1925  * Example of how to display the status of a tx packet capture when off:
1926  * @cliexstart{pcap tx trace status}
1927  * max is 100, for any interface to file /tmp/vpe.pcap
1928  * pcap tx capture is off...
1929  * @cliexend
1930  * Example of how to start a tx packet capture:
1931  * @cliexstart{pcap tx trace on max 35 intfc GigabitEthernet0/8/0 file vppTest.pcap}
1932  * pcap tx capture on...
1933  * @cliexend
1934  * Example of how to display the status of a tx packet capture in progress:
1935  * @cliexstart{pcap tx trace status}
1936  * max is 35, for interface GigabitEthernet0/8/0 to file /tmp/vppTest.pcap
1937  * pcap tx capture is on: 20 of 35 pkts...
1938  * @cliexend
1939  * Example of how to stop a tx packet capture:
1940  * @cliexstart{vppctl pcap tx trace off}
1941  * captured 21 pkts...
1942  * saved to /tmp/vppTest.pcap...
1943  * @cliexend
1944 ?*/
1945 /* *INDENT-OFF* */
1946 
1947 VLIB_CLI_COMMAND (pcap_tx_trace_command, static) = {
1948  .path = "pcap tx trace",
1949  .short_help =
1950  "pcap tx trace [on|off] [max <nn>] [intfc <interface>|any] [file <name>] [status]",
1951  .function = pcap_tx_trace_command_fn,
1952 };
1953 VLIB_CLI_COMMAND (pcap_rx_trace_command, static) = {
1954  .path = "pcap rx trace",
1955  .short_help =
1956  "pcap rx trace [on|off] [max <nn>] [intfc <interface>|any] [file <name>] [status]",
1957  .function = pcap_rx_trace_command_fn,
1958 };
1959 /* *INDENT-ON* */
1960 
1961 
1962 /*
1963  * fd.io coding-style-patch-verification: ON
1964  *
1965  * Local Variables:
1966  * eval: (c-set-style "gnu")
1967  * End:
1968  */
uword * sibling_bitmap
Definition: node.h:339
unformat_function_t unformat_vnet_hw_interface
#define foreach_ip_interface_address(lm, a, sw_if_index, loop, body)
Definition: lookup.h:182
static clib_error_t * clear_interface_counters(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
u8 * format_l2_input_features(u8 *s, va_list *args)
Definition: l2_input.c:68
vmrglw vmrglh hi
pcap_main_t pcap_main
Definition: main.h:65
format_function_t format_vnet_sw_interface
static clib_error_t * create_sub_interfaces(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
#define hash_set(h, key, value)
Definition: hash.h:255
char * file_name
File name of pcap output.
Definition: pcap.h:162
u32 flags
Definition: vhost_user.h:141
static clib_error_t * promiscuous_cmd(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
static clib_error_t * set_hw_class(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
clib_error_t * set_hw_interface_rx_placement(u32 hw_if_index, u32 queue_id, u32 thread_index, u8 is_main)
static int sw_interface_name_compare(void *a1, void *a2)
void vnet_sw_interface_ip_directed_broadcast(vnet_main_t *vnm, u32 sw_if_index, u8 enable)
Definition: interface.c:696
static clib_error_t * set_state(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
int file_descriptor
File descriptor for reading/writing.
Definition: pcap.h:178
vl_api_mac_address_t mac
Definition: l2.api:490
a
Definition: bitmap.h:538
uword first_worker_thread_index
Definition: devices.h:53
u32 n_packets_to_capture
Number of packets to capture.
Definition: pcap.h:165
static ip6_fib_t * ip6_fib_get(fib_node_index_t index)
Definition: ip6_fib.h:166
static clib_error_t * set_interface_mac_address(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
vnet_main_t * vnet_get_main(void)
Definition: misc.c:46
u8 * format_l2_output_features(u8 *s, va_list *args)
Definition: l2_output.c:45
unformat_function_t unformat_hash_string
Definition: hash.h:719
vnet_interface_main_t interface_main
Definition: vnet.h:56
unsigned long u64
Definition: types.h:89
l2_input_config_t * l2input_intf_config(u32 sw_if_index)
Get a pointer to the config for the given interface.
Definition: l2_input.c:528
#define NULL
Definition: clib.h:58
static vnet_hw_interface_t * vnet_get_hw_interface(vnet_main_t *vnm, u32 hw_if_index)
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:522
word vnet_sw_interface_compare(vnet_main_t *vnm, uword sw_if_index0, uword sw_if_index1)
Definition: interface.c:1206
int vnet_interface_name_renumber(u32 sw_if_index, u32 new_show_dev_instance)
Definition: interface.c:1374
static void vnet_clear_sw_interface_tag(vnet_main_t *vnm, u32 sw_if_index)
static clib_error_t * set_tag(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
int i
static clib_error_t * renumber_interface_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
uword unformat_user(unformat_input_t *input, unformat_function_t *func,...)
Definition: unformat.c:989
#define hash_set_mem(h, key, value)
Definition: hash.h:275
clib_memset(h->entries, 0, sizeof(h->entries[0])*entries)
ip_lookup_main_t lookup_main
Definition: ip4.h:107
static vnet_sw_interface_t * vnet_get_sw_interface(vnet_main_t *vnm, u32 sw_if_index)
uword * sub_interface_sw_if_index_by_id
Definition: interface.h:553
u32 * fib_index_by_sw_if_index
Table index indexed by software interface.
Definition: ip4.h:121
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:424
unformat_function_t unformat_vnet_sw_interface
#define vec_validate_aligned(V, I, A)
Make sure vector is long enough for given index (no header, specified alignment)
Definition: vec.h:450
struct _vnet_device_class vnet_device_class_t
uword * dq_runtime_index_by_queue
Definition: interface.h:577
format_function_t format_vnet_sw_if_index_name
unsigned char u8
Definition: types.h:56
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
uword last_worker_thread_index
Definition: devices.h:54
vlib_rx_or_tx_t
Definition: defs.h:44
ethernet_main_t ethernet_main
Definition: init.c:45
vnet_hw_interface_rx_mode
Definition: interface.h:53
format_function_t format_vnet_hw_interface
uword unformat_vlib_tmpfile(unformat_input_t *input, va_list *args)
Definition: format.c:192
uword flags
Definition: clib_error.h:29
PCAP main state data structure.
Definition: pcap.h:156
clib_spinlock_t lock
spinlock to protect e.g.
Definition: pcap.h:159
void vlib_clear_combined_counters(vlib_combined_counter_main_t *cm)
Clear a collection of combined counters.
Definition: counter.c:61
#define pool_foreach(VAR, POOL, BODY)
Iterate through pool.
Definition: pool.h:493
vl_api_interface_index_t sw_if_index
Definition: gre.api:50
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:173
u32 output_sw_if_index
Definition: l2_input.h:35
static vnet_device_class_t * vnet_get_device_class(vnet_main_t *vnm, u32 dev_class_index)
#define vec_new(T, N)
Create new vector of given type and length (unspecified alignment, no header).
Definition: vec.h:311
vlib_combined_counter_main_t * combined_sw_if_counters
Definition: interface.h:842
static clib_error_t * parse_vlan_sub_interfaces(unformat_input_t *input, vnet_sw_interface_t *template)
Parse subinterface names.
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
#define clib_error_return(e, args...)
Definition: error.h:99
unsigned int u32
Definition: types.h:88
static clib_error_t * set_unnumbered(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
A collection of simple counters.
Definition: counter.h:57
void vnet_sw_interface_set_protocol_mtu(vnet_main_t *vnm, u32 sw_if_index, u32 mtu[])
Definition: interface.c:675
static clib_error_t * mtu_cmd(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
unformat_function_t unformat_line_input
Definition: format.h:283
static void clib_spinlock_init(clib_spinlock_t *p)
Definition: lock.h:61
u32 max_supported_packet_bytes
Definition: interface.h:544
int pcap_enable
Definition: main.h:63
vnet_crypto_main_t * cm
Definition: quic_crypto.c:41
vnet_hw_interface_t * hw_interfaces
Definition: interface.h:819
vlib_worker_thread_t * vlib_worker_threads
Definition: threads.c:37
#define clib_bitmap_foreach(i, ai, body)
Macro to iterate across set bits in a bitmap.
Definition: bitmap.h:361
l2_output_config_t * l2output_intf_config(u32 sw_if_index)
Get a pointer to the config for the given interface.
Definition: l2_output.c:616
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:514
u8 * pcap_data
Vector of pcap data.
Definition: pcap.h:184
u32 bd_id
Definition: gbp.api:274
int vnet_pcap_dispatch_trace_configure(vnet_pcap_dispatch_trace_args_t *a)
struct _unformat_input_t unformat_input_t
int vnet_hw_interface_get_rx_mode(vnet_main_t *vnm, u32 hw_if_index, u16 queue_id, vnet_hw_interface_rx_mode *mode)
Definition: devices.c:313
uword * sw_if_index_by_sup_and_sub
Definition: interface.h:836
vnet_sw_interface_flags_t flags
Definition: interface.h:699
clib_error_t * set_hw_interface_change_rx_mode(vnet_main_t *vnm, u32 hw_if_index, u8 queue_id_valid, u32 queue_id, vnet_hw_interface_rx_mode mode)
static clib_error_t * show_sw_interfaces(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
vlib_simple_counter_main_t * sw_if_counters
Definition: interface.h:841
word vnet_hw_interface_compare(vnet_main_t *vnm, uword hw_if_index0, uword hw_if_index1)
Definition: interface.c:1220
static clib_error_t * set_interface_rx_placement(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
void vnet_sw_interface_update_unnumbered(u32 unnumbered_sw_if_index, u32 ip_sw_if_index, u8 enable)
Definition: interface.c:1494
u32 pcap_sw_if_index
Definition: main.h:64
#define foreach_vlib_main(body)
Definition: threads.h:236
u8 name[64]
Definition: memclnt.api:152
static int compare_interface_names(void *a1, void *a2)
Definition: interface_cli.c:57
uword * hw_interface_class_by_name
Definition: interface.h:829
The IPv4 FIB.
Definition: ip4_fib.h:39
#define VNET_HW_INTERFACE_BOND_INFO_SLAVE
Definition: interface.h:564
#define UNFORMAT_END_OF_INPUT
Definition: format.h:145
vlib_main_t * vm
Definition: buffer.c:312
clib_error_t * pcap_close(pcap_main_t *pm)
Close PCAP file.
Definition: pcap.c:74
static clib_error_t * clear_tag(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
void vnet_interface_features_show(vlib_main_t *vm, u32 sw_if_index, int verbose)
Display the set of driver features configured on a specific interface Called by "show interface" hand...
Definition: feature.c:379
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:341
static ip4_fib_t * ip4_fib_get(u32 index)
Get the FIB at the given index.
Definition: ip4_fib.h:113
Definition: ip6.h:69
static clib_error_t * pcap_trace_command_internal(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd, vlib_rx_or_tx_t rxtx)
#define clib_warning(format, args...)
Definition: error.h:59
#define ETHERNET_INTERFACE_FLAG_ACCEPT_ALL
Definition: ethernet.h:141
vlib_node_t * vlib_get_node_by_name(vlib_main_t *vm, u8 *name)
Definition: node.c:45
static_always_inline l2_bridge_domain_t * l2input_bd_config(u32 bd_index)
Definition: l2_input.h:85
static void show_bond(vlib_main_t *vm)
Definition: cli.c:793
clib_error_t * pcap_write(pcap_main_t *pm)
Write PCAP file.
Definition: pcap.c:89
vl_api_vxlan_gbp_api_tunnel_mode_t mode
Definition: vxlan_gbp.api:44
static clib_error_t * show_or_clear_hw_interfaces(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: interface_cli.c:66
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:155
uword unformat_ethernet_address(unformat_input_t *input, va_list *args)
Definition: format.c:233
void vnet_hw_interface_assign_rx_thread(vnet_main_t *vnm, u32 hw_if_index, u16 queue_id, uword thread_index)
Definition: devices.c:139
ip6_main_t ip6_main
Definition: ip6_forward.c:2671
ip_lookup_main_t lookup_main
Definition: ip6.h:179
IPv4 main type.
Definition: ip4.h:105
static void vnet_set_sw_interface_tag(vnet_main_t *vnm, u8 *tag, u32 sw_if_index)
static clib_error_t * pcap_tx_trace_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Bitmaps built as vectors of machine words.
#define clib_error_report(e)
Definition: error.h:113
char * path
Definition: cli.h:95
static u8 * vnet_get_sw_interface_tag(vnet_main_t *vnm, u32 sw_if_index)
u8 * vnet_trace_dummy
Definition: trace.c:43
static void * clib_mem_alloc(uword size)
Definition: mem.h:153
uword unformat_ethernet_interface(unformat_input_t *input, va_list *args)
Definition: interface.c:257
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:23
#define vec_elt(v, i)
Get vector value at index i.
pcap_packet_type_t packet_type
Packet type.
Definition: pcap.h:168
Definition: defs.h:47
void vnet_hw_interface_set_mtu(vnet_main_t *vnm, u32 hw_if_index, u32 mtu)
Definition: interface.c:723
l2input_main_t l2input_main
Definition: l2_input.c:128
ethernet_interface_t * ethernet_get_interface(ethernet_main_t *em, u32 hw_if_index)
Definition: interface.c:886
u32 feature_bitmap
Definition: l2_bd.h:69
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
unformat_function_t unformat_vnet_sw_interface_flags
static clib_error_t * pcap_rx_trace_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
static clib_error_t * vnet_interface_cli_init(vlib_main_t *vm)
u64 uword
Definition: types.h:112
#define vec_sort_with_function(vec, f)
Sort a vector using the supplied element comparison function.
Definition: vec.h:980
static void unformat_free(unformat_input_t *i)
Definition: format.h:163
vnet_sw_interface_t * sw_interfaces
Definition: interface.h:833
static clib_error_t * set_ip_directed_broadcast(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
static clib_error_t * set_hw_interface_rx_mode(vnet_main_t *vnm, u32 hw_if_index, u32 queue_id, vnet_hw_interface_rx_mode mode)
l2_bridge_domain_t * bd_configs
Definition: l2_input.h:64
A collection of combined counters.
Definition: counter.h:188
#define hash_get_mem(h, key)
Definition: hash.h:269
int vnet_hw_interface_unassign_rx_thread(vnet_main_t *vnm, u32 hw_if_index, u16 queue_id)
Definition: devices.c:188
vnet_pcap_t pcap[VLIB_N_RX_TX]
Definition: main.h:155
u8 * format_unformat_error(u8 *s, va_list *va)
Definition: unformat.c:91
u32 min_supported_packet_bytes
Definition: interface.h:541
void vlib_clear_simple_counters(vlib_simple_counter_main_t *cm)
Clear a collection of simple counters.
Definition: counter.c:44
ip4_main_t ip4_main
Global ip4 main structure.
Definition: ip4_forward.c:921
clib_error_t * vnet_sw_interface_set_flags(vnet_main_t *vnm, u32 sw_if_index, vnet_sw_interface_flags_t flags)
Definition: interface.c:510
#define vec_foreach(var, vec)
Vector iterator.
vnet_hw_interface_rx_mode default_rx_mode
Definition: interface.h:574
vnet_device_class_t * device_classes
Definition: interface.h:826
u32 bd_find_index(bd_main_t *bdm, u32 bd_id)
Get a bridge domain.
Definition: l2_bd.c:70
int vnet_hw_interface_set_rx_mode(vnet_main_t *vnm, u32 hw_if_index, u16 queue_id, vnet_hw_interface_rx_mode mode)
Definition: devices.c:253
u32 id
Definition: udp.api:45
static clib_error_t * set_interface_rx_mode(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
clib_error_t * vnet_hw_interface_change_mac_address(vnet_main_t *vnm, u32 hw_if_index, const u8 *mac_address)
Definition: interface.c:1485
clib_error_t * vnet_create_sw_interface(vnet_main_t *vnm, vnet_sw_interface_t *template, u32 *sw_if_index)
Definition: interface.c:587
bd_main_t bd_main
Definition: l2_bd.c:44
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:59
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:768
u32 * fib_index_by_sw_if_index
Definition: ip6.h:194
u32 n_packets_captured
Number of packets currently captured.
Definition: pcap.h:171
static clib_error_t * show_interface_rx_placement_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
vnet_device_main_t vnet_device_main
Definition: devices.c:22
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:978
Definition: defs.h:46
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:171
u32 ethernet_set_flags(vnet_main_t *vnm, u32 hw_if_index, u32 flags)
Definition: interface.c:372
clib_error_t * vnet_hw_interface_set_class(vnet_main_t *vnm, u32 hw_if_index, u32 hw_class_index)
Definition: interface.c:1170
static uword pool_elts(void *v)
Number of active elements in a pool.
Definition: pool.h:128