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