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