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