]> andersk Git - openssh.git/blob - sshd.c
- (dtucker) [configure.ac openbsd-compat/misc.c [openbsd-compat/misc.h]
[openssh.git] / sshd.c
1 /*
2  * Author: Tatu Ylonen <ylo@cs.hut.fi>
3  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4  *                    All rights reserved
5  * This program is the ssh daemon.  It listens for connections from clients,
6  * and performs authentication, executes use commands or shell, and forwards
7  * information to/from the application to the user client over an encrypted
8  * connection.  This can also handle forwarding of X11, TCP/IP, and
9  * authentication agent connections.
10  *
11  * As far as I am concerned, the code I have written for this software
12  * can be used freely for any purpose.  Any derived versions of this
13  * software must be clearly marked as such, and if the derived work is
14  * incompatible with the protocol description in the RFC file, it must be
15  * called by a name other than "ssh" or "Secure Shell".
16  *
17  * SSH2 implementation:
18  * Privilege Separation:
19  *
20  * Copyright (c) 2000, 2001, 2002 Markus Friedl.  All rights reserved.
21  * Copyright (c) 2002 Niels Provos.  All rights reserved.
22  *
23  * Redistribution and use in source and binary forms, with or without
24  * modification, are permitted provided that the following conditions
25  * are met:
26  * 1. Redistributions of source code must retain the above copyright
27  *    notice, this list of conditions and the following disclaimer.
28  * 2. Redistributions in binary form must reproduce the above copyright
29  *    notice, this list of conditions and the following disclaimer in the
30  *    documentation and/or other materials provided with the distribution.
31  *
32  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
33  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
34  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
35  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
36  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
37  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
38  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
39  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
40  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
41  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
42  */
43
44 #include "includes.h"
45 RCSID("$OpenBSD: sshd.c,v 1.295 2004/06/25 01:16:09 djm Exp $");
46
47 #include <openssl/dh.h>
48 #include <openssl/bn.h>
49 #include <openssl/md5.h>
50 #include <openssl/rand.h>
51 #ifdef HAVE_SECUREWARE
52 #include <sys/security.h>
53 #include <prot.h>
54 #endif
55
56 #include "ssh.h"
57 #include "ssh1.h"
58 #include "ssh2.h"
59 #include "xmalloc.h"
60 #include "rsa.h"
61 #include "sshpty.h"
62 #include "packet.h"
63 #include "log.h"
64 #include "servconf.h"
65 #include "uidswap.h"
66 #include "compat.h"
67 #include "buffer.h"
68 #include "bufaux.h"
69 #include "cipher.h"
70 #include "kex.h"
71 #include "key.h"
72 #include "dh.h"
73 #include "myproposal.h"
74 #include "authfile.h"
75 #include "pathnames.h"
76 #include "atomicio.h"
77 #include "canohost.h"
78 #include "auth.h"
79 #include "misc.h"
80 #include "msg.h"
81 #include "dispatch.h"
82 #include "channels.h"
83 #include "session.h"
84 #include "monitor_mm.h"
85 #include "monitor.h"
86 #include "monitor_wrap.h"
87 #include "monitor_fdpass.h"
88
89 #ifdef LIBWRAP
90 #include <tcpd.h>
91 #include <syslog.h>
92 int allow_severity = LOG_INFO;
93 int deny_severity = LOG_WARNING;
94 #endif /* LIBWRAP */
95
96 #ifndef O_NOCTTY
97 #define O_NOCTTY        0
98 #endif
99
100 #ifdef HAVE___PROGNAME
101 extern char *__progname;
102 #else
103 char *__progname;
104 #endif
105
106 /* Server configuration options. */
107 ServerOptions options;
108
109 /* Name of the server configuration file. */
110 char *config_file_name = _PATH_SERVER_CONFIG_FILE;
111
112 /*
113  * Flag indicating whether IPv4 or IPv6.  This can be set on the command line.
114  * Default value is AF_UNSPEC means both IPv4 and IPv6.
115  */
116 int IPv4or6 = AF_UNSPEC;
117
118 /*
119  * Debug mode flag.  This can be set on the command line.  If debug
120  * mode is enabled, extra debugging output will be sent to the system
121  * log, the daemon will not go to background, and will exit after processing
122  * the first connection.
123  */
124 int debug_flag = 0;
125
126 /* Flag indicating that the daemon should only test the configuration and keys. */
127 int test_flag = 0;
128
129 /* Flag indicating that the daemon is being started from inetd. */
130 int inetd_flag = 0;
131
132 /* Flag indicating that sshd should not detach and become a daemon. */
133 int no_daemon_flag = 0;
134
135 /* debug goes to stderr unless inetd_flag is set */
136 int log_stderr = 0;
137
138 /* Saved arguments to main(). */
139 char **saved_argv;
140 int saved_argc;
141
142 /* re-exec */
143 int rexeced_flag = 0;
144 int rexec_flag = 1;
145 int rexec_argc = 0;
146 char **rexec_argv;
147
148 /*
149  * The sockets that the server is listening; this is used in the SIGHUP
150  * signal handler.
151  */
152 #define MAX_LISTEN_SOCKS        16
153 int listen_socks[MAX_LISTEN_SOCKS];
154 int num_listen_socks = 0;
155
156 /*
157  * the client's version string, passed by sshd2 in compat mode. if != NULL,
158  * sshd will skip the version-number exchange
159  */
160 char *client_version_string = NULL;
161 char *server_version_string = NULL;
162
163 /* for rekeying XXX fixme */
164 Kex *xxx_kex;
165
166 /*
167  * Any really sensitive data in the application is contained in this
168  * structure. The idea is that this structure could be locked into memory so
169  * that the pages do not get written into swap.  However, there are some
170  * problems. The private key contains BIGNUMs, and we do not (in principle)
171  * have access to the internals of them, and locking just the structure is
172  * not very useful.  Currently, memory locking is not implemented.
173  */
174 struct {
175         Key     *server_key;            /* ephemeral server key */
176         Key     *ssh1_host_key;         /* ssh1 host key */
177         Key     **host_keys;            /* all private host keys */
178         int     have_ssh1_key;
179         int     have_ssh2_key;
180         u_char  ssh1_cookie[SSH_SESSION_KEY_LENGTH];
181 } sensitive_data;
182
183 /*
184  * Flag indicating whether the RSA server key needs to be regenerated.
185  * Is set in the SIGALRM handler and cleared when the key is regenerated.
186  */
187 static volatile sig_atomic_t key_do_regen = 0;
188
189 /* This is set to true when a signal is received. */
190 static volatile sig_atomic_t received_sighup = 0;
191 static volatile sig_atomic_t received_sigterm = 0;
192
193 /* session identifier, used by RSA-auth */
194 u_char session_id[16];
195
196 /* same for ssh2 */
197 u_char *session_id2 = NULL;
198 u_int session_id2_len = 0;
199
200 /* record remote hostname or ip */
201 u_int utmp_len = MAXHOSTNAMELEN;
202
203 /* options.max_startup sized array of fd ints */
204 int *startup_pipes = NULL;
205 int startup_pipe;               /* in child */
206
207 /* variables used for privilege separation */
208 int use_privsep;
209 struct monitor *pmonitor = NULL;
210
211 /* message to be displayed after login */
212 Buffer loginmsg;
213
214 /* global authentication context */
215 Authctxt *the_authctxt = NULL;
216
217 /* Prototypes for various functions defined later in this file. */
218 void destroy_sensitive_data(void);
219 void demote_sensitive_data(void);
220
221 static void do_ssh1_kex(void);
222 static void do_ssh2_kex(void);
223
224 /*
225  * Close all listening sockets
226  */
227 static void
228 close_listen_socks(void)
229 {
230         int i;
231
232         for (i = 0; i < num_listen_socks; i++)
233                 close(listen_socks[i]);
234         num_listen_socks = -1;
235 }
236
237 static void
238 close_startup_pipes(void)
239 {
240         int i;
241
242         if (startup_pipes)
243                 for (i = 0; i < options.max_startups; i++)
244                         if (startup_pipes[i] != -1)
245                                 close(startup_pipes[i]);
246 }
247
248 /*
249  * Signal handler for SIGHUP.  Sshd execs itself when it receives SIGHUP;
250  * the effect is to reread the configuration file (and to regenerate
251  * the server key).
252  */
253 static void
254 sighup_handler(int sig)
255 {
256         int save_errno = errno;
257
258         received_sighup = 1;
259         signal(SIGHUP, sighup_handler);
260         errno = save_errno;
261 }
262
263 /*
264  * Called from the main program after receiving SIGHUP.
265  * Restarts the server.
266  */
267 static void
268 sighup_restart(void)
269 {
270         logit("Received SIGHUP; restarting.");
271         close_listen_socks();
272         close_startup_pipes();
273         execv(saved_argv[0], saved_argv);
274         logit("RESTART FAILED: av[0]='%.100s', error: %.100s.", saved_argv[0],
275             strerror(errno));
276         exit(1);
277 }
278
279 /*
280  * Generic signal handler for terminating signals in the master daemon.
281  */
282 static void
283 sigterm_handler(int sig)
284 {
285         received_sigterm = sig;
286 }
287
288 /*
289  * SIGCHLD handler.  This is called whenever a child dies.  This will then
290  * reap any zombies left by exited children.
291  */
292 static void
293 main_sigchld_handler(int sig)
294 {
295         int save_errno = errno;
296         pid_t pid;
297         int status;
298
299         while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
300             (pid < 0 && errno == EINTR))
301                 ;
302
303         signal(SIGCHLD, main_sigchld_handler);
304         errno = save_errno;
305 }
306
307 /*
308  * Signal handler for the alarm after the login grace period has expired.
309  */
310 static void
311 grace_alarm_handler(int sig)
312 {
313         /* XXX no idea how fix this signal handler */
314
315         if (use_privsep && pmonitor != NULL && pmonitor->m_pid > 0)
316                 kill(pmonitor->m_pid, SIGALRM);
317
318         /* Log error and exit. */
319         fatal("Timeout before authentication for %s", get_remote_ipaddr());
320 }
321
322 /*
323  * Signal handler for the key regeneration alarm.  Note that this
324  * alarm only occurs in the daemon waiting for connections, and it does not
325  * do anything with the private key or random state before forking.
326  * Thus there should be no concurrency control/asynchronous execution
327  * problems.
328  */
329 static void
330 generate_ephemeral_server_key(void)
331 {
332         u_int32_t rnd = 0;
333         int i;
334
335         verbose("Generating %s%d bit RSA key.",
336             sensitive_data.server_key ? "new " : "", options.server_key_bits);
337         if (sensitive_data.server_key != NULL)
338                 key_free(sensitive_data.server_key);
339         sensitive_data.server_key = key_generate(KEY_RSA1,
340             options.server_key_bits);
341         verbose("RSA key generation complete.");
342
343         for (i = 0; i < SSH_SESSION_KEY_LENGTH; i++) {
344                 if (i % 4 == 0)
345                         rnd = arc4random();
346                 sensitive_data.ssh1_cookie[i] = rnd & 0xff;
347                 rnd >>= 8;
348         }
349         arc4random_stir();
350 }
351
352 static void
353 key_regeneration_alarm(int sig)
354 {
355         int save_errno = errno;
356
357         signal(SIGALRM, SIG_DFL);
358         errno = save_errno;
359         key_do_regen = 1;
360 }
361
362 static void
363 sshd_exchange_identification(int sock_in, int sock_out)
364 {
365         int i, mismatch;
366         int remote_major, remote_minor;
367         int major, minor;
368         char *s;
369         char buf[256];                  /* Must not be larger than remote_version. */
370         char remote_version[256];       /* Must be at least as big as buf. */
371
372         if ((options.protocol & SSH_PROTO_1) &&
373             (options.protocol & SSH_PROTO_2)) {
374                 major = PROTOCOL_MAJOR_1;
375                 minor = 99;
376         } else if (options.protocol & SSH_PROTO_2) {
377                 major = PROTOCOL_MAJOR_2;
378                 minor = PROTOCOL_MINOR_2;
379         } else {
380                 major = PROTOCOL_MAJOR_1;
381                 minor = PROTOCOL_MINOR_1;
382         }
383         snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n", major, minor, SSH_VERSION);
384         server_version_string = xstrdup(buf);
385
386         /* Send our protocol version identification. */
387         if (atomicio(vwrite, sock_out, server_version_string,
388             strlen(server_version_string))
389             != strlen(server_version_string)) {
390                 logit("Could not write ident string to %s", get_remote_ipaddr());
391                 cleanup_exit(255);
392         }
393
394         /* Read other sides version identification. */
395         memset(buf, 0, sizeof(buf));
396         for (i = 0; i < sizeof(buf) - 1; i++) {
397                 if (atomicio(read, sock_in, &buf[i], 1) != 1) {
398                         logit("Did not receive identification string from %s",
399                             get_remote_ipaddr());
400                         cleanup_exit(255);
401                 }
402                 if (buf[i] == '\r') {
403                         buf[i] = 0;
404                         /* Kludge for F-Secure Macintosh < 1.0.2 */
405                         if (i == 12 &&
406                             strncmp(buf, "SSH-1.5-W1.0", 12) == 0)
407                                 break;
408                         continue;
409                 }
410                 if (buf[i] == '\n') {
411                         buf[i] = 0;
412                         break;
413                 }
414         }
415         buf[sizeof(buf) - 1] = 0;
416         client_version_string = xstrdup(buf);
417
418         /*
419          * Check that the versions match.  In future this might accept
420          * several versions and set appropriate flags to handle them.
421          */
422         if (sscanf(client_version_string, "SSH-%d.%d-%[^\n]\n",
423             &remote_major, &remote_minor, remote_version) != 3) {
424                 s = "Protocol mismatch.\n";
425                 (void) atomicio(vwrite, sock_out, s, strlen(s));
426                 close(sock_in);
427                 close(sock_out);
428                 logit("Bad protocol version identification '%.100s' from %s",
429                     client_version_string, get_remote_ipaddr());
430                 cleanup_exit(255);
431         }
432         debug("Client protocol version %d.%d; client software version %.100s",
433             remote_major, remote_minor, remote_version);
434
435         compat_datafellows(remote_version);
436
437         if (datafellows & SSH_BUG_PROBE) {
438                 logit("probed from %s with %s.  Don't panic.",
439                     get_remote_ipaddr(), client_version_string);
440                 cleanup_exit(255);
441         }
442
443         if (datafellows & SSH_BUG_SCANNER) {
444                 logit("scanned from %s with %s.  Don't panic.",
445                     get_remote_ipaddr(), client_version_string);
446                 cleanup_exit(255);
447         }
448
449         mismatch = 0;
450         switch (remote_major) {
451         case 1:
452                 if (remote_minor == 99) {
453                         if (options.protocol & SSH_PROTO_2)
454                                 enable_compat20();
455                         else
456                                 mismatch = 1;
457                         break;
458                 }
459                 if (!(options.protocol & SSH_PROTO_1)) {
460                         mismatch = 1;
461                         break;
462                 }
463                 if (remote_minor < 3) {
464                         packet_disconnect("Your ssh version is too old and "
465                             "is no longer supported.  Please install a newer version.");
466                 } else if (remote_minor == 3) {
467                         /* note that this disables agent-forwarding */
468                         enable_compat13();
469                 }
470                 break;
471         case 2:
472                 if (options.protocol & SSH_PROTO_2) {
473                         enable_compat20();
474                         break;
475                 }
476                 /* FALLTHROUGH */
477         default:
478                 mismatch = 1;
479                 break;
480         }
481         chop(server_version_string);
482         debug("Local version string %.200s", server_version_string);
483
484         if (mismatch) {
485                 s = "Protocol major versions differ.\n";
486                 (void) atomicio(vwrite, sock_out, s, strlen(s));
487                 close(sock_in);
488                 close(sock_out);
489                 logit("Protocol major versions differ for %s: %.200s vs. %.200s",
490                     get_remote_ipaddr(),
491                     server_version_string, client_version_string);
492                 cleanup_exit(255);
493         }
494 }
495
496 /* Destroy the host and server keys.  They will no longer be needed. */
497 void
498 destroy_sensitive_data(void)
499 {
500         int i;
501
502         if (sensitive_data.server_key) {
503                 key_free(sensitive_data.server_key);
504                 sensitive_data.server_key = NULL;
505         }
506         for (i = 0; i < options.num_host_key_files; i++) {
507                 if (sensitive_data.host_keys[i]) {
508                         key_free(sensitive_data.host_keys[i]);
509                         sensitive_data.host_keys[i] = NULL;
510                 }
511         }
512         sensitive_data.ssh1_host_key = NULL;
513         memset(sensitive_data.ssh1_cookie, 0, SSH_SESSION_KEY_LENGTH);
514 }
515
516 /* Demote private to public keys for network child */
517 void
518 demote_sensitive_data(void)
519 {
520         Key *tmp;
521         int i;
522
523         if (sensitive_data.server_key) {
524                 tmp = key_demote(sensitive_data.server_key);
525                 key_free(sensitive_data.server_key);
526                 sensitive_data.server_key = tmp;
527         }
528
529         for (i = 0; i < options.num_host_key_files; i++) {
530                 if (sensitive_data.host_keys[i]) {
531                         tmp = key_demote(sensitive_data.host_keys[i]);
532                         key_free(sensitive_data.host_keys[i]);
533                         sensitive_data.host_keys[i] = tmp;
534                         if (tmp->type == KEY_RSA1)
535                                 sensitive_data.ssh1_host_key = tmp;
536                 }
537         }
538
539         /* We do not clear ssh1_host key and cookie.  XXX - Okay Niels? */
540 }
541
542 static void
543 privsep_preauth_child(void)
544 {
545         u_int32_t rnd[256];
546         gid_t gidset[1];
547         struct passwd *pw;
548         int i;
549
550         /* Enable challenge-response authentication for privilege separation */
551         privsep_challenge_enable();
552
553         for (i = 0; i < 256; i++)
554                 rnd[i] = arc4random();
555         RAND_seed(rnd, sizeof(rnd));
556
557         /* Demote the private keys to public keys. */
558         demote_sensitive_data();
559
560         if ((pw = getpwnam(SSH_PRIVSEP_USER)) == NULL)
561                 fatal("Privilege separation user %s does not exist",
562                     SSH_PRIVSEP_USER);
563         memset(pw->pw_passwd, 0, strlen(pw->pw_passwd));
564         endpwent();
565
566         /* Change our root directory */
567         if (chroot(_PATH_PRIVSEP_CHROOT_DIR) == -1)
568                 fatal("chroot(\"%s\"): %s", _PATH_PRIVSEP_CHROOT_DIR,
569                     strerror(errno));
570         if (chdir("/") == -1)
571                 fatal("chdir(\"/\"): %s", strerror(errno));
572
573         /* Drop our privileges */
574         debug3("privsep user:group %u:%u", (u_int)pw->pw_uid,
575             (u_int)pw->pw_gid);
576 #if 0
577         /* XXX not ready, too heavy after chroot */
578         do_setusercontext(pw);
579 #else
580         gidset[0] = pw->pw_gid;
581         if (setgroups(1, gidset) < 0)
582                 fatal("setgroups: %.100s", strerror(errno));
583         permanently_set_uid(pw);
584 #endif
585 }
586
587 static int
588 privsep_preauth(Authctxt *authctxt)
589 {
590         int status;
591         pid_t pid;
592
593         /* Set up unprivileged child process to deal with network data */
594         pmonitor = monitor_init();
595         /* Store a pointer to the kex for later rekeying */
596         pmonitor->m_pkex = &xxx_kex;
597
598         pid = fork();
599         if (pid == -1) {
600                 fatal("fork of unprivileged child failed");
601         } else if (pid != 0) {
602                 debug2("Network child is on pid %ld", (long)pid);
603
604                 close(pmonitor->m_recvfd);
605                 pmonitor->m_pid = pid;
606                 monitor_child_preauth(authctxt, pmonitor);
607                 close(pmonitor->m_sendfd);
608
609                 /* Sync memory */
610                 monitor_sync(pmonitor);
611
612                 /* Wait for the child's exit status */
613                 while (waitpid(pid, &status, 0) < 0)
614                         if (errno != EINTR)
615                                 break;
616                 return (1);
617         } else {
618                 /* child */
619
620                 close(pmonitor->m_sendfd);
621
622                 /* Demote the child */
623                 if (getuid() == 0 || geteuid() == 0)
624                         privsep_preauth_child();
625                 setproctitle("%s", "[net]");
626         }
627         return (0);
628 }
629
630 static void
631 privsep_postauth(Authctxt *authctxt)
632 {
633 #ifdef DISABLE_FD_PASSING
634         if (1) {
635 #else
636         if (authctxt->pw->pw_uid == 0 || options.use_login) {
637 #endif
638                 /* File descriptor passing is broken or root login */
639                 monitor_apply_keystate(pmonitor);
640                 use_privsep = 0;
641                 return;
642         }
643
644         /* Authentication complete */
645         alarm(0);
646         if (startup_pipe != -1) {
647                 close(startup_pipe);
648                 startup_pipe = -1;
649         }
650
651         /* New socket pair */
652         monitor_reinit(pmonitor);
653
654         pmonitor->m_pid = fork();
655         if (pmonitor->m_pid == -1)
656                 fatal("fork of unprivileged child failed");
657         else if (pmonitor->m_pid != 0) {
658                 debug2("User child is on pid %ld", (long)pmonitor->m_pid);
659                 close(pmonitor->m_recvfd);
660                 monitor_child_postauth(pmonitor);
661
662                 /* NEVERREACHED */
663                 exit(0);
664         }
665
666         close(pmonitor->m_sendfd);
667
668         /* Demote the private keys to public keys. */
669         demote_sensitive_data();
670
671         /* Drop privileges */
672         do_setusercontext(authctxt->pw);
673
674         /* It is safe now to apply the key state */
675         monitor_apply_keystate(pmonitor);
676 }
677
678 static char *
679 list_hostkey_types(void)
680 {
681         Buffer b;
682         const char *p;
683         char *ret;
684         int i;
685
686         buffer_init(&b);
687         for (i = 0; i < options.num_host_key_files; i++) {
688                 Key *key = sensitive_data.host_keys[i];
689                 if (key == NULL)
690                         continue;
691                 switch (key->type) {
692                 case KEY_RSA:
693                 case KEY_DSA:
694                         if (buffer_len(&b) > 0)
695                                 buffer_append(&b, ",", 1);
696                         p = key_ssh_name(key);
697                         buffer_append(&b, p, strlen(p));
698                         break;
699                 }
700         }
701         buffer_append(&b, "\0", 1);
702         ret = xstrdup(buffer_ptr(&b));
703         buffer_free(&b);
704         debug("list_hostkey_types: %s", ret);
705         return ret;
706 }
707
708 Key *
709 get_hostkey_by_type(int type)
710 {
711         int i;
712
713         for (i = 0; i < options.num_host_key_files; i++) {
714                 Key *key = sensitive_data.host_keys[i];
715                 if (key != NULL && key->type == type)
716                         return key;
717         }
718         return NULL;
719 }
720
721 Key *
722 get_hostkey_by_index(int ind)
723 {
724         if (ind < 0 || ind >= options.num_host_key_files)
725                 return (NULL);
726         return (sensitive_data.host_keys[ind]);
727 }
728
729 int
730 get_hostkey_index(Key *key)
731 {
732         int i;
733
734         for (i = 0; i < options.num_host_key_files; i++) {
735                 if (key == sensitive_data.host_keys[i])
736                         return (i);
737         }
738         return (-1);
739 }
740
741 /*
742  * returns 1 if connection should be dropped, 0 otherwise.
743  * dropping starts at connection #max_startups_begin with a probability
744  * of (max_startups_rate/100). the probability increases linearly until
745  * all connections are dropped for startups > max_startups
746  */
747 static int
748 drop_connection(int startups)
749 {
750         double p, r;
751
752         if (startups < options.max_startups_begin)
753                 return 0;
754         if (startups >= options.max_startups)
755                 return 1;
756         if (options.max_startups_rate == 100)
757                 return 1;
758
759         p  = 100 - options.max_startups_rate;
760         p *= startups - options.max_startups_begin;
761         p /= (double) (options.max_startups - options.max_startups_begin);
762         p += options.max_startups_rate;
763         p /= 100.0;
764         r = arc4random() / (double) UINT_MAX;
765
766         debug("drop_connection: p %g, r %g", p, r);
767         return (r < p) ? 1 : 0;
768 }
769
770 static void
771 usage(void)
772 {
773         fprintf(stderr, "%s, %s\n",
774             SSH_VERSION, SSLeay_version(SSLEAY_VERSION));
775         fprintf(stderr,
776 "usage: sshd [-46Ddeiqt] [-b bits] [-f config_file] [-g login_grace_time]\n"
777 "            [-h host_key_file] [-k key_gen_time] [-o option] [-p port] [-u len]\n"
778         );
779         exit(1);
780 }
781
782 static void
783 send_rexec_state(int fd, Buffer *conf)
784 {
785         Buffer m;
786
787         debug3("%s: entering fd = %d config len %d", __func__, fd,
788             buffer_len(conf));
789
790         /*
791          * Protocol from reexec master to child:
792          *      string  configuration
793          *      u_int   ephemeral_key_follows
794          *      bignum  e               (only if ephemeral_key_follows == 1)
795          *      bignum  n                       "
796          *      bignum  d                       "
797          *      bignum  iqmp                    "
798          *      bignum  p                       "
799          *      bignum  q                       "
800          */
801         buffer_init(&m);
802         buffer_put_cstring(&m, buffer_ptr(conf));
803
804         if (sensitive_data.server_key != NULL && 
805             sensitive_data.server_key->type == KEY_RSA1) {
806                 buffer_put_int(&m, 1);
807                 buffer_put_bignum(&m, sensitive_data.server_key->rsa->e);
808                 buffer_put_bignum(&m, sensitive_data.server_key->rsa->n);
809                 buffer_put_bignum(&m, sensitive_data.server_key->rsa->d);
810                 buffer_put_bignum(&m, sensitive_data.server_key->rsa->iqmp);
811                 buffer_put_bignum(&m, sensitive_data.server_key->rsa->p);
812                 buffer_put_bignum(&m, sensitive_data.server_key->rsa->q);
813         } else
814                 buffer_put_int(&m, 0);
815
816         if (ssh_msg_send(fd, 0, &m) == -1)
817                 fatal("%s: ssh_msg_send failed", __func__);
818
819         buffer_free(&m);
820
821         debug3("%s: done", __func__);
822 }
823
824 static void
825 recv_rexec_state(int fd, Buffer *conf)
826 {
827         Buffer m;
828         char *cp;
829         u_int len;
830
831         debug3("%s: entering fd = %d", __func__, fd);
832
833         buffer_init(&m);
834
835         if (ssh_msg_recv(fd, &m) == -1)
836                 fatal("%s: ssh_msg_recv failed", __func__);
837         if (buffer_get_char(&m) != 0)
838                 fatal("%s: rexec version mismatch", __func__);
839
840         cp = buffer_get_string(&m, &len);
841         if (conf != NULL)
842                 buffer_append(conf, cp, len + 1);
843         xfree(cp);
844
845         if (buffer_get_int(&m)) {
846                 if (sensitive_data.server_key != NULL)
847                         key_free(sensitive_data.server_key);
848                 sensitive_data.server_key = key_new_private(KEY_RSA1);
849                 buffer_get_bignum(&m, sensitive_data.server_key->rsa->e);
850                 buffer_get_bignum(&m, sensitive_data.server_key->rsa->n);
851                 buffer_get_bignum(&m, sensitive_data.server_key->rsa->d);
852                 buffer_get_bignum(&m, sensitive_data.server_key->rsa->iqmp);
853                 buffer_get_bignum(&m, sensitive_data.server_key->rsa->p);
854                 buffer_get_bignum(&m, sensitive_data.server_key->rsa->q);
855                 rsa_generate_additional_parameters(
856                     sensitive_data.server_key->rsa);
857         }
858         buffer_free(&m);
859
860         debug3("%s: done", __func__);
861 }
862
863 /*
864  * Main program for the daemon.
865  */
866 int
867 main(int ac, char **av)
868 {
869         extern char *optarg;
870         extern int optind;
871         int opt, sock_in = 0, sock_out = 0, newsock, j, i, fdsetsz, on = 1;
872         pid_t pid;
873         socklen_t fromlen;
874         fd_set *fdset;
875         struct sockaddr_storage from;
876         const char *remote_ip;
877         int remote_port;
878         FILE *f;
879         struct addrinfo *ai;
880         char ntop[NI_MAXHOST], strport[NI_MAXSERV];
881         char *line;
882         int listen_sock, maxfd;
883         int startup_p[2], config_s[2];
884         int startups = 0;
885         Key *key;
886         Authctxt *authctxt;
887         int ret, key_used = 0;
888         Buffer cfg;
889
890 #ifdef HAVE_SECUREWARE
891         (void)set_auth_parameters(ac, av);
892 #endif
893         __progname = ssh_get_progname(av[0]);
894         init_rng();
895
896         /* Save argv. Duplicate so setproctitle emulation doesn't clobber it */
897         saved_argc = ac;
898         saved_argv = xmalloc(sizeof(*saved_argv) * (ac + 1));
899         for (i = 0; i < ac; i++)
900                 saved_argv[i] = xstrdup(av[i]);
901         saved_argv[i] = NULL;
902
903 #ifndef HAVE_SETPROCTITLE
904         /* Prepare for later setproctitle emulation */
905         compat_init_setproctitle(ac, av);
906         av = saved_argv;
907 #endif
908
909         if (geteuid() == 0 && setgroups(0, NULL) == -1)
910                 debug("setgroups(): %.200s", strerror(errno));
911
912         /* Initialize configuration options to their default values. */
913         initialize_server_options(&options);
914
915         /* Parse command-line arguments. */
916         while ((opt = getopt(ac, av, "f:p:b:k:h:g:u:o:dDeiqrtQR46")) != -1) {
917                 switch (opt) {
918                 case '4':
919                         IPv4or6 = AF_INET;
920                         break;
921                 case '6':
922                         IPv4or6 = AF_INET6;
923                         break;
924                 case 'f':
925                         config_file_name = optarg;
926                         break;
927                 case 'd':
928                         if (debug_flag == 0) {
929                                 debug_flag = 1;
930                                 options.log_level = SYSLOG_LEVEL_DEBUG1;
931                         } else if (options.log_level < SYSLOG_LEVEL_DEBUG3)
932                                 options.log_level++;
933                         break;
934                 case 'D':
935                         no_daemon_flag = 1;
936                         break;
937                 case 'e':
938                         log_stderr = 1;
939                         break;
940                 case 'i':
941                         inetd_flag = 1;
942                         break;
943                 case 'r':
944                         rexec_flag = 0;
945                         break;
946                 case 'R':
947                         rexeced_flag = 1;
948                         inetd_flag = 1;
949                         break;
950                 case 'Q':
951                         /* ignored */
952                         break;
953                 case 'q':
954                         options.log_level = SYSLOG_LEVEL_QUIET;
955                         break;
956                 case 'b':
957                         options.server_key_bits = atoi(optarg);
958                         break;
959                 case 'p':
960                         options.ports_from_cmdline = 1;
961                         if (options.num_ports >= MAX_PORTS) {
962                                 fprintf(stderr, "too many ports.\n");
963                                 exit(1);
964                         }
965                         options.ports[options.num_ports++] = a2port(optarg);
966                         if (options.ports[options.num_ports-1] == 0) {
967                                 fprintf(stderr, "Bad port number.\n");
968                                 exit(1);
969                         }
970                         break;
971                 case 'g':
972                         if ((options.login_grace_time = convtime(optarg)) == -1) {
973                                 fprintf(stderr, "Invalid login grace time.\n");
974                                 exit(1);
975                         }
976                         break;
977                 case 'k':
978                         if ((options.key_regeneration_time = convtime(optarg)) == -1) {
979                                 fprintf(stderr, "Invalid key regeneration interval.\n");
980                                 exit(1);
981                         }
982                         break;
983                 case 'h':
984                         if (options.num_host_key_files >= MAX_HOSTKEYS) {
985                                 fprintf(stderr, "too many host keys.\n");
986                                 exit(1);
987                         }
988                         options.host_key_files[options.num_host_key_files++] = optarg;
989                         break;
990                 case 't':
991                         test_flag = 1;
992                         break;
993                 case 'u':
994                         utmp_len = atoi(optarg);
995                         if (utmp_len > MAXHOSTNAMELEN) {
996                                 fprintf(stderr, "Invalid utmp length.\n");
997                                 exit(1);
998                         }
999                         break;
1000                 case 'o':
1001                         line = xstrdup(optarg);
1002                         if (process_server_config_line(&options, line,
1003                             "command-line", 0) != 0)
1004                                 exit(1);
1005                         xfree(line);
1006                         break;
1007                 case '?':
1008                 default:
1009                         usage();
1010                         break;
1011                 }
1012         }
1013         if (rexeced_flag || inetd_flag)
1014                 rexec_flag = 0;
1015         if (rexec_flag && (av[0] == NULL || *av[0] != '/'))
1016                 fatal("sshd re-exec requires execution with an absolute path");
1017         if (rexeced_flag)
1018                 closefrom(STDERR_FILENO + 3);
1019
1020         SSLeay_add_all_algorithms();
1021         channel_set_af(IPv4or6);
1022
1023         /*
1024          * Force logging to stderr until we have loaded the private host
1025          * key (unless started from inetd)
1026          */
1027         log_init(__progname,
1028             options.log_level == SYSLOG_LEVEL_NOT_SET ?
1029             SYSLOG_LEVEL_INFO : options.log_level,
1030             options.log_facility == SYSLOG_FACILITY_NOT_SET ?
1031             SYSLOG_FACILITY_AUTH : options.log_facility,
1032             log_stderr || !inetd_flag);
1033
1034 #ifdef _AIX
1035         /*
1036          * Unset KRB5CCNAME, otherwise the user's session may inherit it from
1037          * root's environment
1038          */ 
1039         unsetenv("KRB5CCNAME");
1040 #endif /* _AIX */
1041 #ifdef _UNICOS
1042         /* Cray can define user privs drop all privs now!
1043          * Not needed on PRIV_SU systems!
1044          */
1045         drop_cray_privs();
1046 #endif
1047
1048         seed_rng();
1049
1050         sensitive_data.server_key = NULL;
1051         sensitive_data.ssh1_host_key = NULL;
1052         sensitive_data.have_ssh1_key = 0;
1053         sensitive_data.have_ssh2_key = 0;
1054
1055         /* Fetch our configuration */
1056         buffer_init(&cfg);
1057         if (rexeced_flag)
1058                 recv_rexec_state(STDERR_FILENO + 2, &cfg);
1059         else
1060                 load_server_config(config_file_name, &cfg);
1061
1062         parse_server_config(&options,
1063             rexeced_flag ? "rexec" : config_file_name, &cfg);
1064
1065         if (!rexec_flag)
1066                 buffer_free(&cfg);
1067
1068         /* Fill in default values for those options not explicitly set. */
1069         fill_default_server_options(&options);
1070
1071         /* Check that there are no remaining arguments. */
1072         if (optind < ac) {
1073                 fprintf(stderr, "Extra argument %s.\n", av[optind]);
1074                 exit(1);
1075         }
1076
1077         debug("sshd version %.100s", SSH_VERSION);
1078
1079         /* load private host keys */
1080         sensitive_data.host_keys = xmalloc(options.num_host_key_files *
1081             sizeof(Key *));
1082         for (i = 0; i < options.num_host_key_files; i++)
1083                 sensitive_data.host_keys[i] = NULL;
1084
1085         for (i = 0; i < options.num_host_key_files; i++) {
1086                 key = key_load_private(options.host_key_files[i], "", NULL);
1087                 sensitive_data.host_keys[i] = key;
1088                 if (key == NULL) {
1089                         error("Could not load host key: %s",
1090                             options.host_key_files[i]);
1091                         sensitive_data.host_keys[i] = NULL;
1092                         continue;
1093                 }
1094                 switch (key->type) {
1095                 case KEY_RSA1:
1096                         sensitive_data.ssh1_host_key = key;
1097                         sensitive_data.have_ssh1_key = 1;
1098                         break;
1099                 case KEY_RSA:
1100                 case KEY_DSA:
1101                         sensitive_data.have_ssh2_key = 1;
1102                         break;
1103                 }
1104                 debug("private host key: #%d type %d %s", i, key->type,
1105                     key_type(key));
1106         }
1107         if ((options.protocol & SSH_PROTO_1) && !sensitive_data.have_ssh1_key) {
1108                 logit("Disabling protocol version 1. Could not load host key");
1109                 options.protocol &= ~SSH_PROTO_1;
1110         }
1111         if ((options.protocol & SSH_PROTO_2) && !sensitive_data.have_ssh2_key) {
1112                 logit("Disabling protocol version 2. Could not load host key");
1113                 options.protocol &= ~SSH_PROTO_2;
1114         }
1115         if (!(options.protocol & (SSH_PROTO_1|SSH_PROTO_2))) {
1116                 logit("sshd: no hostkeys available -- exiting.");
1117                 exit(1);
1118         }
1119
1120         /* Check certain values for sanity. */
1121         if (options.protocol & SSH_PROTO_1) {
1122                 if (options.server_key_bits < 512 ||
1123                     options.server_key_bits > 32768) {
1124                         fprintf(stderr, "Bad server key size.\n");
1125                         exit(1);
1126                 }
1127                 /*
1128                  * Check that server and host key lengths differ sufficiently. This
1129                  * is necessary to make double encryption work with rsaref. Oh, I
1130                  * hate software patents. I dont know if this can go? Niels
1131                  */
1132                 if (options.server_key_bits >
1133                     BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) -
1134                     SSH_KEY_BITS_RESERVED && options.server_key_bits <
1135                     BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) +
1136                     SSH_KEY_BITS_RESERVED) {
1137                         options.server_key_bits =
1138                             BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) +
1139                             SSH_KEY_BITS_RESERVED;
1140                         debug("Forcing server key to %d bits to make it differ from host key.",
1141                             options.server_key_bits);
1142                 }
1143         }
1144
1145         if (use_privsep) {
1146                 struct passwd *pw;
1147                 struct stat st;
1148
1149                 if ((pw = getpwnam(SSH_PRIVSEP_USER)) == NULL)
1150                         fatal("Privilege separation user %s does not exist",
1151                             SSH_PRIVSEP_USER);
1152                 if ((stat(_PATH_PRIVSEP_CHROOT_DIR, &st) == -1) ||
1153                     (S_ISDIR(st.st_mode) == 0))
1154                         fatal("Missing privilege separation directory: %s",
1155                             _PATH_PRIVSEP_CHROOT_DIR);
1156
1157 #ifdef HAVE_CYGWIN
1158                 if (check_ntsec(_PATH_PRIVSEP_CHROOT_DIR) &&
1159                     (st.st_uid != getuid () ||
1160                     (st.st_mode & (S_IWGRP|S_IWOTH)) != 0))
1161 #else
1162                 if (st.st_uid != 0 || (st.st_mode & (S_IWGRP|S_IWOTH)) != 0)
1163 #endif
1164                         fatal("%s must be owned by root and not group or "
1165                             "world-writable.", _PATH_PRIVSEP_CHROOT_DIR);
1166         }
1167
1168         /* Configuration looks good, so exit if in test mode. */
1169         if (test_flag)
1170                 exit(0);
1171
1172         /*
1173          * Clear out any supplemental groups we may have inherited.  This
1174          * prevents inadvertent creation of files with bad modes (in the
1175          * portable version at least, it's certainly possible for PAM
1176          * to create a file, and we can't control the code in every
1177          * module which might be used).
1178          */
1179         if (setgroups(0, NULL) < 0)
1180                 debug("setgroups() failed: %.200s", strerror(errno));
1181
1182         if (rexec_flag) {
1183                 rexec_argv = xmalloc(sizeof(char *) * (rexec_argc + 2));
1184                 for (i = 0; i < rexec_argc; i++) {
1185                         debug("rexec_argv[%d]='%s'", i, saved_argv[i]);
1186                         rexec_argv[i] = saved_argv[i];
1187                 }
1188                 rexec_argv[rexec_argc] = "-R";
1189                 rexec_argv[rexec_argc + 1] = NULL;
1190         }
1191
1192         /* Initialize the log (it is reinitialized below in case we forked). */
1193         if (debug_flag && !inetd_flag)
1194                 log_stderr = 1;
1195         log_init(__progname, options.log_level, options.log_facility, log_stderr);
1196
1197         /*
1198          * If not in debugging mode, and not started from inetd, disconnect
1199          * from the controlling terminal, and fork.  The original process
1200          * exits.
1201          */
1202         if (!(debug_flag || inetd_flag || no_daemon_flag)) {
1203 #ifdef TIOCNOTTY
1204                 int fd;
1205 #endif /* TIOCNOTTY */
1206                 if (daemon(0, 0) < 0)
1207                         fatal("daemon() failed: %.200s", strerror(errno));
1208
1209                 /* Disconnect from the controlling tty. */
1210 #ifdef TIOCNOTTY
1211                 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
1212                 if (fd >= 0) {
1213                         (void) ioctl(fd, TIOCNOTTY, NULL);
1214                         close(fd);
1215                 }
1216 #endif /* TIOCNOTTY */
1217         }
1218         /* Reinitialize the log (because of the fork above). */
1219         log_init(__progname, options.log_level, options.log_facility, log_stderr);
1220
1221         /* Initialize the random number generator. */
1222         arc4random_stir();
1223
1224         /* Chdir to the root directory so that the current disk can be
1225            unmounted if desired. */
1226         chdir("/");
1227
1228         /* ignore SIGPIPE */
1229         signal(SIGPIPE, SIG_IGN);
1230
1231         /* Start listening for a socket, unless started from inetd. */
1232         if (inetd_flag) {
1233                 int fd;
1234
1235                 startup_pipe = -1;
1236                 if (rexeced_flag) {
1237                         close(STDERR_FILENO + 2);
1238                         sock_in = sock_out = dup(STDIN_FILENO);
1239                         if (!debug_flag) {
1240                                 startup_pipe = dup(STDERR_FILENO + 1);
1241                                 close(STDERR_FILENO + 1);
1242                         }
1243                 } else {
1244                         sock_in = dup(STDIN_FILENO);
1245                         sock_out = dup(STDOUT_FILENO);
1246                 }
1247                 /*
1248                  * We intentionally do not close the descriptors 0, 1, and 2
1249                  * as our code for setting the descriptors won't work if
1250                  * ttyfd happens to be one of those.
1251                  */
1252                 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
1253                         dup2(fd, STDIN_FILENO);
1254                         dup2(fd, STDOUT_FILENO);
1255                         if (fd > STDOUT_FILENO)
1256                                 close(fd);
1257                 }
1258                 debug("inetd sockets after dupping: %d, %d", sock_in, sock_out);
1259                 if ((options.protocol & SSH_PROTO_1) &&
1260                     sensitive_data.server_key == NULL)
1261                         generate_ephemeral_server_key();
1262         } else {
1263                 for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
1264                         if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1265                                 continue;
1266                         if (num_listen_socks >= MAX_LISTEN_SOCKS)
1267                                 fatal("Too many listen sockets. "
1268                                     "Enlarge MAX_LISTEN_SOCKS");
1269                         if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
1270                             ntop, sizeof(ntop), strport, sizeof(strport),
1271                             NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
1272                                 error("getnameinfo failed");
1273                                 continue;
1274                         }
1275                         /* Create socket for listening. */
1276                         listen_sock = socket(ai->ai_family, ai->ai_socktype,
1277                             ai->ai_protocol);
1278                         if (listen_sock < 0) {
1279                                 /* kernel may not support ipv6 */
1280                                 verbose("socket: %.100s", strerror(errno));
1281                                 continue;
1282                         }
1283                         if (set_nonblock(listen_sock) == -1) {
1284                                 close(listen_sock);
1285                                 continue;
1286                         }
1287                         /*
1288                          * Set socket options.
1289                          * Allow local port reuse in TIME_WAIT.
1290                          */
1291                         if (setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
1292                             &on, sizeof(on)) == -1)
1293                                 error("setsockopt SO_REUSEADDR: %s", strerror(errno));
1294
1295                         debug("Bind to port %s on %s.", strport, ntop);
1296
1297                         /* Bind the socket to the desired port. */
1298                         if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1299                                 if (!ai->ai_next)
1300                                     error("Bind to port %s on %s failed: %.200s.",
1301                                             strport, ntop, strerror(errno));
1302                                 close(listen_sock);
1303                                 continue;
1304                         }
1305                         listen_socks[num_listen_socks] = listen_sock;
1306                         num_listen_socks++;
1307
1308                         /* Start listening on the port. */
1309                         logit("Server listening on %s port %s.", ntop, strport);
1310                         if (listen(listen_sock, SSH_LISTEN_BACKLOG) < 0)
1311                                 fatal("listen: %.100s", strerror(errno));
1312
1313                 }
1314                 freeaddrinfo(options.listen_addrs);
1315
1316                 if (!num_listen_socks)
1317                         fatal("Cannot bind any address.");
1318
1319                 if (options.protocol & SSH_PROTO_1)
1320                         generate_ephemeral_server_key();
1321
1322                 /*
1323                  * Arrange to restart on SIGHUP.  The handler needs
1324                  * listen_sock.
1325                  */
1326                 signal(SIGHUP, sighup_handler);
1327
1328                 signal(SIGTERM, sigterm_handler);
1329                 signal(SIGQUIT, sigterm_handler);
1330
1331                 /* Arrange SIGCHLD to be caught. */
1332                 signal(SIGCHLD, main_sigchld_handler);
1333
1334                 /* Write out the pid file after the sigterm handler is setup */
1335                 if (!debug_flag) {
1336                         /*
1337                          * Record our pid in /var/run/sshd.pid to make it
1338                          * easier to kill the correct sshd.  We don't want to
1339                          * do this before the bind above because the bind will
1340                          * fail if there already is a daemon, and this will
1341                          * overwrite any old pid in the file.
1342                          */
1343                         f = fopen(options.pid_file, "wb");
1344                         if (f == NULL) {
1345                                 error("Couldn't create pid file \"%s\": %s",
1346                                     options.pid_file, strerror(errno));
1347                         } else {
1348                                 fprintf(f, "%ld\n", (long) getpid());
1349                                 fclose(f);
1350                         }
1351                 }
1352
1353                 /* setup fd set for listen */
1354                 fdset = NULL;
1355                 maxfd = 0;
1356                 for (i = 0; i < num_listen_socks; i++)
1357                         if (listen_socks[i] > maxfd)
1358                                 maxfd = listen_socks[i];
1359                 /* pipes connected to unauthenticated childs */
1360                 startup_pipes = xmalloc(options.max_startups * sizeof(int));
1361                 for (i = 0; i < options.max_startups; i++)
1362                         startup_pipes[i] = -1;
1363
1364                 /*
1365                  * Stay listening for connections until the system crashes or
1366                  * the daemon is killed with a signal.
1367                  */
1368                 for (;;) {
1369                         if (received_sighup)
1370                                 sighup_restart();
1371                         if (fdset != NULL)
1372                                 xfree(fdset);
1373                         fdsetsz = howmany(maxfd+1, NFDBITS) * sizeof(fd_mask);
1374                         fdset = (fd_set *)xmalloc(fdsetsz);
1375                         memset(fdset, 0, fdsetsz);
1376
1377                         for (i = 0; i < num_listen_socks; i++)
1378                                 FD_SET(listen_socks[i], fdset);
1379                         for (i = 0; i < options.max_startups; i++)
1380                                 if (startup_pipes[i] != -1)
1381                                         FD_SET(startup_pipes[i], fdset);
1382
1383                         /* Wait in select until there is a connection. */
1384                         ret = select(maxfd+1, fdset, NULL, NULL, NULL);
1385                         if (ret < 0 && errno != EINTR)
1386                                 error("select: %.100s", strerror(errno));
1387                         if (received_sigterm) {
1388                                 logit("Received signal %d; terminating.",
1389                                     (int) received_sigterm);
1390                                 close_listen_socks();
1391                                 unlink(options.pid_file);
1392                                 exit(255);
1393                         }
1394                         if (key_used && key_do_regen) {
1395                                 generate_ephemeral_server_key();
1396                                 key_used = 0;
1397                                 key_do_regen = 0;
1398                         }
1399                         if (ret < 0)
1400                                 continue;
1401
1402                         for (i = 0; i < options.max_startups; i++)
1403                                 if (startup_pipes[i] != -1 &&
1404                                     FD_ISSET(startup_pipes[i], fdset)) {
1405                                         /*
1406                                          * the read end of the pipe is ready
1407                                          * if the child has closed the pipe
1408                                          * after successful authentication
1409                                          * or if the child has died
1410                                          */
1411                                         close(startup_pipes[i]);
1412                                         startup_pipes[i] = -1;
1413                                         startups--;
1414                                 }
1415                         for (i = 0; i < num_listen_socks; i++) {
1416                                 if (!FD_ISSET(listen_socks[i], fdset))
1417                                         continue;
1418                                 fromlen = sizeof(from);
1419                                 newsock = accept(listen_socks[i], (struct sockaddr *)&from,
1420                                     &fromlen);
1421                                 if (newsock < 0) {
1422                                         if (errno != EINTR && errno != EWOULDBLOCK)
1423                                                 error("accept: %.100s", strerror(errno));
1424                                         continue;
1425                                 }
1426                                 if (unset_nonblock(newsock) == -1) {
1427                                         close(newsock);
1428                                         continue;
1429                                 }
1430                                 if (drop_connection(startups) == 1) {
1431                                         debug("drop connection #%d", startups);
1432                                         close(newsock);
1433                                         continue;
1434                                 }
1435                                 if (pipe(startup_p) == -1) {
1436                                         close(newsock);
1437                                         continue;
1438                                 }
1439
1440                                 if (rexec_flag && socketpair(AF_UNIX,
1441                                     SOCK_STREAM, 0, config_s) == -1) {
1442                                         error("reexec socketpair: %s",
1443                                             strerror(errno));
1444                                         close(newsock);
1445                                         close(startup_p[0]);
1446                                         close(startup_p[1]);
1447                                         continue;
1448                                 }
1449
1450                                 for (j = 0; j < options.max_startups; j++)
1451                                         if (startup_pipes[j] == -1) {
1452                                                 startup_pipes[j] = startup_p[0];
1453                                                 if (maxfd < startup_p[0])
1454                                                         maxfd = startup_p[0];
1455                                                 startups++;
1456                                                 break;
1457                                         }
1458
1459                                 /*
1460                                  * Got connection.  Fork a child to handle it, unless
1461                                  * we are in debugging mode.
1462                                  */
1463                                 if (debug_flag) {
1464                                         /*
1465                                          * In debugging mode.  Close the listening
1466                                          * socket, and start processing the
1467                                          * connection without forking.
1468                                          */
1469                                         debug("Server will not fork when running in debugging mode.");
1470                                         close_listen_socks();
1471                                         sock_in = newsock;
1472                                         sock_out = newsock;
1473                                         close(startup_p[0]);
1474                                         close(startup_p[1]);
1475                                         startup_pipe = -1;
1476                                         pid = getpid();
1477                                         if (rexec_flag) {
1478                                                 send_rexec_state(config_s[0],
1479                                                     &cfg);
1480                                                 close(config_s[0]);
1481                                         }
1482                                         break;
1483                                 } else {
1484                                         /*
1485                                          * Normal production daemon.  Fork, and have
1486                                          * the child process the connection. The
1487                                          * parent continues listening.
1488                                          */
1489                                         if ((pid = fork()) == 0) {
1490                                                 /*
1491                                                  * Child.  Close the listening and max_startup
1492                                                  * sockets.  Start using the accepted socket.
1493                                                  * Reinitialize logging (since our pid has
1494                                                  * changed).  We break out of the loop to handle
1495                                                  * the connection.
1496                                                  */
1497                                                 startup_pipe = startup_p[1];
1498                                                 close_startup_pipes();
1499                                                 close_listen_socks();
1500                                                 sock_in = newsock;
1501                                                 sock_out = newsock;
1502                                                 log_init(__progname, options.log_level, options.log_facility, log_stderr);
1503                                                 break;
1504                                         }
1505                                 }
1506
1507                                 /* Parent.  Stay in the loop. */
1508                                 if (pid < 0)
1509                                         error("fork: %.100s", strerror(errno));
1510                                 else
1511                                         debug("Forked child %ld.", (long)pid);
1512
1513                                 close(startup_p[1]);
1514
1515                                 if (rexec_flag) {
1516                                         send_rexec_state(config_s[0], &cfg);
1517                                         close(config_s[0]);
1518                                         close(config_s[1]);
1519                                 }
1520
1521                                 /* Mark that the key has been used (it was "given" to the child). */
1522                                 if ((options.protocol & SSH_PROTO_1) &&
1523                                     key_used == 0) {
1524                                         /* Schedule server key regeneration alarm. */
1525                                         signal(SIGALRM, key_regeneration_alarm);
1526                                         alarm(options.key_regeneration_time);
1527                                         key_used = 1;
1528                                 }
1529
1530                                 arc4random_stir();
1531
1532                                 /* Close the new socket (the child is now taking care of it). */
1533                                 close(newsock);
1534                         }
1535                         /* child process check (or debug mode) */
1536                         if (num_listen_socks < 0)
1537                                 break;
1538                 }
1539         }
1540
1541         /* This is the child processing a new connection. */
1542         setproctitle("%s", "[accepted]");
1543
1544         if (rexec_flag) {
1545                 int fd;
1546
1547                 debug("rexec newsock %d pipe %d sock %d", newsock, 
1548                     startup_pipe, config_s[0]);
1549                 dup2(newsock, STDIN_FILENO);
1550                 dup2(STDIN_FILENO, STDOUT_FILENO);
1551                 if (startup_pipe == -1)
1552                         close(STDERR_FILENO + 1);
1553                 else
1554                         dup2(startup_pipe, STDERR_FILENO + 1);
1555
1556                 dup2(config_s[1], STDERR_FILENO + 2);
1557                 close(config_s[1]);
1558                 execv(rexec_argv[0], rexec_argv);
1559
1560                 /* Reexec has failed, fall back and continue */
1561                 error("rexec of %s failed: %s", rexec_argv[0], strerror(errno));
1562                 recv_rexec_state(STDERR_FILENO + 2, NULL);
1563                 log_init(__progname, options.log_level,
1564                     options.log_facility, log_stderr);
1565
1566                 /* Clean up fds */
1567                 close(config_s[1]);
1568                 close(STDERR_FILENO + 1);
1569                 close(STDERR_FILENO + 2);
1570                 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
1571                         dup2(fd, STDIN_FILENO);
1572                         dup2(fd, STDOUT_FILENO);
1573                         if (fd > STDERR_FILENO)
1574                                 close(fd);
1575                 }
1576         }
1577
1578         /*
1579          * Create a new session and process group since the 4.4BSD
1580          * setlogin() affects the entire process group.  We don't
1581          * want the child to be able to affect the parent.
1582          */
1583 #if !defined(SSHD_ACQUIRES_CTTY)
1584         /*
1585          * If setsid is called, on some platforms sshd will later acquire a
1586          * controlling terminal which will result in "could not set
1587          * controlling tty" errors.
1588          */
1589         if (!debug_flag && !inetd_flag && setsid() < 0)
1590                 error("setsid: %.100s", strerror(errno));
1591 #endif
1592
1593         /*
1594          * Disable the key regeneration alarm.  We will not regenerate the
1595          * key since we are no longer in a position to give it to anyone. We
1596          * will not restart on SIGHUP since it no longer makes sense.
1597          */
1598         alarm(0);
1599         signal(SIGALRM, SIG_DFL);
1600         signal(SIGHUP, SIG_DFL);
1601         signal(SIGTERM, SIG_DFL);
1602         signal(SIGQUIT, SIG_DFL);
1603         signal(SIGCHLD, SIG_DFL);
1604         signal(SIGINT, SIG_DFL);
1605
1606         /* Set SO_KEEPALIVE if requested. */
1607         if (options.tcp_keep_alive &&
1608             setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, &on,
1609             sizeof(on)) < 0)
1610                 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
1611
1612         /*
1613          * Register our connection.  This turns encryption off because we do
1614          * not have a key.
1615          */
1616         packet_set_connection(sock_in, sock_out);
1617
1618         remote_port = get_remote_port();
1619         remote_ip = get_remote_ipaddr();
1620
1621 #ifdef LIBWRAP
1622         /* Check whether logins are denied from this host. */
1623         if (packet_connection_is_on_socket()) {
1624                 struct request_info req;
1625
1626                 request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, 0);
1627                 fromhost(&req);
1628
1629                 if (!hosts_access(&req)) {
1630                         debug("Connection refused by tcp wrapper");
1631                         refuse(&req);
1632                         /* NOTREACHED */
1633                         fatal("libwrap refuse returns");
1634                 }
1635         }
1636 #endif /* LIBWRAP */
1637
1638         /* Log the connection. */
1639         verbose("Connection from %.500s port %d", remote_ip, remote_port);
1640
1641         /*
1642          * We don\'t want to listen forever unless the other side
1643          * successfully authenticates itself.  So we set up an alarm which is
1644          * cleared after successful authentication.  A limit of zero
1645          * indicates no limit. Note that we don\'t set the alarm in debugging
1646          * mode; it is just annoying to have the server exit just when you
1647          * are about to discover the bug.
1648          */
1649         signal(SIGALRM, grace_alarm_handler);
1650         if (!debug_flag)
1651                 alarm(options.login_grace_time);
1652
1653         sshd_exchange_identification(sock_in, sock_out);
1654
1655         packet_set_nonblocking();
1656
1657         /* prepare buffers to collect authentication messages */
1658         buffer_init(&loginmsg);
1659
1660         /* allocate authentication context */
1661         authctxt = xmalloc(sizeof(*authctxt));
1662         memset(authctxt, 0, sizeof(*authctxt));
1663
1664         /* XXX global for cleanup, access from other modules */
1665         the_authctxt = authctxt;
1666
1667         if (use_privsep)
1668                 if (privsep_preauth(authctxt) == 1)
1669                         goto authenticated;
1670
1671         /* perform the key exchange */
1672         /* authenticate user and start session */
1673         if (compat20) {
1674                 do_ssh2_kex();
1675                 do_authentication2(authctxt);
1676         } else {
1677                 do_ssh1_kex();
1678                 do_authentication(authctxt);
1679         }
1680         /*
1681          * If we use privilege separation, the unprivileged child transfers
1682          * the current keystate and exits
1683          */
1684         if (use_privsep) {
1685                 mm_send_keystate(pmonitor);
1686                 exit(0);
1687         }
1688
1689  authenticated:
1690         /*
1691          * In privilege separation, we fork another child and prepare
1692          * file descriptor passing.
1693          */
1694         if (use_privsep) {
1695                 privsep_postauth(authctxt);
1696                 /* the monitor process [priv] will not return */
1697                 if (!compat20)
1698                         destroy_sensitive_data();
1699         }
1700
1701         /* Start session. */
1702         do_authenticated(authctxt);
1703
1704         /* The connection has been terminated. */
1705         verbose("Closing connection to %.100s", remote_ip);
1706
1707 #ifdef USE_PAM
1708         if (options.use_pam)
1709                 finish_pam();
1710 #endif /* USE_PAM */
1711
1712         packet_close();
1713
1714         if (use_privsep)
1715                 mm_terminate();
1716
1717         exit(0);
1718 }
1719
1720 /*
1721  * Decrypt session_key_int using our private server key and private host key
1722  * (key with larger modulus first).
1723  */
1724 int
1725 ssh1_session_key(BIGNUM *session_key_int)
1726 {
1727         int rsafail = 0;
1728
1729         if (BN_cmp(sensitive_data.server_key->rsa->n, sensitive_data.ssh1_host_key->rsa->n) > 0) {
1730                 /* Server key has bigger modulus. */
1731                 if (BN_num_bits(sensitive_data.server_key->rsa->n) <
1732                     BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1733                         fatal("do_connection: %s: server_key %d < host_key %d + SSH_KEY_BITS_RESERVED %d",
1734                             get_remote_ipaddr(),
1735                             BN_num_bits(sensitive_data.server_key->rsa->n),
1736                             BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1737                             SSH_KEY_BITS_RESERVED);
1738                 }
1739                 if (rsa_private_decrypt(session_key_int, session_key_int,
1740                     sensitive_data.server_key->rsa) <= 0)
1741                         rsafail++;
1742                 if (rsa_private_decrypt(session_key_int, session_key_int,
1743                     sensitive_data.ssh1_host_key->rsa) <= 0)
1744                         rsafail++;
1745         } else {
1746                 /* Host key has bigger modulus (or they are equal). */
1747                 if (BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) <
1748                     BN_num_bits(sensitive_data.server_key->rsa->n) + SSH_KEY_BITS_RESERVED) {
1749                         fatal("do_connection: %s: host_key %d < server_key %d + SSH_KEY_BITS_RESERVED %d",
1750                             get_remote_ipaddr(),
1751                             BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
1752                             BN_num_bits(sensitive_data.server_key->rsa->n),
1753                             SSH_KEY_BITS_RESERVED);
1754                 }
1755                 if (rsa_private_decrypt(session_key_int, session_key_int,
1756                     sensitive_data.ssh1_host_key->rsa) < 0)
1757                         rsafail++;
1758                 if (rsa_private_decrypt(session_key_int, session_key_int,
1759                     sensitive_data.server_key->rsa) < 0)
1760                         rsafail++;
1761         }
1762         return (rsafail);
1763 }
1764 /*
1765  * SSH1 key exchange
1766  */
1767 static void
1768 do_ssh1_kex(void)
1769 {
1770         int i, len;
1771         int rsafail = 0;
1772         BIGNUM *session_key_int;
1773         u_char session_key[SSH_SESSION_KEY_LENGTH];
1774         u_char cookie[8];
1775         u_int cipher_type, auth_mask, protocol_flags;
1776         u_int32_t rnd = 0;
1777
1778         /*
1779          * Generate check bytes that the client must send back in the user
1780          * packet in order for it to be accepted; this is used to defy ip
1781          * spoofing attacks.  Note that this only works against somebody
1782          * doing IP spoofing from a remote machine; any machine on the local
1783          * network can still see outgoing packets and catch the random
1784          * cookie.  This only affects rhosts authentication, and this is one
1785          * of the reasons why it is inherently insecure.
1786          */
1787         for (i = 0; i < 8; i++) {
1788                 if (i % 4 == 0)
1789                         rnd = arc4random();
1790                 cookie[i] = rnd & 0xff;
1791                 rnd >>= 8;
1792         }
1793
1794         /*
1795          * Send our public key.  We include in the packet 64 bits of random
1796          * data that must be matched in the reply in order to prevent IP
1797          * spoofing.
1798          */
1799         packet_start(SSH_SMSG_PUBLIC_KEY);
1800         for (i = 0; i < 8; i++)
1801                 packet_put_char(cookie[i]);
1802
1803         /* Store our public server RSA key. */
1804         packet_put_int(BN_num_bits(sensitive_data.server_key->rsa->n));
1805         packet_put_bignum(sensitive_data.server_key->rsa->e);
1806         packet_put_bignum(sensitive_data.server_key->rsa->n);
1807
1808         /* Store our public host RSA key. */
1809         packet_put_int(BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
1810         packet_put_bignum(sensitive_data.ssh1_host_key->rsa->e);
1811         packet_put_bignum(sensitive_data.ssh1_host_key->rsa->n);
1812
1813         /* Put protocol flags. */
1814         packet_put_int(SSH_PROTOFLAG_HOST_IN_FWD_OPEN);
1815
1816         /* Declare which ciphers we support. */
1817         packet_put_int(cipher_mask_ssh1(0));
1818
1819         /* Declare supported authentication types. */
1820         auth_mask = 0;
1821         if (options.rhosts_rsa_authentication)
1822                 auth_mask |= 1 << SSH_AUTH_RHOSTS_RSA;
1823         if (options.rsa_authentication)
1824                 auth_mask |= 1 << SSH_AUTH_RSA;
1825         if (options.challenge_response_authentication == 1)
1826                 auth_mask |= 1 << SSH_AUTH_TIS;
1827         if (options.password_authentication)
1828                 auth_mask |= 1 << SSH_AUTH_PASSWORD;
1829         packet_put_int(auth_mask);
1830
1831         /* Send the packet and wait for it to be sent. */
1832         packet_send();
1833         packet_write_wait();
1834
1835         debug("Sent %d bit server key and %d bit host key.",
1836             BN_num_bits(sensitive_data.server_key->rsa->n),
1837             BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
1838
1839         /* Read clients reply (cipher type and session key). */
1840         packet_read_expect(SSH_CMSG_SESSION_KEY);
1841
1842         /* Get cipher type and check whether we accept this. */
1843         cipher_type = packet_get_char();
1844
1845         if (!(cipher_mask_ssh1(0) & (1 << cipher_type)))
1846                 packet_disconnect("Warning: client selects unsupported cipher.");
1847
1848         /* Get check bytes from the packet.  These must match those we
1849            sent earlier with the public key packet. */
1850         for (i = 0; i < 8; i++)
1851                 if (cookie[i] != packet_get_char())
1852                         packet_disconnect("IP Spoofing check bytes do not match.");
1853
1854         debug("Encryption type: %.200s", cipher_name(cipher_type));
1855
1856         /* Get the encrypted integer. */
1857         if ((session_key_int = BN_new()) == NULL)
1858                 fatal("do_ssh1_kex: BN_new failed");
1859         packet_get_bignum(session_key_int);
1860
1861         protocol_flags = packet_get_int();
1862         packet_set_protocol_flags(protocol_flags);
1863         packet_check_eom();
1864
1865         /* Decrypt session_key_int using host/server keys */
1866         rsafail = PRIVSEP(ssh1_session_key(session_key_int));
1867
1868         /*
1869          * Extract session key from the decrypted integer.  The key is in the
1870          * least significant 256 bits of the integer; the first byte of the
1871          * key is in the highest bits.
1872          */
1873         if (!rsafail) {
1874                 BN_mask_bits(session_key_int, sizeof(session_key) * 8);
1875                 len = BN_num_bytes(session_key_int);
1876                 if (len < 0 || len > sizeof(session_key)) {
1877                         error("do_connection: bad session key len from %s: "
1878                             "session_key_int %d > sizeof(session_key) %lu",
1879                             get_remote_ipaddr(), len, (u_long)sizeof(session_key));
1880                         rsafail++;
1881                 } else {
1882                         memset(session_key, 0, sizeof(session_key));
1883                         BN_bn2bin(session_key_int,
1884                             session_key + sizeof(session_key) - len);
1885
1886                         derive_ssh1_session_id(
1887                             sensitive_data.ssh1_host_key->rsa->n, 
1888                             sensitive_data.server_key->rsa->n,
1889                             cookie, session_id);
1890                         /*
1891                          * Xor the first 16 bytes of the session key with the
1892                          * session id.
1893                          */
1894                         for (i = 0; i < 16; i++)
1895                                 session_key[i] ^= session_id[i];
1896                 }
1897         }
1898         if (rsafail) {
1899                 int bytes = BN_num_bytes(session_key_int);
1900                 u_char *buf = xmalloc(bytes);
1901                 MD5_CTX md;
1902
1903                 logit("do_connection: generating a fake encryption key");
1904                 BN_bn2bin(session_key_int, buf);
1905                 MD5_Init(&md);
1906                 MD5_Update(&md, buf, bytes);
1907                 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1908                 MD5_Final(session_key, &md);
1909                 MD5_Init(&md);
1910                 MD5_Update(&md, session_key, 16);
1911                 MD5_Update(&md, buf, bytes);
1912                 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
1913                 MD5_Final(session_key + 16, &md);
1914                 memset(buf, 0, bytes);
1915                 xfree(buf);
1916                 for (i = 0; i < 16; i++)
1917                         session_id[i] = session_key[i] ^ session_key[i + 16];
1918         }
1919         /* Destroy the private and public keys. No longer. */
1920         destroy_sensitive_data();
1921
1922         if (use_privsep)
1923                 mm_ssh1_session_id(session_id);
1924
1925         /* Destroy the decrypted integer.  It is no longer needed. */
1926         BN_clear_free(session_key_int);
1927
1928         /* Set the session key.  From this on all communications will be encrypted. */
1929         packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, cipher_type);
1930
1931         /* Destroy our copy of the session key.  It is no longer needed. */
1932         memset(session_key, 0, sizeof(session_key));
1933
1934         debug("Received session key; encryption turned on.");
1935
1936         /* Send an acknowledgment packet.  Note that this packet is sent encrypted. */
1937         packet_start(SSH_SMSG_SUCCESS);
1938         packet_send();
1939         packet_write_wait();
1940 }
1941
1942 /*
1943  * SSH2 key exchange: diffie-hellman-group1-sha1
1944  */
1945 static void
1946 do_ssh2_kex(void)
1947 {
1948         Kex *kex;
1949
1950         if (options.ciphers != NULL) {
1951                 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
1952                 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
1953         }
1954         myproposal[PROPOSAL_ENC_ALGS_CTOS] =
1955             compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
1956         myproposal[PROPOSAL_ENC_ALGS_STOC] =
1957             compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
1958
1959         if (options.macs != NULL) {
1960                 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
1961                 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
1962         }
1963         if (!options.compression) {
1964                 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
1965                 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none";
1966         }
1967         myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = list_hostkey_types();
1968
1969         /* start key exchange */
1970         kex = kex_setup(myproposal);
1971         kex->kex[KEX_DH_GRP1_SHA1] = kexdh_server;
1972         kex->kex[KEX_DH_GRP14_SHA1] = kexdh_server;
1973         kex->kex[KEX_DH_GEX_SHA1] = kexgex_server;
1974         kex->server = 1;
1975         kex->client_version_string=client_version_string;
1976         kex->server_version_string=server_version_string;
1977         kex->load_host_key=&get_hostkey_by_type;
1978         kex->host_key_index=&get_hostkey_index;
1979
1980         xxx_kex = kex;
1981
1982         dispatch_run(DISPATCH_BLOCK, &kex->done, kex);
1983
1984         session_id2 = kex->session_id;
1985         session_id2_len = kex->session_id_len;
1986
1987 #ifdef DEBUG_KEXDH
1988         /* send 1st encrypted/maced/compressed message */
1989         packet_start(SSH2_MSG_IGNORE);
1990         packet_put_cstring("markus");
1991         packet_send();
1992         packet_write_wait();
1993 #endif
1994         debug("KEX done");
1995 }
1996
1997 /* server specific fatal cleanup */
1998 void
1999 cleanup_exit(int i)
2000 {
2001         if (the_authctxt)
2002                 do_cleanup(the_authctxt);
2003         _exit(i);
2004 }
This page took 0.217943 seconds and 5 git commands to generate.