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