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