blob: 79ca2faf164b037bc0a2d91a637a8b140f669a17 [file] [log] [blame]
Steven9cd2d7a2017-12-20 12:43:01 -08001/*
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>
23#include <vnet/ip/ip6_hop_by_hop_packet.h>
24#include <vnet/bonding/node.h>
Steven0d883012018-05-11 11:06:23 -070025#include <vppinfra/lb_hash_hash.h>
Steven9f781d82018-06-05 11:09:32 -070026#include <vnet/ip/ip.h>
27#include <vnet/ethernet/arp_packet.h>
Steven9cd2d7a2017-12-20 12:43:01 -080028
29#define foreach_bond_tx_error \
30 _(NONE, "no error") \
31 _(IF_DOWN, "interface down") \
32 _(NO_SLAVE, "no slave")
33
34typedef enum
35{
36#define _(f,s) BOND_TX_ERROR_##f,
37 foreach_bond_tx_error
38#undef _
39 BOND_TX_N_ERROR,
40} bond_tx_error_t;
41
42static char *bond_tx_error_strings[] = {
43#define _(n,s) s,
44 foreach_bond_tx_error
45#undef _
46};
47
48static u8 *
49format_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
57 hw = vnet_get_sup_hw_interface (vnm, t->sw_if_index);
58 hw1 = vnet_get_sup_hw_interface (vnm, t->bond_sw_if_index);
59 s = format (s, "src %U, dst %U, %s -> %s",
60 format_ethernet_address, t->ethernet.src_address,
61 format_ethernet_address, t->ethernet.dst_address,
62 hw->name, hw1->name);
63
64 return s;
65}
66
Damjan Marioncefe1342018-09-21 18:11:33 +020067#ifndef CLIB_MARCH_VARIANT
Steven9cd2d7a2017-12-20 12:43:01 -080068u8 *
69format_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->dev_instance);
76
77 return s;
78}
Damjan Marioncefe1342018-09-21 18:11:33 +020079#endif
Steven9cd2d7a2017-12-20 12:43:01 -080080
81static __clib_unused clib_error_t *
Steven4f8863b2018-04-12 19:36:19 -070082bond_set_l2_mode_function (vnet_main_t * vnm,
83 struct vnet_hw_interface_t *bif_hw,
84 i32 l2_if_adjust)
85{
86 bond_if_t *bif;
87 u32 *sw_if_index;
88 struct vnet_hw_interface_t *sif_hw;
89
90 bif = bond_get_master_by_sw_if_index (bif_hw->sw_if_index);
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,
101 ETHERNET_INTERFACE_FLAG_ACCEPT_ALL);
102
103 /* ensure all packets go to ethernet-input */
104 ethernet_set_rx_redirect (vnm, sif_hw, 1);
105 }
106 }
Steven4f8863b2018-04-12 19:36:19 -0700107
108 return 0;
109}
110
111static __clib_unused clib_error_t *
Steven9cd2d7a2017-12-20 12:43:01 -0800112bond_subif_add_del_function (vnet_main_t * vnm, u32 hw_if_index,
113 struct vnet_sw_interface_t *st, int is_add)
114{
115 /* Nothing for now */
116 return 0;
117}
118
119static clib_error_t *
120bond_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
121{
122 vnet_hw_interface_t *hif = vnet_get_hw_interface (vnm, hw_if_index);
123 uword is_up = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) != 0;
124 bond_main_t *bm = &bond_main;
125 bond_if_t *bif = pool_elt_at_index (bm->interfaces, hif->dev_instance);
126
127 bif->admin_up = is_up;
128 if (is_up && vec_len (bif->active_slaves))
129 vnet_hw_interface_set_flags (vnm, bif->hw_if_index,
130 VNET_HW_INTERFACE_FLAG_LINK_UP);
131 return 0;
132}
133
Steven0d883012018-05-11 11:06:23 -0700134static_always_inline u32
Steven9cd2d7a2017-12-20 12:43:01 -0800135bond_load_balance_broadcast (vlib_main_t * vm, vlib_node_runtime_t * node,
Steven18c0f222018-03-26 21:52:11 -0700136 bond_if_t * bif, vlib_buffer_t * b0,
137 uword slave_count)
Steven9cd2d7a2017-12-20 12:43:01 -0800138{
Stevenc4e99c52018-09-27 20:06:26 -0700139 bond_main_t *bm = &bond_main;
Steven9cd2d7a2017-12-20 12:43:01 -0800140 vlib_buffer_t *c0;
Steven22b5be02018-04-11 15:32:15 -0700141 int port;
Steven9cd2d7a2017-12-20 12:43:01 -0800142 u32 sw_if_index;
Damjan Marion067cd622018-07-11 12:47:43 +0200143 u16 thread_index = vm->thread_index;
Stevenc4e99c52018-09-27 20:06:26 -0700144 bond_per_thread_data_t *ptd = vec_elt_at_index (bm->per_thread_data,
145 thread_index);
Steven9cd2d7a2017-12-20 12:43:01 -0800146
Steven22b5be02018-04-11 15:32:15 -0700147 for (port = 1; port < slave_count; port++)
Steven9cd2d7a2017-12-20 12:43:01 -0800148 {
Steven22b5be02018-04-11 15:32:15 -0700149 sw_if_index = *vec_elt_at_index (bif->active_slaves, port);
Steven9cd2d7a2017-12-20 12:43:01 -0800150 c0 = vlib_buffer_copy (vm, b0);
151 if (PREDICT_TRUE (c0 != 0))
152 {
153 vnet_buffer (c0)->sw_if_index[VLIB_TX] = sw_if_index;
Stevenc4e99c52018-09-27 20:06:26 -0700154 ptd->per_port_queue[sw_if_index].buffers[ptd->per_port_queue
155 [sw_if_index].n_buffers] =
156 vlib_get_buffer_index (vm, c0);
157 ptd->per_port_queue[sw_if_index].n_buffers++;
Steven9cd2d7a2017-12-20 12:43:01 -0800158 }
159 }
160
161 return 0;
162}
163
Steven0d883012018-05-11 11:06:23 -0700164static_always_inline u32
Steven9cd2d7a2017-12-20 12:43:01 -0800165bond_load_balance_l2 (vlib_main_t * vm, vlib_node_runtime_t * node,
Steven18c0f222018-03-26 21:52:11 -0700166 bond_if_t * bif, vlib_buffer_t * b0, uword slave_count)
Steven9cd2d7a2017-12-20 12:43:01 -0800167{
168 ethernet_header_t *eth = (ethernet_header_t *) vlib_buffer_get_current (b0);
Steven0d883012018-05-11 11:06:23 -0700169 u32 c;
170 u64 *dst = (u64 *) & eth->dst_address[0];
171 u64 a = clib_mem_unaligned (dst, u64);
172 u32 *src = (u32 *) & eth->src_address[2];
173 u32 b = clib_mem_unaligned (src, u32);
Steven9cd2d7a2017-12-20 12:43:01 -0800174
Steven0d883012018-05-11 11:06:23 -0700175 c = lb_hash_hash_2_tuples (a, b);
Steven9cd2d7a2017-12-20 12:43:01 -0800176
Steven0d883012018-05-11 11:06:23 -0700177 if (BOND_MODULO_SHORTCUT (slave_count))
178 return (c & (slave_count - 1));
179 else
180 return c % slave_count;
Steven9cd2d7a2017-12-20 12:43:01 -0800181}
182
Steven0d883012018-05-11 11:06:23 -0700183static_always_inline u16 *
Steven9cd2d7a2017-12-20 12:43:01 -0800184bond_locate_ethertype (ethernet_header_t * eth)
185{
186 u16 *ethertype_p;
187 ethernet_vlan_header_t *vlan;
188
189 if (!ethernet_frame_is_tagged (clib_net_to_host_u16 (eth->type)))
190 {
191 ethertype_p = &eth->type;
192 }
193 else
194 {
195 vlan = (void *) (eth + 1);
196 ethertype_p = &vlan->type;
197 if (*ethertype_p == ntohs (ETHERNET_TYPE_VLAN))
198 {
199 vlan++;
200 ethertype_p = &vlan->type;
201 }
202 }
203 return ethertype_p;
204}
205
Steven0d883012018-05-11 11:06:23 -0700206static_always_inline u32
Steven9cd2d7a2017-12-20 12:43:01 -0800207bond_load_balance_l23 (vlib_main_t * vm, vlib_node_runtime_t * node,
Steven18c0f222018-03-26 21:52:11 -0700208 bond_if_t * bif, vlib_buffer_t * b0, uword slave_count)
Steven9cd2d7a2017-12-20 12:43:01 -0800209{
210 ethernet_header_t *eth = (ethernet_header_t *) vlib_buffer_get_current (b0);
211 u8 ip_version;
212 ip4_header_t *ip4;
213 u16 ethertype, *ethertype_p;
Steven0d883012018-05-11 11:06:23 -0700214 u32 *mac1, *mac2, *mac3;
Steven9cd2d7a2017-12-20 12:43:01 -0800215
216 ethertype_p = bond_locate_ethertype (eth);
Steven0d883012018-05-11 11:06:23 -0700217 ethertype = clib_mem_unaligned (ethertype_p, u16);
Steven9cd2d7a2017-12-20 12:43:01 -0800218
219 if ((ethertype != htons (ETHERNET_TYPE_IP4)) &&
220 (ethertype != htons (ETHERNET_TYPE_IP6)))
Steven18c0f222018-03-26 21:52:11 -0700221 return (bond_load_balance_l2 (vm, node, bif, b0, slave_count));
Steven9cd2d7a2017-12-20 12:43:01 -0800222
223 ip4 = (ip4_header_t *) (ethertype_p + 1);
224 ip_version = (ip4->ip_version_and_header_length >> 4);
225
226 if (ip_version == 0x4)
227 {
Steven0d883012018-05-11 11:06:23 -0700228 u32 a, c;
Steven9cd2d7a2017-12-20 12:43:01 -0800229
Steven0d883012018-05-11 11:06:23 -0700230 mac1 = (u32 *) & eth->dst_address[0];
231 mac2 = (u32 *) & eth->dst_address[4];
232 mac3 = (u32 *) & eth->src_address[2];
Steven9cd2d7a2017-12-20 12:43:01 -0800233
Steven0d883012018-05-11 11:06:23 -0700234 a = clib_mem_unaligned (mac1, u32) ^ clib_mem_unaligned (mac2, u32) ^
235 clib_mem_unaligned (mac3, u32);
236 c =
237 lb_hash_hash_2_tuples (clib_mem_unaligned (&ip4->address_pair, u64),
238 a);
239 if (BOND_MODULO_SHORTCUT (slave_count))
240 return (c & (slave_count - 1));
241 else
242 return c % slave_count;
Steven9cd2d7a2017-12-20 12:43:01 -0800243 }
244 else if (ip_version == 0x6)
245 {
Steven0d883012018-05-11 11:06:23 -0700246 u64 a;
247 u32 c;
Steven9cd2d7a2017-12-20 12:43:01 -0800248 ip6_header_t *ip6 = (ip6_header_t *) (eth + 1);
249
Steven0d883012018-05-11 11:06:23 -0700250 mac1 = (u32 *) & eth->dst_address[0];
251 mac2 = (u32 *) & eth->dst_address[4];
252 mac3 = (u32 *) & eth->src_address[2];
Steven9cd2d7a2017-12-20 12:43:01 -0800253
Steven0d883012018-05-11 11:06:23 -0700254 a = clib_mem_unaligned (mac1, u32) ^ clib_mem_unaligned (mac2, u32) ^
255 clib_mem_unaligned (mac3, u32);
256 c =
257 lb_hash_hash (clib_mem_unaligned
258 (&ip6->src_address.as_uword[0], uword),
259 clib_mem_unaligned (&ip6->src_address.as_uword[1],
260 uword),
261 clib_mem_unaligned (&ip6->dst_address.as_uword[0],
262 uword),
263 clib_mem_unaligned (&ip6->dst_address.as_uword[1],
264 uword), a);
265 if (BOND_MODULO_SHORTCUT (slave_count))
266 return (c & (slave_count - 1));
267 else
268 return c % slave_count;
Steven9cd2d7a2017-12-20 12:43:01 -0800269 }
Steven18c0f222018-03-26 21:52:11 -0700270 return (bond_load_balance_l2 (vm, node, bif, b0, slave_count));
Steven9cd2d7a2017-12-20 12:43:01 -0800271}
272
Steven0d883012018-05-11 11:06:23 -0700273static_always_inline u32
Steven9cd2d7a2017-12-20 12:43:01 -0800274bond_load_balance_l34 (vlib_main_t * vm, vlib_node_runtime_t * node,
Steven18c0f222018-03-26 21:52:11 -0700275 bond_if_t * bif, vlib_buffer_t * b0, uword slave_count)
Steven9cd2d7a2017-12-20 12:43:01 -0800276{
277 ethernet_header_t *eth = (ethernet_header_t *) vlib_buffer_get_current (b0);
278 u8 ip_version;
Steven0d883012018-05-11 11:06:23 -0700279 uword is_tcp_udp;
Steven9cd2d7a2017-12-20 12:43:01 -0800280 ip4_header_t *ip4;
281 u16 ethertype, *ethertype_p;
282
283 ethertype_p = bond_locate_ethertype (eth);
Steven0d883012018-05-11 11:06:23 -0700284 ethertype = clib_mem_unaligned (ethertype_p, u16);
Steven9cd2d7a2017-12-20 12:43:01 -0800285
286 if ((ethertype != htons (ETHERNET_TYPE_IP4)) &&
287 (ethertype != htons (ETHERNET_TYPE_IP6)))
Steven18c0f222018-03-26 21:52:11 -0700288 return (bond_load_balance_l2 (vm, node, bif, b0, slave_count));
Steven9cd2d7a2017-12-20 12:43:01 -0800289
290 ip4 = (ip4_header_t *) (ethertype_p + 1);
291 ip_version = (ip4->ip_version_and_header_length >> 4);
292
293 if (ip_version == 0x4)
294 {
Steven0d883012018-05-11 11:06:23 -0700295 u32 a, c, t1, t2;
Steven9cd2d7a2017-12-20 12:43:01 -0800296 tcp_header_t *tcp = (void *) (ip4 + 1);
Steven0d883012018-05-11 11:06:23 -0700297
Steven9cd2d7a2017-12-20 12:43:01 -0800298 is_tcp_udp = (ip4->protocol == IP_PROTOCOL_TCP) ||
299 (ip4->protocol == IP_PROTOCOL_UDP);
Steven0d883012018-05-11 11:06:23 -0700300 t1 = is_tcp_udp ? clib_mem_unaligned (&tcp->src, u16) : 0;
301 t2 = is_tcp_udp ? clib_mem_unaligned (&tcp->dst, u16) : 0;
302 a = t1 ^ t2;
303 c =
304 lb_hash_hash_2_tuples (clib_mem_unaligned (&ip4->address_pair, u64),
305 a);
306 if (BOND_MODULO_SHORTCUT (slave_count))
307 return (c & (slave_count - 1));
308 else
309 return c % slave_count;
Steven9cd2d7a2017-12-20 12:43:01 -0800310 }
311 else if (ip_version == 0x6)
312 {
Steven0d883012018-05-11 11:06:23 -0700313 u64 a;
314 u32 c, t1, t2;
Steven9cd2d7a2017-12-20 12:43:01 -0800315 ip6_header_t *ip6 = (ip6_header_t *) (eth + 1);
316 tcp_header_t *tcp = (void *) (ip6 + 1);
317
Steven0d883012018-05-11 11:06:23 -0700318 is_tcp_udp = 0;
Steven9cd2d7a2017-12-20 12:43:01 -0800319 if (PREDICT_TRUE ((ip6->protocol == IP_PROTOCOL_TCP) ||
320 (ip6->protocol == IP_PROTOCOL_UDP)))
321 {
322 is_tcp_udp = 1;
323 tcp = (void *) (ip6 + 1);
324 }
325 else if (ip6->protocol == IP_PROTOCOL_IP6_HOP_BY_HOP_OPTIONS)
326 {
327 ip6_hop_by_hop_header_t *hbh =
328 (ip6_hop_by_hop_header_t *) (ip6 + 1);
329 if ((hbh->protocol == IP_PROTOCOL_TCP)
330 || (hbh->protocol == IP_PROTOCOL_UDP))
331 {
332 is_tcp_udp = 1;
333 tcp = (tcp_header_t *) ((u8 *) hbh + ((hbh->length + 1) << 3));
334 }
335 }
Steven0d883012018-05-11 11:06:23 -0700336 t1 = is_tcp_udp ? clib_mem_unaligned (&tcp->src, u16) : 0;
337 t2 = is_tcp_udp ? clib_mem_unaligned (&tcp->dst, u16) : 0;
338 a = t1 ^ t2;
339 c =
340 lb_hash_hash (clib_mem_unaligned
341 (&ip6->src_address.as_uword[0], uword),
342 clib_mem_unaligned (&ip6->src_address.as_uword[1],
343 uword),
344 clib_mem_unaligned (&ip6->dst_address.as_uword[0],
345 uword),
346 clib_mem_unaligned (&ip6->dst_address.as_uword[1],
347 uword), a);
348 if (BOND_MODULO_SHORTCUT (slave_count))
349 return (c & (slave_count - 1));
350 else
351 return c % slave_count;
Steven9cd2d7a2017-12-20 12:43:01 -0800352 }
353
Steven18c0f222018-03-26 21:52:11 -0700354 return (bond_load_balance_l2 (vm, node, bif, b0, slave_count));
Steven9cd2d7a2017-12-20 12:43:01 -0800355}
356
Steven0d883012018-05-11 11:06:23 -0700357static_always_inline u32
Steven9cd2d7a2017-12-20 12:43:01 -0800358bond_load_balance_round_robin (vlib_main_t * vm,
359 vlib_node_runtime_t * node,
Steven18c0f222018-03-26 21:52:11 -0700360 bond_if_t * bif, vlib_buffer_t * b0,
361 uword slave_count)
Steven9cd2d7a2017-12-20 12:43:01 -0800362{
363 bif->lb_rr_last_index++;
Steven0d883012018-05-11 11:06:23 -0700364 if (BOND_MODULO_SHORTCUT (slave_count))
365 bif->lb_rr_last_index &= slave_count - 1;
366 else
367 bif->lb_rr_last_index %= slave_count;
Steven9cd2d7a2017-12-20 12:43:01 -0800368
369 return bif->lb_rr_last_index;
370}
371
Steven0d883012018-05-11 11:06:23 -0700372static_always_inline u32
Steven9cd2d7a2017-12-20 12:43:01 -0800373bond_load_balance_active_backup (vlib_main_t * vm,
374 vlib_node_runtime_t * node,
Steven18c0f222018-03-26 21:52:11 -0700375 bond_if_t * bif, vlib_buffer_t * b0,
376 uword slave_count)
Steven9cd2d7a2017-12-20 12:43:01 -0800377{
378 /* First interface is the active, the rest is backup */
379 return 0;
380}
381
382static bond_load_balance_func_t bond_load_balance_table[] = {
383#define _(v,f,s, p) { bond_load_balance_##p },
384 foreach_bond_lb_algo
385#undef _
386};
387
Damjan Marioncefe1342018-09-21 18:11:33 +0200388VNET_DEVICE_CLASS_TX_FN (bond_dev_class) (vlib_main_t * vm,
389 vlib_node_runtime_t * node,
390 vlib_frame_t * frame)
Steven9cd2d7a2017-12-20 12:43:01 -0800391{
392 vnet_interface_output_runtime_t *rund = (void *) node->runtime_data;
393 bond_main_t *bm = &bond_main;
394 bond_if_t *bif = pool_elt_at_index (bm->interfaces, rund->dev_instance);
Damjan Marioncefe1342018-09-21 18:11:33 +0200395 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
Steven9cd2d7a2017-12-20 12:43:01 -0800396 u32 *from = vlib_frame_vector_args (frame);
Steven9cd2d7a2017-12-20 12:43:01 -0800397 ethernet_header_t *eth;
Stevenc4e99c52018-09-27 20:06:26 -0700398 u32 n_left;
399 u32 sw_if_index;
Steven9cd2d7a2017-12-20 12:43:01 -0800400 bond_packet_trace_t *t0;
401 uword n_trace = vlib_get_trace_count (vm, node);
Damjan Marion067cd622018-07-11 12:47:43 +0200402 u16 thread_index = vm->thread_index;
Steven9cd2d7a2017-12-20 12:43:01 -0800403 vnet_main_t *vnm = vnet_get_main ();
Stevena005e7f2018-03-22 17:46:58 -0700404 u32 *to_next;
Stevena005e7f2018-03-22 17:46:58 -0700405 vlib_frame_t *f;
Steven18c0f222018-03-26 21:52:11 -0700406 uword slave_count;
Stevenc4e99c52018-09-27 20:06:26 -0700407 u32 port0 = 0, port1 = 0, port2 = 0, port3 = 0;
408 bond_per_thread_data_t *ptd = vec_elt_at_index (bm->per_thread_data,
409 thread_index);
Steven9cd2d7a2017-12-20 12:43:01 -0800410
411 if (PREDICT_FALSE (bif->admin_up == 0))
412 {
413 vlib_buffer_free (vm, vlib_frame_args (frame), frame->n_vectors);
414 vlib_increment_simple_counter (vnet_main.interface_main.sw_if_counters +
415 VNET_INTERFACE_COUNTER_DROP,
416 thread_index, bif->sw_if_index,
417 frame->n_vectors);
418 vlib_error_count (vm, node->node_index, BOND_TX_ERROR_IF_DOWN,
419 frame->n_vectors);
420 return frame->n_vectors;
421 }
422
Damjan Marioncefe1342018-09-21 18:11:33 +0200423 n_left = frame->n_vectors;
424 vlib_get_buffers (vm, from, bufs, n_left);
425
Steven18c0f222018-03-26 21:52:11 -0700426 slave_count = vec_len (bif->active_slaves);
427 if (PREDICT_FALSE (slave_count == 0))
Steven9cd2d7a2017-12-20 12:43:01 -0800428 {
Steven9cd2d7a2017-12-20 12:43:01 -0800429 vlib_buffer_free (vm, vlib_frame_args (frame), frame->n_vectors);
430 vlib_increment_simple_counter (vnet_main.interface_main.sw_if_counters +
431 VNET_INTERFACE_COUNTER_DROP,
432 thread_index, bif->sw_if_index,
433 frame->n_vectors);
434 vlib_error_count (vm, node->node_index, BOND_TX_ERROR_NO_SLAVE,
435 frame->n_vectors);
436 return frame->n_vectors;
437 }
438
Damjan Marioncefe1342018-09-21 18:11:33 +0200439 b = bufs;
440 while (n_left >= 4)
Steven9cd2d7a2017-12-20 12:43:01 -0800441 {
Stevenc4e99c52018-09-27 20:06:26 -0700442 u32 sif_if_index0, sif_if_index1, sif_if_index2, sif_if_index3;
Damjan Marioncefe1342018-09-21 18:11:33 +0200443
444 // Prefetch next iteration
445 if (n_left >= 8)
Steven9cd2d7a2017-12-20 12:43:01 -0800446 {
Damjan Marioncefe1342018-09-21 18:11:33 +0200447 vlib_buffer_t **pb = b + 4;
Steven0d883012018-05-11 11:06:23 -0700448
Damjan Marioncefe1342018-09-21 18:11:33 +0200449 vlib_prefetch_buffer_header (pb[0], LOAD);
450 vlib_prefetch_buffer_header (pb[1], LOAD);
451 vlib_prefetch_buffer_header (pb[2], LOAD);
452 vlib_prefetch_buffer_header (pb[3], LOAD);
453
454 CLIB_PREFETCH (pb[0]->data, CLIB_CACHE_LINE_BYTES, LOAD);
455 CLIB_PREFETCH (pb[1]->data, CLIB_CACHE_LINE_BYTES, LOAD);
456 CLIB_PREFETCH (pb[2]->data, CLIB_CACHE_LINE_BYTES, LOAD);
457 CLIB_PREFETCH (pb[3]->data, CLIB_CACHE_LINE_BYTES, LOAD);
458 }
459
460 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b[0]);
461 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b[1]);
462 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b[2]);
463 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b[3]);
464
Damjan Marioncefe1342018-09-21 18:11:33 +0200465 if (PREDICT_TRUE (slave_count > 1))
466 {
467 port0 =
468 (bond_load_balance_table[bif->lb]).load_balance (vm, node,
469 bif, b[0],
470 slave_count);
471 port1 =
472 (bond_load_balance_table[bif->lb]).load_balance (vm, node,
473 bif, b[1],
474 slave_count);
475 port2 =
476 (bond_load_balance_table[bif->lb]).load_balance (vm, node,
477 bif, b[2],
478 slave_count);
479 port3 =
480 (bond_load_balance_table[bif->lb]).load_balance (vm, node,
481 bif, b[3],
482 slave_count);
483 }
484
Stevenc4e99c52018-09-27 20:06:26 -0700485 sif_if_index0 = *vec_elt_at_index (bif->active_slaves, port0);
Damjan Marioncefe1342018-09-21 18:11:33 +0200486 sif_if_index1 = *vec_elt_at_index (bif->active_slaves, port1);
487 sif_if_index2 = *vec_elt_at_index (bif->active_slaves, port2);
488 sif_if_index3 = *vec_elt_at_index (bif->active_slaves, port3);
489
Stevenc4e99c52018-09-27 20:06:26 -0700490 /* Do the tracing before the interface is overwritten */
Damjan Marioncefe1342018-09-21 18:11:33 +0200491 if (PREDICT_FALSE (n_trace > 0))
492 {
Stevenc4e99c52018-09-27 20:06:26 -0700493 u32 next0 = 0, next1 = 0, next2 = 0, next3 = 0;
Damjan Marioncefe1342018-09-21 18:11:33 +0200494 vlib_trace_buffer (vm, node, next0, b[0], 0 /* follow_chain */ );
495 vlib_set_trace_count (vm, node, --n_trace);
496 t0 = vlib_add_trace (vm, node, b[0], sizeof (*t0));
497 eth = (ethernet_header_t *) vlib_buffer_get_current (b[0]);
498 t0->ethernet = *eth;
Stevenc4e99c52018-09-27 20:06:26 -0700499 t0->sw_if_index = vnet_buffer (b[0])->sw_if_index[VLIB_TX];
500 t0->bond_sw_if_index = sif_if_index0;
Damjan Marioncefe1342018-09-21 18:11:33 +0200501
502 if (PREDICT_TRUE (n_trace > 0))
Steven9cd2d7a2017-12-20 12:43:01 -0800503 {
Damjan Marioncefe1342018-09-21 18:11:33 +0200504 vlib_trace_buffer (vm, node, next1, b[1],
505 0 /* follow_chain */ );
Steven9cd2d7a2017-12-20 12:43:01 -0800506 vlib_set_trace_count (vm, node, --n_trace);
Damjan Marioncefe1342018-09-21 18:11:33 +0200507 t0 = vlib_add_trace (vm, node, b[1], sizeof (*t0));
508 eth = (ethernet_header_t *) vlib_buffer_get_current (b[1]);
Steven9cd2d7a2017-12-20 12:43:01 -0800509 t0->ethernet = *eth;
Stevenc4e99c52018-09-27 20:06:26 -0700510 t0->sw_if_index = vnet_buffer (b[1])->sw_if_index[VLIB_TX];
511 t0->bond_sw_if_index = sif_if_index1;
Steven9cd2d7a2017-12-20 12:43:01 -0800512
513 if (PREDICT_TRUE (n_trace > 0))
514 {
Damjan Marioncefe1342018-09-21 18:11:33 +0200515 vlib_trace_buffer (vm, node, next2, b[2],
Steven9cd2d7a2017-12-20 12:43:01 -0800516 0 /* follow_chain */ );
517 vlib_set_trace_count (vm, node, --n_trace);
Damjan Marioncefe1342018-09-21 18:11:33 +0200518 t0 = vlib_add_trace (vm, node, b[2], sizeof (*t0));
519 eth = (ethernet_header_t *) vlib_buffer_get_current (b[2]);
Steven9cd2d7a2017-12-20 12:43:01 -0800520 t0->ethernet = *eth;
Stevenc4e99c52018-09-27 20:06:26 -0700521 t0->sw_if_index = vnet_buffer (b[2])->sw_if_index[VLIB_TX];
522 t0->bond_sw_if_index = sif_if_index2;
Steven9cd2d7a2017-12-20 12:43:01 -0800523
524 if (PREDICT_TRUE (n_trace > 0))
525 {
Damjan Marioncefe1342018-09-21 18:11:33 +0200526 vlib_trace_buffer (vm, node, next3, b[3],
Steven9cd2d7a2017-12-20 12:43:01 -0800527 0 /* follow_chain */ );
528 vlib_set_trace_count (vm, node, --n_trace);
Damjan Marioncefe1342018-09-21 18:11:33 +0200529 t0 = vlib_add_trace (vm, node, b[3], sizeof (*t0));
Steven9cd2d7a2017-12-20 12:43:01 -0800530 eth =
Damjan Marioncefe1342018-09-21 18:11:33 +0200531 (ethernet_header_t *) vlib_buffer_get_current (b[3]);
Steven9cd2d7a2017-12-20 12:43:01 -0800532 t0->ethernet = *eth;
Stevenc4e99c52018-09-27 20:06:26 -0700533 t0->sw_if_index =
Damjan Marioncefe1342018-09-21 18:11:33 +0200534 vnet_buffer (b[3])->sw_if_index[VLIB_TX];
Stevenc4e99c52018-09-27 20:06:26 -0700535 t0->bond_sw_if_index = sif_if_index3;
Steven9cd2d7a2017-12-20 12:43:01 -0800536 }
537 }
538 }
539 }
Stevenc4e99c52018-09-27 20:06:26 -0700540
541 vnet_buffer (b[0])->sw_if_index[VLIB_TX] = sif_if_index0;
542 vnet_buffer (b[1])->sw_if_index[VLIB_TX] = sif_if_index1;
543 vnet_buffer (b[2])->sw_if_index[VLIB_TX] = sif_if_index2;
544 vnet_buffer (b[3])->sw_if_index[VLIB_TX] = sif_if_index3;
545
546 ptd->per_port_queue[sif_if_index0].buffers[ptd->per_port_queue
547 [sif_if_index0].n_buffers] =
548 vlib_get_buffer_index (vm, b[0]);
549 ptd->per_port_queue[sif_if_index0].n_buffers++;
550
551 ptd->per_port_queue[sif_if_index1].buffers[ptd->per_port_queue
552 [sif_if_index1].n_buffers] =
553 vlib_get_buffer_index (vm, b[1]);
554 ptd->per_port_queue[sif_if_index1].n_buffers++;
555
556 ptd->per_port_queue[sif_if_index2].buffers[ptd->per_port_queue
557 [sif_if_index2].n_buffers] =
558 vlib_get_buffer_index (vm, b[2]);
559 ptd->per_port_queue[sif_if_index2].n_buffers++;
560
561 ptd->per_port_queue[sif_if_index3].buffers[ptd->per_port_queue
562 [sif_if_index3].n_buffers] =
563 vlib_get_buffer_index (vm, b[3]);
564 ptd->per_port_queue[sif_if_index3].n_buffers++;
565
Damjan Marioncefe1342018-09-21 18:11:33 +0200566 n_left -= 4;
567 b += 4;
568 }
Steven9cd2d7a2017-12-20 12:43:01 -0800569
Damjan Marioncefe1342018-09-21 18:11:33 +0200570 while (n_left > 0)
571 {
Stevenc4e99c52018-09-27 20:06:26 -0700572 u32 sif_if_index0;
Damjan Marioncefe1342018-09-21 18:11:33 +0200573
574 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b[0]);
575
Damjan Marioncefe1342018-09-21 18:11:33 +0200576 if (PREDICT_TRUE (slave_count > 1))
577 port0 =
578 (bond_load_balance_table[bif->lb]).load_balance (vm, node, bif,
579 b[0], slave_count);
Stevenc4e99c52018-09-27 20:06:26 -0700580 sif_if_index0 = *vec_elt_at_index (bif->active_slaves, port0);
Damjan Marioncefe1342018-09-21 18:11:33 +0200581
Stevenc4e99c52018-09-27 20:06:26 -0700582 /* Do the tracing before the old interface is overwritten */
Damjan Marioncefe1342018-09-21 18:11:33 +0200583 if (PREDICT_FALSE (n_trace > 0))
Stevena005e7f2018-03-22 17:46:58 -0700584 {
Stevenc4e99c52018-09-27 20:06:26 -0700585 u32 next0 = 0;
586
Damjan Marioncefe1342018-09-21 18:11:33 +0200587 vlib_trace_buffer (vm, node, next0, b[0], 0 /* follow_chain */ );
588 vlib_set_trace_count (vm, node, --n_trace);
589 t0 = vlib_add_trace (vm, node, b[0], sizeof (*t0));
590 eth = (ethernet_header_t *) vlib_buffer_get_current (b[0]);
591 t0->ethernet = *eth;
Stevenc4e99c52018-09-27 20:06:26 -0700592 t0->sw_if_index = vnet_buffer (b[0])->sw_if_index[VLIB_TX];
593 t0->bond_sw_if_index = sif_if_index0;
Stevena005e7f2018-03-22 17:46:58 -0700594 }
Damjan Marioncefe1342018-09-21 18:11:33 +0200595
Stevenc4e99c52018-09-27 20:06:26 -0700596 vnet_buffer (b[0])->sw_if_index[VLIB_TX] = sif_if_index0;
597
598 ptd->per_port_queue[sif_if_index0].buffers[ptd->per_port_queue
599 [sif_if_index0].n_buffers] =
600 vlib_get_buffer_index (vm, b[0]);
601 ptd->per_port_queue[sif_if_index0].n_buffers++;
602
Damjan Marioncefe1342018-09-21 18:11:33 +0200603 n_left -= 1;
604 b += 1;
Steven9cd2d7a2017-12-20 12:43:01 -0800605 }
606
Stevenc4e99c52018-09-27 20:06:26 -0700607 for (port0 = 0; port0 < slave_count; port0++)
Steven9cd2d7a2017-12-20 12:43:01 -0800608 {
Stevenc4e99c52018-09-27 20:06:26 -0700609 sw_if_index = *vec_elt_at_index (bif->active_slaves, port0);
610 if (PREDICT_TRUE (ptd->per_port_queue[sw_if_index].n_buffers))
611 {
612 f = vnet_get_frame_to_sw_interface (vnm, sw_if_index);
613 f->n_vectors = ptd->per_port_queue[sw_if_index].n_buffers;
614 to_next = vlib_frame_vector_args (f);
615 clib_memcpy (to_next, ptd->per_port_queue[sw_if_index].buffers,
616 f->n_vectors << 2);
617 vnet_put_frame_to_sw_interface (vnm, sw_if_index, f);
618 ptd->per_port_queue[sw_if_index].n_buffers = 0;
619 }
Steven9cd2d7a2017-12-20 12:43:01 -0800620 }
621
622 vlib_increment_simple_counter (vnet_main.interface_main.sw_if_counters
623 + VNET_INTERFACE_COUNTER_TX, thread_index,
624 bif->sw_if_index, frame->n_vectors);
625
Steven9cd2d7a2017-12-20 12:43:01 -0800626 return frame->n_vectors;
627}
628
Steven9f781d82018-06-05 11:09:32 -0700629static walk_rc_t
630bond_active_interface_switch_cb (vnet_main_t * vnm, u32 sw_if_index,
631 void *arg)
632{
633 bond_main_t *bm = &bond_main;
634
635 send_ip4_garp (bm->vlib_main, sw_if_index);
636 send_ip6_na (bm->vlib_main, sw_if_index);
637
638 return (WALK_CONTINUE);
639}
640
641static uword
642bond_process (vlib_main_t * vm, vlib_node_runtime_t * rt, vlib_frame_t * f)
643{
644 vnet_main_t *vnm = vnet_get_main ();
645 uword event_type, *event_data = 0;
646
647 while (1)
648 {
649 u32 i;
650 u32 hw_if_index;
651
652 vlib_process_wait_for_event (vm);
653 event_type = vlib_process_get_events (vm, &event_data);
654 ASSERT (event_type == BOND_SEND_GARP_NA);
655 for (i = 0; i < vec_len (event_data); i++)
656 {
657 hw_if_index = event_data[i];
658 /* walk hw interface to process all subinterfaces */
659 vnet_hw_interface_walk_sw (vnm, hw_if_index,
660 bond_active_interface_switch_cb, 0);
661 }
662 vec_reset_length (event_data);
663 }
664 return 0;
665}
666
667/* *INDENT-OFF* */
668VLIB_REGISTER_NODE (bond_process_node) = {
669 .function = bond_process,
670 .type = VLIB_NODE_TYPE_PROCESS,
671 .name = "bond-process",
672};
673/* *INDENT-ON* */
674
Steven9cd2d7a2017-12-20 12:43:01 -0800675/* *INDENT-OFF* */
676VNET_DEVICE_CLASS (bond_dev_class) = {
677 .name = "bond",
Steven9cd2d7a2017-12-20 12:43:01 -0800678 .tx_function_n_errors = BOND_TX_N_ERROR,
679 .tx_function_error_strings = bond_tx_error_strings,
680 .format_device_name = format_bond_interface_name,
Steven4f8863b2018-04-12 19:36:19 -0700681 .set_l2_mode_function = bond_set_l2_mode_function,
Steven9cd2d7a2017-12-20 12:43:01 -0800682 .admin_up_down_function = bond_interface_admin_up_down,
683 .subif_add_del_function = bond_subif_add_del_function,
684 .format_tx_trace = format_bond_tx_trace,
685};
686
Steven9cd2d7a2017-12-20 12:43:01 -0800687/* *INDENT-ON* */
688
689/*
690 * fd.io coding-style-patch-verification: ON
691 *
692 * Local Variables:
693 * eval: (c-set-style "gnu")
694 * End:
695 */