blob: 09ef10f1b0598c53b998bad6ac06e08b9f893570 [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>
Steven Luong0f09a822019-08-07 12:20:22 -070023#include <vpp/stats/stat_segment.h>
Steven9cd2d7a2017-12-20 12:43:01 -080024
25void
26bond_disable_collecting_distributing (vlib_main_t * vm, slave_if_t * sif)
27{
Steven9f781d82018-06-05 11:09:32 -070028 bond_main_t *bm = &bond_main;
Steven9cd2d7a2017-12-20 12:43:01 -080029 bond_if_t *bif;
30 int i;
31 uword p;
Steven9f781d82018-06-05 11:09:32 -070032 u8 switching_active = 0;
Steven9cd2d7a2017-12-20 12:43:01 -080033
34 bif = bond_get_master_by_dev_instance (sif->bif_dev_instance);
Stevena005e7f2018-03-22 17:46:58 -070035 clib_spinlock_lock_if_init (&bif->lockp);
Steven9cd2d7a2017-12-20 12:43:01 -080036 vec_foreach_index (i, bif->active_slaves)
37 {
38 p = *vec_elt_at_index (bif->active_slaves, i);
39 if (p == sif->sw_if_index)
40 {
Steven Luonga1876b82019-08-20 16:58:00 -070041 if ((bif->mode == BOND_MODE_ACTIVE_BACKUP) && (i == 0) &&
42 (vec_len (bif->active_slaves) > 1))
43 /* deleting the active slave for active-backup */
44 switching_active = 1;
Steven9cd2d7a2017-12-20 12:43:01 -080045 vec_del1 (bif->active_slaves, i);
Zhiyong Yang751e3f32019-06-26 05:49:14 -040046 if (sif->lacp_enabled && bif->numa_only)
47 {
48 /* For lacp mode, if we check it is a slave on local numa node,
49 bif->n_numa_slaves should be decreased by 1 becasue the first
50 bif->n_numa_slaves are all slaves on local numa node */
51 if (i < bif->n_numa_slaves)
52 {
53 bif->n_numa_slaves--;
54 ASSERT (bif->n_numa_slaves >= 0);
55 }
56 }
Steven9cd2d7a2017-12-20 12:43:01 -080057 break;
58 }
59 }
Zhiyong Yang6865d3c2019-05-15 04:25:20 -040060
61 /* We get a new slave just becoming active */
Steven Luonga1876b82019-08-20 16:58:00 -070062 if (switching_active)
63 vlib_process_signal_event (bm->vlib_main, bond_process_node.index,
64 BOND_SEND_GARP_NA, bif->hw_if_index);
Stevena005e7f2018-03-22 17:46:58 -070065 clib_spinlock_unlock_if_init (&bif->lockp);
Steven9cd2d7a2017-12-20 12:43:01 -080066}
67
Steven Luonga1876b82019-08-20 16:58:00 -070068/*
69 * return 1 if s2 is preferred.
70 * return -1 if s1 is preferred.
71 */
72static int
73bond_slave_sort (void *a1, void *a2)
74{
75 u32 *s1 = a1;
76 u32 *s2 = a2;
77 slave_if_t *sif1 = bond_get_slave_by_sw_if_index (*s1);
78 slave_if_t *sif2 = bond_get_slave_by_sw_if_index (*s2);
79 bond_if_t *bif;
80
Dave Barachffd15462020-02-18 10:12:23 -050081 ALWAYS_ASSERT (sif1);
82 ALWAYS_ASSERT (sif2);
Steven Luonga1876b82019-08-20 16:58:00 -070083 /*
84 * sort entries according to preference rules:
85 * 1. biggest weight
86 * 2. numa-node
87 * 3. current active slave (to prevent churning)
88 * 4. lowest sw_if_index (for deterministic behavior)
89 *
90 */
91 if (sif2->weight > sif1->weight)
92 return 1;
93 if (sif2->weight < sif1->weight)
94 return -1;
95 else
96 {
97 if (sif2->is_local_numa > sif1->is_local_numa)
98 return 1;
99 if (sif2->is_local_numa < sif1->is_local_numa)
100 return -1;
101 else
102 {
103 bif = bond_get_master_by_dev_instance (sif1->bif_dev_instance);
104 /* Favor the current active slave to avoid churning */
105 if (bif->active_slaves[0] == sif2->sw_if_index)
106 return 1;
107 if (bif->active_slaves[0] == sif1->sw_if_index)
108 return -1;
109 /* go for the tiebreaker as the last resort */
110 if (sif1->sw_if_index > sif2->sw_if_index)
111 return 1;
112 if (sif1->sw_if_index < sif2->sw_if_index)
113 return -1;
114 else
115 ASSERT (0);
116 }
117 }
118 return 0;
119}
120
121static void
122bond_sort_slaves (bond_if_t * bif)
123{
124 bond_main_t *bm = &bond_main;
125 u32 old_active = bif->active_slaves[0];
126
127 vec_sort_with_function (bif->active_slaves, bond_slave_sort);
128 if (old_active != bif->active_slaves[0])
129 vlib_process_signal_event (bm->vlib_main, bond_process_node.index,
130 BOND_SEND_GARP_NA, bif->hw_if_index);
131}
132
Steven9cd2d7a2017-12-20 12:43:01 -0800133void
134bond_enable_collecting_distributing (vlib_main_t * vm, slave_if_t * sif)
135{
136 bond_if_t *bif;
Steven9f781d82018-06-05 11:09:32 -0700137 bond_main_t *bm = &bond_main;
Zhiyong Yang6865d3c2019-05-15 04:25:20 -0400138 vnet_main_t *vnm = vnet_get_main ();
139 vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sif->sw_if_index);
Steven Luong002723c2019-10-22 21:27:22 -0700140 int i;
141 uword p;
Steven9cd2d7a2017-12-20 12:43:01 -0800142
143 bif = bond_get_master_by_dev_instance (sif->bif_dev_instance);
Stevena005e7f2018-03-22 17:46:58 -0700144 clib_spinlock_lock_if_init (&bif->lockp);
Steven Luong002723c2019-10-22 21:27:22 -0700145 vec_foreach_index (i, bif->active_slaves)
146 {
147 p = *vec_elt_at_index (bif->active_slaves, i);
148 if (p == sif->sw_if_index)
149 goto done;
150 }
151
152 if (sif->lacp_enabled && bif->numa_only && (vm->numa_node == hw->numa_node))
Steven9cd2d7a2017-12-20 12:43:01 -0800153 {
Steven Luong002723c2019-10-22 21:27:22 -0700154 vec_insert_elts (bif->active_slaves, &sif->sw_if_index, 1,
155 bif->n_numa_slaves);
156 bif->n_numa_slaves++;
Steven9cd2d7a2017-12-20 12:43:01 -0800157 }
Steven Luong002723c2019-10-22 21:27:22 -0700158 else
159 vec_add1 (bif->active_slaves, sif->sw_if_index);
160
161 sif->is_local_numa = (vm->numa_node == hw->numa_node) ? 1 : 0;
162 if (bif->mode == BOND_MODE_ACTIVE_BACKUP)
163 {
164 if (vec_len (bif->active_slaves) == 1)
165 /* First slave becomes active? */
166 vlib_process_signal_event (bm->vlib_main, bond_process_node.index,
167 BOND_SEND_GARP_NA, bif->hw_if_index);
168 else
169 bond_sort_slaves (bif);
170 }
171
172done:
Stevena005e7f2018-03-22 17:46:58 -0700173 clib_spinlock_unlock_if_init (&bif->lockp);
Steven9cd2d7a2017-12-20 12:43:01 -0800174}
175
176int
177bond_dump_ifs (bond_interface_details_t ** out_bondifs)
178{
179 vnet_main_t *vnm = vnet_get_main ();
180 bond_main_t *bm = &bond_main;
181 bond_if_t *bif;
182 vnet_hw_interface_t *hi;
183 bond_interface_details_t *r_bondifs = NULL;
184 bond_interface_details_t *bondif = NULL;
185
186 /* *INDENT-OFF* */
187 pool_foreach (bif, bm->interfaces,
188 vec_add2(r_bondifs, bondif, 1);
Dave Barachb7b92992018-10-17 10:38:51 -0400189 clib_memset (bondif, 0, sizeof (*bondif));
Alexander Chernavinad9d5282018-12-13 09:08:09 -0500190 bondif->id = bif->id;
Steven9cd2d7a2017-12-20 12:43:01 -0800191 bondif->sw_if_index = bif->sw_if_index;
192 hi = vnet_get_hw_interface (vnm, bif->hw_if_index);
193 clib_memcpy(bondif->interface_name, hi->name,
194 MIN (ARRAY_LEN (bondif->interface_name) - 1,
Benoît Ganne5c828bc2019-09-27 18:08:22 +0200195 vec_len ((const char *) hi->name)));
196 /* enforce by memset() above */
197 ASSERT(0 == bondif->interface_name[ARRAY_LEN (bondif->interface_name) - 1]);
Steven9cd2d7a2017-12-20 12:43:01 -0800198 bondif->mode = bif->mode;
199 bondif->lb = bif->lb;
Zhiyong Yang751e3f32019-06-26 05:49:14 -0400200 bondif->numa_only = bif->numa_only;
Steven9cd2d7a2017-12-20 12:43:01 -0800201 bondif->active_slaves = vec_len (bif->active_slaves);
202 bondif->slaves = vec_len (bif->slaves);
203 );
204 /* *INDENT-ON* */
205
206 *out_bondifs = r_bondifs;
207
208 return 0;
209}
210
211int
212bond_dump_slave_ifs (slave_interface_details_t ** out_slaveifs,
213 u32 bond_sw_if_index)
214{
215 vnet_main_t *vnm = vnet_get_main ();
216 bond_if_t *bif;
217 vnet_hw_interface_t *hi;
218 vnet_sw_interface_t *sw;
219 slave_interface_details_t *r_slaveifs = NULL;
220 slave_interface_details_t *slaveif = NULL;
221 u32 *sw_if_index = NULL;
222 slave_if_t *sif;
223
224 bif = bond_get_master_by_sw_if_index (bond_sw_if_index);
225 if (!bif)
226 return 1;
227
228 vec_foreach (sw_if_index, bif->slaves)
229 {
230 vec_add2 (r_slaveifs, slaveif, 1);
Dave Barachb7b92992018-10-17 10:38:51 -0400231 clib_memset (slaveif, 0, sizeof (*slaveif));
Steven9cd2d7a2017-12-20 12:43:01 -0800232 sif = bond_get_slave_by_sw_if_index (*sw_if_index);
233 if (sif)
234 {
235 sw = vnet_get_sw_interface (vnm, sif->sw_if_index);
236 hi = vnet_get_hw_interface (vnm, sw->hw_if_index);
237 clib_memcpy (slaveif->interface_name, hi->name,
238 MIN (ARRAY_LEN (slaveif->interface_name) - 1,
Benoît Ganne5c828bc2019-09-27 18:08:22 +0200239 vec_len ((const char *) hi->name)));
240 /* enforce by memset() above */
241 ASSERT (0 ==
242 slaveif->interface_name[ARRAY_LEN (slaveif->interface_name) -
243 1]);
Steven9cd2d7a2017-12-20 12:43:01 -0800244 slaveif->sw_if_index = sif->sw_if_index;
245 slaveif->is_passive = sif->is_passive;
246 slaveif->is_long_timeout = sif->is_long_timeout;
Steven Luonga1876b82019-08-20 16:58:00 -0700247 slaveif->is_local_numa = sif->is_local_numa;
248 slaveif->weight = sif->weight;
Steven9cd2d7a2017-12-20 12:43:01 -0800249 }
250 }
251 *out_slaveifs = r_slaveifs;
252
253 return 0;
254}
255
Matthew Smithe83aa452019-11-14 10:36:02 -0600256/*
257 * Manage secondary mac addresses when attaching/detaching a slave.
258 * If adding, copies any secondary addresses from master to slave
259 * If deleting, deletes the master's secondary addresses from the slave
260 *
261 */
262static void
263bond_slave_add_del_mac_addrs (bond_if_t * bif, u32 sif_sw_if_index, u8 is_add)
264{
265 vnet_main_t *vnm = vnet_get_main ();
266 ethernet_interface_t *b_ei;
267 mac_address_t *sec_mac;
268 vnet_hw_interface_t *s_hwif;
269
270 b_ei = ethernet_get_interface (&ethernet_main, bif->hw_if_index);
271 if (!b_ei || !b_ei->secondary_addrs)
272 return;
273
274 s_hwif = vnet_get_sup_hw_interface (vnm, sif_sw_if_index);
275
276 vec_foreach (sec_mac, b_ei->secondary_addrs)
277 vnet_hw_interface_add_del_mac_address (vnm, s_hwif->hw_if_index,
278 sec_mac->bytes, is_add);
279}
280
Steven9cd2d7a2017-12-20 12:43:01 -0800281static void
282bond_delete_neighbor (vlib_main_t * vm, bond_if_t * bif, slave_if_t * sif)
283{
284 bond_main_t *bm = &bond_main;
285 vnet_main_t *vnm = vnet_get_main ();
286 int i;
Stevence2db6a2018-04-23 17:06:24 -0700287 vnet_hw_interface_t *sif_hw;
Steven4f8863b2018-04-12 19:36:19 -0700288
289 sif_hw = vnet_get_sup_hw_interface (vnm, sif->sw_if_index);
Steven9cd2d7a2017-12-20 12:43:01 -0800290
291 bif->port_number_bitmap =
292 clib_bitmap_set (bif->port_number_bitmap,
293 ntohs (sif->actor_admin.port_number) - 1, 0);
Steven0d883012018-05-11 11:06:23 -0700294 bm->slave_by_sw_if_index[sif->sw_if_index] = 0;
Steven9cd2d7a2017-12-20 12:43:01 -0800295 vec_free (sif->last_marker_pkt);
296 vec_free (sif->last_rx_pkt);
297 vec_foreach_index (i, bif->slaves)
298 {
299 uword p = *vec_elt_at_index (bif->slaves, i);
300 if (p == sif->sw_if_index)
301 {
302 vec_del1 (bif->slaves, i);
303 break;
304 }
305 }
306
307 bond_disable_collecting_distributing (vm, sif);
308
Steven5967baf2018-09-24 21:09:36 -0700309 vnet_feature_enable_disable ("device-input", "bond-input",
Steven Luong1a41a352019-10-09 10:29:47 -0700310 sif->sw_if_index, 0, 0, 0);
Steven5967baf2018-09-24 21:09:36 -0700311
Steven9cd2d7a2017-12-20 12:43:01 -0800312 /* Put back the old mac */
Steven4f8863b2018-04-12 19:36:19 -0700313 vnet_hw_interface_change_mac_address (vnm, sif_hw->hw_if_index,
Steven9cd2d7a2017-12-20 12:43:01 -0800314 sif->persistent_hw_address);
315
Matthew Smithe83aa452019-11-14 10:36:02 -0600316 /* delete the bond's secondary/virtual mac addrs from the slave */
317 bond_slave_add_del_mac_addrs (bif, sif->sw_if_index, 0 /* is_add */ );
318
319
Steven9cd2d7a2017-12-20 12:43:01 -0800320 if ((bif->mode == BOND_MODE_LACP) && bm->lacp_enable_disable)
321 (*bm->lacp_enable_disable) (vm, bif, sif, 0);
Steven5967baf2018-09-24 21:09:36 -0700322
Steven Luong0f09a822019-08-07 12:20:22 -0700323 if (bif->mode == BOND_MODE_LACP)
Steven Luongaa725782019-11-12 19:45:49 -0800324 {
325 stat_segment_deregister_state_counter
326 (bm->stats[bif->sw_if_index][sif->sw_if_index].actor_state);
327 stat_segment_deregister_state_counter
328 (bm->stats[bif->sw_if_index][sif->sw_if_index].partner_state);
329 }
Steven Luong0f09a822019-08-07 12:20:22 -0700330
Steven5967baf2018-09-24 21:09:36 -0700331 pool_put (bm->neighbors, sif);
Steven9cd2d7a2017-12-20 12:43:01 -0800332}
333
334int
335bond_delete_if (vlib_main_t * vm, u32 sw_if_index)
336{
337 bond_main_t *bm = &bond_main;
338 vnet_main_t *vnm = vnet_get_main ();
339 bond_if_t *bif;
340 slave_if_t *sif;
341 vnet_hw_interface_t *hw;
342 u32 *sif_sw_if_index;
Benoît Gannecc3aac02019-10-16 15:03:06 +0200343 u32 *s_list = 0;
Steven9cd2d7a2017-12-20 12:43:01 -0800344
345 hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
346 if (hw == NULL || bond_dev_class.index != hw->dev_class_index)
347 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
348
349 bif = bond_get_master_by_dev_instance (hw->dev_instance);
350
Benoît Gannecc3aac02019-10-16 15:03:06 +0200351 vec_append (s_list, bif->slaves);
352 vec_foreach (sif_sw_if_index, s_list)
Steven9cd2d7a2017-12-20 12:43:01 -0800353 {
Benoît Gannecc3aac02019-10-16 15:03:06 +0200354 sif = bond_get_slave_by_sw_if_index (*sif_sw_if_index);
355 if (sif)
356 bond_delete_neighbor (vm, bif, sif);
Steven9cd2d7a2017-12-20 12:43:01 -0800357 }
Benoît Gannecc3aac02019-10-16 15:03:06 +0200358 vec_free (s_list);
Steven70488ab2018-03-28 17:59:00 -0700359
Steven9cd2d7a2017-12-20 12:43:01 -0800360 /* bring down the interface */
361 vnet_hw_interface_set_flags (vnm, bif->hw_if_index, 0);
362 vnet_sw_interface_set_flags (vnm, bif->sw_if_index, 0);
363
364 ethernet_delete_interface (vnm, bif->hw_if_index);
365
366 clib_bitmap_free (bif->port_number_bitmap);
367 hash_unset (bm->bond_by_sw_if_index, bif->sw_if_index);
Alexander Chernavinad9d5282018-12-13 09:08:09 -0500368 hash_unset (bm->id_used, bif->id);
Dave Barachb7b92992018-10-17 10:38:51 -0400369 clib_memset (bif, 0, sizeof (*bif));
Steven9cd2d7a2017-12-20 12:43:01 -0800370 pool_put (bm->interfaces, bif);
371
372 return 0;
373}
374
375void
376bond_create_if (vlib_main_t * vm, bond_create_if_args_t * args)
377{
378 bond_main_t *bm = &bond_main;
379 vnet_main_t *vnm = vnet_get_main ();
380 vnet_sw_interface_t *sw;
381 bond_if_t *bif;
Steven Luong2e1fa542020-01-06 15:14:46 -0800382 vnet_hw_interface_t *hw;
Steven9cd2d7a2017-12-20 12:43:01 -0800383
384 if ((args->mode == BOND_MODE_LACP) && bm->lacp_plugin_loaded == 0)
385 {
386 args->rv = VNET_API_ERROR_FEATURE_DISABLED;
387 args->error = clib_error_return (0, "LACP plugin is not loaded");
388 return;
389 }
390 if (args->mode > BOND_MODE_LACP || args->mode < BOND_MODE_ROUND_ROBIN)
391 {
392 args->rv = VNET_API_ERROR_INVALID_ARGUMENT;
393 args->error = clib_error_return (0, "Invalid mode");
394 return;
395 }
396 if (args->lb > BOND_LB_L23)
397 {
398 args->rv = VNET_API_ERROR_INVALID_ARGUMENT;
399 args->error = clib_error_return (0, "Invalid load-balance");
400 return;
401 }
402 pool_get (bm->interfaces, bif);
Dave Barachb7b92992018-10-17 10:38:51 -0400403 clib_memset (bif, 0, sizeof (*bif));
Steven9cd2d7a2017-12-20 12:43:01 -0800404 bif->dev_instance = bif - bm->interfaces;
Alexander Chernavinad9d5282018-12-13 09:08:09 -0500405 bif->id = args->id;
Steven9cd2d7a2017-12-20 12:43:01 -0800406 bif->lb = args->lb;
407 bif->mode = args->mode;
Steven Luong2e1fa542020-01-06 15:14:46 -0800408 bif->gso = args->gso;
Steven9cd2d7a2017-12-20 12:43:01 -0800409
Alexander Chernavinad9d5282018-12-13 09:08:09 -0500410 // Adjust requested interface id
411 if (bif->id == ~0)
412 bif->id = bif->dev_instance;
413 if (hash_get (bm->id_used, bif->id))
414 {
415 args->rv = VNET_API_ERROR_INSTANCE_IN_USE;
416 pool_put (bm->interfaces, bif);
417 return;
418 }
419 hash_set (bm->id_used, bif->id, 1);
420
Steven9cd2d7a2017-12-20 12:43:01 -0800421 // Special load-balance mode used for rr and bc
422 if (bif->mode == BOND_MODE_ROUND_ROBIN)
423 bif->lb = BOND_LB_RR;
424 else if (bif->mode == BOND_MODE_BROADCAST)
425 bif->lb = BOND_LB_BC;
Steven318de5d2018-10-06 22:30:50 -0700426 else if (bif->mode == BOND_MODE_ACTIVE_BACKUP)
427 bif->lb = BOND_LB_AB;
Steven9cd2d7a2017-12-20 12:43:01 -0800428
429 bif->use_custom_mac = args->hw_addr_set;
430 if (!args->hw_addr_set)
431 {
432 f64 now = vlib_time_now (vm);
433 u32 rnd;
434 rnd = (u32) (now * 1e6);
435 rnd = random_u32 (&rnd);
436
437 memcpy (args->hw_addr + 2, &rnd, sizeof (rnd));
438 args->hw_addr[0] = 2;
439 args->hw_addr[1] = 0xfe;
440 }
441 memcpy (bif->hw_address, args->hw_addr, 6);
442 args->error = ethernet_register_interface
Alexander Chernavinad9d5282018-12-13 09:08:09 -0500443 (vnm, bond_dev_class.index, bif->dev_instance /* device instance */ ,
Steven9cd2d7a2017-12-20 12:43:01 -0800444 bif->hw_address /* ethernet address */ ,
445 &bif->hw_if_index, 0 /* flag change */ );
446
447 if (args->error)
448 {
449 args->rv = VNET_API_ERROR_INVALID_REGISTRATION;
Alexander Chernavinad9d5282018-12-13 09:08:09 -0500450 hash_unset (bm->id_used, bif->id);
Steven9cd2d7a2017-12-20 12:43:01 -0800451 pool_put (bm->interfaces, bif);
452 return;
453 }
454
455 sw = vnet_get_hw_sw_interface (vnm, bif->hw_if_index);
456 bif->sw_if_index = sw->sw_if_index;
457 bif->group = bif->sw_if_index;
Zhiyong Yang751e3f32019-06-26 05:49:14 -0400458 bif->numa_only = args->numa_only;
Steven Luong2e1fa542020-01-06 15:14:46 -0800459
460 hw = vnet_get_hw_interface (vnm, bif->hw_if_index);
461 hw->flags |= (VNET_HW_INTERFACE_FLAG_SUPPORTS_GSO |
462 VNET_HW_INTERFACE_FLAG_SUPPORTS_TX_L4_CKSUM_OFFLOAD);
Stevena005e7f2018-03-22 17:46:58 -0700463 if (vlib_get_thread_main ()->n_vlib_mains > 1)
464 clib_spinlock_init (&bif->lockp);
Steven9cd2d7a2017-12-20 12:43:01 -0800465
466 vnet_hw_interface_set_flags (vnm, bif->hw_if_index,
467 VNET_HW_INTERFACE_FLAG_LINK_UP);
468
469 hash_set (bm->bond_by_sw_if_index, bif->sw_if_index, bif->dev_instance);
470
471 // for return
472 args->sw_if_index = bif->sw_if_index;
Mohsin Kazmi8c1280f2019-07-01 11:08:20 +0200473 args->rv = 0;
Steven9cd2d7a2017-12-20 12:43:01 -0800474}
475
476static clib_error_t *
477bond_create_command_fn (vlib_main_t * vm, unformat_input_t * input,
478 vlib_cli_command_t * cmd)
479{
480 unformat_input_t _line_input, *line_input = &_line_input;
481 bond_create_if_args_t args = { 0 };
482 u8 mode_is_set = 0;
483
484 /* Get a line of input. */
485 if (!unformat_user (input, unformat_line_input, line_input))
486 return clib_error_return (0, "Missing required arguments.");
487
Alexander Chernavinad9d5282018-12-13 09:08:09 -0500488 args.id = ~0;
Steven9cd2d7a2017-12-20 12:43:01 -0800489 args.mode = -1;
490 args.lb = BOND_LB_L2;
Mohsin Kazmi8c1280f2019-07-01 11:08:20 +0200491 args.rv = -1;
Steven9cd2d7a2017-12-20 12:43:01 -0800492 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
493 {
494 if (unformat (line_input, "mode %U", unformat_bond_mode, &args.mode))
495 mode_is_set = 1;
496 else if (((args.mode == BOND_MODE_LACP) || (args.mode == BOND_MODE_XOR))
497 && unformat (line_input, "load-balance %U",
498 unformat_bond_load_balance, &args.lb))
499 ;
500 else if (unformat (line_input, "hw-addr %U",
501 unformat_ethernet_address, args.hw_addr))
502 args.hw_addr_set = 1;
Alexander Chernavinad9d5282018-12-13 09:08:09 -0500503 else if (unformat (line_input, "id %u", &args.id))
504 ;
Steven Luong2e1fa542020-01-06 15:14:46 -0800505 else if (unformat (line_input, "gso"))
506 args.gso = 1;
Zhiyong Yang751e3f32019-06-26 05:49:14 -0400507 else if (unformat (line_input, "numa-only"))
508 {
509 if (args.mode == BOND_MODE_LACP)
510 args.numa_only = 1;
511 else
512 return clib_error_return (0,
513 "Only lacp mode supports numa-only so far!");
514 }
Steven9cd2d7a2017-12-20 12:43:01 -0800515 else
516 return clib_error_return (0, "unknown input `%U'",
517 format_unformat_error, input);
518 }
519 unformat_free (line_input);
520
521 if (mode_is_set == 0)
522 return clib_error_return (0, "Missing bond mode");
523
524 bond_create_if (vm, &args);
525
Mohsin Kazmi8c1280f2019-07-01 11:08:20 +0200526 if (!args.rv)
527 vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name,
528 vnet_get_main (), args.sw_if_index);
529
Steven9cd2d7a2017-12-20 12:43:01 -0800530 return args.error;
531}
532
533/* *INDENT-OFF* */
534VLIB_CLI_COMMAND (bond_create_command, static) = {
535 .path = "create bond",
536 .short_help = "create bond mode {round-robin | active-backup | broadcast | "
Steven Luong2e1fa542020-01-06 15:14:46 -0800537 "{lacp | xor} [load-balance { l2 | l23 | l34 } [numa-only]]} "
538 "[hw-addr <mac-address>] [id <if-id>] [gso]",
Steven9cd2d7a2017-12-20 12:43:01 -0800539 .function = bond_create_command_fn,
540};
541/* *INDENT-ON* */
542
543static clib_error_t *
544bond_delete_command_fn (vlib_main_t * vm, unformat_input_t * input,
545 vlib_cli_command_t * cmd)
546{
547 unformat_input_t _line_input, *line_input = &_line_input;
548 u32 sw_if_index = ~0;
549 vnet_main_t *vnm = vnet_get_main ();
550 int rv;
551
552 /* Get a line of input. */
553 if (!unformat_user (input, unformat_line_input, line_input))
554 return clib_error_return (0, "Missing <interface>");
555
556 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
557 {
558 if (unformat (line_input, "sw_if_index %d", &sw_if_index))
559 ;
560 else if (unformat (line_input, "%U", unformat_vnet_sw_interface,
561 vnm, &sw_if_index))
562 ;
563 else
564 return clib_error_return (0, "unknown input `%U'",
565 format_unformat_error, input);
566 }
567 unformat_free (line_input);
568
569 if (sw_if_index == ~0)
570 return clib_error_return (0,
571 "please specify interface name or sw_if_index");
572
573 rv = bond_delete_if (vm, sw_if_index);
574 if (rv == VNET_API_ERROR_INVALID_SW_IF_INDEX)
575 return clib_error_return (0, "not a bond interface");
576 else if (rv != 0)
577 return clib_error_return (0, "error on deleting bond interface");
578
579 return 0;
580}
581
582/* *INDENT-OFF* */
583VLIB_CLI_COMMAND (bond_delete__command, static) =
584{
585 .path = "delete bond",
586 .short_help = "delete bond {<interface> | sw_if_index <sw_idx>}",
587 .function = bond_delete_command_fn,
588};
589/* *INDENT-ON* */
590
591void
592bond_enslave (vlib_main_t * vm, bond_enslave_args_t * args)
593{
594 bond_main_t *bm = &bond_main;
595 vnet_main_t *vnm = vnet_get_main ();
596 bond_if_t *bif;
597 slave_if_t *sif;
598 vnet_interface_main_t *im = &vnm->interface_main;
Steven4f8863b2018-04-12 19:36:19 -0700599 vnet_hw_interface_t *bif_hw, *sif_hw;
Steven9cd2d7a2017-12-20 12:43:01 -0800600 vnet_sw_interface_t *sw;
Stevenc4e99c52018-09-27 20:06:26 -0700601 u32 thread_index;
602 u32 sif_if_index;
Steven9cd2d7a2017-12-20 12:43:01 -0800603
604 bif = bond_get_master_by_sw_if_index (args->group);
605 if (!bif)
606 {
607 args->rv = VNET_API_ERROR_INVALID_INTERFACE;
608 args->error = clib_error_return (0, "bond interface not found");
609 return;
610 }
611 // make sure the interface is not already enslaved
612 if (bond_get_slave_by_sw_if_index (args->slave))
613 {
614 args->rv = VNET_API_ERROR_VALUE_EXIST;
615 args->error = clib_error_return (0, "interface was already enslaved");
616 return;
617 }
Steven4f8863b2018-04-12 19:36:19 -0700618 sif_hw = vnet_get_sup_hw_interface (vnm, args->slave);
619 if (sif_hw->dev_class_index == bond_dev_class.index)
Steven9cd2d7a2017-12-20 12:43:01 -0800620 {
621 args->rv = VNET_API_ERROR_INVALID_INTERFACE;
622 args->error =
623 clib_error_return (0, "bond interface cannot be enslaved");
624 return;
625 }
Steven Luong2e1fa542020-01-06 15:14:46 -0800626 if (bif->gso && !(sif_hw->flags & VNET_HW_INTERFACE_FLAG_SUPPORTS_GSO))
627 {
628 args->rv = VNET_API_ERROR_INVALID_INTERFACE;
629 args->error =
630 clib_error_return (0, "slave interface is not gso capable");
631 return;
632 }
Steven Luong0f09a822019-08-07 12:20:22 -0700633 if (bif->mode == BOND_MODE_LACP)
634 {
Benoît Gannea03c7d52019-11-06 14:36:38 +0100635 u8 *name = format (0, "/if/lacp/%u/%u/state%c", bif->sw_if_index,
636 args->slave, 0);
Steven Luong0f09a822019-08-07 12:20:22 -0700637
638 vec_validate (bm->stats, bif->sw_if_index);
639 vec_validate (bm->stats[bif->sw_if_index], args->slave);
640
641 args->error = stat_segment_register_state_counter
Steven Luongaa725782019-11-12 19:45:49 -0800642 (name, &bm->stats[bif->sw_if_index][args->slave].actor_state);
643 if (args->error != 0)
644 {
645 args->rv = VNET_API_ERROR_INVALID_INTERFACE;
646 vec_free (name);
647 return;
648 }
649
650 vec_reset_length (name);
651 name = format (0, "/if/lacp/%u/%u/partner-state%c", bif->sw_if_index,
652 args->slave, 0);
653 args->error = stat_segment_register_state_counter
654 (name, &bm->stats[bif->sw_if_index][args->slave].partner_state);
Steven Luong0f09a822019-08-07 12:20:22 -0700655 vec_free (name);
656 if (args->error != 0)
657 {
658 args->rv = VNET_API_ERROR_INVALID_INTERFACE;
659 return;
660 }
661 }
662
Steven9cd2d7a2017-12-20 12:43:01 -0800663 pool_get (bm->neighbors, sif);
Dave Barachb7b92992018-10-17 10:38:51 -0400664 clib_memset (sif, 0, sizeof (*sif));
Steven9cd2d7a2017-12-20 12:43:01 -0800665 sw = pool_elt_at_index (im->sw_interfaces, args->slave);
Steven Luongbac326c2019-08-05 09:47:58 -0700666 /* port_enabled is both admin up and hw link up */
667 sif->port_enabled = vnet_sw_interface_is_up (vnm, sw->sw_if_index);
Steven9cd2d7a2017-12-20 12:43:01 -0800668 sif->sw_if_index = sw->sw_if_index;
669 sif->hw_if_index = sw->hw_if_index;
670 sif->packet_template_index = (u8) ~ 0;
671 sif->is_passive = args->is_passive;
672 sif->group = args->group;
673 sif->bif_dev_instance = bif->dev_instance;
674 sif->mode = bif->mode;
675
676 sif->is_long_timeout = args->is_long_timeout;
677 if (args->is_long_timeout)
678 sif->ttl_in_seconds = LACP_LONG_TIMOUT_TIME;
679 else
680 sif->ttl_in_seconds = LACP_SHORT_TIMOUT_TIME;
681
Steven0d883012018-05-11 11:06:23 -0700682 vec_validate_aligned (bm->slave_by_sw_if_index, sif->sw_if_index,
683 CLIB_CACHE_LINE_BYTES);
684 /*
685 * sif - bm->neighbors may be 0
686 * Left shift it by 1 bit to distinguish the valid entry that we actually
687 * store from the null entries
688 */
689 bm->slave_by_sw_if_index[sif->sw_if_index] =
690 (uword) (((sif - bm->neighbors) << 1) | 1);
Steven9cd2d7a2017-12-20 12:43:01 -0800691 vec_add1 (bif->slaves, sif->sw_if_index);
692
Steven4f8863b2018-04-12 19:36:19 -0700693 sif_hw = vnet_get_sup_hw_interface (vnm, sif->sw_if_index);
694
Steven9cd2d7a2017-12-20 12:43:01 -0800695 /* Save the old mac */
Steven4f8863b2018-04-12 19:36:19 -0700696 memcpy (sif->persistent_hw_address, sif_hw->hw_address, 6);
697 bif_hw = vnet_get_sup_hw_interface (vnm, bif->sw_if_index);
Steven9cd2d7a2017-12-20 12:43:01 -0800698 if (bif->use_custom_mac)
699 {
Steven4f8863b2018-04-12 19:36:19 -0700700 vnet_hw_interface_change_mac_address (vnm, sif_hw->hw_if_index,
Steven9cd2d7a2017-12-20 12:43:01 -0800701 bif->hw_address);
702 }
703 else
704 {
705 // bond interface gets the mac address from the first slave
706 if (vec_len (bif->slaves) == 1)
707 {
Steven4f8863b2018-04-12 19:36:19 -0700708 memcpy (bif->hw_address, sif_hw->hw_address, 6);
709 vnet_hw_interface_change_mac_address (vnm, bif_hw->hw_if_index,
710 sif_hw->hw_address);
Steven9cd2d7a2017-12-20 12:43:01 -0800711 }
712 else
713 {
714 // subsequent slaves gets the mac address of the bond interface
Steven4f8863b2018-04-12 19:36:19 -0700715 vnet_hw_interface_change_mac_address (vnm, sif_hw->hw_if_index,
Steven9cd2d7a2017-12-20 12:43:01 -0800716 bif->hw_address);
717 }
718 }
719
Matthew Smithe83aa452019-11-14 10:36:02 -0600720 /* if there are secondary/virtual mac addrs, propagate to the slave */
721 bond_slave_add_del_mac_addrs (bif, sif->sw_if_index, 1 /* is_add */ );
722
Steven4f8863b2018-04-12 19:36:19 -0700723 if (bif_hw->l2_if_count)
724 {
725 ethernet_set_flags (vnm, sif_hw->hw_if_index,
726 ETHERNET_INTERFACE_FLAG_ACCEPT_ALL);
727 /* ensure all packets go to ethernet-input */
728 ethernet_set_rx_redirect (vnm, sif_hw, 1);
729 }
730
Stevene43278f2019-01-17 15:11:29 -0800731 if (bif->mode == BOND_MODE_LACP)
Steven9cd2d7a2017-12-20 12:43:01 -0800732 {
Stevene43278f2019-01-17 15:11:29 -0800733 if (bm->lacp_enable_disable)
734 (*bm->lacp_enable_disable) (vm, bif, sif, 1);
Steven9cd2d7a2017-12-20 12:43:01 -0800735 }
Steven Luongbac326c2019-08-05 09:47:58 -0700736 else if (sif->port_enabled)
Steven9cd2d7a2017-12-20 12:43:01 -0800737 {
738 bond_enable_collecting_distributing (vm, sif);
739 }
740
Stevenc4e99c52018-09-27 20:06:26 -0700741 vec_foreach_index (thread_index, bm->per_thread_data)
742 {
743 bond_per_thread_data_t *ptd = vec_elt_at_index (bm->per_thread_data,
744 thread_index);
745
Damjan Marion69fdfee2018-10-06 14:33:18 +0200746 vec_validate_aligned (ptd->per_port_queue, vec_len (bif->slaves) - 1,
Stevenc4e99c52018-09-27 20:06:26 -0700747 CLIB_CACHE_LINE_BYTES);
748
749 vec_foreach_index (sif_if_index, ptd->per_port_queue)
750 {
751 ptd->per_port_queue[sif_if_index].n_buffers = 0;
752 }
753 }
754
Steven9cd2d7a2017-12-20 12:43:01 -0800755 args->rv = vnet_feature_enable_disable ("device-input", "bond-input",
Steven Luong1a41a352019-10-09 10:29:47 -0700756 sif->sw_if_index, 1, 0, 0);
Steven9cd2d7a2017-12-20 12:43:01 -0800757
758 if (args->rv)
759 {
760 args->error =
761 clib_error_return (0,
762 "Error encountered on input feature arc enable");
763 }
764}
765
766static clib_error_t *
767enslave_interface_command_fn (vlib_main_t * vm, unformat_input_t * input,
768 vlib_cli_command_t * cmd)
769{
770 bond_enslave_args_t args = { 0 };
771 unformat_input_t _line_input, *line_input = &_line_input;
772 vnet_main_t *vnm = vnet_get_main ();
773
774 /* Get a line of input. */
775 if (!unformat_user (input, unformat_line_input, line_input))
776 return clib_error_return (0, "Missing required arguments.");
777
778 args.slave = ~0;
779 args.group = ~0;
780 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
781 {
Stevenb3caf552018-03-27 15:04:47 -0700782 if (unformat (line_input, "%U %U",
783 unformat_vnet_sw_interface, vnm, &args.group,
Steven9cd2d7a2017-12-20 12:43:01 -0800784 unformat_vnet_sw_interface, vnm, &args.slave))
785 ;
Steven9cd2d7a2017-12-20 12:43:01 -0800786 else if (unformat (line_input, "passive"))
787 args.is_passive = 1;
788 else if (unformat (line_input, "long-timeout"))
789 args.is_long_timeout = 1;
790 else
791 {
792 args.error = clib_error_return (0, "unknown input `%U'",
793 format_unformat_error, input);
794 break;
795 }
796 }
797 unformat_free (line_input);
798
799 if (args.error)
800 return args.error;
801 if (args.group == ~0)
802 return clib_error_return (0, "Missing bond interface");
803 if (args.slave == ~0)
Stevenb3caf552018-03-27 15:04:47 -0700804 return clib_error_return (0, "please specify valid slave interface name");
Steven9cd2d7a2017-12-20 12:43:01 -0800805
806 bond_enslave (vm, &args);
807
808 return args.error;
809}
810
811/* *INDENT-OFF* */
812VLIB_CLI_COMMAND (enslave_interface_command, static) = {
Stevenb3caf552018-03-27 15:04:47 -0700813 .path = "bond add",
814 .short_help = "bond add <BondEthernetx> <slave-interface> "
815 "[passive] [long-timeout]",
Steven9cd2d7a2017-12-20 12:43:01 -0800816 .function = enslave_interface_command_fn,
817};
818/* *INDENT-ON* */
819
820void
821bond_detach_slave (vlib_main_t * vm, bond_detach_slave_args_t * args)
822{
823 bond_if_t *bif;
824 slave_if_t *sif;
825
826 sif = bond_get_slave_by_sw_if_index (args->slave);
827 if (!sif)
828 {
829 args->rv = VNET_API_ERROR_INVALID_INTERFACE;
830 args->error = clib_error_return (0, "interface was not enslaved");
831 return;
832 }
833 bif = bond_get_master_by_dev_instance (sif->bif_dev_instance);
834 bond_delete_neighbor (vm, bif, sif);
835}
836
837static clib_error_t *
838detach_interface_command_fn (vlib_main_t * vm, unformat_input_t * input,
839 vlib_cli_command_t * cmd)
840{
841 bond_detach_slave_args_t args = { 0 };
842 unformat_input_t _line_input, *line_input = &_line_input;
843 vnet_main_t *vnm = vnet_get_main ();
844
845 /* Get a line of input. */
846 if (!unformat_user (input, unformat_line_input, line_input))
847 return clib_error_return (0, "Missing required arguments.");
848
849 args.slave = ~0;
850 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
851 {
Stevenb3caf552018-03-27 15:04:47 -0700852 if (unformat (line_input, "%U",
Steven9cd2d7a2017-12-20 12:43:01 -0800853 unformat_vnet_sw_interface, vnm, &args.slave))
854 ;
855 else
856 {
857 args.error = clib_error_return (0, "unknown input `%U'",
858 format_unformat_error, input);
859 break;
860 }
861 }
862 unformat_free (line_input);
863
864 if (args.error)
865 return args.error;
866 if (args.slave == ~0)
Stevenb3caf552018-03-27 15:04:47 -0700867 return clib_error_return (0, "please specify valid slave interface name");
Steven9cd2d7a2017-12-20 12:43:01 -0800868
869 bond_detach_slave (vm, &args);
870
871 return args.error;
872}
873
874/* *INDENT-OFF* */
875VLIB_CLI_COMMAND (detach_interface_command, static) = {
Stevenb3caf552018-03-27 15:04:47 -0700876 .path = "bond del",
877 .short_help = "bond del <slave-interface>",
Steven9cd2d7a2017-12-20 12:43:01 -0800878 .function = detach_interface_command_fn,
879};
880/* *INDENT-ON* */
881
882static void
883show_bond (vlib_main_t * vm)
884{
885 bond_main_t *bm = &bond_main;
886 bond_if_t *bif;
887
Steven318de5d2018-10-06 22:30:50 -0700888 vlib_cli_output (vm, "%-16s %-12s %-13s %-13s %-14s %s",
Steven9cd2d7a2017-12-20 12:43:01 -0800889 "interface name", "sw_if_index", "mode",
890 "load balance", "active slaves", "slaves");
891
892 /* *INDENT-OFF* */
893 pool_foreach (bif, bm->interfaces,
894 ({
Steven318de5d2018-10-06 22:30:50 -0700895 vlib_cli_output (vm, "%-16U %-12d %-13U %-13U %-14u %u",
Steven9cd2d7a2017-12-20 12:43:01 -0800896 format_bond_interface_name, bif->dev_instance,
897 bif->sw_if_index, format_bond_mode, bif->mode,
898 format_bond_load_balance, bif->lb,
899 vec_len (bif->active_slaves), vec_len (bif->slaves));
900 }));
901 /* *INDENT-ON* */
902}
903
904static void
905show_bond_details (vlib_main_t * vm)
906{
907 bond_main_t *bm = &bond_main;
908 bond_if_t *bif;
909 u32 *sw_if_index;
910
911 /* *INDENT-OFF* */
912 pool_foreach (bif, bm->interfaces,
913 ({
914 vlib_cli_output (vm, "%U", format_bond_interface_name, bif->dev_instance);
915 vlib_cli_output (vm, " mode: %U",
916 format_bond_mode, bif->mode);
917 vlib_cli_output (vm, " load balance: %U",
918 format_bond_load_balance, bif->lb);
Steven Luong2e1fa542020-01-06 15:14:46 -0800919 if (bif->gso)
920 vlib_cli_output (vm, " gso enable");
Steven9cd2d7a2017-12-20 12:43:01 -0800921 if (bif->mode == BOND_MODE_ROUND_ROBIN)
922 vlib_cli_output (vm, " last xmit slave index: %u",
923 bif->lb_rr_last_index);
924 vlib_cli_output (vm, " number of active slaves: %d",
925 vec_len (bif->active_slaves));
926 vec_foreach (sw_if_index, bif->active_slaves)
927 {
928 vlib_cli_output (vm, " %U", format_vnet_sw_if_index_name,
929 vnet_get_main (), *sw_if_index);
Steven Luonga1876b82019-08-20 16:58:00 -0700930 if (bif->mode == BOND_MODE_ACTIVE_BACKUP)
931 {
932 slave_if_t *sif = bond_get_slave_by_sw_if_index (*sw_if_index);
933 if (sif)
934 vlib_cli_output (vm, " weight: %u, is_local_numa: %u, "
935 "sw_if_index: %u", sif->weight,
936 sif->is_local_numa, sif->sw_if_index);
937 }
Steven9cd2d7a2017-12-20 12:43:01 -0800938 }
939 vlib_cli_output (vm, " number of slaves: %d", vec_len (bif->slaves));
940 vec_foreach (sw_if_index, bif->slaves)
941 {
942 vlib_cli_output (vm, " %U", format_vnet_sw_if_index_name,
943 vnet_get_main (), *sw_if_index);
944 }
945 vlib_cli_output (vm, " device instance: %d", bif->dev_instance);
Alexander Chernavinad9d5282018-12-13 09:08:09 -0500946 vlib_cli_output (vm, " interface id: %d", bif->id);
Steven9cd2d7a2017-12-20 12:43:01 -0800947 vlib_cli_output (vm, " sw_if_index: %d", bif->sw_if_index);
948 vlib_cli_output (vm, " hw_if_index: %d", bif->hw_if_index);
949 }));
950 /* *INDENT-ON* */
951}
952
953static clib_error_t *
954show_bond_fn (vlib_main_t * vm, unformat_input_t * input,
955 vlib_cli_command_t * cmd)
956{
957 u8 details = 0;
958
959 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
960 {
961 if (unformat (input, "details"))
962 details = 1;
963 else
964 {
965 return clib_error_return (0, "unknown input `%U'",
966 format_unformat_error, input);
967 }
968 }
969
970 if (details)
971 show_bond_details (vm);
972 else
973 show_bond (vm);
974
975 return 0;
976}
977
978/* *INDENT-OFF* */
979VLIB_CLI_COMMAND (show_bond_command, static) = {
980 .path = "show bond",
981 .short_help = "show bond [details]",
982 .function = show_bond_fn,
983};
984/* *INDENT-ON* */
985
Steven Luonga1876b82019-08-20 16:58:00 -0700986void
987bond_set_intf_weight (vlib_main_t * vm, bond_set_intf_weight_args_t * args)
988{
989 slave_if_t *sif;
990 bond_if_t *bif;
991 vnet_main_t *vnm;
992 u32 old_weight;
993
994 sif = bond_get_slave_by_sw_if_index (args->sw_if_index);
995 if (!sif)
996 {
997 args->rv = VNET_API_ERROR_INVALID_INTERFACE;
998 args->error = clib_error_return (0, "Interface not enslaved");
999 return;
1000 }
1001 bif = bond_get_master_by_dev_instance (sif->bif_dev_instance);
1002 if (!bif)
1003 {
1004 args->rv = VNET_API_ERROR_INVALID_INTERFACE;
1005 args->error = clib_error_return (0, "bond interface not found");
1006 return;
1007 }
1008 if (bif->mode != BOND_MODE_ACTIVE_BACKUP)
1009 {
1010 args->rv = VNET_API_ERROR_INVALID_ARGUMENT;
1011 args->error =
1012 clib_error_return (0, "Weight valid for active-backup only");
1013 return;
1014 }
1015
1016 old_weight = sif->weight;
1017 sif->weight = args->weight;
1018 vnm = vnet_get_main ();
1019 /*
1020 * No need to sort the list if the affected slave is not up (not in active
1021 * slave set), active slave count is 1, or the current slave is already the
1022 * primary slave and new weight > old weight.
1023 */
1024 if (!vnet_sw_interface_is_up (vnm, sif->sw_if_index) ||
1025 (vec_len (bif->active_slaves) == 1) ||
1026 ((bif->active_slaves[0] == sif->sw_if_index) &&
1027 (sif->weight >= old_weight)))
1028 return;
1029
1030 bond_sort_slaves (bif);
1031}
1032
1033static clib_error_t *
1034bond_set_intf_cmd (vlib_main_t * vm, unformat_input_t * input,
1035 vlib_cli_command_t * cmd)
1036{
1037 bond_set_intf_weight_args_t args = { 0 };
1038 u32 sw_if_index = (u32) ~ 0;
1039 unformat_input_t _line_input, *line_input = &_line_input;
1040 vnet_main_t *vnm = vnet_get_main ();
1041 u8 weight_enter = 0;
1042 u32 weight = 0;
1043
1044 /* Get a line of input. */
1045 if (!unformat_user (input, unformat_line_input, line_input))
1046 return clib_error_return (0, "Missing required arguments.");
1047
1048 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1049 {
1050 if (unformat (line_input, "sw_if_index %d", &sw_if_index))
1051 ;
1052 else if (unformat (line_input, "%U", unformat_vnet_sw_interface, vnm,
1053 &sw_if_index))
1054 ;
1055 else if (unformat (line_input, "weight %u", &weight))
1056 weight_enter = 1;
1057 else
1058 {
1059 clib_error_return (0, "unknown input `%U'", format_unformat_error,
1060 input);
1061 break;
1062 }
1063 }
1064
1065 unformat_free (line_input);
1066 if (sw_if_index == (u32) ~ 0)
1067 {
1068 args.rv = VNET_API_ERROR_INVALID_INTERFACE;
1069 clib_error_return (0, "Interface name is invalid!");
1070 }
1071 if (weight_enter == 0)
1072 {
1073 args.rv = VNET_API_ERROR_INVALID_ARGUMENT;
1074 clib_error_return (0, "weight missing");
1075 }
1076
1077 args.sw_if_index = sw_if_index;
1078 args.weight = weight;
1079 bond_set_intf_weight (vm, &args);
1080
1081 return args.error;
1082}
1083
1084/* *INDENT-OFF* */
1085VLIB_CLI_COMMAND(set_interface_bond_cmd, static) = {
1086 .path = "set interface bond",
1087 .short_help = "set interface bond <interface> | sw_if_index <idx>"
1088 " weight <value>",
1089 .function = bond_set_intf_cmd,
1090};
1091/* *INDENT-ON* */
1092
Steven9cd2d7a2017-12-20 12:43:01 -08001093clib_error_t *
1094bond_cli_init (vlib_main_t * vm)
1095{
1096 bond_main_t *bm = &bond_main;
1097
1098 bm->vlib_main = vm;
1099 bm->vnet_main = vnet_get_main ();
Steven0d883012018-05-11 11:06:23 -07001100 vec_validate_aligned (bm->slave_by_sw_if_index, 1, CLIB_CACHE_LINE_BYTES);
Stevenc4e99c52018-09-27 20:06:26 -07001101 vec_validate_aligned (bm->per_thread_data,
1102 vlib_get_thread_main ()->n_vlib_mains - 1,
1103 CLIB_CACHE_LINE_BYTES);
Steven9cd2d7a2017-12-20 12:43:01 -08001104
1105 return 0;
1106}
1107
1108VLIB_INIT_FUNCTION (bond_cli_init);
1109
1110/*
1111 * fd.io coding-style-patch-verification: ON
1112 *
1113 * Local Variables:
1114 * eval: (c-set-style "gnu")
1115 * End:
1116 */