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