summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2014-02-09 16:10:17 +0000
committerColin Watson <cjwatson@debian.org>2015-11-29 17:26:21 +0000
commit28b42c7cc08dd3dbdc149281912a41ae65594301 (patch)
treec37558b6b593e1353fefbeb3bfda0c7a666d8a6c
parent820ff9bbc530c4f736c883caf4a773fa397ffacc (diff)
Support synchronisation with service supervisor using SIGSTOP
Author: Robie Basak <robie.basak@ubuntu.com> Forwarded: no Last-Update: 2014-04-14 Patch-Name: sigstop.patch
-rw-r--r--sshd.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/sshd.c b/sshd.c
index d9f519968..b345c9f9a 100644
--- a/sshd.c
+++ b/sshd.c
@@ -2042,6 +2042,16 @@ main(int ac, char **av)
2042 } 2042 }
2043 } 2043 }
2044 2044
2045 if (getenv("SSH_SIGSTOP")) {
2046 /* Tell service supervisor that we are ready. */
2047 kill(getpid(), SIGSTOP);
2048 /* The service supervisor only ever expects a single
2049 * STOP signal, so do not ever signal it again, even
2050 * in the case of a re-exec or future children.
2051 */
2052 unsetenv("SSH_SIGSTOP");
2053 }
2054
2045 /* Accept a connection and return in a forked child */ 2055 /* Accept a connection and return in a forked child */
2046 server_accept_loop(&sock_in, &sock_out, 2056 server_accept_loop(&sock_in, &sock_out,
2047 &newsock, config_s); 2057 &newsock, config_s);