]> git.proxmox.com Git - ceph.git/blob - ceph/src/spdk/dpdk/app/test/test_link_bonding_mode4.c
import 15.2.0 Octopus source
[ceph.git] / ceph / src / spdk / dpdk / app / test / test_link_bonding_mode4.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2014 Intel Corporation
3 */
4
5 #include <string.h>
6 #include <stdarg.h>
7 #include <stdio.h>
8 #include <stdlib.h>
9 #include <stdint.h>
10 #include <inttypes.h>
11 #include <errno.h>
12 #include <rte_cycles.h>
13 #include <sys/queue.h>
14
15 #include <rte_byteorder.h>
16 #include <rte_common.h>
17 #include <rte_debug.h>
18 #include <rte_ethdev.h>
19 #include <rte_log.h>
20 #include <rte_lcore.h>
21 #include <rte_memory.h>
22
23 #include <rte_string_fns.h>
24
25 #include <rte_eth_ring.h>
26 #include <rte_errno.h>
27 #include <rte_eth_bond.h>
28 #include <rte_eth_bond_8023ad.h>
29
30 #include "packet_burst_generator.h"
31
32 #include "test.h"
33
34 #define SLAVE_COUNT (4)
35
36 #define RX_RING_SIZE 1024
37 #define TX_RING_SIZE 1024
38
39 #define MBUF_CACHE_SIZE (250)
40 #define BURST_SIZE (32)
41
42 #define TEST_RX_DESC_MAX (2048)
43 #define TEST_TX_DESC_MAX (2048)
44 #define MAX_PKT_BURST (32)
45 #define DEF_PKT_BURST (16)
46
47 #define BONDED_DEV_NAME ("net_bonding_m4_bond_dev")
48
49 #define SLAVE_DEV_NAME_FMT ("net_virt_%d")
50 #define SLAVE_RX_QUEUE_FMT ("net_virt_%d_rx")
51 #define SLAVE_TX_QUEUE_FMT ("net_virt_%d_tx")
52
53 #define INVALID_SOCKET_ID (-1)
54 #define INVALID_PORT_ID (0xFF)
55 #define INVALID_BONDING_MODE (-1)
56
57 static const struct ether_addr slave_mac_default = {
58 { 0x00, 0xFF, 0x00, 0xFF, 0x00, 0x00 }
59 };
60
61 static const struct ether_addr parnter_mac_default = {
62 { 0x22, 0xBB, 0xFF, 0xBB, 0x00, 0x00 }
63 };
64
65 static const struct ether_addr parnter_system = {
66 { 0x33, 0xFF, 0xBB, 0xFF, 0x00, 0x00 }
67 };
68
69 static const struct ether_addr slow_protocol_mac_addr = {
70 { 0x01, 0x80, 0xC2, 0x00, 0x00, 0x02 }
71 };
72
73 struct slave_conf {
74 struct rte_ring *rx_queue;
75 struct rte_ring *tx_queue;
76 uint16_t port_id;
77 uint8_t bonded : 1;
78
79 uint8_t lacp_parnter_state;
80 };
81
82 struct ether_vlan_hdr {
83 struct ether_hdr pkt_eth_hdr;
84 struct vlan_hdr vlan_hdr;
85 };
86
87 struct link_bonding_unittest_params {
88 uint8_t bonded_port_id;
89 struct slave_conf slave_ports[SLAVE_COUNT];
90
91 struct rte_mempool *mbuf_pool;
92 };
93
94 #define TEST_DEFAULT_SLAVE_COUNT RTE_DIM(test_params.slave_ports)
95 #define TEST_RX_SLAVE_COUT TEST_DEFAULT_SLAVE_COUNT
96 #define TEST_TX_SLAVE_COUNT TEST_DEFAULT_SLAVE_COUNT
97 #define TEST_MARKER_SLAVE_COUT TEST_DEFAULT_SLAVE_COUNT
98 #define TEST_EXPIRED_SLAVE_COUNT TEST_DEFAULT_SLAVE_COUNT
99 #define TEST_PROMISC_SLAVE_COUNT TEST_DEFAULT_SLAVE_COUNT
100
101 static struct link_bonding_unittest_params test_params = {
102 .bonded_port_id = INVALID_PORT_ID,
103 .slave_ports = { [0 ... SLAVE_COUNT - 1] = { .port_id = INVALID_PORT_ID} },
104
105 .mbuf_pool = NULL,
106 };
107
108 static struct rte_eth_conf default_pmd_conf = {
109 .rxmode = {
110 .mq_mode = ETH_MQ_RX_NONE,
111 .max_rx_pkt_len = ETHER_MAX_LEN,
112 .split_hdr_size = 0,
113 },
114 .txmode = {
115 .mq_mode = ETH_MQ_TX_NONE,
116 },
117 .lpbk_mode = 0,
118 };
119
120 static uint8_t lacpdu_rx_count[RTE_MAX_ETHPORTS] = {0, };
121
122 #define FOR_EACH(_i, _item, _array, _size) \
123 for (_i = 0, _item = &_array[0]; _i < _size && (_item = &_array[_i]); _i++)
124
125 /* Macro for iterating over every port that can be used as a slave
126 * in this test.
127 * _i variable used as an index in test_params->slave_ports
128 * _slave pointer to &test_params->slave_ports[_idx]
129 */
130 #define FOR_EACH_PORT(_i, _port) \
131 FOR_EACH(_i, _port, test_params.slave_ports, \
132 RTE_DIM(test_params.slave_ports))
133
134 /* Macro for iterating over every port that can be used as a slave
135 * in this test and satisfy given condition.
136 *
137 * _i variable used as an index in test_params->slave_ports
138 * _slave pointer to &test_params->slave_ports[_idx]
139 * _condition condition that need to be checked
140 */
141 #define FOR_EACH_PORT_IF(_i, _port, _condition) FOR_EACH_PORT((_i), (_port)) \
142 if (!!(_condition))
143
144 /* Macro for iterating over every port that is currently a slave of a bonded
145 * device.
146 * _i variable used as an index in test_params->slave_ports
147 * _slave pointer to &test_params->slave_ports[_idx]
148 * */
149 #define FOR_EACH_SLAVE(_i, _slave) \
150 FOR_EACH_PORT_IF(_i, _slave, (_slave)->bonded != 0)
151
152 /*
153 * Returns packets from slaves TX queue.
154 * slave slave port
155 * buffer for packets
156 * size size of buffer
157 * return number of packets or negative error number
158 */
159 static int
160 slave_get_pkts(struct slave_conf *slave, struct rte_mbuf **buf, uint16_t size)
161 {
162 return rte_ring_dequeue_burst(slave->tx_queue, (void **)buf,
163 size, NULL);
164 }
165
166 /*
167 * Injects given packets into slaves RX queue.
168 * slave slave port
169 * buffer for packets
170 * size number of packets to be injected
171 * return number of queued packets or negative error number
172 */
173 static int
174 slave_put_pkts(struct slave_conf *slave, struct rte_mbuf **buf, uint16_t size)
175 {
176 return rte_ring_enqueue_burst(slave->rx_queue, (void **)buf,
177 size, NULL);
178 }
179
180 static uint16_t
181 bond_rx(struct rte_mbuf **buf, uint16_t size)
182 {
183 return rte_eth_rx_burst(test_params.bonded_port_id, 0, buf, size);
184 }
185
186 static uint16_t
187 bond_tx(struct rte_mbuf **buf, uint16_t size)
188 {
189 return rte_eth_tx_burst(test_params.bonded_port_id, 0, buf, size);
190 }
191
192 static void
193 free_pkts(struct rte_mbuf **pkts, uint16_t count)
194 {
195 uint16_t i;
196
197 for (i = 0; i < count; i++) {
198 if (pkts[i] != NULL)
199 rte_pktmbuf_free(pkts[i]);
200 }
201 }
202
203 static int
204 configure_ethdev(uint16_t port_id, uint8_t start)
205 {
206 TEST_ASSERT(rte_eth_dev_configure(port_id, 1, 1, &default_pmd_conf) == 0,
207 "Failed to configure device %u", port_id);
208
209 TEST_ASSERT(rte_eth_rx_queue_setup(port_id, 0, RX_RING_SIZE,
210 rte_eth_dev_socket_id(port_id), NULL, test_params.mbuf_pool) == 0,
211 "Failed to setup rx queue.");
212
213 TEST_ASSERT(rte_eth_tx_queue_setup(port_id, 0, TX_RING_SIZE,
214 rte_eth_dev_socket_id(port_id), NULL) == 0,
215 "Failed to setup tx queue.");
216
217 if (start) {
218 TEST_ASSERT(rte_eth_dev_start(port_id) == 0,
219 "Failed to start device (%d).", port_id);
220 }
221 return 0;
222 }
223
224 static int
225 add_slave(struct slave_conf *slave, uint8_t start)
226 {
227 struct ether_addr addr, addr_check;
228
229 /* Some sanity check */
230 RTE_VERIFY(test_params.slave_ports <= slave &&
231 slave - test_params.slave_ports < (int)RTE_DIM(test_params.slave_ports));
232 RTE_VERIFY(slave->bonded == 0);
233 RTE_VERIFY(slave->port_id != INVALID_PORT_ID);
234
235 ether_addr_copy(&slave_mac_default, &addr);
236 addr.addr_bytes[ETHER_ADDR_LEN - 1] = slave->port_id;
237
238 rte_eth_dev_mac_addr_remove(slave->port_id, &addr);
239
240 TEST_ASSERT_SUCCESS(rte_eth_dev_mac_addr_add(slave->port_id, &addr, 0),
241 "Failed to set slave MAC address");
242
243 TEST_ASSERT_SUCCESS(rte_eth_bond_slave_add(test_params.bonded_port_id,
244 slave->port_id),
245 "Failed to add slave (idx=%u, id=%u) to bonding (id=%u)",
246 (uint8_t)(slave - test_params.slave_ports), slave->port_id,
247 test_params.bonded_port_id);
248
249 slave->bonded = 1;
250 if (start) {
251 TEST_ASSERT_SUCCESS(rte_eth_dev_start(slave->port_id),
252 "Failed to start slave %u", slave->port_id);
253 }
254
255 rte_eth_macaddr_get(slave->port_id, &addr_check);
256 TEST_ASSERT_EQUAL(is_same_ether_addr(&addr, &addr_check), 1,
257 "Slave MAC address is not as expected");
258
259 RTE_VERIFY(slave->lacp_parnter_state == 0);
260 return 0;
261 }
262
263 static int
264 remove_slave(struct slave_conf *slave)
265 {
266 ptrdiff_t slave_idx = slave - test_params.slave_ports;
267
268 RTE_VERIFY(test_params.slave_ports <= slave &&
269 slave_idx < (ptrdiff_t)RTE_DIM(test_params.slave_ports));
270
271 RTE_VERIFY(slave->bonded == 1);
272 RTE_VERIFY(slave->port_id != INVALID_PORT_ID);
273
274 TEST_ASSERT_EQUAL(rte_ring_count(slave->rx_queue), 0,
275 "Slave %u tx queue not empty while removing from bonding.",
276 slave->port_id);
277
278 TEST_ASSERT_EQUAL(rte_ring_count(slave->rx_queue), 0,
279 "Slave %u tx queue not empty while removing from bonding.",
280 slave->port_id);
281
282 TEST_ASSERT_EQUAL(rte_eth_bond_slave_remove(test_params.bonded_port_id,
283 slave->port_id), 0,
284 "Failed to remove slave (idx=%u, id=%u) from bonding (id=%u)",
285 (uint8_t)slave_idx, slave->port_id,
286 test_params.bonded_port_id);
287
288 slave->bonded = 0;
289 slave->lacp_parnter_state = 0;
290 return 0;
291 }
292
293 static void
294 lacp_recv_cb(uint16_t slave_id, struct rte_mbuf *lacp_pkt)
295 {
296 struct ether_hdr *hdr;
297 struct slow_protocol_frame *slow_hdr;
298
299 RTE_VERIFY(lacp_pkt != NULL);
300
301 hdr = rte_pktmbuf_mtod(lacp_pkt, struct ether_hdr *);
302 RTE_VERIFY(hdr->ether_type == rte_cpu_to_be_16(ETHER_TYPE_SLOW));
303
304 slow_hdr = rte_pktmbuf_mtod(lacp_pkt, struct slow_protocol_frame *);
305 RTE_VERIFY(slow_hdr->slow_protocol.subtype == SLOW_SUBTYPE_LACP);
306
307 lacpdu_rx_count[slave_id]++;
308 rte_pktmbuf_free(lacp_pkt);
309 }
310
311 static int
312 initialize_bonded_device_with_slaves(uint16_t slave_count, uint8_t external_sm)
313 {
314 uint8_t i;
315
316 RTE_VERIFY(test_params.bonded_port_id != INVALID_PORT_ID);
317
318 for (i = 0; i < slave_count; i++) {
319 TEST_ASSERT_SUCCESS(add_slave(&test_params.slave_ports[i], 1),
320 "Failed to add port %u to bonded device.\n",
321 test_params.slave_ports[i].port_id);
322 }
323
324 /* Reset mode 4 configuration */
325 rte_eth_bond_8023ad_setup(test_params.bonded_port_id, NULL);
326 rte_eth_promiscuous_disable(test_params.bonded_port_id);
327
328 if (external_sm) {
329 struct rte_eth_bond_8023ad_conf conf;
330
331 rte_eth_bond_8023ad_conf_get(test_params.bonded_port_id, &conf);
332 conf.slowrx_cb = lacp_recv_cb;
333 rte_eth_bond_8023ad_setup(test_params.bonded_port_id, &conf);
334
335 }
336
337 TEST_ASSERT_SUCCESS(rte_eth_dev_start(test_params.bonded_port_id),
338 "Failed to start bonded device");
339
340 return TEST_SUCCESS;
341 }
342
343 static int
344 remove_slaves_and_stop_bonded_device(void)
345 {
346 struct slave_conf *slave;
347 int retval;
348 uint16_t slaves[RTE_MAX_ETHPORTS];
349 uint16_t i;
350
351 rte_eth_dev_stop(test_params.bonded_port_id);
352
353 FOR_EACH_SLAVE(i, slave)
354 remove_slave(slave);
355
356 retval = rte_eth_bond_slaves_get(test_params.bonded_port_id, slaves,
357 RTE_DIM(slaves));
358
359 TEST_ASSERT_EQUAL(retval, 0,
360 "Expected bonded device %u have 0 slaves but returned %d.",
361 test_params.bonded_port_id, retval);
362
363 FOR_EACH_PORT(i, slave) {
364 rte_eth_dev_stop(slave->port_id);
365
366 TEST_ASSERT(slave->bonded == 0,
367 "Port id=%u is still marked as enslaved.", slave->port_id);
368 }
369
370 return TEST_SUCCESS;
371 }
372
373 static int
374 test_setup(void)
375 {
376 int retval, nb_mbuf_per_pool;
377 char name[RTE_ETH_NAME_MAX_LEN];
378 struct slave_conf *port;
379 const uint8_t socket_id = rte_socket_id();
380 uint16_t i;
381
382 if (test_params.mbuf_pool == NULL) {
383 nb_mbuf_per_pool = TEST_RX_DESC_MAX + DEF_PKT_BURST +
384 TEST_TX_DESC_MAX + MAX_PKT_BURST;
385 test_params.mbuf_pool = rte_pktmbuf_pool_create("TEST_MODE4",
386 nb_mbuf_per_pool, MBUF_CACHE_SIZE, 0,
387 RTE_MBUF_DEFAULT_BUF_SIZE, socket_id);
388
389 TEST_ASSERT(test_params.mbuf_pool != NULL,
390 "rte_mempool_create failed\n");
391 }
392
393 /* Create / initialize ring eth devs. */
394 FOR_EACH_PORT(i, port) {
395 port = &test_params.slave_ports[i];
396
397 if (port->rx_queue == NULL) {
398 retval = snprintf(name, RTE_DIM(name), SLAVE_RX_QUEUE_FMT, i);
399 TEST_ASSERT(retval <= (int)RTE_DIM(name) - 1, "Name too long");
400 port->rx_queue = rte_ring_create(name, RX_RING_SIZE, socket_id, 0);
401 TEST_ASSERT(port->rx_queue != NULL,
402 "Failed to allocate rx ring '%s': %s", name,
403 rte_strerror(rte_errno));
404 }
405
406 if (port->tx_queue == NULL) {
407 retval = snprintf(name, RTE_DIM(name), SLAVE_TX_QUEUE_FMT, i);
408 TEST_ASSERT(retval <= (int)RTE_DIM(name) - 1, "Name too long");
409 port->tx_queue = rte_ring_create(name, TX_RING_SIZE, socket_id, 0);
410 TEST_ASSERT_NOT_NULL(port->tx_queue,
411 "Failed to allocate tx ring '%s': %s", name,
412 rte_strerror(rte_errno));
413 }
414
415 if (port->port_id == INVALID_PORT_ID) {
416 retval = snprintf(name, RTE_DIM(name), SLAVE_DEV_NAME_FMT, i);
417 TEST_ASSERT(retval < (int)RTE_DIM(name) - 1, "Name too long");
418 retval = rte_eth_from_rings(name, &port->rx_queue, 1,
419 &port->tx_queue, 1, socket_id);
420 TEST_ASSERT(retval >= 0,
421 "Failed to create ring ethdev '%s'\n", name);
422
423 port->port_id = rte_eth_dev_count_avail() - 1;
424 }
425
426 retval = configure_ethdev(port->port_id, 1);
427 TEST_ASSERT_SUCCESS(retval, "Failed to configure virtual ethdev %s\n",
428 name);
429 }
430
431 if (test_params.bonded_port_id == INVALID_PORT_ID) {
432 retval = rte_eth_bond_create(BONDED_DEV_NAME, BONDING_MODE_8023AD,
433 socket_id);
434
435 TEST_ASSERT(retval >= 0, "Failed to create bonded ethdev %s",
436 BONDED_DEV_NAME);
437
438 test_params.bonded_port_id = retval;
439 TEST_ASSERT_SUCCESS(configure_ethdev(test_params.bonded_port_id, 0),
440 "Failed to configure bonded ethdev %s", BONDED_DEV_NAME);
441 } else if (rte_eth_bond_mode_get(test_params.bonded_port_id) !=
442 BONDING_MODE_8023AD) {
443 TEST_ASSERT(rte_eth_bond_mode_set(test_params.bonded_port_id,
444 BONDING_MODE_8023AD) == 0,
445 "Failed to set ethdev %d to mode %d",
446 test_params.bonded_port_id, BONDING_MODE_8023AD);
447 }
448
449 return 0;
450 }
451
452 static void
453 testsuite_teardown(void)
454 {
455 struct slave_conf *port;
456 uint8_t i;
457
458 /* Only stop ports.
459 * Any cleanup/reset state is done when particular test is
460 * started. */
461
462 rte_eth_dev_stop(test_params.bonded_port_id);
463
464 FOR_EACH_PORT(i, port)
465 rte_eth_dev_stop(port->port_id);
466 }
467
468 /*
469 * Check if given LACP packet. If it is, make make replay packet to force
470 * COLLECTING state.
471 * return 0 when pkt is LACP frame, 1 if it is not slow frame, 2 if it is slow
472 * frame but not LACP
473 */
474 static int
475 make_lacp_reply(struct slave_conf *slave, struct rte_mbuf *pkt)
476 {
477 struct ether_hdr *hdr;
478 struct slow_protocol_frame *slow_hdr;
479 struct lacpdu *lacp;
480
481 /* look for LACP */
482 hdr = rte_pktmbuf_mtod(pkt, struct ether_hdr *);
483 if (hdr->ether_type != rte_cpu_to_be_16(ETHER_TYPE_SLOW))
484 return 1;
485
486 slow_hdr = rte_pktmbuf_mtod(pkt, struct slow_protocol_frame *);
487 /* ignore packets of other types */
488 if (slow_hdr->slow_protocol.subtype != SLOW_SUBTYPE_LACP)
489 return 2;
490
491 slow_hdr = rte_pktmbuf_mtod(pkt, struct slow_protocol_frame *);
492
493 /* Change source address to partner address */
494 ether_addr_copy(&parnter_mac_default, &slow_hdr->eth_hdr.s_addr);
495 slow_hdr->eth_hdr.s_addr.addr_bytes[ETHER_ADDR_LEN - 1] = slave->port_id;
496
497 lacp = (struct lacpdu *) &slow_hdr->slow_protocol;
498 /* Save last received state */
499 slave->lacp_parnter_state = lacp->actor.state;
500 /* Change it into LACP replay by matching parameters. */
501 memcpy(&lacp->partner.port_params, &lacp->actor.port_params,
502 sizeof(struct port_params));
503
504 lacp->partner.state = lacp->actor.state;
505
506 ether_addr_copy(&parnter_system, &lacp->actor.port_params.system);
507 lacp->actor.state = STATE_LACP_ACTIVE |
508 STATE_SYNCHRONIZATION |
509 STATE_AGGREGATION |
510 STATE_COLLECTING |
511 STATE_DISTRIBUTING;
512
513 return 0;
514 }
515
516 /*
517 * Reads packets from given slave, search for LACP packet and reply them.
518 *
519 * Receives burst of packets from slave. Looks for LACP packet. Drops
520 * all other packets. Prepares response LACP and sends it back.
521 *
522 * return number of LACP received and replied, -1 on error.
523 */
524 static int
525 bond_handshake_reply(struct slave_conf *slave)
526 {
527 int retval;
528 struct rte_mbuf *rx_buf[MAX_PKT_BURST];
529 struct rte_mbuf *lacp_tx_buf[MAX_PKT_BURST];
530 uint16_t lacp_tx_buf_cnt = 0, i;
531
532 retval = slave_get_pkts(slave, rx_buf, RTE_DIM(rx_buf));
533 TEST_ASSERT(retval >= 0, "Getting slave %u packets failed.",
534 slave->port_id);
535
536 for (i = 0; i < (uint16_t)retval; i++) {
537 if (make_lacp_reply(slave, rx_buf[i]) == 0) {
538 /* reply with actor's LACP */
539 lacp_tx_buf[lacp_tx_buf_cnt++] = rx_buf[i];
540 } else
541 rte_pktmbuf_free(rx_buf[i]);
542 }
543
544 if (lacp_tx_buf_cnt == 0)
545 return 0;
546
547 retval = slave_put_pkts(slave, lacp_tx_buf, lacp_tx_buf_cnt);
548 if (retval <= lacp_tx_buf_cnt) {
549 /* retval might be negative */
550 for (i = RTE_MAX(0, retval); retval < lacp_tx_buf_cnt; retval++)
551 rte_pktmbuf_free(lacp_tx_buf[i]);
552 }
553
554 TEST_ASSERT_EQUAL(retval, lacp_tx_buf_cnt,
555 "Failed to equeue lacp packets into slave %u tx queue.",
556 slave->port_id);
557
558 return lacp_tx_buf_cnt;
559 }
560
561 /*
562 * Function check if given slave tx queue contains packets that make mode 4
563 * handshake complete. It will drain slave queue.
564 * return 0 if handshake not completed, 1 if handshake was complete,
565 */
566 static int
567 bond_handshake_done(struct slave_conf *slave)
568 {
569 const uint8_t expected_state = STATE_LACP_ACTIVE | STATE_SYNCHRONIZATION |
570 STATE_AGGREGATION | STATE_COLLECTING | STATE_DISTRIBUTING;
571
572 return slave->lacp_parnter_state == expected_state;
573 }
574
575 static unsigned
576 bond_get_update_timeout_ms(void)
577 {
578 struct rte_eth_bond_8023ad_conf conf;
579
580 rte_eth_bond_8023ad_conf_get(test_params.bonded_port_id, &conf);
581 return conf.update_timeout_ms;
582 }
583
584 /*
585 * Exchanges LACP packets with partner to achieve dynamic port configuration.
586 * return TEST_SUCCESS if initial handshake succeed, TEST_FAILED otherwise.
587 */
588 static int
589 bond_handshake(void)
590 {
591 struct slave_conf *slave;
592 struct rte_mbuf *buf[MAX_PKT_BURST];
593 uint16_t nb_pkts;
594 uint8_t all_slaves_done, i, j;
595 uint8_t status[RTE_DIM(test_params.slave_ports)] = { 0 };
596 const unsigned delay = bond_get_update_timeout_ms();
597
598 /* Exchange LACP frames */
599 all_slaves_done = 0;
600 for (i = 0; i < 30 && all_slaves_done == 0; ++i) {
601 rte_delay_ms(delay);
602
603 all_slaves_done = 1;
604 FOR_EACH_SLAVE(j, slave) {
605 /* If response already send, skip slave */
606 if (status[j] != 0)
607 continue;
608
609 if (bond_handshake_reply(slave) < 0) {
610 all_slaves_done = 0;
611 break;
612 }
613
614 status[j] = bond_handshake_done(slave);
615 if (status[j] == 0)
616 all_slaves_done = 0;
617 }
618
619 nb_pkts = bond_tx(NULL, 0);
620 TEST_ASSERT_EQUAL(nb_pkts, 0, "Packets transmitted unexpectedly");
621
622 nb_pkts = bond_rx(buf, RTE_DIM(buf));
623 free_pkts(buf, nb_pkts);
624 TEST_ASSERT_EQUAL(nb_pkts, 0, "Packets received unexpectedly");
625 }
626 /* If response didn't send - report failure */
627 TEST_ASSERT_EQUAL(all_slaves_done, 1, "Bond handshake failed\n");
628
629 /* If flags doesn't match - report failure */
630 return all_slaves_done == 1 ? TEST_SUCCESS : TEST_FAILED;
631 }
632
633 #define TEST_LACP_SLAVE_COUT RTE_DIM(test_params.slave_ports)
634 static int
635 test_mode4_lacp(void)
636 {
637 int retval;
638
639 retval = initialize_bonded_device_with_slaves(TEST_LACP_SLAVE_COUT, 0);
640 TEST_ASSERT_SUCCESS(retval, "Failed to initialize bonded device");
641
642 /* Test LACP handshake function */
643 retval = bond_handshake();
644 TEST_ASSERT_SUCCESS(retval, "Initial handshake failed");
645
646 retval = remove_slaves_and_stop_bonded_device();
647 TEST_ASSERT_SUCCESS(retval, "Test cleanup failed.");
648
649 return TEST_SUCCESS;
650 }
651 static int
652 test_mode4_agg_mode_selection(void)
653 {
654 int retval;
655 /* Test and verify for Stable mode */
656 retval = initialize_bonded_device_with_slaves(TEST_LACP_SLAVE_COUT, 0);
657 TEST_ASSERT_SUCCESS(retval, "Failed to initialize bonded device");
658
659
660 retval = rte_eth_bond_8023ad_agg_selection_set(
661 test_params.bonded_port_id, AGG_STABLE);
662 TEST_ASSERT_SUCCESS(retval, "Failed to initialize bond aggregation mode");
663 retval = bond_handshake();
664 TEST_ASSERT_SUCCESS(retval, "Initial handshake failed");
665
666
667 retval = rte_eth_bond_8023ad_agg_selection_get(
668 test_params.bonded_port_id);
669 TEST_ASSERT_EQUAL(retval, AGG_STABLE,
670 "Wrong agg mode received from bonding device");
671
672 retval = remove_slaves_and_stop_bonded_device();
673 TEST_ASSERT_SUCCESS(retval, "Test cleanup failed.");
674
675
676 /* test and verify for Bandwidth mode */
677 retval = initialize_bonded_device_with_slaves(TEST_LACP_SLAVE_COUT, 0);
678 TEST_ASSERT_SUCCESS(retval, "Failed to initialize bonded device");
679
680
681 retval = rte_eth_bond_8023ad_agg_selection_set(
682 test_params.bonded_port_id,
683 AGG_BANDWIDTH);
684 TEST_ASSERT_SUCCESS(retval,
685 "Failed to initialize bond aggregation mode");
686 retval = bond_handshake();
687 TEST_ASSERT_SUCCESS(retval, "Initial handshake failed");
688
689 retval = rte_eth_bond_8023ad_agg_selection_get(
690 test_params.bonded_port_id);
691 TEST_ASSERT_EQUAL(retval, AGG_BANDWIDTH,
692 "Wrong agg mode received from bonding device");
693
694 retval = remove_slaves_and_stop_bonded_device();
695 TEST_ASSERT_SUCCESS(retval, "Test cleanup failed.");
696
697 /* test and verify selection for count mode */
698 retval = initialize_bonded_device_with_slaves(TEST_LACP_SLAVE_COUT, 0);
699 TEST_ASSERT_SUCCESS(retval, "Failed to initialize bonded device");
700
701
702 retval = rte_eth_bond_8023ad_agg_selection_set(
703 test_params.bonded_port_id, AGG_COUNT);
704 TEST_ASSERT_SUCCESS(retval,
705 "Failed to initialize bond aggregation mode");
706 retval = bond_handshake();
707 TEST_ASSERT_SUCCESS(retval, "Initial handshake failed");
708
709 retval = rte_eth_bond_8023ad_agg_selection_get(
710 test_params.bonded_port_id);
711 TEST_ASSERT_EQUAL(retval, AGG_COUNT,
712 "Wrong agg mode received from bonding device");
713
714 retval = remove_slaves_and_stop_bonded_device();
715 TEST_ASSERT_SUCCESS(retval, "Test cleanup failed.");
716
717 return TEST_SUCCESS;
718 }
719
720 static int
721 generate_packets(struct ether_addr *src_mac,
722 struct ether_addr *dst_mac, uint16_t count, struct rte_mbuf **buf)
723 {
724 uint16_t pktlen = PACKET_BURST_GEN_PKT_LEN;
725 uint8_t vlan_enable = 0;
726 uint16_t vlan_id = 0;
727 uint8_t ip4_type = 1; /* 0 - ipv6 */
728
729 uint16_t src_port = 10, dst_port = 20;
730
731 uint32_t ip_src[4] = { [0 ... 2] = 0xDEADBEEF, [3] = IPv4(192, 168, 0, 1) };
732 uint32_t ip_dst[4] = { [0 ... 2] = 0xFEEDFACE, [3] = IPv4(192, 168, 0, 2) };
733
734 struct ether_hdr pkt_eth_hdr;
735 struct udp_hdr pkt_udp_hdr;
736 union {
737 struct ipv4_hdr v4;
738 struct ipv6_hdr v6;
739 } pkt_ip_hdr;
740
741 int retval;
742
743 initialize_eth_header(&pkt_eth_hdr, src_mac, dst_mac, ip4_type,
744 vlan_enable, vlan_id);
745
746 if (ip4_type)
747 initialize_ipv4_header(&pkt_ip_hdr.v4, ip_src[3], ip_dst[3], pktlen);
748 else
749 initialize_ipv6_header(&pkt_ip_hdr.v6, (uint8_t *)ip_src,
750 (uint8_t *)&ip_dst, pktlen);
751
752 initialize_udp_header(&pkt_udp_hdr, src_port, dst_port, 16);
753
754 retval = generate_packet_burst(test_params.mbuf_pool, buf,
755 &pkt_eth_hdr, vlan_enable, &pkt_ip_hdr, 1, &pkt_udp_hdr,
756 count, pktlen, 1);
757
758 if (retval > 0 && retval != count)
759 free_pkts(&buf[count - retval], retval);
760
761 TEST_ASSERT_EQUAL(retval, count, "Failed to generate %u packets",
762 count);
763
764 return count;
765 }
766
767 static int
768 generate_and_put_packets(struct slave_conf *slave, struct ether_addr *src_mac,
769 struct ether_addr *dst_mac, uint16_t count)
770 {
771 struct rte_mbuf *pkts[MAX_PKT_BURST];
772 int retval;
773
774 retval = generate_packets(src_mac, dst_mac, count, pkts);
775 if (retval != (int)count)
776 return retval;
777
778 retval = slave_put_pkts(slave, pkts, count);
779 if (retval > 0 && retval != count)
780 free_pkts(&pkts[retval], count - retval);
781
782 TEST_ASSERT_EQUAL(retval, count,
783 "Failed to enqueue packets into slave %u RX queue", slave->port_id);
784
785 return TEST_SUCCESS;
786 }
787
788 static int
789 test_mode4_rx(void)
790 {
791 struct slave_conf *slave;
792 uint16_t i, j;
793
794 uint16_t expected_pkts_cnt;
795 struct rte_mbuf *pkts[MAX_PKT_BURST];
796 int retval;
797 unsigned delay;
798
799 struct ether_hdr *hdr;
800
801 struct ether_addr src_mac = { { 0x00, 0xFF, 0x00, 0xFF, 0x00, 0x00 } };
802 struct ether_addr dst_mac;
803 struct ether_addr bonded_mac;
804
805 retval = initialize_bonded_device_with_slaves(TEST_PROMISC_SLAVE_COUNT,
806 0);
807 TEST_ASSERT_SUCCESS(retval, "Failed to initialize bonded device");
808
809 retval = bond_handshake();
810 TEST_ASSERT_SUCCESS(retval, "Initial handshake failed");
811
812 rte_eth_macaddr_get(test_params.bonded_port_id, &bonded_mac);
813 ether_addr_copy(&bonded_mac, &dst_mac);
814
815 /* Assert that dst address is not bonding address. Do not set the
816 * least significant bit of the zero byte as this would create a
817 * multicast address.
818 */
819 dst_mac.addr_bytes[0] += 2;
820
821 /* First try with promiscuous mode enabled.
822 * Add 2 packets to each slave. First with bonding MAC address, second with
823 * different. Check if we received all of them. */
824 rte_eth_promiscuous_enable(test_params.bonded_port_id);
825
826 expected_pkts_cnt = 0;
827 FOR_EACH_SLAVE(i, slave) {
828 retval = generate_and_put_packets(slave, &src_mac, &bonded_mac, 1);
829 TEST_ASSERT_SUCCESS(retval, "Failed to enqueue packets to slave %u",
830 slave->port_id);
831
832 retval = generate_and_put_packets(slave, &src_mac, &dst_mac, 1);
833 TEST_ASSERT_SUCCESS(retval, "Failed to enqueue packets to slave %u",
834 slave->port_id);
835
836 /* Expect 2 packets per slave */
837 expected_pkts_cnt += 2;
838 }
839
840 retval = rte_eth_rx_burst(test_params.bonded_port_id, 0, pkts,
841 RTE_DIM(pkts));
842
843 if (retval == expected_pkts_cnt) {
844 int cnt[2] = { 0, 0 };
845
846 for (i = 0; i < expected_pkts_cnt; i++) {
847 hdr = rte_pktmbuf_mtod(pkts[i], struct ether_hdr *);
848 cnt[is_same_ether_addr(&hdr->d_addr, &bonded_mac)]++;
849 }
850
851 free_pkts(pkts, expected_pkts_cnt);
852
853 /* For division by 2 expected_pkts_cnt must be even */
854 RTE_VERIFY((expected_pkts_cnt & 1) == 0);
855 TEST_ASSERT(cnt[0] == expected_pkts_cnt / 2 &&
856 cnt[1] == expected_pkts_cnt / 2,
857 "Expected %u packets with the same MAC and %u with different but "
858 "got %u with the same and %u with different MAC",
859 expected_pkts_cnt / 2, expected_pkts_cnt / 2, cnt[1], cnt[0]);
860 } else if (retval > 0)
861 free_pkts(pkts, retval);
862
863 TEST_ASSERT_EQUAL(retval, expected_pkts_cnt,
864 "Expected %u packets but received only %d", expected_pkts_cnt, retval);
865
866 /* Now, disable promiscuous mode. When promiscuous mode is disabled we
867 * expect to receive only packets that are directed to bonding port. */
868 rte_eth_promiscuous_disable(test_params.bonded_port_id);
869
870 expected_pkts_cnt = 0;
871 FOR_EACH_SLAVE(i, slave) {
872 retval = generate_and_put_packets(slave, &src_mac, &bonded_mac, 1);
873 TEST_ASSERT_SUCCESS(retval, "Failed to enqueue packets to slave %u",
874 slave->port_id);
875
876 retval = generate_and_put_packets(slave, &src_mac, &dst_mac, 1);
877 TEST_ASSERT_SUCCESS(retval, "Failed to enqueue packets to slave %u",
878 slave->port_id);
879
880 /* Expect only one packet per slave */
881 expected_pkts_cnt += 1;
882 }
883
884 retval = rte_eth_rx_burst(test_params.bonded_port_id, 0, pkts,
885 RTE_DIM(pkts));
886
887 if (retval == expected_pkts_cnt) {
888 int eq_cnt = 0;
889
890 for (i = 0; i < expected_pkts_cnt; i++) {
891 hdr = rte_pktmbuf_mtod(pkts[i], struct ether_hdr *);
892 eq_cnt += is_same_ether_addr(&hdr->d_addr, &bonded_mac);
893 }
894
895 free_pkts(pkts, expected_pkts_cnt);
896 TEST_ASSERT_EQUAL(eq_cnt, expected_pkts_cnt, "Packet address mismatch");
897 } else if (retval > 0)
898 free_pkts(pkts, retval);
899
900 TEST_ASSERT_EQUAL(retval, expected_pkts_cnt,
901 "Expected %u packets but received only %d", expected_pkts_cnt, retval);
902
903 /* Link down test: simulate link down for first slave. */
904 delay = bond_get_update_timeout_ms();
905
906 uint8_t slave_down_id = INVALID_PORT_ID;
907
908 /* Find first slave and make link down on it*/
909 FOR_EACH_SLAVE(i, slave) {
910 rte_eth_dev_set_link_down(slave->port_id);
911 slave_down_id = slave->port_id;
912 break;
913 }
914
915 RTE_VERIFY(slave_down_id != INVALID_PORT_ID);
916
917 /* Give some time to rearrange bonding */
918 for (i = 0; i < 3; i++) {
919 rte_delay_ms(delay);
920 bond_handshake();
921 }
922
923 TEST_ASSERT_SUCCESS(bond_handshake(), "Handshake after link down failed");
924
925 /* Put packet to each slave */
926 FOR_EACH_SLAVE(i, slave) {
927 void *pkt = NULL;
928
929 dst_mac.addr_bytes[ETHER_ADDR_LEN - 1] = slave->port_id;
930 retval = generate_and_put_packets(slave, &src_mac, &dst_mac, 1);
931 TEST_ASSERT_SUCCESS(retval, "Failed to generate test packet burst.");
932
933 src_mac.addr_bytes[ETHER_ADDR_LEN - 1] = slave->port_id;
934 retval = generate_and_put_packets(slave, &src_mac, &bonded_mac, 1);
935 TEST_ASSERT_SUCCESS(retval, "Failed to generate test packet burst.");
936
937 retval = bond_rx(pkts, RTE_DIM(pkts));
938
939 /* Clean anything */
940 if (retval > 0)
941 free_pkts(pkts, retval);
942
943 while (rte_ring_dequeue(slave->rx_queue, (void **)&pkt) == 0)
944 rte_pktmbuf_free(pkt);
945
946 if (slave_down_id == slave->port_id)
947 TEST_ASSERT_EQUAL(retval, 0, "Packets received unexpectedly.");
948 else
949 TEST_ASSERT_NOT_EQUAL(retval, 0,
950 "Expected to receive some packets on slave %u.",
951 slave->port_id);
952 rte_eth_dev_start(slave->port_id);
953
954 for (j = 0; j < 5; j++) {
955 TEST_ASSERT(bond_handshake_reply(slave) >= 0,
956 "Handshake after link up");
957
958 if (bond_handshake_done(slave) == 1)
959 break;
960 }
961
962 TEST_ASSERT(j < 5, "Failed to aggregate slave after link up");
963 }
964
965 remove_slaves_and_stop_bonded_device();
966 return TEST_SUCCESS;
967 }
968
969 static int
970 test_mode4_tx_burst(void)
971 {
972 struct slave_conf *slave;
973 uint16_t i, j;
974
975 uint16_t exp_pkts_cnt, pkts_cnt = 0;
976 struct rte_mbuf *pkts[MAX_PKT_BURST];
977 int retval;
978 unsigned delay;
979
980 struct ether_addr dst_mac = { { 0x00, 0xFF, 0x00, 0xFF, 0x00, 0x00 } };
981 struct ether_addr bonded_mac;
982
983 retval = initialize_bonded_device_with_slaves(TEST_TX_SLAVE_COUNT, 0);
984 TEST_ASSERT_SUCCESS(retval, "Failed to initialize bonded device");
985
986 retval = bond_handshake();
987 TEST_ASSERT_SUCCESS(retval, "Initial handshake failed");
988
989 rte_eth_macaddr_get(test_params.bonded_port_id, &bonded_mac);
990
991 /* Prepare burst */
992 for (pkts_cnt = 0; pkts_cnt < RTE_DIM(pkts); pkts_cnt++) {
993 dst_mac.addr_bytes[ETHER_ADDR_LEN - 1] = pkts_cnt;
994 retval = generate_packets(&bonded_mac, &dst_mac, 1, &pkts[pkts_cnt]);
995
996 if (retval != 1)
997 free_pkts(pkts, pkts_cnt);
998
999 TEST_ASSERT_EQUAL(retval, 1, "Failed to generate packet %u", pkts_cnt);
1000 }
1001 exp_pkts_cnt = pkts_cnt;
1002
1003 /* Transmit packets on bonded device */
1004 retval = bond_tx(pkts, pkts_cnt);
1005 if (retval > 0 && retval < pkts_cnt)
1006 free_pkts(&pkts[retval], pkts_cnt - retval);
1007
1008 TEST_ASSERT_EQUAL(retval, pkts_cnt, "TX on bonded device failed");
1009
1010 /* Check if packets were transmitted properly. Every slave should have
1011 * at least one packet, and sum must match. Under normal operation
1012 * there should be no LACP nor MARKER frames. */
1013 pkts_cnt = 0;
1014 FOR_EACH_SLAVE(i, slave) {
1015 uint16_t normal_cnt, slow_cnt;
1016
1017 retval = slave_get_pkts(slave, pkts, RTE_DIM(pkts));
1018 normal_cnt = 0;
1019 slow_cnt = 0;
1020
1021 for (j = 0; j < retval; j++) {
1022 if (make_lacp_reply(slave, pkts[j]) == 1)
1023 normal_cnt++;
1024 else
1025 slow_cnt++;
1026 }
1027
1028 free_pkts(pkts, normal_cnt + slow_cnt);
1029 TEST_ASSERT_EQUAL(slow_cnt, 0,
1030 "slave %u unexpectedly transmitted %d SLOW packets", slave->port_id,
1031 slow_cnt);
1032
1033 TEST_ASSERT_NOT_EQUAL(normal_cnt, 0,
1034 "slave %u did not transmitted any packets", slave->port_id);
1035
1036 pkts_cnt += normal_cnt;
1037 }
1038
1039 TEST_ASSERT_EQUAL(exp_pkts_cnt, pkts_cnt,
1040 "Expected %u packets but transmitted only %d", exp_pkts_cnt, pkts_cnt);
1041
1042 /* Link down test:
1043 * simulate link down for first slave. */
1044 delay = bond_get_update_timeout_ms();
1045
1046 uint8_t slave_down_id = INVALID_PORT_ID;
1047
1048 FOR_EACH_SLAVE(i, slave) {
1049 rte_eth_dev_set_link_down(slave->port_id);
1050 slave_down_id = slave->port_id;
1051 break;
1052 }
1053
1054 RTE_VERIFY(slave_down_id != INVALID_PORT_ID);
1055
1056 /* Give some time to rearrange bonding. */
1057 for (i = 0; i < 3; i++) {
1058 bond_handshake();
1059 rte_delay_ms(delay);
1060 }
1061
1062 TEST_ASSERT_SUCCESS(bond_handshake(), "Handshake after link down failed");
1063
1064 /* Prepare burst. */
1065 for (pkts_cnt = 0; pkts_cnt < RTE_DIM(pkts); pkts_cnt++) {
1066 dst_mac.addr_bytes[ETHER_ADDR_LEN - 1] = pkts_cnt;
1067 retval = generate_packets(&bonded_mac, &dst_mac, 1, &pkts[pkts_cnt]);
1068
1069 if (retval != 1)
1070 free_pkts(pkts, pkts_cnt);
1071
1072 TEST_ASSERT_EQUAL(retval, 1, "Failed to generate test packet %u",
1073 pkts_cnt);
1074 }
1075 exp_pkts_cnt = pkts_cnt;
1076
1077 /* Transmit packets on bonded device. */
1078 retval = bond_tx(pkts, pkts_cnt);
1079 if (retval > 0 && retval < pkts_cnt)
1080 free_pkts(&pkts[retval], pkts_cnt - retval);
1081
1082 TEST_ASSERT_EQUAL(retval, pkts_cnt, "TX on bonded device failed");
1083
1084 /* Check if packets was transmitted properly. Every slave should have
1085 * at least one packet, and sum must match. Under normal operation
1086 * there should be no LACP nor MARKER frames. */
1087 pkts_cnt = 0;
1088 FOR_EACH_SLAVE(i, slave) {
1089 uint16_t normal_cnt, slow_cnt;
1090
1091 retval = slave_get_pkts(slave, pkts, RTE_DIM(pkts));
1092 normal_cnt = 0;
1093 slow_cnt = 0;
1094
1095 for (j = 0; j < retval; j++) {
1096 if (make_lacp_reply(slave, pkts[j]) == 1)
1097 normal_cnt++;
1098 else
1099 slow_cnt++;
1100 }
1101
1102 free_pkts(pkts, normal_cnt + slow_cnt);
1103
1104 if (slave_down_id == slave->port_id) {
1105 TEST_ASSERT_EQUAL(normal_cnt + slow_cnt, 0,
1106 "slave %u enexpectedly transmitted %u packets",
1107 normal_cnt + slow_cnt, slave->port_id);
1108 } else {
1109 TEST_ASSERT_EQUAL(slow_cnt, 0,
1110 "slave %u unexpectedly transmitted %d SLOW packets",
1111 slave->port_id, slow_cnt);
1112
1113 TEST_ASSERT_NOT_EQUAL(normal_cnt, 0,
1114 "slave %u did not transmitted any packets", slave->port_id);
1115 }
1116
1117 pkts_cnt += normal_cnt;
1118 }
1119
1120 TEST_ASSERT_EQUAL(exp_pkts_cnt, pkts_cnt,
1121 "Expected %u packets but transmitted only %d", exp_pkts_cnt, pkts_cnt);
1122
1123 return remove_slaves_and_stop_bonded_device();
1124 }
1125
1126 static void
1127 init_marker(struct rte_mbuf *pkt, struct slave_conf *slave)
1128 {
1129 struct marker_header *marker_hdr = rte_pktmbuf_mtod(pkt,
1130 struct marker_header *);
1131
1132 /* Copy multicast destination address */
1133 ether_addr_copy(&slow_protocol_mac_addr, &marker_hdr->eth_hdr.d_addr);
1134
1135 /* Init source address */
1136 ether_addr_copy(&parnter_mac_default, &marker_hdr->eth_hdr.s_addr);
1137 marker_hdr->eth_hdr.s_addr.addr_bytes[ETHER_ADDR_LEN-1] = slave->port_id;
1138
1139 marker_hdr->eth_hdr.ether_type = rte_cpu_to_be_16(ETHER_TYPE_SLOW);
1140
1141 marker_hdr->marker.subtype = SLOW_SUBTYPE_MARKER;
1142 marker_hdr->marker.version_number = 1;
1143 marker_hdr->marker.tlv_type_marker = MARKER_TLV_TYPE_INFO;
1144 marker_hdr->marker.info_length =
1145 offsetof(struct marker, reserved_90) -
1146 offsetof(struct marker, requester_port);
1147 RTE_VERIFY(marker_hdr->marker.info_length == 16);
1148 marker_hdr->marker.requester_port = slave->port_id + 1;
1149 marker_hdr->marker.tlv_type_terminator = TLV_TYPE_TERMINATOR_INFORMATION;
1150 marker_hdr->marker.terminator_length = 0;
1151 }
1152
1153 static int
1154 test_mode4_marker(void)
1155 {
1156 struct slave_conf *slave;
1157 struct rte_mbuf *pkts[MAX_PKT_BURST];
1158 struct rte_mbuf *marker_pkt;
1159 struct marker_header *marker_hdr;
1160
1161 unsigned delay;
1162 int retval;
1163 uint16_t nb_pkts;
1164 uint8_t i, j;
1165 const uint16_t ethtype_slow_be = rte_be_to_cpu_16(ETHER_TYPE_SLOW);
1166
1167 retval = initialize_bonded_device_with_slaves(TEST_MARKER_SLAVE_COUT,
1168 0);
1169 TEST_ASSERT_SUCCESS(retval, "Failed to initialize bonded device");
1170
1171 /* Test LACP handshake function */
1172 retval = bond_handshake();
1173 TEST_ASSERT_SUCCESS(retval, "Initial handshake failed");
1174
1175 delay = bond_get_update_timeout_ms();
1176 FOR_EACH_SLAVE(i, slave) {
1177 marker_pkt = rte_pktmbuf_alloc(test_params.mbuf_pool);
1178 TEST_ASSERT_NOT_NULL(marker_pkt, "Failed to allocate marker packet");
1179 init_marker(marker_pkt, slave);
1180
1181 retval = slave_put_pkts(slave, &marker_pkt, 1);
1182 if (retval != 1)
1183 rte_pktmbuf_free(marker_pkt);
1184
1185 TEST_ASSERT_EQUAL(retval, 1,
1186 "Failed to send marker packet to slave %u", slave->port_id);
1187
1188 for (j = 0; j < 20; ++j) {
1189 rte_delay_ms(delay);
1190 retval = rte_eth_rx_burst(test_params.bonded_port_id, 0, pkts,
1191 RTE_DIM(pkts));
1192
1193 if (retval > 0)
1194 free_pkts(pkts, retval);
1195
1196 TEST_ASSERT_EQUAL(retval, 0, "Received packets unexpectedly");
1197
1198 retval = rte_eth_tx_burst(test_params.bonded_port_id, 0, NULL, 0);
1199 TEST_ASSERT_EQUAL(retval, 0,
1200 "Requested TX of 0 packets but %d transmitted", retval);
1201
1202 /* Check if LACP packet was send by state machines
1203 First and only packet must be a maker response */
1204 retval = slave_get_pkts(slave, pkts, MAX_PKT_BURST);
1205 if (retval == 0)
1206 continue;
1207 if (retval > 1)
1208 free_pkts(pkts, retval);
1209
1210 TEST_ASSERT_EQUAL(retval, 1, "failed to get slave packets");
1211 nb_pkts = retval;
1212
1213 marker_hdr = rte_pktmbuf_mtod(pkts[0], struct marker_header *);
1214 /* Check if it's slow packet*/
1215 if (marker_hdr->eth_hdr.ether_type != ethtype_slow_be)
1216 retval = -1;
1217 /* Check if it's marker packet */
1218 else if (marker_hdr->marker.subtype != SLOW_SUBTYPE_MARKER)
1219 retval = -2;
1220 else if (marker_hdr->marker.tlv_type_marker != MARKER_TLV_TYPE_RESP)
1221 retval = -3;
1222
1223 free_pkts(pkts, nb_pkts);
1224
1225 TEST_ASSERT_NOT_EQUAL(retval, -1, "Unexpected protocol type");
1226 TEST_ASSERT_NOT_EQUAL(retval, -2, "Unexpected sub protocol type");
1227 TEST_ASSERT_NOT_EQUAL(retval, -3, "Unexpected marker type");
1228 break;
1229 }
1230
1231 TEST_ASSERT(j < 20, "Marker response not found");
1232 }
1233
1234 retval = remove_slaves_and_stop_bonded_device();
1235 TEST_ASSERT_SUCCESS(retval, "Test cleanup failed.");
1236
1237 return TEST_SUCCESS;
1238 }
1239
1240 static int
1241 test_mode4_expired(void)
1242 {
1243 struct slave_conf *slave, *exp_slave = NULL;
1244 struct rte_mbuf *pkts[MAX_PKT_BURST];
1245 int retval;
1246 uint32_t old_delay;
1247
1248 uint8_t i;
1249 uint16_t j;
1250
1251 struct rte_eth_bond_8023ad_conf conf;
1252
1253 retval = initialize_bonded_device_with_slaves(TEST_EXPIRED_SLAVE_COUNT,
1254 0);
1255 /* Set custom timeouts to make test last shorter. */
1256 rte_eth_bond_8023ad_conf_get(test_params.bonded_port_id, &conf);
1257 conf.fast_periodic_ms = 100;
1258 conf.slow_periodic_ms = 600;
1259 conf.short_timeout_ms = 300;
1260 conf.long_timeout_ms = 900;
1261 conf.aggregate_wait_timeout_ms = 200;
1262 conf.tx_period_ms = 100;
1263 old_delay = conf.update_timeout_ms;
1264 conf.update_timeout_ms = 10;
1265 rte_eth_bond_8023ad_setup(test_params.bonded_port_id, &conf);
1266
1267 /* Wait for new settings to be applied. */
1268 for (i = 0; i < old_delay/conf.update_timeout_ms * 2; i++) {
1269 FOR_EACH_SLAVE(j, slave)
1270 bond_handshake_reply(slave);
1271
1272 rte_delay_ms(conf.update_timeout_ms);
1273 }
1274
1275 retval = bond_handshake();
1276 TEST_ASSERT_SUCCESS(retval, "Initial handshake failed");
1277
1278 /* Find first slave */
1279 FOR_EACH_SLAVE(i, slave) {
1280 exp_slave = slave;
1281 break;
1282 }
1283
1284 RTE_VERIFY(exp_slave != NULL);
1285
1286 /* When one of partners do not send or respond to LACP frame in
1287 * conf.long_timeout_ms time, internal state machines should detect this
1288 * and transit to expired state. */
1289 for (j = 0; j < conf.long_timeout_ms/conf.update_timeout_ms + 2; j++) {
1290 rte_delay_ms(conf.update_timeout_ms);
1291
1292 retval = bond_tx(NULL, 0);
1293 TEST_ASSERT_EQUAL(retval, 0, "Unexpectedly received %d packets",
1294 retval);
1295
1296 FOR_EACH_SLAVE(i, slave) {
1297 retval = bond_handshake_reply(slave);
1298 TEST_ASSERT(retval >= 0, "Handshake failed");
1299
1300 /* Remove replay for slave that suppose to be expired. */
1301 if (slave == exp_slave) {
1302 while (rte_ring_count(slave->rx_queue) > 0) {
1303 void *pkt = NULL;
1304
1305 rte_ring_dequeue(slave->rx_queue, &pkt);
1306 rte_pktmbuf_free(pkt);
1307 }
1308 }
1309 }
1310
1311 retval = bond_rx(pkts, RTE_DIM(pkts));
1312 if (retval > 0)
1313 free_pkts(pkts, retval);
1314
1315 TEST_ASSERT_EQUAL(retval, 0, "Unexpectedly received %d packets",
1316 retval);
1317 }
1318
1319 /* After test only expected slave should be in EXPIRED state */
1320 FOR_EACH_SLAVE(i, slave) {
1321 if (slave == exp_slave)
1322 TEST_ASSERT(slave->lacp_parnter_state & STATE_EXPIRED,
1323 "Slave %u should be in expired.", slave->port_id);
1324 else
1325 TEST_ASSERT_EQUAL(bond_handshake_done(slave), 1,
1326 "Slave %u should be operational.", slave->port_id);
1327 }
1328
1329 retval = remove_slaves_and_stop_bonded_device();
1330 TEST_ASSERT_SUCCESS(retval, "Test cleanup failed.");
1331
1332 return TEST_SUCCESS;
1333 }
1334
1335 static int
1336 test_mode4_ext_ctrl(void)
1337 {
1338 /*
1339 * configure bonded interface without the external sm enabled
1340 * . try to transmit lacpdu (should fail)
1341 * . try to set collecting and distributing flags (should fail)
1342 * reconfigure w/external sm
1343 * . transmit one lacpdu on each slave using new api
1344 * . make sure each slave receives one lacpdu using the callback api
1345 * . transmit one data pdu on each slave (should fail)
1346 * . enable distribution and collection, send one data pdu each again
1347 */
1348
1349 int retval;
1350 struct slave_conf *slave = NULL;
1351 uint8_t i;
1352
1353 struct rte_mbuf *lacp_tx_buf[SLAVE_COUNT];
1354 struct ether_addr src_mac, dst_mac;
1355 struct lacpdu_header lacpdu = {
1356 .lacpdu = {
1357 .subtype = SLOW_SUBTYPE_LACP,
1358 },
1359 };
1360
1361 ether_addr_copy(&parnter_system, &src_mac);
1362 ether_addr_copy(&slow_protocol_mac_addr, &dst_mac);
1363
1364 initialize_eth_header(&lacpdu.eth_hdr, &src_mac, &dst_mac,
1365 ETHER_TYPE_SLOW, 0, 0);
1366
1367 for (i = 0; i < SLAVE_COUNT; i++) {
1368 lacp_tx_buf[i] = rte_pktmbuf_alloc(test_params.mbuf_pool);
1369 rte_memcpy(rte_pktmbuf_mtod(lacp_tx_buf[i], char *),
1370 &lacpdu, sizeof(lacpdu));
1371 rte_pktmbuf_pkt_len(lacp_tx_buf[i]) = sizeof(lacpdu);
1372 }
1373
1374 retval = initialize_bonded_device_with_slaves(TEST_TX_SLAVE_COUNT, 0);
1375 TEST_ASSERT_SUCCESS(retval, "Failed to initialize bonded device");
1376
1377 FOR_EACH_SLAVE(i, slave) {
1378 TEST_ASSERT_FAIL(rte_eth_bond_8023ad_ext_slowtx(
1379 test_params.bonded_port_id,
1380 slave->port_id, lacp_tx_buf[i]),
1381 "Slave should not allow manual LACP xmit");
1382 TEST_ASSERT_FAIL(rte_eth_bond_8023ad_ext_collect(
1383 test_params.bonded_port_id,
1384 slave->port_id, 1),
1385 "Slave should not allow external state controls");
1386 }
1387
1388 free_pkts(lacp_tx_buf, RTE_DIM(lacp_tx_buf));
1389
1390 retval = remove_slaves_and_stop_bonded_device();
1391 TEST_ASSERT_SUCCESS(retval, "Bonded device cleanup failed.");
1392
1393 return TEST_SUCCESS;
1394 }
1395
1396
1397 static int
1398 test_mode4_ext_lacp(void)
1399 {
1400 int retval;
1401 struct slave_conf *slave = NULL;
1402 uint8_t all_slaves_done = 0, i;
1403 uint16_t nb_pkts;
1404 const unsigned int delay = bond_get_update_timeout_ms();
1405
1406 struct rte_mbuf *lacp_tx_buf[SLAVE_COUNT];
1407 struct rte_mbuf *buf[SLAVE_COUNT];
1408 struct ether_addr src_mac, dst_mac;
1409 struct lacpdu_header lacpdu = {
1410 .lacpdu = {
1411 .subtype = SLOW_SUBTYPE_LACP,
1412 },
1413 };
1414
1415 ether_addr_copy(&parnter_system, &src_mac);
1416 ether_addr_copy(&slow_protocol_mac_addr, &dst_mac);
1417
1418 initialize_eth_header(&lacpdu.eth_hdr, &src_mac, &dst_mac,
1419 ETHER_TYPE_SLOW, 0, 0);
1420
1421 for (i = 0; i < SLAVE_COUNT; i++) {
1422 lacp_tx_buf[i] = rte_pktmbuf_alloc(test_params.mbuf_pool);
1423 rte_memcpy(rte_pktmbuf_mtod(lacp_tx_buf[i], char *),
1424 &lacpdu, sizeof(lacpdu));
1425 rte_pktmbuf_pkt_len(lacp_tx_buf[i]) = sizeof(lacpdu);
1426 }
1427
1428 retval = initialize_bonded_device_with_slaves(TEST_TX_SLAVE_COUNT, 1);
1429 TEST_ASSERT_SUCCESS(retval, "Failed to initialize bonded device");
1430
1431 memset(lacpdu_rx_count, 0, sizeof(lacpdu_rx_count));
1432
1433 /* Wait for new settings to be applied. */
1434 for (i = 0; i < 30; ++i)
1435 rte_delay_ms(delay);
1436
1437 FOR_EACH_SLAVE(i, slave) {
1438 retval = rte_eth_bond_8023ad_ext_slowtx(
1439 test_params.bonded_port_id,
1440 slave->port_id, lacp_tx_buf[i]);
1441 TEST_ASSERT_SUCCESS(retval,
1442 "Slave should allow manual LACP xmit");
1443 }
1444
1445 nb_pkts = bond_tx(NULL, 0);
1446 TEST_ASSERT_EQUAL(nb_pkts, 0, "Packets transmitted unexpectedly");
1447
1448 FOR_EACH_SLAVE(i, slave) {
1449 nb_pkts = slave_get_pkts(slave, buf, RTE_DIM(buf));
1450 TEST_ASSERT_EQUAL(nb_pkts, 1, "found %u packets on slave %d\n",
1451 nb_pkts, i);
1452 slave_put_pkts(slave, buf, nb_pkts);
1453 }
1454
1455 nb_pkts = bond_rx(buf, RTE_DIM(buf));
1456 free_pkts(buf, nb_pkts);
1457 TEST_ASSERT_EQUAL(nb_pkts, 0, "Packets received unexpectedly");
1458
1459 /* wait for the periodic callback to run */
1460 for (i = 0; i < 30 && all_slaves_done == 0; ++i) {
1461 uint8_t s, total = 0;
1462
1463 rte_delay_ms(delay);
1464 FOR_EACH_SLAVE(s, slave) {
1465 total += lacpdu_rx_count[slave->port_id];
1466 }
1467
1468 if (total >= SLAVE_COUNT)
1469 all_slaves_done = 1;
1470 }
1471
1472 FOR_EACH_SLAVE(i, slave) {
1473 TEST_ASSERT_EQUAL(lacpdu_rx_count[slave->port_id], 1,
1474 "Slave port %u should have received 1 lacpdu (count=%u)",
1475 slave->port_id,
1476 lacpdu_rx_count[slave->port_id]);
1477 }
1478
1479 retval = remove_slaves_and_stop_bonded_device();
1480 TEST_ASSERT_SUCCESS(retval, "Test cleanup failed.");
1481
1482 return TEST_SUCCESS;
1483 }
1484
1485 static int
1486 check_environment(void)
1487 {
1488 struct slave_conf *port;
1489 uint8_t i, env_state;
1490 uint16_t slaves[RTE_DIM(test_params.slave_ports)];
1491 int slaves_count;
1492
1493 env_state = 0;
1494 FOR_EACH_PORT(i, port) {
1495 if (rte_ring_count(port->rx_queue) != 0)
1496 env_state |= 0x01;
1497
1498 if (rte_ring_count(port->tx_queue) != 0)
1499 env_state |= 0x02;
1500
1501 if (port->bonded != 0)
1502 env_state |= 0x04;
1503
1504 if (port->lacp_parnter_state != 0)
1505 env_state |= 0x08;
1506
1507 if (env_state != 0)
1508 break;
1509 }
1510
1511 slaves_count = rte_eth_bond_slaves_get(test_params.bonded_port_id,
1512 slaves, RTE_DIM(slaves));
1513
1514 if (slaves_count != 0)
1515 env_state |= 0x10;
1516
1517 TEST_ASSERT_EQUAL(env_state, 0,
1518 "Environment not clean (port %u):%s%s%s%s%s",
1519 port->port_id,
1520 env_state & 0x01 ? " slave rx queue not clean" : "",
1521 env_state & 0x02 ? " slave tx queue not clean" : "",
1522 env_state & 0x04 ? " port marked as enslaved" : "",
1523 env_state & 0x80 ? " slave state is not reset" : "",
1524 env_state & 0x10 ? " slave count not equal 0" : ".");
1525
1526
1527 return TEST_SUCCESS;
1528 }
1529
1530 static int
1531 test_mode4_executor(int (*test_func)(void))
1532 {
1533 struct slave_conf *port;
1534 int test_result;
1535 uint8_t i;
1536 void *pkt;
1537
1538 /* Check if environment is clean. Fail to launch a test if there was
1539 * a critical error before that prevented to reset environment. */
1540 TEST_ASSERT_SUCCESS(check_environment(),
1541 "Refusing to launch test in dirty environment.");
1542
1543 RTE_VERIFY(test_func != NULL);
1544 test_result = (*test_func)();
1545
1546 /* If test succeed check if environment wast left in good condition. */
1547 if (test_result == TEST_SUCCESS)
1548 test_result = check_environment();
1549
1550 /* Reset environment in case test failed to do that. */
1551 if (test_result != TEST_SUCCESS) {
1552 TEST_ASSERT_SUCCESS(remove_slaves_and_stop_bonded_device(),
1553 "Failed to stop bonded device");
1554
1555 FOR_EACH_PORT(i, port) {
1556 while (rte_ring_count(port->rx_queue) != 0) {
1557 if (rte_ring_dequeue(port->rx_queue, &pkt) == 0)
1558 rte_pktmbuf_free(pkt);
1559 }
1560
1561 while (rte_ring_count(port->tx_queue) != 0) {
1562 if (rte_ring_dequeue(port->tx_queue, &pkt) == 0)
1563 rte_pktmbuf_free(pkt);
1564 }
1565 }
1566 }
1567
1568 return test_result;
1569 }
1570
1571 static int
1572 test_mode4_agg_mode_selection_wrapper(void){
1573 return test_mode4_executor(&test_mode4_agg_mode_selection);
1574 }
1575
1576 static int
1577 test_mode4_lacp_wrapper(void)
1578 {
1579 return test_mode4_executor(&test_mode4_lacp);
1580 }
1581
1582 static int
1583 test_mode4_marker_wrapper(void)
1584 {
1585 return test_mode4_executor(&test_mode4_marker);
1586 }
1587
1588 static int
1589 test_mode4_rx_wrapper(void)
1590 {
1591 return test_mode4_executor(&test_mode4_rx);
1592 }
1593
1594 static int
1595 test_mode4_tx_burst_wrapper(void)
1596 {
1597 return test_mode4_executor(&test_mode4_tx_burst);
1598 }
1599
1600 static int
1601 test_mode4_expired_wrapper(void)
1602 {
1603 return test_mode4_executor(&test_mode4_expired);
1604 }
1605
1606 static int
1607 test_mode4_ext_ctrl_wrapper(void)
1608 {
1609 return test_mode4_executor(&test_mode4_ext_ctrl);
1610 }
1611
1612 static int
1613 test_mode4_ext_lacp_wrapper(void)
1614 {
1615 return test_mode4_executor(&test_mode4_ext_lacp);
1616 }
1617
1618 static struct unit_test_suite link_bonding_mode4_test_suite = {
1619 .suite_name = "Link Bonding mode 4 Unit Test Suite",
1620 .setup = test_setup,
1621 .teardown = testsuite_teardown,
1622 .unit_test_cases = {
1623 TEST_CASE_NAMED("test_mode4_agg_mode_selection",
1624 test_mode4_agg_mode_selection_wrapper),
1625 TEST_CASE_NAMED("test_mode4_lacp", test_mode4_lacp_wrapper),
1626 TEST_CASE_NAMED("test_mode4_rx", test_mode4_rx_wrapper),
1627 TEST_CASE_NAMED("test_mode4_tx_burst", test_mode4_tx_burst_wrapper),
1628 TEST_CASE_NAMED("test_mode4_marker", test_mode4_marker_wrapper),
1629 TEST_CASE_NAMED("test_mode4_expired", test_mode4_expired_wrapper),
1630 TEST_CASE_NAMED("test_mode4_ext_ctrl",
1631 test_mode4_ext_ctrl_wrapper),
1632 TEST_CASE_NAMED("test_mode4_ext_lacp",
1633 test_mode4_ext_lacp_wrapper),
1634
1635 TEST_CASES_END() /**< NULL terminate unit test array */
1636 }
1637 };
1638
1639 static int
1640 test_link_bonding_mode4(void)
1641 {
1642 return unit_test_suite_runner(&link_bonding_mode4_test_suite);
1643 }
1644
1645 REGISTER_TEST_COMMAND(link_bonding_mode4_autotest, test_link_bonding_mode4);