remove version in all files
[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         };
83
84         if (recursive_call == NULL)
85                 return -1;
86         for (i = 0; i < sizeof(actions)/sizeof(actions[0]); i++) {
87                 if (strcmp(actions[i].env_var, recursive_call) == 0)
88                         return (actions[i].action_fn)();
89         }
90         return -1;
91 }
92 #endif
93
94 void
95 test_hexdump(const char *title, const void *buf, unsigned int len)
96 {
97         unsigned int i, out, ofs;
98         const unsigned char *data = buf;
99 #define LINE_LEN 80
100         char line[LINE_LEN];    /* space needed 8+16*3+3+16 == 75 */
101
102         printf("%s at [%p], len=%u\n", title, data, len);
103         ofs = 0;
104         while (ofs < len) {
105                 /* format 1 line in the buffer, then use printf to print them */
106                 out = rte_snprintf(line, LINE_LEN, "%08X", ofs);
107                 for (i = 0; ofs+i < len && i < 16; i++)
108                         out += rte_snprintf(line+out, LINE_LEN - out, " %02X",
109                                         data[ofs+i]&0xff);
110                 for(; i <= 16; i++)
111                         out += rte_snprintf(line+out, LINE_LEN - out, "   ");
112                 for(i = 0; ofs < len && i < 16; i++, ofs++) {
113                         unsigned char c = data[ofs];
114                         if (!isascii(c) || !isprint(c))
115                                 c = '.';
116                         out += rte_snprintf(line+out, LINE_LEN - out, "%c", c);
117                 }
118                 printf("%s\n", line);
119         }
120 }
121
122 int
123 main(int argc, char **argv)
124 {
125         struct cmdline *cl;
126         int ret;
127
128         ret = rte_eal_init(argc, argv);
129         if (ret < 0)
130                 return -1;
131
132         rte_timer_subsystem_init();
133
134         argc -= ret;
135         argv += ret;
136
137         prgname = argv[0];
138
139 #ifndef RTE_EXEC_ENV_BAREMETAL
140         if ((recursive_call = getenv(RECURSIVE_ENV_VAR)) != NULL)
141                 return do_recursive_call();
142 #endif
143
144         cl = cmdline_stdin_new(main_ctx, "RTE>>");
145         if (cl == NULL) {
146                 return -1;
147         }
148         cmdline_interact(cl);
149         cmdline_stdin_exit(cl);
150
151         return 0;
152 }