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