]> git.ozlabs.org Git - petitboot/blob - lib/system/system.c
lib/process: replace pb_run_cmd_pipe
[petitboot] / lib / system / system.c
1
2 #if defined(HAVE_CONFIG_H)
3 #include "config.h"
4 #endif
5
6 #include <assert.h>
7 #include <errno.h>
8 #include <stdlib.h>
9 #include <string.h>
10 #include <unistd.h>
11 #include <sys/stat.h>
12 #include <sys/types.h>
13 #include <sys/wait.h>
14
15 #include "log/log.h"
16 #include <talloc/talloc.h>
17 #include "system.h"
18
19 const struct pb_system_apps pb_system_apps = {
20         .prefix         = PREFIX,
21         .cp             = HOST_PROG_CP,
22         .kexec          = HOST_PROG_KEXEC,
23         .mount          = HOST_PROG_MOUNT,
24         .shutdown       = HOST_PROG_SHUTDOWN,
25         .sftp           = HOST_PROG_SFTP,
26         .tftp           = HOST_PROG_TFTP,
27         .umount         = HOST_PROG_UMOUNT,
28         .wget           = HOST_PROG_WGET,
29         .ip             = HOST_PROG_IP,
30         .udhcpc         = HOST_PROG_UDHCPC,
31 };
32
33 int pb_mkdir_recursive(const char *dir)
34 {
35         struct stat statbuf;
36         char *str, *sep;
37         int mode = 0755;
38
39         if (!*dir)
40                 return 0;
41
42         if (!stat(dir, &statbuf)) {
43                 if (!S_ISDIR(statbuf.st_mode)) {
44                         pb_log("%s: %s exists, but isn't a directory\n",
45                                         __func__, dir);
46                         return -1;
47                 }
48                 return 0;
49         }
50
51         str = talloc_strdup(NULL, dir);
52         sep = strchr(*str == '/' ? str + 1 : str, '/');
53
54         while (1) {
55
56                 /* terminate the path at sep */
57                 if (sep)
58                         *sep = '\0';
59
60                 if (mkdir(str, mode) && errno != EEXIST) {
61                         pb_log("mkdir(%s): %s\n", str, strerror(errno));
62                         return -1;
63                 }
64
65                 if (!sep)
66                         break;
67
68                 /* reset dir to the full path */
69                 strcpy(str, dir);
70                 sep = strchr(sep + 1, '/');
71         }
72
73         talloc_free(str);
74
75         return 0;
76 }
77
78 int pb_rmdir_recursive(const char *base, const char *dir)
79 {
80         char *cur, *pos;
81
82         /* sanity check: make sure that dir is within base */
83         if (strncmp(base, dir, strlen(base)))
84                 return -1;
85
86         cur = talloc_strdup(NULL, dir);
87
88         while (strcmp(base, dir)) {
89
90                 rmdir(dir);
91
92                 /* null-terminate at the last slash */
93                 pos = strrchr(dir, '/');
94                 if (!pos)
95                         break;
96
97                 *pos = '\0';
98         }
99
100         talloc_free(cur);
101
102         return 0;
103 }
104
105 /**
106  * pb_run_cmd - Run the supplied command.
107  * @cmd_argv: An argument list array for execv.
108  * @wait: Wait for the child process to complete before returning.
109  * @dry_run: Don't actually fork and exec.
110  */
111 int pb_run_cmd(const char *const *cmd_argv, int wait, int dry_run)
112 {
113 #if defined(DEBUG)
114         enum {do_debug = 1};
115 #else
116         enum {do_debug = 0};
117 #endif
118         int status;
119         pid_t pid;
120
121         if (do_debug) {
122                 const char *const *p = cmd_argv;
123
124                 pb_log("%s: %s", __func__, (dry_run ? "(dry-run) " : ""));
125
126                 while (*p) {
127                         pb_log("%s ", *p);
128                         p++;
129                 }
130                 pb_log("\n");
131         } else
132                 pb_log("%s: %s%s\n", __func__, (dry_run ? "(dry-run) " : ""),
133                         cmd_argv[0]);
134
135         if (dry_run)
136                 return 0;
137
138         pid = fork();
139
140         if (pid == -1) {
141                 pb_log("%s: fork failed: %s\n", __func__, strerror(errno));
142                 return -1;
143         }
144
145
146         if (pid == 0) {
147                 int log = fileno(pb_log_get_stream());
148
149                 /* Redirect child output to log. */
150
151                 status = dup2(log, STDOUT_FILENO);
152                 assert(status != -1);
153                 status = dup2(log, STDERR_FILENO);
154                 assert(status != -1);
155
156                 execvp(cmd_argv[0], (char *const *)cmd_argv);
157                 pb_log("%s: exec failed: %s\n", __func__, strerror(errno));
158                 exit(EXIT_FAILURE);
159         }
160
161         if (!wait && !waitpid(pid, &status, WNOHANG))
162                 return 0;
163
164         if (waitpid(pid, &status, 0) == -1) {
165                 pb_log("%s: waitpid failed: %s\n", __func__,
166                                 strerror(errno));
167                 return -1;
168         }
169
170         if (do_debug && WIFSIGNALED(status) && WTERMSIG(status) == SIGINT)
171                 pb_log("%s: signaled\n", __func__);
172
173         if (!WIFEXITED(status)) {
174                 pb_log("%s: %s failed\n", __func__, cmd_argv[0]);
175                 return -1;
176         }
177
178         if (WEXITSTATUS(status))
179                 pb_log("%s: WEXITSTATUS %d\n", __func__, WEXITSTATUS(status));
180
181         return WEXITSTATUS(status);
182 }