FD.io VPP  v18.04-17-g3a0d853
Vector Packet Processing
arp.c
Go to the documentation of this file.
1 /*
2  * ethernet/arp.c: IP v4 ARP node
3  *
4  * Copyright (c) 2010 Cisco and/or its affiliates.
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at:
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 
18 #include <vnet/ip/ip.h>
19 #include <vnet/ip/ip6.h>
20 #include <vnet/ethernet/ethernet.h>
22 #include <vnet/l2/l2_input.h>
23 #include <vppinfra/mhash.h>
24 #include <vnet/fib/ip4_fib.h>
25 #include <vnet/fib/fib_entry_src.h>
26 #include <vnet/adj/adj_nbr.h>
27 #include <vnet/adj/adj_mcast.h>
28 #include <vnet/mpls/mpls.h>
29 
30 /**
31  * @file
32  * @brief IPv4 ARP.
33  *
34  * This file contains code to manage the IPv4 ARP tables (IP Address
35  * to MAC Address lookup).
36  */
37 
38 
39 void vl_api_rpc_call_main_thread (void *fp, u8 * data, u32 data_length);
40 
41 /**
42  * @brief Per-interface ARP configuration and state
43  */
45 {
46  /**
47  * Hash table of ARP entries.
48  * Since this hash table is per-interface, the key is only the IPv4 address.
49  */
52 
53 typedef struct
54 {
59 
60 typedef struct
61 {
66  /* Used for arp event notification only */
70 
71 typedef struct
72 {
73  /* Hash tables mapping name to opcode. */
75 
76  /* lite beer "glean" adjacency handling */
79 
80  /* Mac address change notification */
83 
85 
86  /* ARP attack mitigation */
89 
90  /** Per interface state */
92 
93  /* Proxy arp vector */
95 
99 
101 
102 typedef struct
103 {
105  ethernet_arp_ip4_over_ethernet_address_t a;
108  int flags;
109 #define ETHERNET_ARP_ARGS_REMOVE (1<<0)
110 #define ETHERNET_ARP_ARGS_FLUSH (1<<1)
111 #define ETHERNET_ARP_ARGS_POPULATE (1<<2)
112 #define ETHERNET_ARP_ARGS_WC_PUB (1<<3)
114 
115 static const u8 vrrp_prefix[] = { 0x00, 0x00, 0x5E, 0x00, 0x01 };
116 
117 /* Node index for send_garp_na_process */
119 
120 static void
122  * a);
123 
124 static u8 *
126 {
128  char *t = 0;
129  switch (h)
130  {
131 #define _(n,f) case n: t = #f; break;
133 #undef _
134 
135  default:
136  return format (s, "unknown 0x%x", h);
137  }
138 
139  return format (s, "%s", t);
140 }
141 
142 static u8 *
143 format_ethernet_arp_opcode (u8 * s, va_list * va)
144 {
146  char *t = 0;
147  switch (o)
148  {
149 #define _(f) case ETHERNET_ARP_OPCODE_##f: t = #f; break;
151 #undef _
152 
153  default:
154  return format (s, "unknown 0x%x", o);
155  }
156 
157  return format (s, "%s", t);
158 }
159 
160 static uword
162  va_list * args)
163 {
164  int *result = va_arg (*args, int *);
166  int x, i;
167 
168  /* Numeric opcode. */
169  if (unformat (input, "0x%x", &x) || unformat (input, "%d", &x))
170  {
171  if (x >= (1 << 16))
172  return 0;
173  *result = x;
174  return 1;
175  }
176 
177  /* Named type. */
179  am->opcode_by_name, &i))
180  {
181  *result = i;
182  return 1;
183  }
184 
185  return 0;
186 }
187 
188 static uword
190  va_list * args)
191 {
192  int *result = va_arg (*args, int *);
193  if (!unformat_user
195  return 0;
196 
197  *result = clib_host_to_net_u16 ((u16) * result);
198  return 1;
199 }
200 
201 static u8 *
202 format_ethernet_arp_header (u8 * s, va_list * va)
203 {
204  ethernet_arp_header_t *a = va_arg (*va, ethernet_arp_header_t *);
205  u32 max_header_bytes = va_arg (*va, u32);
206  u32 indent;
207  u16 l2_type, l3_type;
208 
209  if (max_header_bytes != 0 && sizeof (a[0]) > max_header_bytes)
210  return format (s, "ARP header truncated");
211 
212  l2_type = clib_net_to_host_u16 (a->l2_type);
213  l3_type = clib_net_to_host_u16 (a->l3_type);
214 
215  indent = format_get_indent (s);
216 
217  s = format (s, "%U, type %U/%U, address size %d/%d",
218  format_ethernet_arp_opcode, clib_net_to_host_u16 (a->opcode),
220  format_ethernet_type, l3_type,
222 
223  if (l2_type == ETHERNET_ARP_HARDWARE_TYPE_ethernet
224  && l3_type == ETHERNET_TYPE_IP4)
225  {
226  s = format (s, "\n%U%U/%U -> %U/%U",
227  format_white_space, indent,
232  }
233  else
234  {
235  uword n2 = a->n_l2_address_bytes;
236  uword n3 = a->n_l3_address_bytes;
237  s = format (s, "\n%U%U/%U -> %U/%U",
238  format_white_space, indent,
239  format_hex_bytes, a->data + 0 * n2 + 0 * n3, n2,
240  format_hex_bytes, a->data + 1 * n2 + 0 * n3, n3,
241  format_hex_bytes, a->data + 1 * n2 + 1 * n3, n2,
242  format_hex_bytes, a->data + 2 * n2 + 1 * n3, n3);
243  }
244 
245  return s;
246 }
247 
248 u8 *
250 {
251  vnet_main_t *vnm = va_arg (*va, vnet_main_t *);
254  u8 *flags = 0;
255 
256  if (!e)
257  return format (s, "%=12s%=16s%=6s%=20s%=24s", "Time", "IP4",
258  "Flags", "Ethernet", "Interface");
259 
260  si = vnet_get_sw_interface (vnm, e->sw_if_index);
261 
263  flags = format (flags, "S");
264 
266  flags = format (flags, "D");
267 
269  flags = format (flags, "N");
270 
271  s = format (s, "%=12U%=16U%=6s%=20U%U",
274  flags ? (char *) flags : "",
277 
278  vec_free (flags);
279  return s;
280 }
281 
282 typedef struct
283 {
284  u8 packet_data[64];
286 
287 static u8 *
289 {
290  CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
291  CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
293 
294  s = format (s, "%U",
296  t->packet_data, sizeof (t->packet_data));
297 
298  return s;
299 }
300 
301 static u8 *
302 format_arp_term_input_trace (u8 * s, va_list * va)
303 {
304  CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
305  CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
307 
308  /* arp-term trace data saved is either arp or ip6/icmp6 packet:
309  - for arp, the 1st 16-bit field is hw type of value of 0x0001.
310  - for ip6, the first nibble has value of 6. */
311  s = format (s, "%U", t->packet_data[0] == 0 ?
313  t->packet_data, sizeof (t->packet_data));
314 
315  return s;
316 }
317 
318 static void
320 {
321  vnet_main_t *vnm = vnet_get_main ();
322  ip4_main_t *im = &ip4_main;
327  ip4_address_t *src;
328  vlib_buffer_t *b;
329  vlib_main_t *vm;
330  u32 bi = 0;
331 
332  vm = vlib_get_main ();
333 
334  si = vnet_get_sw_interface (vnm, adj->rewrite_header.sw_if_index);
335 
337  {
338  return;
339  }
340 
341  src =
343  &adj->sub_type.nbr.next_hop.
344  ip4,
345  adj->rewrite_header.
346  sw_if_index, &ia);
347  if (!src)
348  {
349  return;
350  }
351 
352  h =
354  &bi);
355 
356  hi = vnet_get_sup_hw_interface (vnm, adj->rewrite_header.sw_if_index);
357 
358  clib_memcpy (h->ip4_over_ethernet[0].ethernet,
359  hi->hw_address, sizeof (h->ip4_over_ethernet[0].ethernet));
360 
361  h->ip4_over_ethernet[0].ip4 = src[0];
362  h->ip4_over_ethernet[1].ip4 = adj->sub_type.nbr.next_hop.ip4;
363 
364  b = vlib_get_buffer (vm, bi);
365  vnet_buffer (b)->sw_if_index[VLIB_RX] =
366  vnet_buffer (b)->sw_if_index[VLIB_TX] = adj->rewrite_header.sw_if_index;
367 
368  /* Add encapsulation string for software interface (e.g. ethernet header). */
369  vnet_rewrite_one_header (adj[0], h, sizeof (ethernet_header_t));
370  vlib_buffer_advance (b, -adj->rewrite_header.data_bytes);
371 
372  {
374  u32 *to_next = vlib_frame_vector_args (f);
375  to_next[0] = bi;
376  f->n_vectors = 1;
378  }
379 }
380 
381 static void
383 {
387  e->sw_if_index,
389 }
390 
391 static void
393 {
394  ip_adjacency_t *adj = adj_get (ai);
395 
397  (ai,
400  adj->rewrite_header.sw_if_index,
403 }
404 
407 {
410  uword *p;
411 
412  if (NULL != eai->arp_entries)
413  {
414  p = hash_get (eai->arp_entries, addr->as_u32);
415  if (!p)
416  return (NULL);
417 
418  e = pool_elt_at_index (am->ip4_entry_pool, p[0]);
419  }
420 
421  return (e);
422 }
423 
424 static adj_walk_rc_t
426 {
428 
429  arp_mk_complete (ai, e);
430 
431  return (ADJ_WALK_RC_CONTINUE);
432 }
433 
434 static adj_walk_rc_t
436 {
437  arp_mk_incomplete (ai);
438 
439  return (ADJ_WALK_RC_CONTINUE);
440 }
441 
442 void
443 arp_update_adjacency (vnet_main_t * vnm, u32 sw_if_index, u32 ai)
444 {
446  ethernet_arp_interface_t *arp_int;
448  ip_adjacency_t *adj;
449 
450  adj = adj_get (ai);
451 
452  vec_validate (am->ethernet_arp_by_sw_if_index, sw_if_index);
453  arp_int = &am->ethernet_arp_by_sw_if_index[sw_if_index];
454  e = arp_entry_find (arp_int, &adj->sub_type.nbr.next_hop.ip4);
455 
456  switch (adj->lookup_next_index)
457  {
460  break;
461  case IP_LOOKUP_NEXT_ARP:
462  if (NULL != e)
463  {
464  adj_nbr_walk_nh4 (sw_if_index,
466  }
467  else
468  {
469  /*
470  * no matching ARP entry.
471  * construct the rewrite required to for an ARP packet, and stick
472  * that in the adj's pipe to smoke.
473  */
475  (ai,
478  (vnm,
479  sw_if_index,
482 
483  /*
484  * since the FIB has added this adj for a route, it makes sense it
485  * may want to forward traffic sometime soon. Let's send a
486  * speculative ARP. just one. If we were to do periodically that
487  * wouldn't be bad either, but that's more code than i'm prepared to
488  * write at this time for relatively little reward.
489  */
490  arp_nbr_probe (adj);
491  }
492  break;
494  {
495  /*
496  * Construct a partial rewrite from the known ethernet mcast dest MAC
497  */
498  u8 *rewrite;
499  u8 offset;
500 
501  rewrite = ethernet_build_rewrite (vnm,
502  sw_if_index,
503  adj->ia_link,
505  offset = vec_len (rewrite) - 2;
506 
507  /*
508  * Complete the remaining fields of the adj's rewrite to direct the
509  * complete of the rewrite at switch time by copying in the IP
510  * dst address's bytes.
511  * Ofset is 2 bytes into the MAC desintation address. And we copy 23 bits
512  * from the address.
513  */
514  adj_mcast_update_rewrite (ai, rewrite, offset, 0x007fffff);
515 
516  break;
517  }
518  case IP_LOOKUP_NEXT_DROP:
519  case IP_LOOKUP_NEXT_PUNT:
525  case IP_LOOKUP_N_NEXT:
526  ASSERT (0);
527  break;
528  }
529 }
530 
531 static void
533 {
534  fib_prefix_t pfx = {
535  .fp_len = 32,
536  .fp_proto = FIB_PROTOCOL_IP4,
537  .fp_addr.ip4 = e->ip4_address,
538  };
539 
540  e->fib_entry_index =
541  fib_table_entry_path_add (fib_index, &pfx, FIB_SOURCE_ADJ,
543  DPO_PROTO_IP4, &pfx.fp_addr,
544  e->sw_if_index, ~0, 1, NULL,
547 }
548 
549 static int
552  * args)
553 {
556  ethernet_arp_ip4_over_ethernet_address_t *a = &args->a;
558  int make_new_arp_cache_entry = 1;
559  uword *p;
560  pending_resolution_t *pr, *mc;
561  ethernet_arp_interface_t *arp_int;
562  int is_static = args->is_static;
563  u32 sw_if_index = args->sw_if_index;
564  int is_no_fib_entry = args->is_no_fib_entry;
565 
566  vec_validate (am->ethernet_arp_by_sw_if_index, sw_if_index);
567 
568  arp_int = &am->ethernet_arp_by_sw_if_index[sw_if_index];
569 
570  if (NULL != arp_int->arp_entries)
571  {
572  p = hash_get (arp_int->arp_entries, a->ip4.as_u32);
573  if (p)
574  {
575  e = pool_elt_at_index (am->ip4_entry_pool, p[0]);
576 
577  /* Refuse to over-write static arp. */
578  if (!is_static && (e->flags & ETHERNET_ARP_IP4_ENTRY_FLAG_STATIC))
579  return -2;
580  make_new_arp_cache_entry = 0;
581  }
582  }
583 
584  if (make_new_arp_cache_entry)
585  {
586  pool_get (am->ip4_entry_pool, e);
587 
588  if (NULL == arp_int->arp_entries)
589  {
590  arp_int->arp_entries = hash_create (0, sizeof (u32));
591  }
592 
593  hash_set (arp_int->arp_entries, a->ip4.as_u32, e - am->ip4_entry_pool);
594 
595  e->sw_if_index = sw_if_index;
596  e->ip4_address = a->ip4;
599  a->ethernet, sizeof (e->ethernet_address));
600 
601  if (!is_no_fib_entry)
602  {
603  arp_adj_fib_add (e,
605  (e->sw_if_index));
606  }
607  else
608  {
610  }
611  }
612  else
613  {
614  /*
615  * prevent a DoS attack from the data-plane that
616  * spams us with no-op updates to the MAC address
617  */
618  if (0 == memcmp (e->ethernet_address,
619  a->ethernet, sizeof (e->ethernet_address)))
620  goto check_customers;
621 
622  /* Update time stamp and ethernet address. */
623  clib_memcpy (e->ethernet_address, a->ethernet,
624  sizeof (e->ethernet_address));
625  }
626 
628  if (is_static)
630  else
632 
633  adj_nbr_walk_nh4 (sw_if_index, &e->ip4_address, arp_mk_complete_walk, e);
634 
635 check_customers:
636  /* Customer(s) waiting for this address to be resolved? */
637  p = hash_get (am->pending_resolutions_by_address, a->ip4.as_u32);
638  if (p)
639  {
640  u32 next_index;
641  next_index = p[0];
642 
643  while (next_index != (u32) ~ 0)
644  {
645  pr = pool_elt_at_index (am->pending_resolutions, next_index);
647  pr->type_opaque, pr->data);
648  next_index = pr->next_index;
649  pool_put (am->pending_resolutions, pr);
650  }
651 
652  hash_unset (am->pending_resolutions_by_address, a->ip4.as_u32);
653  }
654 
655  /* Customer(s) requesting ARP event for this address? */
656  p = hash_get (am->mac_changes_by_address, a->ip4.as_u32);
657  if (p)
658  {
659  u32 next_index;
660  next_index = p[0];
661 
662  while (next_index != (u32) ~ 0)
663  {
664  int (*fp) (u32, u8 *, u32, u32);
665  int rv = 1;
666  mc = pool_elt_at_index (am->mac_changes, next_index);
667  fp = mc->data_callback;
668 
669  /* Call the user's data callback, return 1 to suppress dup events */
670  if (fp)
671  rv = (*fp) (mc->data, a->ethernet, sw_if_index, 0);
672 
673  /*
674  * Signal the resolver process, as long as the user
675  * says they want to be notified
676  */
677  if (rv == 0)
679  mc->type_opaque, mc->data);
680  next_index = mc->next_index;
681  }
682  }
683 
684  return 0;
685 }
686 
687 void
689  void *address_arg,
690  uword node_index,
691  uword type_opaque, uword data)
692 {
694  ip4_address_t *address = address_arg;
695  uword *p;
697 
698  pool_get (am->pending_resolutions, pr);
699 
700  pr->next_index = ~0;
701  pr->node_index = node_index;
702  pr->type_opaque = type_opaque;
703  pr->data = data;
704  pr->data_callback = 0;
705 
706  p = hash_get (am->pending_resolutions_by_address, address->as_u32);
707  if (p)
708  {
709  /* Insert new resolution at the head of the list */
710  pr->next_index = p[0];
712  }
713 
715  pr - am->pending_resolutions);
716 }
717 
718 int
720  void *data_callback,
721  u32 pid,
722  void *address_arg,
723  uword node_index,
724  uword type_opaque, uword data, int is_add)
725 {
727  ip4_address_t *address = address_arg;
728 
729  /* Try to find an existing entry */
730  u32 *first = (u32 *) hash_get (am->mac_changes_by_address, address->as_u32);
731  u32 *p = first;
733  while (p && *p != ~0)
734  {
735  mc = pool_elt_at_index (am->mac_changes, *p);
736  if (mc->node_index == node_index && mc->type_opaque == type_opaque
737  && mc->pid == pid)
738  break;
739  p = &mc->next_index;
740  }
741 
742  int found = p && *p != ~0;
743  if (is_add)
744  {
745  if (found)
746  return VNET_API_ERROR_ENTRY_ALREADY_EXISTS;
747 
748  pool_get (am->mac_changes, mc);
749  *mc = (pending_resolution_t)
750  {
751  .next_index = ~0,.node_index = node_index,.type_opaque =
752  type_opaque,.data = data,.data_callback = data_callback,.pid =
753  pid,};
754 
755  /* Insert new resolution at the end of the list */
756  u32 new_idx = mc - am->mac_changes;
757  if (p)
758  p[0] = new_idx;
759  else
760  hash_set (am->mac_changes_by_address, address->as_u32, new_idx);
761  }
762  else
763  {
764  if (!found)
765  return VNET_API_ERROR_NO_SUCH_ENTRY;
766 
767  /* Clients may need to clean up pool entries, too */
768  void (*fp) (u32, u8 *) = data_callback;
769  if (fp)
770  (*fp) (mc->data, 0 /* no new mac addrs */ );
771 
772  /* Remove the entry from the list and delete the entry */
773  *p = mc->next_index;
774  pool_put (am->mac_changes, mc);
775 
776  /* Remove from hash if we deleted the last entry */
777  if (*p == ~0 && p == first)
778  hash_unset (am->mac_changes_by_address, address->as_u32);
779  }
780  return 0;
781 }
782 
783 /* Either we drop the packet or we send a reply to the sender. */
784 typedef enum
785 {
790 
791 #define foreach_ethernet_arp_error \
792  _ (replies_sent, "ARP replies sent") \
793  _ (l2_type_not_ethernet, "L2 type not ethernet") \
794  _ (l3_type_not_ip4, "L3 type not IP4") \
795  _ (l3_src_address_not_local, "IP4 source address not local to subnet") \
796  _ (l3_dst_address_not_local, "IP4 destination address not local to subnet") \
797  _ (l3_src_address_is_local, "IP4 source address matches local interface") \
798  _ (l3_src_address_learned, "ARP request IP4 source address learned") \
799  _ (replies_received, "ARP replies received") \
800  _ (opcode_not_request, "ARP opcode not request") \
801  _ (proxy_arp_replies_sent, "Proxy ARP replies sent") \
802  _ (l2_address_mismatch, "ARP hw addr does not match L2 frame src addr") \
803  _ (gratuitous_arp, "ARP probe or announcement dropped") \
804  _ (interface_no_table, "Interface is not mapped to an IP table") \
805  _ (interface_not_ip_enabled, "Interface is not IP enabled") \
806 
807 typedef enum
808 {
809 #define _(sym,string) ETHERNET_ARP_ERROR_##sym,
811 #undef _
814 
815 
816 static void
818 {
821  vnet_main_t *vnm = vnet_get_main ();
822  ethernet_arp_ip4_over_ethernet_address_t delme;
823  u32 index;
824 
826  am->arp_delete_rotor = index;
827 
828  /* Try again from elt 0, could happen if an intfc goes down */
829  if (index == ~0)
830  {
832  am->arp_delete_rotor = index;
833  }
834 
835  /* Nothing left in the pool */
836  if (index == ~0)
837  return;
838 
839  e = pool_elt_at_index (am->ip4_entry_pool, index);
840 
841  clib_memcpy (&delme.ethernet, e->ethernet_address, 6);
842  delme.ip4.as_u32 = e->ip4_address.as_u32;
843 
845 }
846 
847 static int
849  u32 input_sw_if_index, u32 conn_sw_if_index)
850 {
851  vnet_main_t *vnm = vnet_get_main ();
854 
855  /* verify that the input interface is unnumbered to the connected.
856  * the connected interface is the interface on which the subnet is
857  * configured */
858  si = &vim->sw_interfaces[input_sw_if_index];
859 
861  (si->unnumbered_sw_if_index == conn_sw_if_index)))
862  {
863  /* the input interface is not unnumbered to the interface on which
864  * the sub-net is configured that covers the ARP request.
865  * So this is not the case for unnumbered.. */
866  return 0;
867  }
868 
869  return !0;
870 }
871 
872 static u32
874  ethernet_arp_main_t * am, u32 sw_if_index, void *addr)
875 {
876  if (am->limit_arp_cache_size &&
879 
880  vnet_arp_set_ip4_over_ethernet (vnm, sw_if_index, addr, 0, 0);
881  return (ETHERNET_ARP_ERROR_l3_src_address_learned);
882 }
883 
884 static uword
886 {
888  vnet_main_t *vnm = vnet_get_main ();
889  ip4_main_t *im4 = &ip4_main;
890  u32 n_left_from, next_index, *from, *to_next;
891  u32 n_replies_sent = 0, n_proxy_arp_replies_sent = 0;
892 
893  from = vlib_frame_vector_args (frame);
894  n_left_from = frame->n_vectors;
895  next_index = node->cached_next_index;
896 
897  if (node->flags & VLIB_NODE_FLAG_TRACE)
898  vlib_trace_frame_buffers_only (vm, node, from, frame->n_vectors,
899  /* stride */ 1,
900  sizeof (ethernet_arp_input_trace_t));
901 
902  while (n_left_from > 0)
903  {
904  u32 n_left_to_next;
905 
906  vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
907 
908  while (n_left_from > 0 && n_left_to_next > 0)
909  {
910  vlib_buffer_t *p0;
911  vnet_hw_interface_t *hw_if0;
912  ethernet_arp_header_t *arp0;
913  ethernet_header_t *eth_rx, *eth_tx;
914  ip4_address_t *if_addr0, proxy_src;
915  u32 pi0, error0, next0, sw_if_index0, conn_sw_if_index0, fib_index0;
916  u8 is_request0, dst_is_local0, is_unnum0, is_vrrp_reply0;
918  fib_node_index_t dst_fei, src_fei;
919  fib_prefix_t pfx0;
920  fib_entry_flag_t src_flags, dst_flags;
921  u8 *rewrite0, rewrite0_len;
922 
923  pi0 = from[0];
924  to_next[0] = pi0;
925  from += 1;
926  to_next += 1;
927  n_left_from -= 1;
928  n_left_to_next -= 1;
929  pa = 0;
930 
931  p0 = vlib_get_buffer (vm, pi0);
932  arp0 = vlib_buffer_get_current (p0);
933  /* Fill in ethernet header. */
934  eth_rx = ethernet_buffer_get_header (p0);
935 
936  is_request0 = arp0->opcode
937  == clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_request);
938 
939  error0 = ETHERNET_ARP_ERROR_replies_sent;
940 
941  error0 =
942  (arp0->l2_type !=
943  clib_net_to_host_u16 (ETHERNET_ARP_HARDWARE_TYPE_ethernet) ?
944  ETHERNET_ARP_ERROR_l2_type_not_ethernet : error0);
945  error0 =
946  (arp0->l3_type !=
947  clib_net_to_host_u16 (ETHERNET_TYPE_IP4) ?
948  ETHERNET_ARP_ERROR_l3_type_not_ip4 : error0);
949 
950  sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
951 
952  /* not playing the ARP game if the interface is not IPv4 enabled */
953  error0 =
954  (im4->ip_enabled_by_sw_if_index[sw_if_index0] == 0 ?
955  ETHERNET_ARP_ERROR_interface_not_ip_enabled : error0);
956 
957  if (error0)
958  goto drop2;
959 
960  /* Check that IP address is local and matches incoming interface. */
961  fib_index0 = ip4_fib_table_get_index_for_sw_if_index (sw_if_index0);
962  if (~0 == fib_index0)
963  {
964  error0 = ETHERNET_ARP_ERROR_interface_no_table;
965  goto drop2;
966 
967  }
968  dst_fei = ip4_fib_table_lookup (ip4_fib_get (fib_index0),
969  &arp0->ip4_over_ethernet[1].ip4,
970  32);
971  dst_flags = fib_entry_get_flags (dst_fei);
972 
973  conn_sw_if_index0 = fib_entry_get_resolving_interface (dst_fei);
974 
975  /* Honor unnumbered interface, if any */
976  is_unnum0 = sw_if_index0 != conn_sw_if_index0;
977 
978  {
979  /*
980  * we're looking for FIB entries that indicate the source
981  * is attached. There may be more specific non-attached
982  * routes that match the source, but these do not influence
983  * whether we respond to an ARP request, i.e. they do not
984  * influence whether we are the correct way for the sender
985  * to reach us, they only affect how we reach the sender.
986  */
987  fib_entry_t *src_fib_entry;
988  fib_entry_src_t *src;
989  fib_source_t source;
990  fib_prefix_t pfx;
991  int attached;
992  int mask;
993 
994  mask = 32;
995  attached = 0;
996 
997  do
998  {
999  src_fei = ip4_fib_table_lookup (ip4_fib_get (fib_index0),
1000  &arp0->
1001  ip4_over_ethernet[0].ip4,
1002  mask);
1003  src_fib_entry = fib_entry_get (src_fei);
1004 
1005  /*
1006  * It's possible that the source that provides the
1007  * flags we need, or the flags we must not have,
1008  * is not the best source, so check then all.
1009  */
1010  /* *INDENT-OFF* */
1011  FOR_EACH_SRC_ADDED(src_fib_entry, src, source,
1012  ({
1013  src_flags = fib_entry_get_flags_for_source (src_fei, source);
1014 
1015  /* Reject requests/replies with our local interface
1016  address. */
1017  if (FIB_ENTRY_FLAG_LOCAL & src_flags)
1018  {
1019  error0 = ETHERNET_ARP_ERROR_l3_src_address_is_local;
1020  /*
1021  * When VPP has an interface whose address is also
1022  * applied to a TAP interface on the host, then VPP's
1023  * TAP interface will be unnumbered to the 'real'
1024  * interface and do proxy ARP from the host.
1025  * The curious aspect of this setup is that ARP requests
1026  * from the host will come from the VPP's own address.
1027  * So don't drop immediately here, instead go see if this
1028  * is a proxy ARP case.
1029  */
1030  goto drop1;
1031  }
1032  /* A Source must also be local to subnet of matching
1033  * interface address. */
1034  if ((FIB_ENTRY_FLAG_ATTACHED & src_flags) ||
1035  (FIB_ENTRY_FLAG_CONNECTED & src_flags))
1036  {
1037  attached = 1;
1038  break;
1039  }
1040  /*
1041  * else
1042  * The packet was sent from an address that is not
1043  * connected nor attached i.e. it is not from an
1044  * address that is covered by a link's sub-net,
1045  * nor is it a already learned host resp.
1046  */
1047  }));
1048  /* *INDENT-ON* */
1049 
1050  /*
1051  * shorter mask lookup for the next iteration.
1052  */
1053  fib_entry_get_prefix (src_fei, &pfx);
1054  mask = pfx.fp_len - 1;
1055 
1056  /*
1057  * continue until we hit the default route or we find
1058  * the attached we are looking for. The most likely
1059  * outcome is we find the attached with the first source
1060  * on the first lookup.
1061  */
1062  }
1063  while (!attached &&
1065 
1066  if (!attached)
1067  {
1068  /*
1069  * the matching route is a not attached, i.e. it was
1070  * added as a result of routing, rather than interface/ARP
1071  * configuration. If the matching route is not a host route
1072  * (i.e. a /32)
1073  */
1074  error0 = ETHERNET_ARP_ERROR_l3_src_address_not_local;
1075  goto drop2;
1076  }
1077  }
1078 
1079  if (!(FIB_ENTRY_FLAG_CONNECTED & dst_flags))
1080  {
1081  error0 = ETHERNET_ARP_ERROR_l3_dst_address_not_local;
1082  goto drop1;
1083  }
1084 
1085  if (sw_if_index0 != fib_entry_get_resolving_interface (src_fei))
1086  {
1087  /*
1088  * The interface the ARP was received on is not the interface
1089  * on which the covering prefix is configured. Maybe this is a
1090  * case for unnumbered.
1091  */
1092  is_unnum0 = 1;
1093  }
1094 
1095  dst_is_local0 = (FIB_ENTRY_FLAG_LOCAL & dst_flags);
1096  fib_entry_get_prefix (dst_fei, &pfx0);
1097  if_addr0 = &pfx0.fp_addr.ip4;
1098 
1099  is_vrrp_reply0 =
1100  ((arp0->opcode ==
1101  clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply))
1102  &&
1103  (!memcmp
1104  (arp0->ip4_over_ethernet[0].ethernet, vrrp_prefix,
1105  sizeof (vrrp_prefix))));
1106 
1107  /* Trash ARP packets whose ARP-level source addresses do not
1108  match their L2-frame-level source addresses, unless it's
1109  a reply from a VRRP virtual router */
1110  if (memcmp
1111  (eth_rx->src_address, arp0->ip4_over_ethernet[0].ethernet,
1112  sizeof (eth_rx->src_address)) && !is_vrrp_reply0)
1113  {
1114  error0 = ETHERNET_ARP_ERROR_l2_address_mismatch;
1115  goto drop2;
1116  }
1117 
1118  /* Learn or update sender's mapping only for replies to addresses
1119  * that are local to the subnet */
1120  if (arp0->opcode ==
1121  clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply) &&
1122  dst_is_local0)
1123  {
1124  error0 = arp_learn (vnm, am, sw_if_index0,
1125  &arp0->ip4_over_ethernet[0]);
1126  goto drop1;
1127  }
1128  else if (arp0->opcode ==
1129  clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_request) &&
1130  (dst_is_local0 == 0))
1131  {
1132  goto drop1;
1133  }
1134 
1135  send_reply:
1136  /* Send a reply.
1137  An adjacency to the sender is not always present,
1138  so we use the interface to build us a rewrite string
1139  which will contain all the necessary tags. */
1140  rewrite0 = ethernet_build_rewrite (vnm, sw_if_index0,
1141  VNET_LINK_ARP,
1142  eth_rx->src_address);
1143  rewrite0_len = vec_len (rewrite0);
1144 
1145  /* Figure out how much to rewind current data from adjacency. */
1146  vlib_buffer_advance (p0, -rewrite0_len);
1147  eth_tx = vlib_buffer_get_current (p0);
1148 
1149  vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
1150  hw_if0 = vnet_get_sup_hw_interface (vnm, sw_if_index0);
1151 
1152  /* Send reply back through input interface */
1153  vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
1154  next0 = ARP_INPUT_NEXT_REPLY_TX;
1155 
1156  arp0->opcode = clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply);
1157 
1158  arp0->ip4_over_ethernet[1] = arp0->ip4_over_ethernet[0];
1159 
1160  clib_memcpy (arp0->ip4_over_ethernet[0].ethernet,
1161  hw_if0->hw_address, 6);
1162  clib_mem_unaligned (&arp0->ip4_over_ethernet[0].ip4.data_u32, u32) =
1163  if_addr0->data_u32;
1164 
1165  /* Hardware must be ethernet-like. */
1166  ASSERT (vec_len (hw_if0->hw_address) == 6);
1167 
1168  /* the rx nd tx ethernet headers wil overlap in the case
1169  * when we received a tagged VLAN=0 packet, but we are sending
1170  * back untagged */
1171  clib_memcpy (eth_tx, rewrite0, vec_len (rewrite0));
1172  vec_free (rewrite0);
1173 
1174  if (NULL == pa)
1175  {
1176  if (is_unnum0)
1177  {
1178  if (!arp_unnumbered (p0, sw_if_index0, conn_sw_if_index0))
1179  goto drop2;
1180  }
1181  }
1182 
1183  /* We are going to reply to this request, so, in the absence of
1184  errors, learn the sender */
1185  if (!error0)
1186  error0 = arp_learn (vnm, am, sw_if_index0,
1187  &arp0->ip4_over_ethernet[1]);
1188 
1189  vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1190  n_left_to_next, pi0, next0);
1191 
1192  n_replies_sent += 1;
1193  continue;
1194 
1195  drop1:
1196  if (0 == arp0->ip4_over_ethernet[0].ip4.as_u32 ||
1197  (arp0->ip4_over_ethernet[0].ip4.as_u32 ==
1198  arp0->ip4_over_ethernet[1].ip4.as_u32))
1199  {
1200  error0 = ETHERNET_ARP_ERROR_gratuitous_arp;
1201  goto drop2;
1202  }
1203  /* See if proxy arp is configured for the address */
1204  if (is_request0)
1205  {
1206  vnet_sw_interface_t *si;
1207  u32 this_addr = clib_net_to_host_u32
1208  (arp0->ip4_over_ethernet[1].ip4.as_u32);
1209  u32 fib_index0;
1210 
1211  si = vnet_get_sw_interface (vnm, sw_if_index0);
1212 
1214  goto drop2;
1215 
1216  fib_index0 = vec_elt (im4->fib_index_by_sw_if_index,
1217  sw_if_index0);
1218 
1219  vec_foreach (pa, am->proxy_arps)
1220  {
1221  u32 lo_addr = clib_net_to_host_u32 (pa->lo_addr);
1222  u32 hi_addr = clib_net_to_host_u32 (pa->hi_addr);
1223 
1224  /* an ARP request hit in the proxy-arp table? */
1225  if ((this_addr >= lo_addr && this_addr <= hi_addr) &&
1226  (fib_index0 == pa->fib_index))
1227  {
1228  proxy_src.as_u32 =
1229  arp0->ip4_over_ethernet[1].ip4.data_u32;
1230 
1231  /*
1232  * change the interface address to the proxied
1233  */
1234  if_addr0 = &proxy_src;
1235  is_unnum0 = 0;
1236  n_proxy_arp_replies_sent++;
1237  goto send_reply;
1238  }
1239  }
1240  }
1241 
1242  drop2:
1243 
1244  next0 = ARP_INPUT_NEXT_DROP;
1245  p0->error = node->errors[error0];
1246 
1247  vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1248  n_left_to_next, pi0, next0);
1249  }
1250 
1251  vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1252  }
1253 
1254  vlib_error_count (vm, node->node_index,
1255  ETHERNET_ARP_ERROR_replies_sent,
1256  n_replies_sent - n_proxy_arp_replies_sent);
1257 
1258  vlib_error_count (vm, node->node_index,
1259  ETHERNET_ARP_ERROR_proxy_arp_replies_sent,
1260  n_proxy_arp_replies_sent);
1261  return frame->n_vectors;
1262 }
1263 
1264 static char *ethernet_arp_error_strings[] = {
1265 #define _(sym,string) string,
1267 #undef _
1268 };
1269 
1270 /* *INDENT-OFF* */
1272 {
1273  .function = arp_input,
1274  .name = "arp-input",
1275  .vector_size = sizeof (u32),
1276  .n_errors = ETHERNET_ARP_N_ERROR,
1277  .error_strings = ethernet_arp_error_strings,
1278  .n_next_nodes = ARP_INPUT_N_NEXT,
1279  .next_nodes = {
1280  [ARP_INPUT_NEXT_DROP] = "error-drop",
1281  [ARP_INPUT_NEXT_REPLY_TX] = "interface-output",
1282  },
1283  .format_buffer = format_ethernet_arp_header,
1284  .format_trace = format_ethernet_arp_input_trace,
1285 };
1286 /* *INDENT-ON* */
1287 
1288 static int
1289 ip4_arp_entry_sort (void *a1, void *a2)
1290 {
1291  ethernet_arp_ip4_entry_t *e1 = a1;
1292  ethernet_arp_ip4_entry_t *e2 = a2;
1293 
1294  int cmp;
1295  vnet_main_t *vnm = vnet_get_main ();
1296 
1297  cmp = vnet_sw_interface_compare (vnm, e1->sw_if_index, e2->sw_if_index);
1298  if (!cmp)
1299  cmp = ip4_address_compare (&e1->ip4_address, &e2->ip4_address);
1300  return cmp;
1301 }
1302 
1305 {
1307  ethernet_arp_ip4_entry_t *n, *ns = 0;
1308 
1309  /* *INDENT-OFF* */
1310  pool_foreach (n, am->ip4_entry_pool, ({
1311  if (sw_if_index != ~0 && n->sw_if_index != sw_if_index)
1312  continue;
1313  vec_add1 (ns, n[0]);
1314  }));
1315  /* *INDENT-ON* */
1316 
1317  if (ns)
1319  return ns;
1320 }
1321 
1322 static clib_error_t *
1324  unformat_input_t * input, vlib_cli_command_t * cmd)
1325 {
1326  vnet_main_t *vnm = vnet_get_main ();
1328  ethernet_arp_ip4_entry_t *e, *es;
1330  clib_error_t *error = 0;
1331  u32 sw_if_index;
1332 
1333  /* Filter entries by interface if given. */
1334  sw_if_index = ~0;
1335  (void) unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index);
1336 
1337  es = ip4_neighbor_entries (sw_if_index);
1338  if (es)
1339  {
1340  vlib_cli_output (vm, "%U", format_ethernet_arp_ip4_entry, vnm, 0);
1341  vec_foreach (e, es)
1342  {
1343  vlib_cli_output (vm, "%U", format_ethernet_arp_ip4_entry, vnm, e);
1344  }
1345  vec_free (es);
1346  }
1347 
1348  if (vec_len (am->proxy_arps))
1349  {
1350  vlib_cli_output (vm, "Proxy arps enabled for:");
1351  vec_foreach (pa, am->proxy_arps)
1352  {
1353  vlib_cli_output (vm, "Fib_index %d %U - %U ",
1354  pa->fib_index,
1356  format_ip4_address, &pa->hi_addr);
1357  }
1358  }
1359 
1360  return error;
1361 }
1362 
1363 /*?
1364  * Display all the IPv4 ARP entries.
1365  *
1366  * @cliexpar
1367  * Example of how to display the IPv4 ARP table:
1368  * @cliexstart{show ip arp}
1369  * Time FIB IP4 Flags Ethernet Interface
1370  * 346.3028 0 6.1.1.3 de:ad:be:ef:ba:be GigabitEthernet2/0/0
1371  * 3077.4271 0 6.1.1.4 S de:ad:be:ef:ff:ff GigabitEthernet2/0/0
1372  * 2998.6409 1 6.2.2.3 de:ad:be:ef:00:01 GigabitEthernet2/0/0
1373  * Proxy arps enabled for:
1374  * Fib_index 0 6.0.0.1 - 6.0.0.11
1375  * @cliexend
1376  ?*/
1377 /* *INDENT-OFF* */
1378 VLIB_CLI_COMMAND (show_ip4_arp_command, static) = {
1379  .path = "show ip arp",
1380  .function = show_ip4_arp,
1381  .short_help = "show ip arp",
1382 };
1383 /* *INDENT-ON* */
1384 
1385 typedef struct
1386 {
1387  pg_edit_t l2_type, l3_type;
1388  pg_edit_t n_l2_address_bytes, n_l3_address_bytes;
1390  struct
1391  {
1394  } ip4_over_ethernet[2];
1396 
1397 static inline void
1399 {
1400  /* Initialize fields that are not bit fields in the IP header. */
1401 #define _(f) pg_edit_init (&p->f, ethernet_arp_header_t, f);
1402  _(l2_type);
1403  _(l3_type);
1404  _(n_l2_address_bytes);
1405  _(n_l3_address_bytes);
1406  _(opcode);
1407  _(ip4_over_ethernet[0].ethernet);
1408  _(ip4_over_ethernet[0].ip4);
1409  _(ip4_over_ethernet[1].ethernet);
1410  _(ip4_over_ethernet[1].ip4);
1411 #undef _
1412 }
1413 
1414 uword
1415 unformat_pg_arp_header (unformat_input_t * input, va_list * args)
1416 {
1417  pg_stream_t *s = va_arg (*args, pg_stream_t *);
1419  u32 group_index;
1420 
1421  p = pg_create_edit_group (s, sizeof (p[0]), sizeof (ethernet_arp_header_t),
1422  &group_index);
1424 
1425  /* Defaults. */
1426  pg_edit_set_fixed (&p->l2_type, ETHERNET_ARP_HARDWARE_TYPE_ethernet);
1427  pg_edit_set_fixed (&p->l3_type, ETHERNET_TYPE_IP4);
1430 
1431  if (!unformat (input, "%U: %U/%U -> %U/%U",
1442  {
1443  /* Free up any edits we may have added. */
1444  pg_free_edit_group (s);
1445  return 0;
1446  }
1447  return 1;
1448 }
1449 
1450 clib_error_t *
1452 {
1454 
1455  am->limit_arp_cache_size = arp_limit;
1456  return 0;
1457 }
1458 
1459 /**
1460  * @brief Control Plane hook to remove an ARP entry
1461  */
1462 int
1464  u32 sw_if_index, void *a_arg)
1465 {
1466  ethernet_arp_ip4_over_ethernet_address_t *a = a_arg;
1468 
1469  args.sw_if_index = sw_if_index;
1471  clib_memcpy (&args.a, a, sizeof (*a));
1472 
1474  (u8 *) & args, sizeof (args));
1475  return 0;
1476 }
1477 
1478 /**
1479  * @brief Internally generated event to flush the ARP cache on an
1480  * interface state change event.
1481  * A flush will remove dynamic ARP entries, and for statics remove the MAC
1482  * address from the corresponding adjacencies.
1483  */
1484 static int
1486  u32 sw_if_index, void *a_arg)
1487 {
1488  ethernet_arp_ip4_over_ethernet_address_t *a = a_arg;
1490 
1491  args.sw_if_index = sw_if_index;
1493  clib_memcpy (&args.a, a, sizeof (*a));
1494 
1496  (u8 *) & args, sizeof (args));
1497  return 0;
1498 }
1499 
1500 /**
1501  * @brief Internally generated event to populate the ARP cache on an
1502  * interface state change event.
1503  * For static entries this will re-source the adjacencies.
1504  *
1505  * @param sw_if_index The interface on which the ARP entires are acted
1506  */
1507 static int
1509  u32 sw_if_index, void *a_arg)
1510 {
1511  ethernet_arp_ip4_over_ethernet_address_t *a = a_arg;
1513 
1514  args.sw_if_index = sw_if_index;
1516  clib_memcpy (&args.a, a, sizeof (*a));
1517 
1519  (u8 *) & args, sizeof (args));
1520  return 0;
1521 }
1522 
1523 /**
1524  * @brief publish wildcard arp event
1525  * @param sw_if_index The interface on which the ARP entires are acted
1526  */
1527 static int
1528 vnet_arp_wc_publish (u32 sw_if_index, void *a_arg)
1529 {
1530  ethernet_arp_ip4_over_ethernet_address_t *a = a_arg;
1533  .sw_if_index = sw_if_index,
1534  .a = *a
1535  };
1536 
1538  (u8 *) & args, sizeof (args));
1539  return 0;
1540 }
1541 
1542 static void
1545  args)
1546 {
1550  uword et = am->wc_ip4_arp_publisher_et;
1551 
1552  if (ni == (uword) ~ 0)
1553  return;
1554  wc_arp_report_t *r =
1555  vlib_process_signal_event_data (vm, ni, et, 1, sizeof *r);
1556  r->ip4 = args->a.ip4.as_u32;
1557  r->sw_if_index = args->sw_if_index;
1558  memcpy (r->mac, args->a.ethernet, sizeof r->mac);
1559 }
1560 
1561 void
1562 wc_arp_set_publisher_node (uword node_index, uword event_type)
1563 {
1565  am->wc_ip4_arp_publisher_node = node_index;
1566  am->wc_ip4_arp_publisher_et = event_type;
1567 }
1568 
1569 /*
1570  * arp_add_del_interface_address
1571  *
1572  * callback when an interface address is added or deleted
1573  */
1574 static void
1576  uword opaque,
1577  u32 sw_if_index,
1578  ip4_address_t * address,
1579  u32 address_length,
1580  u32 if_address_index, u32 is_del)
1581 {
1582  /*
1583  * Flush the ARP cache of all entries covered by the address
1584  * that is being removed.
1585  */
1588 
1589  if (vec_len (am->ethernet_arp_by_sw_if_index) <= sw_if_index)
1590  return;
1591 
1592  if (is_del)
1593  {
1595  u32 i, *to_delete = 0;
1596  hash_pair_t *pair;
1597 
1598  eai = &am->ethernet_arp_by_sw_if_index[sw_if_index];
1599 
1600  /* *INDENT-OFF* */
1601  hash_foreach_pair (pair, eai->arp_entries,
1602  ({
1603  e = pool_elt_at_index(am->ip4_entry_pool,
1604  pair->value[0]);
1605  if (ip4_destination_matches_route (im, &e->ip4_address,
1606  address, address_length))
1607  {
1608  vec_add1 (to_delete, e - am->ip4_entry_pool);
1609  }
1610  }));
1611  /* *INDENT-ON* */
1612 
1613  for (i = 0; i < vec_len (to_delete); i++)
1614  {
1615  ethernet_arp_ip4_over_ethernet_address_t delme;
1616  e = pool_elt_at_index (am->ip4_entry_pool, to_delete[i]);
1617 
1618  clib_memcpy (&delme.ethernet, e->ethernet_address, 6);
1619  delme.ip4.as_u32 = e->ip4_address.as_u32;
1620 
1622  e->sw_if_index, &delme);
1623  }
1624 
1625  vec_free (to_delete);
1626  }
1627 }
1628 
1629 void
1631 {
1633  {
1634  fib_prefix_t pfx = {
1635  .fp_len = 32,
1636  .fp_proto = FIB_PROTOCOL_IP4,
1637  .fp_addr.ip4 = e->ip4_address,
1638  };
1639  u32 fib_index;
1640 
1642 
1643  fib_table_entry_path_remove (fib_index, &pfx,
1645  DPO_PROTO_IP4,
1646  &pfx.fp_addr,
1647  e->sw_if_index, ~0, 1,
1650  }
1651 }
1652 
1653 static void
1655  uword opaque,
1656  u32 sw_if_index, u32 new_fib_index, u32 old_fib_index)
1657 {
1661  hash_pair_t *pair;
1662 
1663  /*
1664  * the IP table that the interface is bound to has changed.
1665  * reinstall all the adj fibs.
1666  */
1667 
1668  if (vec_len (am->ethernet_arp_by_sw_if_index) <= sw_if_index)
1669  return;
1670 
1671  eai = &am->ethernet_arp_by_sw_if_index[sw_if_index];
1672 
1673  /* *INDENT-OFF* */
1674  hash_foreach_pair (pair, eai->arp_entries,
1675  ({
1676  e = pool_elt_at_index(am->ip4_entry_pool,
1677  pair->value[0]);
1678  /*
1679  * remove the adj-fib from the old table and add to the new
1680  */
1681  arp_adj_fib_remove(e, old_fib_index);
1682  arp_adj_fib_add(e, new_fib_index);
1683  }));
1684  /* *INDENT-ON* */
1685 
1686 }
1687 
1688 static clib_error_t *
1690 {
1692  ip4_main_t *im = &ip4_main;
1693  clib_error_t *error;
1694  pg_node_t *pn;
1695 
1696  if ((error = vlib_call_init_function (vm, ethernet_init)))
1697  return error;
1698 
1699  ethernet_register_input_type (vm, ETHERNET_TYPE_ARP, arp_input_node.index);
1700 
1701  pn = pg_get_node (arp_input_node.index);
1703 
1704  am->opcode_by_name = hash_create_string (0, sizeof (uword));
1705 #define _(o) hash_set_mem (am->opcode_by_name, #o, ETHERNET_ARP_OPCODE_##o);
1707 #undef _
1708 
1709  /* $$$ configurable */
1710  am->limit_arp_cache_size = 50000;
1711 
1712  am->pending_resolutions_by_address = hash_create (0, sizeof (uword));
1713  am->mac_changes_by_address = hash_create (0, sizeof (uword));
1714  am->wc_ip4_arp_publisher_node = (uword) ~ 0;
1715 
1716  /* don't trace ARP error packets */
1717  {
1718  vlib_node_runtime_t *rt =
1720 
1721 #define _(a,b) \
1722  vnet_pcap_drop_trace_filter_add_del \
1723  (rt->errors[ETHERNET_ARP_ERROR_##a], \
1724  1 /* is_add */);
1726 #undef _
1727  }
1728 
1731  cb.function_opaque = 0;
1733 
1735  cbt.function = arp_table_bind;
1736  cbt.function_opaque = 0;
1737  vec_add1 (im->table_bind_callbacks, cbt);
1738 
1739  return 0;
1740 }
1741 
1743 
1744 static void
1746 {
1748 
1749  arp_adj_fib_remove (e,
1751  (e->sw_if_index));
1753  pool_put (am->ip4_entry_pool, e);
1754 }
1755 
1756 static inline int
1759  * args)
1760 {
1764 
1765  if (vec_len (am->ethernet_arp_by_sw_if_index) <= args->sw_if_index)
1766  return 0;
1767 
1768  eai = &am->ethernet_arp_by_sw_if_index[args->sw_if_index];
1769 
1770  e = arp_entry_find (eai, &args->a.ip4);
1771 
1772  if (NULL != e)
1773  {
1774  arp_entry_free (eai, e);
1775 
1778  }
1779 
1780  return 0;
1781 }
1782 
1783 static int
1786  * args)
1787 {
1791 
1792  if (vec_len (am->ethernet_arp_by_sw_if_index) <= args->sw_if_index)
1793  return 0;
1794 
1795  eai = &am->ethernet_arp_by_sw_if_index[args->sw_if_index];
1796 
1797  e = arp_entry_find (eai, &args->a.ip4);
1798 
1799  if (NULL != e)
1800  {
1803 
1804  /*
1805  * The difference between flush and unset, is that an unset
1806  * means delete for static and dynamic entries. A flush
1807  * means delete only for dynamic. Flushing is what the DP
1808  * does in response to interface events. unset is only done
1809  * by the control plane.
1810  */
1812  {
1814  }
1816  {
1817  arp_entry_free (eai, e);
1818  }
1819  }
1820  return (0);
1821 }
1822 
1823 static int
1826  * args)
1827 {
1831 
1833  eai = &am->ethernet_arp_by_sw_if_index[args->sw_if_index];
1834 
1835  e = arp_entry_find (eai, &args->a.ip4);
1836 
1837  if (NULL != e)
1838  {
1841  }
1842  return (0);
1843 }
1844 
1845 static void
1847  * a)
1848 {
1850  ASSERT (vlib_get_thread_index () == 0);
1851 
1854  else if (a->flags & ETHERNET_ARP_ARGS_FLUSH)
1856  else if (a->flags & ETHERNET_ARP_ARGS_POPULATE)
1858  else if (a->flags & ETHERNET_ARP_ARGS_WC_PUB)
1860  else
1862 }
1863 
1864 /**
1865  * @brief Invoked when the interface's admin state changes
1866  */
1867 static clib_error_t *
1869  u32 sw_if_index, u32 flags)
1870 {
1873  u32 i, *to_delete = 0;
1874 
1875  /* *INDENT-OFF* */
1876  pool_foreach (e, am->ip4_entry_pool,
1877  ({
1878  if (e->sw_if_index == sw_if_index)
1879  vec_add1 (to_delete,
1880  e - am->ip4_entry_pool);
1881  }));
1882  /* *INDENT-ON* */
1883 
1884  for (i = 0; i < vec_len (to_delete); i++)
1885  {
1886  ethernet_arp_ip4_over_ethernet_address_t delme;
1887  e = pool_elt_at_index (am->ip4_entry_pool, to_delete[i]);
1888 
1889  clib_memcpy (&delme.ethernet, e->ethernet_address, 6);
1890  delme.ip4.as_u32 = e->ip4_address.as_u32;
1891 
1892  if (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP)
1893  {
1895  }
1896  else
1897  {
1899  }
1900 
1901  }
1902  vec_free (to_delete);
1903 
1904  return 0;
1905 }
1906 
1908 
1909 static void
1910 increment_ip4_and_mac_address (ethernet_arp_ip4_over_ethernet_address_t * a)
1911 {
1912  u8 old;
1913  int i;
1914 
1915  for (i = 3; i >= 0; i--)
1916  {
1917  old = a->ip4.as_u8[i];
1918  a->ip4.as_u8[i] += 1;
1919  if (old < a->ip4.as_u8[i])
1920  break;
1921  }
1922 
1923  for (i = 5; i >= 0; i--)
1924  {
1925  old = a->ethernet[i];
1926  a->ethernet[i] += 1;
1927  if (old < a->ethernet[i])
1928  break;
1929  }
1930 }
1931 
1932 int
1934  u32 sw_if_index, void *a_arg,
1935  int is_static, int is_no_fib_entry)
1936 {
1937  ethernet_arp_ip4_over_ethernet_address_t *a = a_arg;
1939 
1940  args.sw_if_index = sw_if_index;
1941  args.is_static = is_static;
1942  args.is_no_fib_entry = is_no_fib_entry;
1943  args.flags = 0;
1944  clib_memcpy (&args.a, a, sizeof (*a));
1945 
1947  (u8 *) & args, sizeof (args));
1948  return 0;
1949 }
1950 
1951 int
1953  ip4_address_t * hi_addr, u32 fib_index, int is_del)
1954 {
1957  u32 found_at_index = ~0;
1958 
1959  vec_foreach (pa, am->proxy_arps)
1960  {
1961  if (pa->lo_addr == lo_addr->as_u32
1962  && pa->hi_addr == hi_addr->as_u32 && pa->fib_index == fib_index)
1963  {
1964  found_at_index = pa - am->proxy_arps;
1965  break;
1966  }
1967  }
1968 
1969  if (found_at_index != ~0)
1970  {
1971  /* Delete, otherwise it's already in the table */
1972  if (is_del)
1973  vec_delete (am->proxy_arps, 1, found_at_index);
1974  return 0;
1975  }
1976  /* delete, no such entry */
1977  if (is_del)
1978  return VNET_API_ERROR_NO_SUCH_ENTRY;
1979 
1980  /* add, not in table */
1981  vec_add2 (am->proxy_arps, pa, 1);
1982  pa->lo_addr = lo_addr->as_u32;
1983  pa->hi_addr = hi_addr->as_u32;
1984  pa->fib_index = fib_index;
1985  return 0;
1986 }
1987 
1988 /*
1989  * Remove any proxy arp entries asdociated with the
1990  * specificed fib.
1991  */
1992 int
1994 {
1997  u32 *entries_to_delete = 0;
1998  u32 fib_index;
1999  int i;
2000 
2001  fib_index = fib_table_find (FIB_PROTOCOL_IP4, fib_id);
2002  if (~0 == fib_index)
2003  return VNET_API_ERROR_NO_SUCH_ENTRY;
2004 
2005  vec_foreach (pa, am->proxy_arps)
2006  {
2007  if (pa->fib_index == fib_index)
2008  {
2009  vec_add1 (entries_to_delete, pa - am->proxy_arps);
2010  }
2011  }
2012 
2013  for (i = 0; i < vec_len (entries_to_delete); i++)
2014  {
2015  vec_delete (am->proxy_arps, 1, entries_to_delete[i]);
2016  }
2017 
2018  vec_free (entries_to_delete);
2019 
2020  return 0;
2021 }
2022 
2023 static clib_error_t *
2025  unformat_input_t * input, vlib_cli_command_t * cmd)
2026 {
2027  vnet_main_t *vnm = vnet_get_main ();
2028  u32 sw_if_index;
2029  ethernet_arp_ip4_over_ethernet_address_t lo_addr, hi_addr, addr;
2030  int addr_valid = 0;
2031  int is_del = 0;
2032  int count = 1;
2033  u32 fib_index = 0;
2034  u32 fib_id;
2035  int is_static = 0;
2036  int is_no_fib_entry = 0;
2037  int is_proxy = 0;
2038 
2039  while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2040  {
2041  /* set ip arp TenGigE1/1/0/1 1.2.3.4 aa:bb:... or aabb.ccdd... */
2042  if (unformat (input, "%U %U %U",
2043  unformat_vnet_sw_interface, vnm, &sw_if_index,
2044  unformat_ip4_address, &addr.ip4,
2045  unformat_ethernet_address, &addr.ethernet))
2046  addr_valid = 1;
2047 
2048  else if (unformat (input, "delete") || unformat (input, "del"))
2049  is_del = 1;
2050 
2051  else if (unformat (input, "static"))
2052  is_static = 1;
2053 
2054  else if (unformat (input, "no-fib-entry"))
2055  is_no_fib_entry = 1;
2056 
2057  else if (unformat (input, "count %d", &count))
2058  ;
2059 
2060  else if (unformat (input, "fib-id %d", &fib_id))
2061  {
2062  fib_index = fib_table_find (FIB_PROTOCOL_IP4, fib_id);
2063 
2064  if (~0 == fib_index)
2065  return clib_error_return (0, "fib ID %d doesn't exist\n", fib_id);
2066  }
2067 
2068  else if (unformat (input, "proxy %U - %U",
2069  unformat_ip4_address, &lo_addr.ip4,
2070  unformat_ip4_address, &hi_addr.ip4))
2071  is_proxy = 1;
2072  else
2073  break;
2074  }
2075 
2076  if (is_proxy)
2077  {
2078  (void) vnet_proxy_arp_add_del (&lo_addr.ip4, &hi_addr.ip4,
2079  fib_index, is_del);
2080  return 0;
2081  }
2082 
2083  if (addr_valid)
2084  {
2085  int i;
2086 
2087  for (i = 0; i < count; i++)
2088  {
2089  if (is_del == 0)
2090  {
2091  uword event_type, *event_data = 0;
2092 
2093  /* Park the debug CLI until the arp entry is installed */
2095  (vnm, &addr.ip4, vlib_current_process (vm),
2096  1 /* type */ , 0 /* data */ );
2097 
2099  (vnm, sw_if_index, &addr, is_static, is_no_fib_entry);
2100 
2102  event_type = vlib_process_get_events (vm, &event_data);
2103  vec_reset_length (event_data);
2104  if (event_type != 1)
2105  clib_warning ("event type %d unexpected", event_type);
2106  }
2107  else
2108  vnet_arp_unset_ip4_over_ethernet (vnm, sw_if_index, &addr);
2109 
2111  }
2112  }
2113  else
2114  {
2115  return clib_error_return (0, "unknown input `%U'",
2116  format_unformat_error, input);
2117  }
2118 
2119  return 0;
2120 }
2121 
2122 /* *INDENT-OFF* */
2123 /*?
2124  * Add or delete IPv4 ARP cache entries.
2125  *
2126  * @note 'set ip arp' options (e.g. delete, static, 'fib-id <id>',
2127  * 'count <number>', 'interface ip4_addr mac_addr') can be added in
2128  * any order and combination.
2129  *
2130  * @cliexpar
2131  * @parblock
2132  * Add or delete IPv4 ARP cache entries as follows. MAC Address can be in
2133  * either aa:bb:cc:dd:ee:ff format or aabb.ccdd.eeff format.
2134  * @cliexcmd{set ip arp GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2135  * @cliexcmd{set ip arp delete GigabitEthernet2/0/0 6.0.0.3 de:ad:be:ef:ba:be}
2136  *
2137  * To add or delete an IPv4 ARP cache entry to or from a specific fib
2138  * table:
2139  * @cliexcmd{set ip arp fib-id 1 GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2140  * @cliexcmd{set ip arp fib-id 1 delete GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2141  *
2142  * Add or delete IPv4 static ARP cache entries as follows:
2143  * @cliexcmd{set ip arp static GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2144  * @cliexcmd{set ip arp static delete GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2145  *
2146  * For testing / debugging purposes, the 'set ip arp' command can add or
2147  * delete multiple entries. Supply the 'count N' parameter:
2148  * @cliexcmd{set ip arp count 10 GigabitEthernet2/0/0 6.0.0.3 dead.beef.babe}
2149  * @endparblock
2150  ?*/
2151 VLIB_CLI_COMMAND (ip_arp_add_del_command, static) = {
2152  .path = "set ip arp",
2153  .short_help =
2154  "set ip arp [del] <intfc> <ip-address> <mac-address> [static] [no-fib-entry] [count <count>] [fib-id <fib-id>] [proxy <lo-addr> - <hi-addr>]",
2155  .function = ip_arp_add_del_command_fn,
2156 };
2157 /* *INDENT-ON* */
2158 
2159 static clib_error_t *
2162  input, vlib_cli_command_t * cmd)
2163 {
2164  vnet_main_t *vnm = vnet_get_main ();
2165  u32 sw_if_index;
2166  vnet_sw_interface_t *si;
2167  int enable = 0;
2168  int intfc_set = 0;
2169 
2170  while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2171  {
2172  if (unformat (input, "%U", unformat_vnet_sw_interface,
2173  vnm, &sw_if_index))
2174  intfc_set = 1;
2175  else if (unformat (input, "enable") || unformat (input, "on"))
2176  enable = 1;
2177  else if (unformat (input, "disable") || unformat (input, "off"))
2178  enable = 0;
2179  else
2180  break;
2181  }
2182 
2183  if (intfc_set == 0)
2184  return clib_error_return (0, "unknown input '%U'",
2185  format_unformat_error, input);
2186 
2187  si = vnet_get_sw_interface (vnm, sw_if_index);
2188  ASSERT (si);
2189  if (enable)
2191  else
2193 
2194  return 0;
2195 }
2196 
2197 /* *INDENT-OFF* */
2198 /*?
2199  * Enable proxy-arp on an interface. The vpp stack will answer ARP
2200  * requests for the indicated address range. Multiple proxy-arp
2201  * ranges may be provisioned.
2202  *
2203  * @note Proxy ARP as a technology is infamous for blackholing traffic.
2204  * Also, the underlying implementation has not been performance-tuned.
2205  * Avoid creating an unnecessarily large set of ranges.
2206  *
2207  * @cliexpar
2208  * To enable proxy arp on a range of addresses, use:
2209  * @cliexcmd{set ip arp proxy 6.0.0.1 - 6.0.0.11}
2210  * Append 'del' to delete a range of proxy ARP addresses:
2211  * @cliexcmd{set ip arp proxy 6.0.0.1 - 6.0.0.11 del}
2212  * You must then specifically enable proxy arp on individual interfaces:
2213  * @cliexcmd{set interface proxy-arp GigabitEthernet0/8/0 enable}
2214  * To disable proxy arp on an individual interface:
2215  * @cliexcmd{set interface proxy-arp GigabitEthernet0/8/0 disable}
2216  ?*/
2217 VLIB_CLI_COMMAND (set_int_proxy_enable_command, static) = {
2218  .path = "set interface proxy-arp",
2219  .short_help =
2220  "set interface proxy-arp <intfc> [enable|disable]",
2221  .function = set_int_proxy_arp_command_fn,
2222 };
2223 /* *INDENT-ON* */
2224 
2225 
2226 /*
2227  * ARP/ND Termination in a L2 Bridge Domain based on IP4/IP6 to MAC
2228  * hash tables mac_by_ip4 and mac_by_ip6 for each BD.
2229  */
2230 typedef enum
2231 {
2235 } arp_term_next_t;
2236 
2238 
2239 static uword
2241  vlib_node_runtime_t * node, vlib_frame_t * frame)
2242 {
2243  l2input_main_t *l2im = &l2input_main;
2244  u32 n_left_from, next_index, *from, *to_next;
2245  u32 n_replies_sent = 0;
2246  u16 last_bd_index = ~0;
2247  l2_bridge_domain_t *last_bd_config = 0;
2248  l2_input_config_t *cfg0;
2249 
2250  from = vlib_frame_vector_args (frame);
2251  n_left_from = frame->n_vectors;
2252  next_index = node->cached_next_index;
2253 
2254  while (n_left_from > 0)
2255  {
2256  u32 n_left_to_next;
2257 
2258  vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
2259 
2260  while (n_left_from > 0 && n_left_to_next > 0)
2261  {
2262  vlib_buffer_t *p0;
2263  ethernet_header_t *eth0;
2264  ethernet_arp_header_t *arp0;
2265  ip6_header_t *iph0;
2266  u8 *l3h0;
2267  u32 pi0, error0, next0, sw_if_index0;
2268  u16 ethertype0;
2269  u16 bd_index0;
2270  u32 ip0;
2271  u8 *macp0;
2272  u8 is_vrrp_reply0;
2273 
2274  pi0 = from[0];
2275  to_next[0] = pi0;
2276  from += 1;
2277  to_next += 1;
2278  n_left_from -= 1;
2279  n_left_to_next -= 1;
2280 
2281  p0 = vlib_get_buffer (vm, pi0);
2282  // Terminate only local (SHG == 0) ARP
2283  if (vnet_buffer (p0)->l2.shg != 0)
2284  goto next_l2_feature;
2285 
2286  eth0 = vlib_buffer_get_current (p0);
2287  l3h0 = (u8 *) eth0 + vnet_buffer (p0)->l2.l2_len;
2288  ethertype0 = clib_net_to_host_u16 (*(u16 *) (l3h0 - 2));
2289  arp0 = (ethernet_arp_header_t *) l3h0;
2290 
2291  if (PREDICT_FALSE ((ethertype0 != ETHERNET_TYPE_ARP) ||
2292  (arp0->opcode !=
2293  clib_host_to_net_u16
2294  (ETHERNET_ARP_OPCODE_request))))
2295  goto check_ip6_nd;
2296 
2297  /* Must be ARP request packet here */
2298  if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE) &&
2299  (p0->flags & VLIB_BUFFER_IS_TRACED)))
2300  {
2301  u8 *t0 = vlib_add_trace (vm, node, p0,
2302  sizeof (ethernet_arp_input_trace_t));
2303  clib_memcpy (t0, l3h0, sizeof (ethernet_arp_input_trace_t));
2304  }
2305 
2306  error0 = ETHERNET_ARP_ERROR_replies_sent;
2307  error0 =
2308  (arp0->l2_type !=
2309  clib_net_to_host_u16 (ETHERNET_ARP_HARDWARE_TYPE_ethernet)
2310  ? ETHERNET_ARP_ERROR_l2_type_not_ethernet : error0);
2311  error0 =
2312  (arp0->l3_type !=
2313  clib_net_to_host_u16 (ETHERNET_TYPE_IP4) ?
2314  ETHERNET_ARP_ERROR_l3_type_not_ip4 : error0);
2315 
2316  sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
2317 
2318  if (error0)
2319  goto drop;
2320 
2321  is_vrrp_reply0 =
2322  ((arp0->opcode ==
2323  clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply))
2324  &&
2325  (!memcmp
2326  (arp0->ip4_over_ethernet[0].ethernet, vrrp_prefix,
2327  sizeof (vrrp_prefix))));
2328 
2329  /* Trash ARP packets whose ARP-level source addresses do not
2330  match their L2-frame-level source addresses, unless it's
2331  a reply from a VRRP virtual router */
2332  if (PREDICT_FALSE
2333  (memcmp (eth0->src_address, arp0->ip4_over_ethernet[0].ethernet,
2334  sizeof (eth0->src_address)) && !is_vrrp_reply0))
2335  {
2336  error0 = ETHERNET_ARP_ERROR_l2_address_mismatch;
2337  goto drop;
2338  }
2339 
2340  /* Check if anyone want ARP request events for L2 BDs */
2341  {
2343  if (am->wc_ip4_arp_publisher_node != (uword) ~ 0)
2344  vnet_arp_wc_publish (sw_if_index0, &arp0->ip4_over_ethernet[0]);
2345  }
2346 
2347  /* lookup BD mac_by_ip4 hash table for MAC entry */
2348  ip0 = arp0->ip4_over_ethernet[1].ip4.as_u32;
2349  bd_index0 = vnet_buffer (p0)->l2.bd_index;
2350  if (PREDICT_FALSE ((bd_index0 != last_bd_index)
2351  || (last_bd_index == (u16) ~ 0)))
2352  {
2353  last_bd_index = bd_index0;
2354  last_bd_config = vec_elt_at_index (l2im->bd_configs, bd_index0);
2355  }
2356  macp0 = (u8 *) hash_get (last_bd_config->mac_by_ip4, ip0);
2357 
2358  if (PREDICT_FALSE (!macp0))
2359  goto next_l2_feature; /* MAC not found */
2360 
2361  /* MAC found, send ARP reply -
2362  Convert ARP request packet to ARP reply */
2363  arp0->opcode = clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply);
2364  arp0->ip4_over_ethernet[1] = arp0->ip4_over_ethernet[0];
2365  arp0->ip4_over_ethernet[0].ip4.as_u32 = ip0;
2366  clib_memcpy (arp0->ip4_over_ethernet[0].ethernet, macp0, 6);
2367  clib_memcpy (eth0->dst_address, eth0->src_address, 6);
2368  clib_memcpy (eth0->src_address, macp0, 6);
2369  n_replies_sent += 1;
2370 
2371  output_response:
2372  /* For BVI, need to use l2-fwd node to send ARP reply as
2373  l2-output node cannot output packet to BVI properly */
2374  cfg0 = vec_elt_at_index (l2im->configs, sw_if_index0);
2375  if (PREDICT_FALSE (cfg0->bvi))
2376  {
2377  vnet_buffer (p0)->l2.feature_bitmap |= L2INPUT_FEAT_FWD;
2378  vnet_buffer (p0)->sw_if_index[VLIB_RX] = 0;
2379  goto next_l2_feature;
2380  }
2381 
2382  /* Send ARP/ND reply back out input interface through l2-output */
2383  vnet_buffer (p0)->sw_if_index[VLIB_TX] = sw_if_index0;
2384  next0 = ARP_TERM_NEXT_L2_OUTPUT;
2385  vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2386  to_next, n_left_to_next, pi0,
2387  next0);
2388  continue;
2389 
2390  check_ip6_nd:
2391  /* IP6 ND event notification or solicitation handling to generate
2392  local response instead of flooding */
2393  iph0 = (ip6_header_t *) l3h0;
2394  if (PREDICT_FALSE (ethertype0 == ETHERNET_TYPE_IP6 &&
2395  iph0->protocol == IP_PROTOCOL_ICMP6 &&
2397  (&iph0->src_address)))
2398  {
2399  sw_if_index0 = vnet_buffer (p0)->sw_if_index[VLIB_RX];
2400  if (vnet_ip6_nd_term
2401  (vm, node, p0, eth0, iph0, sw_if_index0,
2402  vnet_buffer (p0)->l2.bd_index))
2403  goto output_response;
2404  }
2405 
2406  next_l2_feature:
2407  {
2409  L2INPUT_FEAT_ARP_TERM);
2410  vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2411  to_next, n_left_to_next,
2412  pi0, next0);
2413  continue;
2414  }
2415 
2416  drop:
2417  if (0 == arp0->ip4_over_ethernet[0].ip4.as_u32 ||
2418  (arp0->ip4_over_ethernet[0].ip4.as_u32 ==
2419  arp0->ip4_over_ethernet[1].ip4.as_u32))
2420  {
2421  error0 = ETHERNET_ARP_ERROR_gratuitous_arp;
2422  }
2423  next0 = ARP_TERM_NEXT_DROP;
2424  p0->error = node->errors[error0];
2425 
2426  vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
2427  to_next, n_left_to_next, pi0,
2428  next0);
2429  }
2430 
2431  vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2432  }
2433 
2434  vlib_error_count (vm, node->node_index,
2435  ETHERNET_ARP_ERROR_replies_sent, n_replies_sent);
2436  return frame->n_vectors;
2437 }
2438 
2439 /* *INDENT-OFF* */
2441  .function = arp_term_l2bd,
2442  .name = "arp-term-l2bd",
2443  .vector_size = sizeof (u32),
2444  .n_errors = ETHERNET_ARP_N_ERROR,
2445  .error_strings = ethernet_arp_error_strings,
2446  .n_next_nodes = ARP_TERM_N_NEXT,
2447  .next_nodes = {
2448  [ARP_TERM_NEXT_L2_OUTPUT] = "l2-output",
2449  [ARP_TERM_NEXT_DROP] = "error-drop",
2450  },
2451  .format_buffer = format_ethernet_arp_header,
2452  .format_trace = format_arp_term_input_trace,
2453 };
2454 /* *INDENT-ON* */
2455 
2456 clib_error_t *
2458 {
2459  // Initialize the feature next-node indexes
2461  arp_term_l2bd_node.index,
2465  return 0;
2466 }
2467 
2469 
2470 void
2472 {
2473  if (e->sw_if_index == sw_if_index)
2474  {
2477  }
2478 }
2479 
2480 void
2482 {
2485  adj_index_t ai;
2486 
2487  /* *INDENT-OFF* */
2488  pool_foreach (e, am->ip4_entry_pool,
2489  ({
2490  change_arp_mac (sw_if_index, e);
2491  }));
2492  /* *INDENT-ON* */
2493 
2494  ai = adj_glean_get (FIB_PROTOCOL_IP4, sw_if_index);
2495 
2496  if (ADJ_INDEX_INVALID != ai)
2498 }
2499 
2500 void
2502 {
2503  ip4_main_t *i4m = &ip4_main;
2504  u32 sw_if_index = hi->sw_if_index;
2505  ip4_address_t *ip4_addr = ip4_interface_first_address (i4m, sw_if_index, 0);
2506 
2507  if (ip4_addr)
2508  {
2509  clib_warning ("Sending GARP for IP4 address %U on sw_if_idex %d",
2510  format_ip4_address, ip4_addr, sw_if_index);
2511 
2512  /* Form GARP packet for output - Gratuitous ARP is an ARP request packet
2513  where the interface IP/MAC pair is used for both source and request
2514  MAC/IP pairs in the request */
2515  u32 bi = 0;
2517  (vm, &i4m->ip4_arp_request_packet_template, &bi);
2518  clib_memcpy (h->ip4_over_ethernet[0].ethernet, hi->hw_address,
2519  sizeof (h->ip4_over_ethernet[0].ethernet));
2520  clib_memcpy (h->ip4_over_ethernet[1].ethernet, hi->hw_address,
2521  sizeof (h->ip4_over_ethernet[1].ethernet));
2522  h->ip4_over_ethernet[0].ip4 = ip4_addr[0];
2523  h->ip4_over_ethernet[1].ip4 = ip4_addr[0];
2524 
2525  /* Setup MAC header with ARP Etype and broadcast DMAC */
2526  vlib_buffer_t *b = vlib_get_buffer (vm, bi);
2527  vlib_buffer_advance (b, -sizeof (ethernet_header_t));
2529  e->type = clib_host_to_net_u16 (ETHERNET_TYPE_ARP);
2530  clib_memcpy (e->src_address, hi->hw_address, sizeof (e->src_address));
2531  memset (e->dst_address, 0xff, sizeof (e->dst_address));
2532 
2533  /* Send GARP packet out the specified interface */
2534  vnet_buffer (b)->sw_if_index[VLIB_RX] =
2535  vnet_buffer (b)->sw_if_index[VLIB_TX] = sw_if_index;
2537  u32 *to_next = vlib_frame_vector_args (f);
2538  to_next[0] = bi;
2539  f->n_vectors = 1;
2541  }
2542 }
2543 
2544 /*
2545  * fd.io coding-style-patch-verification: ON
2546  *
2547  * Local Variables:
2548  * eval: (c-set-style "gnu")
2549  * End:
2550  */
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:434
#define vnet_rewrite_one_header(rw0, p0, most_likely_size)
Definition: rewrite.h:281
Definition: edit.h:64
static void set_ip4_over_ethernet_rpc_callback(vnet_arp_set_ip4_over_ethernet_rpc_args_t *a)
Definition: arp.c:1846
#define VNET_SW_INTERFACE_FLAG_UNNUMBERED
Definition: interface.h:595
vmrglw vmrglh hi
#define pool_next_index(P, I)
Return next occupied pool index after i, useful for safe iteration.
Definition: pool.h:469
fib_node_index_t fib_table_entry_path_add(u32 fib_index, const fib_prefix_t *prefix, fib_source_t source, fib_entry_flag_t flags, dpo_proto_t next_hop_proto, const ip46_address_t *next_hop, u32 next_hop_sw_if_index, u32 next_hop_fib_index, u32 next_hop_weight, fib_mpls_label_t *next_hop_labels, fib_route_path_flags_t path_flags)
Add one path to an entry (aka route) in the FIB.
Definition: fib_table.c:514
#define VNET_REWRITE_FOR_SW_INTERFACE_ADDRESS_BROADCAST
Definition: rewrite.h:313
static uword arp_term_l2bd(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
Definition: arp.c:2240
#define hash_set(h, key, value)
Definition: hash.h:254
l2_input_config_t * configs
Definition: l2_input.h:66
An entry in a FIB table.
Definition: fib_entry.h:453
ip4_table_bind_function_t * function
Definition: ip4.h:82
#define CLIB_UNUSED(x)
Definition: clib.h:79
u8 * format_ethernet_arp_ip4_entry(u8 *s, va_list *va)
Definition: arp.c:249
ip4_add_del_interface_address_callback_t * add_del_interface_address_callbacks
Functions to call when interface address changes.
Definition: ip4.h:129
#define hash_unset(h, key)
Definition: hash.h:260
a
Definition: bitmap.h:516
An indication that the rewrite is incomplete, i.e.
Definition: adj_nbr.h:90
static uword * vlib_process_wait_for_event(vlib_main_t *vm)
Definition: node_funcs.h:619
uword unformat_pg_arp_header(unformat_input_t *input, va_list *args)
Definition: arp.c:1415
static void pg_ethernet_arp_header_init(pg_ethernet_arp_header_t *p)
Definition: arp.c:1398
static int vnet_arp_unset_ip4_over_ethernet_internal(vnet_main_t *vnm, vnet_arp_set_ip4_over_ethernet_rpc_args_t *args)
Definition: arp.c:1757
static void increment_ip4_and_mac_address(ethernet_arp_ip4_over_ethernet_address_t *a)
Definition: arp.c:1910
An indication that the rewrite is complete, i.e.
Definition: adj_nbr.h:98
vnet_main_t * vnet_get_main(void)
Definition: misc.c:47
static vnet_hw_interface_t * vnet_get_sup_hw_interface(vnet_main_t *vnm, u32 sw_if_index)
static uword vlib_current_process(vlib_main_t *vm)
Definition: node_funcs.h:426
static void arp_add_del_interface_address(ip4_main_t *im, uword opaque, u32 sw_if_index, ip4_address_t *address, u32 address_length, u32 if_address_index, u32 is_del)
Definition: arp.c:1575
static void pg_edit_set_fixed(pg_edit_t *e, u64 value)
Definition: edit.h:153
static clib_error_t * show_ip4_arp(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: arp.c:1323
vnet_interface_main_t interface_main
Definition: vnet.h:56
pending_resolution_t * pending_resolutions
Definition: arp.c:78
void fib_entry_get_prefix(fib_node_index_t fib_entry_index, fib_prefix_t *pfx)
Definition: fib_entry.c:1603
static void vlib_error_count(vlib_main_t *vm, uword node_index, uword counter, uword increment)
Definition: error_funcs.h:57
Multicast Adjacency.
Definition: adj.h:82
vnet_link_t adj_get_link_type(adj_index_t ai)
Return the link type of the adjacency.
Definition: adj.c:403
#define NULL
Definition: clib.h:55
ip4_address_t * ip4_interface_first_address(ip4_main_t *im, u32 sw_if_index, ip_interface_address_t **result_ia)
Definition: ip4_forward.c:319
IP unicast adjacency.
Definition: adj.h:175
Information related to the source of a FIB entry.
Definition: fib_entry.h:345
struct ethernet_arp_interface_t_ ethernet_arp_interface_t
Per-interface ARP configuration and state.
void change_arp_mac(u32 sw_if_index, ethernet_arp_ip4_entry_t *e)
Definition: arp.c:2471
static u8 * format_ethernet_arp_header(u8 *s, va_list *va)
Definition: arp.c:202
u8 src_address[6]
Definition: packet.h:56
static clib_error_t * set_int_proxy_arp_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: arp.c:2160
clib_error_t * ip4_set_arp_limit(u32 arp_limit)
Definition: arp.c:1451
static uword arp_input(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
Definition: arp.c:885
This packet is to be rewritten and forwarded to the next processing node.
Definition: adj.h:73
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:520
word vnet_sw_interface_compare(vnet_main_t *vnm, uword sw_if_index0, uword sw_if_index1)
Definition: interface.c:1161
struct ip_adjacency_t_::@43::@44 nbr
IP_LOOKUP_NEXT_ARP/IP_LOOKUP_NEXT_REWRITE.
static u64 clib_cpu_time_now(void)
Definition: time.h:73
void arp_update_adjacency(vnet_main_t *vnm, u32 sw_if_index, u32 ai)
Definition: arp.c:443
static void arp_table_bind(ip4_main_t *im, uword opaque, u32 sw_if_index, u32 new_fib_index, u32 old_fib_index)
Definition: arp.c:1654
static uword unformat_ethernet_arp_opcode_host_byte_order(unformat_input_t *input, va_list *args)
Definition: arp.c:161
#define vec_add2(V, P, N)
Add N elements to end of vector V, return pointer to new elements in P.
Definition: vec.h:559
int i
adj_index_t adj_glean_get(fib_protocol_t proto, u32 sw_if_index)
Get an existing glean.
Definition: adj_glean.c:119
uword unformat_user(unformat_input_t *input, unformat_function_t *func,...)
Definition: unformat.c:983
static u32 format_get_indent(u8 *s)
Definition: format.h:72
uword unformat_pg_edit(unformat_input_t *input, va_list *args)
Definition: edit.c:106
void adj_nbr_walk_nh4(u32 sw_if_index, const ip4_address_t *addr, adj_walk_cb_t cb, void *ctx)
Walk adjacencies on a link with a given v4 next-hop.
Definition: adj_nbr.c:614
pg_edit_t l2_type
Definition: arp.c:1387
static vnet_sw_interface_t * vnet_get_sw_interface(vnet_main_t *vnm, u32 sw_if_index)
static int vnet_arp_wc_publish(u32 sw_if_index, void *a_arg)
publish wildcard arp event
Definition: arp.c:1528
u32 * fib_index_by_sw_if_index
Table index indexed by software interface.
Definition: ip4.h:111
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:419
uword * opcode_by_name
Definition: arp.c:74
format_function_t format_vlib_cpu_time
Definition: node_funcs.h:1160
unformat_function_t unformat_vnet_sw_interface
u64 cpu_time_last_updated
Definition: arp_packet.h:159
void vl_api_rpc_call_main_thread(void *fp, u8 *data, u32 data_length)
Definition: vlib_api.c:644
vlib_error_t * errors
Vector of errors for this node.
Definition: node.h:415
Definition: fib_entry.h:272
#define pool_get(P, E)
Allocate an object E from a pool P (unspecified alignment).
Definition: pool.h:227
pg_edit_t ethernet
Definition: arp.c:1392
ip6_address_t src_address
Definition: ip6_packet.h:342
static u32 vnet_l2_feature_next(vlib_buffer_t *b, u32 *next_nodes, u32 feat_bit)
Return the graph node index for the feature corresponding to the next set bit after clearing the curr...
Definition: feat_bitmap.h:94
void * data_callback
Definition: arp.c:67
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
union ip_adjacency_t_::@43 sub_type
static pg_node_t * pg_get_node(uword node_index)
Definition: pg.h:350
vnet_link_t ia_link
link/ether-type 1 bytes
Definition: adj.h:196
static int vnet_arp_populate_ip4_over_ethernet_internal(vnet_main_t *vnm, vnet_arp_set_ip4_over_ethernet_rpc_args_t *args)
Definition: arp.c:1824
u32 send_garp_na_process_node_index
Definition: arp.c:118
Adjacency to punt this packet.
Definition: adj.h:55
VNET_SW_INTERFACE_ADMIN_UP_DOWN_FUNCTION(ethernet_arp_sw_interface_up_down)
arp_input_next_t
Definition: arp.c:784
void adj_glean_update_rewrite(adj_index_t adj_index)
adj_glean_update_rewrite
Definition: adj_glean.c:101
static const u8 vrrp_prefix[]
Definition: arp.c:115
void arp_adj_fib_remove(ethernet_arp_ip4_entry_t *e, u32 fib_index)
Definition: arp.c:1630
u32 ip4_fib_table_get_index_for_sw_if_index(u32 sw_if_index)
Definition: ip4_fib.c:226
format_function_t format_ip4_address
Definition: format.h:79
static ip_adjacency_t * adj_get(adj_index_t adj_index)
Get a pointer to an adjacency object from its index.
Definition: adj.h:376
pg_edit_t n_l3_address_bytes
Definition: arp.c:1388
u8 * format_ethernet_address(u8 *s, va_list *args)
Definition: format.c:44
#define VNET_SW_INTERFACE_FLAG_PROXY_ARP
Definition: interface.h:593
void * vlib_packet_template_get_packet(vlib_main_t *vm, vlib_packet_template_t *t, u32 *bi_result)
Definition: buffer.c:773
#define pool_foreach(VAR, POOL, BODY)
Iterate through pool.
Definition: pool.h:440
unformat_function_t unformat_ip4_address
Definition: format.h:76
ethernet_arp_ip4_over_ethernet_address_t ip4_over_ethernet[2]
Definition: arp_packet.h:136
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:111
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:542
pending_resolution_t * mac_changes
Definition: arp.c:82
u8 dst_address[6]
Definition: packet.h:55
static int vnet_arp_set_ip4_over_ethernet_internal(vnet_main_t *vnm, vnet_arp_set_ip4_over_ethernet_rpc_args_t *args)
Definition: arp.c:550
u8 * format_white_space(u8 *s, va_list *va)
Definition: std-formats.c:113
static int ip4_arp_entry_sort(void *a1, void *a2)
Definition: arp.c:1289
enum adj_walk_rc_t_ adj_walk_rc_t
return codes from a adjacency walker callback function
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
Aggregrate type for a prefix.
Definition: fib_types.h:188
u8 * format_hex_bytes(u8 *s, va_list *va)
Definition: std-formats.c:84
vlib_frame_t * vlib_get_frame_to_node(vlib_main_t *vm, u32 to_node_index)
Definition: main.c:182
#define clib_error_return(e, args...)
Definition: error.h:99
ethernet_arp_hardware_type_t
Definition: arp_packet.h:89
static u8 * format_ethernet_arp_input_trace(u8 *s, va_list *va)
Definition: arp.c:288
static int vnet_arp_flush_ip4_over_ethernet(vnet_main_t *vnm, u32 sw_if_index, void *a_arg)
Internally generated event to flush the ARP cache on an interface state change event.
Definition: arp.c:1485
#define foreach_ethernet_arp_opcode
Definition: arp_packet.h:61
uword * pending_resolutions_by_address
Definition: arp.c:77
static void * pg_create_edit_group(pg_stream_t *s, int n_edit_bytes, int n_packet_bytes, u32 *group_index)
Definition: pg.h:225
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:1037
u16 fp_len
The mask length.
Definition: fib_types.h:192
#define vlib_call_init_function(vm, x)
Definition: init.h:162
static ethernet_arp_ip4_entry_t * arp_entry_find(ethernet_arp_interface_t *eai, const ip4_address_t *addr)
Definition: arp.c:406
int vnet_arp_unset_ip4_over_ethernet(vnet_main_t *vnm, u32 sw_if_index, void *a_arg)
Control Plane hook to remove an ARP entry.
Definition: arp.c:1463
#define hash_create_string(elts, value_bytes)
Definition: hash.h:675
pg_edit_t l3_type
Definition: arp.c:1387
static adj_walk_rc_t arp_mk_complete_walk(adj_index_t ai, void *ctx)
Definition: arp.c:425
Per-interface ARP configuration and state.
Definition: arp.c:44
static heap_elt_t * first(heap_header_t *h)
Definition: heap.c:59
#define FOR_EACH_SRC_ADDED(_entry, _src, _source, action)
Definition: fib_entry.h:275
#define hash_get(h, key)
Definition: hash.h:248
format_function_t format_vnet_sw_interface_name
#define ADJ_INDEX_INVALID
Invalid ADJ index - used when no adj is known likewise blazoned capitals INVALID speak volumes where ...
Definition: adj_types.h:36
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:461
static ethernet_header_t * ethernet_buffer_get_header(vlib_buffer_t *b)
Definition: ethernet.h:380
#define foreach_ethernet_arp_error
Definition: arp.c:791
vlib_main_t * vlib_main
Definition: vnet.h:78
static void arp_mk_complete(adj_index_t ai, ethernet_arp_ip4_entry_t *e)
Definition: arp.c:382
static void vlib_process_signal_event(vlib_main_t *vm, uword node_index, uword type_opaque, uword data)
Definition: node_funcs.h:952
Adjacency source.
Definition: fib_entry.h:104
enum fib_source_t_ fib_source_t
The different sources that can create a route.
ip46_address_t fp_addr
The address type is not deriveable from the fp_addr member.
Definition: fib_types.h:211
uword type_opaque
Definition: arp.c:64
#define ETHERNET_ARP_ARGS_FLUSH
Definition: arp.c:110
ip4_address_t ip4_address
Definition: arp_packet.h:153
struct _unformat_input_t unformat_input_t
u32 sw_if_index
Definition: arp_packet.h:152
static u32 arp_learn(vnet_main_t *vnm, ethernet_arp_main_t *am, u32 sw_if_index, void *addr)
Definition: arp.c:873
void send_ip4_garp(vlib_main_t *vm, vnet_hw_interface_t *hi)
Definition: arp.c:2501
u8 ethernet_address[6]
Definition: arp_packet.h:155
void vlib_put_frame_to_node(vlib_main_t *vm, u32 to_node_index, vlib_frame_t *f)
Definition: main.c:191
static void * vlib_buffer_get_current(vlib_buffer_t *b)
Get pointer to current data to process.
Definition: buffer.h:209
u8 * ip_enabled_by_sw_if_index
Definition: ip4.h:117
#define pool_put(P, E)
Free an object E in pool P.
Definition: pool.h:273
static void * vlib_process_signal_event_data(vlib_main_t *vm, uword node_index, uword type_opaque, uword n_data_elts, uword n_data_elt_bytes)
Definition: node_funcs.h:846
static void unset_random_arp_entry(void)
Definition: arp.c:817
#define PREDICT_FALSE(x)
Definition: clib.h:105
This packet matches an "interface route" and packets need to be passed to ARP to find rewrite string ...
Definition: adj.h:68
ethernet_arp_interface_t * ethernet_arp_by_sw_if_index
Per interface state.
Definition: arp.c:91
u32 node_index
Node index.
Definition: node.h:437
static clib_error_t * ethernet_arp_init(vlib_main_t *vm)
Definition: arp.c:1689
#define vlib_validate_buffer_enqueue_x1(vm, node, next_index, to_next, n_left_to_next, bi0, next0)
Finish enqueueing one buffer forward in the graph.
Definition: buffer_node.h:218
#define vlib_get_next_frame(vm, node, next_index, vectors, n_vectors_left)
Get pointer to next frame vector data by (vlib_node_runtime_t, next_index).
Definition: node_funcs.h:364
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:1209
ethernet_arp_opcode_t
Definition: arp_packet.h:96
vlib_error_t error
Error code for buffers to be enqueued to error handler.
Definition: buffer.h:130
u32 fib_entry_get_resolving_interface(fib_node_index_t entry_index)
Definition: fib_entry.c:1409
static clib_error_t * ip_arp_add_del_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: arp.c:2024
u8 * format_ethernet_type(u8 *s, va_list *args)
Definition: format.c:58
fib_node_index_t ip4_fib_table_lookup(const ip4_fib_t *fib, const ip4_address_t *addr, u32 len)
Definition: ip4_fib.c:293
static void arp_adj_fib_add(ethernet_arp_ip4_entry_t *e, u32 fib_index)
Definition: arp.c:532
ethernet_proxy_arp_t * proxy_arps
Definition: arp.c:94
This packet matches an "incomplete adjacency" and packets need to be passed to ARP to find rewrite st...
Definition: adj.h:63
int fib_entry_is_sourced(fib_node_index_t fib_entry_index, fib_source_t source)
Adjacency to drop this packet.
Definition: adj.h:53
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:143
#define UNFORMAT_END_OF_INPUT
Definition: format.h:143
u16 n_vectors
Definition: node.h:344
static_always_inline uword vlib_get_thread_index(void)
Definition: threads.h:221
static void arp_mk_incomplete(adj_index_t ai)
Definition: arp.c:392
vlib_main_t * vm
Definition: buffer.c:294
int ip4_address_compare(ip4_address_t *a1, ip4_address_t *a2)
Definition: ip46_cli.c:53
pg_edit_t n_l2_address_bytes
Definition: arp.c:1388
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:336
ip4_add_del_interface_address_function_t * function
Definition: ip4.h:72
static ethernet_arp_main_t ethernet_arp_main
Definition: arp.c:100
static ip4_fib_t * ip4_fib_get(u32 index)
Get the FIB at the given index.
Definition: ip4_fib.h:117
static void feat_bitmap_init_next_nodes(vlib_main_t *vm, u32 node_index, u32 num_features, char **feat_names, u32 *next_nodes)
Initialize the feature next-node indexes of a graph node.
Definition: feat_bitmap.h:43
Multicast Midchain Adjacency.
Definition: adj.h:86
static char * ethernet_arp_error_strings[]
Definition: arp.c:1264
#define ETHERNET_ARP_ARGS_POPULATE
Definition: arp.c:111
#define clib_warning(format, args...)
Definition: error.h:59
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:89
#define clib_memcpy(a, b, c)
Definition: string.h:75
unformat_function_t * unformat_edit
Definition: pg.h:307
uword * mac_changes_by_address
Definition: arp.c:81
uword wc_ip4_arp_publisher_et
Definition: arp.c:97
void wc_arp_set_publisher_node(uword node_index, uword event_type)
Definition: arp.c:1562
u32 fib_node_index_t
A typedef of a node index.
Definition: fib_types.h:30
u32 adj_index_t
An index for adjacencies.
Definition: adj_types.h:30
void vlib_put_next_frame(vlib_main_t *vm, vlib_node_runtime_t *r, u32 next_index, u32 n_vectors_left)
Release pointer to next frame vector data.
Definition: main.c:454
void vnet_register_ip4_arp_resolution_event(vnet_main_t *vnm, void *address_arg, uword node_index, uword type_opaque, uword data)
Definition: arp.c:688
static clib_error_t * ethernet_arp_sw_interface_up_down(vnet_main_t *vnm, u32 sw_if_index, u32 flags)
Invoked when the interface&#39;s admin state changes.
Definition: arp.c:1868
char ** l2input_get_feat_names(void)
Return an array of strings containing graph node names of each feature.
Definition: l2_input.c:60
fib_entry_t * fib_entry_get(fib_node_index_t index)
Definition: fib_entry.c:45
int vnet_proxy_arp_add_del(ip4_address_t *lo_addr, ip4_address_t *hi_addr, u32 fib_index, int is_del)
Definition: arp.c:1952
enum fib_entry_flag_t_ fib_entry_flag_t
static u8 * format_ethernet_arp_opcode(u8 *s, va_list *va)
Definition: arp.c:143
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:1238
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:154
This packets follow a mid-chain adjacency.
Definition: adj.h:76
clib_error_t * arp_term_init(vlib_main_t *vm)
Definition: arp.c:2457
vlib_packet_template_t ip4_arp_request_packet_template
Template used to generate IP4 ARP packets.
Definition: ip4.h:135
#define hash_create(elts, value_bytes)
Definition: hash.h:681
#define ETHERNET_ARP_ARGS_REMOVE
Definition: arp.c:109
u16 cached_next_index
Next frame index that vector arguments were last enqueued to last time this node ran.
Definition: node.h:456
#define VNET_SW_INTERFACE_FLAG_ADMIN_UP
Definition: interface.h:588
uword unformat_ethernet_address(unformat_input_t *input, va_list *args)
Definition: format.c:227
#define ASSERT(truth)
u32 arp_term_next_node_index[32]
Definition: arp.c:2237
unsigned int u32
Definition: types.h:88
#define vec_delete(V, N, M)
Delete N elements starting at element M.
Definition: vec.h:783
long ctx[MAX_CONNS]
Definition: main.c:126
The default route source.
Definition: fib_entry.h:133
IPv4 main type.
Definition: ip4.h:95
uword unformat_vlib_number_by_name(unformat_input_t *input, va_list *args)
Definition: format.c:157
static void pg_free_edit_group(pg_stream_t *s)
Definition: pg.h:278
u32 arp_delete_rotor
Definition: arp.c:87
static void vlib_buffer_advance(vlib_buffer_t *b, word l)
Advance current data pointer by the supplied (signed!) amount.
Definition: buffer.h:222
void adj_mcast_update_rewrite(adj_index_t adj_index, u8 *rewrite, u8 offset, u32 mask)
adj_mcast_update_rewrite
Definition: adj_mcast.c:102
size_t count
Definition: vapi.c:42
format_function_t format_ip6_header
Definition: format.h:98
ethernet_arp_entry_flags_t flags
Definition: arp_packet.h:157
void fib_table_entry_path_remove(u32 fib_index, const fib_prefix_t *prefix, fib_source_t source, dpo_proto_t next_hop_proto, const ip46_address_t *next_hop, u32 next_hop_sw_if_index, u32 next_hop_fib_index, u32 next_hop_weight, fib_route_path_flags_t path_flags)
remove one path to an entry (aka route) in the FIB.
Definition: fib_table.c:674
static void arp_nbr_probe(ip_adjacency_t *adj)
Definition: arp.c:319
Definition: pg.h:96
ethernet_arp_ip4_over_ethernet_address_t a
Definition: arp.c:105
void ethernet_register_input_type(vlib_main_t *vm, ethernet_type_t type, u32 node_index)
Definition: node.c:1333
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:23
static vlib_node_registration_t arp_term_l2bd_node
(constructor) VLIB_REGISTER_NODE (arp_term_l2bd_node)
Definition: arp.c:2440
uword * arp_entries
Hash table of ARP entries.
Definition: arp.c:50
u64 uword
Definition: types.h:112
static void * vlib_add_trace(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_buffer_t *b, u32 n_data_bytes)
Definition: trace_funcs.h:55
#define vec_elt(v, i)
Get vector value at index i.
ip4_table_bind_callback_t * table_bind_callbacks
Functions to call when interface to table biding changes.
Definition: ip4.h:132
fib_entry_flag_t fib_entry_get_flags_for_source(fib_node_index_t fib_entry_index, fib_source_t source)
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
Definition: defs.h:47
void vlib_trace_frame_buffers_only(vlib_main_t *vm, vlib_node_runtime_t *node, u32 *buffers, uword n_buffers, uword next_buffer_stride, uword n_buffer_data_bytes_in_trace)
Definition: trace.c:45
unsigned short u16
Definition: types.h:57
l2input_main_t l2input_main
Definition: l2_input.c:113
static vlib_node_registration_t arp_input_node
(constructor) VLIB_REGISTER_NODE (arp_input_node)
Definition: arp.c:1271
#define FIB_NODE_INDEX_INVALID
Definition: fib_types.h:31
int vnet_proxy_arp_fib_reset(u32 fib_id)
Definition: arp.c:1993
fib_node_index_t fib_entry_index
The index of the adj-fib entry created.
Definition: arp_packet.h:164
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
unsigned char u8
Definition: types.h:56
ip_lookup_next_t lookup_next_index
Next hop after ip4-lookup.
Definition: adj.h:190
#define hash_foreach_pair(p, v, body)
Iterate over hash pairs.
Definition: hash.h:372
Definition: fib_entry.h:271
#define vec_sort_with_function(vec, f)
Sort a vector using the supplied element comparison function.
Definition: vec.h:958
#define ETHERNET_ARP_ARGS_WC_PUB
Definition: arp.c:112
static u8 * format_arp_term_input_trace(u8 *s, va_list *va)
Definition: arp.c:302
static int vnet_arp_flush_ip4_over_ethernet_internal(vnet_main_t *vnm, vnet_arp_set_ip4_over_ethernet_rpc_args_t *args)
Definition: arp.c:1784
vnet_sw_interface_t * sw_interfaces
Definition: interface.h:709
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
Definition: node_funcs.h:267
static clib_error_t * ethernet_init(vlib_main_t *vm)
Definition: init.c:82
static u8 * format_ethernet_arp_hardware_type(u8 *s, va_list *va)
Definition: arp.c:125
u8 * ethernet_build_rewrite(vnet_main_t *vnm, u32 sw_if_index, vnet_link_t link_type, const void *dst_address)
build a rewrite string to use for sending packets of type &#39;link_type&#39; to &#39;dst_address&#39; ...
Definition: interface.c:79
l2_bridge_domain_t * bd_configs
Definition: l2_input.h:69
static void arp_entry_free(ethernet_arp_interface_t *eai, ethernet_arp_ip4_entry_t *e)
Definition: arp.c:1745
pg_edit_t opcode
Definition: arp.c:1389
#define clib_mem_unaligned(pointer, type)
Definition: types.h:155
ethernet_arp_input_error_t
Definition: arp.c:807
arp_term_next_t
Definition: arp.c:2230
static void vnet_arp_wc_publish_internal(vnet_main_t *vnm, vnet_arp_set_ip4_over_ethernet_rpc_args_t *args)
Definition: arp.c:1543
struct clib_bihash_value offset
template key/value backing page structure
u32 limit_arp_cache_size
Definition: arp.c:88
#define vnet_buffer(b)
Definition: buffer.h:372
u8 * format_unformat_error(u8 *s, va_list *va)
Definition: unformat.c:91
struct pg_ethernet_arp_header_t::@116 ip4_over_ethernet[2]
ip4_main_t ip4_main
Global ip4 main structure.
Definition: ip4_forward.c:818
uword node_index
Definition: arp.c:63
#define vec_foreach(var, vec)
Vector iterator.
static uword ip6_address_is_unspecified(ip6_address_t *a)
Definition: ip6_packet.h:278
uword * mac_by_ip4
Definition: l2_bd.h:85
u16 flags
Copy of main node flags.
Definition: node.h:450
static int arp_unnumbered(vlib_buffer_t *p0, u32 input_sw_if_index, u32 conn_sw_if_index)
Definition: arp.c:848
ethernet_arp_ip4_entry_t * ip4_neighbor_entries(u32 sw_if_index)
Definition: arp.c:1304
uword wc_ip4_arp_publisher_node
Definition: arp.c:96
vhost_vring_addr_t addr
Definition: vhost-user.h:83
int vnet_arp_set_ip4_over_ethernet(vnet_main_t *vnm, u32 sw_if_index, void *a_arg, int is_static, int is_no_fib_entry)
Definition: arp.c:1933
static int vnet_arp_populate_ip4_over_ethernet(vnet_main_t *vnm, u32 sw_if_index, void *a_arg)
Internally generated event to populate the ARP cache on an interface state change event...
Definition: arp.c:1508
#define VLIB_NODE_FLAG_TRACE
Definition: node.h:259
u32 flags
Definition: vhost-user.h:77
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index, VLIB_BUFFER_IS_TRACED: trace this buffer.
Definition: buffer.h:111
static uword unformat_ethernet_arp_opcode_net_byte_order(unformat_input_t *input, va_list *args)
Definition: arp.c:189
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:291
void ethernet_arp_change_mac(u32 sw_if_index)
Definition: arp.c:2481
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:680
ethernet_arp_ip4_entry_t * ip4_entry_pool
Definition: arp.c:84
int vnet_add_del_ip4_arp_change_event(vnet_main_t *vnm, void *data_callback, u32 pid, void *address_arg, uword node_index, uword type_opaque, uword data, int is_add)
Definition: arp.c:719
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
Definition: buffer_funcs.h:57
Definition: pg.h:304
const u8 * ethernet_ip4_mcast_dst_addr(void)
Definition: interface.c:55
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:972
int vnet_ip6_nd_term(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_buffer_t *p0, ethernet_header_t *eth, ip6_header_t *ip, u32 sw_if_index, u16 bd_index)
Definition: defs.h:46
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:169
Definition: arp_packet.h:150
fib_entry_flag_t fib_entry_get_flags(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:276
static adj_walk_rc_t arp_mk_incomplete_walk(adj_index_t ai, void *ctx)
Definition: arp.c:435
static ip4_address_t * ip4_interface_address_matching_destination(ip4_main_t *im, ip4_address_t *dst, u32 sw_if_index, ip_interface_address_t **result_ia)
Definition: ip4.h:212
static uword pool_elts(void *v)
Number of active elements in a pool.
Definition: pool.h:128