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