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