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