]> andersk Git - openssh.git/blob - sshd.c
- (djm) Always use saved_argv in sshd.c as compat_init_setproctitle may
[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.265 2003/04/14 14:17:50 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 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 (setgid(pw->pw_gid) < 0)
568                 fatal("setgid failed for %u", (u_int)pw->pw_gid );
569         if (setgroups(1, gidset) < 0)
570                 fatal("setgroups: %.100s", strerror(errno));
571         permanently_set_uid(pw);
572 #endif
573 }
574
575 static Authctxt *
576 privsep_preauth(void)
577 {
578         Authctxt *authctxt = NULL;
579         int status;
580         pid_t pid;
581
582         /* Set up unprivileged child process to deal with network data */
583         pmonitor = monitor_init();
584         /* Store a pointer to the kex for later rekeying */
585         pmonitor->m_pkex = &xxx_kex;
586
587         pid = fork();
588         if (pid == -1) {
589                 fatal("fork of unprivileged child failed");
590         } else if (pid != 0) {
591                 fatal_remove_cleanup((void (*) (void *)) packet_close, NULL);
592
593                 debug2("Network child is on pid %ld", (long)pid);
594
595                 close(pmonitor->m_recvfd);
596                 authctxt = monitor_child_preauth(pmonitor);
597                 close(pmonitor->m_sendfd);
598
599                 /* Sync memory */
600                 monitor_sync(pmonitor);
601
602                 /* Wait for the child's exit status */
603                 while (waitpid(pid, &status, 0) < 0)
604                         if (errno != EINTR)
605                                 break;
606
607                 /* Reinstall, since the child has finished */
608                 fatal_add_cleanup((void (*) (void *)) packet_close, NULL);
609
610                 return (authctxt);
611         } else {
612                 /* child */
613
614                 close(pmonitor->m_sendfd);
615
616                 /* Demote the child */
617                 if (getuid() == 0 || geteuid() == 0)
618                         privsep_preauth_child();
619                 setproctitle("%s", "[net]");
620         }
621         return (NULL);
622 }
623
624 static void
625 privsep_postauth(Authctxt *authctxt)
626 {
627         extern Authctxt *x_authctxt;
628
629         /* XXX - Remote port forwarding */
630         x_authctxt = authctxt;
631
632 #ifdef DISABLE_FD_PASSING
633         if (1) {
634 #else
635         if (authctxt->pw->pw_uid == 0 || options.use_login) {
636 #endif
637                 /* File descriptor passing is broken or root login */
638                 monitor_apply_keystate(pmonitor);
639                 use_privsep = 0;
640                 return;
641         }
642
643         /* Authentication complete */
644         alarm(0);
645         if (startup_pipe != -1) {
646                 close(startup_pipe);
647                 startup_pipe = -1;
648         }
649
650         /* New socket pair */
651         monitor_reinit(pmonitor);
652
653         pmonitor->m_pid = fork();
654         if (pmonitor->m_pid == -1)
655                 fatal("fork of unprivileged child failed");
656         else if (pmonitor->m_pid != 0) {
657                 fatal_remove_cleanup((void (*) (void *)) packet_close, NULL);
658
659                 debug2("User child is on pid %ld", (long)pmonitor->m_pid);
660                 close(pmonitor->m_recvfd);
661                 monitor_child_postauth(pmonitor);
662
663                 /* NEVERREACHED */
664                 exit(0);
665         }
666
667         close(pmonitor->m_sendfd);
668
669         /* Demote the private keys to public keys. */
670         demote_sensitive_data();
671
672         /* Drop privileges */
673         do_setusercontext(authctxt->pw);
674
675         /* It is safe now to apply the key state */
676         monitor_apply_keystate(pmonitor);
677 }
678
679 static char *
680 list_hostkey_types(void)
681 {
682         Buffer b;
683         char *p;
684         int i;
685
686         buffer_init(&b);
687         for (i = 0; i < options.num_host_key_files; i++) {
688                 Key *key = sensitive_data.host_keys[i];
689                 if (key == NULL)
690                         continue;
691                 switch (key->type) {
692                 case KEY_RSA:
693                 case KEY_DSA:
694                         if (buffer_len(&b) > 0)
695                                 buffer_append(&b, ",", 1);
696                         p = key_ssh_name(key);
697                         buffer_append(&b, p, strlen(p));
698                         break;
699                 }
700         }
701         buffer_append(&b, "\0", 1);
702         p = xstrdup(buffer_ptr(&b));
703         buffer_free(&b);
704         debug("list_hostkey_types: %s", p);
705         return p;
706 }
707
708 Key *
709 get_hostkey_by_type(int type)
710 {
711         int i;
712
713         for (i = 0; i < options.num_host_key_files; i++) {
714                 Key *key = sensitive_data.host_keys[i];
715                 if (key != NULL && key->type == type)
716                         return key;
717         }
718         return NULL;
719 }
720
721 Key *
722 get_hostkey_by_index(int ind)
723 {
724         if (ind < 0 || ind >= options.num_host_key_files)
725                 return (NULL);
726         return (sensitive_data.host_keys[ind]);
727 }
728
729 int
730 get_hostkey_index(Key *key)
731 {
732         int i;
733
734         for (i = 0; i < options.num_host_key_files; i++) {
735                 if (key == sensitive_data.host_keys[i])
736                         return (i);
737         }
738         return (-1);
739 }
740
741 /*
742  * returns 1 if connection should be dropped, 0 otherwise.
743  * dropping starts at connection #max_startups_begin with a probability
744  * of (max_startups_rate/100). the probability increases linearly until
745  * all connections are dropped for startups > max_startups
746  */
747 static int
748 drop_connection(int startups)
749 {
750         double p, r;
751
752         if (startups < options.max_startups_begin)
753                 return 0;
754         if (startups >= options.max_startups)
755                 return 1;
756         if (options.max_startups_rate == 100)
757                 return 1;
758
759         p  = 100 - options.max_startups_rate;
760         p *= startups - options.max_startups_begin;
761         p /= (double) (options.max_startups - options.max_startups_begin);
762         p += options.max_startups_rate;
763         p /= 100.0;
764         r = arc4random() / (double) UINT_MAX;
765
766         debug("drop_connection: p %g, r %g", p, r);
767         return (r < p) ? 1 : 0;
768 }
769
770 static void
771 usage(void)
772 {
773         fprintf(stderr, "sshd version %s\n", SSH_VERSION);
774         fprintf(stderr, "Usage: %s [options]\n", __progname);
775         fprintf(stderr, "Options:\n");
776         fprintf(stderr, "  -f file    Configuration file (default %s)\n", _PATH_SERVER_CONFIG_FILE);
777         fprintf(stderr, "  -d         Debugging mode (multiple -d means more debugging)\n");
778         fprintf(stderr, "  -i         Started from inetd\n");
779         fprintf(stderr, "  -D         Do not fork into daemon mode\n");
780         fprintf(stderr, "  -t         Only test configuration file and keys\n");
781         fprintf(stderr, "  -q         Quiet (no logging)\n");
782         fprintf(stderr, "  -p port    Listen on the specified port (default: 22)\n");
783         fprintf(stderr, "  -k seconds Regenerate server key every this many seconds (default: 3600)\n");
784         fprintf(stderr, "  -g seconds Grace period for authentication (default: 600)\n");
785         fprintf(stderr, "  -b bits    Size of server RSA key (default: 768 bits)\n");
786         fprintf(stderr, "  -h file    File from which to read host key (default: %s)\n",
787             _PATH_HOST_KEY_FILE);
788         fprintf(stderr, "  -u len     Maximum hostname length for utmp recording\n");
789         fprintf(stderr, "  -4         Use IPv4 only\n");
790         fprintf(stderr, "  -6         Use IPv6 only\n");
791         fprintf(stderr, "  -o option  Process the option as if it was read from a configuration file.\n");
792         exit(1);
793 }
794
795 /*
796  * Main program for the daemon.
797  */
798 int
799 main(int ac, char **av)
800 {
801         extern char *optarg;
802         extern int optind;
803         int opt, sock_in = 0, sock_out = 0, newsock, j, i, fdsetsz, on = 1;
804         pid_t pid;
805         socklen_t fromlen;
806         fd_set *fdset;
807         struct sockaddr_storage from;
808         const char *remote_ip;
809         int remote_port;
810         FILE *f;
811         struct addrinfo *ai;
812         char ntop[NI_MAXHOST], strport[NI_MAXSERV];
813         int listen_sock, maxfd;
814         int startup_p[2];
815         int startups = 0;
816         Authctxt *authctxt;
817         Key *key;
818         int ret, key_used = 0;
819
820 #ifdef HAVE_SECUREWARE
821         (void)set_auth_parameters(ac, av);
822 #endif
823         __progname = get_progname(av[0]);
824         init_rng();
825
826         /* Save argv. Duplicate so setproctitle emulation doesn't clobber it */
827         saved_argc = ac;
828         saved_argv = xmalloc(sizeof(*saved_argv) * (ac + 1));
829         for (i = 0; i < ac; i++)
830                 saved_argv[i] = xstrdup(av[i]);
831         saved_argv[i] = NULL;
832
833 #ifndef HAVE_SETPROCTITLE
834         /* Prepare for later setproctitle emulation */
835         compat_init_setproctitle(ac, av);
836         av = saved_argv;
837 #endif
838
839         /* Initialize configuration options to their default values. */
840         initialize_server_options(&options);
841
842         /* Parse command-line arguments. */
843         while ((opt = getopt(ac, av, "f:p:b:k:h:g:V:u:o:dDeiqtQ46")) != -1) {
844                 switch (opt) {
845                 case '4':
846                         IPv4or6 = AF_INET;
847                         break;
848                 case '6':
849                         IPv4or6 = AF_INET6;
850                         break;
851                 case 'f':
852                         config_file_name = optarg;
853                         break;
854                 case 'd':
855                         if (0 == debug_flag) {
856                                 debug_flag = 1;
857                                 options.log_level = SYSLOG_LEVEL_DEBUG1;
858                         } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
859                                 options.log_level++;
860                         } else {
861                                 fprintf(stderr, "Too high debugging level.\n");
862                                 exit(1);
863                         }
864                         break;
865                 case 'D':
866                         no_daemon_flag = 1;
867                         break;
868                 case 'e':
869                         log_stderr = 1;
870                         break;
871                 case 'i':
872                         inetd_flag = 1;
873                         break;
874                 case 'Q':
875                         /* ignored */
876                         break;
877                 case 'q':
878                         options.log_level = SYSLOG_LEVEL_QUIET;
879                         break;
880                 case 'b':
881                         options.server_key_bits = atoi(optarg);
882                         break;
883                 case 'p':
884                         options.ports_from_cmdline = 1;
885                         if (options.num_ports >= MAX_PORTS) {
886                                 fprintf(stderr, "too many ports.\n");
887                                 exit(1);
888                         }
889                         options.ports[options.num_ports++] = a2port(optarg);
890                         if (options.ports[options.num_ports-1] == 0) {
891                                 fprintf(stderr, "Bad port number.\n");
892                                 exit(1);
893                         }
894                         break;
895                 case 'g':
896                         if ((options.login_grace_time = convtime(optarg)) == -1) {
897                                 fprintf(stderr, "Invalid login grace time.\n");
898                                 exit(1);
899                         }
900                         break;
901                 case 'k':
902                         if ((options.key_regeneration_time = convtime(optarg)) == -1) {
903                                 fprintf(stderr, "Invalid key regeneration interval.\n");
904                                 exit(1);
905                         }
906                         break;
907                 case 'h':
908                         if (options.num_host_key_files >= MAX_HOSTKEYS) {
909                                 fprintf(stderr, "too many host keys.\n");
910                                 exit(1);
911                         }
912                         options.host_key_files[options.num_host_key_files++] = optarg;
913                         break;
914                 case 'V':
915                         client_version_string = optarg;
916                         /* only makes sense with inetd_flag, i.e. no listen() */
917                         inetd_flag = 1;
918                         break;
919                 case 't':
920                         test_flag = 1;
921                         break;
922                 case 'u':
923                         utmp_len = atoi(optarg);
924                         if (utmp_len > MAXHOSTNAMELEN) {
925                                 fprintf(stderr, "Invalid utmp length.\n");
926                                 exit(1);
927                         }
928                         break;
929                 case 'o':
930                         if (process_server_config_line(&options, optarg,
931                             "command-line", 0) != 0)
932                                 exit(1);
933                         break;
934                 case '?':
935                 default:
936                         usage();
937                         break;
938                 }
939         }
940         SSLeay_add_all_algorithms();
941         channel_set_af(IPv4or6);
942
943         /*
944          * Force logging to stderr until we have loaded the private host
945          * key (unless started from inetd)
946          */
947         log_init(__progname,
948             options.log_level == SYSLOG_LEVEL_NOT_SET ?
949             SYSLOG_LEVEL_INFO : options.log_level,
950             options.log_facility == SYSLOG_FACILITY_NOT_SET ?
951             SYSLOG_FACILITY_AUTH : options.log_facility,
952             log_stderr || !inetd_flag);
953
954 #ifdef _UNICOS
955         /* Cray can define user privs drop all prives now!
956          * Not needed on PRIV_SU systems!
957          */
958         drop_cray_privs();
959 #endif
960
961         seed_rng();
962
963         /* Read server configuration options from the configuration file. */
964         read_server_config(&options, config_file_name);
965
966         /* Fill in default values for those options not explicitly set. */
967         fill_default_server_options(&options);
968
969         /* Check that there are no remaining arguments. */
970         if (optind < ac) {
971                 fprintf(stderr, "Extra argument %s.\n", av[optind]);
972                 exit(1);
973         }
974
975         debug("sshd version %.100s", SSH_VERSION);
976
977         /* load private host keys */
978         sensitive_data.host_keys = xmalloc(options.num_host_key_files *
979             sizeof(Key *));
980         for (i = 0; i < options.num_host_key_files; i++)
981                 sensitive_data.host_keys[i] = NULL;
982         sensitive_data.server_key = NULL;
983         sensitive_data.ssh1_host_key = NULL;
984         sensitive_data.have_ssh1_key = 0;
985         sensitive_data.have_ssh2_key = 0;
986
987         for (i = 0; i < options.num_host_key_files; i++) {
988                 key = key_load_private(options.host_key_files[i], "", NULL);
989                 sensitive_data.host_keys[i] = key;
990                 if (key == NULL) {
991                         error("Could not load host key: %s",
992                             options.host_key_files[i]);
993                         sensitive_data.host_keys[i] = NULL;
994                         continue;
995                 }
996                 switch (key->type) {
997                 case KEY_RSA1:
998                         sensitive_data.ssh1_host_key = key;
999                         sensitive_data.have_ssh1_key = 1;
1000                         break;
1001                 case KEY_RSA:
1002                 case KEY_DSA:
1003                         sensitive_data.have_ssh2_key = 1;
1004                         break;
1005                 }
1006                 debug("private host key: #%d type %d %s", i, key->type,
1007                     key_type(key));
1008         }
1009         if ((options.protocol & SSH_PROTO_1) && !sensitive_data.have_ssh1_key) {
1010                 logit("Disabling protocol version 1. Could not load host key");
1011                 options.protocol &= ~SSH_PROTO_1;
1012         }
1013         if ((options.protocol & SSH_PROTO_2) && !sensitive_data.have_ssh2_key) {
1014                 logit("Disabling protocol version 2. Could not load host key");
1015                 options.protocol &= ~SSH_PROTO_2;
1016         }
1017         if (!(options.protocol & (SSH_PROTO_1|SSH_PROTO_2))) {
1018                 logit("sshd: no hostkeys available -- exiting.");
1019                 exit(1);
1020         }
1021
1022         /* Check certain values for sanity. */
1023         if (options.protocol & SSH_PROTO_1) {
1024                 if (options.server_key_bits < 512 ||
1025                     options.server_key_bits > 32768) {
1026                         fprintf(stderr, "Bad server key size.\n");
1027                         exit(1);
1028                 }
1029                 /*
1030                  * Check that server and host key lengths differ sufficiently. This
1031                  * is necessary to make double encryption work with rsaref. Oh, I
1032                  * hate software patents. I dont know if this can go? Niels
1033                  */
1034                 if (options.server_key_bits >
1035                     BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) -
1036                     SSH_KEY_BITS_RESERVED && options.server_key_bits <
1037                     BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) +
1038                     SSH_KEY_BITS_RESERVED) {
1039                         options.server_key_bits =
1040                             BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) +
1041                             SSH_KEY_BITS_RESERVED;
1042                         debug("Forcing server key to %d bits to make it differ from host key.",
1043                             options.server_key_bits);
1044                 }
1045         }
1046
1047         if (use_privsep) {
1048                 struct passwd *pw;
1049                 struct stat st;
1050
1051                 if ((pw = getpwnam(SSH_PRIVSEP_USER)) == NULL)
1052                         fatal("Privilege separation user %s does not exist",
1053                             SSH_PRIVSEP_USER);
1054                 if ((stat(_PATH_PRIVSEP_CHROOT_DIR, &st) == -1) ||
1055                     (S_ISDIR(st.st_mode) == 0))
1056                         fatal("Missing privilege separation directory: %s",
1057                             _PATH_PRIVSEP_CHROOT_DIR);
1058
1059 #ifdef HAVE_CYGWIN
1060                 if (check_ntsec(_PATH_PRIVSEP_CHROOT_DIR) &&
1061                     (st.st_uid != getuid () ||
1062                     (st.st_mode & (S_IWGRP|S_IWOTH)) != 0))
1063 #else
1064                 if (st.st_uid != 0 || (st.st_mode & (S_IWGRP|S_IWOTH)) != 0)
1065 #endif
1066                         fatal("%s must be owned by root and not group or "
1067                             "world-writable.", _PATH_PRIVSEP_CHROOT_DIR);
1068         }
1069
1070         /* Configuration looks good, so exit if in test mode. */
1071         if (test_flag)
1072                 exit(0);
1073
1074         /*
1075          * Clear out any supplemental groups we may have inherited.  This
1076          * prevents inadvertent creation of files with bad modes (in the
1077          * portable version at least, it's certainly possible for PAM 
1078          * to create a file, and we can't control the code in every 
1079          * module which might be used).
1080          */
1081         if (setgroups(0, NULL) < 0)
1082                 debug("setgroups() failed: %.200s", strerror(errno));
1083
1084         /* Initialize the log (it is reinitialized below in case we forked). */
1085         if (debug_flag && !inetd_flag)
1086                 log_stderr = 1;
1087         log_init(__progname, options.log_level, options.log_facility, log_stderr);
1088
1089         /*
1090          * If not in debugging mode, and not started from inetd, disconnect
1091          * from the controlling terminal, and fork.  The original process
1092          * exits.
1093          */
1094         if (!(debug_flag || inetd_flag || no_daemon_flag)) {
1095 #ifdef TIOCNOTTY
1096                 int fd;
1097 #endif /* TIOCNOTTY */
1098                 if (daemon(0, 0) < 0)
1099                         fatal("daemon() failed: %.200s", strerror(errno));
1100
1101                 /* Disconnect from the controlling tty. */
1102 #ifdef TIOCNOTTY
1103                 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
1104                 if (fd >= 0) {
1105                         (void) ioctl(fd, TIOCNOTTY, NULL);
1106                         close(fd);
1107                 }
1108 #endif /* TIOCNOTTY */
1109         }
1110         /* Reinitialize the log (because of the fork above). */
1111         log_init(__progname, options.log_level, options.log_facility, log_stderr);
1112
1113         /* Initialize the random number generator. */
1114         arc4random_stir();
1115
1116         /* Chdir to the root directory so that the current disk can be
1117            unmounted if desired. */
1118         chdir("/");
1119
1120         /* ignore SIGPIPE */
1121         signal(SIGPIPE, SIG_IGN);
1122
1123         /* Start listening for a socket, unless started from inetd. */
1124         if (inetd_flag) {
1125                 int s1;
1126                 s1 = dup(0);    /* Make sure descriptors 0, 1, and 2 are in use. */
1127                 dup(s1);
1128                 sock_in = dup(0);
1129                 sock_out = dup(1);
1130                 startup_pipe = -1;
1131                 /*
1132                  * We intentionally do not close the descriptors 0, 1, and 2
1133                  * as our code for setting the descriptors won\'t work if
1134                  * ttyfd happens to be one of those.
1135                  */
1136                 debug("inetd sockets after dupping: %d, %d", sock_in, sock_out);
1137                 if (options.protocol & SSH_PROTO_1)
1138                         generate_ephemeral_server_key();
1139         } else {
1140                 for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
1141                         if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
1142                                 continue;
1143                         if (num_listen_socks >= MAX_LISTEN_SOCKS)
1144                                 fatal("Too many listen sockets. "
1145                                     "Enlarge MAX_LISTEN_SOCKS");
1146                         if (getnameinfo(ai->ai_addr, ai->ai_addrlen,
1147                             ntop, sizeof(ntop), strport, sizeof(strport),
1148                             NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
1149                                 error("getnameinfo failed");
1150                                 continue;
1151                         }
1152                         /* Create socket for listening. */
1153                         listen_sock = socket(ai->ai_family, ai->ai_socktype,
1154                             ai->ai_protocol);
1155                         if (listen_sock < 0) {
1156                                 /* kernel may not support ipv6 */
1157                                 verbose("socket: %.100s", strerror(errno));
1158                                 continue;
1159                         }
1160                         if (fcntl(listen_sock, F_SETFL, O_NONBLOCK) < 0) {
1161                                 error("listen_sock O_NONBLOCK: %s", strerror(errno));
1162                                 close(listen_sock);
1163                                 continue;
1164                         }
1165                         /*
1166                          * Set socket options.
1167                          * Allow local port reuse in TIME_WAIT.
1168                          */
1169                         if (setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
1170                             &on, sizeof(on)) == -1)
1171                                 error("setsockopt SO_REUSEADDR: %s", strerror(errno));
1172
1173                         debug("Bind to port %s on %s.", strport, ntop);
1174
1175                         /* Bind the socket to the desired port. */
1176                         if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1177                                 if (!ai->ai_next)
1178                                     error("Bind to port %s on %s failed: %.200s.",
1179                                             strport, ntop, strerror(errno));
1180                                 close(listen_sock);
1181                                 continue;
1182                         }
1183                         listen_socks[num_listen_socks] = listen_sock;
1184                         num_listen_socks++;
1185
1186                         /* Start listening on the port. */
1187                         logit("Server listening on %s port %s.", ntop, strport);
1188                         if (listen(listen_sock, 5) < 0)
1189                                 fatal("listen: %.100s", strerror(errno));
1190
1191                 }
1192                 freeaddrinfo(options.listen_addrs);
1193
1194                 if (!num_listen_socks)
1195                         fatal("Cannot bind any address.");
1196
1197                 if (options.protocol & SSH_PROTO_1)
1198                         generate_ephemeral_server_key();
1199
1200                 /*
1201                  * Arrange to restart on SIGHUP.  The handler needs
1202                  * listen_sock.
1203                  */
1204                 signal(SIGHUP, sighup_handler);
1205
1206                 signal(SIGTERM, sigterm_handler);
1207                 signal(SIGQUIT, sigterm_handler);
1208
1209                 /* Arrange SIGCHLD to be caught. */
1210                 signal(SIGCHLD, main_sigchld_handler);
1211
1212                 /* Write out the pid file after the sigterm handler is setup */
1213                 if (!debug_flag) {
1214                         /*
1215                          * Record our pid in /var/run/sshd.pid to make it
1216                          * easier to kill the correct sshd.  We don't want to
1217                          * do this before the bind above because the bind will
1218                          * fail if there already is a daemon, and this will
1219                          * overwrite any old pid in the file.
1220                          */
1221                         f = fopen(options.pid_file, "wb");
1222                         if (f) {
1223                                 fprintf(f, "%ld\n", (long) getpid());
1224                                 fclose(f);
1225                         }
1226                 }
1227
1228                 /* setup fd set for listen */
1229                 fdset = NULL;
1230                 maxfd = 0;
1231                 for (i = 0; i < num_listen_socks; i++)
1232                         if (listen_socks[i] > maxfd)
1233                                 maxfd = listen_socks[i];
1234                 /* pipes connected to unauthenticated childs */
1235                 startup_pipes = xmalloc(options.max_startups * sizeof(int));
1236                 for (i = 0; i < options.max_startups; i++)
1237                         startup_pipes[i] = -1;
1238
1239                 /*
1240                  * Stay listening for connections until the system crashes or
1241                  * the daemon is killed with a signal.
1242                  */
1243                 for (;;) {
1244                         if (received_sighup)
1245                                 sighup_restart();
1246                         if (fdset != NULL)
1247                                 xfree(fdset);
1248                         fdsetsz = howmany(maxfd+1, NFDBITS) * sizeof(fd_mask);
1249                         fdset = (fd_set *)xmalloc(fdsetsz);
1250                         memset(fdset, 0, fdsetsz);
1251
1252                         for (i = 0; i < num_listen_socks; i++)
1253                                 FD_SET(listen_socks[i], fdset);
1254                         for (i = 0; i < options.max_startups; i++)
1255                                 if (startup_pipes[i] != -1)
1256                                         FD_SET(startup_pipes[i], fdset);
1257
1258                         /* Wait in select until there is a connection. */
1259                         ret = select(maxfd+1, fdset, NULL, NULL, NULL);
1260                         if (ret < 0 && errno != EINTR)
1261                                 error("select: %.100s", strerror(errno));
1262                         if (received_sigterm) {
1263                                 logit("Received signal %d; terminating.",
1264                                     (int) received_sigterm);
1265                                 close_listen_socks();
1266                                 unlink(options.pid_file);
1267                                 exit(255);
1268                         }
1269                         if (key_used && key_do_regen) {
1270                                 generate_ephemeral_server_key();
1271                                 key_used = 0;
1272                                 key_do_regen = 0;
1273                         }
1274                         if (ret < 0)
1275                                 continue;
1276
1277                         for (i = 0; i < options.max_startups; i++)
1278                                 if (startup_pipes[i] != -1 &&
1279                                     FD_ISSET(startup_pipes[i], fdset)) {
1280                                         /*
1281                                          * the read end of the pipe is ready
1282                                          * if the child has closed the pipe
1283                                          * after successful authentication
1284                                          * or if the child has died
1285                                          */
1286                                         close(startup_pipes[i]);
1287                                         startup_pipes[i] = -1;
1288                                         startups--;
1289                                 }
1290                         for (i = 0; i < num_listen_socks; i++) {
1291                                 if (!FD_ISSET(listen_socks[i], fdset))
1292                                         continue;
1293                                 fromlen = sizeof(from);
1294                                 newsock = accept(listen_socks[i], (struct sockaddr *)&from,
1295                                     &fromlen);
1296                                 if (newsock < 0) {
1297                                         if (errno != EINTR && errno != EWOULDBLOCK)
1298                                                 error("accept: %.100s", strerror(errno));
1299                                         continue;
1300                                 }
1301                                 if (fcntl(newsock, F_SETFL, 0) < 0) {
1302                                         error("newsock del O_NONBLOCK: %s", strerror(errno));
1303                                         close(newsock);
1304                                         continue;
1305                                 }
1306                                 if (drop_connection(startups) == 1) {
1307                                         debug("drop connection #%d", startups);
1308                                         close(newsock);
1309                                         continue;
1310                                 }
1311                                 if (pipe(startup_p) == -1) {
1312                                         close(newsock);
1313                                         continue;
1314                                 }
1315
1316                                 for (j = 0; j < options.max_startups; j++)
1317                                         if (startup_pipes[j] == -1) {
1318                                                 startup_pipes[j] = startup_p[0];
1319                                                 if (maxfd < startup_p[0])
1320                                                         maxfd = startup_p[0];
1321                                                 startups++;
1322                                                 break;
1323                                         }
1324
1325                                 /*
1326                                  * Got connection.  Fork a child to handle it, unless
1327                                  * we are in debugging mode.
1328                                  */
1329                                 if (debug_flag) {
1330                                         /*
1331                                          * In debugging mode.  Close the listening
1332                                          * socket, and start processing the
1333                                          * connection without forking.
1334                                          */
1335                                         debug("Server will not fork when running in debugging mode.");
1336                                         close_listen_socks();
1337                                         sock_in = newsock;
1338                                         sock_out = newsock;
1339                                         startup_pipe = -1;
1340                                         pid = getpid();
1341                                         break;
1342                                 } else {
1343                                         /*
1344                                          * Normal production daemon.  Fork, and have
1345                                          * the child process the connection. The
1346                                          * parent continues listening.
1347                                          */
1348                                         if ((pid = fork()) == 0) {
1349                                                 /*
1350                                                  * Child.  Close the listening and max_startup
1351                                                  * sockets.  Start using the accepted socket.
1352                                                  * Reinitialize logging (since our pid has
1353                                                  * changed).  We break out of the loop to handle
1354                                                  * the connection.
1355                                                  */
1356                                                 startup_pipe = startup_p[1];
1357                                                 close_startup_pipes();
1358                                                 close_listen_socks();
1359                                                 sock_in = newsock;
1360                                                 sock_out = newsock;
1361                                                 log_init(__progname, options.log_level, options.log_facility, log_stderr);
1362                                                 break;
1363                                         }
1364                                 }
1365
1366                                 /* Parent.  Stay in the loop. */
1367                                 if (pid < 0)
1368                                         error("fork: %.100s", strerror(errno));
1369                                 else
1370                                         debug("Forked child %ld.", (long)pid);
1371
1372                                 close(startup_p[1]);
1373
1374                                 /* Mark that the key has been used (it was "given" to the child). */
1375                                 if ((options.protocol & SSH_PROTO_1) &&
1376                                     key_used == 0) {
1377                                         /* Schedule server key regeneration alarm. */
1378                                         signal(SIGALRM, key_regeneration_alarm);
1379                                         alarm(options.key_regeneration_time);
1380                                         key_used = 1;
1381                                 }
1382
1383                                 arc4random_stir();
1384
1385                                 /* Close the new socket (the child is now taking care of it). */
1386                                 close(newsock);
1387                         }
1388                         /* child process check (or debug mode) */
1389                         if (num_listen_socks < 0)
1390                                 break;
1391                 }
1392         }
1393
1394         /* This is the child processing a new connection. */
1395
1396         /*
1397          * Create a new session and process group since the 4.4BSD
1398          * setlogin() affects the entire process group.  We don't
1399          * want the child to be able to affect the parent.
1400          */
1401 #if !defined(SSHD_ACQUIRES_CTTY)
1402         /*
1403          * If setsid is called, on some platforms sshd will later acquire a
1404          * controlling terminal which will result in "could not set
1405          * controlling tty" errors.
1406          */
1407         if (!debug_flag && !inetd_flag && setsid() < 0)
1408                 error("setsid: %.100s", strerror(errno));
1409 #endif
1410
1411         /*
1412          * Disable the key regeneration alarm.  We will not regenerate the
1413          * key since we are no longer in a position to give it to anyone. We
1414          * will not restart on SIGHUP since it no longer makes sense.
1415          */
1416         alarm(0);
1417         signal(SIGALRM, SIG_DFL);
1418         signal(SIGHUP, SIG_DFL);
1419         signal(SIGTERM, SIG_DFL);
1420         signal(SIGQUIT, SIG_DFL);
1421         signal(SIGCHLD, SIG_DFL);
1422         signal(SIGINT, SIG_DFL);
1423
1424         /* Set keepalives if requested. */
1425         if (options.keepalives &&
1426             setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, &on,
1427             sizeof(on)) < 0)
1428                 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
1429
1430         /*
1431          * Register our connection.  This turns encryption off because we do
1432          * not have a key.
1433          */
1434         packet_set_connection(sock_in, sock_out);
1435
1436         remote_port = get_remote_port();
1437         remote_ip = get_remote_ipaddr();
1438
1439 #ifdef LIBWRAP
1440         /* Check whether logins are denied from this host. */
1441         {
1442                 struct request_info req;
1443
1444                 request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, 0);
1445                 fromhost(&req);
1446
1447                 if (!hosts_access(&req)) {
1448                         debug("Connection refused by tcp wrapper");
1449                         refuse(&req);
1450                         /* NOTREACHED */
1451                         fatal("libwrap refuse returns");
1452                 }
1453         }
1454 #endif /* LIBWRAP */
1455
1456         /* Log the connection. */
1457         verbose("Connection from %.500s port %d", remote_ip, remote_port);
1458
1459         /*
1460          * We don\'t want to listen forever unless the other side
1461          * successfully authenticates itself.  So we set up an alarm which is
1462          * cleared after successful authentication.  A limit of zero
1463          * indicates no limit. Note that we don\'t set the alarm in debugging
1464          * mode; it is just annoying to have the server exit just when you
1465          * are about to discover the bug.
1466          */
1467         signal(SIGALRM, grace_alarm_handler);
1468         if (!debug_flag)
1469                 alarm(options.login_grace_time);
1470
1471         sshd_exchange_identification(sock_in, sock_out);
1472         /*
1473          * Check that the connection comes from a privileged port.
1474          * Rhosts-Authentication only makes sense from privileged
1475          * programs.  Of course, if the intruder has root access on his local
1476          * machine, he can connect from any port.  So do not use these
1477          * authentication methods from machines that you do not trust.
1478          */
1479         if (options.rhosts_authentication &&
1480             (remote_port >= IPPORT_RESERVED ||
1481             remote_port < IPPORT_RESERVED / 2)) {
1482                 debug("Rhosts Authentication disabled, "
1483                     "originating port %d not trusted.", remote_port);
1484                 options.rhosts_authentication = 0;
1485         }
1486 #if defined(KRB4) && !defined(KRB5)
1487         if (!packet_connection_is_ipv4() &&
1488             options.kerberos_authentication) {
1489                 debug("Kerberos Authentication disabled, only available for IPv4.");
1490                 options.kerberos_authentication = 0;
1491         }
1492 #endif /* KRB4 && !KRB5 */
1493 #ifdef AFS
1494         /* If machine has AFS, set process authentication group. */
1495         if (k_hasafs()) {
1496                 k_setpag();
1497                 k_unlog();
1498         }
1499 #endif /* AFS */
1500
1501         packet_set_nonblocking();
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.186266 seconds and 5 git commands to generate.