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