FD.io VPP  v21.06
Vector Packet Processing
interface_api.c
Go to the documentation of this file.
1 /*
2  *------------------------------------------------------------------
3  * interface_api.c - vnet interface api
4  *
5  * Copyright (c) 2016 Cisco and/or its affiliates.
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at:
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *------------------------------------------------------------------
18  */
19 
20 #include <vnet/vnet.h>
21 #include <vlibmemory/api.h>
22 
23 #include <vnet/interface.h>
25 #include <vnet/api_errno.h>
26 #include <vnet/ethernet/ethernet.h>
27 #include <vnet/ip/ip.h>
28 #include <vnet/fib/fib_table.h>
29 #include <vnet/mfib/mfib_table.h>
30 #include <vnet/l2/l2_vtr.h>
31 #include <vnet/vnet_msg_enum.h>
32 #include <vnet/fib/fib_api.h>
33 #include <vnet/mfib/mfib_table.h>
34 
35 #include <vlibapi/api_types.h>
36 
37 #include <vnet/ip/ip_types_api.h>
39 
40 #define vl_typedefs /* define message structures */
41 #include <vnet/vnet_all_api_h.h>
42 #undef vl_typedefs
43 
44 #define vl_endianfun /* define message structures */
45 #include <vnet/vnet_all_api_h.h>
46 #undef vl_endianfun
47 
48 /* instantiate all the print functions we know about */
49 #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
50 #define vl_printfun
51 #include <vnet/vnet_all_api_h.h>
52 #undef vl_printfun
53 
56 
57 #define foreach_vpe_api_msg \
58  _ (SW_INTERFACE_SET_FLAGS, sw_interface_set_flags) \
59  _ (SW_INTERFACE_SET_PROMISC, sw_interface_set_promisc) \
60  _ (HW_INTERFACE_SET_MTU, hw_interface_set_mtu) \
61  _ (SW_INTERFACE_SET_MTU, sw_interface_set_mtu) \
62  _ (WANT_INTERFACE_EVENTS, want_interface_events) \
63  _ (SW_INTERFACE_DUMP, sw_interface_dump) \
64  _ (SW_INTERFACE_ADD_DEL_ADDRESS, sw_interface_add_del_address) \
65  _ (SW_INTERFACE_SET_RX_MODE, sw_interface_set_rx_mode) \
66  _ (SW_INTERFACE_RX_PLACEMENT_DUMP, sw_interface_rx_placement_dump) \
67  _ (SW_INTERFACE_SET_RX_PLACEMENT, sw_interface_set_rx_placement) \
68  _ (SW_INTERFACE_SET_TABLE, sw_interface_set_table) \
69  _ (SW_INTERFACE_GET_TABLE, sw_interface_get_table) \
70  _ (SW_INTERFACE_SET_UNNUMBERED, sw_interface_set_unnumbered) \
71  _ (SW_INTERFACE_CLEAR_STATS, sw_interface_clear_stats) \
72  _ (SW_INTERFACE_TAG_ADD_DEL, sw_interface_tag_add_del) \
73  _ (SW_INTERFACE_ADD_DEL_MAC_ADDRESS, sw_interface_add_del_mac_address) \
74  _ (SW_INTERFACE_SET_MAC_ADDRESS, sw_interface_set_mac_address) \
75  _ (SW_INTERFACE_GET_MAC_ADDRESS, sw_interface_get_mac_address) \
76  _ (CREATE_VLAN_SUBIF, create_vlan_subif) \
77  _ (CREATE_SUBIF, create_subif) \
78  _ (DELETE_SUBIF, delete_subif) \
79  _ (CREATE_LOOPBACK, create_loopback) \
80  _ (CREATE_LOOPBACK_INSTANCE, create_loopback_instance) \
81  _ (DELETE_LOOPBACK, delete_loopback) \
82  _ (INTERFACE_NAME_RENUMBER, interface_name_renumber) \
83  _ (COLLECT_DETAILED_INTERFACE_STATS, collect_detailed_interface_stats) \
84  _ (SW_INTERFACE_SET_IP_DIRECTED_BROADCAST, \
85  sw_interface_set_ip_directed_broadcast) \
86  _ (SW_INTERFACE_ADDRESS_REPLACE_BEGIN, sw_interface_address_replace_begin) \
87  _ (SW_INTERFACE_ADDRESS_REPLACE_END, sw_interface_address_replace_end)
88 
89 static void
91 {
92  vl_api_sw_interface_set_flags_reply_t *rmp;
93  vnet_main_t *vnm = vnet_get_main ();
94  int rv = 0;
96  u16 flags;
97 
99 
100  flags =
101  ((ntohl (mp->flags)) & IF_STATUS_API_FLAG_ADMIN_UP) ?
103 
104  error = vnet_sw_interface_set_flags (vnm, ntohl (mp->sw_if_index), flags);
105  if (error)
106  {
107  rv = -1;
108  clib_error_report (error);
109  }
110 
112  REPLY_MACRO (VL_API_SW_INTERFACE_SET_FLAGS_REPLY);
113 }
114 
115 static void
118 {
119  vl_api_sw_interface_set_promisc_reply_t *rmp;
120  vnet_main_t *vnm = vnet_get_main ();
122  int rv = 0;
126 
128 
129  sw_if_index = ntohl (mp->sw_if_index);
130  swif = vnet_get_sw_interface (vnm, sw_if_index);
131  eif = ethernet_get_interface (em, swif->hw_if_index);
132  if (!eif)
133  {
134  rv = VNET_API_ERROR_INVALID_VALUE;
135  goto done;
136  }
137 
139  rv = ethernet_set_flags (vnm, swif->hw_if_index, flags);
140 
141 done:
143  REPLY_MACRO (VL_API_SW_INTERFACE_SET_PROMISC_REPLY);
144 }
145 
146 static void
148 {
149  vl_api_hw_interface_set_mtu_reply_t *rmp;
150  vnet_main_t *vnm = vnet_get_main ();
151  u32 sw_if_index = ntohl (mp->sw_if_index);
152  u16 mtu = ntohs (mp->mtu);
154  int rv = 0;
155 
157 
158  vnet_sw_interface_t *si = vnet_get_sw_interface (vnm, sw_if_index);
160  {
161  rv = VNET_API_ERROR_INVALID_VALUE;
162  goto bad_sw_if_index;
163  }
164 
167 
168  if (!eif)
169  {
170  rv = VNET_API_ERROR_FEATURE_DISABLED;
171  goto bad_sw_if_index;
172  }
173 
174  if (mtu < hi->min_supported_packet_bytes)
175  {
176  rv = VNET_API_ERROR_INVALID_VALUE;
177  goto bad_sw_if_index;
178  }
179 
180  if (mtu > hi->max_supported_packet_bytes)
181  {
182  rv = VNET_API_ERROR_INVALID_VALUE;
183  goto bad_sw_if_index;
184  }
185 
186  vnet_hw_interface_set_mtu (vnm, si->hw_if_index, mtu);
187 
189  REPLY_MACRO (VL_API_HW_INTERFACE_SET_MTU_REPLY);
190 }
191 
192 static void
194 {
195  vl_api_sw_interface_set_mtu_reply_t *rmp;
196  vnet_main_t *vnm = vnet_get_main ();
197  u32 sw_if_index = ntohl (mp->sw_if_index);
198  int rv = 0;
199  int i;
200  u32 per_protocol_mtu[VNET_N_MTU];
201 
203 
204  for (i = 0; i < VNET_N_MTU; i++)
205  {
206  per_protocol_mtu[i] = ntohl (mp->mtu[i]);
207  }
208  vnet_sw_interface_set_protocol_mtu (vnm, sw_if_index, per_protocol_mtu);
209 
211  REPLY_MACRO (VL_API_SW_INTERFACE_SET_MTU_REPLY);
212 }
213 
214 static void
217 {
218  vl_api_sw_interface_set_ip_directed_broadcast_reply_t *rmp;
219  u32 sw_if_index = ntohl (mp->sw_if_index);
220  int rv = 0;
221 
223 
225  sw_if_index, mp->enable);
226 
228  REPLY_MACRO (VL_API_SW_INTERFACE_SET_IP_DIRECTED_BROADCAST_REPLY);
229 }
230 
231 static void
235  u8 * interface_name, u32 context)
236 {
239  vnet_device_class_t *dev_class =
241 
242  vl_api_sw_interface_details_t *mp = vl_msg_api_alloc (sizeof (*mp));
243  clib_memset (mp, 0, sizeof (*mp));
244  mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_DETAILS);
245  mp->sw_if_index = ntohl (swif->sw_if_index);
246  mp->sup_sw_if_index = ntohl (swif->sup_sw_if_index);
247 
248  mp->flags |= (swif->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ?
252  mp->flags = ntohl (mp->flags);
253 
254  switch (swif->type)
255  {
257  mp->type = IF_API_TYPE_SUB;
258  break;
260  mp->type = IF_API_TYPE_P2P;
261  break;
263  mp->type = IF_API_TYPE_PIPE;
264  break;
265  default:
267  }
268  mp->type = ntohl (mp->type);
269 
272  mp->link_speed = ntohl (hi->link_speed);
273  mp->link_mtu = ntohs (hi->max_packet_bytes);
274  mp->mtu[VNET_MTU_L3] = ntohl (swif->mtu[VNET_MTU_L3]);
275  mp->mtu[VNET_MTU_IP4] = ntohl (swif->mtu[VNET_MTU_IP4]);
276  mp->mtu[VNET_MTU_IP6] = ntohl (swif->mtu[VNET_MTU_IP6]);
277  mp->mtu[VNET_MTU_MPLS] = ntohl (swif->mtu[VNET_MTU_MPLS]);
278 
279  mp->context = context;
280 
281  strncpy ((char *) mp->interface_name,
282  (char *) interface_name, ARRAY_LEN (mp->interface_name) - 1);
283 
284  if (dev_class && dev_class->name)
285  strncpy ((char *) mp->interface_dev_type, (char *) dev_class->name,
286  ARRAY_LEN (mp->interface_dev_type) - 1);
287 
288  /* Send the L2 address for ethernet physical intfcs */
289  if (swif->sup_sw_if_index == swif->sw_if_index
291  {
294 
295  ei = pool_elt_at_index (em->interfaces, hi->hw_instance);
296  ASSERT (sizeof (mp->l2_address) >= sizeof (ei->address.mac));
298  }
299  else if (swif->sup_sw_if_index != swif->sw_if_index)
300  {
301  vnet_sub_interface_t *sub = &swif->sub;
302  mp->sub_id = ntohl (sub->id);
303  mp->sub_number_of_tags =
304  sub->eth.flags.one_tag + sub->eth.flags.two_tags * 2;
307  mp->sub_if_flags =
308  ntohl (sub->eth.raw_flags & SUB_IF_API_FLAG_MASK_VNET);
309  }
310 
311  /* vlan tag rewrite data */
312  u32 vtr_op = L2_VTR_DISABLED;
313  u32 vtr_push_dot1q = 0, vtr_tag1 = 0, vtr_tag2 = 0;
314 
315  if (l2vtr_get (am->vlib_main, am->vnet_main, swif->sw_if_index,
316  &vtr_op, &vtr_push_dot1q, &vtr_tag1, &vtr_tag2) != 0)
317  {
318  // error - default to disabled
319  mp->vtr_op = ntohl (L2_VTR_DISABLED);
320  clib_warning ("cannot get vlan tag rewrite for sw_if_index %d",
321  swif->sw_if_index);
322  }
323  else
324  {
325  mp->vtr_op = ntohl (vtr_op);
326  mp->vtr_push_dot1q = ntohl (vtr_push_dot1q);
327  mp->vtr_tag1 = ntohl (vtr_tag1);
328  mp->vtr_tag2 = ntohl (vtr_tag2);
329  }
330 
331  /* pbb tag rewrite data */
332  ethernet_header_t eth_hdr;
333  u32 pbb_vtr_op = L2_VTR_DISABLED;
334  u16 outer_tag = 0;
335  u16 b_vlanid = 0;
336  u32 i_sid = 0;
337  clib_memset (&eth_hdr, 0, sizeof (eth_hdr));
338 
339  if (!l2pbb_get (am->vlib_main, am->vnet_main, swif->sw_if_index,
340  &pbb_vtr_op, &outer_tag, &eth_hdr, &b_vlanid, &i_sid))
341  {
342  mp->sub_if_flags |= ntohl (SUB_IF_API_FLAG_DOT1AH);
345  mp->b_vlanid = b_vlanid;
346  mp->i_sid = i_sid;
347  }
348 
350  if (tag)
351  strncpy ((char *) mp->tag, (char *) tag, ARRAY_LEN (mp->tag) - 1);
352 
353  vl_api_send_msg (rp, (u8 *) mp);
354 }
355 
356 static void
358 {
364 
366 
367  if (rp == 0)
368  {
369  clib_warning ("Client %d AWOL", mp->client_index);
370  return;
371  }
372 
373  u8 *filter = 0, *name = 0;
374  sw_if_index = ntohl (mp->sw_if_index);
375 
376  if (!mp->name_filter_valid && sw_if_index != ~0 && sw_if_index != 0)
377  {
378  /* is it a valid sw_if_index? */
379  if (!vnet_sw_if_index_is_api_valid (sw_if_index))
380  return;
381 
382  swif = vec_elt_at_index (im->sw_interfaces, sw_if_index);
383 
385  name =
387  swif, 0);
388  send_sw_interface_details (am, rp, swif, name, mp->context);
389  vec_free (name);
390  return;
391  }
392 
393  if (mp->name_filter_valid)
394  {
395  filter = vl_api_from_api_to_new_vec (mp, &mp->name_filter);
396  vec_add1 (filter, 0); /* Ensure it's a C string for strcasecmp() */
397  }
398 
399  char *strcasestr (char *, char *); /* lnx hdr file botch */
400  /* *INDENT-OFF* */
401  pool_foreach (swif, im->sw_interfaces)
402  {
403  if (!vnet_swif_is_api_visible (swif))
404  continue;
407  swif, 0);
408 
409  if (filter && !strcasestr((char *) name, (char *) filter))
410  continue;
411 
412  send_sw_interface_details (am, rp, swif, name, mp->context);
413  }
414  /* *INDENT-ON* */
415 
416  vec_free (name);
417  vec_free (filter);
418 }
419 
420 static void
423 {
424  vlib_main_t *vm = vlib_get_main ();
425  vnet_main_t *vnm = vnet_get_main ();
426  vl_api_sw_interface_add_del_address_reply_t *rmp;
427  int rv = 0;
428  u32 is_del;
429  clib_error_t *error = 0;
430  ip46_address_t address;
431 
433 
434  is_del = mp->is_add == 0;
435  vnm->api_errno = 0;
436 
437  if (mp->del_all)
439  else if (ip_address_decode (&mp->prefix.address, &address) == IP46_TYPE_IP6)
440  error = ip6_add_del_interface_address (vm, ntohl (mp->sw_if_index),
441  (void *) &address.ip6,
442  mp->prefix.len, is_del);
443  else
444  error = ip4_add_del_interface_address (vm, ntohl (mp->sw_if_index),
445  (void *) &address.ip4,
446  mp->prefix.len, is_del);
447 
448  if (error)
449  {
450  rv = vnm->api_errno;
451  clib_error_report (error);
452  goto done;
453  }
454 
456 
457 done:
458  REPLY_MACRO (VL_API_SW_INTERFACE_ADD_DEL_ADDRESS_REPLY);
459 }
460 
461 static void
463 {
464  vl_api_sw_interface_set_table_reply_t *rmp;
465  u32 sw_if_index = ntohl (mp->sw_if_index);
466  u32 table_id = ntohl (mp->vrf_id);
467  int rv = 0;
468 
470 
471  if (mp->is_ipv6)
472  rv = ip_table_bind (FIB_PROTOCOL_IP6, sw_if_index, table_id, 1);
473  else
474  rv = ip_table_bind (FIB_PROTOCOL_IP4, sw_if_index, table_id, 1);
475 
477 
478  REPLY_MACRO (VL_API_SW_INTERFACE_SET_TABLE_REPLY);
479 }
480 
481 int
483  u32 sw_if_index, u32 table_id, u8 is_api)
484 {
486  u32 fib_index, mfib_index;
488  mfib_source_t msrc;
489 
490  if (is_api)
491  {
492  src = FIB_SOURCE_API;
493  msrc = MFIB_SOURCE_API;
494  }
495  else
496  {
497  src = FIB_SOURCE_CLI;
498  msrc = MFIB_SOURCE_CLI;
499  }
500 
501  /*
502  * This if table does not exist = error is what we want in the end.
503  */
504  fib_index = fib_table_find (fproto, table_id);
505  mfib_index = mfib_table_find (fproto, table_id);
506 
507  if (~0 == fib_index || ~0 == mfib_index)
508  {
509  return (VNET_API_ERROR_NO_SUCH_FIB);
510  }
511 
512  if (FIB_PROTOCOL_IP6 == fproto)
513  {
514  /*
515  * If the interface already has in IP address, then a change int
516  * VRF is not allowed. The IP address applied must first be removed.
517  * We do not do that automatically here, since VPP has no knowledge
518  * of whether those subnets are valid in the destination VRF.
519  */
520  /* *INDENT-OFF* */
522  ia, sw_if_index,
523  1 /* honor unnumbered */ ,
524  ({
525  return (VNET_API_ERROR_ADDRESS_FOUND_FOR_INTERFACE);
526  }));
527  /* *INDENT-ON* */
528 
531 
532  /*
533  * tell those that are interested that the binding is changing.
534  */
537  cb->function (&ip6_main, cb->function_opaque,
538  sw_if_index,
539  fib_index,
540  ip6_main.fib_index_by_sw_if_index[sw_if_index]);
541 
542  /* unlock currently assigned tables */
543  if (0 != ip6_main.fib_index_by_sw_if_index[sw_if_index])
545  FIB_PROTOCOL_IP6, src);
546  if (0 != ip6_main.mfib_index_by_sw_if_index[sw_if_index])
548  FIB_PROTOCOL_IP6, msrc);
549 
550  if (0 != table_id)
551  {
552  /* we need to lock the table now it's inuse */
553  fib_table_lock (fib_index, FIB_PROTOCOL_IP6, src);
554  mfib_table_lock (mfib_index, FIB_PROTOCOL_IP6, msrc);
555  }
556 
559  }
560  else
561  {
562  /*
563  * If the interface already has in IP address, then a change int
564  * VRF is not allowed. The IP address applied must first be removed.
565  * We do not do that automatically here, since VPP has no knowledge
566  * of whether those subnets are valid in the destination VRF.
567  */
568  /* *INDENT-OFF* */
570  ia, sw_if_index,
571  1 /* honor unnumbered */ ,
572  ({
573  return (VNET_API_ERROR_ADDRESS_FOUND_FOR_INTERFACE);
574  }));
575  /* *INDENT-ON* */
576 
579 
580  /*
581  * tell those that are interested that the binding is changing.
582  */
585  cb->function (&ip4_main, cb->function_opaque,
586  sw_if_index,
587  fib_index,
588  ip4_main.fib_index_by_sw_if_index[sw_if_index]);
589 
590  /* unlock currently assigned tables */
591  if (0 != ip4_main.fib_index_by_sw_if_index[sw_if_index])
593  FIB_PROTOCOL_IP4, src);
594  if (0 != ip4_main.mfib_index_by_sw_if_index[sw_if_index])
596  FIB_PROTOCOL_IP4, msrc);
597 
598  if (0 != table_id)
599  {
600  /* we need to lock the table now it's inuse */
602  table_id, src);
603 
605  table_id, msrc);
606  }
607 
610  }
611 
612  return (0);
613 }
614 
615 static void
617  u32 context, int retval, u32 vrf_id)
618 {
620 
621  mp = vl_msg_api_alloc (sizeof (*mp));
622  clib_memset (mp, 0, sizeof (*mp));
623  mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_GET_TABLE_REPLY);
624  mp->context = context;
625  mp->retval = htonl (retval);
626  mp->vrf_id = htonl (vrf_id);
627 
628  vl_api_send_msg (reg, (u8 *) mp);
629 }
630 
631 static void
633 {
635  fib_table_t *fib_table = 0;
636  u32 sw_if_index = ~0;
637  u32 fib_index = ~0;
638  u32 table_id = ~0;
639  fib_protocol_t fib_proto = FIB_PROTOCOL_IP4;
640  int rv = 0;
641 
643  if (!reg)
644  return;
645 
647 
648  sw_if_index = ntohl (mp->sw_if_index);
649 
650  if (mp->is_ipv6)
651  fib_proto = FIB_PROTOCOL_IP6;
652 
653  fib_index = fib_table_get_index_for_sw_if_index (fib_proto, sw_if_index);
654  if (fib_index != ~0)
655  {
656  fib_table = fib_table_get (fib_index, fib_proto);
657  table_id = fib_table->ft_table_id;
658  }
659 
661 
662  send_sw_interface_get_table_reply (reg, mp->context, rv, table_id);
663 }
664 
667 {
668  vl_api_sw_interface_set_unnumbered_reply_t *rmp;
669  int rv = 0;
670  vnet_main_t *vnm = vnet_get_main ();
671  u32 sw_if_index = ntohl (mp->sw_if_index);
672  u32 unnumbered_sw_if_index = ntohl (mp->unnumbered_sw_if_index);
673 
674  /*
675  * The API message field names are backwards from
676  * the underlying data structure names.
677  * It's not worth changing them now.
678  */
679  if (!vnet_sw_interface_is_api_valid (vnm, unnumbered_sw_if_index))
680  {
681  rv = VNET_API_ERROR_INVALID_SW_IF_INDEX;
682  goto done;
683  }
684 
685  /* Only check the "use loop0" field when setting the binding */
686  if (mp->is_add && !vnet_sw_interface_is_api_valid (vnm, sw_if_index))
687  {
688  rv = VNET_API_ERROR_INVALID_SW_IF_INDEX_2;
689  goto done;
690  }
691 
692  vnet_sw_interface_update_unnumbered (unnumbered_sw_if_index,
693  sw_if_index, mp->is_add);
694 done:
695  REPLY_MACRO (VL_API_SW_INTERFACE_SET_UNNUMBERED_REPLY);
696 }
697 
698 static void
700  mp)
701 {
702  vl_api_sw_interface_clear_stats_reply_t *rmp;
703 
704  vnet_main_t *vnm = vnet_get_main ();
708  int j, n_counters;
709  int rv = 0;
710 
711  if (mp->sw_if_index != ~0)
713 
714  n_counters = vec_len (im->combined_sw_if_counters);
715 
716  for (j = 0; j < n_counters; j++)
717  {
718  im = &vnm->interface_main;
719  cm = im->combined_sw_if_counters + j;
720  if (mp->sw_if_index == (u32) ~ 0)
722  else
723  vlib_zero_combined_counter (cm, ntohl (mp->sw_if_index));
724  }
725 
726  n_counters = vec_len (im->sw_if_counters);
727 
728  for (j = 0; j < n_counters; j++)
729  {
730  im = &vnm->interface_main;
731  sm = im->sw_if_counters + j;
732  if (mp->sw_if_index == (u32) ~ 0)
734  else
735  vlib_zero_simple_counter (sm, ntohl (mp->sw_if_index));
736  }
737 
739 
740  REPLY_MACRO (VL_API_SW_INTERFACE_CLEAR_STATS_REPLY);
741 }
742 
743 /*
744  * Events used for sw_interface_events
745  */
747 {
754 };
755 
756 static void
759  vl_api_registration_t * vl_reg,
760  u32 sw_if_index, enum api_events events)
761 {
763 
764  mp = vl_msg_api_alloc (sizeof (*mp));
765  clib_memset (mp, 0, sizeof (*mp));
766  mp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_EVENT);
767  mp->sw_if_index = ntohl (sw_if_index);
768  mp->client_index = reg->client_index;
769  mp->pid = reg->client_pid;
770  mp->flags = 0;
771  mp->flags |= (events & API_ADMIN_UP_EVENT) ?
773  mp->flags |= (events & API_LINK_STATE_UP_EVENT) ?
775  mp->flags = ntohl (mp->flags);
776  mp->deleted = events & API_SW_INTERFACE_DEL_EVENT ? true : false;
777  vl_api_send_msg (vl_reg, (u8 *) mp);
778 }
779 
780 static uword
783 {
785  uword *event_by_sw_if_index = 0;
787  int i;
788  vl_api_registration_t *vl_reg;
789  uword event_type;
790  uword *event_data = 0;
792 
793  vam->link_state_process_up = 1;
794 
795  while (1)
796  {
798 
799  /* Batch up events */
800  while ((event_type = vlib_process_get_events (vm, &event_data)) != ~0)
801  {
802  for (i = 0; i < vec_len (event_data); i++)
803  {
804  sw_if_index = event_data[i];
805  vec_validate_init_empty (event_by_sw_if_index, sw_if_index, 0);
806  event_by_sw_if_index[sw_if_index] |= event_type;
807  }
808  vec_reset_length (event_data);
809  }
810 
811  for (i = 0; i < vec_len (event_by_sw_if_index); i++)
812  {
813  if (event_by_sw_if_index[i] == 0)
814  continue;
815 
816  /* *INDENT-OFF* */
817  pool_foreach (reg, vam->interface_events_registrations)
818  {
820  if (vl_reg)
821  send_sw_interface_event (vam, reg, vl_reg, i, event_by_sw_if_index[i]);
822  }
823  /* *INDENT-ON* */
824  }
825  vec_reset_length (event_by_sw_if_index);
826  }
827 
828  return 0;
829 }
830 
831 static clib_error_t *link_up_down_function (vnet_main_t * vm, u32 hw_if_index,
832  u32 flags);
834  u32 hw_if_index, u32 flags);
836  u32 sw_if_index,
837  u32 flags);
838 
839 /* *INDENT-OFF* */
840 VLIB_REGISTER_NODE (link_state_process_node,static) = {
841  .function = link_state_process,
842  .type = VLIB_NODE_TYPE_PROCESS,
843  .name = "vpe-link-state-process",
844 };
845 /* *INDENT-ON* */
846 
847 VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION (admin_up_down_function);
848 VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION (link_up_down_function);
849 VNET_SW_INTERFACE_ADD_DEL_FUNCTION (sw_interface_add_del_function);
850 
851 static clib_error_t *
852 link_up_down_function (vnet_main_t * vm, u32 hw_if_index, u32 flags)
853 {
855  vnet_hw_interface_t *hi = vnet_get_hw_interface (vm, hw_if_index);
856 
857  if (vam->link_state_process_up)
858  {
859  enum api_events event = ((flags & VNET_HW_INTERFACE_FLAG_LINK_UP) ?
863  link_state_process_node.index, event,
864  hi->sw_if_index);
865  }
866  return 0;
867 }
868 
869 static clib_error_t *
870 admin_up_down_function (vnet_main_t * vm, u32 sw_if_index, u32 flags)
871 {
873 
874  /*
875  * Note: it's perfectly fair to set a subif admin up / admin down.
876  * Note the subtle distinction between this routine and the previous
877  * routine.
878  */
879  if (vam->link_state_process_up)
880  {
881  enum api_events event = ((flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ?
884  link_state_process_node.index, event,
885  sw_if_index);
886  }
887  return 0;
888 }
889 
890 static clib_error_t *
892 {
894 
895  if (vam->link_state_process_up)
896  {
897  enum api_events event =
900  link_state_process_node.index, event,
901  sw_if_index);
902  }
903  return 0;
904 }
905 
908 {
909  vnet_main_t *vnm = vnet_get_main ();
910  vl_api_sw_interface_tag_add_del_reply_t *rmp;
911  int rv = 0;
912  u8 *tag;
913  u32 sw_if_index = ntohl (mp->sw_if_index);
914 
916 
917  if (mp->is_add)
918  {
919  if (mp->tag[0] == 0)
920  {
921  rv = VNET_API_ERROR_INVALID_VALUE;
922  goto out;
923  }
924 
925  mp->tag[ARRAY_LEN (mp->tag) - 1] = 0;
926  tag = format (0, "%s%c", mp->tag, 0);
927  vnet_set_sw_interface_tag (vnm, tag, sw_if_index);
928  }
929  else
930  vnet_clear_sw_interface_tag (vnm, sw_if_index);
931 
933 out:
934  REPLY_MACRO (VL_API_SW_INTERFACE_TAG_ADD_DEL_REPLY);
935 }
936 
939 {
940  vl_api_sw_interface_add_del_mac_address_reply_t *rmp;
941  vnet_main_t *vnm = vnet_get_main ();
942  u32 sw_if_index = ntohl (mp->sw_if_index);
945  int rv = 0;
946 
948 
949  /* for subifs, the MAC should be changed on the actual hw if */
950  hi = vnet_get_sup_hw_interface (vnm, sw_if_index);
952  mp->addr, mp->is_add);
953  if (error)
954  {
955  rv = VNET_API_ERROR_UNIMPLEMENTED;
956  clib_error_report (error);
957  goto out;
958  }
959 
961 out:
962  REPLY_MACRO (VL_API_SW_INTERFACE_ADD_DEL_MAC_ADDRESS_REPLY);
963 }
964 
967 {
968  vl_api_sw_interface_set_mac_address_reply_t *rmp;
969  vnet_main_t *vnm = vnet_get_main ();
970  u32 sw_if_index = ntohl (mp->sw_if_index);
973  int rv = 0;
975 
977 
978  si = vnet_get_sw_interface (vnm, sw_if_index);
979  mac_address_decode (mp->mac_address, &mac);
980  error =
982  if (error)
983  {
984  rv = VNET_API_ERROR_UNIMPLEMENTED;
985  clib_error_report (error);
986  goto out;
987  }
988 
990 out:
991  REPLY_MACRO (VL_API_SW_INTERFACE_SET_MAC_ADDRESS_REPLY);
992 }
993 
996 {
999  vnet_main_t *vnm = vnet_get_main ();
1000  u32 sw_if_index = ntohl (mp->sw_if_index);
1002  ethernet_interface_t *eth_if = 0;
1003  int rv = 0;
1004 
1005  VALIDATE_SW_IF_INDEX (mp);
1006 
1007  si = vnet_get_sup_sw_interface (vnm, sw_if_index);
1010 
1012 
1014  if (!reg)
1015  return;
1016  rmp = vl_msg_api_alloc (sizeof (*rmp));
1017  rmp->_vl_msg_id = htons (VL_API_SW_INTERFACE_GET_MAC_ADDRESS_REPLY);
1018  rmp->context = mp->context;
1019  rmp->retval = htonl (rv);
1020  if (!rv && eth_if)
1021  mac_address_encode (&eth_if->address.mac, rmp->mac_address);
1022  vl_api_send_msg (reg, (u8 *) rmp);
1023 }
1024 
1027 {
1028  vl_api_sw_interface_set_rx_mode_reply_t *rmp;
1029  vnet_main_t *vnm = vnet_get_main ();
1030  u32 sw_if_index = ntohl (mp->sw_if_index);
1033  int rv = 0;
1035 
1036  VALIDATE_SW_IF_INDEX (mp);
1037 
1038  si = vnet_get_sw_interface (vnm, sw_if_index);
1040  {
1041  rv = VNET_API_ERROR_INVALID_VALUE;
1042  goto bad_sw_if_index;
1043  }
1044 
1045  rx_mode = (vnet_hw_if_rx_mode) ntohl (mp->mode);
1046  error = set_hw_interface_change_rx_mode (vnm, si->hw_if_index,
1047  mp->queue_id_valid,
1048  ntohl (mp->queue_id),
1049  (vnet_hw_if_rx_mode) rx_mode);
1050 
1051  if (error)
1052  {
1053  rv = VNET_API_ERROR_UNIMPLEMENTED;
1054  clib_error_report (error);
1055  goto out;
1056  }
1057 
1059 out:
1060  REPLY_MACRO (VL_API_SW_INTERFACE_SET_RX_MODE_REPLY);
1061 }
1062 
1063 static void
1065  vl_api_registration_t * rp,
1066  u32 sw_if_index, u32 worker_id,
1067  u32 queue_id, u8 mode, u32 context)
1068 {
1070  mp = vl_msg_api_alloc (sizeof (*mp));
1071  clib_memset (mp, 0, sizeof (*mp));
1072 
1073  mp->_vl_msg_id = htons (VL_API_SW_INTERFACE_RX_PLACEMENT_DETAILS);
1074  mp->sw_if_index = htonl (sw_if_index);
1075  mp->queue_id = htonl (queue_id);
1076  mp->worker_id = htonl (worker_id);
1077  mp->mode = htonl (mode);
1078  mp->context = context;
1079 
1080  vl_api_send_msg (rp, (u8 *) mp);
1081 }
1082 
1085 {
1086  vnet_main_t *vnm = vnet_get_main ();
1088  u32 sw_if_index = ntohl (mp->sw_if_index);
1089  vl_api_registration_t *reg;
1090 
1092  if (!reg)
1093  return;
1094 
1095  if (sw_if_index == ~0)
1096  {
1097  vnet_hw_if_rx_queue_t **all_queues = 0;
1098  vnet_hw_if_rx_queue_t **qptr;
1101  vec_add1 (all_queues, q);
1103 
1104  vec_foreach (qptr, all_queues)
1105  {
1106  u32 current_thread = qptr[0]->thread_index;
1107  u32 hw_if_index = qptr[0]->hw_if_index;
1108  vnet_hw_interface_t *hw_if =
1109  vnet_get_hw_interface (vnm, hw_if_index);
1111  am, reg, hw_if->sw_if_index, current_thread, qptr[0]->queue_id,
1112  qptr[0]->mode, mp->context);
1113  }
1114  vec_free (all_queues);
1115  }
1116  else
1117  {
1118  int i;
1120 
1121  if (!vnet_sw_if_index_is_api_valid (sw_if_index))
1122  {
1123  clib_warning ("sw_if_index %u does not exist", sw_if_index);
1124  goto bad_sw_if_index;
1125  }
1126 
1127  si = vnet_get_sw_interface (vnm, sw_if_index);
1129  {
1130  clib_warning ("interface type is not HARDWARE! P2P, PIPE and SUB"
1131  " interfaces are not supported");
1132  goto bad_sw_if_index;
1133  }
1134 
1136 
1137  for (i = 0; i < vec_len (hw->rx_queue_indices); i++)
1138  {
1139  vnet_hw_if_rx_queue_t *rxq =
1142  am, reg, hw->sw_if_index, rxq->thread_index, rxq->queue_id,
1143  rxq->mode, mp->context);
1144  }
1145  }
1146 
1148 }
1149 
1152 {
1153  vl_api_sw_interface_set_rx_placement_reply_t *rmp;
1154  vnet_main_t *vnm = vnet_get_main ();
1155  u32 sw_if_index = ntohl (mp->sw_if_index);
1157  clib_error_t *error = 0;
1158  int rv = 0;
1159 
1160  VALIDATE_SW_IF_INDEX (mp);
1161 
1162  si = vnet_get_sw_interface (vnm, sw_if_index);
1164  {
1165  rv = VNET_API_ERROR_INVALID_VALUE;
1166  goto bad_sw_if_index;
1167  }
1168 
1170  ntohl (mp->queue_id),
1171  ntohl (mp->worker_id), mp->is_main);
1172  if (error)
1173  {
1174  rv = VNET_API_ERROR_UNIMPLEMENTED;
1175  clib_error_report (error);
1176  goto out;
1177  }
1178 
1180 out:
1181  REPLY_MACRO (VL_API_SW_INTERFACE_SET_RX_PLACEMENT_REPLY);
1182 }
1183 
1184 static void
1186 {
1188  vnet_main_t *vnm = vnet_get_main ();
1189  u32 sw_if_index = (u32) ~ 0;
1191  int rv = 0;
1192  u32 id;
1193  vnet_sw_interface_t template;
1194  uword *p;
1196  u64 sup_and_sub_key;
1197  vl_api_registration_t *reg;
1199 
1200  VALIDATE_SW_IF_INDEX (mp);
1201 
1202  hi = vnet_get_sup_hw_interface (vnm, ntohl (mp->sw_if_index));
1203 
1205  {
1206  rv = VNET_API_ERROR_BOND_SLAVE_NOT_ALLOWED;
1207  goto out;
1208  }
1209 
1210  id = ntohl (mp->vlan_id);
1211  if (id == 0 || id > 4095)
1212  {
1213  rv = VNET_API_ERROR_INVALID_VLAN;
1214  goto out;
1215  }
1216 
1217  sup_and_sub_key = ((u64) (hi->sw_if_index) << 32) | (u64) id;
1218 
1219  p = hash_get_mem (im->sw_if_index_by_sup_and_sub, &sup_and_sub_key);
1220  if (p)
1221  {
1222  rv = VNET_API_ERROR_VLAN_ALREADY_EXISTS;
1223  goto out;
1224  }
1225 
1226  clib_memset (&template, 0, sizeof (template));
1227  template.type = VNET_SW_INTERFACE_TYPE_SUB;
1228  template.flood_class = VNET_FLOOD_CLASS_NORMAL;
1229  template.sup_sw_if_index = hi->sw_if_index;
1230  template.sub.id = id;
1231  template.sub.eth.raw_flags = 0;
1232  template.sub.eth.flags.one_tag = 1;
1233  template.sub.eth.outer_vlan_id = id;
1234  template.sub.eth.flags.exact_match = 1;
1235 
1236  error = vnet_create_sw_interface (vnm, &template, &sw_if_index);
1237  if (error)
1238  {
1239  clib_error_report (error);
1240  rv = VNET_API_ERROR_INVALID_REGISTRATION;
1241  goto out;
1242  }
1243 
1244  u64 *kp = clib_mem_alloc (sizeof (*kp));
1245  *kp = sup_and_sub_key;
1246 
1247  hash_set (hi->sub_interface_sw_if_index_by_id, id, sw_if_index);
1248  hash_set_mem (im->sw_if_index_by_sup_and_sub, kp, sw_if_index);
1249 
1251 
1252 out:
1254  if (!reg)
1255  return;
1256 
1257  rmp = vl_msg_api_alloc (sizeof (*rmp));
1258  rmp->_vl_msg_id = htons (VL_API_CREATE_VLAN_SUBIF_REPLY);
1259  rmp->context = mp->context;
1260  rmp->retval = htonl (rv);
1261  rmp->sw_if_index = htonl (sw_if_index);
1262  vl_api_send_msg (reg, (u8 *) rmp);
1263 }
1264 
1265 static void
1267 {
1269  vnet_main_t *vnm = vnet_get_main ();
1270  u32 sub_sw_if_index = ~0;
1272  int rv = 0;
1273 
1274  VALIDATE_SW_IF_INDEX (mp);
1275 
1276  hi = vnet_get_sup_hw_interface (vnm, ntohl (mp->sw_if_index));
1277 
1279  rv = VNET_API_ERROR_BOND_SLAVE_NOT_ALLOWED;
1280  else
1281  rv = vnet_create_sub_interface (ntohl (mp->sw_if_index),
1282  ntohl (mp->sub_id),
1283  ntohl (mp->sub_if_flags),
1284  ntohs (mp->inner_vlan_id),
1285  ntohs (mp->outer_vlan_id),
1286  &sub_sw_if_index);
1287 
1289 
1290  /* *INDENT-OFF* */
1291  REPLY_MACRO2(VL_API_CREATE_SUBIF_REPLY,
1292  ({
1293  rmp->sw_if_index = ntohl(sub_sw_if_index);
1294  }));
1295  /* *INDENT-ON* */
1296 }
1297 
1298 static void
1300 {
1301  vl_api_delete_subif_reply_t *rmp;
1302  int rv;
1303 
1304  rv = vnet_delete_sub_interface (ntohl (mp->sw_if_index));
1305 
1306  REPLY_MACRO (VL_API_DELETE_SUBIF_REPLY);
1307 }
1308 
1309 static void
1311  mp)
1312 {
1313  vl_api_interface_name_renumber_reply_t *rmp;
1314  int rv = 0;
1315 
1316  VALIDATE_SW_IF_INDEX (mp);
1317 
1319  (ntohl (mp->sw_if_index), ntohl (mp->new_show_dev_instance));
1320 
1322 
1323  REPLY_MACRO (VL_API_INTERFACE_NAME_RENUMBER_REPLY);
1324 }
1325 
1326 static void
1328 {
1330  u32 sw_if_index;
1331  int rv;
1333 
1334  mac_address_decode (mp->mac_address, &mac);
1335  rv = vnet_create_loopback_interface (&sw_if_index, (u8 *) & mac, 0, 0);
1336 
1337  /* *INDENT-OFF* */
1338  REPLY_MACRO2(VL_API_CREATE_LOOPBACK_REPLY,
1339  ({
1340  rmp->sw_if_index = ntohl (sw_if_index);
1341  }));
1342  /* *INDENT-ON* */
1343 }
1344 
1347 {
1349  u32 sw_if_index;
1350  u8 is_specified = mp->is_specified;
1351  u32 user_instance = ntohl (mp->user_instance);
1352  int rv;
1354 
1355  mac_address_decode (mp->mac_address, &mac);
1356  rv = vnet_create_loopback_interface (&sw_if_index, (u8 *) & mac,
1357  is_specified, user_instance);
1358 
1359  /* *INDENT-OFF* */
1360  REPLY_MACRO2(VL_API_CREATE_LOOPBACK_INSTANCE_REPLY,
1361  ({
1362  rmp->sw_if_index = ntohl (sw_if_index);
1363  }));
1364  /* *INDENT-ON* */
1365 }
1366 
1367 static void
1369 {
1370  vl_api_delete_loopback_reply_t *rmp;
1371  u32 sw_if_index;
1372  int rv;
1373 
1374  sw_if_index = ntohl (mp->sw_if_index);
1375  rv = vnet_delete_loopback_interface (sw_if_index);
1376 
1377  REPLY_MACRO (VL_API_DELETE_LOOPBACK_REPLY);
1378 }
1379 
1380 static void
1383 {
1384  vl_api_collect_detailed_interface_stats_reply_t *rmp;
1385  int rv = 0;
1386 
1387  rv =
1389  mp->enable_disable);
1390 
1391  REPLY_MACRO (VL_API_COLLECT_DETAILED_INTERFACE_STATS_REPLY);
1392 }
1393 
1394 static void
1397 {
1398  vl_api_sw_interface_address_replace_begin_reply_t *rmp;
1399  int rv = 0;
1400 
1402 
1403  REPLY_MACRO (VL_API_SW_INTERFACE_ADDRESS_REPLACE_BEGIN_REPLY);
1404 }
1405 
1406 static void
1409 {
1410  vl_api_sw_interface_address_replace_end_reply_t *rmp;
1411  int rv = 0;
1412 
1414 
1415  REPLY_MACRO (VL_API_SW_INTERFACE_ADDRESS_REPLACE_END_REPLY);
1416 }
1417 
1418 /*
1419  * vpe_api_hookup
1420  * Add vpe's API message handlers to the table.
1421  * vlib has already mapped shared memory and
1422  * added the client registration handlers.
1423  * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
1424  */
1425 #define vl_msg_name_crc_list
1426 #include <vnet/interface.api.h>
1427 #undef vl_msg_name_crc_list
1428 
1429 static void
1431 {
1432 #define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
1433  foreach_vl_msg_name_crc_interface;
1434 #undef _
1435 }
1436 
1437 pub_sub_handler (interface_events, INTERFACE_EVENTS);
1438 
1439 static clib_error_t *
1441 {
1443 
1444 #define _(N,n) \
1445  vl_msg_api_set_handlers(VL_API_##N, #n, \
1446  vl_api_##n##_t_handler, \
1447  vl_noop_handler, \
1448  vl_api_##n##_t_endian, \
1449  vl_api_##n##_t_print, \
1450  sizeof(vl_api_##n##_t), 1);
1452 #undef _
1453 
1454  /* Mark these APIs as mp safe */
1455  am->is_mp_safe[VL_API_SW_INTERFACE_DUMP] = 1;
1456  am->is_mp_safe[VL_API_SW_INTERFACE_DETAILS] = 1;
1457  am->is_mp_safe[VL_API_SW_INTERFACE_TAG_ADD_DEL] = 1;
1458 
1459  /* Do not replay VL_API_SW_INTERFACE_DUMP messages */
1460  am->api_trace_cfg[VL_API_SW_INTERFACE_DUMP].replay_enable = 0;
1461 
1462  /*
1463  * Set up the (msg_name, crc, message-id) table
1464  */
1466 
1467  return 0;
1468 }
1469 
1471 
1472 /*
1473  * fd.io coding-style-patch-verification: ON
1474  *
1475  * Local Variables:
1476  * eval: (c-set-style "gnu")
1477  * End:
1478  */
static void vl_api_delete_subif_t_handler(vl_api_delete_subif_t *mp)
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:524
vl_api_interface_index_t sw_if_index
Definition: interface.api:53
vl_api_interface_index_t sw_if_index
Definition: interface.api:105
enum fib_source_t_ fib_source_t
The different sources that can create a route.
u32 mfib_table_find_or_create_and_lock(fib_protocol_t proto, u32 table_id, mfib_source_t src)
Get the index of the FIB for a Table-ID.
Definition: mfib_table.c:613
#define hash_set(h, key, value)
Definition: hash.h:255
vnet_interface_output_runtime_t * rt
ip4_table_bind_function_t * function
Definition: ip4.h:94
vnet_main_t * vnet_main
#define CLIB_UNUSED(x)
Definition: clib.h:90
Enable or disable detailed interface stats.
Definition: interface.api:635
clib_error_t * set_hw_interface_rx_placement(u32 hw_if_index, u32 queue_id, u32 thread_index, u8 is_main)
vl_api_if_status_flags_t flags
Definition: interface.api:163
vl_api_mac_address_t mac
Definition: l2.api:559
vl_api_wireguard_peer_flags_t flags
Definition: wireguard.api:105
Get interface&#39;s MAC address.
Definition: interface.api:401
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:523
static uword * vlib_process_wait_for_event(vlib_main_t *vm)
Definition: node_funcs.h:660
u32 * mfib_index_by_sw_if_index
Table index indexed by software interface.
Definition: ip6.h:130
#define ntohs(x)
Definition: af_xdp.bpf.c:29
static void vl_api_interface_name_renumber_t_handler(vl_api_interface_name_renumber_t *mp)
static vnet_hw_interface_t * vnet_get_sup_hw_interface(vnet_main_t *vnm, u32 sw_if_index)
vl_api_interface_index_t unnumbered_sw_if_index
Definition: interface.api:334
VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION(link_up_down_function)
ethernet_main_t * ethernet_get_main(vlib_main_t *vm)
Definition: init.c:125
void mac_address_encode(const mac_address_t *in, u8 *out)
static clib_error_t * sw_interface_add_del_function(vnet_main_t *vm, u32 sw_if_index, u32 flags)
Set flags on the interface.
Definition: interface.api:35
#define pool_foreach(VAR, POOL)
Iterate through pool.
Definition: pool.h:534
vnet_interface_main_t interface_main
Definition: vnet.h:81
static void vl_api_sw_interface_add_del_address_t_handler(vl_api_sw_interface_add_del_address_t *mp)
void ip_interface_address_mark(void)
Definition: ip_interface.c:229
vl_api_interface_index_t sw_if_index
Definition: interface.api:405
vl_api_interface_index_t sw_if_index
Definition: interface.api:471
unsigned long u64
Definition: types.h:89
u32 vrf_id
Definition: nat44_ed.api:1053
#define REPLY_MACRO2(t, body)
vnet_feature_config_main_t * cm
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
ethernet_interface_t * interfaces
Definition: ethernet.h:304
u32 fib_table_get_index_for_sw_if_index(fib_protocol_t proto, u32 sw_if_index)
Get the index of the FIB bound to the interface.
Definition: fib_table.c:998
static void vl_api_send_msg(vl_api_registration_t *rp, u8 *elem)
Definition: api.h:35
u8 src_address[6]
Definition: packet.h:56
Set an interface&#39;s rx-placement Rx-Queue placement on specific thread is operational for only hardwar...
Definition: interface.api:451
static vnet_hw_interface_t * vnet_get_hw_interface(vnet_main_t *vnm, u32 hw_if_index)
static void vl_api_delete_loopback_t_handler(vl_api_delete_loopback_t *mp)
vl_api_interface_index_t sw_if_index
Definition: interface.api:512
clib_error_t * vnet_hw_interface_change_mac_address(vnet_main_t *vnm, u32 hw_if_index, const u8 *mac_address)
Definition: interface.c:1607
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:607
static void vnet_clear_sw_interface_tag(vnet_main_t *vnm, u32 sw_if_index)
static void send_sw_interface_event(vpe_api_main_t *am, vpe_client_registration_t *reg, vl_api_registration_t *vl_reg, u32 sw_if_index, enum api_events events)
vl_api_address_t src
Definition: gre.api:54
VLIB_API_INIT_FUNCTION(interface_api_hookup)
vl_api_mac_address_t mac_address
Definition: interface.api:599
#define hash_set_mem(h, key, value)
Definition: hash.h:275
ip_lookup_main_t lookup_main
Definition: ip4.h:109
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_if_rx_mode mode)
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:703
vlib_main_t * vlib_main
u32 * fib_index_by_sw_if_index
Table index indexed by software interface.
Definition: ip4.h:123
Set IP4 directed broadcast The directed broadcast enabled a packet sent to the interface&#39;s subnet add...
Definition: interface.api:86
static void vl_api_sw_interface_set_unnumbered_t_handler(vl_api_sw_interface_set_unnumbered_t *mp)
string name[64]
Definition: fib.api:25
static void vl_api_sw_interface_set_rx_placement_t_handler(vl_api_sw_interface_set_rx_placement_t *mp)
vpe_api_main_t vpe_api_main
Definition: interface_api.c:55
struct _vnet_device_class vnet_device_class_t
void * vl_msg_api_alloc(int nbytes)
static void vl_api_sw_interface_dump_t_handler(vl_api_sw_interface_dump_t *mp)
unsigned char u8
Definition: types.h:56
trace_cfg_t * api_trace_cfg
Current trace configuration.
Definition: api_common.h:278
static void send_interface_rx_placement_details(vpe_api_main_t *am, vl_api_registration_t *rp, u32 sw_if_index, u32 worker_id, u32 queue_id, u8 mode, u32 context)
#define VNET_HW_INTERFACE_FLAG_DUPLEX_MASK
Definition: interface.h:575
static clib_error_t * interface_api_hookup(vlib_main_t *vm)
enum fib_protocol_t_ fib_protocol_t
Protocol Type.
u8 id[64]
Definition: dhcp.api:160
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
static uword link_state_process(vlib_main_t *vm, vlib_node_runtime_t *rt, vlib_frame_t *f)
unsigned int u32
Definition: types.h:88
vl_api_mac_address_t mac_address
Definition: interface.api:573
vl_api_mac_address_t b_dmac
Definition: interface.api:197
int ip_table_bind(fib_protocol_t fproto, u32 sw_if_index, u32 table_id, u8 is_api)
vlib_frame_t * f
vl_api_interface_index_t sw_if_index
Definition: interface.api:76
enum mfib_source_t_ mfib_source_t
Possible [control plane] sources of MFIB entries.
ethernet_main_t ethernet_main
Definition: init.c:45
vl_api_interface_index_t sw_if_index
Definition: interface.api:561
u32 * mfib_index_by_sw_if_index
Table index indexed by software interface.
Definition: ip4.h:126
Set an interface&#39;s rx-mode.
Definition: interface.api:430
void vlib_clear_combined_counters(vlib_combined_counter_main_t *cm)
Clear a collection of combined counters.
Definition: counter.c:61
Clear interface statistics.
Definition: interface.api:343
static uword vlib_process_get_events(vlib_main_t *vm, uword **data_vector)
Return the first event type which has occurred and a vector of per-event data of that type...
Definition: node_funcs.h:583
vl_api_address_with_prefix_t prefix
Definition: interface.api:242
static vnet_device_class_t * vnet_get_device_class(vnet_main_t *vnm, u32 dev_class_index)
vlib_combined_counter_main_t * combined_sw_if_counters
Definition: interface.h:1023
u8 dst_address[6]
Definition: packet.h:55
Reply for the vlan subinterface create request.
Definition: interface.api:546
description fragment has unexpected format
Definition: map.api:433
vnet_hw_interface_flags_t flags
Definition: interface.h:642
vl_api_interface_index_t sw_if_index
Definition: interface.api:625
static void vl_api_sw_interface_rx_placement_dump_t_handler(vl_api_sw_interface_rx_placement_dump_t *mp)
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
static vnet_sw_interface_t * vnet_get_sup_sw_interface(vnet_main_t *vnm, u32 sw_if_index)
static void vl_api_hw_interface_set_mtu_t_handler(vl_api_hw_interface_set_mtu_t *mp)
vnet_main_t * vnet_get_main(void)
Get VRF id assigned to interface.
Definition: interface.api:303
int vnet_create_sub_interface(u32 sw_if_index, u32 id, u32 flags, u16 inner_vlan_id, u16 outer_vlan_id, u32 *sub_sw_if_index)
Definition: interface.c:1053
static perfmon_event_t events[]
Definition: core.c:21
u32 mtu[VNET_N_MTU]
Definition: interface.h:889
u32 fib_table_find(fib_protocol_t proto, u32 table_id)
Get the index of the FIB for a Table-ID.
Definition: fib_table.c:1106
int __clib_unused rv
Definition: application.c:491
A collection of simple counters.
Definition: counter.h:57
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:1517
ip46_type_t ip_address_decode(const vl_api_address_t *in, ip46_address_t *out)
Decode/Encode for struct/union types.
Definition: ip_types_api.c:186
vl_api_interface_index_t sw_if_index
Definition: interface.api:392
vl_api_if_status_flags_t flags
Definition: interface.api:106
vl_api_mac_address_t b_smac
Definition: interface.api:198
u32 max_supported_packet_bytes
Definition: interface.h:694
clib_error_t * ip4_add_del_interface_address(vlib_main_t *vm, u32 sw_if_index, ip4_address_t *address, u32 address_length, u32 is_del)
Definition: ip4_forward.c:833
vnet_api_error_t api_errno
Definition: vnet.h:109
static clib_error_t * link_up_down_function(vnet_main_t *vm, u32 hw_if_index, u32 flags)
Definition: cJSON.c:88
format_function_t format_vnet_sw_interface_name
#define VNET_HW_INTERFACE_FLAG_DUPLEX_SHIFT
Definition: interface.h:573
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:553
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:298
vl_api_interface_index_t sw_if_index
Definition: wireguard.api:34
vnet_sub_interface_t sub
Definition: interface.h:892
static void vl_api_sw_interface_get_table_t_handler(vl_api_sw_interface_get_table_t *mp)
static void vlib_process_signal_event(vlib_main_t *vm, uword node_index, uword type_opaque, uword data)
Definition: node_funcs.h:1019
static void vl_api_sw_interface_set_promisc_t_handler(vl_api_sw_interface_set_promisc_t *mp)
void vnet_sw_interface_update_unnumbered(u32 unnumbered_sw_if_index, u32 ip_sw_if_index, u8 enable)
Definition: interface.c:1616
void mfib_table_unlock(u32 fib_index, fib_protocol_t proto, mfib_source_t source)
Take a reference counting lock on the table.
Definition: mfib_table.c:777
vl_api_interface_index_t sw_if_index
Definition: interface.api:434
static void send_sw_interface_get_table_reply(vl_api_registration_t *reg, u32 context, int retval, u32 vrf_id)
Set interface L3 MTU.
Definition: interface.api:72
vl_api_interface_index_t sw_if_index
Definition: interface.api:347
int replay_enable
This message can be replayed.
Definition: api_common.h:86
static_always_inline vnet_hw_if_rx_queue_t * vnet_hw_if_get_rx_queue(vnet_main_t *vnm, u32 queue_index)
unsigned short u16
Definition: types.h:57
static void vl_api_sw_interface_address_replace_begin_t_handler(vl_api_sw_interface_address_replace_begin_t *mp)
vl_api_interface_index_t sw_if_index
Definition: interface.api:333
uword * sw_if_index_by_sup_and_sub
Definition: interface.h:1017
void vnet_hw_interface_set_mtu(vnet_main_t *vnm, u32 hw_if_index, u32 mtu)
Definition: interface.c:775
ethernet_interface_address_t address
Definition: ethernet.h:174
static void vl_api_sw_interface_set_mac_address_t_handler(vl_api_sw_interface_set_mac_address_t *mp)
ip6_table_bind_callback_t * table_bind_callbacks
Functions to call when interface to table biding changes.
Definition: ip6.h:151
Reply to get_sw_interface_vrf.
Definition: interface.api:315
vnet_hw_if_rx_mode mode
Definition: interface.h:597
#define REPLY_MACRO(t)
vnet_sw_interface_flags_t flags
Definition: interface.h:872
static void vl_api_create_loopback_t_handler(vl_api_create_loopback_t *mp)
ip6_main_t ip6_main
Definition: ip6_forward.c:2787
Create loopback interface instance response.
Definition: interface.api:609
clib_error_t * vnet_create_sw_interface(vnet_main_t *vnm, vnet_sw_interface_t *template, u32 *sw_if_index)
Definition: interface.c:619
Set interface promiscuous mode.
Definition: interface.api:49
vlib_simple_counter_main_t * sw_if_counters
Definition: interface.h:1022
void mfib_table_lock(u32 fib_index, fib_protocol_t proto, mfib_source_t source)
Release a reference counting lock on the table.
Definition: mfib_table.c:806
void ip_del_all_interface_addresses(vlib_main_t *vm, u32 sw_if_index)
Definition: ip46_cli.c:82
Set or delete one or all ip addresses on a specified interface.
Definition: interface.api:234
void fib_table_unlock(u32 fib_index, fib_protocol_t proto, fib_source_t source)
Take a reference counting lock on the table.
Definition: fib_table.c:1336
vl_api_interface_index_t sw_if_index
Definition: interface.api:293
vl_api_tunnel_mode_t mode
Definition: gre.api:48
vnet_hw_if_rx_queue_t * hw_if_rx_queues
Definition: interface.h:995
void vnet_sw_interface_ip_directed_broadcast(vnet_main_t *vnm, u32 sw_if_index, u8 enable)
Definition: interface.c:748
vnet_hw_interface_class_t ethernet_hw_interface_class
API main structure, used by both vpp and binary API clients.
Definition: api_common.h:228
static void setup_message_id_table(api_main_t *am)
vl_api_interface_index_t sw_if_index
Definition: interface.api:537
int vnet_create_loopback_interface(u32 *sw_if_indexp, u8 *mac_address, u8 is_specified, u32 user_instance)
Definition: interface.c:831
An API client registration, only in vpp/vlib.
Definition: api_common.h:47
#define VNET_HW_INTERFACE_BOND_INFO_SLAVE
Definition: interface.h:715
#define BAD_SW_IF_INDEX_LABEL
vl_api_mac_address_t l2_address
Definition: interface.api:161
static uword vnet_sw_if_index_is_api_valid(u32 sw_if_index)
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:169
vl_api_interface_index_t sw_if_index[default=0xFFFFFFFF]
Definition: interface.api:221
From the CLI.
Definition: fib_source.h:79
static void vl_api_sw_interface_set_flags_t_handler(vl_api_sw_interface_set_flags_t *mp)
Definition: interface_api.c:90
u32 ft_table_id
Table ID (hash key) for this FIB.
Definition: fib_table.h:92
void ip_interface_address_sweep(void)
Definition: ip_interface.c:289
show the interface&#39;s queue - thread placement This api is used to display the interface and queue wor...
Definition: interface.api:489
int vnet_delete_sub_interface(u32 sw_if_index)
Definition: interface.c:1095
sll srl srl sll sra u16x4 i
Definition: vector_sse42.h:261
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:395
int vnet_delete_loopback_interface(u32 sw_if_index)
Definition: interface.c:1033
static clib_error_t * admin_up_down_function(vnet_main_t *vm, u32 hw_if_index, u32 flags)
vl_api_interface_index_t sw_if_index
Definition: interface.api:67
#define clib_warning(format, args...)
Definition: error.h:59
vnet_interface_main_t * im
static uword vnet_swif_is_api_visible(vnet_sw_interface_t *si)
#define ETHERNET_INTERFACE_FLAG_ACCEPT_ALL
Definition: ethernet.h:163
static void vl_api_sw_interface_add_del_mac_address_t_handler(vl_api_sw_interface_add_del_mac_address_t *mp)
Request all or filtered subset of sw_interface_details.
Definition: interface.api:217
static void vl_api_create_loopback_instance_t_handler(vl_api_create_loopback_instance_t *mp)
Delete sub interface request.
Definition: interface.api:558
#define ARRAY_LEN(x)
Definition: clib.h:70
static void send_sw_interface_details(vpe_api_main_t *am, vl_api_registration_t *rp, vnet_sw_interface_t *swif, u8 *interface_name, u32 context)
static vl_api_registration_t * vl_api_client_index_to_registration(u32 index)
Definition: api.h:79
vl_api_link_duplex_t link_duplex
Definition: interface.api:168
#define foreach_vpe_api_msg
Definition: interface_api.c:57
Delete loopback interface request.
Definition: interface.api:621
VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION(admin_up_down_function)
void fib_table_lock(u32 fib_index, fib_protocol_t proto, fib_source_t source)
Release a reference counting lock on the table.
Definition: fib_table.c:1355
foreach_registration_hash u8 link_state_process_up
vl_api_interface_index_t sw_if_index
Definition: interface.api:585
#define ASSERT(truth)
vl_api_interface_index_t sw_if_index
Definition: interface.api:493
VNET_SW_INTERFACE_ADD_DEL_FUNCTION(sw_interface_add_del_function)
manual_print typedef address
Definition: ip_types.api:96
Reply for get interface&#39;s MAC address request.
Definition: interface.api:413
ip_lookup_main_t lookup_main
Definition: ip6.h:112
vnet_sw_interface_t * si
static void vnet_set_sw_interface_tag(vnet_main_t *vnm, u8 *tag, u32 sw_if_index)
u32 fib_table_find_or_create_and_lock(fib_protocol_t proto, u32 table_id, fib_source_t src)
Get the index of the FIB for a Table-ID.
Definition: fib_table.c:1165
From the control plane API.
Definition: fib_source.h:75
static void vl_api_sw_interface_tag_add_del_t_handler(vl_api_sw_interface_tag_add_del_t *mp)
#define clib_error_report(e)
Definition: error.h:113
vl_api_interface_index_t sw_if_index
Definition: interface.api:307
vl_api_interface_index_t sw_if_index
Definition: interface.api:455
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:154
IP interface address replace end.
Definition: interface.api:276
static u8 * vnet_get_sw_interface_tag(vnet_main_t *vnm, u32 sw_if_index)
vl_api_interface_index_t sw_if_index
Definition: interface.api:504
static void vl_api_sw_interface_clear_stats_t_handler(vl_api_sw_interface_clear_stats_t *mp)
void vnet_sw_interface_set_protocol_mtu(vnet_main_t *vnm, u32 sw_if_index, u32 mtu[])
Definition: interface.c:721
static void * clib_mem_alloc(uword size)
Definition: mem.h:253
vl_api_interface_index_t sw_if_index
Definition: interface.api:524
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:38
vl_api_ip4_address_t hi
Definition: arp.api:37
u32 context
Definition: ip.api:780
Interface Event generated by want_interface_events.
Definition: interface.api:101
static void vl_api_sw_interface_set_mtu_t_handler(vl_api_sw_interface_set_mtu_t *mp)
ip4_table_bind_callback_t * table_bind_callbacks
Functions to call when interface to table biding changes.
Definition: ip4.h:148
vl_api_interface_index_t sw_if_index
Definition: interface.api:39
static uword vnet_sw_interface_is_api_valid(vnet_main_t *vnm, u32 sw_if_index)
static void vl_api_sw_interface_set_rx_mode_t_handler(vl_api_sw_interface_set_rx_mode_t *mp)
vl_api_sub_if_flags_t sub_if_flags
Definition: interface.api:515
static void vl_api_create_subif_t_handler(vl_api_create_subif_t *mp)
Create loopback interface instance request.
Definition: interface.api:595
ethernet_interface_t * ethernet_get_interface(ethernet_main_t *em, u32 hw_if_index)
Definition: interface.c:982
IP interface address replace begin.
Definition: interface.api:263
api_events
vl_api_interface_index_t sw_if_index
Definition: interface.api:639
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
vl_api_sub_if_flags_t sub_if_flags
Definition: interface.api:187
Set interface physical MTU.
Definition: interface.api:63
#define foreach_ip_interface_address(lm, a, sw_if_index, loop, body)
Definition: ip_interface.h:57
u32 mfib_table_find(fib_protocol_t proto, u32 table_id)
Get the index of the FIB for a Table-ID.
Definition: mfib_table.c:555
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:1098
vnet_sw_interface_t * sw_interfaces
Definition: interface.h:1014
u32 swif
u32 table_id
Definition: wireguard.api:102
Create loopback interface request.
Definition: interface.api:569
ip6_table_bind_function_t * function
Definition: ip6.h:106
Set unnumbered interface add / del request.
Definition: interface.api:329
fib_table_t * fib_table_get(fib_node_index_t index, fib_protocol_t proto)
Get a pointer to a FIB table.
Definition: fib_table.c:29
vl_api_interface_index_t sw_if_index
Definition: interface.api:238
A collection of combined counters.
Definition: counter.h:203
Create a new subinterface with the given vlan id.
Definition: interface.api:533
int vnet_sw_interface_stats_collect_enable_disable(u32 sw_if_index, u8 enable)
Create loopback interface response.
Definition: interface.api:581
#define hash_get_mem(h, key)
Definition: hash.h:269
static void vl_api_sw_interface_set_ip_directed_broadcast_t_handler(vl_api_sw_interface_set_ip_directed_broadcast_t *mp)
static api_main_t * vlibapi_get_main(void)
Definition: api_common.h:390
dump the rx queue placement of interface(s)
Definition: interface.api:467
u32 l2vtr_get(vlib_main_t *vlib_main, vnet_main_t *vnet_main, u32 sw_if_index, u32 *vtr_op, u32 *push_dot1q, u32 *vtr_tag1, u32 *vtr_tag2)
Get vtag tag rewrite on the given interface.
Definition: l2_vtr.c:347
vl_api_interface_index_t sw_if_index
Definition: interface.api:154
Set an interface&#39;s MAC address.
Definition: interface.api:388
u8 * is_mp_safe
Message is mp safe vector.
Definition: api_common.h:251
void vlib_clear_simple_counters(vlib_simple_counter_main_t *cm)
Clear a collection of simple counters.
Definition: counter.c:44
vnet_sw_interface_type_t type
Definition: interface.h:870
ip4_main_t ip4_main
Global ip4 main structure.
Definition: ip4_forward.c:1105
vl_api_if_status_flags_t flags
Definition: interface.api:40
int vnet_interface_name_renumber(u32 sw_if_index, u32 new_show_dev_instance)
Definition: interface.c:1452
pub_sub_handler(interface_events, INTERFACE_EVENTS)
struct vnet_sub_interface_t::@368::@369::@371 flags
vnet_hw_if_rx_mode
Definition: interface.h:53
#define vec_foreach(var, vec)
Vector iterator.
static void vl_api_create_vlan_subif_t_handler(vl_api_create_vlan_subif_t *mp)
static void vl_api_collect_detailed_interface_stats_t_handler(vl_api_collect_detailed_interface_stats_t *mp)
clib_error_t * ip6_add_del_interface_address(vlib_main_t *vm, u32 sw_if_index, ip6_address_t *address, u32 address_length, u32 is_del)
Definition: ip6_forward.c:297
Interface details structure (fix this)
Definition: interface.api:151
static void vl_api_sw_interface_set_table_t_handler(vl_api_sw_interface_set_table_t *mp)
#define vec_validate_init_empty(V, I, INIT)
Make sure vector is long enough for given index and initialize empty space (no header, unspecified alignment)
Definition: vec.h:571
Set / clear software interface tag.
Definition: interface.api:357
static_always_inline int vnet_hw_if_rxq_cmp_cli_api(vnet_hw_if_rx_queue_t **a, vnet_hw_if_rx_queue_t **b)
Add or delete a secondary MAC address on an interface.
Definition: interface.api:373
#define true
Definition: cJSON.c:65
Associate the specified interface with a fib table.
Definition: interface.api:289
static void vl_api_sw_interface_get_mac_address_t_handler(vl_api_sw_interface_get_mac_address_t *mp)
app_main_t * am
Definition: application.c:489
u32 * fib_index_by_sw_if_index
Definition: ip6.h:127
void mac_address_decode(const u8 *in, mac_address_t *out)
Conversion functions to/from (decode/encode) API types to VPP internal types.
u8 * vl_api_from_api_to_new_vec(void *mp, vl_api_string_t *astr)
Definition: api_shared.c:1202
vl_api_interface_index_t sw_if_index
Definition: interface.api:550
u32 l2pbb_get(vlib_main_t *vlib_main, vnet_main_t *vnet_main, u32 sw_if_index, u32 *vtr_op, u16 *outer_tag, ethernet_header_t *eth_hdr, u16 *b_vlanid, u32 *i_sid)
Get pbb tag rewrite on the given interface.
Definition: l2_vtr.c:686
struct vnet_sub_interface_t::@368 eth
static void vl_api_sw_interface_address_replace_end_t_handler(vl_api_sw_interface_address_replace_end_t *mp)
vl_api_interface_index_t sw_if_index
Definition: interface.api:613
#define VALIDATE_SW_IF_INDEX(mp)
A protocol Independent FIB table.
Definition: fib_table.h:71
vl_api_interface_index_t sw_if_index
Definition: interface.api:362
u32 ethernet_set_flags(vnet_main_t *vnm, u32 hw_if_index, u32 flags)
Definition: interface.c:441