FD.io VPP  v19.08.3-2-gbabecb413
Vector Packet Processing
device.c
Go to the documentation of this file.
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2017 Cisco and/or its affiliates.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *------------------------------------------------------------------
16  */
17 
18 #define _GNU_SOURCE
19 #include <stdint.h>
20 #include <vnet/ethernet/ethernet.h>
21 #include <vnet/ip/ip4_packet.h>
22 #include <vnet/ip/ip6_packet.h>
24 #include <vnet/bonding/node.h>
25 #include <vppinfra/lb_hash_hash.h>
26 #include <vnet/ip/ip.h>
28 
29 #define foreach_bond_tx_error \
30  _(NONE, "no error") \
31  _(IF_DOWN, "interface down") \
32  _(NO_SLAVE, "no slave")
33 
34 typedef enum
35 {
36 #define _(f,s) BOND_TX_ERROR_##f,
38 #undef _
41 
42 static char *bond_tx_error_strings[] = {
43 #define _(n,s) s,
45 #undef _
46 };
47 
48 static u8 *
49 format_bond_tx_trace (u8 * s, va_list * args)
50 {
51  CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
52  CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
53  bond_packet_trace_t *t = va_arg (*args, bond_packet_trace_t *);
54  vnet_hw_interface_t *hw, *hw1;
55  vnet_main_t *vnm = vnet_get_main ();
56 
59  s = format (s, "src %U, dst %U, %s -> %s",
62  hw->name, hw1->name);
63 
64  return s;
65 }
66 
67 #ifndef CLIB_MARCH_VARIANT
68 u8 *
69 format_bond_interface_name (u8 * s, va_list * args)
70 {
71  u32 dev_instance = va_arg (*args, u32);
72  bond_main_t *bm = &bond_main;
73  bond_if_t *bif = pool_elt_at_index (bm->interfaces, dev_instance);
74 
75  s = format (s, "BondEthernet%lu", bif->id);
76 
77  return s;
78 }
79 #endif
80 
81 static __clib_unused clib_error_t *
83  struct vnet_hw_interface_t *bif_hw,
84  i32 l2_if_adjust)
85 {
86  bond_if_t *bif;
88  struct vnet_hw_interface_t *sif_hw;
89 
91  if (!bif)
92  return 0;
93 
94  if ((bif_hw->l2_if_count == 1) && (l2_if_adjust == 1))
95  {
96  /* Just added first L2 interface on this port */
97  vec_foreach (sw_if_index, bif->slaves)
98  {
99  sif_hw = vnet_get_sup_hw_interface (vnm, *sw_if_index);
100  ethernet_set_flags (vnm, sif_hw->hw_if_index,
102  }
103  }
104  else if ((bif_hw->l2_if_count == 0) && (l2_if_adjust == -1))
105  {
106  /* Just removed last L2 subinterface on this port */
107  vec_foreach (sw_if_index, bif->slaves)
108  {
109  sif_hw = vnet_get_sup_hw_interface (vnm, *sw_if_index);
110  ethernet_set_flags (vnm, sif_hw->hw_if_index,
111  /*ETHERNET_INTERFACE_FLAG_DEFAULT_L3 */ 0);
112  }
113  }
114 
115  return 0;
116 }
117 
118 static __clib_unused clib_error_t *
120  struct vnet_sw_interface_t *st, int is_add)
121 {
122  /* Nothing for now */
123  return 0;
124 }
125 
126 static clib_error_t *
128 {
129  vnet_hw_interface_t *hif = vnet_get_hw_interface (vnm, hw_if_index);
130  uword is_up = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) != 0;
131  bond_main_t *bm = &bond_main;
133 
134  bif->admin_up = is_up;
135  if (is_up && vec_len (bif->active_slaves))
138  return 0;
139 }
140 
143 {
144  u32 idx = ptd->per_port_queue[port].n_buffers++;
145  ptd->per_port_queue[port].buffers[idx] = bi;
146 }
147 
150  bond_if_t * bif, vlib_buffer_t * b0, uword n_slaves)
151 {
152  bond_main_t *bm = &bond_main;
153  vlib_buffer_t *c0;
154  int port;
156  u16 thread_index = vm->thread_index;
158  thread_index);
159 
160  for (port = 1; port < n_slaves; port++)
161  {
162  sw_if_index = *vec_elt_at_index (bif->active_slaves, port);
163  c0 = vlib_buffer_copy (vm, b0);
164  if (PREDICT_TRUE (c0 != 0))
165  {
166  vnet_buffer (c0)->sw_if_index[VLIB_TX] = sw_if_index;
167  bond_tx_add_to_queue (ptd, port, vlib_get_buffer_index (vm, c0));
168  }
169  }
170 
171  return 0;
172 }
173 
176 {
178  u64 *dst = (u64 *) & eth->dst_address[0];
179  u64 a = clib_mem_unaligned (dst, u64);
180  u32 *src = (u32 *) & eth->src_address[2];
181  u32 b = clib_mem_unaligned (src, u32);
182 
183  return lb_hash_hash_2_tuples (a, b);
184 }
185 
188 {
189  u16 *ethertype_p;
191 
192  if (!ethernet_frame_is_tagged (clib_net_to_host_u16 (eth->type)))
193  {
194  ethertype_p = &eth->type;
195  }
196  else
197  {
198  vlan = (void *) (eth + 1);
199  ethertype_p = &vlan->type;
200  if (*ethertype_p == ntohs (ETHERNET_TYPE_VLAN))
201  {
202  vlan++;
203  ethertype_p = &vlan->type;
204  }
205  }
206  return ethertype_p;
207 }
208 
211 {
213  u8 ip_version;
214  ip4_header_t *ip4;
215  u16 ethertype, *ethertype_p;
216  u32 *mac1, *mac2, *mac3;
217 
218  ethertype_p = bond_locate_ethertype (eth);
219  ethertype = clib_mem_unaligned (ethertype_p, u16);
220 
221  if ((ethertype != htons (ETHERNET_TYPE_IP4)) &&
222  (ethertype != htons (ETHERNET_TYPE_IP6)))
223  return bond_lb_l2 (b0);
224 
225  ip4 = (ip4_header_t *) (ethertype_p + 1);
226  ip_version = (ip4->ip_version_and_header_length >> 4);
227 
228  if (ip_version == 0x4)
229  {
230  u32 a, c;
231 
232  mac1 = (u32 *) & eth->dst_address[0];
233  mac2 = (u32 *) & eth->dst_address[4];
234  mac3 = (u32 *) & eth->src_address[2];
235 
236  a = clib_mem_unaligned (mac1, u32) ^ clib_mem_unaligned (mac2, u32) ^
237  clib_mem_unaligned (mac3, u32);
238  c =
240  a);
241  return c;
242  }
243  else if (ip_version == 0x6)
244  {
245  u64 a;
246  u32 c;
247  ip6_header_t *ip6 = (ip6_header_t *) (eth + 1);
248 
249  mac1 = (u32 *) & eth->dst_address[0];
250  mac2 = (u32 *) & eth->dst_address[4];
251  mac3 = (u32 *) & eth->src_address[2];
252 
253  a = clib_mem_unaligned (mac1, u32) ^ clib_mem_unaligned (mac2, u32) ^
254  clib_mem_unaligned (mac3, u32);
255  c =
257  (&ip6->src_address.as_uword[0], uword),
259  uword),
261  uword),
263  uword), a);
264  return c;
265  }
266  return bond_lb_l2 (b0);
267 }
268 
271 {
273  u8 ip_version;
274  uword is_tcp_udp;
275  ip4_header_t *ip4;
276  u16 ethertype, *ethertype_p;
277 
278  ethertype_p = bond_locate_ethertype (eth);
279  ethertype = clib_mem_unaligned (ethertype_p, u16);
280 
281  if ((ethertype != htons (ETHERNET_TYPE_IP4)) &&
282  (ethertype != htons (ETHERNET_TYPE_IP6)))
283  return (bond_lb_l2 (b0));
284 
285  ip4 = (ip4_header_t *) (ethertype_p + 1);
286  ip_version = (ip4->ip_version_and_header_length >> 4);
287 
288  if (ip_version == 0x4)
289  {
290  u32 a, t1, t2;
291  tcp_header_t *tcp = (void *) (ip4 + 1);
292 
293  is_tcp_udp = (ip4->protocol == IP_PROTOCOL_TCP) ||
294  (ip4->protocol == IP_PROTOCOL_UDP);
295  t1 = is_tcp_udp ? clib_mem_unaligned (&tcp->src, u16) : 0;
296  t2 = is_tcp_udp ? clib_mem_unaligned (&tcp->dst, u16) : 0;
297  a = t1 ^ t2;
298  return
299  lb_hash_hash_2_tuples (clib_mem_unaligned (&ip4->address_pair, u64),
300  a);
301  }
302  else if (ip_version == 0x6)
303  {
304  u64 a;
305  u32 c, t1, t2;
306  ip6_header_t *ip6 = (ip6_header_t *) (eth + 1);
307  tcp_header_t *tcp = (void *) (ip6 + 1);
308 
309  is_tcp_udp = 0;
310  if (PREDICT_TRUE ((ip6->protocol == IP_PROTOCOL_TCP) ||
311  (ip6->protocol == IP_PROTOCOL_UDP)))
312  {
313  is_tcp_udp = 1;
314  tcp = (void *) (ip6 + 1);
315  }
316  else if (ip6->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS)
317  {
319  (ip6_hop_by_hop_header_t *) (ip6 + 1);
320  if ((hbh->protocol == IP_PROTOCOL_TCP)
321  || (hbh->protocol == IP_PROTOCOL_UDP))
322  {
323  is_tcp_udp = 1;
324  tcp = (tcp_header_t *) ((u8 *) hbh + ((hbh->length + 1) << 3));
325  }
326  }
327  t1 = is_tcp_udp ? clib_mem_unaligned (&tcp->src, u16) : 0;
328  t2 = is_tcp_udp ? clib_mem_unaligned (&tcp->dst, u16) : 0;
329  a = t1 ^ t2;
330  c =
331  lb_hash_hash (clib_mem_unaligned
332  (&ip6->src_address.as_uword[0], uword),
333  clib_mem_unaligned (&ip6->src_address.as_uword[1],
334  uword),
335  clib_mem_unaligned (&ip6->dst_address.as_uword[0],
336  uword),
337  clib_mem_unaligned (&ip6->dst_address.as_uword[1],
338  uword), a);
339  return c;
340  }
341 
342  return bond_lb_l2 (b0);
343 }
344 
347 {
348  bif->lb_rr_last_index++;
349  if (bif->lb_rr_last_index >= n_slaves)
350  bif->lb_rr_last_index = 0;
351 
352  return bif->lb_rr_last_index;
353 }
354 
357  u32 * h, u32 n_left, uword n_slaves, u32 lb_alg)
358 {
359  while (n_left >= 4)
360  {
361  // Prefetch next iteration
362  if (n_left >= 8)
363  {
364  vlib_buffer_t **pb = b + 4;
365 
366  vlib_prefetch_buffer_header (pb[0], LOAD);
367  vlib_prefetch_buffer_header (pb[1], LOAD);
368  vlib_prefetch_buffer_header (pb[2], LOAD);
369  vlib_prefetch_buffer_header (pb[3], LOAD);
370 
371  CLIB_PREFETCH (pb[0]->data, CLIB_CACHE_LINE_BYTES, LOAD);
372  CLIB_PREFETCH (pb[1]->data, CLIB_CACHE_LINE_BYTES, LOAD);
373  CLIB_PREFETCH (pb[2]->data, CLIB_CACHE_LINE_BYTES, LOAD);
374  CLIB_PREFETCH (pb[3]->data, CLIB_CACHE_LINE_BYTES, LOAD);
375  }
376 
381 
382  if (lb_alg == BOND_LB_L2)
383  {
384  h[0] = bond_lb_l2 (b[0]);
385  h[1] = bond_lb_l2 (b[1]);
386  h[2] = bond_lb_l2 (b[2]);
387  h[3] = bond_lb_l2 (b[3]);
388  }
389  else if (lb_alg == BOND_LB_L34)
390  {
391  h[0] = bond_lb_l34 (b[0]);
392  h[1] = bond_lb_l34 (b[1]);
393  h[2] = bond_lb_l34 (b[2]);
394  h[3] = bond_lb_l34 (b[3]);
395  }
396  else if (lb_alg == BOND_LB_L23)
397  {
398  h[0] = bond_lb_l23 (b[0]);
399  h[1] = bond_lb_l23 (b[1]);
400  h[2] = bond_lb_l23 (b[2]);
401  h[3] = bond_lb_l23 (b[3]);
402  }
403  else if (lb_alg == BOND_LB_RR)
404  {
405  h[0] = bond_lb_round_robin (bif, b[0], n_slaves);
406  h[1] = bond_lb_round_robin (bif, b[1], n_slaves);
407  h[2] = bond_lb_round_robin (bif, b[2], n_slaves);
408  h[3] = bond_lb_round_robin (bif, b[3], n_slaves);
409  }
410  else if (lb_alg == BOND_LB_BC)
411  {
412  h[0] = bond_lb_broadcast (vm, bif, b[0], n_slaves);
413  h[1] = bond_lb_broadcast (vm, bif, b[1], n_slaves);
414  h[2] = bond_lb_broadcast (vm, bif, b[2], n_slaves);
415  h[3] = bond_lb_broadcast (vm, bif, b[3], n_slaves);
416  }
417  else
418  {
419  ASSERT (0);
420  }
421 
422  n_left -= 4;
423  b += 4;
424  h += 4;
425  }
426 
427  while (n_left > 0)
428  {
430 
431  if (bif->lb == BOND_LB_L2)
432  h[0] = bond_lb_l2 (b[0]);
433  else if (bif->lb == BOND_LB_L34)
434  h[0] = bond_lb_l34 (b[0]);
435  else if (bif->lb == BOND_LB_L23)
436  h[0] = bond_lb_l23 (b[0]);
437  else if (bif->lb == BOND_LB_RR)
438  h[0] = bond_lb_round_robin (bif, b[0], n_slaves);
439  else if (bif->lb == BOND_LB_BC)
440  h[0] = bond_lb_broadcast (vm, bif, b[0], n_slaves);
441  else
442  {
443  ASSERT (0);
444  }
445 
446  n_left -= 1;
447  b += 1;
448  h += 1;
449  }
450 }
451 
453 bond_hash_to_port (u32 * h, u32 n_left, u32 n_slaves, int use_modulo_shortcut)
454 {
455  u32 mask = n_slaves - 1;
456 
457 #ifdef CLIB_HAVE_VEC256
458  /* only lower 16 bits of hash due to single precision fp arithmetic */
459  u32x8 mask8, sc8u, h8a, h8b;
460  f32x8 sc8f;
461 
462  if (use_modulo_shortcut)
463  {
464  mask8 = u32x8_splat (mask);
465  }
466  else
467  {
468  mask8 = u32x8_splat (0xffff);
469  sc8u = u32x8_splat (n_slaves);
470  sc8f = f32x8_from_u32x8 (sc8u);
471  }
472 
473  while (n_left > 16)
474  {
475  h8a = u32x8_load_unaligned (h) & mask8;
476  h8b = u32x8_load_unaligned (h + 8) & mask8;
477 
478  if (use_modulo_shortcut == 0)
479  {
480  h8a -= sc8u * u32x8_from_f32x8 (f32x8_from_u32x8 (h8a) / sc8f);
481  h8b -= sc8u * u32x8_from_f32x8 (f32x8_from_u32x8 (h8b) / sc8f);
482  }
483 
484  u32x8_store_unaligned (h8a, h);
485  u32x8_store_unaligned (h8b, h + 8);
486  n_left -= 16;
487  h += 16;
488  }
489 #endif
490 
491  while (n_left > 4)
492  {
493  if (use_modulo_shortcut)
494  {
495  h[0] &= mask;
496  h[1] &= mask;
497  h[2] &= mask;
498  h[3] &= mask;
499  }
500  else
501  {
502  h[0] %= n_slaves;
503  h[1] %= n_slaves;
504  h[2] %= n_slaves;
505  h[3] %= n_slaves;
506  }
507  n_left -= 4;
508  h += 4;
509  }
510  while (n_left)
511  {
512  if (use_modulo_shortcut)
513  h[0] &= mask;
514  else
515  h[0] %= n_slaves;
516  n_left -= 1;
517  h += 1;
518  }
519 }
520 
523  u32 * bi, vlib_buffer_t ** b, u32 * data, u32 n_left,
524  int single_sw_if_index)
525 {
526  u32 sw_if_index = data[0];
527  u32 *h = data;
528 
529  while (n_left >= 4)
530  {
531  // Prefetch next iteration
532  if (n_left >= 8)
533  {
534  vlib_buffer_t **pb = b + 4;
535  vlib_prefetch_buffer_header (pb[0], LOAD);
536  vlib_prefetch_buffer_header (pb[1], LOAD);
537  vlib_prefetch_buffer_header (pb[2], LOAD);
538  vlib_prefetch_buffer_header (pb[3], LOAD);
539  }
540 
541  if (PREDICT_FALSE (single_sw_if_index))
542  {
543  vnet_buffer (b[0])->sw_if_index[VLIB_TX] = sw_if_index;
544  vnet_buffer (b[1])->sw_if_index[VLIB_TX] = sw_if_index;
545  vnet_buffer (b[2])->sw_if_index[VLIB_TX] = sw_if_index;
546  vnet_buffer (b[3])->sw_if_index[VLIB_TX] = sw_if_index;
547 
548  bond_tx_add_to_queue (ptd, 0, bi[0]);
549  bond_tx_add_to_queue (ptd, 0, bi[1]);
550  bond_tx_add_to_queue (ptd, 0, bi[2]);
551  bond_tx_add_to_queue (ptd, 0, bi[3]);
552  }
553  else
554  {
555  u32 sw_if_index[4];
556 
557  sw_if_index[0] = *vec_elt_at_index (bif->active_slaves, h[0]);
558  sw_if_index[1] = *vec_elt_at_index (bif->active_slaves, h[1]);
559  sw_if_index[2] = *vec_elt_at_index (bif->active_slaves, h[2]);
560  sw_if_index[3] = *vec_elt_at_index (bif->active_slaves, h[3]);
561 
562  vnet_buffer (b[0])->sw_if_index[VLIB_TX] = sw_if_index[0];
563  vnet_buffer (b[1])->sw_if_index[VLIB_TX] = sw_if_index[1];
564  vnet_buffer (b[2])->sw_if_index[VLIB_TX] = sw_if_index[2];
565  vnet_buffer (b[3])->sw_if_index[VLIB_TX] = sw_if_index[3];
566 
567  bond_tx_add_to_queue (ptd, h[0], bi[0]);
568  bond_tx_add_to_queue (ptd, h[1], bi[1]);
569  bond_tx_add_to_queue (ptd, h[2], bi[2]);
570  bond_tx_add_to_queue (ptd, h[3], bi[3]);
571  }
572 
573  bi += 4;
574  h += 4;
575  b += 4;
576  n_left -= 4;
577  }
578  while (n_left)
579  {
580  if (PREDICT_FALSE (single_sw_if_index))
581  {
582  vnet_buffer (b[0])->sw_if_index[VLIB_TX] = sw_if_index;
583  bond_tx_add_to_queue (ptd, 0, bi[0]);
584  }
585  else
586  {
587  u32 sw_if_index0 = *vec_elt_at_index (bif->active_slaves, h[0]);
588 
589  vnet_buffer (b[0])->sw_if_index[VLIB_TX] = sw_if_index0;
590  bond_tx_add_to_queue (ptd, h[0], bi[0]);
591  }
592 
593  bi += 1;
594  h += 1;
595  b += 1;
596  n_left -= 1;
597  }
598 }
599 
602  vlib_buffer_t ** b, u32 n_left, u32 * h)
603 {
604  uword n_trace = vlib_get_trace_count (vm, node);
605 
606  while (n_trace > 0 && n_left > 0)
607  {
609  ethernet_header_t *eth;
610  u32 next0 = 0;
611 
612  vlib_trace_buffer (vm, node, next0, b[0], 0 /* follow_chain */ );
613  vlib_set_trace_count (vm, node, --n_trace);
614  t0 = vlib_add_trace (vm, node, b[0], sizeof (*t0));
615  eth = vlib_buffer_get_current (b[0]);
616  t0->ethernet = *eth;
617  t0->sw_if_index = vnet_buffer (b[0])->sw_if_index[VLIB_TX];
618  if (!h)
619  {
621  }
622  else
623  {
624  t0->bond_sw_if_index = *vec_elt_at_index (bif->active_slaves, h[0]);
625  h++;
626  }
627  b++;
628  n_left--;
629  }
630 }
631 
633  vlib_node_runtime_t * node,
634  vlib_frame_t * frame)
635 {
636  vnet_interface_output_runtime_t *rund = (void *) node->runtime_data;
637  bond_main_t *bm = &bond_main;
638  u16 thread_index = vm->thread_index;
639  bond_if_t *bif = pool_elt_at_index (bm->interfaces, rund->dev_instance);
640  uword n_slaves;
642  u32 *from = vlib_frame_vector_args (frame);
643  u32 n_left = frame->n_vectors;
644  u32 hashes[VLIB_FRAME_SIZE], *h;
645  vnet_main_t *vnm = vnet_get_main ();
646  bond_per_thread_data_t *ptd = vec_elt_at_index (bm->per_thread_data,
647  thread_index);
648  u32 p, sw_if_index;
649 
650  if (PREDICT_FALSE (bif->admin_up == 0))
651  {
652  vlib_buffer_free (vm, vlib_frame_vector_args (frame), frame->n_vectors);
655  thread_index, bif->sw_if_index,
656  frame->n_vectors);
657  vlib_error_count (vm, node->node_index, BOND_TX_ERROR_IF_DOWN,
658  frame->n_vectors);
659  return frame->n_vectors;
660  }
661 
662  n_slaves = vec_len (bif->active_slaves);
663  if (PREDICT_FALSE (n_slaves == 0))
664  {
665  vlib_buffer_free (vm, vlib_frame_vector_args (frame), frame->n_vectors);
668  thread_index, bif->sw_if_index,
669  frame->n_vectors);
670  vlib_error_count (vm, node->node_index, BOND_TX_ERROR_NO_SLAVE,
671  frame->n_vectors);
672  return frame->n_vectors;
673  }
674 
675  vlib_get_buffers (vm, from, bufs, n_left);
676 
677  /* active-backup mode, ship everything to first sw if index */
678  if ((bif->lb == BOND_LB_AB) || PREDICT_FALSE (n_slaves == 1))
679  {
680  sw_if_index = *vec_elt_at_index (bif->active_slaves, 0);
681 
682  bond_tx_trace (vm, node, bif, bufs, frame->n_vectors, 0);
683  bond_update_sw_if_index (ptd, bif, from, bufs, &sw_if_index, n_left,
684  /* single_sw_if_index */ 1);
685  goto done;
686  }
687 
688  if (bif->lb == BOND_LB_BC)
689  {
690  sw_if_index = *vec_elt_at_index (bif->active_slaves, 0);
691 
692  bond_tx_inline (vm, bif, bufs, hashes, n_left, n_slaves, BOND_LB_BC);
693  bond_tx_trace (vm, node, bif, bufs, frame->n_vectors, 0);
694  bond_update_sw_if_index (ptd, bif, from, bufs, &sw_if_index, n_left,
695  /* single_sw_if_index */ 1);
696  goto done;
697  }
698 
699  /* if have at least one slave on local numa node, only slaves on local numa
700  node will transmit pkts when bif->local_numa_only is enabled */
701  if (bif->n_numa_slaves >= 1)
702  n_slaves = bif->n_numa_slaves;
703 
704  if (bif->lb == BOND_LB_L2)
705  bond_tx_inline (vm, bif, bufs, hashes, n_left, n_slaves, BOND_LB_L2);
706  else if (bif->lb == BOND_LB_L34)
707  bond_tx_inline (vm, bif, bufs, hashes, n_left, n_slaves, BOND_LB_L34);
708  else if (bif->lb == BOND_LB_L23)
709  bond_tx_inline (vm, bif, bufs, hashes, n_left, n_slaves, BOND_LB_L23);
710  else if (bif->lb == BOND_LB_RR)
711  bond_tx_inline (vm, bif, bufs, hashes, n_left, n_slaves, BOND_LB_RR);
712  else
713  ASSERT (0);
714 
715  /* calculate port out of hash */
716  h = hashes;
717  if (BOND_MODULO_SHORTCUT (n_slaves))
718  bond_hash_to_port (h, frame->n_vectors, n_slaves, 1);
719  else
720  bond_hash_to_port (h, frame->n_vectors, n_slaves, 0);
721 
722  bond_tx_trace (vm, node, bif, bufs, frame->n_vectors, h);
723 
724  bond_update_sw_if_index (ptd, bif, from, bufs, hashes, frame->n_vectors,
725  /* single_sw_if_index */ 0);
726 
727 done:
728  for (p = 0; p < n_slaves; p++)
729  {
730  vlib_frame_t *f;
731  u32 *to_next;
732 
733  sw_if_index = *vec_elt_at_index (bif->active_slaves, p);
734  if (PREDICT_TRUE (ptd->per_port_queue[p].n_buffers))
735  {
736  f = vnet_get_frame_to_sw_interface (vnm, sw_if_index);
737  f->n_vectors = ptd->per_port_queue[p].n_buffers;
738  to_next = vlib_frame_vector_args (f);
739  clib_memcpy_fast (to_next, ptd->per_port_queue[p].buffers,
740  f->n_vectors * sizeof (u32));
741  vnet_put_frame_to_sw_interface (vnm, sw_if_index, f);
742  ptd->per_port_queue[p].n_buffers = 0;
743  }
744  }
745  return frame->n_vectors;
746 }
747 
748 static walk_rc_t
750  void *arg)
751 {
752  bond_main_t *bm = &bond_main;
753 
754  send_ip4_garp (bm->vlib_main, sw_if_index);
755  send_ip6_na (bm->vlib_main, sw_if_index);
756 
757  return (WALK_CONTINUE);
758 }
759 
760 static uword
762 {
763  vnet_main_t *vnm = vnet_get_main ();
764  uword event_type, *event_data = 0;
765 
766  while (1)
767  {
768  u32 i;
770 
772  event_type = vlib_process_get_events (vm, &event_data);
773  ASSERT (event_type == BOND_SEND_GARP_NA);
774  for (i = 0; i < vec_len (event_data); i++)
775  {
776  hw_if_index = event_data[i];
777  if (vnet_get_hw_interface_or_null (vnm, hw_if_index))
778  /* walk hw interface to process all subinterfaces */
779  vnet_hw_interface_walk_sw (vnm, hw_if_index,
781  }
782  vec_reset_length (event_data);
783  }
784  return 0;
785 }
786 
787 /* *INDENT-OFF* */
789  .function = bond_process,
791  .type = VLIB_NODE_TYPE_PROCESS,
792  .name = "bond-process",
793 };
794 /* *INDENT-ON* */
795 
796 /* *INDENT-OFF* */
798  .name = "bond",
799  .tx_function_n_errors = BOND_TX_N_ERROR,
800  .tx_function_error_strings = bond_tx_error_strings,
801  .format_device_name = format_bond_interface_name,
802  .set_l2_mode_function = bond_set_l2_mode_function,
803  .admin_up_down_function = bond_interface_admin_up_down,
804  .subif_add_del_function = bond_subif_add_del_function,
805  .format_tx_trace = format_bond_tx_trace,
806 };
807 
808 /* *INDENT-ON* */
809 
810 static clib_error_t *
812 {
813  bond_main_t *bm = &bond_main;
814  slave_if_t *sif;
815  bond_detach_slave_args_t args = { 0 };
816 
817  if (is_add)
818  return 0;
819  sif = bond_get_slave_by_sw_if_index (sw_if_index);
820  if (!sif)
821  return 0;
822  args.slave = sw_if_index;
823  bond_detach_slave (bm->vlib_main, &args);
824  return args.error;
825 }
826 
828 
829 /*
830  * fd.io coding-style-patch-verification: ON
831  *
832  * Local Variables:
833  * eval: (c-set-style "gnu")
834  * End:
835  */
VNET_DEVICE_CLASS_TX_FN() bond_dev_class(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
Definition: device.c:632
u32 hw_if_index
Definition: node.h:177
u32 flags
Definition: vhost_user.h:141
vlib_node_registration_t bond_process_node
(constructor) VLIB_REGISTER_NODE (bond_process_node)
Definition: device.c:788
#define CLIB_UNUSED(x)
Definition: clib.h:83
static __clib_unused clib_error_t * bond_set_l2_mode_function(vnet_main_t *vnm, struct vnet_hw_interface_t *bif_hw, i32 l2_if_adjust)
Definition: device.c:82
static u32 vlib_get_trace_count(vlib_main_t *vm, vlib_node_runtime_t *rt)
Definition: trace_funcs.h:187
a
Definition: bitmap.h:538
static void vlib_buffer_free(vlib_main_t *vm, u32 *buffers, u32 n_buffers)
Free buffers Frees the entire buffer chain for each buffer.
Definition: buffer_funcs.h:865
static uword * vlib_process_wait_for_event(vlib_main_t *vm)
Definition: node_funcs.h:593
vnet_main_t * vnet_get_main(void)
Definition: misc.c:46
static vnet_hw_interface_t * vnet_get_sup_hw_interface(vnet_main_t *vnm, u32 sw_if_index)
u8 lb
Definition: node.h:161
vnet_interface_main_t interface_main
Definition: vnet.h:56
#define PREDICT_TRUE(x)
Definition: clib.h:113
unsigned long u64
Definition: types.h:89
u32 buffers[VLIB_FRAME_SIZE]
Definition: node.h:148
static void vlib_error_count(vlib_main_t *vm, uword node_index, uword counter, uword increment)
Definition: error_funcs.h:57
#define clib_memcpy_fast(a, b, c)
Definition: string.h:81
static bond_if_t * bond_get_master_by_sw_if_index(u32 sw_if_index)
Definition: node.h:482
void vnet_hw_interface_walk_sw(vnet_main_t *vnm, u32 hw_if_index, vnet_hw_sw_interface_walk_t fn, void *ctx)
Walk the SW interfaces on a HW interface - this is the super interface and any sub-interfaces.
Definition: interface.c:1043
#define VLIB_NODE_FLAG_TRACE_SUPPORTED
Definition: node.h:306
u8 src_address[6]
Definition: packet.h:56
static vnet_hw_interface_t * vnet_get_hw_interface(vnet_main_t *vnm, u32 hw_if_index)
u32 thread_index
Definition: main.h:218
vl_api_address_t src
Definition: gre.api:51
int i
bond_main_t bond_main
Definition: node.c:25
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:424
static void vlib_increment_simple_counter(vlib_simple_counter_main_t *cm, u32 thread_index, u32 index, u64 increment)
Increment a simple counter.
Definition: counter.h:78
u8 data[128]
Definition: ipsec.api:251
static_always_inline u32 lb_hash_hash_2_tuples(u64 k0, u32 k1)
Definition: lb_hash_hash.h:54
void send_ip6_na(vlib_main_t *vm, u32 sw_if_index)
#define BOND_MODULO_SHORTCUT(a)
Definition: node.h:34
u32 id
Definition: node.h:175
struct _tcp_header tcp_header_t
ip6_address_t src_address
Definition: ip6_packet.h:383
unsigned char u8
Definition: types.h:56
bond_per_thread_data_t * per_thread_data
Definition: node.h:368
static vlib_buffer_t * vlib_buffer_copy(vlib_main_t *vm, vlib_buffer_t *b)
Definition: buffer_funcs.h:964
uword as_uword[16/sizeof(uword)]
Definition: ip6_packet.h:52
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
static void vlib_trace_buffer(vlib_main_t *vm, vlib_node_runtime_t *r, u32 next_index, vlib_buffer_t *b, int follow_chain)
Definition: trace_funcs.h:130
enum walk_rc_t_ walk_rc_t
Walk return code.
#define static_always_inline
Definition: clib.h:100
u8 * format_ethernet_address(u8 *s, va_list *args)
Definition: format.c:44
vl_api_interface_index_t sw_if_index
Definition: gre.api:50
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:516
u8 dst_address[6]
Definition: packet.h:55
#define vlib_prefetch_buffer_header(b, type)
Prefetch buffer metadata.
Definition: buffer.h:203
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
vlib_main_t * vlib_main
Definition: node.h:358
static_always_inline u32 bond_lb_l23(vlib_buffer_t *b0)
Definition: device.c:210
#define VNET_DEVICE_CLASS_TX_FN(devclass)
Definition: interface.h:298
unsigned int u32
Definition: types.h:88
u32 lb_rr_last_index
Definition: node.h:169
#define VLIB_FRAME_SIZE
Definition: node.h:378
static u32 vlib_get_buffer_index(vlib_main_t *vm, void *p)
Translate buffer pointer into buffer index.
Definition: buffer_funcs.h:257
VNET_SW_INTERFACE_ADD_DEL_FUNCTION(bond_slave_interface_add_del)
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:514
u8 admin_up
Definition: node.h:159
static_always_inline u16 * bond_locate_ethertype(ethernet_header_t *eth)
Definition: device.c:187
unsigned short u16
Definition: types.h:57
static_always_inline u32 bond_lb_l2(vlib_buffer_t *b0)
Definition: device.c:175
static void * vlib_buffer_get_current(vlib_buffer_t *b)
Get pointer to current data to process.
Definition: buffer.h:229
#define foreach_bond_tx_error
Definition: device.c:29
ip4_address_pair_t address_pair
Definition: ip4_packet.h:172
#define PREDICT_FALSE(x)
Definition: clib.h:112
vnet_main_t vnet_main
Definition: misc.c:43
u16 port
Definition: punt.api:40
vlib_simple_counter_main_t * sw_if_counters
Definition: interface.h:845
static char * bond_tx_error_strings[]
Definition: device.c:42
vl_api_address_t dst
Definition: gre.api:52
bond_if_t * interfaces
Definition: node.h:346
void bond_detach_slave(vlib_main_t *vm, bond_detach_slave_args_t *args)
Definition: cli.c:774
void send_ip4_garp(vlib_main_t *vm, u32 sw_if_index)
Definition: arp.c:3011
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:169
u32 * slaves
Definition: node.h:181
svmdb_client_t * c
u16 n_vectors
Definition: node.h:397
static void vnet_put_frame_to_sw_interface(vnet_main_t *vnm, u32 sw_if_index, vlib_frame_t *f)
#define CLIB_PREFETCH(addr, size, type)
Definition: cache.h:80
vlib_main_t * vm
Definition: buffer.c:323
ethernet_header_t ethernet
Definition: node.h:376
#define ETHERNET_INTERFACE_FLAG_ACCEPT_ALL
Definition: ethernet.h:141
static_always_inline u32 bond_lb_broadcast(vlib_main_t *vm, bond_if_t *bif, vlib_buffer_t *b0, uword n_slaves)
Definition: device.c:149
static u8 * format_bond_tx_trace(u8 *s, va_list *args)
Definition: device.c:49
signed int i32
Definition: types.h:77
static_always_inline u32 bond_lb_l34(vlib_buffer_t *b0)
Definition: device.c:270
#define ASSERT(truth)
static_always_inline void bond_hash_to_port(u32 *h, u32 n_left, u32 n_slaves, int use_modulo_shortcut)
Definition: device.c:453
static walk_rc_t bond_active_interface_switch_cb(vnet_main_t *vnm, u32 sw_if_index, void *arg)
Definition: device.c:749
static_always_inline int ethernet_frame_is_tagged(u16 type)
Definition: ethernet.h:78
VNET_DEVICE_CLASS(bond_dev_class)
static_always_inline void bond_tx_trace(vlib_main_t *vm, vlib_node_runtime_t *node, bond_if_t *bif, vlib_buffer_t **b, u32 n_left, u32 *h)
Definition: device.c:601
u32 * active_slaves
Definition: node.h:184
#define clib_mem_unaligned(pointer, type)
Definition: types.h:155
static vlib_frame_t * vnet_get_frame_to_sw_interface(vnet_main_t *vnm, u32 sw_if_index)
static_always_inline void bond_tx_add_to_queue(bond_per_thread_data_t *ptd, u32 port, u32 bi)
Definition: device.c:142
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
clib_error_t * error
Definition: node.h:111
static_always_inline u32x8 u32x8_from_f32x8(f32x8 v)
Definition: vector_avx2.h:196
Definition: defs.h:47
u8 * format_bond_interface_name(u8 *s, va_list *args)
Definition: device.c:69
static_always_inline void bond_update_sw_if_index(bond_per_thread_data_t *ptd, bond_if_t *bif, u32 *bi, vlib_buffer_t **b, u32 *data, u32 n_left, int single_sw_if_index)
Definition: device.c:522
bond_tx_error_t
Definition: device.c:34
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
clib_error_t * vnet_hw_interface_set_flags(vnet_main_t *vnm, u32 hw_if_index, vnet_hw_interface_flags_t flags)
Definition: interface.c:492
#define VLIB_BUFFER_TRACE_TRAJECTORY_INIT(b)
Definition: buffer.h:489
VLIB buffer representation.
Definition: buffer.h:102
u64 uword
Definition: types.h:112
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
Definition: node_funcs.h:244
static clib_error_t * bond_slave_interface_add_del(vnet_main_t *vnm, u32 sw_if_index, u32 is_add)
Definition: device.c:811
#define vnet_buffer(b)
Definition: buffer.h:365
static vnet_hw_interface_t * vnet_get_hw_interface_or_null(vnet_main_t *vnm, u32 hw_if_index)
static __clib_unused clib_error_t * bond_subif_add_del_function(vnet_main_t *vnm, u32 hw_if_index, struct vnet_sw_interface_t *st, int is_add)
Definition: device.c:119
#define vec_foreach(var, vec)
Vector iterator.
static_always_inline u32 lb_hash_hash(u64 k0, u64 k1, u64 k2, u64 k3, u64 k4)
Definition: lb_hash_hash.h:46
u8 ip_version_and_header_length
Definition: ip4_packet.h:138
static slave_if_t * bond_get_slave_by_sw_if_index(u32 sw_if_index)
Definition: node.h:504
static void vlib_set_trace_count(vlib_main_t *vm, vlib_node_runtime_t *rt, u32 count)
Definition: trace_funcs.h:203
static_always_inline void vlib_get_buffers(vlib_main_t *vm, u32 *bi, vlib_buffer_t **b, int count)
Translate array of buffer indices into buffer pointers.
Definition: buffer_funcs.h:244
u32 bond_sw_if_index
Definition: node.h:378
static_always_inline u32 bond_lb_round_robin(bond_if_t *bif, vlib_buffer_t *b0, uword n_slaves)
Definition: device.c:346
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:59
static clib_error_t * bond_interface_admin_up_down(vnet_main_t *vnm, u32 hw_if_index, u32 flags)
Definition: device.c:127
static_always_inline f32x8 f32x8_from_u32x8(u32x8 v)
Definition: vector_avx2.h:190
ip6_address_t dst_address
Definition: ip6_packet.h:383
bond_per_port_queue_t * per_port_queue
Definition: node.h:154
static_always_inline void bond_tx_inline(vlib_main_t *vm, bond_if_t *bif, vlib_buffer_t **b, u32 *h, u32 n_left, uword n_slaves, u32 lb_alg)
Definition: device.c:356
u32 ethernet_set_flags(vnet_main_t *vnm, u32 hw_if_index, u32 flags)
Definition: interface.c:372
static uword bond_process(vlib_main_t *vm, vlib_node_runtime_t *rt, vlib_frame_t *f)
Definition: device.c:761