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