blob: f45a31ce99a8a62b5a41be8e348a97bd5618e0bf [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#include <stdint.h>
19#include <vlib/vlib.h>
20#include <vlib/unix/unix.h>
21#include <vnet/ethernet/ethernet.h>
22#include <vnet/bonding/node.h>
23
24void
25bond_disable_collecting_distributing (vlib_main_t * vm, slave_if_t * sif)
26{
Steven9f781d82018-06-05 11:09:32 -070027 bond_main_t *bm = &bond_main;
Steven9cd2d7a2017-12-20 12:43:01 -080028 bond_if_t *bif;
29 int i;
30 uword p;
Zhiyong Yang6865d3c2019-05-15 04:25:20 -040031 vnet_main_t *vnm = vnet_get_main ();
32 vnet_hw_interface_t *hw;
Steven9f781d82018-06-05 11:09:32 -070033 u8 switching_active = 0;
Steven9cd2d7a2017-12-20 12:43:01 -080034
35 bif = bond_get_master_by_dev_instance (sif->bif_dev_instance);
Stevena005e7f2018-03-22 17:46:58 -070036 clib_spinlock_lock_if_init (&bif->lockp);
Steven9cd2d7a2017-12-20 12:43:01 -080037 vec_foreach_index (i, bif->active_slaves)
38 {
39 p = *vec_elt_at_index (bif->active_slaves, i);
40 if (p == sif->sw_if_index)
41 {
Zhiyong Yang6865d3c2019-05-15 04:25:20 -040042 if (sif->sw_if_index == bif->sw_if_index_working)
43 {
44 switching_active = 1;
45 if (bif->mode == BOND_MODE_ACTIVE_BACKUP)
46 bif->is_local_numa = 0;
47 }
Steven9cd2d7a2017-12-20 12:43:01 -080048 vec_del1 (bif->active_slaves, i);
49 hash_unset (bif->active_slave_by_sw_if_index, sif->sw_if_index);
Zhiyong Yang751e3f32019-06-26 05:49:14 -040050 if (sif->lacp_enabled && bif->numa_only)
51 {
52 /* For lacp mode, if we check it is a slave on local numa node,
53 bif->n_numa_slaves should be decreased by 1 becasue the first
54 bif->n_numa_slaves are all slaves on local numa node */
55 if (i < bif->n_numa_slaves)
56 {
57 bif->n_numa_slaves--;
58 ASSERT (bif->n_numa_slaves >= 0);
59 }
60 }
Steven9cd2d7a2017-12-20 12:43:01 -080061 break;
62 }
63 }
Zhiyong Yang6865d3c2019-05-15 04:25:20 -040064
65 /* We get a new slave just becoming active */
66 if ((bif->mode == BOND_MODE_ACTIVE_BACKUP) && switching_active)
67 {
68 if ((vec_len (bif->active_slaves) >= 1))
69 {
70 /* scan all slaves and try to find the first slave with local numa node. */
71 vec_foreach_index (i, bif->active_slaves)
72 {
73 p = *vec_elt_at_index (bif->active_slaves, i);
74 hw = vnet_get_sup_hw_interface (vnm, p);
75 if (vm->numa_node == hw->numa_node)
76 {
77 bif->sw_if_index_working = p;
78 bif->is_local_numa = 1;
79 vlib_process_signal_event (bm->vlib_main,
80 bond_process_node.index,
81 BOND_SEND_GARP_NA,
82 bif->hw_if_index);
83 break;
84 }
85 }
86 }
87
88 /* No local numa node is found in the active slave set. Use the first slave */
89 if ((bif->is_local_numa == 0) && (vec_len (bif->active_slaves) >= 1))
90 {
91 p = *vec_elt_at_index (bif->active_slaves, 0);
92 bif->sw_if_index_working = p;
93 vlib_process_signal_event (bm->vlib_main, bond_process_node.index,
94 BOND_SEND_GARP_NA, bif->hw_if_index);
95 }
96 }
Stevena005e7f2018-03-22 17:46:58 -070097 clib_spinlock_unlock_if_init (&bif->lockp);
Zhiyong Yang6865d3c2019-05-15 04:25:20 -040098
99 return;
Steven9cd2d7a2017-12-20 12:43:01 -0800100}
101
102void
103bond_enable_collecting_distributing (vlib_main_t * vm, slave_if_t * sif)
104{
105 bond_if_t *bif;
Steven9f781d82018-06-05 11:09:32 -0700106 bond_main_t *bm = &bond_main;
Zhiyong Yang6865d3c2019-05-15 04:25:20 -0400107 vnet_main_t *vnm = vnet_get_main ();
108 vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sif->sw_if_index);
109 int i;
110 uword p;
Steven9cd2d7a2017-12-20 12:43:01 -0800111
112 bif = bond_get_master_by_dev_instance (sif->bif_dev_instance);
Stevena005e7f2018-03-22 17:46:58 -0700113 clib_spinlock_lock_if_init (&bif->lockp);
Steven9cd2d7a2017-12-20 12:43:01 -0800114 if (!hash_get (bif->active_slave_by_sw_if_index, sif->sw_if_index))
115 {
116 hash_set (bif->active_slave_by_sw_if_index, sif->sw_if_index,
117 sif->sw_if_index);
Zhiyong Yang751e3f32019-06-26 05:49:14 -0400118
119 if ((sif->lacp_enabled && bif->numa_only)
120 && (vm->numa_node == hw->numa_node))
121 {
122 vec_insert_elts (bif->active_slaves, &sif->sw_if_index, 1,
123 bif->n_numa_slaves);
124 bif->n_numa_slaves++;
125 }
126 else
127 {
128 vec_add1 (bif->active_slaves, sif->sw_if_index);
129 }
Steven9f781d82018-06-05 11:09:32 -0700130
131 /* First slave becomes active? */
132 if ((vec_len (bif->active_slaves) == 1) &&
133 (bif->mode == BOND_MODE_ACTIVE_BACKUP))
Zhiyong Yang6865d3c2019-05-15 04:25:20 -0400134 {
135 bif->sw_if_index_working = sif->sw_if_index;
136 bif->is_local_numa = (vm->numa_node == hw->numa_node) ? 1 : 0;
137 vlib_process_signal_event (bm->vlib_main, bond_process_node.index,
138 BOND_SEND_GARP_NA, bif->hw_if_index);
139 }
140 else if ((vec_len (bif->active_slaves) > 1)
141 && (bif->mode == BOND_MODE_ACTIVE_BACKUP)
142 && bif->is_local_numa == 0)
143 {
144 if (vm->numa_node == hw->numa_node)
145 {
146 vec_foreach_index (i, bif->active_slaves)
147 {
148 p = *vec_elt_at_index (bif->active_slaves, 0);
149 if (p == sif->sw_if_index)
150 break;
151
152 vec_del1 (bif->active_slaves, 0);
153 hash_unset (bif->active_slave_by_sw_if_index, p);
154 vec_add1 (bif->active_slaves, p);
155 hash_set (bif->active_slave_by_sw_if_index, p, p);
156 }
157 bif->sw_if_index_working = sif->sw_if_index;
158 bif->is_local_numa = 1;
159 vlib_process_signal_event (bm->vlib_main,
160 bond_process_node.index,
161 BOND_SEND_GARP_NA, bif->hw_if_index);
162
163 }
164 }
Steven9cd2d7a2017-12-20 12:43:01 -0800165 }
Stevena005e7f2018-03-22 17:46:58 -0700166 clib_spinlock_unlock_if_init (&bif->lockp);
Zhiyong Yang6865d3c2019-05-15 04:25:20 -0400167
168 return;
Steven9cd2d7a2017-12-20 12:43:01 -0800169}
170
171int
172bond_dump_ifs (bond_interface_details_t ** out_bondifs)
173{
174 vnet_main_t *vnm = vnet_get_main ();
175 bond_main_t *bm = &bond_main;
176 bond_if_t *bif;
177 vnet_hw_interface_t *hi;
178 bond_interface_details_t *r_bondifs = NULL;
179 bond_interface_details_t *bondif = NULL;
180
181 /* *INDENT-OFF* */
182 pool_foreach (bif, bm->interfaces,
183 vec_add2(r_bondifs, bondif, 1);
Dave Barachb7b92992018-10-17 10:38:51 -0400184 clib_memset (bondif, 0, sizeof (*bondif));
Alexander Chernavinad9d5282018-12-13 09:08:09 -0500185 bondif->id = bif->id;
Steven9cd2d7a2017-12-20 12:43:01 -0800186 bondif->sw_if_index = bif->sw_if_index;
187 hi = vnet_get_hw_interface (vnm, bif->hw_if_index);
188 clib_memcpy(bondif->interface_name, hi->name,
189 MIN (ARRAY_LEN (bondif->interface_name) - 1,
190 strlen ((const char *) hi->name)));
191 bondif->mode = bif->mode;
192 bondif->lb = bif->lb;
Zhiyong Yang751e3f32019-06-26 05:49:14 -0400193 bondif->numa_only = bif->numa_only;
Steven9cd2d7a2017-12-20 12:43:01 -0800194 bondif->active_slaves = vec_len (bif->active_slaves);
195 bondif->slaves = vec_len (bif->slaves);
196 );
197 /* *INDENT-ON* */
198
199 *out_bondifs = r_bondifs;
200
201 return 0;
202}
203
204int
205bond_dump_slave_ifs (slave_interface_details_t ** out_slaveifs,
206 u32 bond_sw_if_index)
207{
208 vnet_main_t *vnm = vnet_get_main ();
209 bond_if_t *bif;
210 vnet_hw_interface_t *hi;
211 vnet_sw_interface_t *sw;
212 slave_interface_details_t *r_slaveifs = NULL;
213 slave_interface_details_t *slaveif = NULL;
214 u32 *sw_if_index = NULL;
215 slave_if_t *sif;
216
217 bif = bond_get_master_by_sw_if_index (bond_sw_if_index);
218 if (!bif)
219 return 1;
220
221 vec_foreach (sw_if_index, bif->slaves)
222 {
223 vec_add2 (r_slaveifs, slaveif, 1);
Dave Barachb7b92992018-10-17 10:38:51 -0400224 clib_memset (slaveif, 0, sizeof (*slaveif));
Steven9cd2d7a2017-12-20 12:43:01 -0800225 sif = bond_get_slave_by_sw_if_index (*sw_if_index);
226 if (sif)
227 {
228 sw = vnet_get_sw_interface (vnm, sif->sw_if_index);
229 hi = vnet_get_hw_interface (vnm, sw->hw_if_index);
230 clib_memcpy (slaveif->interface_name, hi->name,
231 MIN (ARRAY_LEN (slaveif->interface_name) - 1,
232 strlen ((const char *) hi->name)));
233 slaveif->sw_if_index = sif->sw_if_index;
234 slaveif->is_passive = sif->is_passive;
235 slaveif->is_long_timeout = sif->is_long_timeout;
236 }
237 }
238 *out_slaveifs = r_slaveifs;
239
240 return 0;
241}
242
243static void
244bond_delete_neighbor (vlib_main_t * vm, bond_if_t * bif, slave_if_t * sif)
245{
246 bond_main_t *bm = &bond_main;
247 vnet_main_t *vnm = vnet_get_main ();
248 int i;
Stevence2db6a2018-04-23 17:06:24 -0700249 vnet_hw_interface_t *sif_hw;
Steven4f8863b2018-04-12 19:36:19 -0700250
251 sif_hw = vnet_get_sup_hw_interface (vnm, sif->sw_if_index);
Steven9cd2d7a2017-12-20 12:43:01 -0800252
253 bif->port_number_bitmap =
254 clib_bitmap_set (bif->port_number_bitmap,
255 ntohs (sif->actor_admin.port_number) - 1, 0);
Steven0d883012018-05-11 11:06:23 -0700256 bm->slave_by_sw_if_index[sif->sw_if_index] = 0;
Steven9cd2d7a2017-12-20 12:43:01 -0800257 vec_free (sif->last_marker_pkt);
258 vec_free (sif->last_rx_pkt);
259 vec_foreach_index (i, bif->slaves)
260 {
261 uword p = *vec_elt_at_index (bif->slaves, i);
262 if (p == sif->sw_if_index)
263 {
264 vec_del1 (bif->slaves, i);
265 break;
266 }
267 }
268
269 bond_disable_collecting_distributing (vm, sif);
270
Steven5967baf2018-09-24 21:09:36 -0700271 vnet_feature_enable_disable ("device-input", "bond-input",
272 sif_hw->hw_if_index, 0, 0, 0);
273
Steven9cd2d7a2017-12-20 12:43:01 -0800274 /* Put back the old mac */
Steven4f8863b2018-04-12 19:36:19 -0700275 vnet_hw_interface_change_mac_address (vnm, sif_hw->hw_if_index,
Steven9cd2d7a2017-12-20 12:43:01 -0800276 sif->persistent_hw_address);
277
Steven9cd2d7a2017-12-20 12:43:01 -0800278 if ((bif->mode == BOND_MODE_LACP) && bm->lacp_enable_disable)
279 (*bm->lacp_enable_disable) (vm, bif, sif, 0);
Steven5967baf2018-09-24 21:09:36 -0700280
281 pool_put (bm->neighbors, sif);
Steven9cd2d7a2017-12-20 12:43:01 -0800282}
283
284int
285bond_delete_if (vlib_main_t * vm, u32 sw_if_index)
286{
287 bond_main_t *bm = &bond_main;
288 vnet_main_t *vnm = vnet_get_main ();
289 bond_if_t *bif;
290 slave_if_t *sif;
291 vnet_hw_interface_t *hw;
292 u32 *sif_sw_if_index;
Steven70488ab2018-03-28 17:59:00 -0700293 u32 **s_list = 0;
294 u32 i;
Steven9cd2d7a2017-12-20 12:43:01 -0800295
296 hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
297 if (hw == NULL || bond_dev_class.index != hw->dev_class_index)
298 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
299
300 bif = bond_get_master_by_dev_instance (hw->dev_instance);
301
302 vec_foreach (sif_sw_if_index, bif->slaves)
303 {
Steven70488ab2018-03-28 17:59:00 -0700304 vec_add1 (s_list, sif_sw_if_index);
Steven9cd2d7a2017-12-20 12:43:01 -0800305 }
306
Steven70488ab2018-03-28 17:59:00 -0700307 for (i = 0; i < vec_len (s_list); i++)
308 {
309 sif_sw_if_index = s_list[i];
310 sif = bond_get_slave_by_sw_if_index (*sif_sw_if_index);
311 if (sif)
312 bond_delete_neighbor (vm, bif, sif);
313 }
314
315 if (s_list)
316 vec_free (s_list);
317
Steven9cd2d7a2017-12-20 12:43:01 -0800318 /* bring down the interface */
319 vnet_hw_interface_set_flags (vnm, bif->hw_if_index, 0);
320 vnet_sw_interface_set_flags (vnm, bif->sw_if_index, 0);
321
322 ethernet_delete_interface (vnm, bif->hw_if_index);
323
324 clib_bitmap_free (bif->port_number_bitmap);
325 hash_unset (bm->bond_by_sw_if_index, bif->sw_if_index);
Alexander Chernavinad9d5282018-12-13 09:08:09 -0500326 hash_unset (bm->id_used, bif->id);
Dave Barachb7b92992018-10-17 10:38:51 -0400327 clib_memset (bif, 0, sizeof (*bif));
Steven9cd2d7a2017-12-20 12:43:01 -0800328 pool_put (bm->interfaces, bif);
329
330 return 0;
331}
332
333void
334bond_create_if (vlib_main_t * vm, bond_create_if_args_t * args)
335{
336 bond_main_t *bm = &bond_main;
337 vnet_main_t *vnm = vnet_get_main ();
338 vnet_sw_interface_t *sw;
339 bond_if_t *bif;
340
341 if ((args->mode == BOND_MODE_LACP) && bm->lacp_plugin_loaded == 0)
342 {
343 args->rv = VNET_API_ERROR_FEATURE_DISABLED;
344 args->error = clib_error_return (0, "LACP plugin is not loaded");
345 return;
346 }
347 if (args->mode > BOND_MODE_LACP || args->mode < BOND_MODE_ROUND_ROBIN)
348 {
349 args->rv = VNET_API_ERROR_INVALID_ARGUMENT;
350 args->error = clib_error_return (0, "Invalid mode");
351 return;
352 }
353 if (args->lb > BOND_LB_L23)
354 {
355 args->rv = VNET_API_ERROR_INVALID_ARGUMENT;
356 args->error = clib_error_return (0, "Invalid load-balance");
357 return;
358 }
359 pool_get (bm->interfaces, bif);
Dave Barachb7b92992018-10-17 10:38:51 -0400360 clib_memset (bif, 0, sizeof (*bif));
Steven9cd2d7a2017-12-20 12:43:01 -0800361 bif->dev_instance = bif - bm->interfaces;
Alexander Chernavinad9d5282018-12-13 09:08:09 -0500362 bif->id = args->id;
Steven9cd2d7a2017-12-20 12:43:01 -0800363 bif->lb = args->lb;
364 bif->mode = args->mode;
365
Alexander Chernavinad9d5282018-12-13 09:08:09 -0500366 // Adjust requested interface id
367 if (bif->id == ~0)
368 bif->id = bif->dev_instance;
369 if (hash_get (bm->id_used, bif->id))
370 {
371 args->rv = VNET_API_ERROR_INSTANCE_IN_USE;
372 pool_put (bm->interfaces, bif);
373 return;
374 }
375 hash_set (bm->id_used, bif->id, 1);
376
Steven9cd2d7a2017-12-20 12:43:01 -0800377 // Special load-balance mode used for rr and bc
378 if (bif->mode == BOND_MODE_ROUND_ROBIN)
379 bif->lb = BOND_LB_RR;
380 else if (bif->mode == BOND_MODE_BROADCAST)
381 bif->lb = BOND_LB_BC;
Steven318de5d2018-10-06 22:30:50 -0700382 else if (bif->mode == BOND_MODE_ACTIVE_BACKUP)
383 bif->lb = BOND_LB_AB;
Steven9cd2d7a2017-12-20 12:43:01 -0800384
385 bif->use_custom_mac = args->hw_addr_set;
386 if (!args->hw_addr_set)
387 {
388 f64 now = vlib_time_now (vm);
389 u32 rnd;
390 rnd = (u32) (now * 1e6);
391 rnd = random_u32 (&rnd);
392
393 memcpy (args->hw_addr + 2, &rnd, sizeof (rnd));
394 args->hw_addr[0] = 2;
395 args->hw_addr[1] = 0xfe;
396 }
397 memcpy (bif->hw_address, args->hw_addr, 6);
398 args->error = ethernet_register_interface
Alexander Chernavinad9d5282018-12-13 09:08:09 -0500399 (vnm, bond_dev_class.index, bif->dev_instance /* device instance */ ,
Steven9cd2d7a2017-12-20 12:43:01 -0800400 bif->hw_address /* ethernet address */ ,
401 &bif->hw_if_index, 0 /* flag change */ );
402
403 if (args->error)
404 {
405 args->rv = VNET_API_ERROR_INVALID_REGISTRATION;
Alexander Chernavinad9d5282018-12-13 09:08:09 -0500406 hash_unset (bm->id_used, bif->id);
Steven9cd2d7a2017-12-20 12:43:01 -0800407 pool_put (bm->interfaces, bif);
408 return;
409 }
410
411 sw = vnet_get_hw_sw_interface (vnm, bif->hw_if_index);
412 bif->sw_if_index = sw->sw_if_index;
413 bif->group = bif->sw_if_index;
Zhiyong Yang751e3f32019-06-26 05:49:14 -0400414 bif->numa_only = args->numa_only;
Stevena005e7f2018-03-22 17:46:58 -0700415 if (vlib_get_thread_main ()->n_vlib_mains > 1)
416 clib_spinlock_init (&bif->lockp);
Steven9cd2d7a2017-12-20 12:43:01 -0800417
418 vnet_hw_interface_set_flags (vnm, bif->hw_if_index,
419 VNET_HW_INTERFACE_FLAG_LINK_UP);
420
421 hash_set (bm->bond_by_sw_if_index, bif->sw_if_index, bif->dev_instance);
422
423 // for return
424 args->sw_if_index = bif->sw_if_index;
Mohsin Kazmi8c1280f2019-07-01 11:08:20 +0200425 args->rv = 0;
Steven9cd2d7a2017-12-20 12:43:01 -0800426}
427
428static clib_error_t *
429bond_create_command_fn (vlib_main_t * vm, unformat_input_t * input,
430 vlib_cli_command_t * cmd)
431{
432 unformat_input_t _line_input, *line_input = &_line_input;
433 bond_create_if_args_t args = { 0 };
434 u8 mode_is_set = 0;
435
436 /* Get a line of input. */
437 if (!unformat_user (input, unformat_line_input, line_input))
438 return clib_error_return (0, "Missing required arguments.");
439
Alexander Chernavinad9d5282018-12-13 09:08:09 -0500440 args.id = ~0;
Steven9cd2d7a2017-12-20 12:43:01 -0800441 args.mode = -1;
442 args.lb = BOND_LB_L2;
Mohsin Kazmi8c1280f2019-07-01 11:08:20 +0200443 args.rv = -1;
Steven9cd2d7a2017-12-20 12:43:01 -0800444 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
445 {
446 if (unformat (line_input, "mode %U", unformat_bond_mode, &args.mode))
447 mode_is_set = 1;
448 else if (((args.mode == BOND_MODE_LACP) || (args.mode == BOND_MODE_XOR))
449 && unformat (line_input, "load-balance %U",
450 unformat_bond_load_balance, &args.lb))
451 ;
452 else if (unformat (line_input, "hw-addr %U",
453 unformat_ethernet_address, args.hw_addr))
454 args.hw_addr_set = 1;
Alexander Chernavinad9d5282018-12-13 09:08:09 -0500455 else if (unformat (line_input, "id %u", &args.id))
456 ;
Zhiyong Yang751e3f32019-06-26 05:49:14 -0400457 else if (unformat (line_input, "numa-only"))
458 {
459 if (args.mode == BOND_MODE_LACP)
460 args.numa_only = 1;
461 else
462 return clib_error_return (0,
463 "Only lacp mode supports numa-only so far!");
464 }
Steven9cd2d7a2017-12-20 12:43:01 -0800465 else
466 return clib_error_return (0, "unknown input `%U'",
467 format_unformat_error, input);
468 }
469 unformat_free (line_input);
470
471 if (mode_is_set == 0)
472 return clib_error_return (0, "Missing bond mode");
473
474 bond_create_if (vm, &args);
475
Mohsin Kazmi8c1280f2019-07-01 11:08:20 +0200476 if (!args.rv)
477 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name,
478 vnet_get_main (), args.sw_if_index);
479
Steven9cd2d7a2017-12-20 12:43:01 -0800480 return args.error;
481}
482
483/* *INDENT-OFF* */
484VLIB_CLI_COMMAND (bond_create_command, static) = {
485 .path = "create bond",
486 .short_help = "create bond mode {round-robin | active-backup | broadcast | "
Zhiyong Yanga58fec12019-07-21 21:51:21 -0400487 "{lacp | xor} [load-balance { l2 | l23 | l34 } [numa-only]]} [hw-addr <mac-address>] "
Alexander Chernavinad9d5282018-12-13 09:08:09 -0500488 "[id <if-id>]",
Steven9cd2d7a2017-12-20 12:43:01 -0800489 .function = bond_create_command_fn,
490};
491/* *INDENT-ON* */
492
493static clib_error_t *
494bond_delete_command_fn (vlib_main_t * vm, unformat_input_t * input,
495 vlib_cli_command_t * cmd)
496{
497 unformat_input_t _line_input, *line_input = &_line_input;
498 u32 sw_if_index = ~0;
499 vnet_main_t *vnm = vnet_get_main ();
500 int rv;
501
502 /* Get a line of input. */
503 if (!unformat_user (input, unformat_line_input, line_input))
504 return clib_error_return (0, "Missing <interface>");
505
506 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
507 {
508 if (unformat (line_input, "sw_if_index %d", &sw_if_index))
509 ;
510 else if (unformat (line_input, "%U", unformat_vnet_sw_interface,
511 vnm, &sw_if_index))
512 ;
513 else
514 return clib_error_return (0, "unknown input `%U'",
515 format_unformat_error, input);
516 }
517 unformat_free (line_input);
518
519 if (sw_if_index == ~0)
520 return clib_error_return (0,
521 "please specify interface name or sw_if_index");
522
523 rv = bond_delete_if (vm, sw_if_index);
524 if (rv == VNET_API_ERROR_INVALID_SW_IF_INDEX)
525 return clib_error_return (0, "not a bond interface");
526 else if (rv != 0)
527 return clib_error_return (0, "error on deleting bond interface");
528
529 return 0;
530}
531
532/* *INDENT-OFF* */
533VLIB_CLI_COMMAND (bond_delete__command, static) =
534{
535 .path = "delete bond",
536 .short_help = "delete bond {<interface> | sw_if_index <sw_idx>}",
537 .function = bond_delete_command_fn,
538};
539/* *INDENT-ON* */
540
541void
542bond_enslave (vlib_main_t * vm, bond_enslave_args_t * args)
543{
544 bond_main_t *bm = &bond_main;
545 vnet_main_t *vnm = vnet_get_main ();
546 bond_if_t *bif;
547 slave_if_t *sif;
548 vnet_interface_main_t *im = &vnm->interface_main;
Steven4f8863b2018-04-12 19:36:19 -0700549 vnet_hw_interface_t *bif_hw, *sif_hw;
Steven9cd2d7a2017-12-20 12:43:01 -0800550 vnet_sw_interface_t *sw;
Stevenc4e99c52018-09-27 20:06:26 -0700551 u32 thread_index;
552 u32 sif_if_index;
Steven9cd2d7a2017-12-20 12:43:01 -0800553
554 bif = bond_get_master_by_sw_if_index (args->group);
555 if (!bif)
556 {
557 args->rv = VNET_API_ERROR_INVALID_INTERFACE;
558 args->error = clib_error_return (0, "bond interface not found");
559 return;
560 }
561 // make sure the interface is not already enslaved
562 if (bond_get_slave_by_sw_if_index (args->slave))
563 {
564 args->rv = VNET_API_ERROR_VALUE_EXIST;
565 args->error = clib_error_return (0, "interface was already enslaved");
566 return;
567 }
Steven4f8863b2018-04-12 19:36:19 -0700568 sif_hw = vnet_get_sup_hw_interface (vnm, args->slave);
569 if (sif_hw->dev_class_index == bond_dev_class.index)
Steven9cd2d7a2017-12-20 12:43:01 -0800570 {
571 args->rv = VNET_API_ERROR_INVALID_INTERFACE;
572 args->error =
573 clib_error_return (0, "bond interface cannot be enslaved");
574 return;
575 }
576 pool_get (bm->neighbors, sif);
Dave Barachb7b92992018-10-17 10:38:51 -0400577 clib_memset (sif, 0, sizeof (*sif));
Steven9cd2d7a2017-12-20 12:43:01 -0800578 sw = pool_elt_at_index (im->sw_interfaces, args->slave);
Steven Luongbac326c2019-08-05 09:47:58 -0700579 /* port_enabled is both admin up and hw link up */
580 sif->port_enabled = vnet_sw_interface_is_up (vnm, sw->sw_if_index);
Steven9cd2d7a2017-12-20 12:43:01 -0800581 sif->sw_if_index = sw->sw_if_index;
582 sif->hw_if_index = sw->hw_if_index;
583 sif->packet_template_index = (u8) ~ 0;
584 sif->is_passive = args->is_passive;
585 sif->group = args->group;
586 sif->bif_dev_instance = bif->dev_instance;
587 sif->mode = bif->mode;
588
589 sif->is_long_timeout = args->is_long_timeout;
590 if (args->is_long_timeout)
591 sif->ttl_in_seconds = LACP_LONG_TIMOUT_TIME;
592 else
593 sif->ttl_in_seconds = LACP_SHORT_TIMOUT_TIME;
594
Steven0d883012018-05-11 11:06:23 -0700595 vec_validate_aligned (bm->slave_by_sw_if_index, sif->sw_if_index,
596 CLIB_CACHE_LINE_BYTES);
597 /*
598 * sif - bm->neighbors may be 0
599 * Left shift it by 1 bit to distinguish the valid entry that we actually
600 * store from the null entries
601 */
602 bm->slave_by_sw_if_index[sif->sw_if_index] =
603 (uword) (((sif - bm->neighbors) << 1) | 1);
Steven9cd2d7a2017-12-20 12:43:01 -0800604 vec_add1 (bif->slaves, sif->sw_if_index);
605
Steven4f8863b2018-04-12 19:36:19 -0700606 sif_hw = vnet_get_sup_hw_interface (vnm, sif->sw_if_index);
607
Steven9cd2d7a2017-12-20 12:43:01 -0800608 /* Save the old mac */
Steven4f8863b2018-04-12 19:36:19 -0700609 memcpy (sif->persistent_hw_address, sif_hw->hw_address, 6);
610 bif_hw = vnet_get_sup_hw_interface (vnm, bif->sw_if_index);
Steven9cd2d7a2017-12-20 12:43:01 -0800611 if (bif->use_custom_mac)
612 {
Steven4f8863b2018-04-12 19:36:19 -0700613 vnet_hw_interface_change_mac_address (vnm, sif_hw->hw_if_index,
Steven9cd2d7a2017-12-20 12:43:01 -0800614 bif->hw_address);
615 }
616 else
617 {
618 // bond interface gets the mac address from the first slave
619 if (vec_len (bif->slaves) == 1)
620 {
Steven4f8863b2018-04-12 19:36:19 -0700621 memcpy (bif->hw_address, sif_hw->hw_address, 6);
622 vnet_hw_interface_change_mac_address (vnm, bif_hw->hw_if_index,
623 sif_hw->hw_address);
Steven9cd2d7a2017-12-20 12:43:01 -0800624 }
625 else
626 {
627 // subsequent slaves gets the mac address of the bond interface
Steven4f8863b2018-04-12 19:36:19 -0700628 vnet_hw_interface_change_mac_address (vnm, sif_hw->hw_if_index,
Steven9cd2d7a2017-12-20 12:43:01 -0800629 bif->hw_address);
630 }
631 }
632
Steven4f8863b2018-04-12 19:36:19 -0700633 if (bif_hw->l2_if_count)
634 {
635 ethernet_set_flags (vnm, sif_hw->hw_if_index,
636 ETHERNET_INTERFACE_FLAG_ACCEPT_ALL);
637 /* ensure all packets go to ethernet-input */
638 ethernet_set_rx_redirect (vnm, sif_hw, 1);
639 }
640
Stevene43278f2019-01-17 15:11:29 -0800641 if (bif->mode == BOND_MODE_LACP)
Steven9cd2d7a2017-12-20 12:43:01 -0800642 {
Stevene43278f2019-01-17 15:11:29 -0800643 if (bm->lacp_enable_disable)
644 (*bm->lacp_enable_disable) (vm, bif, sif, 1);
Steven9cd2d7a2017-12-20 12:43:01 -0800645 }
Steven Luongbac326c2019-08-05 09:47:58 -0700646 else if (sif->port_enabled)
Steven9cd2d7a2017-12-20 12:43:01 -0800647 {
648 bond_enable_collecting_distributing (vm, sif);
649 }
650
Stevenc4e99c52018-09-27 20:06:26 -0700651 vec_foreach_index (thread_index, bm->per_thread_data)
652 {
653 bond_per_thread_data_t *ptd = vec_elt_at_index (bm->per_thread_data,
654 thread_index);
655
Damjan Marion69fdfee2018-10-06 14:33:18 +0200656 vec_validate_aligned (ptd->per_port_queue, vec_len (bif->slaves) - 1,
Stevenc4e99c52018-09-27 20:06:26 -0700657 CLIB_CACHE_LINE_BYTES);
658
659 vec_foreach_index (sif_if_index, ptd->per_port_queue)
660 {
661 ptd->per_port_queue[sif_if_index].n_buffers = 0;
662 }
663 }
664
Steven9cd2d7a2017-12-20 12:43:01 -0800665 args->rv = vnet_feature_enable_disable ("device-input", "bond-input",
Steven4f8863b2018-04-12 19:36:19 -0700666 sif_hw->hw_if_index, 1, 0, 0);
Steven9cd2d7a2017-12-20 12:43:01 -0800667
668 if (args->rv)
669 {
670 args->error =
671 clib_error_return (0,
672 "Error encountered on input feature arc enable");
673 }
674}
675
676static clib_error_t *
677enslave_interface_command_fn (vlib_main_t * vm, unformat_input_t * input,
678 vlib_cli_command_t * cmd)
679{
680 bond_enslave_args_t args = { 0 };
681 unformat_input_t _line_input, *line_input = &_line_input;
682 vnet_main_t *vnm = vnet_get_main ();
683
684 /* Get a line of input. */
685 if (!unformat_user (input, unformat_line_input, line_input))
686 return clib_error_return (0, "Missing required arguments.");
687
688 args.slave = ~0;
689 args.group = ~0;
690 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
691 {
Stevenb3caf552018-03-27 15:04:47 -0700692 if (unformat (line_input, "%U %U",
693 unformat_vnet_sw_interface, vnm, &args.group,
Steven9cd2d7a2017-12-20 12:43:01 -0800694 unformat_vnet_sw_interface, vnm, &args.slave))
695 ;
Steven9cd2d7a2017-12-20 12:43:01 -0800696 else if (unformat (line_input, "passive"))
697 args.is_passive = 1;
698 else if (unformat (line_input, "long-timeout"))
699 args.is_long_timeout = 1;
700 else
701 {
702 args.error = clib_error_return (0, "unknown input `%U'",
703 format_unformat_error, input);
704 break;
705 }
706 }
707 unformat_free (line_input);
708
709 if (args.error)
710 return args.error;
711 if (args.group == ~0)
712 return clib_error_return (0, "Missing bond interface");
713 if (args.slave == ~0)
Stevenb3caf552018-03-27 15:04:47 -0700714 return clib_error_return (0, "please specify valid slave interface name");
Steven9cd2d7a2017-12-20 12:43:01 -0800715
716 bond_enslave (vm, &args);
717
718 return args.error;
719}
720
721/* *INDENT-OFF* */
722VLIB_CLI_COMMAND (enslave_interface_command, static) = {
Stevenb3caf552018-03-27 15:04:47 -0700723 .path = "bond add",
724 .short_help = "bond add <BondEthernetx> <slave-interface> "
725 "[passive] [long-timeout]",
Steven9cd2d7a2017-12-20 12:43:01 -0800726 .function = enslave_interface_command_fn,
727};
728/* *INDENT-ON* */
729
730void
731bond_detach_slave (vlib_main_t * vm, bond_detach_slave_args_t * args)
732{
733 bond_if_t *bif;
734 slave_if_t *sif;
735
736 sif = bond_get_slave_by_sw_if_index (args->slave);
737 if (!sif)
738 {
739 args->rv = VNET_API_ERROR_INVALID_INTERFACE;
740 args->error = clib_error_return (0, "interface was not enslaved");
741 return;
742 }
743 bif = bond_get_master_by_dev_instance (sif->bif_dev_instance);
744 bond_delete_neighbor (vm, bif, sif);
745}
746
747static clib_error_t *
748detach_interface_command_fn (vlib_main_t * vm, unformat_input_t * input,
749 vlib_cli_command_t * cmd)
750{
751 bond_detach_slave_args_t args = { 0 };
752 unformat_input_t _line_input, *line_input = &_line_input;
753 vnet_main_t *vnm = vnet_get_main ();
754
755 /* Get a line of input. */
756 if (!unformat_user (input, unformat_line_input, line_input))
757 return clib_error_return (0, "Missing required arguments.");
758
759 args.slave = ~0;
760 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
761 {
Stevenb3caf552018-03-27 15:04:47 -0700762 if (unformat (line_input, "%U",
Steven9cd2d7a2017-12-20 12:43:01 -0800763 unformat_vnet_sw_interface, vnm, &args.slave))
764 ;
765 else
766 {
767 args.error = clib_error_return (0, "unknown input `%U'",
768 format_unformat_error, input);
769 break;
770 }
771 }
772 unformat_free (line_input);
773
774 if (args.error)
775 return args.error;
776 if (args.slave == ~0)
Stevenb3caf552018-03-27 15:04:47 -0700777 return clib_error_return (0, "please specify valid slave interface name");
Steven9cd2d7a2017-12-20 12:43:01 -0800778
779 bond_detach_slave (vm, &args);
780
781 return args.error;
782}
783
784/* *INDENT-OFF* */
785VLIB_CLI_COMMAND (detach_interface_command, static) = {
Stevenb3caf552018-03-27 15:04:47 -0700786 .path = "bond del",
787 .short_help = "bond del <slave-interface>",
Steven9cd2d7a2017-12-20 12:43:01 -0800788 .function = detach_interface_command_fn,
789};
790/* *INDENT-ON* */
791
792static void
793show_bond (vlib_main_t * vm)
794{
795 bond_main_t *bm = &bond_main;
796 bond_if_t *bif;
797
Steven318de5d2018-10-06 22:30:50 -0700798 vlib_cli_output (vm, "%-16s %-12s %-13s %-13s %-14s %s",
Steven9cd2d7a2017-12-20 12:43:01 -0800799 "interface name", "sw_if_index", "mode",
800 "load balance", "active slaves", "slaves");
801
802 /* *INDENT-OFF* */
803 pool_foreach (bif, bm->interfaces,
804 ({
Steven318de5d2018-10-06 22:30:50 -0700805 vlib_cli_output (vm, "%-16U %-12d %-13U %-13U %-14u %u",
Steven9cd2d7a2017-12-20 12:43:01 -0800806 format_bond_interface_name, bif->dev_instance,
807 bif->sw_if_index, format_bond_mode, bif->mode,
808 format_bond_load_balance, bif->lb,
809 vec_len (bif->active_slaves), vec_len (bif->slaves));
810 }));
811 /* *INDENT-ON* */
812}
813
814static void
815show_bond_details (vlib_main_t * vm)
816{
817 bond_main_t *bm = &bond_main;
818 bond_if_t *bif;
819 u32 *sw_if_index;
820
821 /* *INDENT-OFF* */
822 pool_foreach (bif, bm->interfaces,
823 ({
824 vlib_cli_output (vm, "%U", format_bond_interface_name, bif->dev_instance);
825 vlib_cli_output (vm, " mode: %U",
826 format_bond_mode, bif->mode);
827 vlib_cli_output (vm, " load balance: %U",
828 format_bond_load_balance, bif->lb);
829 if (bif->mode == BOND_MODE_ROUND_ROBIN)
830 vlib_cli_output (vm, " last xmit slave index: %u",
831 bif->lb_rr_last_index);
832 vlib_cli_output (vm, " number of active slaves: %d",
833 vec_len (bif->active_slaves));
834 vec_foreach (sw_if_index, bif->active_slaves)
835 {
836 vlib_cli_output (vm, " %U", format_vnet_sw_if_index_name,
837 vnet_get_main (), *sw_if_index);
838 }
839 vlib_cli_output (vm, " number of slaves: %d", vec_len (bif->slaves));
840 vec_foreach (sw_if_index, bif->slaves)
841 {
842 vlib_cli_output (vm, " %U", format_vnet_sw_if_index_name,
843 vnet_get_main (), *sw_if_index);
844 }
845 vlib_cli_output (vm, " device instance: %d", bif->dev_instance);
Alexander Chernavinad9d5282018-12-13 09:08:09 -0500846 vlib_cli_output (vm, " interface id: %d", bif->id);
Steven9cd2d7a2017-12-20 12:43:01 -0800847 vlib_cli_output (vm, " sw_if_index: %d", bif->sw_if_index);
848 vlib_cli_output (vm, " hw_if_index: %d", bif->hw_if_index);
849 }));
850 /* *INDENT-ON* */
851}
852
853static clib_error_t *
854show_bond_fn (vlib_main_t * vm, unformat_input_t * input,
855 vlib_cli_command_t * cmd)
856{
857 u8 details = 0;
858
859 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
860 {
861 if (unformat (input, "details"))
862 details = 1;
863 else
864 {
865 return clib_error_return (0, "unknown input `%U'",
866 format_unformat_error, input);
867 }
868 }
869
870 if (details)
871 show_bond_details (vm);
872 else
873 show_bond (vm);
874
875 return 0;
876}
877
878/* *INDENT-OFF* */
879VLIB_CLI_COMMAND (show_bond_command, static) = {
880 .path = "show bond",
881 .short_help = "show bond [details]",
882 .function = show_bond_fn,
883};
884/* *INDENT-ON* */
885
886clib_error_t *
887bond_cli_init (vlib_main_t * vm)
888{
889 bond_main_t *bm = &bond_main;
890
891 bm->vlib_main = vm;
892 bm->vnet_main = vnet_get_main ();
Steven0d883012018-05-11 11:06:23 -0700893 vec_validate_aligned (bm->slave_by_sw_if_index, 1, CLIB_CACHE_LINE_BYTES);
Stevenc4e99c52018-09-27 20:06:26 -0700894 vec_validate_aligned (bm->per_thread_data,
895 vlib_get_thread_main ()->n_vlib_mains - 1,
896 CLIB_CACHE_LINE_BYTES);
Steven9cd2d7a2017-12-20 12:43:01 -0800897
898 return 0;
899}
900
901VLIB_INIT_FUNCTION (bond_cli_init);
902
903/*
904 * fd.io coding-style-patch-verification: ON
905 *
906 * Local Variables:
907 * eval: (c-set-style "gnu")
908 * End:
909 */