aboutsummaryrefslogtreecommitdiff
blob: b4af65126858d23a1f4bd362e433a097c64572e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
 * utility funcs
 *
 * Copyright 2005-2014 Gentoo Foundation
 * Distributed under the terms of the GNU General Public License v2
 */

#include <stdlib.h>
#include <sys/wait.h>

static void xsystem(const char *command)
{
	if (unlikely(system(command)))
		errp("system(%s) failed", command);
}

static void xsystembash(const char *command, int cwd)
{
	pid_t p = vfork();
	int status;

	switch (p) {
	case 0: /* child */
		if (cwd != AT_FDCWD)
			if (fchdir(cwd)) {
				/* fchdir works with O_PATH starting w/linux-3.5 */
				if (errno == EBADF) {
					char *path;
					xasprintf(&path, "/proc/self/fd/%i", cwd);
					if (chdir(path))
						errp("chdir(%s) failed", path);
				} else
					errp("fchdir(%i) failed", cwd);
			}
		execl("/bin/bash", "bash", "--norc", "--noprofile", "-c", command, NULL);
		/* Hrm, still here ?  Maybe no bash ... */
		_exit(execl("/bin/sh", "sh", "-c", command, NULL));

	default: /* parent */
		waitpid(p, &status, 0);
		if (WIFSIGNALED(status)) {
			err("phase crashed with signal %i: %s", WTERMSIG(status),
			    strsignal(WTERMSIG(status)));
		} else if (WIFEXITED(status)) {
			if (WEXITSTATUS(status) == 0)
				return;
			else
				err("phase exited %i", WEXITSTATUS(status));
		}
		/* fall through */

	case -1: /* fucked */
		errp("xsystembash(%s) failed", command);
	}
}