diff options
author | Marien Zwart <marienz@google.com> | 2018-08-01 23:21:29 +1000 |
---|---|---|
committer | Marien Zwart <marienz@google.com> | 2018-08-02 21:31:34 +1000 |
commit | 7d8413d9628ed493790454410a28b9f0c41444e6 (patch) | |
tree | 30f1998285da49fdf3bfe37b29c8c046b8095071 /sway/config | |
parent | d6095588a143710d25be47577ea65517770e7a74 (diff) |
Reset signal mask after fork
wlroots uses wl_event_loop_add_signal to handle SIGUSR1 from Xwayland.
wl_event_loop_add_signal works by masking the signal and receiving it from a
signalfd. The signal mask is preserved across fork and exec, so subprocesses
spawned by Sway start with SIGUSR1 masked. Most subprocesses do not expect this
and never unmask the signal, resulting in missing functionality or unexpected
behavior for processes that use SIGUSR1 (such as i3status).
Fix this by unmasking all signals between fork and exec.
Diffstat (limited to 'sway/config')
-rw-r--r-- | sway/config/bar.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sway/config/bar.c b/sway/config/bar.c index 3a74331e..ae9383d6 100644 --- a/sway/config/bar.c +++ b/sway/config/bar.c @@ -10,6 +10,7 @@ #include <sys/stat.h> #include <signal.h> #include <strings.h> +#include <signal.h> #include "sway/config.h" #include "stringop.h" #include "list.h" @@ -175,6 +176,9 @@ void invoke_swaybar(struct bar_config *bar) { if (bar->pid == 0) { setpgid(0, 0); close(filedes[0]); + sigset_t set; + sigemptyset(&set); + sigprocmask(SIG_SETMASK, &set, NULL); // run custom swaybar size_t len = snprintf(NULL, 0, "%s -b %s", |