aboutsummaryrefslogtreecommitdiff
path: root/runit
diff options
context:
space:
mode:
Diffstat (limited to 'runit')
-rw-r--r--runit/runsv.c29
-rw-r--r--runit/svlogd.c8
2 files changed, 23 insertions, 14 deletions
diff --git a/runit/runsv.c b/runit/runsv.c
index 61ea240ff..7fad563f5 100644
--- a/runit/runsv.c
+++ b/runit/runsv.c
@@ -149,11 +149,15 @@ static void warn_cannot(const char *m)
149 warn2_cannot(m, ""); 149 warn2_cannot(m, "");
150} 150}
151 151
152/* SIGCHLD/TERM handlers are reentrancy-safe because they are unmasked
153 * only over poll() call, not over memory allocations
154 * or printouts. Do not need to save/restore errno either,
155 * as poll() error is not checked there.
156 */
152static void s_child(int sig_no UNUSED_PARAM) 157static void s_child(int sig_no UNUSED_PARAM)
153{ 158{
154 write(selfpipe.wr, "", 1); 159 write(selfpipe.wr, "", 1);
155} 160}
156
157static void s_term(int sig_no UNUSED_PARAM) 161static void s_term(int sig_no UNUSED_PARAM)
158{ 162{
159 sigterm = 1; 163 sigterm = 1;
@@ -380,14 +384,14 @@ static void startservice(struct svdir *s)
380 xdup2(logpipe.wr, 1); 384 xdup2(logpipe.wr, 1);
381 } 385 }
382 } 386 }
383 /* Non-ignored signals revert to SIG_DFL on exec anyway. 387 /* Non-ignored signals revert to SIG_DFL on exec.
384 * But we can get signals BEFORE execl(), this is unlikely 388 * But we can get signals BEFORE execl(), unlikely as that may be.
385 * but wouldn't be good... 389 * SIGCHLD is safe (would merely write to selfpipe),
390 * but SIGTERM would set sigterm = 1 (with vfork, we affect parent).
391 * Avoid that.
386 */ 392 */
387 /*bb_signals(0 393 /*signal(SIGCHLD, SIG_DFL);*/
388 + (1 << SIGCHLD) 394 signal(SIGTERM, SIG_DFL);
389 + (1 << SIGTERM)
390 , SIG_DFL);*/
391 sig_unblock(SIGCHLD); 395 sig_unblock(SIGCHLD);
392 sig_unblock(SIGTERM); 396 sig_unblock(SIGTERM);
393 execv(arg[0], (char**) arg); 397 execv(arg[0], (char**) arg);
@@ -514,9 +518,13 @@ int runsv_main(int argc UNUSED_PARAM, char **argv)
514 ndelay_on(selfpipe.wr); 518 ndelay_on(selfpipe.wr);
515 519
516 sig_block(SIGCHLD); 520 sig_block(SIGCHLD);
517 bb_signals_recursive_norestart(1 << SIGCHLD, s_child);
518 sig_block(SIGTERM); 521 sig_block(SIGTERM);
519 bb_signals_recursive_norestart(1 << SIGTERM, s_term); 522 /* No particular reason why we don't set SA_RESTART
523 * (poll() wouldn't restart regardless of that flag),
524 * we just follow what runit-2.1.2 does:
525 */
526 bb_signals_norestart(1 << SIGCHLD, s_child);
527 bb_signals_norestart(1 << SIGTERM, s_term);
520 528
521 xchdir(dir); 529 xchdir(dir);
522 /* bss: svd[0].pid = 0; */ 530 /* bss: svd[0].pid = 0; */
@@ -628,6 +636,7 @@ int runsv_main(int argc UNUSED_PARAM, char **argv)
628 sig_unblock(SIGTERM); 636 sig_unblock(SIGTERM);
629 sig_unblock(SIGCHLD); 637 sig_unblock(SIGCHLD);
630 poll(x, 2 + haslog, 3600*1000); 638 poll(x, 2 + haslog, 3600*1000);
639 /* NB: signal handlers can trash errno of poll() */
631 sig_block(SIGTERM); 640 sig_block(SIGTERM);
632 sig_block(SIGCHLD); 641 sig_block(SIGCHLD);
633 642
diff --git a/runit/svlogd.c b/runit/svlogd.c
index 4490492e3..02c305696 100644
--- a/runit/svlogd.c
+++ b/runit/svlogd.c
@@ -1111,10 +1111,10 @@ int svlogd_main(int argc, char **argv)
1111 sigaddset(&blocked_sigset, SIGALRM); 1111 sigaddset(&blocked_sigset, SIGALRM);
1112 sigaddset(&blocked_sigset, SIGHUP); 1112 sigaddset(&blocked_sigset, SIGHUP);
1113 sigprocmask(SIG_BLOCK, &blocked_sigset, NULL); 1113 sigprocmask(SIG_BLOCK, &blocked_sigset, NULL);
1114 bb_signals_recursive_norestart(1 << SIGTERM, sig_term_handler); 1114 bb_signals_norestart(1 << SIGTERM, sig_term_handler);
1115 bb_signals_recursive_norestart(1 << SIGCHLD, sig_child_handler); 1115 bb_signals_norestart(1 << SIGCHLD, sig_child_handler);
1116 bb_signals_recursive_norestart(1 << SIGALRM, sig_alarm_handler); 1116 bb_signals_norestart(1 << SIGALRM, sig_alarm_handler);
1117 bb_signals_recursive_norestart(1 << SIGHUP, sig_hangup_handler); 1117 bb_signals_norestart(1 << SIGHUP, sig_hangup_handler);
1118 1118
1119 /* Without timestamps, we don't have to print each line 1119 /* Without timestamps, we don't have to print each line
1120 * separately, so we can look for _last_ newline, not first, 1120 * separately, so we can look for _last_ newline, not first,