FD.io VPP  v21.01.1
Vector Packet Processing
interface.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.c: VNET interfaces/sub-interfaces
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 #include <vnet/vnet.h>
41 #include <vnet/plugin/plugin.h>
42 #include <vnet/adj/adj.h>
43 #include <vnet/adj/adj_mcast.h>
44 #include <vnet/ip/ip.h>
45 
46 /* *INDENT-OFF* */
47 VLIB_REGISTER_LOG_CLASS (if_default_log, static) = {
48  .class_name = "interface",
49 };
50 /* *INDENT-ON* */
51 
52 #define log_debug(fmt,...) vlib_log_debug(if_default_log.class, fmt, __VA_ARGS__)
53 #define log_err(fmt,...) vlib_log_err(if_default_log.class, fmt, __VA_ARGS__)
55 {
59 
61  u32 hw_if_index,
63  flags,
65  helper_flags);
66 
70  flags,
72  helper_flags);
73 
75  u32 hw_if_index,
76  u32 hw_class_index,
77  u32 redistribute);
78 
79 typedef struct
80 {
81  /* Either sw or hw interface index. */
83 
84  /* Flags. */
87 
88 static void
90 {
92  va_arg (*va, vnet_sw_hw_interface_state_t *);
93  u32 n = va_arg (*va, u32);
94  u32 i;
95  for (i = 0; i < n; i++)
96  {
97  serialize_integer (m, s[i].sw_hw_if_index,
98  sizeof (s[i].sw_hw_if_index));
99  serialize_integer (m, s[i].flags, sizeof (s[i].flags));
100  }
101 }
102 
103 static void
105  va_list * va)
106 {
108  va_arg (*va, vnet_sw_hw_interface_state_t *);
109  u32 n = va_arg (*va, u32);
110  u32 i;
111  for (i = 0; i < n; i++)
112  {
113  unserialize_integer (m, &s[i].sw_hw_if_index,
114  sizeof (s[i].sw_hw_if_index));
115  unserialize_integer (m, &s[i].flags, sizeof (s[i].flags));
116  }
117 }
118 
121 {
123 
126 
127  return (swf);
128 }
129 
130 void
132 {
133  vnet_main_t *vnm = va_arg (*va, vnet_main_t *);
134  vnet_sw_hw_interface_state_t *sts = 0, *st;
135  vnet_sw_interface_t *sif;
136  vnet_hw_interface_t *hif;
138 
139  /* Serialize hardware interface classes since they may have changed.
140  Must do this before sending up/down flags. */
141  /* *INDENT-OFF* */
142  pool_foreach (hif, im->hw_interfaces) {
144  serialize_cstring (m, hw_class->name);
145  }
146  /* *INDENT-ON* */
147 
148  /* Send sw/hw interface state when non-zero. */
149  /* *INDENT-OFF* */
150  pool_foreach (sif, im->sw_interfaces) {
151  if (sif->flags != 0)
152  {
153  vec_add2 (sts, st, 1);
154  st->sw_hw_if_index = sif->sw_if_index;
155  st->flags = sif->flags;
156  }
157  }
158  /* *INDENT-ON* */
159 
161 
162  if (sts)
163  _vec_len (sts) = 0;
164 
165  /* *INDENT-OFF* */
166  pool_foreach (hif, im->hw_interfaces) {
167  if (hif->flags != 0)
168  {
169  vec_add2 (sts, st, 1);
170  st->sw_hw_if_index = hif->hw_if_index;
171  st->flags = vnet_hw_interface_flags_to_sw(hif->flags);
172  }
173  }
174  /* *INDENT-ON* */
175 
177 
178  vec_free (sts);
179 }
180 
183 {
185 
188 
189  return (hwf);
190 }
191 
192 void
194 {
195  vnet_main_t *vnm = va_arg (*va, vnet_main_t *);
196  vnet_sw_hw_interface_state_t *sts = 0, *st;
197 
198  /* First set interface hardware class. */
199  {
201  vnet_hw_interface_t *hif;
202  char *class_name;
203  uword *p;
205 
206  /* *INDENT-OFF* */
207  pool_foreach (hif, im->hw_interfaces) {
208  unserialize_cstring (m, &class_name);
209  p = hash_get_mem (im->hw_interface_class_by_name, class_name);
210  if (p)
211  {
213  (vnm, hif->hw_if_index, p[0], /* redistribute */ 0);
214  }
215  else
216  error = clib_error_return (0, "hw class %s AWOL?", class_name);
217 
218  if (error)
219  clib_error_report (error);
220  vec_free (class_name);
221  }
222  /* *INDENT-ON* */
223  }
224 
226  vec_foreach (st, sts)
227  vnet_sw_interface_set_flags_helper (vnm, st->sw_hw_if_index, st->flags,
228  /* no distribute */ 0);
229  vec_free (sts);
230 
232  vec_foreach (st, sts)
233  {
235  (vnm, st->sw_hw_if_index, vnet_sw_interface_flags_to_hw (st->flags),
236  /* no distribute */ 0);
237  }
238  vec_free (sts);
239 }
240 
241 static clib_error_t *
243  u32 flags,
244  _vnet_interface_function_list_elt_t **
245  elts)
246 {
247  _vnet_interface_function_list_elt_t *elt;
249  clib_error_t *error = 0;
250 
251  for (prio = VNET_ITF_FUNC_PRIORITY_LOW;
252  prio <= VNET_ITF_FUNC_PRIORITY_HIGH; prio++)
253  {
254  elt = elts[prio];
255 
256  while (elt)
257  {
258  error = elt->fp (vnm, if_index, flags);
259  if (error)
260  return error;
261  elt = elt->next_interface_function;
262  }
263  }
264  return error;
265 }
266 
267 static clib_error_t *
269  u32 is_create)
270 {
271  vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
272  vnet_hw_interface_class_t *hw_class =
274  vnet_device_class_t *dev_class =
276  clib_error_t *error = 0;
277 
278  if (hw_class->interface_add_del_function
279  && (error =
280  hw_class->interface_add_del_function (vnm, hw_if_index, is_create)))
281  return error;
282 
283  if (dev_class->interface_add_del_function
284  && (error =
285  dev_class->interface_add_del_function (vnm, hw_if_index,
286  is_create)))
287  return error;
288 
290  (vnm, hw_if_index, is_create, vnm->hw_interface_add_del_functions);
291 
292  return error;
293 }
294 
295 static clib_error_t *
297  u32 is_create)
298 {
300  (vnm, sw_if_index, is_create, vnm->sw_interface_add_del_functions);
301 }
302 
303 static clib_error_t *
307  helper_flags)
308 {
309  vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
310  vnet_hw_interface_class_t *hw_class =
312  u32 mask;
313  clib_error_t *error = 0;
314  u32 is_create =
315  (helper_flags & VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE) != 0;
316 
317  mask =
319  flags &= mask;
320 
321  /* Call hardware interface add/del callbacks. */
322  if (is_create)
323  call_hw_interface_add_del_callbacks (vnm, hw_if_index, is_create);
324 
325  /* Already in the desired state? */
326  if (!is_create && (hi->flags & mask) == flags)
327  goto done;
328 
331  {
332  /* Do hardware class (e.g. ethernet). */
333  if (hw_class->link_up_down_function
334  && (error = hw_class->link_up_down_function (vnm, hw_if_index,
335  flags)))
336  goto done;
337 
339  (vnm, hw_if_index, flags, vnm->hw_interface_link_up_down_functions);
340 
341  if (error)
342  goto done;
343  }
344 
345  hi->flags &= ~mask;
346  hi->flags |= flags;
347 
348 done:
349  if (error)
350  log_err ("hw_set_flags_helper: %U", format_clib_error, error);
351  return error;
352 }
353 
354 static clib_error_t *
358  helper_flags)
359 {
360  vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
361  u32 mask;
362  clib_error_t *error = 0;
363  u32 is_create =
364  (helper_flags & VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE) != 0;
365  u32 old_flags;
366 
368  flags &= mask;
369 
370  if (is_create)
371  {
372  error =
373  call_sw_interface_add_del_callbacks (vnm, sw_if_index, is_create);
374  if (error)
375  goto done;
376 
378  {
379  /* Notify everyone when the interface is created as admin up */
380  error = call_elf_section_interface_callbacks (vnm, sw_if_index,
381  flags,
382  vnm->
383  sw_interface_admin_up_down_functions);
384  if (error)
385  goto done;
386  }
387  }
388  else
389  {
390  vnet_sw_interface_t *si_sup = si;
391 
392  /* Check that super interface is in correct state. */
393  if (si->type == VNET_SW_INTERFACE_TYPE_SUB)
394  {
395  si_sup = vnet_get_sw_interface (vnm, si->sup_sw_if_index);
396 
397  /* Check to see if we're bringing down the soft interface and if it's parent is up */
398  if ((flags != (si_sup->flags & mask)) &&
399  (!((flags == 0)
400  && ((si_sup->flags & mask) ==
402  {
403  error = clib_error_return (0, "super-interface %U must be %U",
405  si_sup,
407  flags);
408  goto done;
409  }
410  }
411 
412  /* Already in the desired state? */
413  if ((si->flags & mask) == flags)
414  goto done;
415 
416  /* Sub-interfaces of hardware interfaces that do no redistribute,
417  do not redistribute themselves. */
418  if (si_sup->type == VNET_SW_INTERFACE_TYPE_HARDWARE)
419  {
421  vnet_get_hw_interface (vnm, si_sup->hw_if_index);
422  vnet_device_class_t *dev_class =
424  if (!dev_class->redistribute)
425  helper_flags &=
427  }
428 
429  /* set the flags now before invoking the registered clients
430  * so that the state they query is consistent with the state here notified */
431  old_flags = si->flags;
432  si->flags &= ~mask;
433  si->flags |= flags;
434  if ((flags | old_flags) & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
436  (vnm, sw_if_index, flags,
438 
439  if (error)
440  {
441  /* restore flags on error */
442  si->flags = old_flags;
443  goto done;
444  }
445 
447  {
450  vnet_hw_interface_class_t *hw_class =
452  vnet_device_class_t *dev_class =
454 
455  if ((flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) &&
457  {
458  error = clib_error_return (0, "Interface in the error state");
459  goto done;
460  }
461 
462  /* save the si admin up flag */
463  old_flags = si->flags;
464 
465  /* update si admin up flag in advance if we are going admin down */
466  if (!(flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP))
467  si->flags &= ~VNET_SW_INTERFACE_FLAG_ADMIN_UP;
468 
469  if (dev_class->admin_up_down_function
470  && (error = dev_class->admin_up_down_function (vnm,
471  si->hw_if_index,
472  flags)))
473  {
474  /* restore si admin up flag to it's original state on errors */
475  si->flags = old_flags;
476  goto done;
477  }
478 
479  if (hw_class->admin_up_down_function
480  && (error = hw_class->admin_up_down_function (vnm,
481  si->hw_if_index,
482  flags)))
483  {
484  /* restore si admin up flag to it's original state on errors */
485  si->flags = old_flags;
486  goto done;
487  }
488 
489  /* Admin down implies link down. */
490  if (!(flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
493  hi->flags &
495  helper_flags);
496  }
497  }
498 
499  si->flags &= ~mask;
500  si->flags |= flags;
501 
502 done:
503  if (error)
504  log_err ("sw_set_flags_helper: %U", format_clib_error, error);
505  return error;
506 }
507 
508 clib_error_t *
511 {
512  log_debug ("hw_set_flags: hw_if_index %u flags 0x%x", hw_if_index, flags);
514  (vnm, hw_if_index, flags,
516 }
517 
518 clib_error_t *
521 {
522  log_debug ("sw_set_flags: sw_if_index %u flags 0x%x", sw_if_index, flags);
524  (vnm, sw_if_index, flags,
526 }
527 
528 void
530 {
531  u32 flags = vnet_sw_interface_get_flags (vnm, sw_if_index);
532  log_debug ("sw_admin_up: sw_if_index %u", sw_if_index);
533 
534  if (!(flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP))
535  {
537  vnet_sw_interface_set_flags (vnm, sw_if_index, flags);
538  }
539 }
540 
541 void
543 {
544  u32 flags = vnet_sw_interface_get_flags (vnm, sw_if_index);
545  log_debug ("sw_admin_down: sw_if_index %u", sw_if_index);
546 
548  {
550  vnet_sw_interface_set_flags (vnm, sw_if_index, flags);
551  }
552 }
553 
554 static u32
556  vnet_sw_interface_t * template)
557 {
561 
562  pool_get (im->sw_interfaces, sw);
563  sw_if_index = sw - im->sw_interfaces;
564 
565  sw[0] = template[0];
566 
567  sw->flags = 0;
568  sw->sw_if_index = sw_if_index;
570  sw->sup_sw_if_index = sw->sw_if_index;
571 
572  /* Allocate counters for this interface. */
573  {
574  u32 i;
575 
577 
578  for (i = 0; i < vec_len (im->sw_if_counters); i++)
579  {
580  vlib_validate_simple_counter (&im->sw_if_counters[i], sw_if_index);
581  vlib_zero_simple_counter (&im->sw_if_counters[i], sw_if_index);
582  }
583 
584  for (i = 0; i < vec_len (im->combined_sw_if_counters); i++)
585  {
587  sw_if_index);
589  sw_if_index);
590  }
591 
593  }
594 
595  return sw_if_index;
596 }
597 
598 clib_error_t *
600  u32 * sw_if_index)
601 {
605  vnet_device_class_t *dev_class;
606 
607  if (template->sub.eth.flags.two_tags == 1
608  && template->sub.eth.flags.exact_match == 1
609  && (template->sub.eth.flags.inner_vlan_id_any == 1
610  || template->sub.eth.flags.outer_vlan_id_any == 1))
611  {
612  char *str = "inner-dot1q any exact-match is unsupported";
613  error = clib_error_return (0, str);
614  log_err ("create_sw_interface: %s", str);
615  return error;
616  }
617 
618  hi = vnet_get_sup_hw_interface (vnm, template->sup_sw_if_index);
619  dev_class = vnet_get_device_class (vnm, hi->dev_class_index);
620 
621  if (template->type == VNET_SW_INTERFACE_TYPE_SUB &&
622  dev_class->subif_add_del_function)
623  {
624  error = dev_class->subif_add_del_function (vnm, hi->hw_if_index,
625  (struct vnet_sw_interface_t
626  *) template, 1);
627  if (error)
628  return error;
629  }
630 
631  *sw_if_index = vnet_create_sw_interface_no_callbacks (vnm, template);
633  (vnm, *sw_if_index, template->flags,
635 
636  if (error)
637  {
638  /* undo the work done by vnet_create_sw_interface_no_callbacks() */
639  log_err ("create_sw_interface: set flags failed\n %U",
640  format_clib_error, error);
641  vnet_sw_interface_t *sw =
642  pool_elt_at_index (im->sw_interfaces, *sw_if_index);
643  pool_put (im->sw_interfaces, sw);
644  }
645  else
646  {
647  vnet_sw_interface_t *sw =
648  pool_elt_at_index (im->sw_interfaces, *sw_if_index);
649  log_debug ("create_sw_interface: interface %U (sw_if_index %u) created",
650  format_vnet_sw_interface_name, vnm, sw, *sw_if_index);
651  }
652 
653  return error;
654 }
655 
656 void
658 {
660  vnet_sw_interface_t *sw =
661  pool_elt_at_index (im->sw_interfaces, sw_if_index);
662 
663  log_debug ("delete_sw_interface: sw_if_index %u, name '%U'",
664  sw_if_index, format_vnet_sw_if_index_name, vnm, sw_if_index);
665 
666  /* Check if the interface has config and is removed from L2 BD or XConnect */
667  vnet_clear_sw_interface_tag (vnm, sw_if_index);
668 
669  /* Bring down interface in case it is up. */
670  if (sw->flags != 0)
671  vnet_sw_interface_set_flags (vnm, sw_if_index, /* flags */ 0);
672 
673  call_sw_interface_add_del_callbacks (vnm, sw_if_index, /* is_create */ 0);
674 
675  pool_put (im->sw_interfaces, sw);
676 }
677 
678 static clib_error_t *
680 {
682  (vnm, sw_if_index, 0, vnm->sw_interface_mtu_change_functions);
683 }
684 
685 void
687 {
688  vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
689 
690  if (si->mtu[VNET_MTU_L3] != mtu)
691  {
692  si->mtu[VNET_MTU_L3] = mtu;
693  log_debug ("set_mtu: interface %U, new mtu %u",
694  format_vnet_sw_if_index_name, vnm, sw_if_index, mtu);
695 
696  call_sw_interface_mtu_change_callbacks (vnm, sw_if_index);
697  }
698 }
699 
700 void
702  u32 mtu[])
703 {
704  vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
705  bool changed = false;
706  int i;
707 
708  for (i = 0; i < VNET_N_MTU; i++)
709  {
710  if (si->mtu[i] != mtu[i])
711  {
712  si->mtu[i] = mtu[i];
713  changed = true;
714  }
715  }
716  /* Notify interested parties */
717  if (changed)
718  {
719  log_debug ("set_protocol_mtu: interface %U l3 %u ip4 %u ip6 %u mpls %u",
720  format_vnet_sw_if_index_name, vnm, sw_if_index,
721  mtu[VNET_MTU_L3], mtu[VNET_MTU_IP4], mtu[VNET_MTU_IP6],
722  mtu[VNET_MTU_MPLS]);
723  call_sw_interface_mtu_change_callbacks (vnm, sw_if_index);
724  }
725 }
726 
727 void
729  u32 sw_if_index, u8 enable)
730 {
732 
733  si = vnet_get_sw_interface (vnm, sw_if_index);
734 
735  if (enable)
737  else
739 
740  ip4_directed_broadcast (sw_if_index, enable);
741 }
742 
743 /*
744  * Reflect a change in hardware MTU on protocol MTUs
745  */
746 static walk_rc_t
748 {
749  u32 *link_mtu = ctx;
750  vnet_sw_interface_set_mtu (vnm, sw_if_index, *link_mtu);
751  return WALK_CONTINUE;
752 }
753 
754 void
755 vnet_hw_interface_set_mtu (vnet_main_t * vnm, u32 hw_if_index, u32 mtu)
756 {
757  vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
758 
759  if (hi->max_packet_bytes != mtu)
760  {
761  hi->max_packet_bytes = mtu;
764  &mtu);
765  }
766 }
767 
768 static void
770  u32 node_index, vnet_device_class_t * dev_class)
771 {
772  vlib_node_t *n = vlib_get_node (vm, node_index);
773 
774  n->function = dev_class->tx_function;
775  n->format_trace = dev_class->format_tx_trace;
776 
777  /// XXX: Update this to use counter structure
778  vlib_register_errors (vm, node_index,
779  dev_class->tx_function_n_errors,
780  dev_class->tx_function_error_strings, 0);
781 }
782 
783 static void
785  u32 node_index, vnet_hw_interface_class_t * hw_class)
786 {
787  vlib_node_t *n = vlib_get_node (vm, node_index);
788  n->format_buffer = hw_class->format_header;
789  n->unformat_buffer = hw_class->unformat_header;
790 }
791 
792 /* Register an interface instance. */
793 u32
795  u32 dev_class_index,
796  u32 dev_instance,
797  u32 hw_class_index, u32 hw_instance)
798 {
801  vnet_device_class_t *dev_class =
802  vnet_get_device_class (vnm, dev_class_index);
803  vnet_hw_interface_class_t *hw_class =
804  vnet_get_hw_interface_class (vnm, hw_class_index);
805  vlib_main_t *vm = vnm->vlib_main;
808  u32 hw_index, i;
809  char *tx_node_name = NULL, *output_node_name = NULL;
811 
812  pool_get (im->hw_interfaces, hw);
813  clib_memset (hw, 0, sizeof (*hw));
815 
816  hw_index = hw - im->hw_interfaces;
817  hw->hw_if_index = hw_index;
819 
820  if (dev_class->format_device_name)
821  hw->name = format (0, "%U", dev_class->format_device_name, dev_instance);
822  else if (hw_class->format_interface_name)
823  hw->name = format (0, "%U", hw_class->format_interface_name,
824  dev_instance);
825  else
826  hw->name = format (0, "%s%x", hw_class->name, dev_instance);
827 
828  if (!im->hw_interface_by_name)
829  im->hw_interface_by_name = hash_create_vec ( /* size */ 0,
830  sizeof (hw->name[0]),
831  sizeof (uword));
832 
833  hash_set_mem (im->hw_interface_by_name, hw->name, hw_index);
834 
835  /* Make hardware interface point to software interface. */
836  {
837  vnet_sw_interface_t sw = {
839  .flood_class = VNET_FLOOD_CLASS_NORMAL,
840  .hw_if_index = hw_index
841  };
843  }
844 
845  hw->dev_class_index = dev_class_index;
846  hw->dev_instance = dev_instance;
847  hw->hw_class_index = hw_class_index;
848  hw->hw_instance = hw_instance;
849 
850  hw->max_rate_bits_per_sec = 0;
851  hw->min_packet_bytes = 0;
853 
854  if (dev_class->tx_function == 0)
855  goto no_output_nodes; /* No output/tx nodes to create */
856 
857  tx_node_name = (char *) format (0, "%v-tx", hw->name);
858  output_node_name = (char *) format (0, "%v-output", hw->name);
859 
860  /* If we have previously deleted interface nodes, re-use them. */
861  if (vec_len (im->deleted_hw_interface_nodes) > 0)
862  {
864  vlib_node_t *node;
865  vlib_node_runtime_t *nrt;
866 
867  hn = vec_end (im->deleted_hw_interface_nodes) - 1;
868 
869  hw->tx_node_index = hn->tx_node_index;
871 
872  vlib_node_rename (vm, hw->tx_node_index, "%v", tx_node_name);
873  vlib_node_rename (vm, hw->output_node_index, "%v", output_node_name);
874 
875  /* *INDENT-OFF* */
878 
879  rt = vlib_node_get_runtime_data (this_vlib_main, hw->output_node_index);
880  ASSERT (rt->is_deleted == 1);
881  rt->is_deleted = 0;
882  rt->hw_if_index = hw_index;
883  rt->sw_if_index = hw->sw_if_index;
884  rt->dev_instance = hw->dev_instance;
885 
886  rt = vlib_node_get_runtime_data (this_vlib_main, hw->tx_node_index);
887  rt->hw_if_index = hw_index;
888  rt->sw_if_index = hw->sw_if_index;
889  rt->dev_instance = hw->dev_instance;
890  });
891  /* *INDENT-ON* */
892 
893  /* The new class may differ from the old one.
894  * Functions have to be updated. */
895  node = vlib_get_node (vm, hw->output_node_index);
896  node->function = output_node;
897  node->format_trace = format_vnet_interface_output_trace;
898  /* *INDENT-OFF* */
900  nrt = vlib_node_get_runtime (this_vlib_main, hw->output_node_index);
901  nrt->function = node->function;
902  vlib_node_runtime_perf_counter (this_vlib_main, nrt, 0, 0, 0,
904  });
905  /* *INDENT-ON* */
906 
907  node = vlib_get_node (vm, hw->tx_node_index);
908  node->function = dev_class->tx_function;
909  node->format_trace = dev_class->format_tx_trace;
910  /* *INDENT-OFF* */
912  nrt = vlib_node_get_runtime (this_vlib_main, hw->tx_node_index);
913  nrt->function = node->function;
914  vlib_node_runtime_perf_counter (this_vlib_main, nrt, 0, 0, 0,
916  });
917  /* *INDENT-ON* */
918 
919  _vec_len (im->deleted_hw_interface_nodes) -= 1;
920  }
921  else
922  {
925  .hw_if_index = hw_index,
926  .sw_if_index = hw->sw_if_index,
927  .dev_instance = hw->dev_instance,
928  .is_deleted = 0,
929  };
930 
931  clib_memset (&r, 0, sizeof (r));
932  r.type = VLIB_NODE_TYPE_INTERNAL;
933  r.runtime_data = &rt;
934  r.runtime_data_bytes = sizeof (rt);
935  r.scalar_size = 0;
936  r.vector_size = sizeof (u32);
937 
938  r.flags = VLIB_NODE_FLAG_IS_OUTPUT;
939  r.name = tx_node_name;
940  r.function = dev_class->tx_function;
941 
942  hw->tx_node_index = vlib_register_node (vm, &r);
943 
945  "error-drop",
947 
948  r.flags = 0;
949  r.name = output_node_name;
950  r.function = output_node;
951  r.format_trace = format_vnet_interface_output_trace;
952 
953  {
954  static char *e[] = {
955  "interface is down",
956  "interface is deleted",
957  "no buffers to segment GSO",
958  };
959 
960  r.n_errors = ARRAY_LEN (e);
961  r.error_strings = e;
962  }
963  hw->output_node_index = vlib_register_node (vm, &r);
964 
966  "error-drop",
969  hw->tx_node_index,
971 
972  /* add interface to the list of "output-interface" feature arc start nodes
973  and clone nexts from 1st interface if it exists */
975  cm = &fcm->config_main;
976  i = vec_len (cm->start_node_indices);
979  if (hw_index)
980  {
981  /* copy nexts from 1st interface */
982  vnet_hw_interface_t *first_hw;
983  vlib_node_t *first_node;
984 
985  first_hw = vnet_get_hw_interface (vnm, /* hw_if_index */ 0);
986  first_node = vlib_get_node (vm, first_hw->output_node_index);
987 
988  /* 1st 2 nexts are already added above */
989  for (i = 2; i < vec_len (first_node->next_nodes); i++)
991  first_node->next_nodes[i], i);
992  }
993  }
994 
995  setup_output_node (vm, hw->output_node_index, hw_class);
996  setup_tx_node (vm, hw->tx_node_index, dev_class);
997 
998 no_output_nodes:
999  /* Call all up/down callbacks with zero flags when interface is created. */
1000  vnet_sw_interface_set_flags_helper (vnm, hw->sw_if_index, /* flags */ 0,
1002  vnet_hw_interface_set_flags_helper (vnm, hw_index, /* flags */ 0,
1004  vec_free (tx_node_name);
1005  vec_free (output_node_name);
1006 
1007  return hw_index;
1008 }
1009 
1010 void
1012 {
1014  vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
1015  vlib_main_t *vm = vnm->vlib_main;
1016  vnet_device_class_t *dev_class = vnet_get_device_class (vnm,
1017  hw->dev_class_index);
1018  /* If it is up, mark it down. */
1019  if (hw->flags != 0)
1020  vnet_hw_interface_set_flags (vnm, hw_if_index, /* flags */ 0);
1021 
1022  /* Call delete callbacks. */
1023  call_hw_interface_add_del_callbacks (vnm, hw_if_index, /* is_create */ 0);
1024 
1025  /* Delete any sub-interfaces. */
1026  {
1027  u32 id, sw_if_index;
1028  /* *INDENT-OFF* */
1029  hash_foreach (id, sw_if_index, hw->sub_interface_sw_if_index_by_id,
1030  ({
1031  vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
1032  u64 sup_and_sub_key =
1033  ((u64) (si->sup_sw_if_index) << 32) | (u64) si->sub.id;
1034  hash_unset_mem_free (&im->sw_if_index_by_sup_and_sub, &sup_and_sub_key);
1035  vnet_delete_sw_interface (vnm, sw_if_index);
1036  }));
1038  /* *INDENT-ON* */
1039  }
1040 
1041  /* Delete software interface corresponding to hardware interface. */
1043 
1044  if (dev_class->tx_function)
1045  {
1046  /* Put output/tx nodes into recycle pool */
1048 
1049  /* *INDENT-OFF* */
1051  ({
1053  vlib_node_get_runtime_data (this_vlib_main, hw->output_node_index);
1054 
1055  /* Mark node runtime as deleted so output node (if called)
1056  * will drop packets. */
1057  rt->is_deleted = 1;
1058  });
1059  /* *INDENT-ON* */
1060 
1062  "interface-%d-output-deleted", hw_if_index);
1063  vlib_node_rename (vm, hw->tx_node_index, "interface-%d-tx-deleted",
1064  hw_if_index);
1065  vec_add2 (im->deleted_hw_interface_nodes, dn, 1);
1066  dn->tx_node_index = hw->tx_node_index;
1068  }
1069 
1071  vec_free (hw->name);
1072  vec_free (hw->hw_address);
1075 
1076  pool_put (im->hw_interfaces, hw);
1077 }
1078 
1079 void
1081  u32 hw_if_index,
1082  vnet_hw_sw_interface_walk_t fn, void *ctx)
1083 {
1085  u32 id, sw_if_index;
1086 
1087  hi = vnet_get_hw_interface (vnm, hw_if_index);
1088  /* the super first, then the sub interfaces */
1089  if (WALK_STOP == fn (vnm, hi->sw_if_index, ctx))
1090  return;
1091 
1092  /* *INDENT-OFF* */
1093  hash_foreach (id, sw_if_index,
1095  ({
1096  if (WALK_STOP == fn (vnm, sw_if_index, ctx))
1097  break;
1098  }));
1099  /* *INDENT-ON* */
1100 }
1101 
1102 void
1104  vnet_hw_interface_walk_t fn, void *ctx)
1105 {
1108 
1109  im = &vnm->interface_main;
1110 
1111  /* *INDENT-OFF* */
1112  pool_foreach (hi, im->hw_interfaces)
1113  {
1114  if (WALK_STOP == fn(vnm, hi->hw_if_index, ctx))
1115  break;
1116  }
1117  /* *INDENT-ON* */
1118 }
1119 
1120 void
1122  vnet_sw_interface_walk_t fn, void *ctx)
1123 {
1126 
1127  im = &vnm->interface_main;
1128 
1129  /* *INDENT-OFF* */
1130  pool_foreach (si, im->sw_interfaces)
1131  {
1132  if (WALK_STOP == fn (vnm, si, ctx))
1133  break;
1134  }
1135  /* *INDENT-ON* */
1136 }
1137 
1138 void
1140  u32 hw_class_index, u32 hw_instance)
1141 {
1142  vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1144  vnet_get_hw_interface_class (vnm, hw_class_index);
1145 
1146  hi->hw_class_index = hw_class_index;
1147  hi->hw_instance = hw_instance;
1149 }
1150 
1151 static clib_error_t *
1153  u32 hw_class_index, u32 redistribute)
1154 {
1155  vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1157  vnet_hw_interface_class_t *old_class =
1159  vnet_hw_interface_class_t *new_class =
1160  vnet_get_hw_interface_class (vnm, hw_class_index);
1161  vnet_device_class_t *dev_class =
1163  clib_error_t *error = 0;
1164 
1165  /* New class equals old class? Nothing to do. */
1166  if (hi->hw_class_index == hw_class_index)
1167  return 0;
1168 
1169  /* No need (and incorrect since admin up flag may be set) to do error checking when
1170  receiving unserialize message. */
1171  if (redistribute)
1172  {
1174  return clib_error_return (0,
1175  "%v must be admin down to change class from %s to %s",
1176  hi->name, old_class->name, new_class->name);
1177 
1178  /* Make sure interface supports given class. */
1179  if ((new_class->is_valid_class_for_interface
1180  && !new_class->is_valid_class_for_interface (vnm, hw_if_index,
1181  hw_class_index))
1182  || (dev_class->is_valid_class_for_interface
1183  && !dev_class->is_valid_class_for_interface (vnm, hw_if_index,
1184  hw_class_index)))
1185  return clib_error_return (0,
1186  "%v class cannot be changed from %s to %s",
1187  hi->name, old_class->name, new_class->name);
1188 
1189  }
1190 
1191  if (old_class->hw_class_change)
1192  old_class->hw_class_change (vnm, hw_if_index, old_class->index,
1193  new_class->index);
1194 
1195  vnet_hw_interface_init_for_class (vnm, hw_if_index, new_class->index,
1196  /* instance */ ~0);
1197 
1198  if (new_class->hw_class_change)
1199  new_class->hw_class_change (vnm, hw_if_index, old_class->index,
1200  new_class->index);
1201 
1202  if (dev_class->hw_class_change)
1203  dev_class->hw_class_change (vnm, hw_if_index, new_class->index);
1204 
1205  return error;
1206 }
1207 
1208 clib_error_t *
1210  u32 hw_class_index)
1211 {
1212  return vnet_hw_interface_set_class_helper (vnm, hw_if_index, hw_class_index,
1213  /* redistribute */ 1);
1214 }
1215 
1216 static int
1218  u32 hw_if_index,
1219  u32 node_index,
1220  u32 redistribute)
1221 {
1222  vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1224  (vnm, hi->dev_class_index);
1225 
1226  if (dev_class->rx_redirect_to_node)
1227  {
1228  dev_class->rx_redirect_to_node (vnm, hw_if_index, node_index);
1229  return 0;
1230  }
1231 
1232  return VNET_API_ERROR_UNIMPLEMENTED;
1233 }
1234 
1235 int
1237  u32 node_index)
1238 {
1239  return vnet_hw_interface_rx_redirect_to_node_helper (vnm, hw_if_index,
1240  node_index,
1241  1 /* redistribute */ );
1242 }
1243 
1244 word
1246  uword sw_if_index0, uword sw_if_index1)
1247 {
1248  vnet_sw_interface_t *sup0 = vnet_get_sup_sw_interface (vnm, sw_if_index0);
1249  vnet_sw_interface_t *sup1 = vnet_get_sup_sw_interface (vnm, sw_if_index1);
1252 
1253  if (h0 != h1)
1254  return vec_cmp (h0->name, h1->name);
1255  return (word) h0->hw_instance - (word) h1->hw_instance;
1256 }
1257 
1258 word
1260  uword hw_if_index0, uword hw_if_index1)
1261 {
1262  vnet_hw_interface_t *h0 = vnet_get_hw_interface (vnm, hw_if_index0);
1263  vnet_hw_interface_t *h1 = vnet_get_hw_interface (vnm, hw_if_index1);
1264 
1265  if (h0 != h1)
1266  return vec_cmp (h0->name, h1->name);
1267  return (word) h0->hw_instance - (word) h1->hw_instance;
1268 }
1269 
1270 int
1272 {
1273  vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
1274  if ((si->type == VNET_SW_INTERFACE_TYPE_P2P) ||
1276  return 1;
1277 
1278  vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
1281 
1282  return (hc->flags & VNET_HW_INTERFACE_CLASS_FLAG_P2P);
1283 }
1284 
1285 int
1287 {
1288  vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
1291 
1292  return (hc->flags & VNET_HW_INTERFACE_CLASS_FLAG_NBMA);
1293 }
1294 
1295 clib_error_t *
1297 {
1298  vnet_main_t *vnm = vnet_get_main ();
1300  vlib_buffer_t *b = 0;
1301  vnet_buffer_opaque_t *o = 0;
1303 
1304  /*
1305  * Keep people from shooting themselves in the foot.
1306  */
1307  if (sizeof (b->opaque) != sizeof (vnet_buffer_opaque_t))
1308  {
1309 #define _(a) if (sizeof(o->a) > sizeof (o->unused)) \
1310  clib_warning \
1311  ("FATAL: size of opaque union subtype %s is %d (max %d)", \
1312  #a, sizeof(o->a), sizeof (o->unused));
1314 #undef _
1315 
1316  return clib_error_return
1317  (0, "FATAL: size of vlib buffer opaque %d, size of vnet opaque %d",
1318  sizeof (b->opaque), sizeof (vnet_buffer_opaque_t));
1319  }
1320 
1322  clib_spinlock_lock (&im->sw_if_counter_lock); /* should be no need */
1323 
1325 #define _(E,n,p) \
1326  im->sw_if_counters[VNET_INTERFACE_COUNTER_##E].name = #n; \
1327  im->sw_if_counters[VNET_INTERFACE_COUNTER_##E].stat_segment_name = "/" #p "/" #n;
1329 #undef _
1332 #define _(E,n,p) \
1333  im->combined_sw_if_counters[VNET_INTERFACE_COUNTER_##E].name = #n; \
1334  im->combined_sw_if_counters[VNET_INTERFACE_COUNTER_##E].stat_segment_name = "/" #p "/" #n;
1336 #undef _
1338 
1339  im->device_class_by_name = hash_create_string ( /* size */ 0,
1340  sizeof (uword));
1341  {
1343 
1344  c = vnm->device_class_registrations;
1345 
1346  while (c)
1347  {
1348  c->index = vec_len (im->device_classes);
1349  hash_set_mem (im->device_class_by_name, c->name, c->index);
1350 
1351  if (c->tx_fn_registrations)
1352  {
1353  vlib_node_fn_registration_t *fnr = c->tx_fn_registrations;
1354  int priority = -1;
1355 
1356  /* to avoid confusion, please remove ".tx_function" statement
1357  from VNET_DEVICE_CLASS() if using function candidates */
1358  ASSERT (c->tx_function == 0);
1359 
1360  while (fnr)
1361  {
1362  if (fnr->priority > priority)
1363  {
1364  priority = fnr->priority;
1365  c->tx_function = fnr->function;
1366  }
1367  fnr = fnr->next_registration;
1368  }
1369  }
1370 
1371  vec_add1 (im->device_classes, c[0]);
1372  c = c->next_class_registration;
1373  }
1374  }
1375 
1376  im->hw_interface_class_by_name = hash_create_string ( /* size */ 0,
1377  sizeof (uword));
1378 
1379  im->sw_if_index_by_sup_and_sub = hash_create_mem (0, sizeof (u64),
1380  sizeof (uword));
1381  {
1383 
1385 
1386  while (c)
1387  {
1388  c->index = vec_len (im->hw_interface_classes);
1389  hash_set_mem (im->hw_interface_class_by_name, c->name, c->index);
1390 
1391  if (NULL == c->build_rewrite)
1392  c->build_rewrite = default_build_rewrite;
1393  if (NULL == c->update_adjacency)
1394  c->update_adjacency = default_update_adjacency;
1395 
1396  vec_add1 (im->hw_interface_classes, c[0]);
1397  c = c->next_class_registration;
1398  }
1399  }
1400 
1401  /* init per-thread data */
1404 
1406  return error;
1407 
1408  vnm->interface_tag_by_sw_if_index = hash_create (0, sizeof (uword));
1409 
1410 #if VLIB_BUFFER_TRACE_TRAJECTORY > 0
1411  if ((error = vlib_call_init_function (vm, trajectory_trace_init)))
1412  return error;
1413 #endif
1414 
1415  return 0;
1416 }
1417 
1419 
1420 /* Kludge to renumber interface names [only!] */
1421 int
1423 {
1424  int rv;
1425  vnet_main_t *vnm = vnet_get_main ();
1427  vnet_hw_interface_t *hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
1428 
1430  (vnm, hi->dev_class_index);
1431 
1432  if (dev_class->name_renumber == 0 || dev_class->format_device_name == 0)
1433  return VNET_API_ERROR_UNIMPLEMENTED;
1434 
1435  rv = dev_class->name_renumber (hi, new_show_dev_instance);
1436 
1437  if (rv)
1438  return rv;
1439 
1441  vec_free (hi->name);
1442  /* Use the mapping we set up to call it Ishmael */
1443  hi->name = format (0, "%U", dev_class->format_device_name,
1444  hi->dev_instance);
1445 
1447  return rv;
1448 }
1449 
1450 clib_error_t *
1451 vnet_rename_interface (vnet_main_t * vnm, u32 hw_if_index, char *new_name)
1452 {
1454  vlib_main_t *vm = vnm->vlib_main;
1455  vnet_hw_interface_t *hw;
1456  u8 *old_name;
1457  clib_error_t *error = 0;
1458 
1459  hw = vnet_get_hw_interface (vnm, hw_if_index);
1460  if (!hw)
1461  {
1462  return clib_error_return (0,
1463  "unable to find hw interface for index %u",
1464  hw_if_index);
1465  }
1466 
1467  old_name = hw->name;
1468 
1469  /* set new hw->name */
1470  hw->name = format (0, "%s", new_name);
1471 
1472  /* remove the old name to hw_if_index mapping and install the new one */
1473  hash_unset_mem (im->hw_interface_by_name, old_name);
1474  hash_set_mem (im->hw_interface_by_name, hw->name, hw_if_index);
1475 
1476  /* rename tx/output nodes */
1477  vlib_node_rename (vm, hw->tx_node_index, "%v-tx", hw->name);
1478  vlib_node_rename (vm, hw->output_node_index, "%v-output", hw->name);
1479 
1480  /* free the old name vector */
1481  vec_free (old_name);
1482 
1483  return error;
1484 }
1485 
1486 clib_error_t *
1488  u32 hw_if_index,
1489  const u8 * mac_address, u8 is_add)
1490 {
1491  clib_error_t *error = 0;
1492  vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1493 
1494  vnet_device_class_t *dev_class =
1496 
1497  if (!hi->hw_address)
1498  {
1499  error =
1501  (0, "Secondary MAC Addresses not supported for interface index %u",
1502  hw_if_index);
1503  goto done;
1504  }
1505 
1506  if (dev_class->mac_addr_add_del_function)
1507  error = dev_class->mac_addr_add_del_function (hi, mac_address, is_add);
1508 
1509  if (!error)
1510  {
1511  vnet_hw_interface_class_t *hw_class;
1512 
1513  hw_class = vnet_get_hw_interface_class (vnm, hi->hw_class_index);
1514 
1515  if (NULL != hw_class->mac_addr_add_del_function)
1516  error = hw_class->mac_addr_add_del_function (hi, mac_address, is_add);
1517  }
1518 
1519  /* If no errors, add to the list of secondary MACs on the ethernet intf */
1520  if (!error)
1522  mac_address, is_add);
1523 
1524 done:
1525  if (error)
1526  log_err ("hw_add_del_mac_address: %U", format_clib_error, error);
1527  return error;
1528 }
1529 
1530 static clib_error_t *
1532  u32 hw_if_index,
1533  const u8 * mac_address)
1534 {
1535  clib_error_t *error = 0;
1536  vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
1537 
1538  if (hi->hw_address)
1539  {
1540  u8 *old_address = vec_dup (hi->hw_address);
1541  vnet_device_class_t *dev_class =
1543  if (dev_class->mac_addr_change_function)
1544  {
1545  error =
1546  dev_class->mac_addr_change_function (hi, old_address,
1547  mac_address);
1548  }
1549  if (!error)
1550  {
1551  vnet_hw_interface_class_t *hw_class;
1552 
1553  hw_class = vnet_get_hw_interface_class (vnm, hi->hw_class_index);
1554 
1555  if (NULL != hw_class->mac_addr_change_function)
1556  hw_class->mac_addr_change_function (hi, old_address, mac_address);
1557  }
1558  else
1559  {
1560  error =
1561  clib_error_return (0,
1562  "MAC Address Change is not supported on this interface");
1563  }
1564  vec_free (old_address);
1565  }
1566  else
1567  {
1568  error =
1569  clib_error_return (0,
1570  "mac address change is not supported for interface index %u",
1571  hw_if_index);
1572  }
1573  return error;
1574 }
1575 
1576 clib_error_t *
1578  const u8 * mac_address)
1579 {
1581  (vnm, hw_if_index, mac_address);
1582 }
1583 
1584 /* update the unnumbered state of an interface*/
1585 void
1587  u32 ip_sw_if_index, u8 enable)
1588 {
1589  vnet_main_t *vnm = vnet_get_main ();
1591  u32 was_unnum;
1592 
1593  si = vnet_get_sw_interface (vnm, unnumbered_sw_if_index);
1594  was_unnum = (si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED);
1595 
1596  if (enable)
1597  {
1599  si->unnumbered_sw_if_index = ip_sw_if_index;
1600 
1602  [unnumbered_sw_if_index] =
1603  ip4_main.
1604  lookup_main.if_address_pool_index_by_sw_if_index[ip_sw_if_index];
1605  ip6_main.
1606  lookup_main.if_address_pool_index_by_sw_if_index
1607  [unnumbered_sw_if_index] =
1608  ip6_main.
1609  lookup_main.if_address_pool_index_by_sw_if_index[ip_sw_if_index];
1610  }
1611  else
1612  {
1614  si->unnumbered_sw_if_index = (u32) ~ 0;
1615 
1617  [unnumbered_sw_if_index] = ~0;
1619  [unnumbered_sw_if_index] = ~0;
1620  }
1621 
1622  if (was_unnum != (si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED))
1623  {
1624  ip4_sw_interface_enable_disable (unnumbered_sw_if_index, enable);
1625  ip6_sw_interface_enable_disable (unnumbered_sw_if_index, enable);
1626  }
1627 }
1628 
1631 {
1632  switch (link)
1633  {
1634  case VNET_LINK_IP4:
1635  return (VNET_L3_PACKET_TYPE_IP4);
1636  case VNET_LINK_IP6:
1637  return (VNET_L3_PACKET_TYPE_IP6);
1638  case VNET_LINK_MPLS:
1639  return (VNET_L3_PACKET_TYPE_MPLS);
1640  case VNET_LINK_ARP:
1641  return (VNET_L3_PACKET_TYPE_ARP);
1642  case VNET_LINK_ETHERNET:
1643  case VNET_LINK_NSH:
1644  ASSERT (0);
1645  break;
1646  }
1647  ASSERT (0);
1648  return (0);
1649 }
1650 
1651 vnet_mtu_t
1653 {
1654  switch (link)
1655  {
1656  case VNET_LINK_IP4:
1657  return (VNET_MTU_IP4);
1658  case VNET_LINK_IP6:
1659  return (VNET_MTU_IP6);
1660  case VNET_LINK_MPLS:
1661  return (VNET_MTU_MPLS);
1662  default:
1663  return (VNET_MTU_L3);
1664  }
1665 }
1666 
1667 u8 *
1669  u32 sw_if_index,
1670  vnet_link_t link_type, const void *dst_address)
1671 {
1672  return (NULL);
1673 }
1674 
1675 void
1677 {
1678  ip_adjacency_t *adj;
1679 
1680  adj = adj_get (ai);
1681 
1682  switch (adj->lookup_next_index)
1683  {
1684  case IP_LOOKUP_NEXT_GLEAN:
1686  break;
1687  case IP_LOOKUP_NEXT_ARP:
1688  case IP_LOOKUP_NEXT_BCAST:
1689  /*
1690  * default rewrite in neighbour adj
1691  */
1693  (ai,
1696  sw_if_index,
1697  adj_get_link_type (ai), NULL));
1698  break;
1699  case IP_LOOKUP_NEXT_MCAST:
1700  /*
1701  * mcast traffic also uses default rewrite string with no mcast
1702  * switch time updates.
1703  */
1705  (ai,
1707  sw_if_index,
1708  adj_get_link_type (ai),
1709  NULL), 0);
1710  break;
1711  case IP_LOOKUP_NEXT_DROP:
1712  case IP_LOOKUP_NEXT_PUNT:
1713  case IP_LOOKUP_NEXT_LOCAL:
1718  case IP_LOOKUP_N_NEXT:
1719  ASSERT (0);
1720  break;
1721  }
1722 }
1723 
1724 clib_error_t *
1727  clib_bitmap_t * bitmap)
1728 {
1729  clib_error_t *error = 0;
1730  vnet_device_class_t *dev_class =
1732 
1733  if (dev_class->set_rss_queues_function)
1734  {
1735  if (clib_bitmap_count_set_bits (bitmap) == 0)
1736  {
1737  error = clib_error_return (0,
1738  "must assign at least one valid rss queue");
1739  goto done;
1740  }
1741 
1742  error = dev_class->set_rss_queues_function (vnm, hi, bitmap);
1743  }
1744  else
1745  {
1746  error = clib_error_return (0,
1747  "setting rss queues is not supported on this interface");
1748  }
1749 
1750  if (!error)
1751  {
1753  hi->rss_queues = clib_bitmap_dup (bitmap);
1754  }
1755 
1756 done:
1757  if (error)
1758  log_err ("hw_set_rss_queues: %U", format_clib_error, error);
1759  return error;
1760 }
1761 
1762 int collect_detailed_interface_stats_flag = 0;
1763 
1764 void
1766 {
1767  collect_detailed_interface_stats_flag = 1;
1768 }
1769 
1770 void
1772 {
1773  collect_detailed_interface_stats_flag = 0;
1774 }
1775 
1776 static clib_error_t *
1778  unformat_input_t * input,
1779  vlib_cli_command_t * cmd)
1780 {
1781  unformat_input_t _line_input, *line_input = &_line_input;
1782  clib_error_t *error = NULL;
1783 
1784  /* Get a line of input. */
1785  if (!unformat_user (input, unformat_line_input, line_input))
1786  return clib_error_return (0, "expected enable | disable");
1787 
1788  while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1789  {
1790  if (unformat (line_input, "enable") || unformat (line_input, "on"))
1792  else if (unformat (line_input, "disable")
1793  || unformat (line_input, "off"))
1795  else
1796  {
1797  error = clib_error_return (0, "unknown input `%U'",
1798  format_unformat_error, line_input);
1799  goto done;
1800  }
1801  }
1802 
1803 done:
1804  unformat_free (line_input);
1805  return error;
1806 }
1807 
1808 /* *INDENT-OFF* */
1809 VLIB_CLI_COMMAND (collect_detailed_interface_stats_command, static) = {
1810  .path = "interface collect detailed-stats",
1811  .short_help = "interface collect detailed-stats <enable|disable>",
1813 };
1814 /* *INDENT-ON* */
1815 
1816 /*
1817  * fd.io coding-style-patch-verification: ON
1818  *
1819  * Local Variables:
1820  * eval: (c-set-style "gnu")
1821  * End:
1822  */
u32 * next_nodes
Definition: node.h:335
vnet_config_main_t config_main
Definition: feature.h:82
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:509
void vnet_hw_interface_init_for_class(vnet_main_t *vnm, u32 hw_if_index, u32 hw_class_index, u32 hw_instance)
Definition: interface.c:1139
static vnet_sw_interface_flags_t vnet_hw_interface_flags_to_sw(vnet_hw_interface_flags_t hwf)
Definition: interface.c:120
VLIB_REGISTER_LOG_CLASS(if_default_log, static)
static_always_inline void clib_spinlock_unlock(clib_spinlock_t *p)
Definition: lock.h:121
static_always_inline void clib_spinlock_lock(clib_spinlock_t *p)
Definition: lock.h:82
vnet_interface_per_thread_data_t * per_thread_data
Definition: interface.h:898
clib_spinlock_t sw_if_counter_lock
Definition: interface.h:880
void vlib_validate_combined_counter(vlib_combined_counter_main_t *cm, u32 index)
validate a combined counter
Definition: counter.c:108
static clib_error_t * call_sw_interface_add_del_callbacks(vnet_main_t *vnm, u32 sw_if_index, u32 is_create)
Definition: interface.c:296
word vnet_sw_interface_compare(vnet_main_t *vnm, uword sw_if_index0, uword sw_if_index1)
Definition: interface.c:1245
vl_api_wireguard_peer_flags_t flags
Definition: wireguard.api:105
vnet_hw_interface_nodes_t * deleted_hw_interface_nodes
Definition: interface.h:884
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:519
_vnet_interface_function_list_elt_t * hw_interface_link_up_down_functions[VNET_ITF_FUNC_N_PRIO]
Definition: vnet.h:73
void default_update_adjacency(vnet_main_t *vnm, u32 sw_if_index, u32 ai)
Default adjacency update function.
Definition: interface.c:1676
static int vnet_hw_interface_rx_redirect_to_node_helper(vnet_main_t *vnm, u32 hw_if_index, u32 node_index, u32 redistribute)
Definition: interface.c:1217
int vnet_sw_interface_is_nbma(vnet_main_t *vnm, u32 sw_if_index)
Definition: interface.c:1286
#define vec_serialize(m, v, f)
Definition: serialize.h:371
An indication that the rewrite is complete, i.e.
Definition: adj_nbr.h:98
vnet_main_t * vnet_get_main(void)
Definition: misc.c:46
static vnet_hw_interface_t * vnet_get_sup_hw_interface(vnet_main_t *vnm, u32 sw_if_index)
vnet_interface_helper_flags_t_
Definition: interface.c:54
#define pool_foreach(VAR, POOL)
Iterate through pool.
Definition: pool.h:527
void vnet_sw_interface_set_mtu(vnet_main_t *vnm, u32 sw_if_index, u32 mtu)
Definition: interface.c:686
vnet_interface_main_t interface_main
Definition: vnet.h:65
#define log_debug(fmt,...)
Definition: interface.c:52
unsigned long u64
Definition: types.h:89
Multicast Adjacency.
Definition: adj.h:82
clib_error_t * vnet_hw_interface_set_rss_queues(vnet_main_t *vnm, vnet_hw_interface_t *hi, clib_bitmap_t *bitmap)
Definition: interface.c:1725
vnet_link_t adj_get_link_type(adj_index_t ai)
Return the link type of the adjacency.
Definition: adj.c:506
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
walk_rc_t(* vnet_hw_interface_walk_t)(vnet_main_t *vnm, u32 hw_if_index, void *ctx)
Call back walk type for walking all HW indices.
#define vec_unserialize(m, v, f)
Definition: serialize.h:374
Broadcast Adjacency.
Definition: adj.h:85
IP unicast adjacency.
Definition: adj.h:235
format_function_t * format_trace
Definition: node.h:362
vnet_device_class_t * device_class_registrations
Definition: vnet.h:68
u32 * input_node_thread_index_by_queue
Definition: interface.h:604
a non-broadcast multiple access interface
Definition: interface.h:391
static vnet_hw_interface_t * vnet_get_hw_interface(vnet_main_t *vnm, u32 hw_if_index)
void collect_detailed_interface_stats_flag_set(void)
Definition: interface.c:1765
This packet is to be rewritten and forwarded to the next processing node.
Definition: adj.h:73
clib_error_t * vnet_hw_interface_change_mac_address(vnet_main_t *vnm, u32 hw_if_index, const u8 *mac_address)
Definition: interface.c:1577
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:592
static void vnet_clear_sw_interface_tag(vnet_main_t *vnm, u32 sw_if_index)
void vnet_sw_interface_admin_down(vnet_main_t *vnm, u32 sw_if_index)
Definition: interface.c:542
#define vec_add2(V, P, N)
Add N elements to end of vector V, return pointer to new elements in P.
Definition: vec.h:630
mac_address_t * ethernet_interface_add_del_address(ethernet_main_t *em, u32 hw_if_index, const u8 *address, u8 is_add)
Definition: interface.c:992
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
ip_lookup_main_t lookup_main
Definition: ip4.h:109
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:586
u32 vnet_register_interface(vnet_main_t *vnm, u32 dev_class_index, u32 dev_instance, u32 hw_class_index, u32 hw_instance)
Definition: interface.c:794
vlib_main_t * vm
Definition: in2out_ed.c:1580
uword * interface_tag_by_sw_if_index
Definition: vnet.h:81
#define vec_validate_aligned(V, I, A)
Make sure vector is long enough for given index (no header, specified alignment)
Definition: vec.h:520
_vnet_interface_function_list_elt_t * hw_interface_add_del_functions[VNET_ITF_FUNC_N_PRIO]
Definition: vnet.h:71
u16 mask
Definition: flow_types.api:52
struct _vnet_device_class vnet_device_class_t
clib_error_t * vnet_hw_interface_set_flags(vnet_main_t *vnm, u32 hw_if_index, vnet_hw_interface_flags_t flags)
Definition: interface.c:509
#define pool_get(P, E)
Allocate an object E from a pool P (unspecified alignment).
Definition: pool.h:251
uword * dq_runtime_index_by_queue
Definition: interface.h:611
#define log_err(fmt,...)
Definition: interface.c:53
format_function_t format_vnet_sw_if_index_name
unsigned char u8
Definition: types.h:56
enum vnet_sw_interface_flags_t_ vnet_sw_interface_flags_t
#define VNET_HW_INTERFACE_FLAG_DUPLEX_MASK
Definition: interface.h:525
u8 id[64]
Definition: dhcp.api:160
#define clib_bitmap_dup(v)
Duplicate a bitmap.
Definition: bitmap.h:87
vlib_node_function_t * function
Definition: node.h:261
Adjacency to punt this packet.
Definition: adj.h:55
enum walk_rc_t_ walk_rc_t
Walk return code.
void adj_glean_update_rewrite(adj_index_t adj_index)
adj_glean_update_rewrite
Definition: adj_glean.c:163
ethernet_main_t ethernet_main
Definition: init.c:45
static ip_adjacency_t * adj_get(adj_index_t adj_index)
Get a pointer to an adjacency object from its index.
Definition: adj.h:467
vnet_l3_packet_type_t
Definition: l3_types.h:44
i64 word
Definition: types.h:111
vlib_node_function_t * function
Node function to call.
Definition: node.h:468
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:173
static vnet_device_class_t * vnet_get_device_class(vnet_main_t *vnm, u32 dev_class_index)
static clib_error_t * call_sw_interface_mtu_change_callbacks(vnet_main_t *vnm, u32 sw_if_index)
Definition: interface.c:679
vlib_combined_counter_main_t * combined_sw_if_counters
Definition: interface.h:882
clib_error_t * vnet_rename_interface(vnet_main_t *vnm, u32 hw_if_index, char *new_name)
Definition: interface.c:1451
enum vnet_hw_interface_flags_t_ vnet_hw_interface_flags_t
description fragment has unexpected format
Definition: map.api:433
vnet_hw_interface_flags_t flags
Definition: interface.h:538
#define hash_foreach(key_var, value_var, h, body)
Definition: hash.h:442
vnet_hw_if_rx_mode default_rx_mode
Definition: interface.h:608
static clib_error_t * vnet_sw_interface_set_flags_helper(vnet_main_t *vnm, u32 sw_if_index, vnet_sw_interface_flags_t flags, vnet_interface_helper_flags_t helper_flags)
Definition: interface.c:355
static vnet_sw_interface_t * vnet_get_sup_sw_interface(vnet_main_t *vnm, u32 sw_if_index)
void vnet_sw_interface_admin_up(vnet_main_t *vnm, u32 sw_if_index)
Definition: interface.c:529
#define clib_error_return(e, args...)
Definition: error.h:99
const cJSON *const b
Definition: cJSON.h:255
uword vlib_node_add_next_with_slot(vlib_main_t *vm, uword node_index, uword next_node_index, uword slot)
Definition: node.c:172
void serialize_vnet_interface_state(serialize_main_t *m, va_list *va)
Definition: interface.c:131
struct _vlib_node_fn_registration vlib_node_fn_registration_t
vlib_node_function_t * vnet_interface_output_node_get(vlib_main_t *vm)
u32 mtu[VNET_N_MTU]
Definition: interface.h:756
__clib_export void serialize_cstring(serialize_main_t *m, char *s)
Definition: serialize.c:164
unsigned int u32
Definition: types.h:88
#define vec_end(v)
End (last data address) of vector.
void vnet_delete_sw_interface(vnet_main_t *vnm, u32 sw_if_index)
Definition: interface.c:657
#define vlib_call_init_function(vm, x)
Definition: init.h:270
clib_error_t * vnet_hw_interface_add_del_mac_address(vnet_main_t *vnm, u32 hw_if_index, const u8 *mac_address, u8 is_add)
Definition: interface.c:1487
void ip4_directed_broadcast(u32 sw_if_index, u8 enable)
Definition: ip4_forward.c:843
#define hash_create_string(elts, value_bytes)
Definition: hash.h:690
i32 priority
Definition: ipsec.api:95
unformat_function_t unformat_line_input
Definition: format.h:282
static void clib_spinlock_init(clib_spinlock_t *p)
Definition: lock.h:65
uword * hw_interface_by_name
Definition: interface.h:862
u32 ethernet_set_flags(vnet_main_t *vnm, u32 hw_if_index, u32 flags)
Definition: interface.c:441
vnet_crypto_main_t * cm
Definition: quic_crypto.c:53
vnet_hw_interface_t * hw_interfaces
Definition: interface.h:859
Definition: cJSON.c:84
#define hash_create_mem(elts, key_bytes, value_bytes)
Definition: hash.h:661
format_function_t format_vnet_sw_interface_name
void adj_mcast_update_rewrite(adj_index_t adj_index, u8 *rewrite, u8 offset)
adj_mcast_update_rewrite
Definition: adj_mcast.c:105
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:546
static void vlib_zero_combined_counter(vlib_combined_counter_main_t *cm, u32 index)
Clear a combined counter Clears the set of per-thread counters.
Definition: counter.h:304
u8 * format_vnet_interface_output_trace(u8 *s, va_list *va)
#define hash_unset_mem(h, key)
Definition: hash.h:291
void ip4_sw_interface_enable_disable(u32 sw_if_index, u32 is_enable)
Definition: ip4_forward.c:601
u32 * start_node_indices
Definition: config.h:98
vlib_main_t * vlib_main
Definition: vnet.h:92
void vnet_sw_interface_update_unnumbered(u32 unnumbered_sw_if_index, u32 ip_sw_if_index, u8 enable)
Definition: interface.c:1586
long ctx[MAX_CONNS]
Definition: main.c:144
struct _unformat_input_t unformat_input_t
vnet_mtu_t
Definition: interface.h:694
void vnet_hw_interface_walk_sw(vnet_main_t *vnm, u32 hw_if_index, vnet_hw_sw_interface_walk_t fn, void *ctx)
Walk the SW interfaces on a HW interface - this is the super interface and any sub-interfaces.
Definition: interface.c:1080
#define hash_free(h)
Definition: hash.h:310
u32 vlib_register_node(vlib_main_t *vm, vlib_node_registration_t *r)
Definition: node.c:485
#define pool_put(P, E)
Free an object E in pool P.
Definition: pool.h:301
#define vec_dup(V)
Return copy of vector (no header, no alignment)
Definition: vec.h:429
uword * sw_if_index_by_sup_and_sub
Definition: interface.h:876
void vnet_hw_interface_set_mtu(vnet_main_t *vnm, u32 hw_if_index, u32 mtu)
Definition: interface.c:755
static void * vlib_node_get_runtime_data(vlib_main_t *vm, u32 node_index)
Get node runtime private data by node index.
Definition: node_funcs.h:136
This packet matches an "interface route" and packets need to be passed to ARP to find rewrite string ...
Definition: adj.h:68
vnet_sw_interface_flags_t flags
Definition: interface.h:739
ip6_main_t ip6_main
Definition: ip6_forward.c:2785
u8 * vnet_build_rewrite_for_sw_interface(vnet_main_t *vnm, u32 sw_if_index, vnet_link_t link_type, const void *dst_address)
Definition: rewrite.c:164
clib_error_t * vnet_create_sw_interface(vnet_main_t *vnm, vnet_sw_interface_t *template, u32 *sw_if_index)
Definition: interface.c:599
clib_error_t * vnet_hw_interface_set_class(vnet_main_t *vnm, u32 hw_if_index, u32 hw_class_index)
Definition: interface.c:1209
vlib_simple_counter_main_t * sw_if_counters
Definition: interface.h:881
format_function_t * format_buffer
Definition: node.h:358
#define foreach_vlib_main(body)
Definition: threads.h:242
static vnet_hw_interface_flags_t vnet_sw_interface_flags_to_hw(vnet_sw_interface_flags_t swf)
Definition: interface.c:182
uword * hw_interface_class_by_name
Definition: interface.h:869
void vnet_sw_interface_ip_directed_broadcast(vnet_main_t *vnm, u32 sw_if_index, u8 enable)
Definition: interface.c:728
#define foreach_simple_interface_counter_name
Definition: interface.h:802
int vnet_hw_interface_rx_redirect_to_node(vnet_main_t *vnm, u32 hw_if_index, u32 node_index)
Definition: interface.c:1236
word vnet_hw_interface_compare(vnet_main_t *vnm, uword hw_if_index0, uword hw_if_index1)
Definition: interface.c:1259
void vlib_register_errors(vlib_main_t *vm, u32 node_index, u32 n_errors, char *error_strings[], vl_counter_t counters[])
Definition: error.c:117
uword vlib_node_add_named_next_with_slot(vlib_main_t *vm, uword node, char *name, uword slot)
Definition: node.c:243
This packet matches an "incomplete adjacency" and packets need to be passed to ARP to find rewrite st...
Definition: adj.h:63
Adjacency to drop this packet.
Definition: adj.h:53
#define UNFORMAT_END_OF_INPUT
Definition: format.h:144
#define foreach_combined_interface_counter_name
Definition: interface.h:813
static u32 vnet_create_sw_interface_no_callbacks(vnet_main_t *vnm, vnet_sw_interface_t *template)
Definition: interface.c:555
svmdb_client_t * c
sll srl srl sll sra u16x4 i
Definition: vector_sse42.h:317
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:380
Multicast Midchain Adjacency.
Definition: adj.h:89
static vlib_node_runtime_t * vlib_node_get_runtime(vlib_main_t *vm, u32 node_index)
Get node runtime by node index.
Definition: node_funcs.h:115
unformat_function_t * unformat_buffer
Definition: node.h:359
static void vnet_interface_counter_unlock(vnet_interface_main_t *im)
Definition: interface.h:912
#define ETHERNET_INTERFACE_FLAG_MTU
Definition: ethernet.h:166
static void unserialize_integer(serialize_main_t *m, void *x, u32 n_bytes)
Definition: serialize.h:201
static void serialize_integer(serialize_main_t *m, u64 x, u32 n_bytes)
Definition: serialize.h:185
void unserialize_vnet_interface_state(serialize_main_t *m, va_list *va)
Definition: interface.c:193
#define ARRAY_LEN(x)
Definition: clib.h:67
vnet_mtu_t vnet_link_to_mtu(vnet_link_t link)
Definition: interface.c:1652
static clib_error_t * vnet_hw_interface_set_class_helper(vnet_main_t *vnm, u32 hw_if_index, u32 hw_class_index, u32 redistribute)
Definition: interface.c:1152
u32 trace_classify_table_index
Definition: interface.h:622
vlib_main_t vlib_node_runtime_t * node
Definition: in2out_ed.c:1580
format_function_t format_vnet_sw_interface_flags
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:158
This packets follow a mid-chain adjacency.
Definition: adj.h:76
u32 * if_address_pool_index_by_sw_if_index
Head of doubly linked list of interface addresses for each software interface.
Definition: lookup.h:131
static void vnet_interface_counter_lock(vnet_interface_main_t *im)
Definition: interface.h:905
void vlib_validate_simple_counter(vlib_simple_counter_main_t *cm, u32 index)
validate a simple counter
Definition: counter.c:79
#define hash_create(elts, value_bytes)
Definition: hash.h:696
static void vlib_node_runtime_perf_counter(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame, uword n, u64 t, vlib_node_runtime_perf_call_type_t call_type)
Definition: main.h:442
enum vnet_interface_function_priority_t_ vnet_interface_function_priority_t
#define ASSERT(truth)
void collect_detailed_interface_stats_flag_clear(void)
Definition: interface.c:1771
_vnet_interface_function_list_elt_t * sw_interface_mtu_change_functions[VNET_ITF_FUNC_N_PRIO]
Definition: vnet.h:79
ip_lookup_main_t lookup_main
Definition: ip6.h:112
enum vnet_link_t_ vnet_link_t
Link Type: A description of the protocol of packets on the link.
uword() vlib_node_function_t(struct vlib_main_t *vm, struct vlib_node_runtime_t *node, struct vlib_frame_t *frame)
Definition: node.h:54
void vnet_delete_hw_interface(vnet_main_t *vnm, u32 hw_if_index)
Definition: interface.c:1011
static vnet_hw_interface_class_t * vnet_get_hw_interface_class(vnet_main_t *vnm, u32 hw_class_index)
clib_error_t * vnet_interface_init(vlib_main_t *vm)
Definition: interface.c:1296
#define clib_error_report(e)
Definition: error.h:113
#define clib_bitmap_free(v)
Free a bitmap.
Definition: bitmap.h:92
static void vlib_zero_simple_counter(vlib_simple_counter_main_t *cm, u32 index)
Clear a simple counter Clears the set of per-thread u16 counters, and the u64 counter.
Definition: counter.h:158
#define vec_cmp(v1, v2)
Compare two vectors (only applicable to vectors of signed numbers).
Definition: vec.h:991
walk_rc_t(* vnet_hw_sw_interface_walk_t)(vnet_main_t *vnm, u32 sw_if_index, void *ctx)
Call back walk type for walking SW indices on a HW interface.
void vnet_sw_interface_set_protocol_mtu(vnet_main_t *vnm, u32 sw_if_index, u32 mtu[])
Definition: interface.c:701
static clib_error_t * collect_detailed_interface_stats_cli(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: interface.c:1777
uword * device_class_by_name
Definition: interface.h:870
vl_api_ip4_address_t hi
Definition: arp.api:37
vnet_l3_packet_type_t vnet_link_to_l3_proto(vnet_link_t link)
Convert a link to to an Ethertype.
Definition: interface.c:1630
static uword clib_bitmap_count_set_bits(uword *ai)
Return the number of set bits in a bitmap.
Definition: bitmap.h:468
struct _vlib_node_registration vlib_node_registration_t
This packets needs to go to ICMP error.
Definition: adj.h:79
This packet is for one of our own IP addresses.
Definition: adj.h:58
clib_bitmap_t * rss_queues
Definition: interface.h:617
void vnet_sw_interface_walk(vnet_main_t *vnm, vnet_sw_interface_walk_t fn, void *ctx)
Walk all the SW interfaces in the system.
Definition: interface.c:1121
#define hash_create_vec(elts, key_bytes, value_bytes)
Definition: hash.h:668
u8 * default_build_rewrite(vnet_main_t *vnm, u32 sw_if_index, vnet_link_t link_type, const void *dst_address)
Return a complete, zero-length (aka placeholder) rewrite.
Definition: interface.c:1668
struct _vnet_hw_interface_class vnet_hw_interface_class_t
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
ip_lookup_next_t lookup_next_index
Next hop after ip4-lookup.
Definition: adj.h:337
static clib_error_t * vnet_interface_cli_init(vlib_main_t *vm)
VLIB buffer representation.
Definition: buffer.h:102
u64 uword
Definition: types.h:112
static void unformat_free(unformat_input_t *i)
Definition: format.h:162
vnet_sw_interface_t * sw_interfaces
Definition: interface.h:873
vnet_hw_interface_class_t * hw_interface_class_registrations
Definition: vnet.h:69
a point 2 point interface
Definition: interface.h:387
__clib_export void unserialize_cstring(serialize_main_t *m, char **s)
Definition: serialize.c:178
void vnet_hw_interface_walk(vnet_main_t *vnm, vnet_hw_interface_walk_t fn, void *ctx)
Walk all the HW interface.
Definition: interface.c:1103
vnet_hw_interface_class_t * hw_interface_classes
Definition: interface.h:865
walk_rc_t(* vnet_sw_interface_walk_t)(vnet_main_t *vnm, vnet_sw_interface_t *si, void *ctx)
Call back walk type for walking SW indices on a HW interface.
static void setup_output_node(vlib_main_t *vm, u32 node_index, vnet_hw_interface_class_t *hw_class)
Definition: interface.c:784
_vnet_interface_function_list_elt_t * sw_interface_add_del_functions[VNET_ITF_FUNC_N_PRIO]
Definition: vnet.h:75
#define hash_get_mem(h, key)
Definition: hash.h:269
static clib_error_t * vnet_hw_interface_set_flags_helper(vnet_main_t *vnm, u32 hw_if_index, vnet_hw_interface_flags_t flags, vnet_interface_helper_flags_t helper_flags)
Definition: interface.c:304
u8 * format_unformat_error(u8 *s, va_list *va)
Definition: unformat.c:91
static vnet_sw_interface_flags_t vnet_sw_interface_get_flags(vnet_main_t *vnm, u32 sw_if_index)
vnet_sw_interface_type_t type
Definition: interface.h:737
ip4_main_t ip4_main
Global ip4 main structure.
Definition: ip4_forward.c:1105
int vnet_interface_name_renumber(u32 sw_if_index, u32 new_show_dev_instance)
Definition: interface.c:1422
static u32 vlib_num_workers()
Definition: threads.h:377
uword clib_bitmap_t
Definition: bitmap.h:50
static vlib_node_t * vlib_get_node(vlib_main_t *vm, u32 i)
Get vlib node by index.
Definition: node_funcs.h:85
static void setup_tx_node(vlib_main_t *vm, u32 node_index, vnet_device_class_t *dev_class)
Definition: interface.c:769
#define VLIB_NODE_FLAG_IS_OUTPUT
Definition: node.h:296
#define vec_foreach(var, vec)
Vector iterator.
vnet_device_class_t * device_classes
Definition: interface.h:866
#define foreach_buffer_opaque_union_subtype
Definition: buffer.h:110
static void serialize_vec_vnet_sw_hw_interface_state(serialize_main_t *m, va_list *va)
Definition: interface.c:89
u8 si
Definition: lisp_types.api:47
_vnet_interface_function_list_elt_t * sw_interface_admin_up_down_functions[VNET_ITF_FUNC_N_PRIO]
Definition: vnet.h:77
manual_print typedef u8 mac_address[6]
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:59
static clib_error_t * vnet_hw_interface_change_mac_address_helper(vnet_main_t *vnm, u32 hw_if_index, const u8 *mac_address)
Definition: interface.c:1531
static_always_inline vnet_feature_config_main_t * vnet_feature_get_config_main(u16 arc)
Definition: feature.h:244
void adj_nbr_update_rewrite(adj_index_t adj_index, adj_nbr_rewrite_flag_t flags, u8 *rewrite)
adj_nbr_update_rewrite
Definition: adj_nbr.c:319
void vlib_node_rename(vlib_main_t *vm, u32 node_index, char *fmt,...)
Definition: node.c:75
__clib_export u8 * format_clib_error(u8 *s, va_list *va)
Definition: error.c:191
static walk_rc_t sw_interface_walk_callback(vnet_main_t *vnm, u32 sw_if_index, void *ctx)
Definition: interface.c:747
static void unserialize_vec_vnet_sw_hw_interface_state(serialize_main_t *m, va_list *va)
Definition: interface.c:104
void ip6_sw_interface_enable_disable(u32 sw_if_index, u32 is_enable)
Definition: ip6_forward.c:240
u32 opaque[10]
Opaque data used by sub-graphs for their own purposes.
Definition: buffer.h:153
int vnet_sw_interface_is_p2p(vnet_main_t *vnm, u32 sw_if_index)
Definition: interface.c:1271
static clib_error_t * call_hw_interface_add_del_callbacks(vnet_main_t *vnm, u32 hw_if_index, u32 is_create)
Definition: interface.c:268
static clib_error_t * call_elf_section_interface_callbacks(vnet_main_t *vnm, u32 if_index, u32 flags, _vnet_interface_function_list_elt_t **elts)
Definition: interface.c:242
vl_api_interface_index_t sw_if_index
Definition: wireguard.api:34
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:978
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:170
enum vnet_interface_helper_flags_t_ vnet_interface_helper_flags_t