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