4 * Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
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
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.
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.
42 #include <sys/queue.h>
55 #include <rte_common.h>
56 #include <rte_memory.h>
57 #include <rte_memzone.h>
59 #include <rte_launch.h>
60 #include <rte_per_lcore.h>
61 #include <rte_lcore.h>
62 #include <rte_errno.h>
63 #include <rte_branch_prediction.h>
64 #include <rte_atomic.h>
66 #include <rte_debug.h>
68 #include <rte_mempool.h>
70 #ifdef RTE_LIBRTE_HASH
72 #include <rte_fbk_hash.h>
73 #endif /* RTE_LIBRTE_HASH */
77 #endif /* RTE_LIBRTE_LPM */
79 #include <rte_string_fns.h>
83 #define launch_proc(ARGV) process_dup(ARGV, \
84 sizeof(ARGV)/(sizeof(ARGV[0])), __func__)
86 #ifdef RTE_EXEC_ENV_LINUXAPP
88 get_current_prefix(char * prefix, int size)
90 char path[PATH_MAX] = {0};
91 char buf[PATH_MAX] = {0};
93 /* get file for config (fd is always 3) */
94 snprintf(path, sizeof(path), "/proc/self/fd/%d", 3);
96 /* return NULL on error */
97 if (readlink(path, buf, sizeof(buf)) == -1)
100 /* get the basename */
101 snprintf(buf, sizeof(buf), "%s", basename(buf));
103 /* copy string all the way from second char up to start of _config */
104 snprintf(prefix, size, "%.*s",
105 (int)(strnlen(buf, sizeof(buf)) - sizeof("_config")),
113 * This function is called in the primary i.e. main test, to spawn off secondary
114 * processes to run actual mp tests. Uses fork() and exec pair
117 run_secondary_instances(void)
122 #ifdef RTE_EXEC_ENV_LINUXAPP
123 char tmp[PATH_MAX] = {0};
124 char prefix[PATH_MAX] = {0};
126 get_current_prefix(tmp, sizeof(tmp));
128 snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
130 const char *prefix = "";
133 /* good case, using secondary */
134 const char *argv1[] = {
135 prgname, "-c", coremask, "--proc-type=secondary",
138 /* good case, using auto */
139 const char *argv2[] = {
140 prgname, "-c", coremask, "--proc-type=auto",
143 /* bad case, using invalid type */
144 const char *argv3[] = {
145 prgname, "-c", coremask, "--proc-type=ERROR",
148 #ifdef RTE_EXEC_ENV_LINUXAPP
149 /* bad case, using invalid file prefix */
150 const char *argv4[] = {
151 prgname, "-c", coremask, "--proc-type=secondary",
152 "--file-prefix=ERROR"
156 snprintf(coremask, sizeof(coremask), "%x", \
157 (1 << rte_get_master_lcore()));
159 ret |= launch_proc(argv1);
160 ret |= launch_proc(argv2);
162 ret |= !(launch_proc(argv3));
163 #ifdef RTE_EXEC_ENV_LINUXAPP
164 ret |= !(launch_proc(argv4));
171 * This function is run in the secondary instance to test that creation of
172 * objects fails in a secondary
175 run_object_creation_tests(void)
177 const unsigned flags = 0;
178 const unsigned size = 1024;
179 const unsigned elt_size = 64;
180 const unsigned cache_size = 64;
181 const unsigned priv_data_size = 32;
183 printf("### Testing object creation - expect lots of mz reserve errors!\n");
186 if ((rte_memzone_reserve("test_mz", size, rte_socket_id(),
188 (rte_memzone_lookup("test_mz") == NULL)) {
189 printf("Error: unexpected return value from rte_memzone_reserve\n");
192 printf("# Checked rte_memzone_reserve() OK\n");
195 if ((rte_ring_create(
196 "test_ring", size, rte_socket_id(), flags) == NULL) &&
197 (rte_ring_lookup("test_ring") == NULL)){
198 printf("Error: unexpected return value from rte_ring_create()\n");
201 printf("# Checked rte_ring_create() OK\n");
204 if ((rte_mempool_create("test_mp", size, elt_size, cache_size,
205 priv_data_size, NULL, NULL, NULL, NULL,
206 rte_socket_id(), flags) == NULL) &&
207 (rte_mempool_lookup("test_mp") == NULL)){
208 printf("Error: unexpected return value from rte_mempool_create()\n");
211 printf("# Checked rte_mempool_create() OK\n");
213 #ifdef RTE_LIBRTE_HASH
214 const struct rte_hash_parameters hash_params = { .name = "test_mp_hash" };
216 if ((rte_hash_create(&hash_params) != NULL) &&
217 (rte_hash_find_existing(hash_params.name) == NULL)){
218 printf("Error: unexpected return value from rte_hash_create()\n");
221 printf("# Checked rte_hash_create() OK\n");
223 const struct rte_fbk_hash_params fbk_params = { .name = "test_fbk_mp_hash" };
225 if ((rte_fbk_hash_create(&fbk_params) != NULL) &&
226 (rte_fbk_hash_find_existing(fbk_params.name) == NULL)){
227 printf("Error: unexpected return value from rte_fbk_hash_create()\n");
230 printf("# Checked rte_fbk_hash_create() OK\n");
233 #ifdef RTE_LIBRTE_LPM
235 if ((rte_lpm_create("test_lpm", size, rte_socket_id(), 0) != NULL) &&
236 (rte_lpm_find_existing("test_lpm") == NULL)){
237 printf("Error: unexpected return value from rte_lpm_create()\n");
240 printf("# Checked rte_lpm_create() OK\n");
243 /* Run a test_pci call */
244 if (test_pci() != 0) {
245 printf("PCI scan failed in secondary\n");
246 if (getuid() == 0) /* pci scans can fail as non-root */
249 printf("PCI scan succeeded in secondary\n");
254 /* if called in a primary process, just spawns off a secondary process to
255 * run validation tests - which brings us right back here again...
256 * if called in a secondary process, this runs a series of API tests to check
257 * how things run in a secondary instance.
260 test_mp_secondary(void)
262 if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
264 printf("=== Running pre-requisite test of test_pci\n");
266 printf("=== Requisite test done\n");
268 return run_secondary_instances();
271 printf("IN SECONDARY PROCESS\n");
273 return run_object_creation_tests();
276 static struct test_command multiprocess_cmd = {
277 .command = "multiprocess_autotest",
278 .callback = test_mp_secondary,
280 REGISTER_TEST_COMMAND(multiprocess_cmd);