1 #include <unistd.h>
2 #include <stdlib.h>
3 #include <signal.h>
4 #include <sys/wait.h>
5 #include <spawn.h>
6 #include <errno.h>
7 #include <unsupported_api.h>
8 #include "pthread_impl.h"
9
10 extern char **__environ;
11
system(const char * cmd)12 int system(const char *cmd)
13 {
14 pid_t pid;
15 sigset_t old, reset;
16 struct sigaction sa = { .sa_handler = SIG_IGN }, oldint, oldquit;
17 int status = -1, ret;
18 posix_spawnattr_t attr;
19
20 unsupported_api(__FUNCTION__);
21
22 pthread_testcancel();
23
24 if (!cmd) return 1;
25
26 sigaction(SIGINT, &sa, &oldint);
27 sigaction(SIGQUIT, &sa, &oldquit);
28 sigaddset(&sa.sa_mask, SIGCHLD);
29 sigprocmask(SIG_BLOCK, &sa.sa_mask, &old);
30
31 sigemptyset(&reset);
32 if (oldint.sa_handler != SIG_IGN) sigaddset(&reset, SIGINT);
33 if (oldquit.sa_handler != SIG_IGN) sigaddset(&reset, SIGQUIT);
34 posix_spawnattr_init(&attr);
35 posix_spawnattr_setsigmask(&attr, &old);
36 posix_spawnattr_setsigdefault(&attr, &reset);
37 posix_spawnattr_setflags(&attr, POSIX_SPAWN_SETSIGDEF|POSIX_SPAWN_SETSIGMASK);
38 ret = posix_spawn(&pid, "/bin/sh", 0, &attr,
39 (char *[]){"sh", "-c", (char *)cmd, 0}, __environ);
40 posix_spawnattr_destroy(&attr);
41
42 if (!ret) while (waitpid(pid, &status, 0)<0 && errno == EINTR);
43 sigaction(SIGINT, &oldint, NULL);
44 sigaction(SIGQUIT, &oldquit, NULL);
45 sigprocmask(SIG_SETMASK, &old, NULL);
46
47 if (ret) errno = ret;
48 return status;
49 }
50