1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2014 Intel Corporation
5 #include <rte_byteorder.h>
6 #include <rte_hexdump.h>
7 #include <rte_string_fns.h>
10 #include "test_table.h"
11 #include "test_table_pipeline.h"
12 #include "test_table_ports.h"
13 #include "test_table_tables.h"
14 #include "test_table_combined.h"
15 #include "test_table_acl.h"
17 /* Global variables */
18 struct rte_pipeline *p;
19 struct rte_ring *rings_rx[N_PORTS];
20 struct rte_ring *rings_tx[N_PORTS];
21 struct rte_mempool *pool = NULL;
23 uint32_t port_in_id[N_PORTS];
24 uint32_t port_out_id[N_PORTS];
25 uint32_t port_out_id_type[3];
26 uint32_t table_id[N_PORTS*2];
27 uint64_t override_hit_mask = 0xFFFFFFFF;
28 uint64_t override_miss_mask = 0xFFFFFFFF;
29 uint64_t non_reserved_actions_hit = 0;
30 uint64_t non_reserved_actions_miss = 0;
31 uint8_t connect_miss_action_to_port_out = 0;
32 uint8_t connect_miss_action_to_table = 0;
33 uint32_t table_entry_default_action = RTE_PIPELINE_ACTION_DROP;
34 uint32_t table_entry_hit_action = RTE_PIPELINE_ACTION_PORT;
35 uint32_t table_entry_miss_action = RTE_PIPELINE_ACTION_DROP;
36 rte_pipeline_port_in_action_handler port_in_action = NULL;
37 rte_pipeline_port_out_action_handler port_out_action = NULL;
38 rte_pipeline_table_action_handler_hit action_handler_hit = NULL;
39 rte_pipeline_table_action_handler_miss action_handler_miss = NULL;
41 /* Function prototypes */
42 static void app_init_rings(void);
43 static void app_init_mbuf_pools(void);
45 uint64_t pipeline_test_hash(void *key,
46 __rte_unused void *key_mask,
47 __rte_unused uint32_t key_size,
48 __rte_unused uint64_t seed)
51 uint32_t ip_dst = rte_be_to_cpu_32(k32[0]);
52 uint64_t signature = ip_dst;
57 uint32_t pipeline_test_hash_cuckoo(const void *key,
58 __rte_unused uint32_t key_size,
59 __rte_unused uint32_t seed)
61 const uint32_t *k32 = key;
62 uint32_t ip_dst = rte_be_to_cpu_32(k32[0]);
63 uint32_t signature = ip_dst;
69 app_free_resources(void) {
71 for (i = 0; i < N_PORTS; i++)
72 rte_ring_free(rings_rx[i]);
73 rte_mempool_free(pool);
77 app_init_mbuf_pools(void)
79 /* Init the buffer pool */
80 printf("Getting/Creating the mempool ...\n");
81 pool = rte_mempool_lookup("mempool");
83 pool = rte_pktmbuf_pool_create(
86 POOL_CACHE_SIZE, 0, POOL_BUFFER_SIZE,
89 rte_panic("Cannot create mbuf pool\n");
98 for (i = 0; i < N_PORTS; i++) {
101 snprintf(name, sizeof(name), "app_ring_rx_%u", i);
102 rings_rx[i] = rte_ring_lookup(name);
103 if (rings_rx[i] == NULL) {
104 rings_rx[i] = rte_ring_create(
108 RING_F_SP_ENQ | RING_F_SC_DEQ);
110 if (rings_rx[i] == NULL)
111 rte_panic("Cannot create RX ring %u\n", i);
114 for (i = 0; i < N_PORTS; i++) {
117 snprintf(name, sizeof(name), "app_ring_tx_%u", i);
118 rings_tx[i] = rte_ring_lookup(name);
119 if (rings_tx[i] == NULL) {
120 rings_tx[i] = rte_ring_create(
124 RING_F_SP_ENQ | RING_F_SC_DEQ);
126 if (rings_tx[i] == NULL)
127 rte_panic("Cannot create TX ring %u\n", i);
141 app_init_mbuf_pools();
143 printf("\n\n\n\n************Pipeline tests************\n");
145 if (test_table_pipeline() < 0) {
150 printf("\n\n\n\n************Port tests************\n");
151 for (i = 0; i < n_port_tests; i++) {
152 status = port_tests[i]();
154 printf("\nPort test number %d failed (%d).\n", i,
161 printf("\n\n\n\n************Table tests************\n");
162 for (i = 0; i < n_table_tests; i++) {
163 status = table_tests[i]();
165 printf("\nTable test number %d failed (%d).\n", i,
172 printf("\n\n\n\n************Table tests************\n");
173 for (i = 0; i < n_table_tests_combined; i++) {
174 status = table_tests_combined[i]();
176 printf("\nCombined table test number %d failed with "
177 "reason number %d.\n", i, status);
183 #ifdef RTE_LIBRTE_ACL
184 printf("\n\n\n\n************ACL tests************\n");
185 if (test_table_acl() < 0) {
192 app_free_resources();
197 REGISTER_TEST_COMMAND(table_autotest, test_table);