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