]> andersk Git - openssh.git/blob - ssh.c
- markus@cvs.openbsd.org 2002/05/23 19:24:30
[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  * Copyright (c) 2000, 2001, 2002 Markus Friedl.  All rights reserved.
17  *
18  * Modified to work with SSL by Niels Provos <provos@citi.umich.edu>
19  * in Canada (German citizen).
20  *
21  * Redistribution and use in source and binary forms, with or without
22  * modification, are permitted provided that the following conditions
23  * are met:
24  * 1. Redistributions of source code must retain the above copyright
25  *    notice, this list of conditions and the following disclaimer.
26  * 2. Redistributions in binary form must reproduce the above copyright
27  *    notice, this list of conditions and the following disclaimer in the
28  *    documentation and/or other materials provided with the distribution.
29  *
30  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40  */
41
42 #include "includes.h"
43 RCSID("$OpenBSD: ssh.c,v 1.173 2002/05/23 19:24:30 markus Exp $");
44
45 #include <openssl/evp.h>
46 #include <openssl/err.h>
47
48 #include "ssh.h"
49 #include "ssh1.h"
50 #include "ssh2.h"
51 #include "compat.h"
52 #include "cipher.h"
53 #include "xmalloc.h"
54 #include "packet.h"
55 #include "buffer.h"
56 #include "uidswap.h"
57 #include "channels.h"
58 #include "key.h"
59 #include "authfd.h"
60 #include "authfile.h"
61 #include "pathnames.h"
62 #include "clientloop.h"
63 #include "log.h"
64 #include "readconf.h"
65 #include "sshconnect.h"
66 #include "tildexpand.h"
67 #include "dispatch.h"
68 #include "misc.h"
69 #include "kex.h"
70 #include "mac.h"
71 #include "sshtty.h"
72
73 #ifdef SMARTCARD
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 passphrase 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 /* optional user configfile */
122 char *config = NULL;
123
124 /*
125  * Name of the host we are connecting to.  This is the name given on the
126  * command line, or the HostName specified for the user-supplied name in a
127  * configuration file.
128  */
129 char *host;
130
131 /* socket address the host resolves to */
132 struct sockaddr_storage hostaddr;
133
134 /* Private host keys. */
135 Sensitive sensitive_data;
136
137 /* Original real UID. */
138 uid_t original_real_uid;
139
140 /* command to be executed */
141 Buffer command;
142
143 /* Should we execute a command or invoke a subsystem? */
144 int subsystem_flag = 0;
145
146 /* # of replies received for global requests */
147 static int client_global_request_id = 0;
148
149 /* Prints a help message to the user.  This function never returns. */
150
151 static void
152 usage(void)
153 {
154         fprintf(stderr, "Usage: %s [options] host [command]\n", __progname);
155         fprintf(stderr, "Options:\n");
156         fprintf(stderr, "  -l user     Log in using this user name.\n");
157         fprintf(stderr, "  -n          Redirect input from " _PATH_DEVNULL ".\n");
158         fprintf(stderr, "  -F config   Config file (default: ~/%s).\n",
159              _PATH_SSH_USER_CONFFILE);
160         fprintf(stderr, "  -A          Enable authentication agent forwarding.\n");
161         fprintf(stderr, "  -a          Disable authentication agent forwarding (default).\n");
162 #ifdef AFS
163         fprintf(stderr, "  -k          Disable Kerberos ticket and AFS token forwarding.\n");
164 #endif                          /* AFS */
165         fprintf(stderr, "  -X          Enable X11 connection forwarding.\n");
166         fprintf(stderr, "  -x          Disable X11 connection forwarding (default).\n");
167         fprintf(stderr, "  -i file     Identity for public key authentication "
168             "(default: ~/.ssh/identity)\n");
169 #ifdef SMARTCARD
170         fprintf(stderr, "  -I reader   Set smartcard reader.\n");
171 #endif
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, "  -D port     Enable dynamic application-level port forwarding.\n");
190         fprintf(stderr, "  -C          Enable compression.\n");
191         fprintf(stderr, "  -N          Do not execute a shell or command.\n");
192         fprintf(stderr, "  -g          Allow remote hosts to connect to forwarded ports.\n");
193         fprintf(stderr, "  -1          Force protocol version 1.\n");
194         fprintf(stderr, "  -2          Force protocol version 2.\n");
195         fprintf(stderr, "  -4          Use IPv4 only.\n");
196         fprintf(stderr, "  -6          Use IPv6 only.\n");
197         fprintf(stderr, "  -o 'option' Process the option as if it was read from a configuration file.\n");
198         fprintf(stderr, "  -s          Invoke command (mandatory) as SSH2 subsystem.\n");
199         fprintf(stderr, "  -b addr     Local IP address.\n");
200         exit(1);
201 }
202
203 /*
204  * Connects to the given host using rsh (or prints an error message and exits
205  * if rsh is not available).  This function never returns.
206  */
207 static void
208 rsh_connect(char *host, char *user, Buffer * command)
209 {
210         char *args[10];
211         int i;
212
213         log("Using rsh.  WARNING: Connection will not be encrypted.");
214         /* Build argument list for rsh. */
215         i = 0;
216         args[i++] = _PATH_RSH;
217         /* host may have to come after user on some systems */
218         args[i++] = host;
219         if (user) {
220                 args[i++] = "-l";
221                 args[i++] = user;
222         }
223         if (buffer_len(command) > 0) {
224                 buffer_append(command, "\0", 1);
225                 args[i++] = buffer_ptr(command);
226         }
227         args[i++] = NULL;
228         if (debug_flag) {
229                 for (i = 0; args[i]; i++) {
230                         if (i != 0)
231                                 fprintf(stderr, " ");
232                         fprintf(stderr, "%s", args[i]);
233                 }
234                 fprintf(stderr, "\n");
235         }
236         execv(_PATH_RSH, args);
237         perror(_PATH_RSH);
238         exit(1);
239 }
240
241 static int ssh_session(void);
242 static int ssh_session2(void);
243 static void load_public_identity_files(void);
244
245 /*
246  * Main program for the ssh client.
247  */
248 int
249 main(int ac, char **av)
250 {
251         int i, opt, exit_status, cerr;
252         u_short fwd_port, fwd_host_port;
253         char sfwd_port[6], sfwd_host_port[6];
254         char *p, *cp, buf[256];
255         struct stat st;
256         struct passwd *pw;
257         int dummy;
258         uid_t original_effective_uid;
259         extern int optind, 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:F: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 = xstrdup(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
465                 case 'L':
466                 case 'R':
467                         if (sscanf(optarg, "%5[0-9]:%255[^:]:%5[0-9]",
468                             sfwd_port, buf, sfwd_host_port) != 3 &&
469                             sscanf(optarg, "%5[0-9]/%255[^/]/%5[0-9]",
470                             sfwd_port, buf, sfwd_host_port) != 3) {
471                                 fprintf(stderr,
472                                     "Bad forwarding specification '%s'\n",
473                                     optarg);
474                                 usage();
475                                 /* NOTREACHED */
476                         }
477                         if ((fwd_port = a2port(sfwd_port)) == 0 ||
478                             (fwd_host_port = a2port(sfwd_host_port)) == 0) {
479                                 fprintf(stderr,
480                                     "Bad forwarding port(s) '%s'\n", optarg);
481                                 exit(1);
482                         }
483                         if (opt == 'L')
484                                 add_local_forward(&options, fwd_port, buf,
485                                     fwd_host_port);
486                         else if (opt == 'R')
487                                 add_remote_forward(&options, fwd_port, buf,
488                                     fwd_host_port);
489                         break;
490
491                 case 'D':
492                         fwd_port = a2port(optarg);
493                         if (fwd_port == 0) {
494                                 fprintf(stderr, "Bad dynamic port '%s'\n",
495                                     optarg);
496                                 exit(1);
497                         }
498                         add_local_forward(&options, fwd_port, "socks4", 0);
499                         break;
500
501                 case 'C':
502                         options.compression = 1;
503                         break;
504                 case 'N':
505                         no_shell_flag = 1;
506                         no_tty_flag = 1;
507                         break;
508                 case 'T':
509                         no_tty_flag = 1;
510                         break;
511                 case 'o':
512                         dummy = 1;
513                         if (process_config_line(&options, host ? host : "",
514                             optarg, "command-line", 0, &dummy) != 0)
515                                 exit(1);
516                         break;
517                 case 's':
518                         subsystem_flag = 1;
519                         break;
520                 case 'b':
521                         options.bind_address = optarg;
522                         break;
523                 case 'F':
524                         config = optarg;
525                         break;
526                 default:
527                         usage();
528                 }
529         }
530
531         ac -= optind;
532         av += optind;
533
534         if (ac > 0 && !host && **av != '-') {
535                 if (strchr(*av, '@')) {
536                         p = xstrdup(*av);
537                         cp = strchr(p, '@');
538                         if (cp == NULL || cp == p)
539                                 usage();
540                         options.user = p;
541                         *cp = '\0';
542                         host = ++cp;
543                 } else
544                         host = *av;
545                 ac--, av++;
546                 if (ac > 0) {
547                         optind = 0;
548                         optreset = 1;
549                         goto again;
550                 }
551         }
552
553         /* Check that we got a host name. */
554         if (!host)
555                 usage();
556
557         SSLeay_add_all_algorithms();
558         ERR_load_crypto_strings();
559         channel_set_af(IPv4or6);
560
561         /* Initialize the command to execute on remote host. */
562         buffer_init(&command);
563
564         /*
565          * Save the command to execute on the remote host in a buffer. There
566          * is no limit on the length of the command, except by the maximum
567          * packet size.  Also sets the tty flag if there is no command.
568          */
569         if (!ac) {
570                 /* No command specified - execute shell on a tty. */
571                 tty_flag = 1;
572                 if (subsystem_flag) {
573                         fprintf(stderr,
574                             "You must specify a subsystem to invoke.\n");
575                         usage();
576                 }
577         } else {
578                 /* A command has been specified.  Store it into the buffer. */
579                 for (i = 0; i < ac; i++) {
580                         if (i)
581                                 buffer_append(&command, " ", 1);
582                         buffer_append(&command, av[i], strlen(av[i]));
583                 }
584         }
585
586         /* Cannot fork to background if no command. */
587         if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
588                 fatal("Cannot fork into background without a command to execute.");
589
590         /* Allocate a tty by default if no command specified. */
591         if (buffer_len(&command) == 0)
592                 tty_flag = 1;
593
594         /* Force no tty*/
595         if (no_tty_flag)
596                 tty_flag = 0;
597         /* Do not allocate a tty if stdin is not a tty. */
598         if (!isatty(fileno(stdin)) && !force_tty_flag) {
599                 if (tty_flag)
600                         log("Pseudo-terminal will not be allocated because stdin is not a terminal.");
601                 tty_flag = 0;
602         }
603
604         /*
605          * Initialize "log" output.  Since we are the client all output
606          * actually goes to stderr.
607          */
608         log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
609             SYSLOG_FACILITY_USER, 1);
610
611         /*
612          * Read per-user configuration file.  Ignore the system wide config
613          * file if the user specifies a config file on the command line.
614          */
615         if (config != NULL) {
616                 if (!read_config_file(config, host, &options))
617                         fatal("Can't open user config file %.100s: "
618                             "%.100s", config, strerror(errno));
619         } else  {
620                 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,
621                     _PATH_SSH_USER_CONFFILE);
622                 (void)read_config_file(buf, host, &options);
623
624                 /* Read systemwide configuration file after use config. */
625                 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host, &options);
626         }
627
628         /* Fill configuration defaults. */
629         fill_default_options(&options);
630
631         /* reinit */
632         log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
633
634         seed_rng();
635
636         if (options.user == NULL)
637                 options.user = xstrdup(pw->pw_name);
638
639         if (options.hostname != NULL)
640                 host = options.hostname;
641
642         /* Disable rhosts authentication if not running as root. */
643 #ifdef HAVE_CYGWIN
644         /* Ignore uid if running under Windows */
645         if (!options.use_privileged_port) {
646 #else
647         if (original_effective_uid != 0 || !options.use_privileged_port) {
648 #endif
649                 debug("Rhosts Authentication disabled, "
650                     "originating port will not be trusted.");
651                 options.rhosts_authentication = 0;
652         }
653         /*
654          * If using rsh has been selected, exec it now (without trying
655          * anything else).  Note that we must release privileges first.
656          */
657         if (options.use_rsh) {
658                 /*
659                  * Restore our superuser privileges.  This must be done
660                  * before permanently setting the uid.
661                  */
662                 restore_uid();
663
664                 /* Switch to the original uid permanently. */
665                 permanently_set_uid(pw);
666
667                 /* Execute rsh. */
668                 rsh_connect(host, options.user, &command);
669                 fatal("rsh_connect returned");
670         }
671         /* Restore our superuser privileges. */
672         restore_uid();
673
674         /* Open a connection to the remote host. */
675
676         cerr = ssh_connect(host, &hostaddr, options.port, IPv4or6,
677             options.connection_attempts,
678             original_effective_uid != 0 || !options.use_privileged_port,
679             pw, options.proxy_command);
680
681         /*
682          * If we successfully made the connection, load the host private key
683          * in case we will need it later for combined rsa-rhosts
684          * authentication. This must be done before releasing extra
685          * privileges, because the file is only readable by root.
686          */
687         sensitive_data.nkeys = 0;
688         sensitive_data.keys = NULL;
689         sensitive_data.external_keysign = 0;
690         if (!cerr && (options.rhosts_rsa_authentication ||
691             options.hostbased_authentication)) {
692                 sensitive_data.nkeys = 3;
693                 sensitive_data.keys = xmalloc(sensitive_data.nkeys*sizeof(Key));
694                 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
695                     _PATH_HOST_KEY_FILE, "", NULL);
696                 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
697                     _PATH_HOST_DSA_KEY_FILE, "", NULL);
698                 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
699                     _PATH_HOST_RSA_KEY_FILE, "", NULL);
700
701                 if (sensitive_data.keys[0] == NULL &&
702                     sensitive_data.keys[1] == NULL &&
703                     sensitive_data.keys[2] == NULL) {
704                         sensitive_data.keys[1] = key_load_public(
705                             _PATH_HOST_DSA_KEY_FILE, NULL);
706                         sensitive_data.keys[2] = key_load_public(
707                             _PATH_HOST_RSA_KEY_FILE, NULL);
708                         sensitive_data.external_keysign = 1;
709                 }
710         }
711         /*
712          * Get rid of any extra privileges that we may have.  We will no
713          * longer need them.  Also, extra privileges could make it very hard
714          * to read identity files and other non-world-readable files from the
715          * user's home directory if it happens to be on a NFS volume where
716          * root is mapped to nobody.
717          */
718
719         /*
720          * Note that some legacy systems need to postpone the following call
721          * to permanently_set_uid() until the private hostkey is destroyed
722          * with RSA_free().  Otherwise the calling user could ptrace() the
723          * process, read the private hostkey and impersonate the host.
724          * OpenBSD does not allow ptracing of setuid processes.
725          */
726         permanently_set_uid(pw);
727
728         /*
729          * Now that we are back to our own permissions, create ~/.ssh
730          * directory if it doesn\'t already exist.
731          */
732         snprintf(buf, sizeof buf, "%.100s%s%.100s", pw->pw_dir, strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
733         if (stat(buf, &st) < 0)
734                 if (mkdir(buf, 0700) < 0)
735                         error("Could not create directory '%.200s'.", buf);
736
737         /* Check if the connection failed, and try "rsh" if appropriate. */
738         if (cerr) {
739                 if (!options.fallback_to_rsh)
740                         exit(1);
741                 if (options.port != 0)
742                         log("Secure connection to %.100s on port %hu refused; "
743                             "reverting to insecure method",
744                             host, options.port);
745                 else
746                         log("Secure connection to %.100s refused; "
747                             "reverting to insecure method.", host);
748
749                 rsh_connect(host, options.user, &command);
750                 fatal("rsh_connect returned");
751         }
752         /* load options.identity_files */
753         load_public_identity_files();
754
755         /* Expand ~ in known host file names. */
756         /* XXX mem-leaks: */
757         options.system_hostfile =
758             tilde_expand_filename(options.system_hostfile, original_real_uid);
759         options.user_hostfile =
760             tilde_expand_filename(options.user_hostfile, original_real_uid);
761         options.system_hostfile2 =
762             tilde_expand_filename(options.system_hostfile2, original_real_uid);
763         options.user_hostfile2 =
764             tilde_expand_filename(options.user_hostfile2, original_real_uid);
765
766         signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
767
768         /* Log into the remote system.  This never returns if the login fails. */
769         ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr, pw);
770
771         /* We no longer need the private host keys.  Clear them now. */
772         if (sensitive_data.nkeys != 0) {
773                 for (i = 0; i < sensitive_data.nkeys; i++) {
774                         if (sensitive_data.keys[i] != NULL) {
775                                 /* Destroys contents safely */
776                                 debug3("clear hostkey %d", i);
777                                 key_free(sensitive_data.keys[i]);
778                                 sensitive_data.keys[i] = NULL;
779                         }
780                 }
781                 xfree(sensitive_data.keys);
782         }
783         for (i = 0; i < options.num_identity_files; i++) {
784                 if (options.identity_files[i]) {
785                         xfree(options.identity_files[i]);
786                         options.identity_files[i] = NULL;
787                 }
788                 if (options.identity_keys[i]) {
789                         key_free(options.identity_keys[i]);
790                         options.identity_keys[i] = NULL;
791                 }
792         }
793
794         exit_status = compat20 ? ssh_session2() : ssh_session();
795         packet_close();
796         return exit_status;
797 }
798
799 static void
800 x11_get_proto(char **_proto, char **_data)
801 {
802         char line[512];
803         static char proto[512], data[512];
804         FILE *f;
805         int got_data = 0, i;
806         char *display;
807
808         *_proto = proto;
809         *_data = data;
810         proto[0] = data[0] = '\0';
811         if (options.xauth_location && (display = getenv("DISPLAY"))) {
812                 /* Try to get Xauthority information for the display. */
813                 if (strncmp(display, "localhost:", 10) == 0)
814                         /*
815                          * Handle FamilyLocal case where $DISPLAY does
816                          * not match an authorization entry.  For this we
817                          * just try "xauth list unix:displaynum.screennum".
818                          * XXX: "localhost" match to determine FamilyLocal
819                          *      is not perfect.
820                          */
821                         snprintf(line, sizeof line, "%s list unix:%s 2>"
822                             _PATH_DEVNULL, options.xauth_location, display+10);
823                 else
824                         snprintf(line, sizeof line, "%s list %.200s 2>"
825                             _PATH_DEVNULL, options.xauth_location, display);
826                 debug2("x11_get_proto %s", line);
827                 f = popen(line, "r");
828                 if (f && fgets(line, sizeof(line), f) &&
829                     sscanf(line, "%*s %511s %511s", proto, data) == 2)
830                         got_data = 1;
831                 if (f)
832                         pclose(f);
833         }
834         /*
835          * If we didn't get authentication data, just make up some
836          * data.  The forwarding code will check the validity of the
837          * response anyway, and substitute this data.  The X11
838          * server, however, will ignore this fake data and use
839          * whatever authentication mechanisms it was using otherwise
840          * for the local connection.
841          */
842         if (!got_data) {
843                 u_int32_t rand = 0;
844
845                 strlcpy(proto, "MIT-MAGIC-COOKIE-1", sizeof proto);
846                 for (i = 0; i < 16; i++) {
847                         if (i % 4 == 0)
848                                 rand = arc4random();
849                         snprintf(data + 2 * i, sizeof data - 2 * i, "%02x", rand & 0xff);
850                         rand >>= 8;
851                 }
852         }
853 }
854
855 static void
856 ssh_init_forwarding(void)
857 {
858         int success = 0;
859         int i;
860
861         /* Initiate local TCP/IP port forwardings. */
862         for (i = 0; i < options.num_local_forwards; i++) {
863                 debug("Connections to local port %d forwarded to remote address %.200s:%d",
864                     options.local_forwards[i].port,
865                     options.local_forwards[i].host,
866                     options.local_forwards[i].host_port);
867                 success += channel_setup_local_fwd_listener(
868                     options.local_forwards[i].port,
869                     options.local_forwards[i].host,
870                     options.local_forwards[i].host_port,
871                     options.gateway_ports);
872         }
873         if (i > 0 && success == 0)
874                 error("Could not request local forwarding.");
875
876         /* Initiate remote TCP/IP port forwardings. */
877         for (i = 0; i < options.num_remote_forwards; i++) {
878                 debug("Connections to remote port %d forwarded to local address %.200s:%d",
879                     options.remote_forwards[i].port,
880                     options.remote_forwards[i].host,
881                     options.remote_forwards[i].host_port);
882                 channel_request_remote_forwarding(
883                     options.remote_forwards[i].port,
884                     options.remote_forwards[i].host,
885                     options.remote_forwards[i].host_port);
886         }
887 }
888
889 static void
890 check_agent_present(void)
891 {
892         if (options.forward_agent) {
893                 /* Clear agent forwarding if we don\'t have an agent. */
894                 int authfd = ssh_get_authentication_socket();
895                 if (authfd < 0)
896                         options.forward_agent = 0;
897                 else
898                         ssh_close_authentication_socket(authfd);
899         }
900 }
901
902 static int
903 ssh_session(void)
904 {
905         int type;
906         int interactive = 0;
907         int have_tty = 0;
908         struct winsize ws;
909         char *cp;
910
911         /* Enable compression if requested. */
912         if (options.compression) {
913                 debug("Requesting compression at level %d.", options.compression_level);
914
915                 if (options.compression_level < 1 || options.compression_level > 9)
916                         fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
917
918                 /* Send the request. */
919                 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
920                 packet_put_int(options.compression_level);
921                 packet_send();
922                 packet_write_wait();
923                 type = packet_read();
924                 if (type == SSH_SMSG_SUCCESS)
925                         packet_start_compression(options.compression_level);
926                 else if (type == SSH_SMSG_FAILURE)
927                         log("Warning: Remote host refused compression.");
928                 else
929                         packet_disconnect("Protocol error waiting for compression response.");
930         }
931         /* Allocate a pseudo tty if appropriate. */
932         if (tty_flag) {
933                 debug("Requesting pty.");
934
935                 /* Start the packet. */
936                 packet_start(SSH_CMSG_REQUEST_PTY);
937
938                 /* Store TERM in the packet.  There is no limit on the
939                    length of the string. */
940                 cp = getenv("TERM");
941                 if (!cp)
942                         cp = "";
943                 packet_put_cstring(cp);
944
945                 /* Store window size in the packet. */
946                 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
947                         memset(&ws, 0, sizeof(ws));
948                 packet_put_int(ws.ws_row);
949                 packet_put_int(ws.ws_col);
950                 packet_put_int(ws.ws_xpixel);
951                 packet_put_int(ws.ws_ypixel);
952
953                 /* Store tty modes in the packet. */
954                 tty_make_modes(fileno(stdin), NULL);
955
956                 /* Send the packet, and wait for it to leave. */
957                 packet_send();
958                 packet_write_wait();
959
960                 /* Read response from the server. */
961                 type = packet_read();
962                 if (type == SSH_SMSG_SUCCESS) {
963                         interactive = 1;
964                         have_tty = 1;
965                 } else if (type == SSH_SMSG_FAILURE)
966                         log("Warning: Remote host failed or refused to allocate a pseudo tty.");
967                 else
968                         packet_disconnect("Protocol error waiting for pty request response.");
969         }
970         /* Request X11 forwarding if enabled and DISPLAY is set. */
971         if (options.forward_x11 && getenv("DISPLAY") != NULL) {
972                 char *proto, *data;
973                 /* Get reasonable local authentication information. */
974                 x11_get_proto(&proto, &data);
975                 /* Request forwarding with authentication spoofing. */
976                 debug("Requesting X11 forwarding with authentication spoofing.");
977                 x11_request_forwarding_with_spoofing(0, proto, data);
978
979                 /* Read response from the server. */
980                 type = packet_read();
981                 if (type == SSH_SMSG_SUCCESS) {
982                         interactive = 1;
983                 } else if (type == SSH_SMSG_FAILURE) {
984                         log("Warning: Remote host denied X11 forwarding.");
985                 } else {
986                         packet_disconnect("Protocol error waiting for X11 forwarding");
987                 }
988         }
989         /* Tell the packet module whether this is an interactive session. */
990         packet_set_interactive(interactive);
991
992         /* Request authentication agent forwarding if appropriate. */
993         check_agent_present();
994
995         if (options.forward_agent) {
996                 debug("Requesting authentication agent forwarding.");
997                 auth_request_forwarding();
998
999                 /* Read response from the server. */
1000                 type = packet_read();
1001                 packet_check_eom();
1002                 if (type != SSH_SMSG_SUCCESS)
1003                         log("Warning: Remote host denied authentication agent forwarding.");
1004         }
1005
1006         /* Initiate port forwardings. */
1007         ssh_init_forwarding();
1008
1009         /* If requested, let ssh continue in the background. */
1010         if (fork_after_authentication_flag)
1011                 if (daemon(1, 1) < 0)
1012                         fatal("daemon() failed: %.200s", strerror(errno));
1013
1014         /*
1015          * If a command was specified on the command line, execute the
1016          * command now. Otherwise request the server to start a shell.
1017          */
1018         if (buffer_len(&command) > 0) {
1019                 int len = buffer_len(&command);
1020                 if (len > 900)
1021                         len = 900;
1022                 debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
1023                 packet_start(SSH_CMSG_EXEC_CMD);
1024                 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1025                 packet_send();
1026                 packet_write_wait();
1027         } else {
1028                 debug("Requesting shell.");
1029                 packet_start(SSH_CMSG_EXEC_SHELL);
1030                 packet_send();
1031                 packet_write_wait();
1032         }
1033
1034         /* Enter the interactive session. */
1035         return client_loop(have_tty, tty_flag ?
1036             options.escape_char : SSH_ESCAPECHAR_NONE, 0);
1037 }
1038
1039 static void
1040 client_subsystem_reply(int type, u_int32_t seq, void *ctxt)
1041 {
1042         int id, len;
1043
1044         id = packet_get_int();
1045         len = buffer_len(&command);
1046         if (len > 900)
1047                 len = 900;
1048         packet_check_eom();
1049         if (type == SSH2_MSG_CHANNEL_FAILURE)
1050                 fatal("Request for subsystem '%.*s' failed on channel %d",
1051                     len, (u_char *)buffer_ptr(&command), id);
1052 }
1053
1054 void
1055 client_global_request_reply(int type, u_int32_t seq, void *ctxt)
1056 {
1057         int i;
1058
1059         i = client_global_request_id++;
1060         if (i >= options.num_remote_forwards) {
1061                 debug("client_global_request_reply: too many replies %d > %d",
1062                     i, options.num_remote_forwards);
1063                 return;
1064         }
1065         debug("remote forward %s for: listen %d, connect %s:%d",
1066             type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
1067             options.remote_forwards[i].port,
1068             options.remote_forwards[i].host,
1069             options.remote_forwards[i].host_port);
1070         if (type == SSH2_MSG_REQUEST_FAILURE)
1071                 log("Warning: remote port forwarding failed for listen port %d",
1072                     options.remote_forwards[i].port);
1073 }
1074
1075 /* request pty/x11/agent/tcpfwd/shell for channel */
1076 static void
1077 ssh_session2_setup(int id, void *arg)
1078 {
1079         int len;
1080         int interactive = 0;
1081         struct termios tio;
1082
1083         debug("ssh_session2_setup: id %d", id);
1084
1085         if (tty_flag) {
1086                 struct winsize ws;
1087                 char *cp;
1088                 cp = getenv("TERM");
1089                 if (!cp)
1090                         cp = "";
1091                 /* Store window size in the packet. */
1092                 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1093                         memset(&ws, 0, sizeof(ws));
1094
1095                 channel_request_start(id, "pty-req", 0);
1096                 packet_put_cstring(cp);
1097                 packet_put_int(ws.ws_col);
1098                 packet_put_int(ws.ws_row);
1099                 packet_put_int(ws.ws_xpixel);
1100                 packet_put_int(ws.ws_ypixel);
1101                 tio = get_saved_tio();
1102                 tty_make_modes(/*ignored*/ 0, &tio);
1103                 packet_send();
1104                 interactive = 1;
1105                 /* XXX wait for reply */
1106         }
1107         if (options.forward_x11 &&
1108             getenv("DISPLAY") != NULL) {
1109                 char *proto, *data;
1110                 /* Get reasonable local authentication information. */
1111                 x11_get_proto(&proto, &data);
1112                 /* Request forwarding with authentication spoofing. */
1113                 debug("Requesting X11 forwarding with authentication spoofing.");
1114                 x11_request_forwarding_with_spoofing(id, proto, data);
1115                 interactive = 1;
1116                 /* XXX wait for reply */
1117         }
1118
1119         check_agent_present();
1120         if (options.forward_agent) {
1121                 debug("Requesting authentication agent forwarding.");
1122                 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1123                 packet_send();
1124         }
1125
1126         len = buffer_len(&command);
1127         if (len > 0) {
1128                 if (len > 900)
1129                         len = 900;
1130                 if (subsystem_flag) {
1131                         debug("Sending subsystem: %.*s", len, (u_char *)buffer_ptr(&command));
1132                         channel_request_start(id, "subsystem", /*want reply*/ 1);
1133                         /* register callback for reply */
1134                         /* XXX we assume that client_loop has already been called */
1135                         dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &client_subsystem_reply);
1136                         dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &client_subsystem_reply);
1137                 } else {
1138                         debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
1139                         channel_request_start(id, "exec", 0);
1140                 }
1141                 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1142                 packet_send();
1143         } else {
1144                 channel_request_start(id, "shell", 0);
1145                 packet_send();
1146         }
1147
1148         packet_set_interactive(interactive);
1149 }
1150
1151 /* open new channel for a session */
1152 static int
1153 ssh_session2_open(void)
1154 {
1155         Channel *c;
1156         int window, packetmax, in, out, err;
1157
1158         if (stdin_null_flag) {
1159                 in = open(_PATH_DEVNULL, O_RDONLY);
1160         } else {
1161                 in = dup(STDIN_FILENO);
1162         }
1163         out = dup(STDOUT_FILENO);
1164         err = dup(STDERR_FILENO);
1165
1166         if (in < 0 || out < 0 || err < 0)
1167                 fatal("dup() in/out/err failed");
1168
1169         /* enable nonblocking unless tty */
1170         if (!isatty(in))
1171                 set_nonblock(in);
1172         if (!isatty(out))
1173                 set_nonblock(out);
1174         if (!isatty(err))
1175                 set_nonblock(err);
1176
1177         window = CHAN_SES_WINDOW_DEFAULT;
1178         packetmax = CHAN_SES_PACKET_DEFAULT;
1179         if (tty_flag) {
1180                 window >>= 1;
1181                 packetmax >>= 1;
1182         }
1183         c = channel_new(
1184             "session", SSH_CHANNEL_OPENING, in, out, err,
1185             window, packetmax, CHAN_EXTENDED_WRITE,
1186             xstrdup("client-session"), /*nonblock*/0);
1187
1188         debug3("ssh_session2_open: channel_new: %d", c->self);
1189
1190         channel_send_open(c->self);
1191         if (!no_shell_flag)
1192                 channel_register_confirm(c->self, ssh_session2_setup);
1193
1194         return c->self;
1195 }
1196
1197 static int
1198 ssh_session2(void)
1199 {
1200         int id = -1;
1201
1202         /* XXX should be pre-session */
1203         ssh_init_forwarding();
1204
1205         if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1206                 id = ssh_session2_open();
1207
1208         /* If requested, let ssh continue in the background. */
1209         if (fork_after_authentication_flag)
1210                 if (daemon(1, 1) < 0)
1211                         fatal("daemon() failed: %.200s", strerror(errno));
1212
1213         return client_loop(tty_flag, tty_flag ?
1214             options.escape_char : SSH_ESCAPECHAR_NONE, id);
1215 }
1216
1217 static void
1218 load_public_identity_files(void)
1219 {
1220         char *filename;
1221         int i = 0;
1222         Key *public;
1223 #ifdef SMARTCARD
1224         Key **keys;
1225
1226         if (options.smartcard_device != NULL &&
1227             options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
1228             (keys = sc_get_keys(options.smartcard_device, NULL)) != NULL ) {
1229                 int count = 0;
1230                 for (i = 0; keys[i] != NULL; i++) {
1231                         count++;
1232                         memmove(&options.identity_files[1], &options.identity_files[0],
1233                             sizeof(char *) * (SSH_MAX_IDENTITY_FILES - 1));
1234                         memmove(&options.identity_keys[1], &options.identity_keys[0],
1235                             sizeof(Key *) * (SSH_MAX_IDENTITY_FILES - 1));
1236                         options.num_identity_files++;
1237                         options.identity_keys[0] = keys[i];
1238                         options.identity_files[0] = xstrdup("smartcard key");;
1239                 }
1240                 if (options.num_identity_files > SSH_MAX_IDENTITY_FILES)
1241                         options.num_identity_files = SSH_MAX_IDENTITY_FILES;
1242                 i = count;
1243                 xfree(keys);
1244         }
1245 #endif /* SMARTCARD */
1246         for (; i < options.num_identity_files; i++) {
1247                 filename = tilde_expand_filename(options.identity_files[i],
1248                     original_real_uid);
1249                 public = key_load_public(filename, NULL);
1250                 debug("identity file %s type %d", filename,
1251                     public ? public->type : -1);
1252                 xfree(options.identity_files[i]);
1253                 options.identity_files[i] = filename;
1254                 options.identity_keys[i] = public;
1255         }
1256 }
This page took 0.142684 seconds and 5 git commands to generate.