4 * Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
5 * Copyright(c) 2014 6WIND S.A.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * * Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * * Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in
16 * the documentation and/or other materials provided with the
18 * * Neither the name of Intel Corporation nor the names of its
19 * contributors may be used to endorse or promote products derived
20 * from this software without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
26 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
28 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 #include <netinet/in.h>
44 #include <net/socket.h>
49 #include <sys/queue.h>
51 #include <rte_common.h>
53 #include <rte_debug.h>
54 #include <rte_memory.h>
55 #include <rte_memcpy.h>
56 #include <rte_memzone.h>
57 #include <rte_launch.h>
58 #include <rte_cycles.h>
60 #include <rte_per_lcore.h>
61 #include <rte_lcore.h>
62 #include <rte_atomic.h>
63 #include <rte_branch_prediction.h>
65 #include <rte_mempool.h>
67 #include <rte_devargs.h>
69 #include <cmdline_rdline.h>
70 #include <cmdline_parse.h>
71 #include <cmdline_parse_ipaddr.h>
72 #include <cmdline_parse_num.h>
73 #include <cmdline_parse_string.h>
80 static struct test_commands_list commands_list =
81 TAILQ_HEAD_INITIALIZER(commands_list);
84 add_test_command(struct test_command *t)
86 TAILQ_INSERT_TAIL(&commands_list, t, next);
89 struct cmd_autotest_result {
90 cmdline_fixed_string_t autotest;
93 static void cmd_autotest_parsed(void *parsed_result,
94 __attribute__((unused)) struct cmdline *cl,
95 __attribute__((unused)) void *data)
97 struct test_command *t;
98 struct cmd_autotest_result *res = parsed_result;
101 TAILQ_FOREACH(t, &commands_list, next) {
102 if (!strcmp(res->autotest, t->command))
109 printf("Test Failed\n");
113 cmdline_parse_token_string_t cmd_autotest_autotest =
114 TOKEN_STRING_INITIALIZER(struct cmd_autotest_result, autotest,
117 cmdline_parse_inst_t cmd_autotest = {
118 .f = cmd_autotest_parsed, /* function to call */
119 .data = NULL, /* 2nd arg of func */
120 .help_str = "launch autotest",
121 .tokens = { /* token list, NULL terminated */
122 (void *)&cmd_autotest_autotest,
129 struct cmd_dump_result {
130 cmdline_fixed_string_t dump;
134 dump_struct_sizes(void)
136 #define DUMP_SIZE(t) printf("sizeof(" #t ") = %u\n", (unsigned)sizeof(t));
137 DUMP_SIZE(struct rte_mbuf);
138 DUMP_SIZE(struct rte_mempool);
139 DUMP_SIZE(struct rte_ring);
143 static void cmd_dump_parsed(void *parsed_result,
144 __attribute__((unused)) struct cmdline *cl,
145 __attribute__((unused)) void *data)
147 struct cmd_dump_result *res = parsed_result;
149 if (!strcmp(res->dump, "dump_physmem"))
150 rte_dump_physmem_layout(stdout);
151 else if (!strcmp(res->dump, "dump_memzone"))
152 rte_memzone_dump(stdout);
153 else if (!strcmp(res->dump, "dump_struct_sizes"))
155 else if (!strcmp(res->dump, "dump_ring"))
156 rte_ring_list_dump(stdout);
157 else if (!strcmp(res->dump, "dump_mempool"))
158 rte_mempool_list_dump(stdout);
159 else if (!strcmp(res->dump, "dump_devargs"))
160 rte_eal_devargs_dump(stdout);
163 cmdline_parse_token_string_t cmd_dump_dump =
164 TOKEN_STRING_INITIALIZER(struct cmd_dump_result, dump,
165 "dump_physmem#dump_memzone#"
166 "dump_struct_sizes#dump_ring#dump_mempool#"
169 cmdline_parse_inst_t cmd_dump = {
170 .f = cmd_dump_parsed, /* function to call */
171 .data = NULL, /* 2nd arg of func */
172 .help_str = "dump status",
173 .tokens = { /* token list, NULL terminated */
174 (void *)&cmd_dump_dump,
181 struct cmd_dump_one_result {
182 cmdline_fixed_string_t dump;
183 cmdline_fixed_string_t name;
186 static void cmd_dump_one_parsed(void *parsed_result, struct cmdline *cl,
187 __attribute__((unused)) void *data)
189 struct cmd_dump_one_result *res = parsed_result;
191 if (!strcmp(res->dump, "dump_ring")) {
193 r = rte_ring_lookup(res->name);
195 cmdline_printf(cl, "Cannot find ring\n");
198 rte_ring_dump(stdout, r);
200 else if (!strcmp(res->dump, "dump_mempool")) {
201 struct rte_mempool *mp;
202 mp = rte_mempool_lookup(res->name);
204 cmdline_printf(cl, "Cannot find mempool\n");
207 rte_mempool_dump(stdout, mp);
211 cmdline_parse_token_string_t cmd_dump_one_dump =
212 TOKEN_STRING_INITIALIZER(struct cmd_dump_one_result, dump,
213 "dump_ring#dump_mempool");
215 cmdline_parse_token_string_t cmd_dump_one_name =
216 TOKEN_STRING_INITIALIZER(struct cmd_dump_one_result, name, NULL);
218 cmdline_parse_inst_t cmd_dump_one = {
219 .f = cmd_dump_one_parsed, /* function to call */
220 .data = NULL, /* 2nd arg of func */
221 .help_str = "dump one ring/mempool: dump_ring|dump_mempool <name>",
222 .tokens = { /* token list, NULL terminated */
223 (void *)&cmd_dump_one_dump,
224 (void *)&cmd_dump_one_name,
231 struct cmd_quit_result {
232 cmdline_fixed_string_t quit;
236 cmd_quit_parsed(__attribute__((unused)) void *parsed_result,
238 __attribute__((unused)) void *data)
243 cmdline_parse_token_string_t cmd_quit_quit =
244 TOKEN_STRING_INITIALIZER(struct cmd_quit_result, quit,
247 cmdline_parse_inst_t cmd_quit = {
248 .f = cmd_quit_parsed, /* function to call */
249 .data = NULL, /* 2nd arg of func */
250 .help_str = "exit application",
251 .tokens = { /* token list, NULL terminated */
252 (void *)&cmd_quit_quit,
259 struct cmd_set_rxtx_result {
260 cmdline_fixed_string_t set;
261 cmdline_fixed_string_t mode;
264 static void cmd_set_rxtx_parsed(void *parsed_result, struct cmdline *cl,
265 __attribute__((unused)) void *data)
267 struct cmd_set_rxtx_result *res = parsed_result;
268 if (test_set_rxtx_conf(res->mode) < 0)
269 cmdline_printf(cl, "Cannot find such mode\n");
272 cmdline_parse_token_string_t cmd_set_rxtx_set =
273 TOKEN_STRING_INITIALIZER(struct cmd_set_rxtx_result, set,
276 cmdline_parse_token_string_t cmd_set_rxtx_mode =
277 TOKEN_STRING_INITIALIZER(struct cmd_set_rxtx_result, mode, NULL);
279 cmdline_parse_inst_t cmd_set_rxtx = {
280 .f = cmd_set_rxtx_parsed, /* function to call */
281 .data = NULL, /* 2nd arg of func */
282 .help_str = "set rxtx routine: "
284 .tokens = { /* token list, NULL terminated */
285 (void *)&cmd_set_rxtx_set,
286 (void *)&cmd_set_rxtx_mode,
293 struct cmd_set_rxtx_anchor {
294 cmdline_fixed_string_t set;
295 cmdline_fixed_string_t type;
299 cmd_set_rxtx_anchor_parsed(void *parsed_result,
301 __attribute__((unused)) void *data)
303 struct cmd_set_rxtx_anchor *res = parsed_result;
304 if (test_set_rxtx_anchor(res->type) < 0)
305 cmdline_printf(cl, "Cannot find such anchor\n");
308 cmdline_parse_token_string_t cmd_set_rxtx_anchor_set =
309 TOKEN_STRING_INITIALIZER(struct cmd_set_rxtx_anchor, set,
312 cmdline_parse_token_string_t cmd_set_rxtx_anchor_type =
313 TOKEN_STRING_INITIALIZER(struct cmd_set_rxtx_anchor, type, NULL);
315 cmdline_parse_inst_t cmd_set_rxtx_anchor = {
316 .f = cmd_set_rxtx_anchor_parsed, /* function to call */
317 .data = NULL, /* 2nd arg of func */
318 .help_str = "set rxtx anchor: "
319 "set_rxtx_anchor <type>",
320 .tokens = { /* token list, NULL terminated */
321 (void *)&cmd_set_rxtx_anchor_set,
322 (void *)&cmd_set_rxtx_anchor_type,
329 /* for stream control */
330 struct cmd_set_rxtx_sc {
331 cmdline_fixed_string_t set;
332 cmdline_fixed_string_t type;
336 cmd_set_rxtx_sc_parsed(void *parsed_result,
338 __attribute__((unused)) void *data)
340 struct cmd_set_rxtx_sc *res = parsed_result;
341 if (test_set_rxtx_sc(res->type) < 0)
342 cmdline_printf(cl, "Cannot find such stream control\n");
345 cmdline_parse_token_string_t cmd_set_rxtx_sc_set =
346 TOKEN_STRING_INITIALIZER(struct cmd_set_rxtx_sc, set,
349 cmdline_parse_token_string_t cmd_set_rxtx_sc_type =
350 TOKEN_STRING_INITIALIZER(struct cmd_set_rxtx_sc, type, NULL);
352 cmdline_parse_inst_t cmd_set_rxtx_sc = {
353 .f = cmd_set_rxtx_sc_parsed, /* function to call */
354 .data = NULL, /* 2nd arg of func */
355 .help_str = "set rxtx stream control: "
356 "set_rxtx_sc <type>",
357 .tokens = { /* token list, NULL terminated */
358 (void *)&cmd_set_rxtx_sc_set,
359 (void *)&cmd_set_rxtx_sc_type,
367 cmdline_parse_ctx_t main_ctx[] = {
368 (cmdline_parse_inst_t *)&cmd_autotest,
369 (cmdline_parse_inst_t *)&cmd_dump,
370 (cmdline_parse_inst_t *)&cmd_dump_one,
371 (cmdline_parse_inst_t *)&cmd_quit,
372 (cmdline_parse_inst_t *)&cmd_set_rxtx,
373 (cmdline_parse_inst_t *)&cmd_set_rxtx_anchor,
374 (cmdline_parse_inst_t *)&cmd_set_rxtx_sc,
378 int commands_init(void)
380 struct test_command *t;
381 char *commands, *ptr;
382 int commands_len = 0;
384 TAILQ_FOREACH(t, &commands_list, next) {
385 commands_len += strlen(t->command) + 1;
388 commands = malloc(commands_len + 1);
393 TAILQ_FOREACH(t, &commands_list, next) {
394 ptr += sprintf(ptr, "%s#", t->command);
399 cmd_autotest_autotest.string_data.str = commands;