first public release
[dpdk.git] / app / test / process.h
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 #ifndef _PROCESS_H_
37 #define _PROCESS_H_
38
39 #ifndef RTE_EXEC_ENV_BAREMETAL
40
41 /*
42  * launches a second copy of the test process using the given argv parameters,
43  * which should include argv[0] as the process name. To identify in the
44  * subprocess the source of the call, the env_value parameter is set in the
45  * environment as $RTE_TEST
46  */
47 static inline int
48 process_dup(const char *const argv[], int numargs, const char *env_value)
49 {
50         char *argv_cpy[numargs + 1];
51         int i, fd, status;
52         char path[32];
53
54         pid_t pid = fork();
55         if (pid < 0)
56                 return -1;
57         else if (pid == 0) {
58                 /* make a copy of the arguments to be passed to exec */
59                 for (i = 0; i < numargs; i++)
60                         argv_cpy[i] = strdup(argv[i]);
61                 argv_cpy[i] = NULL;
62
63                 /* close all open file descriptors, check /proc/self/fd to only
64                  * call close on open fds. Exclude fds 0, 1 and 2*/
65                 for (fd = getdtablesize(); fd > 2; fd-- ) {
66                         rte_snprintf(path, sizeof(path), "/proc/self/fd/%d", fd);
67                         if (access(path, F_OK) == 0)
68                                 close(fd);
69                 }
70                 printf("Running binary with argv[]:");
71                 for (i = 0; i < numargs; i++)
72                         printf("'%s' ", argv_cpy[i]);
73                 printf("\n");
74
75                 /* set the environment variable */
76                 if (setenv(RECURSIVE_ENV_VAR, env_value, 1) != 0)
77                         rte_panic("Cannot export environment variable\n");
78                 if (execv("/proc/self/exe", argv_cpy) < 0)
79                         rte_panic("Cannot exec\n");
80         }
81         /* parent process does a wait */
82         while (wait(&status) != pid)
83                         ;
84         return status;
85 }
86
87 #endif /* not baremetal */
88
89 #endif /* _PROCESS_H_ */