blob: ca48585fa0afaba8e0e8fe48cc2e5229871a2626 [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>
Neale Rannsdc617b82020-08-20 08:22:56 +000020#include <vnet/ip-neighbor/ip4_neighbor.h>
21#include <vnet/ip-neighbor/ip6_neighbor.h>
Steven Luong05a68d62021-12-03 12:05:45 -080022#include <vnet/bonding/node.h>
Steven9cd2d7a2017-12-20 12:43:01 -080023
Steven Luong8d462192021-03-03 19:03:38 -080024#define foreach_bond_tx_error \
25 _ (NONE, "no error") \
26 _ (IF_DOWN, "interface down") \
27 _ (BAD_LB_MODE, "bad load balance mode") \
28 _ (NO_MEMBER, "no member")
Steven9cd2d7a2017-12-20 12:43:01 -080029
30typedef enum
31{
32#define _(f,s) BOND_TX_ERROR_##f,
33 foreach_bond_tx_error
34#undef _
35 BOND_TX_N_ERROR,
36} bond_tx_error_t;
37
38static char *bond_tx_error_strings[] = {
39#define _(n,s) s,
40 foreach_bond_tx_error
41#undef _
42};
43
44static u8 *
45format_bond_tx_trace (u8 * s, va_list * args)
46{
47 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
48 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
49 bond_packet_trace_t *t = va_arg (*args, bond_packet_trace_t *);
50 vnet_hw_interface_t *hw, *hw1;
51 vnet_main_t *vnm = vnet_get_main ();
52
53 hw = vnet_get_sup_hw_interface (vnm, t->sw_if_index);
54 hw1 = vnet_get_sup_hw_interface (vnm, t->bond_sw_if_index);
55 s = format (s, "src %U, dst %U, %s -> %s",
56 format_ethernet_address, t->ethernet.src_address,
57 format_ethernet_address, t->ethernet.dst_address,
58 hw->name, hw1->name);
59
60 return s;
61}
62
Damjan Marioncefe1342018-09-21 18:11:33 +020063#ifndef CLIB_MARCH_VARIANT
Steven9cd2d7a2017-12-20 12:43:01 -080064u8 *
65format_bond_interface_name (u8 * s, va_list * args)
66{
67 u32 dev_instance = va_arg (*args, u32);
68 bond_main_t *bm = &bond_main;
69 bond_if_t *bif = pool_elt_at_index (bm->interfaces, dev_instance);
70
Alexander Chernavinad9d5282018-12-13 09:08:09 -050071 s = format (s, "BondEthernet%lu", bif->id);
Steven9cd2d7a2017-12-20 12:43:01 -080072
73 return s;
74}
Damjan Marioncefe1342018-09-21 18:11:33 +020075#endif
Steven9cd2d7a2017-12-20 12:43:01 -080076
77static __clib_unused clib_error_t *
Steven4f8863b2018-04-12 19:36:19 -070078bond_set_l2_mode_function (vnet_main_t * vnm,
79 struct vnet_hw_interface_t *bif_hw,
80 i32 l2_if_adjust)
81{
82 bond_if_t *bif;
83 u32 *sw_if_index;
Steven Luong4c4223e2020-07-15 08:44:54 -070084 struct vnet_hw_interface_t *mif_hw;
Steven4f8863b2018-04-12 19:36:19 -070085
Steven Luong4c4223e2020-07-15 08:44:54 -070086 bif = bond_get_bond_if_by_sw_if_index (bif_hw->sw_if_index);
Steven4f8863b2018-04-12 19:36:19 -070087 if (!bif)
88 return 0;
89
90 if ((bif_hw->l2_if_count == 1) && (l2_if_adjust == 1))
91 {
92 /* Just added first L2 interface on this port */
Steven Luong4c4223e2020-07-15 08:44:54 -070093 vec_foreach (sw_if_index, bif->members)
Steven4f8863b2018-04-12 19:36:19 -070094 {
Steven Luong4c4223e2020-07-15 08:44:54 -070095 mif_hw = vnet_get_sup_hw_interface (vnm, *sw_if_index);
96 ethernet_set_flags (vnm, mif_hw->hw_if_index,
Steven4f8863b2018-04-12 19:36:19 -070097 ETHERNET_INTERFACE_FLAG_ACCEPT_ALL);
Steven4f8863b2018-04-12 19:36:19 -070098 }
99 }
Steven Luonga1f9ee82019-04-09 12:18:46 -0700100 else if ((bif_hw->l2_if_count == 0) && (l2_if_adjust == -1))
101 {
102 /* Just removed last L2 subinterface on this port */
Steven Luong4c4223e2020-07-15 08:44:54 -0700103 vec_foreach (sw_if_index, bif->members)
Steven Luonga1f9ee82019-04-09 12:18:46 -0700104 {
Steven Luong4c4223e2020-07-15 08:44:54 -0700105 mif_hw = vnet_get_sup_hw_interface (vnm, *sw_if_index);
106 ethernet_set_flags (vnm, mif_hw->hw_if_index,
John Lof415a3b2020-05-14 15:02:16 -0400107 /*ETHERNET_INTERFACE_FLAG_DEFAULT_L3 */ 0);
Steven Luonga1f9ee82019-04-09 12:18:46 -0700108 }
109 }
Steven4f8863b2018-04-12 19:36:19 -0700110
111 return 0;
112}
113
114static __clib_unused clib_error_t *
Steven9cd2d7a2017-12-20 12:43:01 -0800115bond_subif_add_del_function (vnet_main_t * vnm, u32 hw_if_index,
116 struct vnet_sw_interface_t *st, int is_add)
117{
118 /* Nothing for now */
119 return 0;
120}
121
122static clib_error_t *
123bond_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags)
124{
125 vnet_hw_interface_t *hif = vnet_get_hw_interface (vnm, hw_if_index);
126 uword is_up = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) != 0;
127 bond_main_t *bm = &bond_main;
128 bond_if_t *bif = pool_elt_at_index (bm->interfaces, hif->dev_instance);
129
130 bif->admin_up = is_up;
Steven Luongdc2abbe2020-07-28 12:28:03 -0700131 if (is_up)
Steven9cd2d7a2017-12-20 12:43:01 -0800132 vnet_hw_interface_set_flags (vnm, bif->hw_if_index,
133 VNET_HW_INTERFACE_FLAG_LINK_UP);
134 return 0;
135}
136
Matthew Smithe83aa452019-11-14 10:36:02 -0600137static clib_error_t *
138bond_add_del_mac_address (vnet_hw_interface_t * hi, const u8 * address,
139 u8 is_add)
140{
141 vnet_main_t *vnm = vnet_get_main ();
142 bond_if_t *bif;
143 clib_error_t *error = 0;
144 vnet_hw_interface_t *s_hi;
145 int i;
146
147
Steven Luong4c4223e2020-07-15 08:44:54 -0700148 bif = bond_get_bond_if_by_sw_if_index (hi->sw_if_index);
Matthew Smithe83aa452019-11-14 10:36:02 -0600149 if (!bif)
150 {
Steven Luong4c4223e2020-07-15 08:44:54 -0700151 return clib_error_return (0,
152 "No bond interface found for sw_if_index %u",
Matthew Smithe83aa452019-11-14 10:36:02 -0600153 hi->sw_if_index);
154 }
155
Steven Luong4c4223e2020-07-15 08:44:54 -0700156 /* Add/del address on each member hw intf, they control the hardware */
157 vec_foreach_index (i, bif->members)
Matthew Smithe83aa452019-11-14 10:36:02 -0600158 {
Steven Luong4c4223e2020-07-15 08:44:54 -0700159 s_hi = vnet_get_sup_hw_interface (vnm, vec_elt (bif->members, i));
Matthew Smithe83aa452019-11-14 10:36:02 -0600160 error = vnet_hw_interface_add_del_mac_address (vnm, s_hi->hw_if_index,
161 address, is_add);
162
163 if (error)
164 {
165 int j;
166
167 /* undo any that were completed before the failure */
168 for (j = i - 1; j > -1; j--)
169 {
Steven Luong4c4223e2020-07-15 08:44:54 -0700170 s_hi = vnet_get_sup_hw_interface (vnm, vec_elt (bif->members, j));
Matthew Smithe83aa452019-11-14 10:36:02 -0600171 vnet_hw_interface_add_del_mac_address (vnm, s_hi->hw_if_index,
172 address, !(is_add));
173 }
174
175 return error;
176 }
177 }
178
179 return 0;
180}
181
Damjan Marion69fdfee2018-10-06 14:33:18 +0200182static_always_inline void
183bond_tx_add_to_queue (bond_per_thread_data_t * ptd, u32 port, u32 bi)
184{
185 u32 idx = ptd->per_port_queue[port].n_buffers++;
186 ptd->per_port_queue[port].buffers[idx] = bi;
187}
188
Steven0d883012018-05-11 11:06:23 -0700189static_always_inline u32
Steven Luong05a68d62021-12-03 12:05:45 -0800190bond_lb_broadcast (vlib_main_t *vm, bond_if_t *bif, vlib_buffer_t *b0,
191 uword n_members)
Steven9cd2d7a2017-12-20 12:43:01 -0800192{
Stevenc4e99c52018-09-27 20:06:26 -0700193 bond_main_t *bm = &bond_main;
Steven9cd2d7a2017-12-20 12:43:01 -0800194 vlib_buffer_t *c0;
Steven22b5be02018-04-11 15:32:15 -0700195 int port;
Steven9cd2d7a2017-12-20 12:43:01 -0800196 u32 sw_if_index;
Damjan Marion067cd622018-07-11 12:47:43 +0200197 u16 thread_index = vm->thread_index;
Stevenc4e99c52018-09-27 20:06:26 -0700198 bond_per_thread_data_t *ptd = vec_elt_at_index (bm->per_thread_data,
199 thread_index);
Steven9cd2d7a2017-12-20 12:43:01 -0800200
Steven Luong4c4223e2020-07-15 08:44:54 -0700201 for (port = 1; port < n_members; port++)
Steven9cd2d7a2017-12-20 12:43:01 -0800202 {
Steven Luong4c4223e2020-07-15 08:44:54 -0700203 sw_if_index = *vec_elt_at_index (bif->active_members, port);
Steven9cd2d7a2017-12-20 12:43:01 -0800204 c0 = vlib_buffer_copy (vm, b0);
205 if (PREDICT_TRUE (c0 != 0))
206 {
207 vnet_buffer (c0)->sw_if_index[VLIB_TX] = sw_if_index;
Damjan Marion69fdfee2018-10-06 14:33:18 +0200208 bond_tx_add_to_queue (ptd, port, vlib_get_buffer_index (vm, c0));
Steven9cd2d7a2017-12-20 12:43:01 -0800209 }
210 }
211
212 return 0;
213}
214
Steven0d883012018-05-11 11:06:23 -0700215static_always_inline u32
Steven Luong05a68d62021-12-03 12:05:45 -0800216bond_lb_round_robin (bond_if_t *bif, vlib_buffer_t *b0, uword n_members)
Steven9cd2d7a2017-12-20 12:43:01 -0800217{
218 bif->lb_rr_last_index++;
Steven Luong4c4223e2020-07-15 08:44:54 -0700219 if (bif->lb_rr_last_index >= n_members)
Damjan Marion69fdfee2018-10-06 14:33:18 +0200220 bif->lb_rr_last_index = 0;
Steven9cd2d7a2017-12-20 12:43:01 -0800221
222 return bif->lb_rr_last_index;
223}
224
Damjan Marion16de39e2018-09-26 10:15:41 +0200225static_always_inline void
Steven Luong05a68d62021-12-03 12:05:45 -0800226bond_tx_hash (vlib_main_t *vm, bond_per_thread_data_t *ptd, bond_if_t *bif,
227 vlib_buffer_t **b, u32 *h, u32 n_left)
Steven9cd2d7a2017-12-20 12:43:01 -0800228{
Steven Luong05a68d62021-12-03 12:05:45 -0800229 u32 n_left_from = n_left;
230 void **data;
231
232 ASSERT (bif->hash_func != 0);
233
234 vec_validate_aligned (ptd->data, n_left - 1, CLIB_CACHE_LINE_BYTES);
235 data = ptd->data;
236 while (n_left >= 8)
Steven9cd2d7a2017-12-20 12:43:01 -0800237 {
Damjan Marioncefe1342018-09-21 18:11:33 +0200238 // Prefetch next iteration
Steven Luong05a68d62021-12-03 12:05:45 -0800239 vlib_prefetch_buffer_header (b[4], LOAD);
240 vlib_prefetch_buffer_header (b[5], LOAD);
241 vlib_prefetch_buffer_header (b[6], LOAD);
242 vlib_prefetch_buffer_header (b[7], LOAD);
Steven0d883012018-05-11 11:06:23 -0700243
Steven Luong05a68d62021-12-03 12:05:45 -0800244 data[0] = vlib_buffer_get_current (b[0]);
245 data[1] = vlib_buffer_get_current (b[1]);
246 data[2] = vlib_buffer_get_current (b[2]);
247 data[3] = vlib_buffer_get_current (b[3]);
Damjan Marioncefe1342018-09-21 18:11:33 +0200248
Steven Luong05a68d62021-12-03 12:05:45 -0800249 n_left -= 4;
250 b += 4;
251 data += 4;
252 }
Damjan Marioncefe1342018-09-21 18:11:33 +0200253
Steven Luong05a68d62021-12-03 12:05:45 -0800254 while (n_left > 0)
255 {
256 data[0] = vlib_buffer_get_current (b[0]);
257
258 n_left -= 1;
259 b += 1;
260 data += 1;
261 }
262
263 bif->hash_func (ptd->data, h, n_left_from);
264 vec_reset_length (ptd->data);
265}
266
267static_always_inline void
268bond_tx_no_hash (vlib_main_t *vm, bond_if_t *bif, vlib_buffer_t **b, u32 *h,
269 u32 n_left, uword n_members, u32 lb_alg)
270{
271 while (n_left >= 8)
272 {
273 // Prefetch next iteration
274 vlib_prefetch_buffer_header (b[4], LOAD);
275 vlib_prefetch_buffer_header (b[5], LOAD);
276 vlib_prefetch_buffer_header (b[6], LOAD);
277 vlib_prefetch_buffer_header (b[7], LOAD);
278
279 clib_prefetch_load (b[4]->data);
280 clib_prefetch_load (b[5]->data);
281 clib_prefetch_load (b[6]->data);
282 clib_prefetch_load (b[7]->data);
283
284 if (lb_alg == BOND_LB_RR)
Damjan Marion69fdfee2018-10-06 14:33:18 +0200285 {
Steven Luong4c4223e2020-07-15 08:44:54 -0700286 h[0] = bond_lb_round_robin (bif, b[0], n_members);
287 h[1] = bond_lb_round_robin (bif, b[1], n_members);
288 h[2] = bond_lb_round_robin (bif, b[2], n_members);
289 h[3] = bond_lb_round_robin (bif, b[3], n_members);
Damjan Marion69fdfee2018-10-06 14:33:18 +0200290 }
291 else if (lb_alg == BOND_LB_BC)
292 {
Steven Luong4c4223e2020-07-15 08:44:54 -0700293 h[0] = bond_lb_broadcast (vm, bif, b[0], n_members);
294 h[1] = bond_lb_broadcast (vm, bif, b[1], n_members);
295 h[2] = bond_lb_broadcast (vm, bif, b[2], n_members);
296 h[3] = bond_lb_broadcast (vm, bif, b[3], n_members);
Damjan Marion69fdfee2018-10-06 14:33:18 +0200297 }
298 else
299 {
300 ASSERT (0);
301 }
Stevenc4e99c52018-09-27 20:06:26 -0700302
Damjan Marioncefe1342018-09-21 18:11:33 +0200303 n_left -= 4;
304 b += 4;
Damjan Marion69fdfee2018-10-06 14:33:18 +0200305 h += 4;
Damjan Marioncefe1342018-09-21 18:11:33 +0200306 }
Steven9cd2d7a2017-12-20 12:43:01 -0800307
Damjan Marioncefe1342018-09-21 18:11:33 +0200308 while (n_left > 0)
309 {
Steven Luong05a68d62021-12-03 12:05:45 -0800310 if (bif->lb == BOND_LB_RR)
Steven Luong4c4223e2020-07-15 08:44:54 -0700311 h[0] = bond_lb_round_robin (bif, b[0], n_members);
Damjan Marion69fdfee2018-10-06 14:33:18 +0200312 else if (bif->lb == BOND_LB_BC)
Steven Luong4c4223e2020-07-15 08:44:54 -0700313 h[0] = bond_lb_broadcast (vm, bif, b[0], n_members);
Damjan Marion69fdfee2018-10-06 14:33:18 +0200314 else
Damjan Marion16de39e2018-09-26 10:15:41 +0200315 {
Damjan Marion69fdfee2018-10-06 14:33:18 +0200316 ASSERT (0);
Damjan Marion16de39e2018-09-26 10:15:41 +0200317 }
318
Damjan Marioncefe1342018-09-21 18:11:33 +0200319 n_left -= 1;
320 b += 1;
Steven Luongde0302c2019-10-04 14:18:37 -0700321 h += 1;
Steven9cd2d7a2017-12-20 12:43:01 -0800322 }
Damjan Marion69fdfee2018-10-06 14:33:18 +0200323}
Steven9cd2d7a2017-12-20 12:43:01 -0800324
Damjan Marion69fdfee2018-10-06 14:33:18 +0200325static_always_inline void
Steven Luong4c4223e2020-07-15 08:44:54 -0700326bond_hash_to_port (u32 * h, u32 n_left, u32 n_members,
327 int use_modulo_shortcut)
Damjan Marion69fdfee2018-10-06 14:33:18 +0200328{
Steven Luong4c4223e2020-07-15 08:44:54 -0700329 u32 mask = n_members - 1;
Damjan Marion69fdfee2018-10-06 14:33:18 +0200330
Damjan Marion69fdfee2018-10-06 14:33:18 +0200331 while (n_left > 4)
332 {
333 if (use_modulo_shortcut)
334 {
335 h[0] &= mask;
336 h[1] &= mask;
337 h[2] &= mask;
338 h[3] &= mask;
339 }
340 else
341 {
Steven Luong4c4223e2020-07-15 08:44:54 -0700342 h[0] %= n_members;
343 h[1] %= n_members;
344 h[2] %= n_members;
345 h[3] %= n_members;
Damjan Marion69fdfee2018-10-06 14:33:18 +0200346 }
347 n_left -= 4;
348 h += 4;
349 }
350 while (n_left)
351 {
352 if (use_modulo_shortcut)
353 h[0] &= mask;
354 else
Steven Luong4c4223e2020-07-15 08:44:54 -0700355 h[0] %= n_members;
Damjan Marion69fdfee2018-10-06 14:33:18 +0200356 n_left -= 1;
357 h += 1;
358 }
359}
360
361static_always_inline void
362bond_update_sw_if_index (bond_per_thread_data_t * ptd, bond_if_t * bif,
363 u32 * bi, vlib_buffer_t ** b, u32 * data, u32 n_left,
364 int single_sw_if_index)
365{
366 u32 sw_if_index = data[0];
367 u32 *h = data;
368
Steven Luong05a68d62021-12-03 12:05:45 -0800369 while (n_left >= 8)
Damjan Marion69fdfee2018-10-06 14:33:18 +0200370 {
371 // Prefetch next iteration
Steven Luong05a68d62021-12-03 12:05:45 -0800372 vlib_prefetch_buffer_header (b[4], LOAD);
373 vlib_prefetch_buffer_header (b[5], LOAD);
374 vlib_prefetch_buffer_header (b[6], LOAD);
375 vlib_prefetch_buffer_header (b[7], LOAD);
Damjan Marion69fdfee2018-10-06 14:33:18 +0200376
377 if (PREDICT_FALSE (single_sw_if_index))
378 {
379 vnet_buffer (b[0])->sw_if_index[VLIB_TX] = sw_if_index;
380 vnet_buffer (b[1])->sw_if_index[VLIB_TX] = sw_if_index;
381 vnet_buffer (b[2])->sw_if_index[VLIB_TX] = sw_if_index;
382 vnet_buffer (b[3])->sw_if_index[VLIB_TX] = sw_if_index;
383
384 bond_tx_add_to_queue (ptd, 0, bi[0]);
385 bond_tx_add_to_queue (ptd, 0, bi[1]);
386 bond_tx_add_to_queue (ptd, 0, bi[2]);
387 bond_tx_add_to_queue (ptd, 0, bi[3]);
388 }
389 else
390 {
Steven Luong05a68d62021-12-03 12:05:45 -0800391 vnet_buffer (b[0])->sw_if_index[VLIB_TX] =
392 *vec_elt_at_index (bif->active_members, h[0]);
393 vnet_buffer (b[1])->sw_if_index[VLIB_TX] =
394 *vec_elt_at_index (bif->active_members, h[1]);
395 vnet_buffer (b[2])->sw_if_index[VLIB_TX] =
396 *vec_elt_at_index (bif->active_members, h[2]);
397 vnet_buffer (b[3])->sw_if_index[VLIB_TX] =
398 *vec_elt_at_index (bif->active_members, h[3]);
Damjan Marion69fdfee2018-10-06 14:33:18 +0200399
400 bond_tx_add_to_queue (ptd, h[0], bi[0]);
401 bond_tx_add_to_queue (ptd, h[1], bi[1]);
402 bond_tx_add_to_queue (ptd, h[2], bi[2]);
403 bond_tx_add_to_queue (ptd, h[3], bi[3]);
404 }
405
406 bi += 4;
407 h += 4;
408 b += 4;
409 n_left -= 4;
410 }
411 while (n_left)
412 {
413 if (PREDICT_FALSE (single_sw_if_index))
414 {
415 vnet_buffer (b[0])->sw_if_index[VLIB_TX] = sw_if_index;
416 bond_tx_add_to_queue (ptd, 0, bi[0]);
417 }
418 else
419 {
Steven Luong05a68d62021-12-03 12:05:45 -0800420 vnet_buffer (b[0])->sw_if_index[VLIB_TX] =
421 *vec_elt_at_index (bif->active_members, h[0]);
Damjan Marion69fdfee2018-10-06 14:33:18 +0200422 bond_tx_add_to_queue (ptd, h[0], bi[0]);
423 }
424
425 bi += 1;
426 h += 1;
427 b += 1;
428 n_left -= 1;
429 }
430}
431
432static_always_inline void
433bond_tx_trace (vlib_main_t * vm, vlib_node_runtime_t * node, bond_if_t * bif,
434 vlib_buffer_t ** b, u32 n_left, u32 * h)
435{
436 uword n_trace = vlib_get_trace_count (vm, node);
437
438 while (n_trace > 0 && n_left > 0)
439 {
Benoît Ganne9a3973e2020-10-02 19:36:57 +0200440 if (PREDICT_TRUE
441 (vlib_trace_buffer (vm, node, 0, b[0], 0 /* follow_chain */ )))
442 {
443 bond_packet_trace_t *t0;
444 ethernet_header_t *eth;
Damjan Marion69fdfee2018-10-06 14:33:18 +0200445
Benoît Ganne9a3973e2020-10-02 19:36:57 +0200446 vlib_set_trace_count (vm, node, --n_trace);
447 t0 = vlib_add_trace (vm, node, b[0], sizeof (*t0));
448 eth = vlib_buffer_get_current (b[0]);
449 t0->ethernet = *eth;
450 t0->sw_if_index = vnet_buffer (b[0])->sw_if_index[VLIB_TX];
451 if (!h)
452 {
453 t0->bond_sw_if_index =
454 *vec_elt_at_index (bif->active_members, 0);
455 }
456 else
457 {
458 t0->bond_sw_if_index =
459 *vec_elt_at_index (bif->active_members, h[0]);
460 h++;
461 }
Damjan Marion69fdfee2018-10-06 14:33:18 +0200462 }
463 b++;
464 n_left--;
465 }
Damjan Marion16de39e2018-09-26 10:15:41 +0200466}
467
468VNET_DEVICE_CLASS_TX_FN (bond_dev_class) (vlib_main_t * vm,
469 vlib_node_runtime_t * node,
470 vlib_frame_t * frame)
471{
472 vnet_interface_output_runtime_t *rund = (void *) node->runtime_data;
473 bond_main_t *bm = &bond_main;
474 u16 thread_index = vm->thread_index;
475 bond_if_t *bif = pool_elt_at_index (bm->interfaces, rund->dev_instance);
Steven Luong4c4223e2020-07-15 08:44:54 -0700476 uword n_members;
Damjan Marion69fdfee2018-10-06 14:33:18 +0200477 vlib_buffer_t *bufs[VLIB_FRAME_SIZE];
478 u32 *from = vlib_frame_vector_args (frame);
479 u32 n_left = frame->n_vectors;
480 u32 hashes[VLIB_FRAME_SIZE], *h;
481 vnet_main_t *vnm = vnet_get_main ();
482 bond_per_thread_data_t *ptd = vec_elt_at_index (bm->per_thread_data,
483 thread_index);
484 u32 p, sw_if_index;
Damjan Marion16de39e2018-09-26 10:15:41 +0200485
486 if (PREDICT_FALSE (bif->admin_up == 0))
487 {
Damjan Mariona3d59862018-11-10 10:23:00 +0100488 vlib_buffer_free (vm, vlib_frame_vector_args (frame), frame->n_vectors);
Damjan Marion16de39e2018-09-26 10:15:41 +0200489 vlib_increment_simple_counter (vnet_main.interface_main.sw_if_counters +
490 VNET_INTERFACE_COUNTER_DROP,
491 thread_index, bif->sw_if_index,
492 frame->n_vectors);
493 vlib_error_count (vm, node->node_index, BOND_TX_ERROR_IF_DOWN,
494 frame->n_vectors);
495 return frame->n_vectors;
496 }
497
Steven Luong4c4223e2020-07-15 08:44:54 -0700498 n_members = vec_len (bif->active_members);
499 if (PREDICT_FALSE (n_members == 0))
Damjan Marion16de39e2018-09-26 10:15:41 +0200500 {
Damjan Mariona3d59862018-11-10 10:23:00 +0100501 vlib_buffer_free (vm, vlib_frame_vector_args (frame), frame->n_vectors);
Damjan Marion16de39e2018-09-26 10:15:41 +0200502 vlib_increment_simple_counter (vnet_main.interface_main.sw_if_counters +
503 VNET_INTERFACE_COUNTER_DROP,
504 thread_index, bif->sw_if_index,
505 frame->n_vectors);
Steven Luong4c4223e2020-07-15 08:44:54 -0700506 vlib_error_count (vm, node->node_index, BOND_TX_ERROR_NO_MEMBER,
Damjan Marion16de39e2018-09-26 10:15:41 +0200507 frame->n_vectors);
508 return frame->n_vectors;
509 }
510
Damjan Marion69fdfee2018-10-06 14:33:18 +0200511 vlib_get_buffers (vm, from, bufs, n_left);
512
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -0700513 /* active-backup mode, ship everything to first sw if index */
Steven Luong4c4223e2020-07-15 08:44:54 -0700514 if ((bif->lb == BOND_LB_AB) || PREDICT_FALSE (n_members == 1))
Damjan Marion69fdfee2018-10-06 14:33:18 +0200515 {
Steven Luong4c4223e2020-07-15 08:44:54 -0700516 sw_if_index = *vec_elt_at_index (bif->active_members, 0);
Damjan Marion69fdfee2018-10-06 14:33:18 +0200517
518 bond_tx_trace (vm, node, bif, bufs, frame->n_vectors, 0);
519 bond_update_sw_if_index (ptd, bif, from, bufs, &sw_if_index, n_left,
520 /* single_sw_if_index */ 1);
521 goto done;
522 }
523
524 if (bif->lb == BOND_LB_BC)
525 {
Steven Luong4c4223e2020-07-15 08:44:54 -0700526 sw_if_index = *vec_elt_at_index (bif->active_members, 0);
Damjan Marion69fdfee2018-10-06 14:33:18 +0200527
Steven Luong05a68d62021-12-03 12:05:45 -0800528 bond_tx_no_hash (vm, bif, bufs, hashes, n_left, n_members, BOND_LB_BC);
Damjan Marion69fdfee2018-10-06 14:33:18 +0200529 bond_tx_trace (vm, node, bif, bufs, frame->n_vectors, 0);
530 bond_update_sw_if_index (ptd, bif, from, bufs, &sw_if_index, n_left,
531 /* single_sw_if_index */ 1);
532 goto done;
533 }
534
Steven Luong4c4223e2020-07-15 08:44:54 -0700535 /* if have at least one member on local numa node, only members on local numa
Zhiyong Yang751e3f32019-06-26 05:49:14 -0400536 node will transmit pkts when bif->local_numa_only is enabled */
Steven Luong4c4223e2020-07-15 08:44:54 -0700537 if (bif->n_numa_members >= 1)
538 n_members = bif->n_numa_members;
Zhiyong Yang751e3f32019-06-26 05:49:14 -0400539
Steven Luong05a68d62021-12-03 12:05:45 -0800540 if (bif->lb == BOND_LB_RR)
541 bond_tx_no_hash (vm, bif, bufs, hashes, n_left, n_members, BOND_LB_RR);
Damjan Marion16de39e2018-09-26 10:15:41 +0200542 else
Steven Luong05a68d62021-12-03 12:05:45 -0800543 bond_tx_hash (vm, ptd, bif, bufs, hashes, n_left);
Steven9cd2d7a2017-12-20 12:43:01 -0800544
Damjan Marion69fdfee2018-10-06 14:33:18 +0200545 /* calculate port out of hash */
546 h = hashes;
Steven Luong4c4223e2020-07-15 08:44:54 -0700547 if (BOND_MODULO_SHORTCUT (n_members))
548 bond_hash_to_port (h, frame->n_vectors, n_members, 1);
Damjan Marion69fdfee2018-10-06 14:33:18 +0200549 else
Steven Luong4c4223e2020-07-15 08:44:54 -0700550 bond_hash_to_port (h, frame->n_vectors, n_members, 0);
Damjan Marion69fdfee2018-10-06 14:33:18 +0200551
552 bond_tx_trace (vm, node, bif, bufs, frame->n_vectors, h);
553
554 bond_update_sw_if_index (ptd, bif, from, bufs, hashes, frame->n_vectors,
555 /* single_sw_if_index */ 0);
556
557done:
Steven Luong4c4223e2020-07-15 08:44:54 -0700558 for (p = 0; p < n_members; p++)
Damjan Marion69fdfee2018-10-06 14:33:18 +0200559 {
560 vlib_frame_t *f;
561 u32 *to_next;
562
Steven Luong4c4223e2020-07-15 08:44:54 -0700563 sw_if_index = *vec_elt_at_index (bif->active_members, p);
Damjan Marion69fdfee2018-10-06 14:33:18 +0200564 if (PREDICT_TRUE (ptd->per_port_queue[p].n_buffers))
565 {
566 f = vnet_get_frame_to_sw_interface (vnm, sw_if_index);
567 f->n_vectors = ptd->per_port_queue[p].n_buffers;
568 to_next = vlib_frame_vector_args (f);
Dave Barach178cf492018-11-13 16:34:13 -0500569 clib_memcpy_fast (to_next, ptd->per_port_queue[p].buffers,
570 f->n_vectors * sizeof (u32));
Damjan Marion69fdfee2018-10-06 14:33:18 +0200571 vnet_put_frame_to_sw_interface (vnm, sw_if_index, f);
572 ptd->per_port_queue[p].n_buffers = 0;
573 }
574 }
Steven9cd2d7a2017-12-20 12:43:01 -0800575 return frame->n_vectors;
576}
577
Steven9f781d82018-06-05 11:09:32 -0700578static walk_rc_t
579bond_active_interface_switch_cb (vnet_main_t * vnm, u32 sw_if_index,
580 void *arg)
581{
582 bond_main_t *bm = &bond_main;
583
Neale Rannsfd2417b2021-07-16 14:00:16 +0000584 ip4_neighbor_advertise (bm->vlib_main, bm->vnet_main, sw_if_index,
585 vlib_get_thread_index (), NULL);
586 ip6_neighbor_advertise (bm->vlib_main, bm->vnet_main, sw_if_index,
587 vlib_get_thread_index (), NULL);
Steven9f781d82018-06-05 11:09:32 -0700588
589 return (WALK_CONTINUE);
590}
591
592static uword
593bond_process (vlib_main_t * vm, vlib_node_runtime_t * rt, vlib_frame_t * f)
594{
595 vnet_main_t *vnm = vnet_get_main ();
596 uword event_type, *event_data = 0;
597
598 while (1)
599 {
600 u32 i;
601 u32 hw_if_index;
602
603 vlib_process_wait_for_event (vm);
604 event_type = vlib_process_get_events (vm, &event_data);
605 ASSERT (event_type == BOND_SEND_GARP_NA);
606 for (i = 0; i < vec_len (event_data); i++)
607 {
608 hw_if_index = event_data[i];
Steven Luongbac326c2019-08-05 09:47:58 -0700609 if (vnet_get_hw_interface_or_null (vnm, hw_if_index))
610 /* walk hw interface to process all subinterfaces */
611 vnet_hw_interface_walk_sw (vnm, hw_if_index,
612 bond_active_interface_switch_cb, 0);
Steven9f781d82018-06-05 11:09:32 -0700613 }
614 vec_reset_length (event_data);
615 }
616 return 0;
617}
618
619/* *INDENT-OFF* */
620VLIB_REGISTER_NODE (bond_process_node) = {
621 .function = bond_process,
Damjan Marion7ca5aaa2019-09-24 18:10:49 +0200622 .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED,
Steven9f781d82018-06-05 11:09:32 -0700623 .type = VLIB_NODE_TYPE_PROCESS,
624 .name = "bond-process",
625};
626/* *INDENT-ON* */
627
Steven9cd2d7a2017-12-20 12:43:01 -0800628/* *INDENT-OFF* */
629VNET_DEVICE_CLASS (bond_dev_class) = {
630 .name = "bond",
Steven9cd2d7a2017-12-20 12:43:01 -0800631 .tx_function_n_errors = BOND_TX_N_ERROR,
632 .tx_function_error_strings = bond_tx_error_strings,
633 .format_device_name = format_bond_interface_name,
Steven4f8863b2018-04-12 19:36:19 -0700634 .set_l2_mode_function = bond_set_l2_mode_function,
Steven9cd2d7a2017-12-20 12:43:01 -0800635 .admin_up_down_function = bond_interface_admin_up_down,
636 .subif_add_del_function = bond_subif_add_del_function,
637 .format_tx_trace = format_bond_tx_trace,
Matthew Smithe83aa452019-11-14 10:36:02 -0600638 .mac_addr_add_del_function = bond_add_del_mac_address,
Steven9cd2d7a2017-12-20 12:43:01 -0800639};
640
Steven9cd2d7a2017-12-20 12:43:01 -0800641/* *INDENT-ON* */
642
Steven Luongbac326c2019-08-05 09:47:58 -0700643static clib_error_t *
Steven Luong4c4223e2020-07-15 08:44:54 -0700644bond_member_interface_add_del (vnet_main_t * vnm, u32 sw_if_index, u32 is_add)
Steven Luongbac326c2019-08-05 09:47:58 -0700645{
646 bond_main_t *bm = &bond_main;
Steven Luong4c4223e2020-07-15 08:44:54 -0700647 member_if_t *mif;
648 bond_detach_member_args_t args = { 0 };
Steven Luongbac326c2019-08-05 09:47:58 -0700649
650 if (is_add)
651 return 0;
Steven Luong4c4223e2020-07-15 08:44:54 -0700652 mif = bond_get_member_by_sw_if_index (sw_if_index);
653 if (!mif)
Steven Luongbac326c2019-08-05 09:47:58 -0700654 return 0;
Steven Luong4c4223e2020-07-15 08:44:54 -0700655 args.member = sw_if_index;
656 bond_detach_member (bm->vlib_main, &args);
Steven Luongbac326c2019-08-05 09:47:58 -0700657 return args.error;
658}
659
Steven Luong4c4223e2020-07-15 08:44:54 -0700660VNET_SW_INTERFACE_ADD_DEL_FUNCTION (bond_member_interface_add_del);
Steven Luongbac326c2019-08-05 09:47:58 -0700661
Steven9cd2d7a2017-12-20 12:43:01 -0800662/*
663 * fd.io coding-style-patch-verification: ON
664 *
665 * Local Variables:
666 * eval: (c-set-style "gnu")
667 * End:
668 */