]> andersk Git - gssapi-openssh.git/blob - openssh/sshd.c
bddaccead07e46ad976555a048de4d94de1e6325
[gssapi-openssh.git] / openssh / sshd.c
1 /* $OpenBSD: sshd.c,v 1.355 2008/02/14 13:10:31 mbalmer Exp $ */
2 /*
3  * Author: Tatu Ylonen <ylo@cs.hut.fi>
4  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5  *                    All rights reserved
6  * This program is the ssh daemon.  It listens for connections from clients,
7  * and performs authentication, executes use commands or shell, and forwards
8  * information to/from the application to the user client over an encrypted
9  * connection.  This can also handle forwarding of X11, TCP/IP, and
10  * authentication agent connections.
11  *
12  * As far as I am concerned, the code I have written for this software
13  * can be used freely for any purpose.  Any derived versions of this
14  * software must be clearly marked as such, and if the derived work is
15  * incompatible with the protocol description in the RFC file, it must be
16  * called by a name other than "ssh" or "Secure Shell".
17  *
18  * SSH2 implementation:
19  * Privilege Separation:
20  *
21  * Copyright (c) 2000, 2001, 2002 Markus Friedl.  All rights reserved.
22  * Copyright (c) 2002 Niels Provos.  All rights reserved.
23  *
24  * Redistribution and use in source and binary forms, with or without
25  * modification, are permitted provided that the following conditions
26  * are met:
27  * 1. Redistributions of source code must retain the above copyright
28  *    notice, this list of conditions and the following disclaimer.
29  * 2. Redistributions in binary form must reproduce the above copyright
30  *    notice, this list of conditions and the following disclaimer in the
31  *    documentation and/or other materials provided with the distribution.
32  *
33  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
34  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
35  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
36  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
37  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
38  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
39  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
40  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
41  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
42  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43  */
44
45 #include "includes.h"
46
47 #include <sys/types.h>
48 #include <sys/ioctl.h>
49 #include <sys/socket.h>
50 #ifdef HAVE_SYS_STAT_H
51 # include <sys/stat.h>
52 #endif
53 #ifdef HAVE_SYS_TIME_H
54 # include <sys/time.h>
55 #endif
56 #include "openbsd-compat/sys-tree.h"
57 #include <sys/wait.h>
58
59 #include <errno.h>
60 #include <fcntl.h>
61 #include <netdb.h>
62 #ifdef HAVE_PATHS_H
63 #include <paths.h>
64 #endif
65 #include <grp.h>
66 #include <pwd.h>
67 #include <signal.h>
68 #include <stdarg.h>
69 #include <stdio.h>
70 #include <stdlib.h>
71 #include <string.h>
72 #include <unistd.h>
73
74 #include <openssl/dh.h>
75 #include <openssl/bn.h>
76 #include <openssl/md5.h>
77 #include <openssl/rand.h>
78 #include "openbsd-compat/openssl-compat.h"
79
80 #ifdef HAVE_SECUREWARE
81 #include <sys/security.h>
82 #include <prot.h>
83 #endif
84
85 #include "xmalloc.h"
86 #include "ssh.h"
87 #include "ssh1.h"
88 #include "ssh2.h"
89 #include "rsa.h"
90 #include "sshpty.h"
91 #include "packet.h"
92 #include "log.h"
93 #include "buffer.h"
94 #include "servconf.h"
95 #include "uidswap.h"
96 #include "compat.h"
97 #include "cipher.h"
98 #include "key.h"
99 #include "kex.h"
100 #include "dh.h"
101 #include "myproposal.h"
102 #include "authfile.h"
103 #include "pathnames.h"
104 #include "atomicio.h"
105 #include "canohost.h"
106 #include "hostfile.h"
107 #include "auth.h"
108 #include "misc.h"
109 #include "msg.h"
110 #include "dispatch.h"
111 #include "channels.h"
112 #include "session.h"
113 #include "monitor_mm.h"
114 #include "monitor.h"
115 #ifdef GSSAPI
116 #include "ssh-gss.h"
117 #endif
118 #include "monitor_wrap.h"
119 #include "monitor_fdpass.h"
120 #include "version.h"
121
122 #ifdef USE_SECURITY_SESSION_API
123 #include <Security/AuthSession.h>
124 #endif
125
126 #ifdef LIBWRAP
127 #include <tcpd.h>
128 #include <syslog.h>
129 int allow_severity;
130 int deny_severity;
131 #endif /* LIBWRAP */
132
133 #ifndef O_NOCTTY
134 #define O_NOCTTY        0
135 #endif
136
137 /* Re-exec fds */
138 #define REEXEC_DEVCRYPTO_RESERVED_FD    (STDERR_FILENO + 1)
139 #define REEXEC_STARTUP_PIPE_FD          (STDERR_FILENO + 2)
140 #define REEXEC_CONFIG_PASS_FD           (STDERR_FILENO + 3)
141 #define REEXEC_MIN_FREE_FD              (STDERR_FILENO + 4)
142
143 int myflag = 0;
144
145
146 extern char *__progname;
147
148 /* Server configuration options. */
149 ServerOptions options;
150
151 /* Name of the server configuration file. */
152 char *config_file_name;
153
154 /*
155  * Debug mode flag.  This can be set on the command line.  If debug
156  * mode is enabled, extra debugging output will be sent to the system
157  * log, the daemon will not go to background, and will exit after processing
158  * the first connection.
159  */
160 int debug_flag = 0;
161
162 /* Flag indicating that the daemon should only test the configuration and keys. */
163 int test_flag = 0;
164
165 /* Flag indicating that the daemon is being started from inetd. */
166 int inetd_flag = 0;
167
168 /* Flag indicating that sshd should not detach and become a daemon. */
169 int no_daemon_flag = 0;
170
171 /* debug goes to stderr unless inetd_flag is set */
172 int log_stderr = 0;
173
174 /* Saved arguments to main(). */
175 char **saved_argv;
176 int saved_argc;
177
178 /* re-exec */
179 int rexeced_flag = 0;
180 int rexec_flag = 1;
181 int rexec_argc = 0;
182 char **rexec_argv;
183
184 /*
185  * The sockets that the server is listening; this is used in the SIGHUP
186  * signal handler.
187  */
188 #define MAX_LISTEN_SOCKS        16
189 int listen_socks[MAX_LISTEN_SOCKS];
190 int num_listen_socks = 0;
191
192 /*
193  * the client's version string, passed by sshd2 in compat mode. if != NULL,
194  * sshd will skip the version-number exchange
195  */
196 char *client_version_string = NULL;
197 char *server_version_string = NULL;
198
199 /* for rekeying XXX fixme */
200 Kex *xxx_kex;
201
202 /*
203  * Any really sensitive data in the application is contained in this
204  * structure. The idea is that this structure could be locked into memory so
205  * that the pages do not get written into swap.  However, there are some
206  * problems. The private key contains BIGNUMs, and we do not (in principle)
207  * have access to the internals of them, and locking just the structure is
208  * not very useful.  Currently, memory locking is not implemented.
209  */
210 struct {
211         Key     *server_key;            /* ephemeral server key */
212         Key     *ssh1_host_key;         /* ssh1 host key */
213         Key     **host_keys;            /* all private host keys */
214         int     have_ssh1_key;
215         int     have_ssh2_key;
216         u_char  ssh1_cookie[SSH_SESSION_KEY_LENGTH];
217 } sensitive_data;
218
219 /*
220  * Flag indicating whether the RSA server key needs to be regenerated.
221  * Is set in the SIGALRM handler and cleared when the key is regenerated.
222  */
223 static volatile sig_atomic_t key_do_regen = 0;
224
225 /* This is set to true when a signal is received. */
226 static volatile sig_atomic_t received_sighup = 0;
227 static volatile sig_atomic_t received_sigterm = 0;
228
229 /* session identifier, used by RSA-auth */
230 u_char session_id[16];
231
232 /* same for ssh2 */
233 u_char *session_id2 = NULL;
234 u_int session_id2_len = 0;
235
236 /* record remote hostname or ip */
237 u_int utmp_len = MAXHOSTNAMELEN;
238
239 /* options.max_startup sized array of fd ints */
240 int *startup_pipes = NULL;
241 int startup_pipe;               /* in child */
242
243 /* variables used for privilege separation */
244 int use_privsep = -1;
245 struct monitor *pmonitor = NULL;
246
247 /* global authentication context */
248 Authctxt *the_authctxt = NULL;
249
250 /* sshd_config buffer */
251 Buffer cfg;
252
253 /* message to be displayed after login */
254 Buffer loginmsg;
255
256 /* Unprivileged user */
257 struct passwd *privsep_pw = NULL;
258
259 /* Prototypes for various functions defined later in this file. */
260 void destroy_sensitive_data(void);
261 void demote_sensitive_data(void);
262
263 static void do_ssh1_kex(void);
264 static void do_ssh2_kex(void);
265
266 /*
267  * Close all listening sockets
268  */
269 static void
270 close_listen_socks(void)
271 {
272         int i;
273
274         for (i = 0; i < num_listen_socks; i++)
275                 close(listen_socks[i]);
276         num_listen_socks = -1;
277 }
278
279 static void
280 close_startup_pipes(void)
281 {
282         int i;
283
284         if (startup_pipes)
285                 for (i = 0; i < options.max_startups; i++)
286                         if (startup_pipes[i] != -1)
287                                 close(startup_pipes[i]);
288 }
289
290 /*
291  * Signal handler for SIGHUP.  Sshd execs itself when it receives SIGHUP;
292  * the effect is to reread the configuration file (and to regenerate
293  * the server key).
294  */
295
296 /*ARGSUSED*/
297 static void
298 sighup_handler(int sig)
299 {
300         int save_errno = errno;
301
302         received_sighup = 1;
303         signal(SIGHUP, sighup_handler);
304         errno = save_errno;
305 }
306
307 /*
308  * Called from the main program after receiving SIGHUP.
309  * Restarts the server.
310  */
311 static void
312 sighup_restart(void)
313 {
314         logit("Received SIGHUP; restarting.");
315         close_listen_socks();
316         close_startup_pipes();
317         alarm(0);  /* alarm timer persists across exec */
318         execv(saved_argv[0], saved_argv);
319         logit("RESTART FAILED: av[0]='%.100s', error: %.100s.", saved_argv[0],
320             strerror(errno));
321         exit(1);
322 }
323
324 /*
325  * Generic signal handler for terminating signals in the master daemon.
326  */
327 /*ARGSUSED*/
328 static void
329 sigterm_handler(int sig)
330 {
331         received_sigterm = sig;
332 }
333
334 /*
335  * SIGCHLD handler.  This is called whenever a child dies.  This will then
336  * reap any zombies left by exited children.
337  */
338 /*ARGSUSED*/
339 static void
340 main_sigchld_handler(int sig)
341 {
342         int save_errno = errno;
343         pid_t pid;
344         int status;
345
346         while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
347             (pid < 0 && errno == EINTR))
348                 ;
349
350         signal(SIGCHLD, main_sigchld_handler);
351         errno = save_errno;
352 }
353
354 /*
355  * Signal handler for the alarm after the login grace period has expired.
356  */
357 /*ARGSUSED*/
358 static void
359 grace_alarm_handler(int sig)
360 {
361         if (use_privsep && pmonitor != NULL && pmonitor->m_pid > 0)
362                 kill(pmonitor->m_pid, SIGALRM);
363
364         /* Log error and exit. */
365         sigdie("Timeout before authentication for %s", get_remote_ipaddr());
366 }
367
368 /*
369  * Signal handler for the key regeneration alarm.  Note that this
370  * alarm only occurs in the daemon waiting for connections, and it does not
371  * do anything with the private key or random state before forking.
372  * Thus there should be no concurrency control/asynchronous execution
373  * problems.
374  */
375 static void
376 generate_ephemeral_server_key(void)
377 {
378         u_int32_t rnd = 0;
379         int i;
380
381         verbose("Generating %s%d bit RSA key.",
382             sensitive_data.server_key ? "new " : "", options.server_key_bits);
383         if (sensitive_data.server_key != NULL)
384                 key_free(sensitive_data.server_key);
385         sensitive_data.server_key = key_generate(KEY_RSA1,
386             options.server_key_bits);
387         verbose("RSA key generation complete.");
388
389         for (i = 0; i < SSH_SESSION_KEY_LENGTH; i++) {
390                 if (i % 4 == 0)
391                         rnd = arc4random();
392                 sensitive_data.ssh1_cookie[i] = rnd & 0xff;
393                 rnd >>= 8;
394         }
395         arc4random_stir();
396 }
397
398 /*ARGSUSED*/
399 static void
400 key_regeneration_alarm(int sig)
401 {
402         int save_errno = errno;
403
404         signal(SIGALRM, SIG_DFL);
405         errno = save_errno;
406         key_do_regen = 1;
407 }
408
409 static void
410 sshd_exchange_identification(int sock_in, int sock_out)
411 {
412         u_int i;
413         int mismatch;
414         int remote_major, remote_minor;
415         int major, minor;
416         char *s;
417         char buf[256];                  /* Must not be larger than remote_version. */
418         char remote_version[256];       /* Must be at least as big as buf. */
419
420         if ((options.protocol & SSH_PROTO_1) &&
421             (options.protocol & SSH_PROTO_2)) {
422                 major = PROTOCOL_MAJOR_1;
423                 minor = 99;
424         } else if (options.protocol & SSH_PROTO_2) {
425                 major = PROTOCOL_MAJOR_2;
426                 minor = PROTOCOL_MINOR_2;
427         } else {
428                 major = PROTOCOL_MAJOR_1;
429                 minor = PROTOCOL_MINOR_1;
430         }
431         snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n", major, minor, SSH_RELEASE);
432         server_version_string = xstrdup(buf);
433
434         /* Send our protocol version identification. */
435         if (atomicio(vwrite, sock_out, server_version_string,
436             strlen(server_version_string))
437             != strlen(server_version_string)) {
438                 logit("Could not write ident string to %s", get_remote_ipaddr());
439                 cleanup_exit(255);
440         }
441
442         /* Read other sides version identification. */
443         memset(buf, 0, sizeof(buf));
444         for (i = 0; i < sizeof(buf) - 1; i++) {
445                 if (atomicio(read, sock_in, &buf[i], 1) != 1) {
446                         logit("Did not receive identification string from %s",
447                             get_remote_ipaddr());
448                         cleanup_exit(255);
449                 }
450                 if (buf[i] == '\r') {
451                         buf[i] = 0;
452                         /* Kludge for F-Secure Macintosh < 1.0.2 */
453                         if (i == 12 &&
454                             strncmp(buf, "SSH-1.5-W1.0", 12) == 0)
455                                 break;
456                         continue;
457                 }
458                 if (buf[i] == '\n') {
459                         buf[i] = 0;
460                         break;
461                 }
462         }
463         buf[sizeof(buf) - 1] = 0;
464         client_version_string = xstrdup(buf);
465
466         /*
467          * Check that the versions match.  In future this might accept
468          * several versions and set appropriate flags to handle them.
469          */
470         if (sscanf(client_version_string, "SSH-%d.%d-%[^\n]\n",
471             &remote_major, &remote_minor, remote_version) != 3) {
472                 s = "Protocol mismatch.\n";
473                 (void) atomicio(vwrite, sock_out, s, strlen(s));
474                 close(sock_in);
475                 close(sock_out);
476                 logit("Bad protocol version identification '%.100s' from %s",
477                     client_version_string, get_remote_ipaddr());
478                 cleanup_exit(255);
479         }
480         debug("Client protocol version %d.%d; client software version %.100s",
481             remote_major, remote_minor, remote_version);
482         logit("SSH: Server;Ltype: Version;Remote: %s-%d;Protocol: %d.%d;Client: %.100s",
483               get_remote_ipaddr(), get_remote_port(),
484             remote_major, remote_minor, remote_version);
485
486         compat_datafellows(remote_version);
487
488         if (datafellows & SSH_BUG_PROBE) {
489                 logit("probed from %s with %s.  Don't panic.",
490                     get_remote_ipaddr(), client_version_string);
491                 cleanup_exit(255);
492         }
493
494         if (datafellows & SSH_BUG_SCANNER) {
495                 logit("scanned from %s with %s.  Don't panic.",
496                     get_remote_ipaddr(), client_version_string);
497                 cleanup_exit(255);
498         }
499
500         mismatch = 0;
501         switch (remote_major) {
502         case 1:
503                 if (remote_minor == 99) {
504                         if (options.protocol & SSH_PROTO_2)
505                                 enable_compat20();
506                         else
507                                 mismatch = 1;
508                         break;
509                 }
510                 if (!(options.protocol & SSH_PROTO_1)) {
511                         mismatch = 1;
512                         break;
513                 }
514                 if (remote_minor < 3) {
515                         packet_disconnect("Your ssh version is too old and "
516                             "is no longer supported.  Please install a newer version.");
517                 } else if (remote_minor == 3) {
518                         /* note that this disables agent-forwarding */
519                         enable_compat13();
520                 }
521                 break;
522         case 2:
523                 if (options.protocol & SSH_PROTO_2) {
524                         enable_compat20();
525                         break;
526                 }
527                 /* FALLTHROUGH */
528         default:
529                 mismatch = 1;
530                 break;
531         }
532         chop(server_version_string);
533         debug("Local version string %.200s", server_version_string);
534
535         if (mismatch) {
536                 s = "Protocol major versions differ.\n";
537                 (void) atomicio(vwrite, sock_out, s, strlen(s));
538                 close(sock_in);
539                 close(sock_out);
540                 logit("Protocol major versions differ for %s: %.200s vs. %.200s",
541                     get_remote_ipaddr(),
542                     server_version_string, client_version_string);
543                 cleanup_exit(255);
544         }
545 }
546
547 /* Destroy the host and server keys.  They will no longer be needed. */
548 void
549 destroy_sensitive_data(void)
550 {
551         int i;
552
553         if (sensitive_data.server_key) {
554                 key_free(sensitive_data.server_key);
555                 sensitive_data.server_key = NULL;
556         }
557         for (i = 0; i < options.num_host_key_files; i++) {
558                 if (sensitive_data.host_keys[i]) {
559                         key_free(sensitive_data.host_keys[i]);
560                         sensitive_data.host_keys[i] = NULL;
561                 }
562         }
563         sensitive_data.ssh1_host_key = NULL;
564         memset(sensitive_data.ssh1_cookie, 0, SSH_SESSION_KEY_LENGTH);
565 }
566
567 /* Demote private to public keys for network child */
568 void
569 demote_sensitive_data(void)
570 {
571         Key *tmp;
572         int i;
573
574         if (sensitive_data.server_key) {
575                 tmp = key_demote(sensitive_data.server_key);
576                 key_free(sensitive_data.server_key);
577                 sensitive_data.server_key = tmp;
578         }
579
580         for (i = 0; i < options.num_host_key_files; i++) {
581                 if (sensitive_data.host_keys[i]) {
582                         tmp = key_demote(sensitive_data.host_keys[i]);
583                         key_free(sensitive_data.host_keys[i]);
584                         sensitive_data.host_keys[i] = tmp;
585                         if (tmp->type == KEY_RSA1)
586                                 sensitive_data.ssh1_host_key = tmp;
587                 }
588         }
589
590         /* We do not clear ssh1_host key and cookie.  XXX - Okay Niels? */
591 }
592
593 static void
594 privsep_preauth_child(void)
595 {
596         u_int32_t rnd[256];
597         gid_t gidset[1];
598         u_int i;
599
600         /* Enable challenge-response authentication for privilege separation */
601         privsep_challenge_enable();
602
603         arc4random_stir();
604         for (i = 0; i < 256; i++)
605                 rnd[i] = arc4random();
606         RAND_seed(rnd, sizeof(rnd));
607
608         /* Demote the private keys to public keys. */
609         demote_sensitive_data();
610
611         /* Change our root directory */
612         if (chroot(_PATH_PRIVSEP_CHROOT_DIR) == -1)
613                 fatal("chroot(\"%s\"): %s", _PATH_PRIVSEP_CHROOT_DIR,
614                     strerror(errno));
615         if (chdir("/") == -1)
616                 fatal("chdir(\"/\"): %s", strerror(errno));
617
618         /* Drop our privileges */
619         debug3("privsep user:group %u:%u", (u_int)privsep_pw->pw_uid,
620             (u_int)privsep_pw->pw_gid);
621 #if 0
622         /* XXX not ready, too heavy after chroot */
623         do_setusercontext(privsep_pw);
624 #else
625         gidset[0] = privsep_pw->pw_gid;
626         if (setgroups(1, gidset) < 0)
627                 fatal("setgroups: %.100s", strerror(errno));
628         permanently_set_uid(privsep_pw);
629 #endif
630 }
631
632 static int
633 privsep_preauth(Authctxt *authctxt)
634 {
635         int status;
636         pid_t pid;
637
638         /* Set up unprivileged child process to deal with network data */
639         pmonitor = monitor_init();
640         /* Store a pointer to the kex for later rekeying */
641         pmonitor->m_pkex = &xxx_kex;
642
643         pid = fork();
644         if (pid == -1) {
645                 fatal("fork of unprivileged child failed");
646         } else if (pid != 0) {
647                 debug2("Network child is on pid %ld", (long)pid);
648
649                 close(pmonitor->m_recvfd);
650                 pmonitor->m_pid = pid;
651                 monitor_child_preauth(authctxt, pmonitor);
652                 close(pmonitor->m_sendfd);
653
654                 /* Sync memory */
655                 monitor_sync(pmonitor);
656
657                 /* Wait for the child's exit status */
658                 while (waitpid(pid, &status, 0) < 0)
659                         if (errno != EINTR)
660                                 break;
661                 return (1);
662         } else {
663                 /* child */
664
665                 close(pmonitor->m_sendfd);
666
667                 /* Demote the child */
668                 if (getuid() == 0 || geteuid() == 0)
669                         privsep_preauth_child();
670                 setproctitle("%s", "[net]");
671         }
672         return (0);
673 }
674
675 static void
676 privsep_postauth(Authctxt *authctxt)
677 {
678         u_int32_t rnd[256];
679         u_int i;
680
681 #ifdef DISABLE_FD_PASSING
682         if (1) {
683 #else
684         if (authctxt->pw->pw_uid == 0 || options.use_login) {
685 #endif
686                 /* File descriptor passing is broken or root login */
687                 use_privsep = 0;
688                 goto skip;
689         }
690
691         /* New socket pair */
692         monitor_reinit(pmonitor);
693
694         pmonitor->m_pid = fork();
695         if (pmonitor->m_pid == -1)
696                 fatal("fork of unprivileged child failed");
697         else if (pmonitor->m_pid != 0) {
698                 debug2("User child is on pid %ld", (long)pmonitor->m_pid);
699                 close(pmonitor->m_recvfd);
700                 buffer_clear(&loginmsg);
701                 monitor_child_postauth(pmonitor);
702
703                 /* NEVERREACHED */
704                 exit(0);
705         }
706
707         close(pmonitor->m_sendfd);
708
709         /* Demote the private keys to public keys. */
710         demote_sensitive_data();
711
712         arc4random_stir();
713         for (i = 0; i < 256; i++)
714                 rnd[i] = arc4random();
715         RAND_seed(rnd, sizeof(rnd));
716
717         /* Drop privileges */
718         do_setusercontext(authctxt->pw);
719
720  skip:
721         /* It is safe now to apply the key state */
722         monitor_apply_keystate(pmonitor);
723
724         /*
725          * Tell the packet layer that authentication was successful, since
726          * this information is not part of the key state.
727          */
728         packet_set_authenticated();
729 }
730
731 static char *
732 list_hostkey_types(void)
733 {
734         Buffer b;
735         const char *p;
736         char *ret;
737         int i;
738
739         buffer_init(&b);
740         for (i = 0; i < options.num_host_key_files; i++) {
741                 Key *key = sensitive_data.host_keys[i];
742                 if (key == NULL)
743                         continue;
744                 switch (key->type) {
745                 case KEY_RSA:
746                 case KEY_DSA:
747                         if (buffer_len(&b) > 0)
748                                 buffer_append(&b, ",", 1);
749                         p = key_ssh_name(key);
750                         buffer_append(&b, p, strlen(p));
751                         break;
752                 }
753         }
754         buffer_append(&b, "\0", 1);
755         ret = xstrdup(buffer_ptr(&b));
756         buffer_free(&b);
757         debug("list_hostkey_types: %s", ret);
758         return ret;
759 }
760
761 Key *
762 get_hostkey_by_type(int type)
763 {
764         int i;
765
766         for (i = 0; i < options.num_host_key_files; i++) {
767                 Key *key = sensitive_data.host_keys[i];
768                 if (key != NULL && key->type == type)
769                         return key;
770         }
771         return NULL;
772 }
773
774 Key *
775 get_hostkey_by_index(int ind)
776 {
777         if (ind < 0 || ind >= options.num_host_key_files)
778                 return (NULL);
779         return (sensitive_data.host_keys[ind]);
780 }
781
782 int
783 get_hostkey_index(Key *key)
784 {
785         int i;
786
787         for (i = 0; i < options.num_host_key_files; i++) {
788                 if (key == sensitive_data.host_keys[i])
789                         return (i);
790         }
791         return (-1);
792 }
793
794 /*
795  * returns 1 if connection should be dropped, 0 otherwise.
796  * dropping starts at connection #max_startups_begin with a probability
797  * of (max_startups_rate/100). the probability increases linearly until
798  * all connections are dropped for startups > max_startups
799  */
800 static int
801 drop_connection(int startups)
802 {
803         int p, r;
804
805         if (startups < options.max_startups_begin)
806                 return 0;
807         if (startups >= options.max_startups)
808                 return 1;
809         if (options.max_startups_rate == 100)
810                 return 1;
811
812         p  = 100 - options.max_startups_rate;
813         p *= startups - options.max_startups_begin;
814         p /= options.max_startups - options.max_startups_begin;
815         p += options.max_startups_rate;
816         r = arc4random() % 100;
817
818         debug("drop_connection: p %d, r %d", p, r);
819         return (r < p) ? 1 : 0;
820 }
821
822 static void
823 usage(void)
824 {
825         fprintf(stderr, "%s, %s\n",
826             SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
827         fprintf(stderr,
828 "usage: sshd [-46Ddeiqt] [-b bits] [-f config_file] [-g login_grace_time]\n"
829 "            [-h host_key_file] [-k key_gen_time] [-o option] [-p port] [-u len]\n"
830         );
831         exit(1);
832 }
833
834 static void
835 send_rexec_state(int fd, Buffer *conf)
836 {
837         Buffer m;
838
839         debug3("%s: entering fd = %d config len %d", __func__, fd,
840             buffer_len(conf));
841
842         /*
843          * Protocol from reexec master to child:
844          *      string  configuration
845          *      u_int   ephemeral_key_follows
846          *      bignum  e               (only if ephemeral_key_follows == 1)
847          *      bignum  n                       "
848          *      bignum  d                       "
849          *      bignum  iqmp                    "
850          *      bignum  p                       "
851          *      bignum  q                       "
852          *      string rngseed          (only if OpenSSL is not self-seeded)
853          */
854         buffer_init(&m);
855         buffer_put_cstring(&m, buffer_ptr(conf));
856
857         if (sensitive_data.server_key != NULL &&
858             sensitive_data.server_key->type == KEY_RSA1) {
859                 buffer_put_int(&m, 1);
860                 buffer_put_bignum(&m, sensitive_data.server_key->rsa->e);
861                 buffer_put_bignum(&m, sensitive_data.server_key->rsa->n);
862                 buffer_put_bignum(&m, sensitive_data.server_key->rsa->d);
863                 buffer_put_bignum(&m, sensitive_data.server_key->rsa->iqmp);
864                 buffer_put_bignum(&m, sensitive_data.server_key->rsa->p);
865                 buffer_put_bignum(&m, sensitive_data.server_key->rsa->q);
866         } else
867                 buffer_put_int(&m, 0);
868
869 #ifndef OPENSSL_PRNG_ONLY
870         rexec_send_rng_seed(&m);
871 #endif
872
873         if (ssh_msg_send(fd, 0, &m) == -1)
874                 fatal("%s: ssh_msg_send failed", __func__);
875
876         buffer_free(&m);
877
878         debug3("%s: done", __func__);
879 }
880
881 static void
882 recv_rexec_state(int fd, Buffer *conf)
883 {
884         Buffer m;
885         char *cp;
886         u_int len;
887
888         debug3("%s: entering fd = %d", __func__, fd);
889
890         buffer_init(&m);
891
892         if (ssh_msg_recv(fd, &m) == -1)
893                 fatal("%s: ssh_msg_recv failed", __func__);
894         if (buffer_get_char(&m) != 0)
895                 fatal("%s: rexec version mismatch", __func__);
896
897         cp = buffer_get_string(&m, &len);
898         if (conf != NULL)
899                 buffer_append(conf, cp, len + 1);
900         xfree(cp);
901
902         if (buffer_get_int(&m)) {
903                 if (sensitive_data.server_key != NULL)
904                         key_free(sensitive_data.server_key);
905                 sensitive_data.server_key = key_new_private(KEY_RSA1);
906                 buffer_get_bignum(&m, sensitive_data.server_key->rsa->e);
907                 buffer_get_bignum(&m, sensitive_data.server_key->rsa->n);
908                 buffer_get_bignum(&m, sensitive_data.server_key->rsa->d);
909                 buffer_get_bignum(&m, sensitive_data.server_key->rsa->iqmp);
910                 buffer_get_bignum(&m, sensitive_data.server_key->rsa->p);
911                 buffer_get_bignum(&m, sensitive_data.server_key->rsa->q);
912                 rsa_generate_additional_parameters(
913                     sensitive_data.server_key->rsa);
914         }
915
916 #ifndef OPENSSL_PRNG_ONLY
917         rexec_recv_rng_seed(&m);
918 #endif
919
920         buffer_free(&m);
921
922         debug3("%s: done", __func__);
923 }
924
925 /* Accept a connection from inetd */
926 static void
927 server_accept_inetd(int *sock_in, int *sock_out)
928 {
929         int fd;
930
931         startup_pipe = -1;
932         if (rexeced_flag) {
933                 close(REEXEC_CONFIG_PASS_FD);
934                 *sock_in = *sock_out = dup(STDIN_FILENO);
935                 if (!debug_flag) {
936                         startup_pipe = dup(REEXEC_STARTUP_PIPE_FD);
937                         close(REEXEC_STARTUP_PIPE_FD);
938                 }
939         } else {
940                 *sock_in = dup(STDIN_FILENO);
941                 *sock_out = dup(STDOUT_FILENO);
942         }
943         /*
944          * We intentionally do not close the descriptors 0, 1, and 2
945          * as our code for setting the descriptors won't work if
946          * ttyfd happens to be one of those.
947          */
948         if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
949                 dup2(fd, STDIN_FILENO);
950                 dup2(fd, STDOUT_FILENO);
951                 if (fd > STDOUT_FILENO)
952                         close(fd);
953         }
954         debug("inetd sockets after dupping: %d, %d", *sock_in, *sock_out);
955 }
956
957 /*
958  * Listen for TCP connections
959  */
960 static void
961 server_listen(void)
962 {
963         int ret, listen_sock, on = 1;
964         struct addrinfo *ai;
965         char ntop[NI_MAXHOST], strport[NI_MAXSERV];
966         int socksize;
967         int socksizelen = sizeof(int);
968
969         for (ai = options.listen_addrs; ai; ai = ai->ai_next) {
970                 if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
971                         continue;
972                 if (num_listen_socks >= MAX_LISTEN_SOCKS)
973                         fatal("Too many listen sockets. "
974                             "Enlarge MAX_LISTEN_SOCKS");
975                 if ((ret = getnameinfo(ai->ai_addr, ai->ai_addrlen,
976                     ntop, sizeof(ntop), strport, sizeof(strport),
977                     NI_NUMERICHOST|NI_NUMERICSERV)) != 0) {
978                         error("getnameinfo failed: %.100s",
979                             ssh_gai_strerror(ret));
980                         continue;
981                 }
982                 /* Create socket for listening. */
983                 listen_sock = socket(ai->ai_family, ai->ai_socktype,
984                     ai->ai_protocol);
985                 if (listen_sock < 0) {
986                         /* kernel may not support ipv6 */
987                         verbose("socket: %.100s", strerror(errno));
988                         continue;
989                 }
990                 if (set_nonblock(listen_sock) == -1) {
991                         close(listen_sock);
992                         continue;
993                 }
994                 /*
995                  * Set socket options.
996                  * Allow local port reuse in TIME_WAIT.
997                  */
998                 if (setsockopt(listen_sock, SOL_SOCKET, SO_REUSEADDR,
999                     &on, sizeof(on)) == -1)
1000                         error("setsockopt SO_REUSEADDR: %s", strerror(errno));
1001
1002 #ifdef IPV6_V6ONLY
1003                 /* Only communicate in IPv6 over AF_INET6 sockets. */
1004                 if (ai->ai_family == AF_INET6) {
1005                         if (setsockopt(listen_sock, IPPROTO_IPV6, IPV6_V6ONLY,
1006                             &on, sizeof(on)) == -1)
1007                                 error("setsockopt IPV6_V6ONLY: %s",
1008                                     strerror(errno));
1009                 }
1010 #endif
1011
1012                 debug("Bind to port %s on %s.", strport, ntop);
1013
1014                 getsockopt(listen_sock, SOL_SOCKET, SO_RCVBUF, 
1015                                    &socksize, &socksizelen);
1016                 debug("Server TCP RWIN socket size: %d", socksize);
1017                 debug("HPN Buffer Size: %d", options.hpn_buffer_size);
1018
1019                 /* Bind the socket to the desired port. */
1020                 if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) {
1021                         error("Bind to port %s on %s failed: %.200s.",
1022                             strport, ntop, strerror(errno));
1023                         close(listen_sock);
1024                         continue;
1025                 }
1026                 listen_socks[num_listen_socks] = listen_sock;
1027                 num_listen_socks++;
1028
1029                 /* Start listening on the port. */
1030                 if (listen(listen_sock, SSH_LISTEN_BACKLOG) < 0)
1031                         fatal("listen on [%s]:%s: %.100s",
1032                             ntop, strport, strerror(errno));
1033                 logit("Server listening on %s port %s.", ntop, strport);
1034         }
1035         freeaddrinfo(options.listen_addrs);
1036
1037         if (!num_listen_socks)
1038                 fatal("Cannot bind any address.");
1039 }
1040
1041 /*
1042  * The main TCP accept loop. Note that, for the non-debug case, returns
1043  * from this function are in a forked subprocess.
1044  */
1045 static void
1046 server_accept_loop(int *sock_in, int *sock_out, int *newsock, int *config_s)
1047 {
1048         fd_set *fdset;
1049         int i, j, ret, maxfd;
1050         int key_used = 0, startups = 0;
1051         int startup_p[2] = { -1 , -1 };
1052         struct sockaddr_storage from;
1053         socklen_t fromlen;
1054         pid_t pid;
1055
1056         /* setup fd set for accept */
1057         fdset = NULL;
1058         maxfd = 0;
1059         for (i = 0; i < num_listen_socks; i++)
1060                 if (listen_socks[i] > maxfd)
1061                         maxfd = listen_socks[i];
1062         /* pipes connected to unauthenticated childs */
1063         startup_pipes = xcalloc(options.max_startups, sizeof(int));
1064         for (i = 0; i < options.max_startups; i++)
1065                 startup_pipes[i] = -1;
1066
1067         /*
1068          * Stay listening for connections until the system crashes or
1069          * the daemon is killed with a signal.
1070          */
1071         for (;;) {
1072                 if (received_sighup)
1073                         sighup_restart();
1074                 if (fdset != NULL)
1075                         xfree(fdset);
1076                 fdset = (fd_set *)xcalloc(howmany(maxfd + 1, NFDBITS),
1077                     sizeof(fd_mask));
1078
1079                 for (i = 0; i < num_listen_socks; i++)
1080                         FD_SET(listen_socks[i], fdset);
1081                 for (i = 0; i < options.max_startups; i++)
1082                         if (startup_pipes[i] != -1)
1083                                 FD_SET(startup_pipes[i], fdset);
1084
1085                 /* Wait in select until there is a connection. */
1086                 ret = select(maxfd+1, fdset, NULL, NULL, NULL);
1087                 if (ret < 0 && errno != EINTR)
1088                         error("select: %.100s", strerror(errno));
1089                 if (received_sigterm) {
1090                         logit("Received signal %d; terminating.",
1091                             (int) received_sigterm);
1092                         close_listen_socks();
1093                         unlink(options.pid_file);
1094                         exit(255);
1095                 }
1096                 if (key_used && key_do_regen) {
1097                         generate_ephemeral_server_key();
1098                         key_used = 0;
1099                         key_do_regen = 0;
1100                 }
1101                 if (ret < 0)
1102                         continue;
1103
1104                 for (i = 0; i < options.max_startups; i++)
1105                         if (startup_pipes[i] != -1 &&
1106                             FD_ISSET(startup_pipes[i], fdset)) {
1107                                 /*
1108                                  * the read end of the pipe is ready
1109                                  * if the child has closed the pipe
1110                                  * after successful authentication
1111                                  * or if the child has died
1112                                  */
1113                                 close(startup_pipes[i]);
1114                                 startup_pipes[i] = -1;
1115                                 startups--;
1116                         }
1117                 for (i = 0; i < num_listen_socks; i++) {
1118                         if (!FD_ISSET(listen_socks[i], fdset))
1119                                 continue;
1120                         fromlen = sizeof(from);
1121                         *newsock = accept(listen_socks[i],
1122                             (struct sockaddr *)&from, &fromlen);
1123                         if (*newsock < 0) {
1124                                 if (errno != EINTR && errno != EWOULDBLOCK)
1125                                         error("accept: %.100s", strerror(errno));
1126                                 continue;
1127                         }
1128                         if (unset_nonblock(*newsock) == -1) {
1129                                 close(*newsock);
1130                                 continue;
1131                         }
1132                         if (drop_connection(startups) == 1) {
1133                                 debug("drop connection #%d", startups);
1134                                 close(*newsock);
1135                                 continue;
1136                         }
1137                         if (pipe(startup_p) == -1) {
1138                                 close(*newsock);
1139                                 continue;
1140                         }
1141
1142                         if (rexec_flag && socketpair(AF_UNIX,
1143                             SOCK_STREAM, 0, config_s) == -1) {
1144                                 error("reexec socketpair: %s",
1145                                     strerror(errno));
1146                                 close(*newsock);
1147                                 close(startup_p[0]);
1148                                 close(startup_p[1]);
1149                                 continue;
1150                         }
1151
1152                         for (j = 0; j < options.max_startups; j++)
1153                                 if (startup_pipes[j] == -1) {
1154                                         startup_pipes[j] = startup_p[0];
1155                                         if (maxfd < startup_p[0])
1156                                                 maxfd = startup_p[0];
1157                                         startups++;
1158                                         break;
1159                                 }
1160
1161                         /*
1162                          * Got connection.  Fork a child to handle it, unless
1163                          * we are in debugging mode.
1164                          */
1165                         if (debug_flag) {
1166                                 /*
1167                                  * In debugging mode.  Close the listening
1168                                  * socket, and start processing the
1169                                  * connection without forking.
1170                                  */
1171                                 debug("Server will not fork when running in debugging mode.");
1172                                 close_listen_socks();
1173                                 *sock_in = *newsock;
1174                                 *sock_out = *newsock;
1175                                 close(startup_p[0]);
1176                                 close(startup_p[1]);
1177                                 startup_pipe = -1;
1178                                 pid = getpid();
1179                                 if (rexec_flag) {
1180                                         send_rexec_state(config_s[0],
1181                                             &cfg);
1182                                         close(config_s[0]);
1183                                 }
1184                                 break;
1185                         }
1186
1187                         /*
1188                          * Normal production daemon.  Fork, and have
1189                          * the child process the connection. The
1190                          * parent continues listening.
1191                          */
1192                         platform_pre_fork();
1193                         if ((pid = fork()) == 0) {
1194                                 /*
1195                                  * Child.  Close the listening and
1196                                  * max_startup sockets.  Start using
1197                                  * the accepted socket. Reinitialize
1198                                  * logging (since our pid has changed).
1199                                  * We break out of the loop to handle
1200                                  * the connection.
1201                                  */
1202                                 platform_post_fork_child();
1203                                 startup_pipe = startup_p[1];
1204                                 close_startup_pipes();
1205                                 close_listen_socks();
1206                                 *sock_in = *newsock;
1207                                 *sock_out = *newsock;
1208                                 log_init(__progname,
1209                                     options.log_level,
1210                                     options.log_facility,
1211                                     log_stderr);
1212                                 if (rexec_flag)
1213                                         close(config_s[0]);
1214                                 break;
1215                         }
1216
1217                         /* Parent.  Stay in the loop. */
1218                         platform_post_fork_parent(pid);
1219                         if (pid < 0)
1220                                 error("fork: %.100s", strerror(errno));
1221                         else
1222                                 debug("Forked child %ld.", (long)pid);
1223
1224                         close(startup_p[1]);
1225
1226                         if (rexec_flag) {
1227                                 send_rexec_state(config_s[0], &cfg);
1228                                 close(config_s[0]);
1229                                 close(config_s[1]);
1230                         }
1231
1232                         /*
1233                          * Mark that the key has been used (it
1234                          * was "given" to the child).
1235                          */
1236                         if ((options.protocol & SSH_PROTO_1) &&
1237                             key_used == 0) {
1238                                 /* Schedule server key regeneration alarm. */
1239                                 signal(SIGALRM, key_regeneration_alarm);
1240                                 alarm(options.key_regeneration_time);
1241                                 key_used = 1;
1242                         }
1243
1244                         close(*newsock);
1245
1246                         /*
1247                          * Ensure that our random state differs
1248                          * from that of the child
1249                          */
1250                         arc4random_stir();
1251                 }
1252
1253                 /* child process check (or debug mode) */
1254                 if (num_listen_socks < 0)
1255                         break;
1256         }
1257 }
1258
1259
1260 /*
1261  * Main program for the daemon.
1262  */
1263 int
1264 main(int ac, char **av)
1265 {
1266         extern char *optarg;
1267         extern int optind;
1268         int opt, i, on = 1;
1269         int sock_in = -1, sock_out = -1, newsock = -1;
1270         const char *remote_ip;
1271         int remote_port;
1272         char *line;
1273         int config_s[2] = { -1 , -1 };
1274         Key *key;
1275         Authctxt *authctxt;
1276
1277 #ifdef HAVE_SECUREWARE
1278         (void)set_auth_parameters(ac, av);
1279 #endif
1280         __progname = ssh_get_progname(av[0]);
1281         init_pathnames();
1282         config_file_name = _PATH_SERVER_CONFIG_FILE;
1283         init_rng();
1284
1285         /* Save argv. Duplicate so setproctitle emulation doesn't clobber it */
1286         saved_argc = ac;
1287         rexec_argc = ac;
1288         saved_argv = xcalloc(ac + 1, sizeof(*saved_argv));
1289         for (i = 0; i < ac; i++)
1290                 saved_argv[i] = xstrdup(av[i]);
1291         saved_argv[i] = NULL;
1292
1293 #ifndef HAVE_SETPROCTITLE
1294         /* Prepare for later setproctitle emulation */
1295         compat_init_setproctitle(ac, av);
1296         av = saved_argv;
1297 #endif
1298
1299         if (geteuid() == 0 && setgroups(0, NULL) == -1)
1300                 debug("setgroups(): %.200s", strerror(errno));
1301
1302         /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1303         sanitise_stdfd();
1304
1305         /* Initialize configuration options to their default values. */
1306         initialize_server_options(&options);
1307
1308         /* Parse command-line arguments. */
1309         while ((opt = getopt(ac, av, "f:p:b:k:h:g:u:o:dDeiqrtQR46")) != -1) {
1310                 switch (opt) {
1311                 case '4':
1312                         options.address_family = AF_INET;
1313                         break;
1314                 case '6':
1315                         options.address_family = AF_INET6;
1316                         break;
1317                 case 'f':
1318                         config_file_name = optarg;
1319                         break;
1320                 case 'd':
1321                         if (debug_flag == 0) {
1322                                 debug_flag = 1;
1323                                 options.log_level = SYSLOG_LEVEL_DEBUG1;
1324                         } else if (options.log_level < SYSLOG_LEVEL_DEBUG3)
1325                                 options.log_level++;
1326                         break;
1327                 case 'D':
1328                         no_daemon_flag = 1;
1329                         break;
1330                 case 'e':
1331                         log_stderr = 1;
1332                         break;
1333                 case 'i':
1334                         inetd_flag = 1;
1335                         break;
1336                 case 'r':
1337                         rexec_flag = 0;
1338                         break;
1339                 case 'R':
1340                         rexeced_flag = 1;
1341                         inetd_flag = 1;
1342                         break;
1343                 case 'Q':
1344                         /* ignored */
1345                         break;
1346                 case 'q':
1347                         options.log_level = SYSLOG_LEVEL_QUIET;
1348                         break;
1349                 case 'b':
1350                         options.server_key_bits = (int)strtonum(optarg, 256,
1351                             32768, NULL);
1352                         break;
1353                 case 'p':
1354                         options.ports_from_cmdline = 1;
1355                         if (options.num_ports >= MAX_PORTS) {
1356                                 fprintf(stderr, "too many ports.\n");
1357                                 exit(1);
1358                         }
1359                         options.ports[options.num_ports++] = a2port(optarg);
1360                         if (options.ports[options.num_ports-1] == 0) {
1361                                 fprintf(stderr, "Bad port number.\n");
1362                                 exit(1);
1363                         }
1364                         break;
1365                 case 'g':
1366                         if ((options.login_grace_time = convtime(optarg)) == -1) {
1367                                 fprintf(stderr, "Invalid login grace time.\n");
1368                                 exit(1);
1369                         }
1370                         break;
1371                 case 'k':
1372                         if ((options.key_regeneration_time = convtime(optarg)) == -1) {
1373                                 fprintf(stderr, "Invalid key regeneration interval.\n");
1374                                 exit(1);
1375                         }
1376                         break;
1377                 case 'h':
1378                         if (options.num_host_key_files >= MAX_HOSTKEYS) {
1379                                 fprintf(stderr, "too many host keys.\n");
1380                                 exit(1);
1381                         }
1382                         options.host_key_files[options.num_host_key_files++] = optarg;
1383                         break;
1384                 case 't':
1385                         test_flag = 1;
1386                         break;
1387                 case 'u':
1388                         utmp_len = (u_int)strtonum(optarg, 0, MAXHOSTNAMELEN+1, NULL);
1389                         if (utmp_len > MAXHOSTNAMELEN) {
1390                                 fprintf(stderr, "Invalid utmp length.\n");
1391                                 exit(1);
1392                         }
1393                         break;
1394                 case 'o':
1395                         line = xstrdup(optarg);
1396                         if (process_server_config_line(&options, line,
1397                             "command-line", 0, NULL, NULL, NULL, NULL) != 0)
1398                                 exit(1);
1399                         xfree(line);
1400                         break;
1401                 case '?':
1402                 default:
1403                         usage();
1404                         break;
1405                 }
1406         }
1407         if (rexeced_flag || inetd_flag)
1408                 rexec_flag = 0;
1409         if (!test_flag && (rexec_flag && (av[0] == NULL || *av[0] != '/')))
1410                 fatal("sshd re-exec requires execution with an absolute path");
1411         if (rexeced_flag)
1412                 closefrom(REEXEC_MIN_FREE_FD);
1413         else
1414                 closefrom(REEXEC_DEVCRYPTO_RESERVED_FD);
1415
1416         SSLeay_add_all_algorithms();
1417
1418         /*
1419          * Force logging to stderr until we have loaded the private host
1420          * key (unless started from inetd)
1421          */
1422         log_init(__progname,
1423             options.log_level == SYSLOG_LEVEL_NOT_SET ?
1424             SYSLOG_LEVEL_INFO : options.log_level,
1425             options.log_facility == SYSLOG_FACILITY_NOT_SET ?
1426             SYSLOG_FACILITY_AUTH : options.log_facility,
1427             log_stderr || !inetd_flag);
1428
1429         /*
1430          * Unset KRB5CCNAME, otherwise the user's session may inherit it from
1431          * root's environment
1432          */
1433         if (getenv("KRB5CCNAME") != NULL)
1434                 unsetenv("KRB5CCNAME");
1435
1436 #ifdef _UNICOS
1437         /* Cray can define user privs drop all privs now!
1438          * Not needed on PRIV_SU systems!
1439          */
1440         drop_cray_privs();
1441 #endif
1442
1443         sensitive_data.server_key = NULL;
1444         sensitive_data.ssh1_host_key = NULL;
1445         sensitive_data.have_ssh1_key = 0;
1446         sensitive_data.have_ssh2_key = 0;
1447
1448         /* Fetch our configuration */
1449         buffer_init(&cfg);
1450         if (rexeced_flag)
1451                 recv_rexec_state(REEXEC_CONFIG_PASS_FD, &cfg);
1452         else
1453                 load_server_config(config_file_name, &cfg);
1454
1455         parse_server_config(&options, rexeced_flag ? "rexec" : config_file_name,
1456             &cfg, NULL, NULL, NULL);
1457
1458         seed_rng();
1459
1460         /* Fill in default values for those options not explicitly set. */
1461         fill_default_server_options(&options);
1462
1463         /* challenge-response is implemented via keyboard interactive */
1464         if (options.challenge_response_authentication)
1465                 options.kbd_interactive_authentication = 1;
1466
1467         /* set default channel AF */
1468         channel_set_af(options.address_family);
1469
1470         /* Check that there are no remaining arguments. */
1471         if (optind < ac) {
1472                 fprintf(stderr, "Extra argument %s.\n", av[optind]);
1473                 exit(1);
1474         }
1475
1476         debug("sshd version %.100s", SSH_RELEASE);
1477
1478         /* Store privilege separation user for later use if required. */
1479         if ((privsep_pw = getpwnam(SSH_PRIVSEP_USER)) == NULL) {
1480                 if (use_privsep || options.kerberos_authentication)
1481                         fatal("Privilege separation user %s does not exist",
1482                             SSH_PRIVSEP_USER);
1483         } else {
1484                 memset(privsep_pw->pw_passwd, 0, strlen(privsep_pw->pw_passwd));
1485                 privsep_pw = pwcopy(privsep_pw);
1486                 xfree(privsep_pw->pw_passwd);
1487                 privsep_pw->pw_passwd = xstrdup("*");
1488         }
1489         endpwent();
1490
1491         /* load private host keys */
1492         sensitive_data.host_keys = xcalloc(options.num_host_key_files,
1493             sizeof(Key *));
1494         for (i = 0; i < options.num_host_key_files; i++)
1495                 sensitive_data.host_keys[i] = NULL;
1496
1497         for (i = 0; i < options.num_host_key_files; i++) {
1498                 key = key_load_private(options.host_key_files[i], "", NULL);
1499                 sensitive_data.host_keys[i] = key;
1500                 if (key == NULL) {
1501                         error("Could not load host key: %s",
1502                             options.host_key_files[i]);
1503                         sensitive_data.host_keys[i] = NULL;
1504                         continue;
1505                 }
1506                 switch (key->type) {
1507                 case KEY_RSA1:
1508                         sensitive_data.ssh1_host_key = key;
1509                         sensitive_data.have_ssh1_key = 1;
1510                         break;
1511                 case KEY_RSA:
1512                 case KEY_DSA:
1513                         sensitive_data.have_ssh2_key = 1;
1514                         break;
1515                 }
1516                 debug("private host key: #%d type %d %s", i, key->type,
1517                     key_type(key));
1518         }
1519         if ((options.protocol & SSH_PROTO_1) && !sensitive_data.have_ssh1_key) {
1520                 logit("Disabling protocol version 1. Could not load host key");
1521                 options.protocol &= ~SSH_PROTO_1;
1522         }
1523 #ifndef GSSAPI
1524         /* The GSSAPI key exchange can run without a host key */
1525         if ((options.protocol & SSH_PROTO_2) && !sensitive_data.have_ssh2_key) {
1526                 logit("Disabling protocol version 2. Could not load host key");
1527                 options.protocol &= ~SSH_PROTO_2;
1528         }
1529 #endif
1530         if (!(options.protocol & (SSH_PROTO_1|SSH_PROTO_2))) {
1531                 logit("sshd: no hostkeys available -- exiting.");
1532                 exit(1);
1533         }
1534
1535         /* Check certain values for sanity. */
1536         if (options.protocol & SSH_PROTO_1) {
1537                 if (options.server_key_bits < 512 ||
1538                     options.server_key_bits > 32768) {
1539                         fprintf(stderr, "Bad server key size.\n");
1540                         exit(1);
1541                 }
1542                 /*
1543                  * Check that server and host key lengths differ sufficiently. This
1544                  * is necessary to make double encryption work with rsaref. Oh, I
1545                  * hate software patents. I dont know if this can go? Niels
1546                  */
1547                 if (options.server_key_bits >
1548                     BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) -
1549                     SSH_KEY_BITS_RESERVED && options.server_key_bits <
1550                     BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) +
1551                     SSH_KEY_BITS_RESERVED) {
1552                         options.server_key_bits =
1553                             BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) +
1554                             SSH_KEY_BITS_RESERVED;
1555                         debug("Forcing server key to %d bits to make it differ from host key.",
1556                             options.server_key_bits);
1557                 }
1558         }
1559
1560         if (use_privsep) {
1561                 struct stat st;
1562
1563                 if ((stat(_PATH_PRIVSEP_CHROOT_DIR, &st) == -1) ||
1564                     (S_ISDIR(st.st_mode) == 0))
1565                         fatal("Missing privilege separation directory: %s",
1566                             _PATH_PRIVSEP_CHROOT_DIR);
1567
1568 #ifdef HAVE_CYGWIN
1569                 if (check_ntsec(_PATH_PRIVSEP_CHROOT_DIR) &&
1570                     (st.st_uid != getuid () ||
1571                     (st.st_mode & (S_IWGRP|S_IWOTH)) != 0))
1572 #else
1573                 if (st.st_uid != 0 || (st.st_mode & (S_IWGRP|S_IWOTH)) != 0)
1574 #endif
1575                         fatal("%s must be owned by root and not group or "
1576                             "world-writable.", _PATH_PRIVSEP_CHROOT_DIR);
1577         }
1578
1579         /* Configuration looks good, so exit if in test mode. */
1580         if (test_flag)
1581                 exit(0);
1582
1583         /*
1584          * Clear out any supplemental groups we may have inherited.  This
1585          * prevents inadvertent creation of files with bad modes (in the
1586          * portable version at least, it's certainly possible for PAM
1587          * to create a file, and we can't control the code in every
1588          * module which might be used).
1589          */
1590         if (setgroups(0, NULL) < 0)
1591                 debug("setgroups() failed: %.200s", strerror(errno));
1592
1593         if (rexec_flag) {
1594                 rexec_argv = xcalloc(rexec_argc + 2, sizeof(char *));
1595                 for (i = 0; i < rexec_argc; i++) {
1596                         debug("rexec_argv[%d]='%s'", i, saved_argv[i]);
1597                         rexec_argv[i] = saved_argv[i];
1598                 }
1599                 rexec_argv[rexec_argc] = "-R";
1600                 rexec_argv[rexec_argc + 1] = NULL;
1601         }
1602
1603         /* Initialize the log (it is reinitialized below in case we forked). */
1604         if (debug_flag && (!inetd_flag || rexeced_flag))
1605                 log_stderr = 1;
1606         log_init(__progname, options.log_level, options.log_facility, log_stderr);
1607
1608         /*
1609          * If not in debugging mode, and not started from inetd, disconnect
1610          * from the controlling terminal, and fork.  The original process
1611          * exits.
1612          */
1613         if (!(debug_flag || inetd_flag || no_daemon_flag)) {
1614 #ifdef TIOCNOTTY
1615                 int fd;
1616 #endif /* TIOCNOTTY */
1617                 if (daemon(0, 0) < 0)
1618                         fatal("daemon() failed: %.200s", strerror(errno));
1619
1620                 /* Disconnect from the controlling tty. */
1621 #ifdef TIOCNOTTY
1622                 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
1623                 if (fd >= 0) {
1624                         (void) ioctl(fd, TIOCNOTTY, NULL);
1625                         close(fd);
1626                 }
1627 #endif /* TIOCNOTTY */
1628         }
1629         /* Reinitialize the log (because of the fork above). */
1630         log_init(__progname, options.log_level, options.log_facility, log_stderr);
1631
1632         /* Initialize the random number generator. */
1633         arc4random_stir();
1634
1635         /* Chdir to the root directory so that the current disk can be
1636            unmounted if desired. */
1637         chdir("/");
1638
1639         /* ignore SIGPIPE */
1640         signal(SIGPIPE, SIG_IGN);
1641
1642         /* Get a connection, either from inetd or a listening TCP socket */
1643         if (inetd_flag) {
1644                 server_accept_inetd(&sock_in, &sock_out);
1645         } else {
1646                 server_listen();
1647
1648                 if (options.protocol & SSH_PROTO_1)
1649                         generate_ephemeral_server_key();
1650
1651                 signal(SIGHUP, sighup_handler);
1652                 signal(SIGCHLD, main_sigchld_handler);
1653                 signal(SIGTERM, sigterm_handler);
1654                 signal(SIGQUIT, sigterm_handler);
1655
1656                 /*
1657                  * Write out the pid file after the sigterm handler
1658                  * is setup and the listen sockets are bound
1659                  */
1660                 if (!debug_flag) {
1661                         FILE *f = fopen(options.pid_file, "w");
1662
1663                         if (f == NULL) {
1664                                 error("Couldn't create pid file \"%s\": %s",
1665                                     options.pid_file, strerror(errno));
1666                         } else {
1667                                 fprintf(f, "%ld\n", (long) getpid());
1668                                 fclose(f);
1669                         }
1670                 }
1671
1672                 /* Accept a connection and return in a forked child */
1673                 server_accept_loop(&sock_in, &sock_out,
1674                     &newsock, config_s);
1675         }
1676
1677         /* This is the child processing a new connection. */
1678         setproctitle("%s", "[accepted]");
1679
1680         /*
1681          * Create a new session and process group since the 4.4BSD
1682          * setlogin() affects the entire process group.  We don't
1683          * want the child to be able to affect the parent.
1684          */
1685 #if !defined(SSHD_ACQUIRES_CTTY)
1686         /*
1687          * If setsid is called, on some platforms sshd will later acquire a
1688          * controlling terminal which will result in "could not set
1689          * controlling tty" errors.
1690          */
1691         if (!debug_flag && !inetd_flag && setsid() < 0)
1692                 error("setsid: %.100s", strerror(errno));
1693 #endif
1694
1695         if (rexec_flag) {
1696                 int fd;
1697
1698                 debug("rexec start in %d out %d newsock %d pipe %d sock %d",
1699                     sock_in, sock_out, newsock, startup_pipe, config_s[0]);
1700                 dup2(newsock, STDIN_FILENO);
1701                 dup2(STDIN_FILENO, STDOUT_FILENO);
1702                 if (startup_pipe == -1)
1703                         close(REEXEC_STARTUP_PIPE_FD);
1704                 else
1705                         dup2(startup_pipe, REEXEC_STARTUP_PIPE_FD);
1706
1707                 dup2(config_s[1], REEXEC_CONFIG_PASS_FD);
1708                 close(config_s[1]);
1709                 if (startup_pipe != -1)
1710                         close(startup_pipe);
1711
1712                 execv(rexec_argv[0], rexec_argv);
1713
1714                 /* Reexec has failed, fall back and continue */
1715                 error("rexec of %s failed: %s", rexec_argv[0], strerror(errno));
1716                 recv_rexec_state(REEXEC_CONFIG_PASS_FD, NULL);
1717                 log_init(__progname, options.log_level,
1718                     options.log_facility, log_stderr);
1719
1720                 /* Clean up fds */
1721                 startup_pipe = REEXEC_STARTUP_PIPE_FD;
1722                 close(config_s[1]);
1723                 close(REEXEC_CONFIG_PASS_FD);
1724                 newsock = sock_out = sock_in = dup(STDIN_FILENO);
1725                 if ((fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
1726                         dup2(fd, STDIN_FILENO);
1727                         dup2(fd, STDOUT_FILENO);
1728                         if (fd > STDERR_FILENO)
1729                                 close(fd);
1730                 }
1731                 debug("rexec cleanup in %d out %d newsock %d pipe %d sock %d",
1732                     sock_in, sock_out, newsock, startup_pipe, config_s[0]);
1733         }
1734
1735         /*
1736          * Disable the key regeneration alarm.  We will not regenerate the
1737          * key since we are no longer in a position to give it to anyone. We
1738          * will not restart on SIGHUP since it no longer makes sense.
1739          */
1740         alarm(0);
1741         signal(SIGALRM, SIG_DFL);
1742         signal(SIGHUP, SIG_DFL);
1743         signal(SIGTERM, SIG_DFL);
1744         signal(SIGQUIT, SIG_DFL);
1745         signal(SIGCHLD, SIG_DFL);
1746         signal(SIGINT, SIG_DFL);
1747
1748         /*
1749          * Register our connection.  This turns encryption off because we do
1750          * not have a key.
1751          */
1752         packet_set_connection(sock_in, sock_out);
1753         packet_set_server();
1754
1755         /* Set SO_KEEPALIVE if requested. */
1756         if (options.tcp_keep_alive && packet_connection_is_on_socket() &&
1757             setsockopt(sock_in, SOL_SOCKET, SO_KEEPALIVE, &on, sizeof(on)) < 0)
1758                 error("setsockopt SO_KEEPALIVE: %.100s", strerror(errno));
1759
1760         if ((remote_port = get_remote_port()) < 0) {
1761                 debug("get_remote_port failed");
1762                 cleanup_exit(255);
1763         }
1764
1765         /*
1766          * We use get_canonical_hostname with usedns = 0 instead of
1767          * get_remote_ipaddr here so IP options will be checked.
1768          */
1769         (void) get_canonical_hostname(0);
1770         /*
1771          * The rest of the code depends on the fact that
1772          * get_remote_ipaddr() caches the remote ip, even if
1773          * the socket goes away.
1774          */
1775         remote_ip = get_remote_ipaddr();
1776
1777 #ifdef SSH_AUDIT_EVENTS
1778         audit_connection_from(remote_ip, remote_port);
1779 #endif
1780 #ifdef LIBWRAP
1781         allow_severity = options.log_facility|LOG_INFO;
1782         deny_severity = options.log_facility|LOG_WARNING;
1783         /* Check whether logins are denied from this host. */
1784         if (packet_connection_is_on_socket()) {
1785                 struct request_info req;
1786
1787                 request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, 0);
1788                 fromhost(&req);
1789
1790                 if (!hosts_access(&req)) {
1791                         debug("Connection refused by tcp wrapper");
1792                         refuse(&req);
1793                         /* NOTREACHED */
1794                         fatal("libwrap refuse returns");
1795                 }
1796         }
1797 #endif /* LIBWRAP */
1798
1799         /* Log the connection. */
1800         verbose("Connection from %.500s port %d", remote_ip, remote_port);
1801
1802 #ifdef USE_SECURITY_SESSION_API
1803         /*
1804          * Create a new security session for use by the new user login if
1805          * the current session is the root session or we are not launched
1806          * by inetd (eg: debugging mode or server mode).  We do not
1807          * necessarily need to create a session if we are launched from
1808          * inetd because Panther xinetd will create a session for us.
1809          *
1810          * The only case where this logic will fail is if there is an
1811          * inetd running in a non-root session which is not creating
1812          * new sessions for us.  Then all the users will end up in the
1813          * same session (bad).
1814          *
1815          * When the client exits, the session will be destroyed for us
1816          * automatically.
1817          *
1818          * We must create the session before any credentials are stored
1819          * (including AFS pags, which happens a few lines below).
1820          */
1821         {
1822                 OSStatus err = 0;
1823                 SecuritySessionId sid = 0;
1824                 SessionAttributeBits sattrs = 0;
1825
1826                 err = SessionGetInfo(callerSecuritySession, &sid, &sattrs);
1827                 if (err)
1828                         error("SessionGetInfo() failed with error %.8X",
1829                             (unsigned) err);
1830                 else
1831                         debug("Current Session ID is %.8X / Session Attributes are %.8X",
1832                             (unsigned) sid, (unsigned) sattrs);
1833
1834                 if (inetd_flag && !(sattrs & sessionIsRoot))
1835                         debug("Running in inetd mode in a non-root session... "
1836                             "assuming inetd created the session for us.");
1837                 else {
1838                         debug("Creating new security session...");
1839                         err = SessionCreate(0, sessionHasTTY | sessionIsRemote);
1840                         if (err)
1841                                 error("SessionCreate() failed with error %.8X",
1842                                     (unsigned) err);
1843
1844                         err = SessionGetInfo(callerSecuritySession, &sid, 
1845                             &sattrs);
1846                         if (err)
1847                                 error("SessionGetInfo() failed with error %.8X",
1848                                     (unsigned) err);
1849                         else
1850                                 debug("New Session ID is %.8X / Session Attributes are %.8X",
1851                                     (unsigned) sid, (unsigned) sattrs);
1852                 }
1853         }
1854 #endif
1855
1856         /*
1857          * We don't want to listen forever unless the other side
1858          * successfully authenticates itself.  So we set up an alarm which is
1859          * cleared after successful authentication.  A limit of zero
1860          * indicates no limit. Note that we don't set the alarm in debugging
1861          * mode; it is just annoying to have the server exit just when you
1862          * are about to discover the bug.
1863          */
1864         signal(SIGALRM, grace_alarm_handler);
1865         if (!debug_flag)
1866                 alarm(options.login_grace_time);
1867
1868         sshd_exchange_identification(sock_in, sock_out);
1869 #if defined(AFS_KRB5)
1870         /* If machine has AFS, set process authentication group. */
1871         if (k_hasafs()) {
1872                 k_setpag();
1873                 k_unlog();
1874         }
1875 #endif /* AFS || AFS_KRB5 */
1876
1877         /* In inetd mode, generate ephemeral key only for proto 1 connections */
1878         if (!compat20 && inetd_flag && sensitive_data.server_key == NULL)
1879                 generate_ephemeral_server_key();
1880
1881         packet_set_nonblocking();
1882
1883         /* allocate authentication context */
1884         authctxt = xcalloc(1, sizeof(*authctxt));
1885
1886         authctxt->loginmsg = &loginmsg;
1887
1888         /* XXX global for cleanup, access from other modules */
1889         the_authctxt = authctxt;
1890
1891         /* prepare buffer to collect messages to display to user after login */
1892         buffer_init(&loginmsg);
1893
1894         if (use_privsep)
1895                 if (privsep_preauth(authctxt) == 1)
1896                         goto authenticated;
1897
1898         /* perform the key exchange */
1899         /* authenticate user and start session */
1900         if (compat20) {
1901                 do_ssh2_kex();
1902                 do_authentication2(authctxt);
1903         } else {
1904                 do_ssh1_kex();
1905                 do_authentication(authctxt);
1906         }
1907         /*
1908          * If we use privilege separation, the unprivileged child transfers
1909          * the current keystate and exits
1910          */
1911         if (use_privsep) {
1912                 mm_send_keystate(pmonitor);
1913                 exit(0);
1914         }
1915
1916  authenticated:
1917         /*
1918          * Cancel the alarm we set to limit the time taken for
1919          * authentication.
1920          */
1921         alarm(0);
1922         signal(SIGALRM, SIG_DFL);
1923         authctxt->authenticated = 1;
1924         if (startup_pipe != -1) {
1925                 close(startup_pipe);
1926                 startup_pipe = -1;
1927         }
1928
1929 #ifdef SSH_AUDIT_EVENTS
1930         audit_event(SSH_AUTH_SUCCESS);
1931 #endif
1932
1933 #ifdef GSSAPI
1934         if (options.gss_authentication) {
1935                 temporarily_use_uid(authctxt->pw);
1936                 ssh_gssapi_storecreds();
1937                 restore_uid();
1938         }
1939 #endif
1940 #ifdef USE_PAM
1941         if (options.use_pam) {
1942                 do_pam_setcred(1);
1943                 do_pam_session();
1944         }
1945 #endif
1946
1947         /*
1948          * In privilege separation, we fork another child and prepare
1949          * file descriptor passing.
1950          */
1951         if (use_privsep) {
1952                 privsep_postauth(authctxt);
1953                 /* the monitor process [priv] will not return */
1954                 if (!compat20)
1955                         destroy_sensitive_data();
1956         }
1957
1958         /* Start session. */
1959         do_authenticated(authctxt);
1960
1961         /* The connection has been terminated. */
1962         verbose("Closing connection to %.100s", remote_ip);
1963
1964 #ifdef USE_PAM
1965         if (options.use_pam)
1966                 finish_pam();
1967 #endif /* USE_PAM */
1968
1969 #ifdef SSH_AUDIT_EVENTS
1970         PRIVSEP(audit_event(SSH_CONNECTION_CLOSE));
1971 #endif
1972
1973         packet_close();
1974
1975         if (use_privsep)
1976                 mm_terminate();
1977
1978         exit(0);
1979 }
1980
1981 /*
1982  * Decrypt session_key_int using our private server key and private host key
1983  * (key with larger modulus first).
1984  */
1985 int
1986 ssh1_session_key(BIGNUM *session_key_int)
1987 {
1988         int rsafail = 0;
1989
1990         if (BN_cmp(sensitive_data.server_key->rsa->n,
1991             sensitive_data.ssh1_host_key->rsa->n) > 0) {
1992                 /* Server key has bigger modulus. */
1993                 if (BN_num_bits(sensitive_data.server_key->rsa->n) <
1994                     BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) +
1995                     SSH_KEY_BITS_RESERVED) {
1996                         fatal("do_connection: %s: "
1997                             "server_key %d < host_key %d + SSH_KEY_BITS_RESERVED %d",
1998                             get_remote_ipaddr(),
1999                             BN_num_bits(sensitive_data.server_key->rsa->n),
2000                             BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
2001                             SSH_KEY_BITS_RESERVED);
2002                 }
2003                 if (rsa_private_decrypt(session_key_int, session_key_int,
2004                     sensitive_data.server_key->rsa) <= 0)
2005                         rsafail++;
2006                 if (rsa_private_decrypt(session_key_int, session_key_int,
2007                     sensitive_data.ssh1_host_key->rsa) <= 0)
2008                         rsafail++;
2009         } else {
2010                 /* Host key has bigger modulus (or they are equal). */
2011                 if (BN_num_bits(sensitive_data.ssh1_host_key->rsa->n) <
2012                     BN_num_bits(sensitive_data.server_key->rsa->n) +
2013                     SSH_KEY_BITS_RESERVED) {
2014                         fatal("do_connection: %s: "
2015                             "host_key %d < server_key %d + SSH_KEY_BITS_RESERVED %d",
2016                             get_remote_ipaddr(),
2017                             BN_num_bits(sensitive_data.ssh1_host_key->rsa->n),
2018                             BN_num_bits(sensitive_data.server_key->rsa->n),
2019                             SSH_KEY_BITS_RESERVED);
2020                 }
2021                 if (rsa_private_decrypt(session_key_int, session_key_int,
2022                     sensitive_data.ssh1_host_key->rsa) < 0)
2023                         rsafail++;
2024                 if (rsa_private_decrypt(session_key_int, session_key_int,
2025                     sensitive_data.server_key->rsa) < 0)
2026                         rsafail++;
2027         }
2028         return (rsafail);
2029 }
2030 /*
2031  * SSH1 key exchange
2032  */
2033 static void
2034 do_ssh1_kex(void)
2035 {
2036         int i, len;
2037         int rsafail = 0;
2038         BIGNUM *session_key_int;
2039         u_char session_key[SSH_SESSION_KEY_LENGTH];
2040         u_char cookie[8];
2041         u_int cipher_type, auth_mask, protocol_flags;
2042         u_int32_t rnd = 0;
2043
2044         /*
2045          * Generate check bytes that the client must send back in the user
2046          * packet in order for it to be accepted; this is used to defy ip
2047          * spoofing attacks.  Note that this only works against somebody
2048          * doing IP spoofing from a remote machine; any machine on the local
2049          * network can still see outgoing packets and catch the random
2050          * cookie.  This only affects rhosts authentication, and this is one
2051          * of the reasons why it is inherently insecure.
2052          */
2053         for (i = 0; i < 8; i++) {
2054                 if (i % 4 == 0)
2055                         rnd = arc4random();
2056                 cookie[i] = rnd & 0xff;
2057                 rnd >>= 8;
2058         }
2059
2060         /*
2061          * Send our public key.  We include in the packet 64 bits of random
2062          * data that must be matched in the reply in order to prevent IP
2063          * spoofing.
2064          */
2065         packet_start(SSH_SMSG_PUBLIC_KEY);
2066         for (i = 0; i < 8; i++)
2067                 packet_put_char(cookie[i]);
2068
2069         /* Store our public server RSA key. */
2070         packet_put_int(BN_num_bits(sensitive_data.server_key->rsa->n));
2071         packet_put_bignum(sensitive_data.server_key->rsa->e);
2072         packet_put_bignum(sensitive_data.server_key->rsa->n);
2073
2074         /* Store our public host RSA key. */
2075         packet_put_int(BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
2076         packet_put_bignum(sensitive_data.ssh1_host_key->rsa->e);
2077         packet_put_bignum(sensitive_data.ssh1_host_key->rsa->n);
2078
2079         /* Put protocol flags. */
2080         packet_put_int(SSH_PROTOFLAG_HOST_IN_FWD_OPEN);
2081
2082         /* Declare which ciphers we support. */
2083         packet_put_int(cipher_mask_ssh1(0));
2084
2085         /* Declare supported authentication types. */
2086         auth_mask = 0;
2087         if (options.rhosts_rsa_authentication)
2088                 auth_mask |= 1 << SSH_AUTH_RHOSTS_RSA;
2089         if (options.rsa_authentication)
2090                 auth_mask |= 1 << SSH_AUTH_RSA;
2091         if (options.challenge_response_authentication == 1)
2092                 auth_mask |= 1 << SSH_AUTH_TIS;
2093         if (options.password_authentication)
2094                 auth_mask |= 1 << SSH_AUTH_PASSWORD;
2095         packet_put_int(auth_mask);
2096
2097         /* Send the packet and wait for it to be sent. */
2098         packet_send();
2099         packet_write_wait();
2100
2101         debug("Sent %d bit server key and %d bit host key.",
2102             BN_num_bits(sensitive_data.server_key->rsa->n),
2103             BN_num_bits(sensitive_data.ssh1_host_key->rsa->n));
2104
2105         /* Read clients reply (cipher type and session key). */
2106         packet_read_expect(SSH_CMSG_SESSION_KEY);
2107
2108         /* Get cipher type and check whether we accept this. */
2109         cipher_type = packet_get_char();
2110
2111         if (!(cipher_mask_ssh1(0) & (1 << cipher_type)))
2112                 packet_disconnect("Warning: client selects unsupported cipher.");
2113
2114         /* Get check bytes from the packet.  These must match those we
2115            sent earlier with the public key packet. */
2116         for (i = 0; i < 8; i++)
2117                 if (cookie[i] != packet_get_char())
2118                         packet_disconnect("IP Spoofing check bytes do not match.");
2119
2120         debug("Encryption type: %.200s", cipher_name(cipher_type));
2121
2122         /* Get the encrypted integer. */
2123         if ((session_key_int = BN_new()) == NULL)
2124                 fatal("do_ssh1_kex: BN_new failed");
2125         packet_get_bignum(session_key_int);
2126
2127         protocol_flags = packet_get_int();
2128         packet_set_protocol_flags(protocol_flags);
2129         packet_check_eom();
2130
2131         /* Decrypt session_key_int using host/server keys */
2132         rsafail = PRIVSEP(ssh1_session_key(session_key_int));
2133
2134         /*
2135          * Extract session key from the decrypted integer.  The key is in the
2136          * least significant 256 bits of the integer; the first byte of the
2137          * key is in the highest bits.
2138          */
2139         if (!rsafail) {
2140                 (void) BN_mask_bits(session_key_int, sizeof(session_key) * 8);
2141                 len = BN_num_bytes(session_key_int);
2142                 if (len < 0 || (u_int)len > sizeof(session_key)) {
2143                         error("do_ssh1_kex: bad session key len from %s: "
2144                             "session_key_int %d > sizeof(session_key) %lu",
2145                             get_remote_ipaddr(), len, (u_long)sizeof(session_key));
2146                         rsafail++;
2147                 } else {
2148                         memset(session_key, 0, sizeof(session_key));
2149                         BN_bn2bin(session_key_int,
2150                             session_key + sizeof(session_key) - len);
2151
2152                         derive_ssh1_session_id(
2153                             sensitive_data.ssh1_host_key->rsa->n,
2154                             sensitive_data.server_key->rsa->n,
2155                             cookie, session_id);
2156                         /*
2157                          * Xor the first 16 bytes of the session key with the
2158                          * session id.
2159                          */
2160                         for (i = 0; i < 16; i++)
2161                                 session_key[i] ^= session_id[i];
2162                 }
2163         }
2164         if (rsafail) {
2165                 int bytes = BN_num_bytes(session_key_int);
2166                 u_char *buf = xmalloc(bytes);
2167                 MD5_CTX md;
2168
2169                 logit("do_connection: generating a fake encryption key");
2170                 BN_bn2bin(session_key_int, buf);
2171                 MD5_Init(&md);
2172                 MD5_Update(&md, buf, bytes);
2173                 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
2174                 MD5_Final(session_key, &md);
2175                 MD5_Init(&md);
2176                 MD5_Update(&md, session_key, 16);
2177                 MD5_Update(&md, buf, bytes);
2178                 MD5_Update(&md, sensitive_data.ssh1_cookie, SSH_SESSION_KEY_LENGTH);
2179                 MD5_Final(session_key + 16, &md);
2180                 memset(buf, 0, bytes);
2181                 xfree(buf);
2182                 for (i = 0; i < 16; i++)
2183                         session_id[i] = session_key[i] ^ session_key[i + 16];
2184         }
2185         /* Destroy the private and public keys. No longer. */
2186         destroy_sensitive_data();
2187
2188         if (use_privsep)
2189                 mm_ssh1_session_id(session_id);
2190
2191         /* Destroy the decrypted integer.  It is no longer needed. */
2192         BN_clear_free(session_key_int);
2193
2194         /* Set the session key.  From this on all communications will be encrypted. */
2195         packet_set_encryption_key(session_key, SSH_SESSION_KEY_LENGTH, cipher_type);
2196
2197         /* Destroy our copy of the session key.  It is no longer needed. */
2198         memset(session_key, 0, sizeof(session_key));
2199
2200         debug("Received session key; encryption turned on.");
2201
2202         /* Send an acknowledgment packet.  Note that this packet is sent encrypted. */
2203         packet_start(SSH_SMSG_SUCCESS);
2204         packet_send();
2205         packet_write_wait();
2206 }
2207
2208 /*
2209  * SSH2 key exchange: diffie-hellman-group1-sha1
2210  */
2211 static void
2212 do_ssh2_kex(void)
2213 {
2214         Kex *kex;
2215
2216         myflag++;
2217         debug ("MYFLAG IS %d", myflag);
2218         if (options.ciphers != NULL) {
2219                 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
2220                 myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers;
2221         } else if (options.none_enabled == 1) {
2222                 debug ("WARNING: None cipher enabled");
2223                 myproposal[PROPOSAL_ENC_ALGS_CTOS] =
2224                 myproposal[PROPOSAL_ENC_ALGS_STOC] = KEX_ENCRYPT_INCLUDE_NONE;
2225         }
2226         myproposal[PROPOSAL_ENC_ALGS_CTOS] =
2227             compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]);
2228         myproposal[PROPOSAL_ENC_ALGS_STOC] =
2229             compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
2230
2231         if (options.macs != NULL) {
2232                 myproposal[PROPOSAL_MAC_ALGS_CTOS] =
2233                 myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs;
2234         }
2235         if (options.compression == COMP_NONE) {
2236                 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
2237                 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none";
2238         } else if (options.compression == COMP_DELAYED) {
2239                 myproposal[PROPOSAL_COMP_ALGS_CTOS] =
2240                 myproposal[PROPOSAL_COMP_ALGS_STOC] = "none,zlib@openssh.com";
2241         }
2242
2243         myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = list_hostkey_types();
2244
2245 #ifdef GSSAPI
2246         {
2247         char *orig;
2248         char *gss = NULL;
2249         char *newstr = NULL;
2250         orig = myproposal[PROPOSAL_KEX_ALGS];
2251
2252         /* 
2253          * If we don't have a host key, then there's no point advertising
2254          * the other key exchange algorithms
2255          */
2256
2257         if (strlen(myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS]) == 0)
2258                 orig = NULL;
2259
2260         if (options.gss_keyex)
2261                 gss = ssh_gssapi_server_mechanisms();
2262         else
2263                 gss = NULL;
2264
2265         if (gss && orig)
2266                 xasprintf(&newstr, "%s,%s", gss, orig);
2267         else if (gss)
2268                 newstr = gss;
2269         else if (orig)
2270                 newstr = orig;
2271
2272         /* 
2273          * If we've got GSSAPI mechanisms, then we've got the 'null' host
2274          * key alg, but we can't tell people about it unless its the only
2275          * host key algorithm we support
2276          */
2277         if (gss && (strlen(myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS])) == 0)
2278                 myproposal[PROPOSAL_SERVER_HOST_KEY_ALGS] = "null";
2279
2280         if (newstr)
2281                 myproposal[PROPOSAL_KEX_ALGS] = newstr;
2282         else
2283                 fatal("No supported key exchange algorithms");
2284         }
2285 #endif
2286
2287         /* start key exchange */
2288         /* start key exchange */
2289         kex = kex_setup(myproposal);
2290         kex->kex[KEX_DH_GRP1_SHA1] = kexdh_server;
2291         kex->kex[KEX_DH_GRP14_SHA1] = kexdh_server;
2292         kex->kex[KEX_DH_GEX_SHA1] = kexgex_server;
2293         kex->kex[KEX_DH_GEX_SHA256] = kexgex_server;
2294 #ifdef GSSAPI
2295         kex->kex[KEX_GSS_GRP1_SHA1] = kexgss_server;
2296         kex->kex[KEX_GSS_GRP14_SHA1] = kexgss_server;
2297         kex->kex[KEX_GSS_GEX_SHA1] = kexgss_server;
2298 #endif
2299         kex->server = 1;
2300         kex->client_version_string=client_version_string;
2301         kex->server_version_string=server_version_string;
2302         kex->load_host_key=&get_hostkey_by_type;
2303         kex->host_key_index=&get_hostkey_index;
2304
2305         xxx_kex = kex;
2306
2307         dispatch_run(DISPATCH_BLOCK, &kex->done, kex);
2308
2309         session_id2 = kex->session_id;
2310         session_id2_len = kex->session_id_len;
2311
2312 #ifdef DEBUG_KEXDH
2313         /* send 1st encrypted/maced/compressed message */
2314         packet_start(SSH2_MSG_IGNORE);
2315         packet_put_cstring("markus");
2316         packet_send();
2317         packet_write_wait();
2318 #endif
2319         debug("KEX done");
2320 }
2321
2322 /* server specific fatal cleanup */
2323 void
2324 cleanup_exit(int i)
2325 {
2326         if (the_authctxt)
2327                 do_cleanup(the_authctxt);
2328 #ifdef SSH_AUDIT_EVENTS
2329         /* done after do_cleanup so it can cancel the PAM auth 'thread' */
2330         if (!use_privsep || mm_is_monitor())
2331                 audit_event(SSH_CONNECTION_ABANDON);
2332 #endif
2333         _exit(i);
2334 }
This page took 0.214948 seconds and 3 git commands to generate.