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