diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-06-04 14:39:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-04 14:39:39 +0200 |
commit | db1e42246145acd03075d839b8fc6bfc3b8fb18d (patch) | |
tree | a6ec4d52038a3ac3a8fb3f2eba2881d417432ee2 | |
parent | 88eefaecb618f4511fb3f2949d2dda913209cbcd (diff) | |
parent | 6b0e1a3091d412273cf814bffb655c6e10073f0e (diff) | |
download | podman-db1e42246145acd03075d839b8fc6bfc3b8fb18d.tar.gz podman-db1e42246145acd03075d839b8fc6bfc3b8fb18d.tar.bz2 podman-db1e42246145acd03075d839b8fc6bfc3b8fb18d.zip |
Merge pull request #3251 from giuseppe/join-block-signals
rootless: block signals on re-exec
-rw-r--r-- | pkg/rootless/rootless_linux.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/pkg/rootless/rootless_linux.c b/pkg/rootless/rootless_linux.c index a2425c83e..eb62d55e9 100644 --- a/pkg/rootless/rootless_linux.c +++ b/pkg/rootless/rootless_linux.c @@ -489,6 +489,7 @@ reexec_userns_join (int userns, int mountns, char *pause_pid_file_path) char **argv; int pid; char *cwd = getcwd (NULL, 0); + sigset_t sigset, oldsigset; if (cwd == NULL) { @@ -522,6 +523,22 @@ reexec_userns_join (int userns, int mountns, char *pause_pid_file_path) return pid; } + if (sigfillset (&sigset) < 0) + { + fprintf (stderr, "cannot fill sigset: %s\n", strerror (errno)); + _exit (EXIT_FAILURE); + } + if (sigdelset (&sigset, SIGCHLD) < 0) + { + fprintf (stderr, "cannot sigdelset(SIGCHLD): %s\n", strerror (errno)); + _exit (EXIT_FAILURE); + } + if (sigprocmask (SIG_BLOCK, &sigset, &oldsigset) < 0) + { + fprintf (stderr, "cannot block signals: %s\n", strerror (errno)); + _exit (EXIT_FAILURE); + } + setenv ("_CONTAINERS_USERNS_CONFIGURED", "init", 1); setenv ("_CONTAINERS_ROOTLESS_UID", uid, 1); setenv ("_CONTAINERS_ROOTLESS_GID", gid, 1); @@ -570,6 +587,11 @@ reexec_userns_join (int userns, int mountns, char *pause_pid_file_path) /* We ignore errors here as we didn't create the namespace anyway. */ create_pause_process (pause_pid_file_path, argv); } + if (sigprocmask (SIG_SETMASK, &oldsigset, NULL) < 0) + { + fprintf (stderr, "cannot block signals: %s\n", strerror (errno)); + _exit (EXIT_FAILURE); + } execvp (argv[0], argv); |