i40e: fix out of bound read
[dpdk.git] / lib / librte_pmd_bond / rte_eth_bond_api.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #include <string.h>
35
36 #include <rte_mbuf.h>
37 #include <rte_malloc.h>
38 #include <rte_ethdev.h>
39 #include <rte_tcp.h>
40
41 #include "rte_eth_bond.h"
42 #include "rte_eth_bond_private.h"
43 #include "rte_eth_bond_8023ad_private.h"
44
45 #define DEFAULT_POLLING_INTERVAL_10_MS (10)
46
47 int
48 valid_bonded_ethdev(struct rte_eth_dev *eth_dev)
49 {
50         size_t len;
51
52         /* Check valid pointer */
53         if (eth_dev->driver->pci_drv.name == NULL || driver_name == NULL)
54                 return -1;
55
56         /* Check string lengths are equal */
57         len = strlen(driver_name);
58         if (strlen(eth_dev->driver->pci_drv.name) != len)
59                 return -1;
60
61         /* Compare strings */
62         return strncmp(eth_dev->driver->pci_drv.name, driver_name, len);
63 }
64
65 int
66 valid_port_id(uint8_t port_id)
67 {
68         /* Verify that port id is valid */
69         int ethdev_count = rte_eth_dev_count();
70         if (port_id >= ethdev_count) {
71                 RTE_BOND_LOG(ERR, "Port Id %d is greater than rte_eth_dev_count %d",
72                                 port_id, ethdev_count);
73                 return -1;
74         }
75
76         return 0;
77 }
78
79 int
80 valid_bonded_port_id(uint8_t port_id)
81 {
82         /* Verify that port id's are valid */
83         if (valid_port_id(port_id))
84                 return -1;
85
86         /* Verify that bonded_port_id refers to a bonded port */
87         if (valid_bonded_ethdev(&rte_eth_devices[port_id])) {
88                 RTE_BOND_LOG(ERR, "Specified port Id %d is not a bonded eth_dev device",
89                                 port_id);
90                 return -1;
91         }
92
93         return 0;
94 }
95
96 int
97 valid_slave_port_id(uint8_t port_id)
98 {
99         /* Verify that port id's are valid */
100         if (valid_port_id(port_id))
101                 return -1;
102
103         /* Verify that port_id refers to a non bonded port */
104         if (!valid_bonded_ethdev(&rte_eth_devices[port_id]))
105                 return -1;
106
107         return 0;
108 }
109
110 void
111 activate_slave(struct rte_eth_dev *eth_dev, uint8_t port_id)
112 {
113         struct bond_dev_private *internals = eth_dev->data->dev_private;
114         uint8_t active_count = internals->active_slave_count;
115
116         if (internals->mode == BONDING_MODE_8023AD)
117                 bond_mode_8023ad_activate_slave(eth_dev, port_id);
118
119         if (internals->mode == BONDING_MODE_TLB
120                         || internals->mode == BONDING_MODE_ALB) {
121
122                 internals->tlb_slaves_order[active_count] = port_id;
123         }
124
125         RTE_VERIFY(internals->active_slave_count <
126                         (RTE_DIM(internals->active_slaves) - 1));
127
128         internals->active_slaves[internals->active_slave_count] = port_id;
129         internals->active_slave_count++;
130
131         if (internals->mode == BONDING_MODE_TLB)
132                 bond_tlb_activate_slave(internals);
133         if (internals->mode == BONDING_MODE_ALB)
134                 bond_mode_alb_client_list_upd(eth_dev);
135 }
136
137 void
138 deactivate_slave(struct rte_eth_dev *eth_dev, uint8_t port_id)
139 {
140         uint8_t slave_pos;
141         struct bond_dev_private *internals = eth_dev->data->dev_private;
142         uint8_t active_count = internals->active_slave_count;
143
144         if (internals->mode == BONDING_MODE_8023AD) {
145                 bond_mode_8023ad_stop(eth_dev);
146                 bond_mode_8023ad_deactivate_slave(eth_dev, port_id);
147         } else if (internals->mode == BONDING_MODE_TLB
148                         || internals->mode == BONDING_MODE_ALB)
149                 bond_tlb_disable(internals);
150
151         slave_pos = find_slave_by_id(internals->active_slaves, active_count,
152                         port_id);
153
154         /* If slave was not at the end of the list
155          * shift active slaves up active array list */
156         if (slave_pos < active_count) {
157                 active_count--;
158                 memmove(internals->active_slaves + slave_pos,
159                                 internals->active_slaves + slave_pos + 1,
160                                 (active_count - slave_pos) *
161                                         sizeof(internals->active_slaves[0]));
162         }
163
164         RTE_VERIFY(active_count < RTE_DIM(internals->active_slaves));
165         internals->active_slave_count = active_count;
166
167         if (eth_dev->data->dev_started) {
168                 if (internals->mode == BONDING_MODE_8023AD) {
169                         bond_mode_8023ad_start(eth_dev);
170                 } else if (internals->mode == BONDING_MODE_TLB) {
171                         bond_tlb_enable(internals);
172                 } else if (internals->mode == BONDING_MODE_ALB) {
173                         bond_tlb_enable(internals);
174                         bond_mode_alb_client_list_upd(eth_dev);
175                 }
176         }
177 }
178
179 uint8_t
180 number_of_sockets(void)
181 {
182         int sockets = 0;
183         int i;
184         const struct rte_memseg *ms = rte_eal_get_physmem_layout();
185
186         for (i = 0; ((i < RTE_MAX_MEMSEG) && (ms[i].addr != NULL)); i++) {
187                 if (sockets < ms[i].socket_id)
188                         sockets = ms[i].socket_id;
189         }
190
191         /* Number of sockets = maximum socket_id + 1 */
192         return ++sockets;
193 }
194
195 const char *driver_name = "Link Bonding PMD";
196
197 int
198 rte_eth_bond_create(const char *name, uint8_t mode, uint8_t socket_id)
199 {
200         struct rte_pci_device *pci_dev = NULL;
201         struct bond_dev_private *internals = NULL;
202         struct rte_eth_dev *eth_dev = NULL;
203         struct eth_driver *eth_drv = NULL;
204         struct rte_pci_driver *pci_drv = NULL;
205         struct rte_pci_id *pci_id_table = NULL;
206         /* now do all data allocation - for eth_dev structure, dummy pci driver
207          * and internal (private) data
208          */
209
210         if (name == NULL) {
211                 RTE_BOND_LOG(ERR, "Invalid name specified");
212                 goto err;
213         }
214
215         if (socket_id >= number_of_sockets()) {
216                 RTE_BOND_LOG(ERR,
217                                 "Invalid socket id specified to create bonded device on.");
218                 goto err;
219         }
220
221         pci_dev = rte_zmalloc_socket(name, sizeof(*pci_dev), 0, socket_id);
222         if (pci_dev == NULL) {
223                 RTE_BOND_LOG(ERR, "Unable to malloc pci dev on socket");
224                 goto err;
225         }
226
227         eth_drv = rte_zmalloc_socket(name, sizeof(*eth_drv), 0, socket_id);
228         if (eth_drv == NULL) {
229                 RTE_BOND_LOG(ERR, "Unable to malloc eth_drv on socket");
230                 goto err;
231         }
232
233         pci_drv = &eth_drv->pci_drv;
234
235         pci_id_table = rte_zmalloc_socket(name, sizeof(*pci_id_table), 0, socket_id);
236         if (pci_id_table == NULL) {
237                 RTE_BOND_LOG(ERR, "Unable to malloc pci_id_table on socket");
238                 goto err;
239         }
240
241         pci_drv->id_table = pci_id_table;
242
243         pci_drv->id_table->device_id = PCI_ANY_ID;
244         pci_drv->id_table->subsystem_device_id = PCI_ANY_ID;
245         pci_drv->id_table->vendor_id = PCI_ANY_ID;
246         pci_drv->id_table->subsystem_vendor_id = PCI_ANY_ID;
247
248         pci_drv->drv_flags = RTE_PCI_DRV_INTR_LSC;
249
250         internals = rte_zmalloc_socket(name, sizeof(*internals), 0, socket_id);
251         if (internals == NULL) {
252                 RTE_BOND_LOG(ERR, "Unable to malloc internals on socket");
253                 goto err;
254         }
255
256         /* reserve an ethdev entry */
257         eth_dev = rte_eth_dev_allocate(name, RTE_ETH_DEV_VIRTUAL);
258         if (eth_dev == NULL) {
259                 RTE_BOND_LOG(ERR, "Unable to allocate rte_eth_dev");
260                 goto err;
261         }
262
263         pci_dev->numa_node = socket_id;
264         pci_drv->name = driver_name;
265
266         eth_dev->driver = eth_drv;
267         eth_dev->data->dev_private = internals;
268         eth_dev->data->nb_rx_queues = (uint16_t)1;
269         eth_dev->data->nb_tx_queues = (uint16_t)1;
270
271         TAILQ_INIT(&(eth_dev->link_intr_cbs));
272
273         eth_dev->data->dev_link.link_status = 0;
274
275         eth_dev->data->mac_addrs = rte_zmalloc_socket(name, ETHER_ADDR_LEN, 0,
276                         socket_id);
277
278         eth_dev->data->dev_started = 0;
279         eth_dev->data->promiscuous = 0;
280         eth_dev->data->scattered_rx = 0;
281         eth_dev->data->all_multicast = 0;
282
283         eth_dev->dev_ops = &default_dev_ops;
284         eth_dev->pci_dev = pci_dev;
285
286         rte_spinlock_init(&internals->lock);
287
288         internals->port_id = eth_dev->data->port_id;
289         internals->mode = BONDING_MODE_INVALID;
290         internals->current_primary_port = 0;
291         internals->balance_xmit_policy = BALANCE_XMIT_POLICY_LAYER2;
292         internals->xmit_hash = xmit_l2_hash;
293         internals->user_defined_mac = 0;
294         internals->link_props_set = 0;
295
296         internals->link_status_polling_enabled = 0;
297
298         internals->link_status_polling_interval_ms = DEFAULT_POLLING_INTERVAL_10_MS;
299         internals->link_down_delay_ms = 0;
300         internals->link_up_delay_ms = 0;
301
302         internals->slave_count = 0;
303         internals->active_slave_count = 0;
304         internals->rx_offload_capa = 0;
305         internals->tx_offload_capa = 0;
306
307         memset(internals->active_slaves, 0, sizeof(internals->active_slaves));
308         memset(internals->slaves, 0, sizeof(internals->slaves));
309
310         /* Set mode 4 default configuration */
311         bond_mode_8023ad_setup(eth_dev, NULL);
312         if (bond_ethdev_mode_set(eth_dev, mode)) {
313                 RTE_BOND_LOG(ERR, "Failed to set bonded device %d mode too %d",
314                                  eth_dev->data->port_id, mode);
315                 goto err;
316         }
317
318         return eth_dev->data->port_id;
319
320 err:
321         if (pci_dev)
322                 rte_free(pci_dev);
323         if (pci_id_table)
324                 rte_free(pci_id_table);
325         if (eth_drv)
326                 rte_free(eth_drv);
327         if (internals)
328                 rte_free(internals);
329         return -1;
330 }
331
332 static int
333 __eth_bond_slave_add_lock_free(uint8_t bonded_port_id, uint8_t slave_port_id)
334 {
335         struct rte_eth_dev *bonded_eth_dev, *slave_eth_dev;
336         struct bond_dev_private *internals;
337         struct bond_dev_private *temp_internals;
338         struct rte_eth_link link_props;
339         struct rte_eth_dev_info dev_info;
340
341         int i, j;
342
343         if (valid_slave_port_id(slave_port_id) != 0)
344                 return -1;
345
346         bonded_eth_dev = &rte_eth_devices[bonded_port_id];
347         internals = bonded_eth_dev->data->dev_private;
348
349         /* Verify that new slave device is not already a slave of another
350          * bonded device */
351         for (i = rte_eth_dev_count()-1; i >= 0; i--) {
352                 if (valid_bonded_ethdev(&rte_eth_devices[i]) == 0) {
353                         temp_internals = rte_eth_devices[i].data->dev_private;
354
355                         for (j = 0; j < temp_internals->slave_count; j++) {
356                                 /* Device already a slave of a bonded device */
357                                 if (temp_internals->slaves[j].port_id == slave_port_id) {
358                                         RTE_BOND_LOG(ERR, "Slave port %d is already a slave",
359                                                         slave_port_id);
360                                         return -1;
361                                 }
362                         }
363                 }
364         }
365
366         slave_eth_dev = &rte_eth_devices[slave_port_id];
367
368         /* Add slave details to bonded device */
369         slave_add(internals, slave_eth_dev);
370
371         memset(&dev_info, 0, sizeof(dev_info));
372         rte_eth_dev_info_get(slave_port_id, &dev_info);
373
374         if (internals->slave_count < 1) {
375                 /* if MAC is not user defined then use MAC of first slave add to
376                  * bonded device */
377                 if (!internals->user_defined_mac)
378                         mac_address_set(bonded_eth_dev, slave_eth_dev->data->mac_addrs);
379
380                 /* Inherit eth dev link properties from first slave */
381                 link_properties_set(bonded_eth_dev,
382                                 &(slave_eth_dev->data->dev_link));
383
384                 /* Make primary slave */
385                 internals->primary_port = slave_port_id;
386
387                 /* Take the first dev's offload capabilities */
388                 internals->rx_offload_capa = dev_info.rx_offload_capa;
389                 internals->tx_offload_capa = dev_info.tx_offload_capa;
390
391         } else {
392                 /* Check slave link properties are supported if props are set,
393                  * all slaves must be the same */
394                 if (internals->link_props_set) {
395                         if (link_properties_valid(&(bonded_eth_dev->data->dev_link),
396                                                                           &(slave_eth_dev->data->dev_link))) {
397                                 RTE_BOND_LOG(ERR,
398                                                 "Slave port %d link speed/duplex not supported",
399                                                 slave_port_id);
400                                 return -1;
401                         }
402                 } else {
403                         link_properties_set(bonded_eth_dev,
404                                         &(slave_eth_dev->data->dev_link));
405                 }
406                 internals->rx_offload_capa &= dev_info.rx_offload_capa;
407                 internals->tx_offload_capa &= dev_info.tx_offload_capa;
408         }
409
410         internals->slave_count++;
411
412         /* Update all slave devices MACs*/
413         mac_address_slaves_update(bonded_eth_dev);
414
415         if (bonded_eth_dev->data->dev_started) {
416                 if (slave_configure(bonded_eth_dev, slave_eth_dev) != 0) {
417                         RTE_BOND_LOG(ERR, "rte_bond_slaves_configure: port=%d",
418                                         slave_port_id);
419                         return -1;
420                 }
421         }
422
423         /* Register link status change callback with bonded device pointer as
424          * argument*/
425         rte_eth_dev_callback_register(slave_port_id, RTE_ETH_EVENT_INTR_LSC,
426                         bond_ethdev_lsc_event_callback, &bonded_eth_dev->data->port_id);
427
428         /* If bonded device is started then we can add the slave to our active
429          * slave array */
430         if (bonded_eth_dev->data->dev_started) {
431                 rte_eth_link_get_nowait(slave_port_id, &link_props);
432
433                  if (link_props.link_status == 1)
434                         activate_slave(bonded_eth_dev, slave_port_id);
435         }
436         return 0;
437
438 }
439
440 int
441 rte_eth_bond_slave_add(uint8_t bonded_port_id, uint8_t slave_port_id)
442 {
443         struct rte_eth_dev *bonded_eth_dev;
444         struct bond_dev_private *internals;
445
446         int retval;
447
448         /* Verify that port id's are valid bonded and slave ports */
449         if (valid_bonded_port_id(bonded_port_id) != 0)
450                 return -1;
451
452         bonded_eth_dev = &rte_eth_devices[bonded_port_id];
453         internals = bonded_eth_dev->data->dev_private;
454
455         rte_spinlock_lock(&internals->lock);
456
457         retval = __eth_bond_slave_add_lock_free(bonded_port_id, slave_port_id);
458
459         rte_spinlock_unlock(&internals->lock);
460
461         return retval;
462 }
463
464 static int
465 __eth_bond_slave_remove_lock_free(uint8_t bonded_port_id, uint8_t slave_port_id)
466 {
467         struct rte_eth_dev *bonded_eth_dev;
468         struct bond_dev_private *internals;
469
470         int i, slave_idx;
471
472         if (valid_slave_port_id(slave_port_id) != 0)
473                 return -1;
474
475         bonded_eth_dev = &rte_eth_devices[bonded_port_id];
476         internals = bonded_eth_dev->data->dev_private;
477
478         /* first remove from active slave list */
479         slave_idx = find_slave_by_id(internals->active_slaves,
480                 internals->active_slave_count, slave_port_id);
481
482         if (slave_idx < internals->active_slave_count)
483                 deactivate_slave(bonded_eth_dev, slave_port_id);
484
485         slave_idx = -1;
486         /* now find in slave list */
487         for (i = 0; i < internals->slave_count; i++)
488                 if (internals->slaves[i].port_id == slave_port_id) {
489                         slave_idx = i;
490                         break;
491                 }
492
493         if (slave_idx < 0) {
494                 RTE_BOND_LOG(ERR, "Couldn't find slave in port list, slave count %d",
495                                 internals->slave_count);
496                 return -1;
497         }
498
499         /* Un-register link status change callback with bonded device pointer as
500          * argument*/
501         rte_eth_dev_callback_unregister(slave_port_id, RTE_ETH_EVENT_INTR_LSC,
502                         bond_ethdev_lsc_event_callback,
503                         &rte_eth_devices[bonded_port_id].data->port_id);
504
505         /* Restore original MAC address of slave device */
506         mac_address_set(&rte_eth_devices[slave_port_id],
507                         &(internals->slaves[slave_idx].persisted_mac_addr));
508
509         slave_remove(internals, &rte_eth_devices[slave_port_id]);
510
511         /*  first slave in the active list will be the primary by default,
512          *  otherwise use first device in list */
513         if (internals->current_primary_port == slave_port_id) {
514                 if (internals->active_slave_count > 0)
515                         internals->current_primary_port = internals->active_slaves[0];
516                 else if (internals->slave_count > 0)
517                         internals->current_primary_port = internals->slaves[0].port_id;
518                 else
519                         internals->primary_port = 0;
520         }
521
522         if (internals->active_slave_count < 1) {
523                 /* reset device link properties as no slaves are active */
524                 link_properties_reset(&rte_eth_devices[bonded_port_id]);
525
526                 /* if no slaves are any longer attached to bonded device and MAC is not
527                  * user defined then clear MAC of bonded device as it will be reset
528                  * when a new slave is added */
529                 if (internals->slave_count < 1 && !internals->user_defined_mac)
530                         memset(rte_eth_devices[bonded_port_id].data->mac_addrs, 0,
531                                         sizeof(*(rte_eth_devices[bonded_port_id].data->mac_addrs)));
532         }
533         if (internals->slave_count == 0) {
534                 internals->rx_offload_capa = 0;
535                 internals->tx_offload_capa = 0;
536         }
537         return 0;
538 }
539
540 int
541 rte_eth_bond_slave_remove(uint8_t bonded_port_id, uint8_t slave_port_id)
542 {
543         struct rte_eth_dev *bonded_eth_dev;
544         struct bond_dev_private *internals;
545         int retval;
546
547         if (valid_bonded_port_id(bonded_port_id) != 0)
548                 return -1;
549
550         bonded_eth_dev = &rte_eth_devices[bonded_port_id];
551         internals = bonded_eth_dev->data->dev_private;
552
553         rte_spinlock_lock(&internals->lock);
554
555         retval = __eth_bond_slave_remove_lock_free(bonded_port_id, slave_port_id);
556
557         rte_spinlock_unlock(&internals->lock);
558
559         return retval;
560 }
561
562 int
563 rte_eth_bond_mode_set(uint8_t bonded_port_id, uint8_t mode)
564 {
565         if (valid_bonded_port_id(bonded_port_id) != 0)
566                 return -1;
567
568         return bond_ethdev_mode_set(&rte_eth_devices[bonded_port_id], mode);
569 }
570
571 int
572 rte_eth_bond_mode_get(uint8_t bonded_port_id)
573 {
574         struct bond_dev_private *internals;
575
576         if (valid_bonded_port_id(bonded_port_id) != 0)
577                 return -1;
578
579         internals = rte_eth_devices[bonded_port_id].data->dev_private;
580
581         return internals->mode;
582 }
583
584 int
585 rte_eth_bond_primary_set(uint8_t bonded_port_id, uint8_t slave_port_id)
586 {
587         struct bond_dev_private *internals;
588
589         if (valid_bonded_port_id(bonded_port_id) != 0)
590                 return -1;
591
592         if (valid_slave_port_id(slave_port_id) != 0)
593                 return -1;
594
595         internals =  rte_eth_devices[bonded_port_id].data->dev_private;
596
597         internals->user_defined_primary_port = 1;
598         internals->primary_port = slave_port_id;
599
600         bond_ethdev_primary_set(internals, slave_port_id);
601
602         return 0;
603 }
604
605 int
606 rte_eth_bond_primary_get(uint8_t bonded_port_id)
607 {
608         struct bond_dev_private *internals;
609
610         if (valid_bonded_port_id(bonded_port_id) != 0)
611                 return -1;
612
613         internals = rte_eth_devices[bonded_port_id].data->dev_private;
614
615         if (internals->slave_count < 1)
616                 return -1;
617
618         return internals->current_primary_port;
619 }
620
621 int
622 rte_eth_bond_slaves_get(uint8_t bonded_port_id, uint8_t slaves[], uint8_t len)
623 {
624         struct bond_dev_private *internals;
625         uint8_t i;
626
627         if (valid_bonded_port_id(bonded_port_id) != 0)
628                 return -1;
629
630         if (slaves == NULL)
631                 return -1;
632
633         internals = rte_eth_devices[bonded_port_id].data->dev_private;
634
635         if (internals->slave_count > len)
636                 return -1;
637
638         for (i = 0; i < internals->slave_count; i++)
639                 slaves[i] = internals->slaves[i].port_id;
640
641         return internals->slave_count;
642 }
643
644 int
645 rte_eth_bond_active_slaves_get(uint8_t bonded_port_id, uint8_t slaves[],
646                 uint8_t len)
647 {
648         struct bond_dev_private *internals;
649
650         if (valid_bonded_port_id(bonded_port_id) != 0)
651                 return -1;
652
653         if (slaves == NULL)
654                 return -1;
655
656         internals = rte_eth_devices[bonded_port_id].data->dev_private;
657
658         if (internals->active_slave_count > len)
659                 return -1;
660
661         memcpy(slaves, internals->active_slaves, internals->active_slave_count);
662
663         return internals->active_slave_count;
664 }
665
666 int
667 rte_eth_bond_mac_address_set(uint8_t bonded_port_id,
668                 struct ether_addr *mac_addr)
669 {
670         struct rte_eth_dev *bonded_eth_dev;
671         struct bond_dev_private *internals;
672
673         if (valid_bonded_port_id(bonded_port_id) != 0)
674                 return -1;
675
676         bonded_eth_dev = &rte_eth_devices[bonded_port_id];
677         internals = bonded_eth_dev->data->dev_private;
678
679         /* Set MAC Address of Bonded Device */
680         if (mac_address_set(bonded_eth_dev, mac_addr))
681                 return -1;
682
683         internals->user_defined_mac = 1;
684
685         /* Update all slave devices MACs*/
686         if (internals->slave_count > 0)
687                 return mac_address_slaves_update(bonded_eth_dev);
688
689         return 0;
690 }
691
692 int
693 rte_eth_bond_mac_address_reset(uint8_t bonded_port_id)
694 {
695         struct rte_eth_dev *bonded_eth_dev;
696         struct bond_dev_private *internals;
697
698         if (valid_bonded_port_id(bonded_port_id) != 0)
699                 return -1;
700
701         bonded_eth_dev = &rte_eth_devices[bonded_port_id];
702         internals = bonded_eth_dev->data->dev_private;
703
704         internals->user_defined_mac = 0;
705
706         if (internals->slave_count > 0) {
707                 /* Set MAC Address of Bonded Device */
708                 if (mac_address_set(bonded_eth_dev,
709                                 &internals->slaves[internals->primary_port].persisted_mac_addr)
710                                 != 0) {
711                         RTE_BOND_LOG(ERR, "Failed to set MAC address on bonded device");
712                         return -1;
713                 }
714                 /* Update all slave devices MAC addresses */
715                 return mac_address_slaves_update(bonded_eth_dev);
716         }
717         /* No need to update anything as no slaves present */
718         return 0;
719 }
720
721 int
722 rte_eth_bond_xmit_policy_set(uint8_t bonded_port_id, uint8_t policy)
723 {
724         struct bond_dev_private *internals;
725
726         if (valid_bonded_port_id(bonded_port_id) != 0)
727                 return -1;
728
729         internals = rte_eth_devices[bonded_port_id].data->dev_private;
730
731         switch (policy) {
732         case BALANCE_XMIT_POLICY_LAYER2:
733                 internals->balance_xmit_policy = policy;
734                 internals->xmit_hash = xmit_l2_hash;
735                 break;
736         case BALANCE_XMIT_POLICY_LAYER23:
737                 internals->balance_xmit_policy = policy;
738                 internals->xmit_hash = xmit_l23_hash;
739                 break;
740         case BALANCE_XMIT_POLICY_LAYER34:
741                 internals->balance_xmit_policy = policy;
742                 internals->xmit_hash = xmit_l34_hash;
743                 break;
744
745         default:
746                 return -1;
747         }
748         return 0;
749 }
750
751 int
752 rte_eth_bond_xmit_policy_get(uint8_t bonded_port_id)
753 {
754         struct bond_dev_private *internals;
755
756         if (valid_bonded_port_id(bonded_port_id) != 0)
757                 return -1;
758
759         internals = rte_eth_devices[bonded_port_id].data->dev_private;
760
761         return internals->balance_xmit_policy;
762 }
763
764 int
765 rte_eth_bond_link_monitoring_set(uint8_t bonded_port_id, uint32_t internal_ms)
766 {
767         struct bond_dev_private *internals;
768
769         if (valid_bonded_port_id(bonded_port_id) != 0)
770                 return -1;
771
772         internals = rte_eth_devices[bonded_port_id].data->dev_private;
773         internals->link_status_polling_interval_ms = internal_ms;
774
775         return 0;
776 }
777
778 int
779 rte_eth_bond_link_monitoring_get(uint8_t bonded_port_id)
780 {
781         struct bond_dev_private *internals;
782
783         if (valid_bonded_port_id(bonded_port_id) != 0)
784                 return -1;
785
786         internals = rte_eth_devices[bonded_port_id].data->dev_private;
787
788         return internals->link_status_polling_interval_ms;
789 }
790
791 int
792 rte_eth_bond_link_down_prop_delay_set(uint8_t bonded_port_id, uint32_t delay_ms)
793
794 {
795         struct bond_dev_private *internals;
796
797         if (valid_bonded_port_id(bonded_port_id) != 0)
798                 return -1;
799
800         internals = rte_eth_devices[bonded_port_id].data->dev_private;
801         internals->link_down_delay_ms = delay_ms;
802
803         return 0;
804 }
805
806 int
807 rte_eth_bond_link_down_prop_delay_get(uint8_t bonded_port_id)
808 {
809         struct bond_dev_private *internals;
810
811         if (valid_bonded_port_id(bonded_port_id) != 0)
812                 return -1;
813
814         internals = rte_eth_devices[bonded_port_id].data->dev_private;
815
816         return internals->link_down_delay_ms;
817 }
818
819 int
820 rte_eth_bond_link_up_prop_delay_set(uint8_t bonded_port_id, uint32_t delay_ms)
821
822 {
823         struct bond_dev_private *internals;
824
825         if (valid_bonded_port_id(bonded_port_id) != 0)
826                 return -1;
827
828         internals = rte_eth_devices[bonded_port_id].data->dev_private;
829         internals->link_up_delay_ms = delay_ms;
830
831         return 0;
832 }
833
834 int
835 rte_eth_bond_link_up_prop_delay_get(uint8_t bonded_port_id)
836 {
837         struct bond_dev_private *internals;
838
839         if (valid_bonded_port_id(bonded_port_id) != 0)
840                 return -1;
841
842         internals = rte_eth_devices[bonded_port_id].data->dev_private;
843
844         return internals->link_up_delay_ms;
845 }