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