]> git.cworth.org Git - fips/blob - execute.c
Add the ability to execute a program.
[fips] / execute.c
1 /* Copyright © 2013, Intel Corporation
2  *
3  * Permission is hereby granted, free of charge, to any person obtaining a copy
4  * of this software and associated documentation files (the "Software"), to deal
5  * in the Software without restriction, including without limitation the rights
6  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7  * copies of the Software, and to permit persons to whom the Software is
8  * furnished to do so, subject to the following conditions:
9  *
10  * The above copyright notice and this permission notice shall be included in
11  * all copies or substantial portions of the Software.
12  *
13  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19  * THE SOFTWARE.
20  */
21
22 #include <stdio.h>
23 #include <stdlib.h>
24
25 #include <unistd.h>
26 #include <sys/types.h>
27 #include <sys/wait.h>
28
29 static int
30 fork_exec_and_wait (char * const argv[])
31 {
32         pid_t pid;
33         int i, status;
34
35         pid = fork ();
36
37         /* Child */
38         if (pid == 0) {
39                 execvp (argv[0], argv);
40                 fprintf (stderr, "Failed to execute:");
41                 for (i = 0; argv[i]; i++) {
42                         fprintf (stderr, " %s", argv[i]);
43                 }
44                 fprintf (stderr, "\n");
45                 exit (1);
46         }
47
48         /* Parent */
49         waitpid (pid, &status, 0);
50         if (WIFEXITED (status)) {
51                 return (WEXITSTATUS (status));
52         }
53         if (WIFSIGNALED (status)) {
54                 fprintf (stderr, "Child terminated by signal %d\n",
55                          WTERMSIG (status));
56         }
57         return 1;
58 }
59
60 int
61 execute (int argc, char * const argv[])
62 {
63         char **execvp_args;
64         int i;
65
66         execvp_args = malloc((argc + 1) * sizeof(char *));
67         if (execvp_args == NULL) {
68                 fprintf (stderr, "Out of memory,\n");
69                 return 1;
70         }
71
72         for (i = 0; i < argc; i++) {
73                 execvp_args[i] = argv[i];
74         }
75
76         /* execvp needs final NULL */
77         execvp_args[i] = NULL;
78
79         return fork_exec_and_wait (execvp_args);
80 }