2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; version 2 of the License.
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
11 * You should have received a copy of the GNU General Public License
12 * along with this program; if not, write to the Free Software
13 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <process/process.h>
23 #include <talloc/talloc.h>
24 #include <waiter/waiter.h>
28 struct waitset *waitset;
29 struct list async_list;
31 struct waiter *sigchld_waiter;
35 /* Internal data type for process handling
37 * Allocation: these structures may have multiple references:
38 * - from the original ctx pointer
39 * - due to inclusion in async_list
40 * - due to a currently-registered waiter
45 /* prevent talloc_free(process) from working */
48 struct process process;
49 struct list_item async_list;
51 struct waiter *stdout_waiter;
56 static struct procset *procset;
58 static struct process_info *get_info(struct process *process)
60 return container_of(process, struct process_info, process);
63 /* Read as much as possible into the currently-allocated stdout buffer, and
64 * possibly realloc it for the next read */
65 static int process_read_stdout_once(struct process_info *procinfo)
67 struct process *process = &procinfo->process;
70 assert(process->keep_stdout);
72 fd = procinfo->stdout_pipe[0];
74 max_len = procinfo->stdout_buf_len - process->stdout_len - 1;
76 rc = read(fd, process->stdout_buf + process->stdout_len, max_len);
80 process->stdout_len += rc;
81 if (process->stdout_len == procinfo->stdout_buf_len - 1) {
82 procinfo->stdout_buf_len *= 2;
83 process->stdout_buf = talloc_realloc(procinfo,
84 process->stdout_buf, char,
85 procinfo->stdout_buf_len);
91 static int process_setup_stdout_pipe(struct process_info *procinfo)
95 if (!procinfo->process.keep_stdout)
98 procinfo->stdout_buf_len = 4096;
99 procinfo->process.stdout_len = 0;
100 procinfo->process.stdout_buf = talloc_array(procinfo, char,
101 procinfo->stdout_buf_len);
103 rc = pipe(procinfo->stdout_pipe);
105 pb_log("pipe failed");
111 static void process_setup_stdout_parent(struct process_info *procinfo)
113 if (!procinfo->process.keep_stdout)
116 close(procinfo->stdout_pipe[1]);
119 static void process_setup_stdout_child(struct process_info *procinfo)
121 int log = fileno(pb_log_get_stream());
123 if (procinfo->process.keep_stdout)
124 dup2(procinfo->stdout_pipe[1], STDOUT_FILENO);
126 dup2(log, STDOUT_FILENO);
128 dup2(log, STDERR_FILENO);
131 static void process_finish_stdout(struct process_info *procinfo)
133 close(procinfo->stdout_pipe[0]);
134 procinfo->process.stdout_buf[procinfo->process.stdout_len] = '\0';
137 static int process_read_stdout(struct process_info *procinfo)
141 if (!procinfo->process.keep_stdout)
145 rc = process_read_stdout_once(procinfo);
148 process_finish_stdout(procinfo);
150 return rc < 0 ? rc : 0;
153 static int process_stdout_cb(void *arg)
155 struct process_info *procinfo = arg;
158 rc = process_read_stdout_once(procinfo);
160 /* if we're going to signal to the waitset that we're done (ie, non-zero
161 * return value), then the waiters will remove us, so we drop the
164 talloc_unlink(procset, procinfo);
165 procinfo->stdout_waiter = NULL;
174 static void sigchld_sigaction(int signo, siginfo_t *info,
175 void *arg __attribute__((unused)))
180 if (signo != SIGCHLD)
185 rc = write(procset->sigchld_pipe[1], &pid, sizeof(pid));
186 if (rc != sizeof(pid))
187 pb_log("%s: write failed: %s\n", __func__, strerror(errno));
190 static int sigchld_pipe_event(void *arg)
192 struct process_info *procinfo;
193 struct procset *procset = arg;
194 struct process *process;
197 rc = read(procset->sigchld_pipe[0], &pid, sizeof(pid));
198 if (rc != sizeof(pid))
202 list_for_each_entry(&procset->async_list, procinfo, async_list) {
203 if (procinfo->process.pid == pid) {
204 process = &procinfo->process;
209 /* We'll receive SIGCHLD for synchronous processes too; just ignore */
213 rc = waitpid(process->pid, &process->exit_status, WNOHANG);
215 /* if the process is still running, ignore the event. We leave
216 * the process in async_list so we can manage the final signal */
220 /* ensure we have all of the child's stdout */
221 process_read_stdout(procinfo);
223 if (process->exit_cb)
224 process->exit_cb(process);
226 list_remove(&procinfo->async_list);
227 talloc_unlink(procset, procinfo);
232 static int process_fini(void *p)
234 struct procset *procset = p;
237 memset(&sa, 0, sizeof(sa));
238 sa.sa_handler = SIG_DFL;
240 sigaction(SIGCHLD, &sa, NULL);
242 waiter_remove(procset->sigchld_waiter);
244 close(procset->sigchld_pipe[0]);
245 close(procset->sigchld_pipe[1]);
249 struct procset *process_init(void *ctx, struct waitset *set, bool dry_run)
254 procset = talloc(ctx, struct procset);
255 procset->waitset = set;
256 procset->dry_run = dry_run;
257 list_init(&procset->async_list);
259 rc = pipe(procset->sigchld_pipe);
261 pb_log("%s: pipe() failed: %s\n", __func__, strerror(errno));
265 procset->sigchld_waiter = waiter_register_io(set,
266 procset->sigchld_pipe[0], WAIT_IN,
267 sigchld_pipe_event, procset);
268 if (!procset->sigchld_waiter)
271 memset(&sa, 0, sizeof(sa));
272 sa.sa_sigaction = sigchld_sigaction;
273 sa.sa_flags = SA_SIGINFO | SA_NOCLDSTOP;
275 rc = sigaction(SIGCHLD, &sa, NULL);
277 pb_log("%s: sigaction() failed: %s\n", __func__,
282 talloc_set_destructor(procset, process_fini);
287 waiter_remove(procset->sigchld_waiter);
289 close(procset->sigchld_pipe[0]);
290 close(procset->sigchld_pipe[1]);
292 talloc_free(procset);
296 struct process *process_create(void *ctx)
298 struct process_info *info = talloc_zero(ctx, struct process_info);
299 info->orig_ctx = ctx;
300 return &info->process;
303 void process_release(struct process *process)
305 struct process_info *info = get_info(process);
306 talloc_unlink(info->orig_ctx, info);
309 static int process_run_common(struct process_info *procinfo)
311 struct process *process = &procinfo->process;
317 logmsg = talloc_asprintf(procinfo, " exe: %s\n argv:", process->path);
318 for (i = 0, arg = process->argv[i]; arg; i++, arg = process->argv[i])
319 logmsg = talloc_asprintf_append(logmsg, " '%s'", arg);
321 pb_log("Running command:\n%s\n", logmsg);
323 rc = process_setup_stdout_pipe(procinfo);
329 pb_log("%s: fork failed: %s\n", __func__, strerror(errno));
334 process_setup_stdout_child(procinfo);
335 if (procset->dry_run)
337 execvp(process->path, (char * const *)process->argv);
341 process_setup_stdout_parent(procinfo);
347 int process_run_sync(struct process *process)
349 struct process_info *procinfo = get_info(process);
352 rc = process_run_common(procinfo);
356 process_read_stdout(procinfo);
359 rc = waitpid(process->pid, &process->exit_status, 0);
365 pb_log("%s: waitpid failed: %s\n", __func__, strerror(errno));
372 int process_run_async(struct process *process)
374 struct process_info *procinfo = get_info(process);
377 rc = process_run_common(procinfo);
381 if (process->keep_stdout) {
382 procinfo->stdout_waiter = waiter_register_io(procset->waitset,
383 procinfo->stdout_pipe[0],
384 WAIT_IN, process_stdout_cb,
386 talloc_reference(procset, procinfo);
389 list_add(&procset->async_list, &procinfo->async_list);
390 talloc_reference(procset, procinfo);
395 void process_stop_async(struct process *process)
397 kill(process->pid, SIGTERM);
400 int process_run_simple_argv(void *ctx, const char *argv[])
402 struct process *process;
405 process = process_create(ctx);
407 process->path = argv[0];
408 process->argv = argv;
410 rc = process_run_sync(process);
413 rc = process->exit_status;
415 process_release(process);
420 int process_run_simple(void *ctx, const char *name, ...)
422 int rc, i, n_argv = 1;
427 while (va_arg(ap, char *))
431 argv = talloc_array(ctx, const char *, n_argv + 1);
435 for (i = 1; i < n_argv; i++)
436 argv[i] = va_arg(ap, const char *);
441 rc = process_run_simple_argv(ctx, argv);