diff options
author | Colin Watson <cjwatson@debian.org> | 2014-02-09 16:10:17 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2016-01-04 15:07:01 +0000 |
commit | bf533d857451efe2f9abc6fb96e1c9c93ff1a7ee (patch) | |
tree | 70b049d8db71add712dfbc210d9993b1094c387b | |
parent | a9bfb2fba2b1ec9ebeca20550cbccf2499d42461 (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.c | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -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); |