]> andersk Git - openssh.git/blob - ssh.c
- jakob@cvs.openbsd.org 2001/07/31 12:53:34
[openssh.git] / ssh.c
1 /*
2  * Author: Tatu Ylonen <ylo@cs.hut.fi>
3  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4  *                    All rights reserved
5  * Ssh client program.  This program can be used to log into a remote machine.
6  * The software supports strong authentication, encryption, and forwarding
7  * of X11, TCP/IP, and authentication connections.
8  *
9  * As far as I am concerned, the code I have written for this software
10  * can be used freely for any purpose.  Any derived versions of this
11  * software must be clearly marked as such, and if the derived work is
12  * incompatible with the protocol description in the RFC file, it must be
13  * called by a name other than "ssh" or "Secure Shell".
14  *
15  * Copyright (c) 1999 Niels Provos.  All rights reserved.
16  *
17  * Modified to work with SSL by Niels Provos <provos@citi.umich.edu>
18  * in Canada (German citizen).
19  *
20  * Redistribution and use in source and binary forms, with or without
21  * modification, are permitted provided that the following conditions
22  * are met:
23  * 1. Redistributions of source code must retain the above copyright
24  *    notice, this list of conditions and the following disclaimer.
25  * 2. Redistributions in binary form must reproduce the above copyright
26  *    notice, this list of conditions and the following disclaimer in the
27  *    documentation and/or other materials provided with the distribution.
28  *
29  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
30  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
31  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
32  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
33  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
34  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
38  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  */
40
41 #include "includes.h"
42 RCSID("$OpenBSD: ssh.c,v 1.132 2001/07/31 09:28:44 jakob Exp $");
43
44 #include <openssl/evp.h>
45 #include <openssl/err.h>
46
47 #include "ssh.h"
48 #include "ssh1.h"
49 #include "ssh2.h"
50 #include "compat.h"
51 #include "cipher.h"
52 #include "xmalloc.h"
53 #include "packet.h"
54 #include "buffer.h"
55 #include "uidswap.h"
56 #include "channels.h"
57 #include "key.h"
58 #include "authfd.h"
59 #include "authfile.h"
60 #include "pathnames.h"
61 #include "clientloop.h"
62 #include "log.h"
63 #include "readconf.h"
64 #include "sshconnect.h"
65 #include "tildexpand.h"
66 #include "dispatch.h"
67 #include "misc.h"
68 #include "kex.h"
69 #include "mac.h"
70 #include "sshtty.h"
71
72 #ifdef SMARTCARD
73 #include <openssl/engine.h>
74 #include "scard.h"
75 #endif
76
77 #ifdef HAVE___PROGNAME
78 extern char *__progname;
79 #else
80 char *__progname;
81 #endif
82
83 /* Flag indicating whether IPv4 or IPv6.  This can be set on the command line.
84    Default value is AF_UNSPEC means both IPv4 and IPv6. */
85 #ifdef IPV4_DEFAULT
86 int IPv4or6 = AF_INET;
87 #else
88 int IPv4or6 = AF_UNSPEC;
89 #endif
90
91 /* Flag indicating whether debug mode is on.  This can be set on the command line. */
92 int debug_flag = 0;
93
94 /* Flag indicating whether a tty should be allocated */
95 int tty_flag = 0;
96 int no_tty_flag = 0;
97 int force_tty_flag = 0;
98
99 /* don't exec a shell */
100 int no_shell_flag = 0;
101
102 /*
103  * Flag indicating that nothing should be read from stdin.  This can be set
104  * on the command line.
105  */
106 int stdin_null_flag = 0;
107
108 /*
109  * Flag indicating that ssh should fork after authentication.  This is useful
110  * so that the pasphrase can be entered manually, and then ssh goes to the
111  * background.
112  */
113 int fork_after_authentication_flag = 0;
114
115 /*
116  * General data structure for command line options and options configurable
117  * in configuration files.  See readconf.h.
118  */
119 Options options;
120
121 /*
122  * Name of the host we are connecting to.  This is the name given on the
123  * command line, or the HostName specified for the user-supplied name in a
124  * configuration file.
125  */
126 char *host;
127
128 /* socket address the host resolves to */
129 struct sockaddr_storage hostaddr;
130
131 /*
132  * Flag to indicate that we have received a window change signal which has
133  * not yet been processed.  This will cause a message indicating the new
134  * window size to be sent to the server a little later.  This is volatile
135  * because this is updated in a signal handler.
136  */
137 volatile int received_window_change_signal = 0;
138
139 /* Private host keys. */
140 struct {
141         Key     **keys;
142         int     nkeys;
143 } sensitive_data;
144
145 /* Original real UID. */
146 uid_t original_real_uid;
147
148 /* command to be executed */
149 Buffer command;
150
151 /* Should we execute a command or invoke a subsystem? */
152 int subsystem_flag = 0;
153
154 /* Prints a help message to the user.  This function never returns. */
155
156 static void
157 usage(void)
158 {
159         fprintf(stderr, "Usage: %s [options] host [command]\n", __progname);
160         fprintf(stderr, "Options:\n");
161         fprintf(stderr, "  -l user     Log in using this user name.\n");
162         fprintf(stderr, "  -n          Redirect input from " _PATH_DEVNULL ".\n");
163         fprintf(stderr, "  -A          Enable authentication agent forwarding.\n");
164         fprintf(stderr, "  -a          Disable authentication agent forwarding (default).\n");
165 #ifdef AFS
166         fprintf(stderr, "  -k          Disable Kerberos ticket and AFS token forwarding.\n");
167 #endif                          /* AFS */
168         fprintf(stderr, "  -X          Enable X11 connection forwarding.\n");
169         fprintf(stderr, "  -x          Disable X11 connection forwarding (default).\n");
170         fprintf(stderr, "  -i file     Identity for public key authentication "
171             "(default: ~/.ssh/identity)\n");
172         fprintf(stderr, "  -t          Tty; allocate a tty even if command is given.\n");
173         fprintf(stderr, "  -T          Do not allocate a tty.\n");
174         fprintf(stderr, "  -v          Verbose; display verbose debugging messages.\n");
175         fprintf(stderr, "              Multiple -v increases verbosity.\n");
176         fprintf(stderr, "  -V          Display version number only.\n");
177         fprintf(stderr, "  -P          Don't allocate a privileged port.\n");
178         fprintf(stderr, "  -q          Quiet; don't display any warning messages.\n");
179         fprintf(stderr, "  -f          Fork into background after authentication.\n");
180         fprintf(stderr, "  -e char     Set escape character; ``none'' = disable (default: ~).\n");
181
182         fprintf(stderr, "  -c cipher   Select encryption algorithm\n");
183         fprintf(stderr, "  -m macs     Specify MAC algorithms for protocol version 2.\n");
184         fprintf(stderr, "  -p port     Connect to this port.  Server must be on the same port.\n");
185         fprintf(stderr, "  -L listen-port:host:port   Forward local port to remote address\n");
186         fprintf(stderr, "  -R listen-port:host:port   Forward remote port to local address\n");
187         fprintf(stderr, "              These cause %s to listen for connections on a port, and\n", __progname);
188         fprintf(stderr, "              forward them to the other side by connecting to host:port.\n");
189         fprintf(stderr, "  -C          Enable compression.\n");
190         fprintf(stderr, "  -N          Do not execute a shell or command.\n");
191         fprintf(stderr, "  -g          Allow remote hosts to connect to forwarded ports.\n");
192         fprintf(stderr, "  -1          Force protocol version 1.\n");
193         fprintf(stderr, "  -2          Force protocol version 2.\n");
194         fprintf(stderr, "  -4          Use IPv4 only.\n");
195         fprintf(stderr, "  -6          Use IPv6 only.\n");
196         fprintf(stderr, "  -o 'option' Process the option as if it was read from a configuration file.\n");
197         fprintf(stderr, "  -s          Invoke command (mandatory) as SSH2 subsystem.\n");
198         fprintf(stderr, "  -b addr     Local IP address.\n");
199         exit(1);
200 }
201
202 /*
203  * Connects to the given host using rsh (or prints an error message and exits
204  * if rsh is not available).  This function never returns.
205  */
206 static void
207 rsh_connect(char *host, char *user, Buffer * command)
208 {
209         char *args[10];
210         int i;
211
212         log("Using rsh.  WARNING: Connection will not be encrypted.");
213         /* Build argument list for rsh. */
214         i = 0;
215         args[i++] = _PATH_RSH;
216         /* host may have to come after user on some systems */
217         args[i++] = host;
218         if (user) {
219                 args[i++] = "-l";
220                 args[i++] = user;
221         }
222         if (buffer_len(command) > 0) {
223                 buffer_append(command, "\0", 1);
224                 args[i++] = buffer_ptr(command);
225         }
226         args[i++] = NULL;
227         if (debug_flag) {
228                 for (i = 0; args[i]; i++) {
229                         if (i != 0)
230                                 fprintf(stderr, " ");
231                         fprintf(stderr, "%s", args[i]);
232                 }
233                 fprintf(stderr, "\n");
234         }
235         execv(_PATH_RSH, args);
236         perror(_PATH_RSH);
237         exit(1);
238 }
239
240 static int ssh_session(void);
241 static int ssh_session2(void);
242 static void load_public_identity_files(void);
243
244 /*
245  * Main program for the ssh client.
246  */
247 int
248 main(int ac, char **av)
249 {
250         int i, opt, exit_status, cerr;
251         u_short fwd_port, fwd_host_port;
252         char *p, *cp, buf[256];
253         struct stat st;
254         struct passwd *pw;
255         int dummy;
256         uid_t original_effective_uid;
257         extern int optopt;
258         extern int optind;
259         extern int optreset;
260         extern char *optarg;
261
262         __progname = get_progname(av[0]);
263         init_rng();
264
265         /*
266          * Save the original real uid.  It will be needed later (uid-swapping
267          * may clobber the real uid).
268          */
269         original_real_uid = getuid();
270         original_effective_uid = geteuid();
271
272 #ifdef HAVE_SETRLIMIT
273         /* If we are installed setuid root be careful to not drop core. */
274         if (original_real_uid != original_effective_uid) {
275                 struct rlimit rlim;
276                 rlim.rlim_cur = rlim.rlim_max = 0;
277                 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
278                         fatal("setrlimit failed: %.100s", strerror(errno));
279         }
280 #endif
281         /* Get user data. */
282         pw = getpwuid(original_real_uid);
283         if (!pw) {
284                 log("You don't exist, go away!");
285                 exit(1);
286         }
287         /* Take a copy of the returned structure. */
288         pw = pwcopy(pw);
289
290         /*
291          * Use uid-swapping to give up root privileges for the duration of
292          * option processing.  We will re-instantiate the rights when we are
293          * ready to create the privileged port, and will permanently drop
294          * them when the port has been created (actually, when the connection
295          * has been made, as we may need to create the port several times).
296          */
297         temporarily_use_uid(pw);
298
299         /*
300          * Set our umask to something reasonable, as some files are created
301          * with the default umask.  This will make them world-readable but
302          * writable only by the owner, which is ok for all files for which we
303          * don't set the modes explicitly.
304          */
305         umask(022);
306
307         /* Initialize option structure to indicate that no values have been set. */
308         initialize_options(&options);
309
310         /* Parse command-line arguments. */
311         host = NULL;
312
313 again:
314         while ((opt = getopt(ac, av,
315             "1246ab:c:e:fgi:kl:m:no:p:qstvxACD:I:L:NPR:TVX")) != -1) {
316                 switch (opt) {
317                 case '1':
318                         options.protocol = SSH_PROTO_1;
319                         break;
320                 case '2':
321                         options.protocol = SSH_PROTO_2;
322                         break;
323                 case '4':
324                         IPv4or6 = AF_INET;
325                         break;
326                 case '6':
327                         IPv4or6 = AF_INET6;
328                         break;
329                 case 'n':
330                         stdin_null_flag = 1;
331                         break;
332                 case 'f':
333                         fork_after_authentication_flag = 1;
334                         stdin_null_flag = 1;
335                         break;
336                 case 'x':
337                         options.forward_x11 = 0;
338                         break;
339                 case 'X':
340                         options.forward_x11 = 1;
341                         break;
342                 case 'g':
343                         options.gateway_ports = 1;
344                         break;
345                 case 'P':
346                         options.use_privileged_port = 0;
347                         break;
348                 case 'a':
349                         options.forward_agent = 0;
350                         break;
351                 case 'A':
352                         options.forward_agent = 1;
353                         break;
354 #ifdef AFS
355                 case 'k':
356                         options.kerberos_tgt_passing = 0;
357                         options.afs_token_passing = 0;
358                         break;
359 #endif
360                 case 'i':
361                         if (stat(optarg, &st) < 0) {
362                                 fprintf(stderr, "Warning: Identity file %s "
363                                     "does not exist.\n", optarg);
364                                 break;
365                         }
366                         if (options.num_identity_files >=
367                             SSH_MAX_IDENTITY_FILES)
368                                 fatal("Too many identity files specified "
369                                     "(max %d)", SSH_MAX_IDENTITY_FILES);
370                         options.identity_files[options.num_identity_files++] =
371                             xstrdup(optarg);
372                         break;
373                 case 'I':
374 #ifdef SMARTCARD
375                         options.smartcard_device = atoi(optarg);
376 #else
377                         fprintf(stderr, "no support for smartcards.\n");
378 #endif
379                         break;
380                 case 't':
381                         if (tty_flag)
382                                 force_tty_flag = 1;
383                         tty_flag = 1;
384                         break;
385                 case 'v':
386                         if (0 == debug_flag) {
387                                 debug_flag = 1;
388                                 options.log_level = SYSLOG_LEVEL_DEBUG1;
389                         } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
390                                 options.log_level++;
391                                 break;
392                         } else
393                                 fatal("Too high debugging level.");
394                         /* fallthrough */
395                 case 'V':
396                         fprintf(stderr,
397                             "%s, SSH protocols %d.%d/%d.%d, OpenSSL 0x%8.8lx\n",
398                             SSH_VERSION,
399                             PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1,
400                             PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2,
401                             SSLeay());
402                         if (opt == 'V')
403                                 exit(0);
404                         break;
405                 case 'q':
406                         options.log_level = SYSLOG_LEVEL_QUIET;
407                         break;
408                 case 'e':
409                         if (optarg[0] == '^' && optarg[2] == 0 &&
410                             (u_char) optarg[1] >= 64 &&
411                             (u_char) optarg[1] < 128)
412                                 options.escape_char = (u_char) optarg[1] & 31;
413                         else if (strlen(optarg) == 1)
414                                 options.escape_char = (u_char) optarg[0];
415                         else if (strcmp(optarg, "none") == 0)
416                                 options.escape_char = SSH_ESCAPECHAR_NONE;
417                         else {
418                                 fprintf(stderr, "Bad escape character '%s'.\n",
419                                     optarg);
420                                 exit(1);
421                         }
422                         break;
423                 case 'c':
424                         if (ciphers_valid(optarg)) {
425                                 /* SSH2 only */
426                                 options.ciphers = xstrdup(optarg);
427                                 options.cipher = SSH_CIPHER_ILLEGAL;
428                         } else {
429                                 /* SSH1 only */
430                                 options.cipher = cipher_number(optarg);
431                                 if (options.cipher == -1) {
432                                         fprintf(stderr,
433                                             "Unknown cipher type '%s'\n",
434                                             optarg);
435                                         exit(1);
436                                 }
437                                 if (options.cipher == SSH_CIPHER_3DES)
438                                         options.ciphers = "3des-cbc";
439                                 else if (options.cipher == SSH_CIPHER_BLOWFISH)
440                                         options.ciphers = "blowfish-cbc";
441                                 else
442                                         options.ciphers = (char *)-1;
443                         }
444                         break;
445                 case 'm':
446                         if (mac_valid(optarg))
447                                 options.macs = xstrdup(optarg);
448                         else {
449                                 fprintf(stderr, "Unknown mac type '%s'\n",
450                                     optarg);
451                                 exit(1);
452                         }
453                         break;
454                 case 'p':
455                         options.port = a2port(optarg);
456                         if (options.port == 0) {
457                                 fprintf(stderr, "Bad port '%s'\n", optarg);
458                                 exit(1);
459                         }
460                         break;
461                 case 'l':
462                         options.user = optarg;
463                         break;
464                 case 'R':
465                         if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf,
466                             &fwd_host_port) != 3 &&
467                             sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf,
468                             &fwd_host_port) != 3) {
469                                 fprintf(stderr,
470                                     "Bad forwarding specification '%s'.\n",
471                                     optarg);
472                                 usage();
473                                 /* NOTREACHED */
474                         }
475                         add_remote_forward(&options, fwd_port, buf,
476                              fwd_host_port);
477                         break;
478                 case 'L':
479                         if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf,
480                             &fwd_host_port) != 3 &&
481                             sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf,
482                             &fwd_host_port) != 3) {
483                                 fprintf(stderr,
484                                     "Bad forwarding specification '%s'.\n",
485                                     optarg);
486                                 usage();
487                                 /* NOTREACHED */
488                         }
489                         add_local_forward(&options, fwd_port, buf,
490                             fwd_host_port);
491                         break;
492
493                 case 'D':
494                         fwd_port = a2port(optarg);
495                         if (fwd_port == 0) {
496                                 fprintf(stderr, "Bad dynamic port '%s'\n",
497                                     optarg);
498                                 exit(1);
499                         }
500                         add_local_forward(&options, fwd_port, "socks4", 0);
501                         break;
502
503                 case 'C':
504                         options.compression = 1;
505                         break;
506                 case 'N':
507                         no_shell_flag = 1;
508                         no_tty_flag = 1;
509                         break;
510                 case 'T':
511                         no_tty_flag = 1;
512                         break;
513                 case 'o':
514                         dummy = 1;
515                         if (process_config_line(&options, host ? host : "",
516                             optarg, "command-line", 0, &dummy) != 0)
517                                 exit(1);
518                         break;
519                 case 's':
520                         subsystem_flag = 1;
521                         break;
522                 case 'b':
523                         options.bind_address = optarg;
524                         break;
525                 default:
526                         usage();
527                 }
528         }
529
530         ac -= optind;
531         av += optind;
532
533         if (ac > 0 && !host && **av != '-') {
534                 if (strchr(*av, '@')) {
535                         p = xstrdup(*av);
536                         cp = strchr(p, '@');
537                         if (cp == NULL || cp == p)
538                                 usage();
539                         options.user = p;
540                         *cp = '\0';
541                         host = ++cp;
542                 } else
543                         host = *av;
544                 ac--, av++;
545                 if (ac > 0) {
546                         optind = 0;
547                         optreset = 1;
548                         goto again;
549                 }
550         }
551
552         /* Check that we got a host name. */
553         if (!host)
554                 usage();
555
556         SSLeay_add_all_algorithms();
557         ERR_load_crypto_strings();
558
559         /* Initialize the command to execute on remote host. */
560         buffer_init(&command);
561
562         /*
563          * Save the command to execute on the remote host in a buffer. There
564          * is no limit on the length of the command, except by the maximum
565          * packet size.  Also sets the tty flag if there is no command.
566          */
567         if (!ac) {
568                 /* No command specified - execute shell on a tty. */
569                 tty_flag = 1;
570                 if (subsystem_flag) {
571                         fprintf(stderr,
572                             "You must specify a subsystem to invoke.\n");
573                         usage();
574                 }
575         } else {
576                 /* A command has been specified.  Store it into the buffer. */
577                 for (i = 0; i < ac; i++) {
578                         if (i)
579                                 buffer_append(&command, " ", 1);
580                         buffer_append(&command, av[i], strlen(av[i]));
581                 }
582         }
583
584         /* Cannot fork to background if no command. */
585         if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
586                 fatal("Cannot fork into background without a command to execute.");
587
588         /* Allocate a tty by default if no command specified. */
589         if (buffer_len(&command) == 0)
590                 tty_flag = 1;
591
592         /* Force no tty*/
593         if (no_tty_flag)
594                 tty_flag = 0;
595         /* Do not allocate a tty if stdin is not a tty. */
596         if (!isatty(fileno(stdin)) && !force_tty_flag) {
597                 if (tty_flag)
598                         log("Pseudo-terminal will not be allocated because stdin is not a terminal.");
599                 tty_flag = 0;
600         }
601
602         /*
603          * Initialize "log" output.  Since we are the client all output
604          * actually goes to stderr.
605          */
606         log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
607             SYSLOG_FACILITY_USER, 1);
608
609         /* Read per-user configuration file. */
610         snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, _PATH_SSH_USER_CONFFILE);
611         read_config_file(buf, host, &options);
612
613         /* Read systemwide configuration file. */
614         read_config_file(_PATH_HOST_CONFIG_FILE, host, &options);
615
616         /* Fill configuration defaults. */
617         fill_default_options(&options);
618
619         /* reinit */
620         log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
621
622         seed_rng();
623
624         if (options.user == NULL)
625                 options.user = xstrdup(pw->pw_name);
626
627         if (options.hostname != NULL)
628                 host = options.hostname;
629
630         /* Disable rhosts authentication if not running as root. */
631 #ifdef HAVE_CYGWIN
632         /* Ignore uid if running under Windows */
633         if (!options.use_privileged_port) {
634 #else
635         if (original_effective_uid != 0 || !options.use_privileged_port) {
636 #endif
637                 debug("Rhosts Authentication disabled, "
638                     "originating port will not be trusted.");
639                 options.rhosts_authentication = 0;
640         }
641         /*
642          * If using rsh has been selected, exec it now (without trying
643          * anything else).  Note that we must release privileges first.
644          */
645         if (options.use_rsh) {
646                 /*
647                  * Restore our superuser privileges.  This must be done
648                  * before permanently setting the uid.
649                  */
650                 restore_uid();
651
652                 /* Switch to the original uid permanently. */
653                 permanently_set_uid(pw);
654
655                 /* Execute rsh. */
656                 rsh_connect(host, options.user, &command);
657                 fatal("rsh_connect returned");
658         }
659         /* Restore our superuser privileges. */
660         restore_uid();
661
662         /* Open a connection to the remote host. */
663
664         cerr = ssh_connect(host, &hostaddr, options.port,
665             options.connection_attempts,
666             original_effective_uid != 0 || !options.use_privileged_port,
667             pw, options.proxy_command);
668
669         /*
670          * If we successfully made the connection, load the host private key
671          * in case we will need it later for combined rsa-rhosts
672          * authentication. This must be done before releasing extra
673          * privileges, because the file is only readable by root.
674          */
675         sensitive_data.nkeys = 0;
676         sensitive_data.keys = NULL;
677         if (!cerr && (options.rhosts_rsa_authentication ||
678             options.hostbased_authentication)) {
679                 sensitive_data.nkeys = 3;
680                 sensitive_data.keys = xmalloc(sensitive_data.nkeys*sizeof(Key));
681                 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
682                     _PATH_HOST_KEY_FILE, "", NULL);
683                 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
684                     _PATH_HOST_DSA_KEY_FILE, "", NULL);
685                 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
686                     _PATH_HOST_RSA_KEY_FILE, "", NULL);
687         }
688         /*
689          * Get rid of any extra privileges that we may have.  We will no
690          * longer need them.  Also, extra privileges could make it very hard
691          * to read identity files and other non-world-readable files from the
692          * user's home directory if it happens to be on a NFS volume where
693          * root is mapped to nobody.
694          */
695
696         /*
697          * Note that some legacy systems need to postpone the following call
698          * to permanently_set_uid() until the private hostkey is destroyed
699          * with RSA_free().  Otherwise the calling user could ptrace() the
700          * process, read the private hostkey and impersonate the host.
701          * OpenBSD does not allow ptracing of setuid processes.
702          */
703         permanently_set_uid(pw);
704
705         /*
706          * Now that we are back to our own permissions, create ~/.ssh
707          * directory if it doesn\'t already exist.
708          */
709         snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, _PATH_SSH_USER_DIR);
710         if (stat(buf, &st) < 0)
711                 if (mkdir(buf, 0700) < 0)
712                         error("Could not create directory '%.200s'.", buf);
713
714         /* Check if the connection failed, and try "rsh" if appropriate. */
715         if (cerr) {
716                 if (!options.fallback_to_rsh)
717                         exit(1);
718                 if (options.port != 0)
719                         log("Secure connection to %.100s on port %hu refused; "
720                             "reverting to insecure method",
721                             host, options.port);
722                 else
723                         log("Secure connection to %.100s refused; "
724                             "reverting to insecure method.", host);
725
726                 rsh_connect(host, options.user, &command);
727                 fatal("rsh_connect returned");
728         }
729         /* load options.identity_files */
730         load_public_identity_files();
731
732         /* Expand ~ in known host file names. */
733         /* XXX mem-leaks: */
734         options.system_hostfile =
735             tilde_expand_filename(options.system_hostfile, original_real_uid);
736         options.user_hostfile =
737             tilde_expand_filename(options.user_hostfile, original_real_uid);
738         options.system_hostfile2 =
739             tilde_expand_filename(options.system_hostfile2, original_real_uid);
740         options.user_hostfile2 =
741             tilde_expand_filename(options.user_hostfile2, original_real_uid);
742
743         /* Log into the remote system.  This never returns if the login fails. */
744         ssh_login(sensitive_data.keys, sensitive_data.nkeys,
745             host, (struct sockaddr *)&hostaddr, pw);
746
747         /* We no longer need the private host keys.  Clear them now. */
748         if (sensitive_data.nkeys != 0) {
749                 for (i = 0; i < sensitive_data.nkeys; i++) {
750                         if (sensitive_data.keys[i] != NULL) {
751                                 /* Destroys contents safely */
752                                 debug3("clear hostkey %d", i);
753                                 key_free(sensitive_data.keys[i]);
754                                 sensitive_data.keys[i] = NULL;
755                         }
756                 }
757                 xfree(sensitive_data.keys);
758         }
759
760         exit_status = compat20 ? ssh_session2() : ssh_session();
761         packet_close();
762         return exit_status;
763 }
764
765 static void
766 x11_get_proto(char *proto, int proto_len, char *data, int data_len)
767 {
768         char line[512];
769         FILE *f;
770         int got_data = 0, i;
771
772         if (options.xauth_location) {
773                 /* Try to get Xauthority information for the display. */
774                 snprintf(line, sizeof line, "%.100s list %.200s 2>" _PATH_DEVNULL,
775                     options.xauth_location, getenv("DISPLAY"));
776                 f = popen(line, "r");
777                 if (f && fgets(line, sizeof(line), f) &&
778                     sscanf(line, "%*s %s %s", proto, data) == 2)
779                         got_data = 1;
780                 if (f)
781                         pclose(f);
782         }
783         /*
784          * If we didn't get authentication data, just make up some
785          * data.  The forwarding code will check the validity of the
786          * response anyway, and substitute this data.  The X11
787          * server, however, will ignore this fake data and use
788          * whatever authentication mechanisms it was using otherwise
789          * for the local connection.
790          */
791         if (!got_data) {
792                 u_int32_t rand = 0;
793
794                 strlcpy(proto, "MIT-MAGIC-COOKIE-1", proto_len);
795                 for (i = 0; i < 16; i++) {
796                         if (i % 4 == 0)
797                                 rand = arc4random();
798                         snprintf(data + 2 * i, data_len - 2 * i, "%02x", rand & 0xff);
799                         rand >>= 8;
800                 }
801         }
802 }
803
804 static void
805 ssh_init_forwarding(void)
806 {
807         int success = 0;
808         int i;
809
810         /* Initiate local TCP/IP port forwardings. */
811         for (i = 0; i < options.num_local_forwards; i++) {
812                 debug("Connections to local port %d forwarded to remote address %.200s:%d",
813                     options.local_forwards[i].port,
814                     options.local_forwards[i].host,
815                     options.local_forwards[i].host_port);
816                 success += channel_request_local_forwarding(
817                     options.local_forwards[i].port,
818                     options.local_forwards[i].host,
819                     options.local_forwards[i].host_port,
820                     options.gateway_ports);
821         }
822         if (i > 0 && success == 0)
823                 error("Could not request local forwarding.");
824
825         /* Initiate remote TCP/IP port forwardings. */
826         for (i = 0; i < options.num_remote_forwards; i++) {
827                 debug("Connections to remote port %d forwarded to local address %.200s:%d",
828                     options.remote_forwards[i].port,
829                     options.remote_forwards[i].host,
830                     options.remote_forwards[i].host_port);
831                 channel_request_remote_forwarding(
832                     options.remote_forwards[i].port,
833                     options.remote_forwards[i].host,
834                     options.remote_forwards[i].host_port);
835         }
836 }
837
838 static void
839 check_agent_present(void)
840 {
841         if (options.forward_agent) {
842                 /* Clear agent forwarding if we don\'t have an agent. */
843                 int authfd = ssh_get_authentication_socket();
844                 if (authfd < 0)
845                         options.forward_agent = 0;
846                 else
847                         ssh_close_authentication_socket(authfd);
848         }
849 }
850
851 static int
852 ssh_session(void)
853 {
854         int type;
855         int plen;
856         int interactive = 0;
857         int have_tty = 0;
858         struct winsize ws;
859         char *cp;
860
861         /* Enable compression if requested. */
862         if (options.compression) {
863                 debug("Requesting compression at level %d.", options.compression_level);
864
865                 if (options.compression_level < 1 || options.compression_level > 9)
866                         fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
867
868                 /* Send the request. */
869                 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
870                 packet_put_int(options.compression_level);
871                 packet_send();
872                 packet_write_wait();
873                 type = packet_read(&plen);
874                 if (type == SSH_SMSG_SUCCESS)
875                         packet_start_compression(options.compression_level);
876                 else if (type == SSH_SMSG_FAILURE)
877                         log("Warning: Remote host refused compression.");
878                 else
879                         packet_disconnect("Protocol error waiting for compression response.");
880         }
881         /* Allocate a pseudo tty if appropriate. */
882         if (tty_flag) {
883                 debug("Requesting pty.");
884
885                 /* Start the packet. */
886                 packet_start(SSH_CMSG_REQUEST_PTY);
887
888                 /* Store TERM in the packet.  There is no limit on the
889                    length of the string. */
890                 cp = getenv("TERM");
891                 if (!cp)
892                         cp = "";
893                 packet_put_cstring(cp);
894
895                 /* Store window size in the packet. */
896                 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
897                         memset(&ws, 0, sizeof(ws));
898                 packet_put_int(ws.ws_row);
899                 packet_put_int(ws.ws_col);
900                 packet_put_int(ws.ws_xpixel);
901                 packet_put_int(ws.ws_ypixel);
902
903                 /* Store tty modes in the packet. */
904                 tty_make_modes(fileno(stdin), NULL);
905
906                 /* Send the packet, and wait for it to leave. */
907                 packet_send();
908                 packet_write_wait();
909
910                 /* Read response from the server. */
911                 type = packet_read(&plen);
912                 if (type == SSH_SMSG_SUCCESS) {
913                         interactive = 1;
914                         have_tty = 1;
915                 } else if (type == SSH_SMSG_FAILURE)
916                         log("Warning: Remote host failed or refused to allocate a pseudo tty.");
917                 else
918                         packet_disconnect("Protocol error waiting for pty request response.");
919         }
920         /* Request X11 forwarding if enabled and DISPLAY is set. */
921         if (options.forward_x11 && getenv("DISPLAY") != NULL) {
922                 char proto[512], data[512];
923                 /* Get reasonable local authentication information. */
924                 x11_get_proto(proto, sizeof proto, data, sizeof data);
925                 /* Request forwarding with authentication spoofing. */
926                 debug("Requesting X11 forwarding with authentication spoofing.");
927                 x11_request_forwarding_with_spoofing(0, proto, data);
928
929                 /* Read response from the server. */
930                 type = packet_read(&plen);
931                 if (type == SSH_SMSG_SUCCESS) {
932                         interactive = 1;
933                 } else if (type == SSH_SMSG_FAILURE) {
934                         log("Warning: Remote host denied X11 forwarding.");
935                 } else {
936                         packet_disconnect("Protocol error waiting for X11 forwarding");
937                 }
938         }
939         /* Tell the packet module whether this is an interactive session. */
940         packet_set_interactive(interactive);
941
942         /* Request authentication agent forwarding if appropriate. */
943         check_agent_present();
944
945         if (options.forward_agent) {
946                 debug("Requesting authentication agent forwarding.");
947                 auth_request_forwarding();
948
949                 /* Read response from the server. */
950                 type = packet_read(&plen);
951                 packet_integrity_check(plen, 0, type);
952                 if (type != SSH_SMSG_SUCCESS)
953                         log("Warning: Remote host denied authentication agent forwarding.");
954         }
955
956         /* Initiate port forwardings. */
957         ssh_init_forwarding();
958
959         /* If requested, let ssh continue in the background. */
960         if (fork_after_authentication_flag)
961                 if (daemon(1, 1) < 0)
962                         fatal("daemon() failed: %.200s", strerror(errno));
963
964         /*
965          * If a command was specified on the command line, execute the
966          * command now. Otherwise request the server to start a shell.
967          */
968         if (buffer_len(&command) > 0) {
969                 int len = buffer_len(&command);
970                 if (len > 900)
971                         len = 900;
972                 debug("Sending command: %.*s", len, buffer_ptr(&command));
973                 packet_start(SSH_CMSG_EXEC_CMD);
974                 packet_put_string(buffer_ptr(&command), buffer_len(&command));
975                 packet_send();
976                 packet_write_wait();
977         } else {
978                 debug("Requesting shell.");
979                 packet_start(SSH_CMSG_EXEC_SHELL);
980                 packet_send();
981                 packet_write_wait();
982         }
983
984         /* Enter the interactive session. */
985         return client_loop(have_tty, tty_flag ?
986             options.escape_char : SSH_ESCAPECHAR_NONE, 0);
987 }
988
989 static void
990 client_subsystem_reply(int type, int plen, void *ctxt)
991 {
992         int id, len;
993
994         id = packet_get_int();
995         len = buffer_len(&command);
996         if (len > 900)
997                 len = 900;
998         packet_done();
999         if (type == SSH2_MSG_CHANNEL_FAILURE)
1000                 fatal("Request for subsystem '%.*s' failed on channel %d",
1001                     len, buffer_ptr(&command), id);
1002 }
1003
1004 static void
1005 ssh_session2_callback(int id, void *arg)
1006 {
1007         int len;
1008         int interactive = 0;
1009         struct termios tio;
1010
1011         debug("client_init id %d arg %ld", id, (long)arg);
1012
1013         if (tty_flag) {
1014                 struct winsize ws;
1015                 char *cp;
1016                 cp = getenv("TERM");
1017                 if (!cp)
1018                         cp = "";
1019                 /* Store window size in the packet. */
1020                 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1021                         memset(&ws, 0, sizeof(ws));
1022
1023                 channel_request_start(id, "pty-req", 0);
1024                 packet_put_cstring(cp);
1025                 packet_put_int(ws.ws_col);
1026                 packet_put_int(ws.ws_row);
1027                 packet_put_int(ws.ws_xpixel);
1028                 packet_put_int(ws.ws_ypixel);
1029                 tio = get_saved_tio();
1030                 tty_make_modes(/*ignored*/ 0, &tio);
1031                 packet_send();
1032                 interactive = 1;
1033                 /* XXX wait for reply */
1034         }
1035         if (options.forward_x11 &&
1036             getenv("DISPLAY") != NULL) {
1037                 char proto[512], data[512];
1038                 /* Get reasonable local authentication information. */
1039                 x11_get_proto(proto, sizeof proto, data, sizeof data);
1040                 /* Request forwarding with authentication spoofing. */
1041                 debug("Requesting X11 forwarding with authentication spoofing.");
1042                 x11_request_forwarding_with_spoofing(id, proto, data);
1043                 interactive = 1;
1044                 /* XXX wait for reply */
1045         }
1046
1047         check_agent_present();
1048         if (options.forward_agent) {
1049                 debug("Requesting authentication agent forwarding.");
1050                 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1051                 packet_send();
1052         }
1053
1054         len = buffer_len(&command);
1055         if (len > 0) {
1056                 if (len > 900)
1057                         len = 900;
1058                 if (subsystem_flag) {
1059                         debug("Sending subsystem: %.*s", len, buffer_ptr(&command));
1060                         channel_request_start(id, "subsystem", /*want reply*/ 1);
1061                         /* register callback for reply */
1062                         /* XXX we asume that client_loop has already been called */
1063                         dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &client_subsystem_reply);
1064                         dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &client_subsystem_reply);
1065                 } else {
1066                         debug("Sending command: %.*s", len, buffer_ptr(&command));
1067                         channel_request_start(id, "exec", 0);
1068                 }
1069                 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1070                 packet_send();
1071         } else {
1072                 channel_request(id, "shell", 0);
1073         }
1074         /* channel_callback(id, SSH2_MSG_OPEN_CONFIGMATION, client_init, 0); */
1075
1076         /* register different callback, etc. XXX */
1077         packet_set_interactive(interactive);
1078 }
1079
1080 static int
1081 ssh_session2_command(void)
1082 {
1083         Channel *c;
1084         int window, packetmax, in, out, err;
1085
1086         if (stdin_null_flag) {
1087                 in = open(_PATH_DEVNULL, O_RDONLY);
1088         } else {
1089                 in = dup(STDIN_FILENO);
1090         }
1091         out = dup(STDOUT_FILENO);
1092         err = dup(STDERR_FILENO);
1093
1094         if (in < 0 || out < 0 || err < 0)
1095                 fatal("dup() in/out/err failed");
1096
1097         /* enable nonblocking unless tty */
1098         if (!isatty(in))
1099                 set_nonblock(in);
1100         if (!isatty(out))
1101                 set_nonblock(out);
1102         if (!isatty(err))
1103                 set_nonblock(err);
1104
1105         window = CHAN_SES_WINDOW_DEFAULT;
1106         packetmax = CHAN_SES_PACKET_DEFAULT;
1107         if (!tty_flag) {
1108                 window *= 2;
1109                 packetmax *=2;
1110         }
1111         c = channel_new(
1112             "session", SSH_CHANNEL_OPENING, in, out, err,
1113             window, packetmax, CHAN_EXTENDED_WRITE,
1114             xstrdup("client-session"), /*nonblock*/0);
1115         if (c == NULL)
1116                 fatal("ssh_session2_command: channel_new failed");
1117
1118         debug3("ssh_session2_command: channel_new: %d", c->self);
1119
1120         channel_send_open(c->self);
1121         channel_register_callback(c->self, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION,
1122              ssh_session2_callback, (void *)0);
1123
1124         return c->self;
1125 }
1126
1127 static int
1128 ssh_session2(void)
1129 {
1130         int id;
1131
1132         /* XXX should be pre-session */
1133         ssh_init_forwarding();
1134
1135         id = no_shell_flag ? -1 : ssh_session2_command();
1136
1137         /* If requested, let ssh continue in the background. */
1138         if (fork_after_authentication_flag)
1139                 if (daemon(1, 1) < 0)
1140                         fatal("daemon() failed: %.200s", strerror(errno));
1141
1142         return client_loop(tty_flag, tty_flag ?
1143             options.escape_char : SSH_ESCAPECHAR_NONE, id);
1144 }
1145
1146 static void
1147 load_public_identity_files(void)
1148 {
1149         char *filename;
1150         Key *public;
1151         int i = 0;
1152
1153 #ifdef SMARTCARD
1154         if (options.smartcard_device >= 0 &&
1155             options.num_identity_files + 1 < SSH_MAX_IDENTITY_FILES &&
1156             (public = sc_get_key(options.smartcard_device)) != NULL ) {
1157                 Key *new;
1158
1159                 if (options.num_identity_files + 2 > SSH_MAX_IDENTITY_FILES)
1160                         options.num_identity_files = SSH_MAX_IDENTITY_FILES - 2;
1161                 memmove(&options.identity_files[2], &options.identity_files[0],
1162                     sizeof(char *) * options.num_identity_files);
1163                 options.num_identity_files += 2;
1164                 i = 2;
1165
1166                 /* XXX ssh1 vs ssh2 */
1167                 new = key_new(KEY_RSA);
1168                 new->flags = KEY_FLAG_EXT;
1169                 BN_copy(new->rsa->n, public->rsa->n);
1170                 BN_copy(new->rsa->e, public->rsa->e);
1171                 RSA_set_method(new->rsa, sc_get_engine());
1172                 options.identity_keys[0] = new;
1173                 options.identity_files[0] = xstrdup("smartcard rsa key");;
1174
1175                 new = key_new(KEY_RSA1);
1176                 new->flags = KEY_FLAG_EXT;
1177                 BN_copy(new->rsa->n, public->rsa->n);
1178                 BN_copy(new->rsa->e, public->rsa->e);
1179                 RSA_set_method(new->rsa, sc_get_engine());
1180                 options.identity_keys[1] = new;
1181                 options.identity_files[1] = xstrdup("smartcard rsa1 key");
1182
1183                 key_free(public);
1184         }
1185 #endif
1186         for (; i < options.num_identity_files; i++) {
1187                 filename = tilde_expand_filename(options.identity_files[i],
1188                     original_real_uid);
1189                 public = key_load_public(filename, NULL);
1190                 debug("identity file %s type %d", filename,
1191                     public ? public->type : -1);
1192                 xfree(options.identity_files[i]);
1193                 options.identity_files[i] = filename;
1194                 options.identity_keys[i] = public;
1195         }
1196 }
This page took 1.161684 seconds and 5 git commands to generate.