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