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