4 * Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
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
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.
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.
35 #include <rte_pipeline.h>
38 #include <rte_hexdump.h>
39 #include "test_table.h"
40 #include "test_table_pipeline.h"
44 static rte_pipeline_port_out_action_handler port_action_0x00
45 (struct rte_mbuf **pkts, uint32_t n, uint64_t *pkts_mask, void *arg);
46 static rte_pipeline_port_out_action_handler port_action_0xFF
47 (struct rte_mbuf **pkts, uint32_t n, uint64_t *pkts_mask, void *arg);
48 static rte_pipeline_port_out_action_handler port_action_stub
49 (struct rte_mbuf **pkts, uint32_t n, uint64_t *pkts_mask, void *arg);
52 rte_pipeline_port_out_action_handler port_action_0x00(struct rte_mbuf **pkts,
60 printf("Port Action 0x00\n");
65 rte_pipeline_port_out_action_handler port_action_0xFF(struct rte_mbuf **pkts,
73 printf("Port Action 0xFF\n");
78 rte_pipeline_port_out_action_handler port_action_stub(struct rte_mbuf **pkts,
85 RTE_SET_USED(pkts_mask);
87 printf("Port Action stub\n");
93 rte_pipeline_table_action_handler_hit
94 table_action_0x00(struct rte_pipeline *p, struct rte_mbuf **pkts,
95 uint64_t pkts_mask, struct rte_pipeline_table_entry **entry, void *arg);
97 rte_pipeline_table_action_handler_hit
98 table_action_stub_hit(struct rte_pipeline *p, struct rte_mbuf **pkts,
99 uint64_t pkts_mask, struct rte_pipeline_table_entry **entry, void *arg);
101 rte_pipeline_table_action_handler_miss
102 table_action_stub_miss(struct rte_pipeline *p, struct rte_mbuf **pkts,
103 uint64_t pkts_mask, struct rte_pipeline_table_entry **entry, void *arg);
105 rte_pipeline_table_action_handler_hit
106 table_action_0x00(__attribute__((unused)) struct rte_pipeline *p,
107 __attribute__((unused)) struct rte_mbuf **pkts,
109 __attribute__((unused)) struct rte_pipeline_table_entry **entry,
110 __attribute__((unused)) void *arg)
112 printf("Table Action, setting pkts_mask to 0x00\n");
114 rte_pipeline_ah_packet_drop(p, pkts_mask);
118 rte_pipeline_table_action_handler_hit
119 table_action_stub_hit(__attribute__((unused)) struct rte_pipeline *p,
120 __attribute__((unused)) struct rte_mbuf **pkts,
122 __attribute__((unused)) struct rte_pipeline_table_entry **entry,
123 __attribute__((unused)) void *arg)
125 printf("STUB Table Action Hit - doing nothing\n");
126 printf("STUB Table Action Hit - setting mask to 0x%"PRIx64"\n",
128 pkts_mask = (~override_hit_mask) & 0x3;
129 rte_pipeline_ah_packet_drop(p, pkts_mask);
133 rte_pipeline_table_action_handler_miss
134 table_action_stub_miss(struct rte_pipeline *p,
135 __attribute__((unused)) struct rte_mbuf **pkts,
137 __attribute__((unused)) struct rte_pipeline_table_entry **entry,
138 __attribute__((unused)) void *arg)
140 printf("STUB Table Action Miss - setting mask to 0x%"PRIx64"\n",
142 pkts_mask = (~override_miss_mask) & 0x3;
143 rte_pipeline_ah_packet_drop(p, pkts_mask);
159 char pipeline_test_names[][64] = {
174 cleanup_pipeline(void)
177 rte_pipeline_free(p);
183 static int check_pipeline_invalid_params(void);
186 check_pipeline_invalid_params(void)
188 struct rte_pipeline_params pipeline_params_1 = {
192 struct rte_pipeline_params pipeline_params_2 = {
196 struct rte_pipeline_params pipeline_params_3 = {
201 p = rte_pipeline_create(NULL);
203 RTE_LOG(INFO, PIPELINE,
204 "%s: configured pipeline with null params\n",
208 p = rte_pipeline_create(&pipeline_params_1);
210 RTE_LOG(INFO, PIPELINE, "%s: Configure pipeline with NULL "
215 p = rte_pipeline_create(&pipeline_params_2);
217 RTE_LOG(INFO, PIPELINE, "%s: Configure pipeline with invalid "
218 "socket\n", __func__);
222 p = rte_pipeline_create(&pipeline_params_3);
224 RTE_LOG(INFO, PIPELINE, "%s: Configure pipeline with invalid "
225 "socket\n", __func__);
229 /* Check pipeline consistency */
230 if (!rte_pipeline_check(p)) {
231 rte_panic("Pipeline consistency reported as OK\n");
243 setup_pipeline(int test_type)
247 struct rte_pipeline_params pipeline_params = {
252 RTE_LOG(INFO, PIPELINE, "%s: **** Setting up %s test\n",
253 __func__, pipeline_test_names[test_type]);
255 /* Pipeline configuration */
256 p = rte_pipeline_create(&pipeline_params);
258 RTE_LOG(INFO, PIPELINE, "%s: Failed to configure pipeline\n",
263 ret = rte_pipeline_free(p);
265 RTE_LOG(INFO, PIPELINE, "%s: Failed to free pipeline\n",
270 /* Pipeline configuration */
271 p = rte_pipeline_create(&pipeline_params);
273 RTE_LOG(INFO, PIPELINE, "%s: Failed to configure pipeline\n",
279 /* Input port configuration */
280 for (i = 0; i < N_PORTS; i++) {
281 struct rte_port_ring_reader_params port_ring_params = {
285 struct rte_pipeline_port_in_params port_params = {
286 .ops = &rte_port_ring_reader_ops,
287 .arg_create = (void *) &port_ring_params,
289 .burst_size = BURST_SIZE,
292 /* Put in action for some ports */
294 port_params.f_action = NULL;
296 ret = rte_pipeline_port_in_create(p, &port_params,
299 rte_panic("Unable to configure input port %d, ret:%d\n",
305 /* output Port configuration */
306 for (i = 0; i < N_PORTS; i++) {
307 struct rte_port_ring_writer_params port_ring_params = {
309 .tx_burst_sz = BURST_SIZE,
312 struct rte_pipeline_port_out_params port_params = {
313 .ops = &rte_port_ring_writer_ops,
314 .arg_create = (void *) &port_ring_params,
320 port_params.f_action = port_out_action;
322 if (rte_pipeline_port_out_create(p, &port_params,
324 rte_panic("Unable to configure output port %d\n", i);
329 /* Table configuration */
330 for (i = 0; i < N_PORTS; i++) {
331 struct rte_pipeline_table_params table_params = {
332 .ops = &rte_table_stub_ops,
334 .f_action_hit = action_handler_hit,
335 .f_action_miss = action_handler_miss,
336 .action_data_size = 0,
339 if (rte_pipeline_table_create(p, &table_params, &table_id[i])) {
340 rte_panic("Unable to configure table %u\n", i);
344 if (connect_miss_action_to_table)
345 if (rte_pipeline_table_create(p, &table_params,
347 rte_panic("Unable to configure table %u\n", i);
352 for (i = 0; i < N_PORTS; i++)
353 if (rte_pipeline_port_in_connect_to_table(p, port_in_id[i],
355 rte_panic("Unable to connect input port %u to "
356 "table %u\n", port_in_id[i], table_id[i]);
360 /* Add entries to tables */
361 for (i = 0; i < N_PORTS; i++) {
362 struct rte_pipeline_table_entry default_entry = {
363 .action = (enum rte_pipeline_action)
364 table_entry_default_action,
365 {.port_id = port_out_id[i^1]},
367 struct rte_pipeline_table_entry *default_entry_ptr;
369 if (connect_miss_action_to_table) {
370 printf("Setting first table to output to next table\n");
371 default_entry.action = RTE_PIPELINE_ACTION_TABLE;
372 default_entry.table_id = table_id[i+2];
375 /* Add the default action for the table. */
376 ret = rte_pipeline_table_default_entry_add(p, table_id[i],
377 &default_entry, &default_entry_ptr);
379 rte_panic("Unable to add default entry to table %u "
380 "code %d\n", table_id[i], ret);
383 printf("Added default entry to table id %d with "
385 table_id[i], default_entry.action);
387 if (connect_miss_action_to_table) {
388 /* We create a second table so the first can pass
390 struct rte_pipeline_table_entry default_entry = {
391 .action = RTE_PIPELINE_ACTION_PORT,
392 {.port_id = port_out_id[i^1]},
394 printf("Setting secont table to output to port\n");
396 /* Add the default action for the table. */
397 ret = rte_pipeline_table_default_entry_add(p,
399 &default_entry, &default_entry_ptr);
401 rte_panic("Unable to add default entry to "
402 "table %u code %d\n",
406 printf("Added default entry to table id %d "
408 table_id[i], default_entry.action);
412 /* Enable input ports */
413 for (i = 0; i < N_PORTS ; i++)
414 if (rte_pipeline_port_in_enable(p, port_in_id[i]))
415 rte_panic("Unable to enable input port %u\n",
418 /* Check pipeline consistency */
419 if (rte_pipeline_check(p) < 0) {
420 rte_panic("Pipeline consistency check failed\n");
423 printf("Pipeline Consistency OK!\n");
432 test_pipeline_single_filter(int test_type, int expected_count)
439 RTE_LOG(INFO, PIPELINE, "%s: **** Running %s test\n",
440 __func__, pipeline_test_names[test_type]);
441 /* Run pipeline once */
442 for (i = 0; i < N_PORTS; i++)
446 ret = rte_pipeline_flush(NULL);
447 if (ret != -EINVAL) {
448 RTE_LOG(INFO, PIPELINE,
449 "%s: No pipeline flush error NULL pipeline (%d)\n",
455 * Allocate a few mbufs and manually insert into the rings. */
456 for (i = 0; i < N_PORTS; i++)
457 for (j = 0; j < N_PORTS; j++) {
462 m = rte_pktmbuf_alloc(pool);
464 rte_panic("Failed to alloc mbuf from pool\n");
467 key = RTE_MBUF_METADATA_UINT8_PTR(m,
468 APP_METADATA_OFFSET(32));
470 k32 = (uint32_t *) key;
471 k32[0] = 0xadadadad >> (j % 2);
473 RTE_LOG(INFO, PIPELINE, "%s: Enqueue onto ring %d\n",
475 rte_ring_enqueue(rings_rx[i], m);
478 /* Run pipeline once */
479 for (i = 0; i < N_PORTS; i++)
483 * need to flush the pipeline, as there may be less hits than the burst
484 size and they will not have been flushed to the tx rings. */
485 rte_pipeline_flush(p);
488 * Now we'll see what we got back on the tx rings. We should see whatever
489 * packets we had hits on that were destined for the output ports.
493 for (i = 0; i < N_PORTS; i++) {
494 void *objs[RING_TX_SIZE];
495 struct rte_mbuf *mbuf;
497 ret = rte_ring_sc_dequeue_burst(rings_tx[i], objs, 10, NULL);
499 printf("Got no objects from ring %d - error code %d\n",
502 printf("Got %d object(s) from ring %d!\n", ret, i);
503 for (j = 0; j < ret; j++) {
505 rte_hexdump(stdout, "Object:",
506 rte_pktmbuf_mtod(mbuf, char *),
508 rte_pktmbuf_free(mbuf);
514 if (tx_count != expected_count) {
515 RTE_LOG(INFO, PIPELINE,
516 "%s: Unexpected packets out for %s test, expected %d, "
517 "got %d\n", __func__, pipeline_test_names[test_type],
518 expected_count, tx_count);
531 test_table_pipeline(void)
533 /* TEST - All packets dropped */
534 action_handler_hit = NULL;
535 action_handler_miss = NULL;
536 table_entry_default_action = RTE_PIPELINE_ACTION_DROP;
537 setup_pipeline(e_TEST_STUB);
538 if (test_pipeline_single_filter(e_TEST_STUB, 0) < 0)
541 /* TEST - All packets passed through */
542 table_entry_default_action = RTE_PIPELINE_ACTION_PORT;
543 setup_pipeline(e_TEST_STUB);
544 if (test_pipeline_single_filter(e_TEST_STUB, 4) < 0)
547 /* TEST - one packet per port */
548 action_handler_hit = NULL;
549 action_handler_miss =
550 (rte_pipeline_table_action_handler_miss) table_action_stub_miss;
551 table_entry_default_action = RTE_PIPELINE_ACTION_PORT;
552 override_miss_mask = 0x01; /* one packet per port */
553 setup_pipeline(e_TEST_STUB);
554 if (test_pipeline_single_filter(e_TEST_STUB, 2) < 0)
557 /* TEST - one packet per port */
558 override_miss_mask = 0x02; /*all per port */
559 setup_pipeline(e_TEST_STUB);
560 if (test_pipeline_single_filter(e_TEST_STUB, 2) < 0)
563 /* TEST - all packets per port */
564 override_miss_mask = 0x03; /*all per port */
565 setup_pipeline(e_TEST_STUB);
566 if (test_pipeline_single_filter(e_TEST_STUB, 4) < 0)
570 * This test will set up two tables in the pipeline. the first table
571 * will forward to another table on miss, and the second table will
574 connect_miss_action_to_table = 1;
575 table_entry_default_action = RTE_PIPELINE_ACTION_TABLE;
576 action_handler_hit = NULL; /* not for stub, hitmask always zero */
577 action_handler_miss = NULL;
578 setup_pipeline(e_TEST_STUB);
579 if (test_pipeline_single_filter(e_TEST_STUB, 4) < 0)
581 connect_miss_action_to_table = 0;
583 printf("TEST - two tables, hitmask override to 0x01\n");
584 connect_miss_action_to_table = 1;
585 action_handler_miss =
586 (rte_pipeline_table_action_handler_miss)table_action_stub_miss;
587 override_miss_mask = 0x01;
588 setup_pipeline(e_TEST_STUB);
589 if (test_pipeline_single_filter(e_TEST_STUB, 2) < 0)
591 connect_miss_action_to_table = 0;
593 if (check_pipeline_invalid_params()) {
594 RTE_LOG(INFO, PIPELINE, "%s: Check pipeline invalid params "
595 "failed.\n", __func__);