816c3487ed4788caceca881fa52218b96de57d52
[dpdk.git] / app / test / test.c
1 /*-
2  *   BSD LICENSE
3  * 
4  *   Copyright(c) 2010-2012 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
35 #include <string.h>
36 #include <stdio.h>
37 #include <stdint.h>
38 #include <stdarg.h>
39 #include <stdlib.h>
40 #include <errno.h>
41 #include <termios.h>
42 #include <ctype.h>
43 #include <sys/queue.h>
44
45 #include <cmdline_rdline.h>
46 #include <cmdline_parse.h>
47 #include <cmdline_socket.h>
48 #include <cmdline.h>
49
50 #include <rte_memory.h>
51 #include <rte_memzone.h>
52 #include <rte_tailq.h>
53 #include <rte_eal.h>
54 #include <rte_timer.h>
55 #include <rte_string_fns.h>
56
57 #include "test.h"
58
59 const char *prgname; /* to be set to argv[0] */
60
61 #ifndef RTE_EXEC_ENV_BAREMETAL
62 static const char *recursive_call; /* used in linuxapp for MP and other tests */
63
64 static int
65 no_action(void){ return 0; }
66
67 static int
68 do_recursive_call(void)
69 {
70         unsigned i;
71         struct {
72                 const char *env_var;
73                 int (*action_fn)(void);
74         } actions[] =  {
75                         { "run_secondary_instances", test_mp_secondary },
76                         { "test_missing_c_flag", no_action },
77                         { "test_missing_n_flag", no_action },
78                         { "test_no_hpet_flag", no_action },
79                         { "test_invalid_b_flag", no_action },
80                         { "test_invalid_r_flag", no_action },
81                         { "test_misc_flags", no_action },
82                         { "test_memory_flags", no_action },
83                         { "test_file_prefix", no_action },
84                         { "test_no_huge_flag", no_action },
85         };
86
87         if (recursive_call == NULL)
88                 return -1;
89         for (i = 0; i < sizeof(actions)/sizeof(actions[0]); i++) {
90                 if (strcmp(actions[i].env_var, recursive_call) == 0)
91                         return (actions[i].action_fn)();
92         }
93         return -1;
94 }
95 #endif
96
97 void
98 test_hexdump(const char *title, const void *buf, unsigned int len)
99 {
100         unsigned int i, out, ofs;
101         const unsigned char *data = buf;
102 #define LINE_LEN 80
103         char line[LINE_LEN];    /* space needed 8+16*3+3+16 == 75 */
104
105         printf("%s at [%p], len=%u\n", title, data, len);
106         ofs = 0;
107         while (ofs < len) {
108                 /* format 1 line in the buffer, then use printf to print them */
109                 out = rte_snprintf(line, LINE_LEN, "%08X", ofs);
110                 for (i = 0; ofs+i < len && i < 16; i++)
111                         out += rte_snprintf(line+out, LINE_LEN - out, " %02X",
112                                         data[ofs+i]&0xff);
113                 for(; i <= 16; i++)
114                         out += rte_snprintf(line+out, LINE_LEN - out, "   ");
115                 for(i = 0; ofs < len && i < 16; i++, ofs++) {
116                         unsigned char c = data[ofs];
117                         if (!isascii(c) || !isprint(c))
118                                 c = '.';
119                         out += rte_snprintf(line+out, LINE_LEN - out, "%c", c);
120                 }
121                 printf("%s\n", line);
122         }
123 }
124
125 int
126 main(int argc, char **argv)
127 {
128         struct cmdline *cl;
129         int ret;
130
131         ret = rte_eal_init(argc, argv);
132         if (ret < 0)
133                 return -1;
134
135         rte_timer_subsystem_init();
136
137         argv += ret;
138
139         prgname = argv[0];
140
141 #ifndef RTE_EXEC_ENV_BAREMETAL
142         if ((recursive_call = getenv(RECURSIVE_ENV_VAR)) != NULL)
143                 return do_recursive_call();
144 #endif
145
146         cl = cmdline_stdin_new(main_ctx, "RTE>>");
147         if (cl == NULL) {
148                 return -1;
149         }
150         cmdline_interact(cl);
151         cmdline_stdin_exit(cl);
152
153         return 0;
154 }