]> andersk Git - openssh.git/blame - ssh.c
- Configure fix from Hiroshi Takekawa <takekawa@sr3.t.u-tokyo.ac.jp>
[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
5 * Created: Sat Mar 18 16:36:11 1995 ylo
6 * Ssh client program. This program can be used to log into a remote machine.
7 * The software supports strong authentication, encryption, and forwarding
8 * of X11, TCP/IP, and authentication connections.
9 *
10 * Modified to work with SSL by Niels Provos <provos@citi.umich.edu> in Canada.
11 */
8efc0c15 12
13#include "includes.h"
14RCSID("$Id$");
15
16#include "xmalloc.h"
17#include "ssh.h"
18#include "packet.h"
19#include "buffer.h"
20#include "authfd.h"
21#include "readconf.h"
22#include "uidswap.h"
23
f601d847 24#ifdef HAVE___PROGNAME
25extern char *__progname;
26#else /* HAVE___PROGNAME */
27const char *__progname = "ssh";
28#endif /* HAVE___PROGNAME */
29
48e671d5 30/* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
31 Default value is AF_UNSPEC means both IPv4 and IPv6. */
59e76f33 32#ifdef IPV4_DEFAULT
33int IPv4or6 = AF_INET;
34#else
48e671d5 35int IPv4or6 = AF_UNSPEC;
59e76f33 36#endif
48e671d5 37
5260325f 38/* Flag indicating whether debug mode is on. This can be set on the command line. */
8efc0c15 39int debug_flag = 0;
40
8efc0c15 41int tty_flag = 0;
42
aa3378df 43/*
44 * Flag indicating that nothing should be read from stdin. This can be set
45 * on the command line.
46 */
8efc0c15 47int stdin_null_flag = 0;
48
aa3378df 49/*
50 * Flag indicating that ssh should fork after authentication. This is useful
51 * so that the pasphrase can be entered manually, and then ssh goes to the
52 * background.
53 */
8efc0c15 54int fork_after_authentication_flag = 0;
55
aa3378df 56/*
57 * General data structure for command line options and options configurable
58 * in configuration files. See readconf.h.
59 */
8efc0c15 60Options options;
61
aa3378df 62/*
63 * Name of the host we are connecting to. This is the name given on the
64 * command line, or the HostName specified for the user-supplied name in a
65 * configuration file.
66 */
8efc0c15 67char *host;
68
69/* socket address the host resolves to */
48e671d5 70struct sockaddr_storage hostaddr;
8efc0c15 71
aa3378df 72/*
73 * Flag to indicate that we have received a window change signal which has
74 * not yet been processed. This will cause a message indicating the new
75 * window size to be sent to the server a little later. This is volatile
76 * because this is updated in a signal handler.
77 */
8efc0c15 78volatile int received_window_change_signal = 0;
79
80/* Value of argv[0] (set in the main program). */
81char *av0;
82
83/* Flag indicating whether we have a valid host private key loaded. */
84int host_private_key_loaded = 0;
85
86/* Host private key. */
87RSA *host_private_key = NULL;
88
89/* Original real UID. */
90uid_t original_real_uid;
91
92/* Prints a help message to the user. This function never returns. */
93
94void
95usage()
96{
5260325f 97 fprintf(stderr, "Usage: %s [options] host [command]\n", av0);
98 fprintf(stderr, "Options:\n");
99 fprintf(stderr, " -l user Log in using this user name.\n");
100 fprintf(stderr, " -n Redirect input from /dev/null.\n");
101 fprintf(stderr, " -a Disable authentication agent forwarding.\n");
8efc0c15 102#ifdef AFS
5260325f 103 fprintf(stderr, " -k Disable Kerberos ticket and AFS token forwarding.\n");
104#endif /* AFS */
105 fprintf(stderr, " -x Disable X11 connection forwarding.\n");
106 fprintf(stderr, " -i file Identity for RSA authentication (default: ~/.ssh/identity).\n");
107 fprintf(stderr, " -t Tty; allocate a tty even if command is given.\n");
108 fprintf(stderr, " -v Verbose; display verbose debugging messages.\n");
109 fprintf(stderr, " -V Display version number only.\n");
110 fprintf(stderr, " -P Don't allocate a privileged port.\n");
111 fprintf(stderr, " -q Quiet; don't display any warning messages.\n");
112 fprintf(stderr, " -f Fork into background after authentication.\n");
113 fprintf(stderr, " -e char Set escape character; ``none'' = disable (default: ~).\n");
114
115 fprintf(stderr, " -c cipher Select encryption algorithm: "
116 "``3des'', "
117 "``blowfish''\n");
118 fprintf(stderr, " -p port Connect to this port. Server must be on the same port.\n");
119 fprintf(stderr, " -L listen-port:host:port Forward local port to remote address\n");
120 fprintf(stderr, " -R listen-port:host:port Forward remote port to local address\n");
121 fprintf(stderr, " These cause %s to listen for connections on a port, and\n", av0);
122 fprintf(stderr, " forward them to the other side by connecting to host:port.\n");
123 fprintf(stderr, " -C Enable compression.\n");
124 fprintf(stderr, " -g Allow remote hosts to connect to forwarded ports.\n");
48e671d5 125 fprintf(stderr, " -4 Use IPv4 only.\n");
126 fprintf(stderr, " -6 Use IPv6 only.\n");
5260325f 127 fprintf(stderr, " -o 'option' Process the option as if it was read from a configuration file.\n");
128 exit(1);
8efc0c15 129}
130
5260325f 131/*
132 * Connects to the given host using rsh (or prints an error message and exits
133 * if rsh is not available). This function never returns.
134 */
8efc0c15 135void
5260325f 136rsh_connect(char *host, char *user, Buffer * command)
8efc0c15 137{
5260325f 138 char *args[10];
139 int i;
140
141 log("Using rsh. WARNING: Connection will not be encrypted.");
142 /* Build argument list for rsh. */
143 i = 0;
144 args[i++] = _PATH_RSH;
145 /* host may have to come after user on some systems */
146 args[i++] = host;
147 if (user) {
148 args[i++] = "-l";
149 args[i++] = user;
150 }
151 if (buffer_len(command) > 0) {
152 buffer_append(command, "\0", 1);
153 args[i++] = buffer_ptr(command);
154 }
155 args[i++] = NULL;
156 if (debug_flag) {
157 for (i = 0; args[i]; i++) {
158 if (i != 0)
159 fprintf(stderr, " ");
160 fprintf(stderr, "%s", args[i]);
161 }
162 fprintf(stderr, "\n");
8efc0c15 163 }
5260325f 164 execv(_PATH_RSH, args);
165 perror(_PATH_RSH);
166 exit(1);
8efc0c15 167}
168
5260325f 169/*
170 * Main program for the ssh client.
171 */
8efc0c15 172int
173main(int ac, char **av)
174{
57112b5a 175 int i, opt, optind, type, exit_status, ok, authfd;
176 u_short fwd_port, fwd_host_port;
5260325f 177 char *optarg, *cp, buf[256];
178 Buffer command;
179 struct winsize ws;
180 struct stat st;
181 struct passwd *pw, pwcopy;
182 int interactive = 0, dummy;
183 uid_t original_effective_uid;
184 int plen;
185
aa3378df 186 /*
187 * Save the original real uid. It will be needed later (uid-swapping
188 * may clobber the real uid).
189 */
5260325f 190 original_real_uid = getuid();
191 original_effective_uid = geteuid();
192
193 /* If we are installed setuid root be careful to not drop core. */
194 if (original_real_uid != original_effective_uid) {
195 struct rlimit rlim;
196 rlim.rlim_cur = rlim.rlim_max = 0;
197 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
198 fatal("setrlimit failed: %.100s", strerror(errno));
8efc0c15 199 }
aa3378df 200 /*
201 * Use uid-swapping to give up root privileges for the duration of
202 * option processing. We will re-instantiate the rights when we are
203 * ready to create the privileged port, and will permanently drop
204 * them when the port has been created (actually, when the connection
205 * has been made, as we may need to create the port several times).
206 */
5260325f 207 temporarily_use_uid(original_real_uid);
208
aa3378df 209 /*
210 * Set our umask to something reasonable, as some files are created
211 * with the default umask. This will make them world-readable but
212 * writable only by the owner, which is ok for all files for which we
213 * don't set the modes explicitly.
214 */
5260325f 215 umask(022);
216
217 /* Save our own name. */
218 av0 = av[0];
219
220 /* Initialize option structure to indicate that no values have been set. */
221 initialize_options(&options);
222
223 /* Parse command-line arguments. */
224 host = NULL;
225
226 /* If program name is not one of the standard names, use it as host name. */
227 if (strchr(av0, '/'))
228 cp = strrchr(av0, '/') + 1;
229 else
230 cp = av0;
231 if (strcmp(cp, "rsh") != 0 && strcmp(cp, "ssh") != 0 &&
232 strcmp(cp, "rlogin") != 0 && strcmp(cp, "slogin") != 0)
233 host = cp;
234
235 for (optind = 1; optind < ac; optind++) {
236 if (av[optind][0] != '-') {
237 if (host)
238 break;
239 if ((cp = strchr(av[optind], '@'))) {
48e671d5 240 if(cp == av[optind])
241 usage();
5260325f 242 options.user = av[optind];
243 *cp = '\0';
244 host = ++cp;
245 } else
246 host = av[optind];
247 continue;
248 }
249 opt = av[optind][1];
250 if (!opt)
251 usage();
252 if (strchr("eilcpLRo", opt)) { /* options with arguments */
253 optarg = av[optind] + 2;
254 if (strcmp(optarg, "") == 0) {
255 if (optind >= ac - 1)
256 usage();
257 optarg = av[++optind];
258 }
259 } else {
260 if (av[optind][2])
261 usage();
262 optarg = NULL;
263 }
264 switch (opt) {
48e671d5 265 case '4':
266 IPv4or6 = AF_INET;
267 break;
268
269 case '6':
270 IPv4or6 = AF_INET6;
271 break;
272
5260325f 273 case 'n':
274 stdin_null_flag = 1;
275 break;
276
277 case 'f':
278 fork_after_authentication_flag = 1;
279 stdin_null_flag = 1;
280 break;
281
282 case 'x':
283 options.forward_x11 = 0;
284 break;
285
286 case 'X':
287 options.forward_x11 = 1;
288 break;
289
290 case 'g':
291 options.gateway_ports = 1;
292 break;
293
294 case 'P':
295 options.use_privileged_port = 0;
296 break;
297
298 case 'a':
299 options.forward_agent = 0;
300 break;
301#ifdef AFS
302 case 'k':
303 options.kerberos_tgt_passing = 0;
304 options.afs_token_passing = 0;
305 break;
306#endif
307 case 'i':
308 if (stat(optarg, &st) < 0) {
309 fprintf(stderr, "Warning: Identity file %s does not exist.\n",
310 optarg);
311 break;
312 }
313 if (options.num_identity_files >= SSH_MAX_IDENTITY_FILES)
314 fatal("Too many identity files specified (max %d)",
315 SSH_MAX_IDENTITY_FILES);
316 options.identity_files[options.num_identity_files++] =
317 xstrdup(optarg);
318 break;
319
320 case 't':
321 tty_flag = 1;
322 break;
323
324 case 'v':
325 case 'V':
326 fprintf(stderr, "SSH Version %s, protocol version %d.%d.\n",
327 SSH_VERSION, PROTOCOL_MAJOR, PROTOCOL_MINOR);
328 fprintf(stderr, "Compiled with SSL.\n");
329 if (opt == 'V')
330 exit(0);
331 debug_flag = 1;
332 options.log_level = SYSLOG_LEVEL_DEBUG;
333 break;
334
335 case 'q':
336 options.log_level = SYSLOG_LEVEL_QUIET;
337 break;
338
339 case 'e':
340 if (optarg[0] == '^' && optarg[2] == 0 &&
341 (unsigned char) optarg[1] >= 64 && (unsigned char) optarg[1] < 128)
342 options.escape_char = (unsigned char) optarg[1] & 31;
343 else if (strlen(optarg) == 1)
344 options.escape_char = (unsigned char) optarg[0];
345 else if (strcmp(optarg, "none") == 0)
346 options.escape_char = -2;
347 else {
348 fprintf(stderr, "Bad escape character '%s'.\n", optarg);
349 exit(1);
350 }
351 break;
352
353 case 'c':
354 options.cipher = cipher_number(optarg);
355 if (options.cipher == -1) {
356 fprintf(stderr, "Unknown cipher type '%s'\n", optarg);
357 exit(1);
358 }
359 break;
360
361 case 'p':
362 options.port = atoi(optarg);
5260325f 363 break;
364
365 case 'l':
366 options.user = optarg;
367 break;
368
369 case 'R':
48e671d5 370 if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf,
371 &fwd_host_port) != 3 &&
372 sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf,
373 &fwd_host_port) != 3) {
5260325f 374 fprintf(stderr, "Bad forwarding specification '%s'.\n", optarg);
375 usage();
376 /* NOTREACHED */
377 }
378 add_remote_forward(&options, fwd_port, buf, fwd_host_port);
379 break;
380
381 case 'L':
48e671d5 382 if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf,
383 &fwd_host_port) != 3 &&
384 sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf,
385 &fwd_host_port) != 3) {
5260325f 386 fprintf(stderr, "Bad forwarding specification '%s'.\n", optarg);
387 usage();
388 /* NOTREACHED */
389 }
390 add_local_forward(&options, fwd_port, buf, fwd_host_port);
391 break;
392
393 case 'C':
394 options.compression = 1;
395 break;
396
397 case 'o':
398 dummy = 1;
399 if (process_config_line(&options, host ? host : "", optarg,
400 "command-line", 0, &dummy) != 0)
401 exit(1);
402 break;
403
404 default:
405 usage();
406 }
407 }
408
409 /* Check that we got a host name. */
410 if (!host)
8efc0c15 411 usage();
5260325f 412
413 /* check if RSA support exists */
414 if (rsa_alive() == 0) {
415 fprintf(stderr,
416 "%s: no RSA support in libssl and libcrypto. See ssl(8).\n",
417 __progname);
418 exit(1);
8efc0c15 419 }
5260325f 420 /* Initialize the command to execute on remote host. */
421 buffer_init(&command);
422
aa3378df 423 /*
424 * Save the command to execute on the remote host in a buffer. There
425 * is no limit on the length of the command, except by the maximum
426 * packet size. Also sets the tty flag if there is no command.
427 */
5260325f 428 if (optind == ac) {
429 /* No command specified - execute shell on a tty. */
430 tty_flag = 1;
431 } else {
432 /* A command has been specified. Store it into the
433 buffer. */
434 for (i = optind; i < ac; i++) {
435 if (i > optind)
436 buffer_append(&command, " ", 1);
437 buffer_append(&command, av[i], strlen(av[i]));
438 }
8efc0c15 439 }
5260325f 440
441 /* Cannot fork to background if no command. */
442 if (fork_after_authentication_flag && buffer_len(&command) == 0)
443 fatal("Cannot fork into background without a command to execute.");
444
445 /* Allocate a tty by default if no command specified. */
446 if (buffer_len(&command) == 0)
447 tty_flag = 1;
448
449 /* Do not allocate a tty if stdin is not a tty. */
450 if (!isatty(fileno(stdin))) {
451 if (tty_flag)
452 fprintf(stderr, "Pseudo-terminal will not be allocated because stdin is not a terminal.\n");
453 tty_flag = 0;
454 }
455 /* Get user data. */
456 pw = getpwuid(original_real_uid);
457 if (!pw) {
458 fprintf(stderr, "You don't exist, go away!\n");
459 exit(1);
460 }
461 /* Take a copy of the returned structure. */
462 memset(&pwcopy, 0, sizeof(pwcopy));
463 pwcopy.pw_name = xstrdup(pw->pw_name);
464 pwcopy.pw_passwd = xstrdup(pw->pw_passwd);
465 pwcopy.pw_uid = pw->pw_uid;
466 pwcopy.pw_gid = pw->pw_gid;
467 pwcopy.pw_dir = xstrdup(pw->pw_dir);
468 pwcopy.pw_shell = xstrdup(pw->pw_shell);
469 pw = &pwcopy;
470
471 /* Initialize "log" output. Since we are the client all output
472 actually goes to the terminal. */
473 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 0);
474
475 /* Read per-user configuration file. */
476 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, SSH_USER_CONFFILE);
477 read_config_file(buf, host, &options);
478
479 /* Read systemwide configuration file. */
480 read_config_file(HOST_CONFIG_FILE, host, &options);
481
482 /* Fill configuration defaults. */
483 fill_default_options(&options);
484
485 /* reinit */
486 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 0);
487
488 if (options.user == NULL)
489 options.user = xstrdup(pw->pw_name);
490
491 if (options.hostname != NULL)
492 host = options.hostname;
493
494 /* Find canonic host name. */
495 if (strchr(host, '.') == 0) {
48e671d5 496 struct addrinfo hints;
497 struct addrinfo *ai = NULL;
498 int errgai;
499 memset(&hints, 0, sizeof(hints));
500 hints.ai_family = AF_UNSPEC;
501 hints.ai_flags = AI_CANONNAME;
502 hints.ai_socktype = SOCK_STREAM;
503 errgai = getaddrinfo(host, NULL, &hints, &ai);
504 if (errgai == 0) {
505 if (ai->ai_canonname != NULL)
506 host = xstrdup(ai->ai_canonname);
507 freeaddrinfo(ai);
8efc0c15 508 }
8efc0c15 509 }
5260325f 510 /* Disable rhosts authentication if not running as root. */
511 if (original_effective_uid != 0 || !options.use_privileged_port) {
512 options.rhosts_authentication = 0;
513 options.rhosts_rsa_authentication = 0;
514 }
aa3378df 515 /*
516 * If using rsh has been selected, exec it now (without trying
517 * anything else). Note that we must release privileges first.
518 */
5260325f 519 if (options.use_rsh) {
aa3378df 520 /*
521 * Restore our superuser privileges. This must be done
522 * before permanently setting the uid.
523 */
5260325f 524 restore_uid();
525
526 /* Switch to the original uid permanently. */
527 permanently_set_uid(original_real_uid);
528
529 /* Execute rsh. */
530 rsh_connect(host, options.user, &command);
531 fatal("rsh_connect returned");
8efc0c15 532 }
5260325f 533 /* Restore our superuser privileges. */
534 restore_uid();
535
aa3378df 536 /*
537 * Open a connection to the remote host. This needs root privileges
538 * if rhosts_{rsa_}authentication is enabled.
539 */
5260325f 540
541 ok = ssh_connect(host, &hostaddr, options.port,
542 options.connection_attempts,
543 !options.rhosts_authentication &&
544 !options.rhosts_rsa_authentication,
545 original_real_uid,
546 options.proxy_command);
547
aa3378df 548 /*
549 * If we successfully made the connection, load the host private key
550 * in case we will need it later for combined rsa-rhosts
551 * authentication. This must be done before releasing extra
552 * privileges, because the file is only readable by root.
553 */
5260325f 554 if (ok) {
555 host_private_key = RSA_new();
556 if (load_private_key(HOST_KEY_FILE, "", host_private_key, NULL))
557 host_private_key_loaded = 1;
558 }
aa3378df 559 /*
560 * Get rid of any extra privileges that we may have. We will no
561 * longer need them. Also, extra privileges could make it very hard
562 * to read identity files and other non-world-readable files from the
563 * user's home directory if it happens to be on a NFS volume where
564 * root is mapped to nobody.
565 */
566
567 /*
568 * Note that some legacy systems need to postpone the following call
569 * to permanently_set_uid() until the private hostkey is destroyed
570 * with RSA_free(). Otherwise the calling user could ptrace() the
571 * process, read the private hostkey and impersonate the host.
572 * OpenBSD does not allow ptracing of setuid processes.
573 */
5260325f 574 permanently_set_uid(original_real_uid);
575
aa3378df 576 /*
577 * Now that we are back to our own permissions, create ~/.ssh
578 * directory if it doesn\'t already exist.
579 */
5260325f 580 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, SSH_USER_DIR);
581 if (stat(buf, &st) < 0)
582 if (mkdir(buf, 0755) < 0)
583 error("Could not create directory '%.200s'.", buf);
584
585 /* Check if the connection failed, and try "rsh" if appropriate. */
586 if (!ok) {
587 if (options.port != 0)
57112b5a 588 log("Secure connection to %.100s on port %hu refused%.100s.",
5260325f 589 host, options.port,
590 options.fallback_to_rsh ? "; reverting to insecure method" : "");
591 else
592 log("Secure connection to %.100s refused%.100s.", host,
593 options.fallback_to_rsh ? "; reverting to insecure method" : "");
594
595 if (options.fallback_to_rsh) {
596 rsh_connect(host, options.user, &command);
597 fatal("rsh_connect returned");
598 }
599 exit(1);
8efc0c15 600 }
5260325f 601 /* Expand ~ in options.identity_files. */
602 for (i = 0; i < options.num_identity_files; i++)
603 options.identity_files[i] =
604 tilde_expand_filename(options.identity_files[i], original_real_uid);
605
606 /* Expand ~ in known host file names. */
607 options.system_hostfile = tilde_expand_filename(options.system_hostfile,
608 original_real_uid);
609 options.user_hostfile = tilde_expand_filename(options.user_hostfile,
610 original_real_uid);
611
612 /* Log into the remote system. This never returns if the login fails. */
613 ssh_login(host_private_key_loaded, host_private_key,
48e671d5 614 host, (struct sockaddr *)&hostaddr, original_real_uid);
5260325f 615
616 /* We no longer need the host private key. Clear it now. */
617 if (host_private_key_loaded)
618 RSA_free(host_private_key); /* Destroys contents safely */
619
620 /* Close connection cleanly after attack. */
621 cipher_attack_detected = packet_disconnect;
622
5260325f 623 /* Enable compression if requested. */
624 if (options.compression) {
625 debug("Requesting compression at level %d.", options.compression_level);
626
627 if (options.compression_level < 1 || options.compression_level > 9)
628 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
629
630 /* Send the request. */
631 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
632 packet_put_int(options.compression_level);
633 packet_send();
634 packet_write_wait();
635 type = packet_read(&plen);
636 if (type == SSH_SMSG_SUCCESS)
637 packet_start_compression(options.compression_level);
638 else if (type == SSH_SMSG_FAILURE)
639 log("Warning: Remote host refused compression.");
640 else
641 packet_disconnect("Protocol error waiting for compression response.");
642 }
643 /* Allocate a pseudo tty if appropriate. */
644 if (tty_flag) {
645 debug("Requesting pty.");
646
647 /* Start the packet. */
648 packet_start(SSH_CMSG_REQUEST_PTY);
649
650 /* Store TERM in the packet. There is no limit on the
651 length of the string. */
652 cp = getenv("TERM");
653 if (!cp)
654 cp = "";
655 packet_put_string(cp, strlen(cp));
656
657 /* Store window size in the packet. */
658 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
659 memset(&ws, 0, sizeof(ws));
660 packet_put_int(ws.ws_row);
661 packet_put_int(ws.ws_col);
662 packet_put_int(ws.ws_xpixel);
663 packet_put_int(ws.ws_ypixel);
664
665 /* Store tty modes in the packet. */
666 tty_make_modes(fileno(stdin));
667
668 /* Send the packet, and wait for it to leave. */
669 packet_send();
670 packet_write_wait();
671
672 /* Read response from the server. */
673 type = packet_read(&plen);
674 if (type == SSH_SMSG_SUCCESS)
675 interactive = 1;
676 else if (type == SSH_SMSG_FAILURE)
677 log("Warning: Remote host failed or refused to allocate a pseudo tty.");
678 else
679 packet_disconnect("Protocol error waiting for pty request response.");
680 }
681 /* Request X11 forwarding if enabled and DISPLAY is set. */
682 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
683 char line[512], proto[512], data[512];
684 FILE *f;
685 int forwarded = 0, got_data = 0, i;
8efc0c15 686
687#ifdef XAUTH_PATH
5260325f 688 /* Try to get Xauthority information for the display. */
689 snprintf(line, sizeof line, "%.100s list %.200s 2>/dev/null",
690 XAUTH_PATH, getenv("DISPLAY"));
691 f = popen(line, "r");
692 if (f && fgets(line, sizeof(line), f) &&
693 sscanf(line, "%*s %s %s", proto, data) == 2)
694 got_data = 1;
695 if (f)
696 pclose(f);
8efc0c15 697#endif /* XAUTH_PATH */
aa3378df 698 /*
699 * If we didn't get authentication data, just make up some
700 * data. The forwarding code will check the validity of the
701 * response anyway, and substitute this data. The X11
702 * server, however, will ignore this fake data and use
703 * whatever authentication mechanisms it was using otherwise
704 * for the local connection.
705 */
5260325f 706 if (!got_data) {
707 u_int32_t rand = 0;
708
709 strlcpy(proto, "MIT-MAGIC-COOKIE-1", sizeof proto);
710 for (i = 0; i < 16; i++) {
711 if (i % 4 == 0)
712 rand = arc4random();
713 snprintf(data + 2 * i, sizeof data - 2 * i, "%02x", rand & 0xff);
714 rand >>= 8;
715 }
716 }
aa3378df 717 /*
718 * Got local authentication reasonable information. Request
719 * forwarding with authentication spoofing.
720 */
5260325f 721 debug("Requesting X11 forwarding with authentication spoofing.");
722 x11_request_forwarding_with_spoofing(proto, data);
723
724 /* Read response from the server. */
725 type = packet_read(&plen);
726 if (type == SSH_SMSG_SUCCESS) {
727 forwarded = 1;
728 interactive = 1;
729 } else if (type == SSH_SMSG_FAILURE)
730 log("Warning: Remote host denied X11 forwarding.");
731 else
732 packet_disconnect("Protocol error waiting for X11 forwarding");
733 }
734 /* Tell the packet module whether this is an interactive session. */
735 packet_set_interactive(interactive, options.keepalives);
736
737 /* Clear agent forwarding if we don\'t have an agent. */
738 authfd = ssh_get_authentication_socket();
739 if (authfd < 0)
740 options.forward_agent = 0;
741 else
742 ssh_close_authentication_socket(authfd);
743
744 /* Request authentication agent forwarding if appropriate. */
745 if (options.forward_agent) {
746 debug("Requesting authentication agent forwarding.");
747 auth_request_forwarding();
748
749 /* Read response from the server. */
750 type = packet_read(&plen);
751 packet_integrity_check(plen, 0, type);
752 if (type != SSH_SMSG_SUCCESS)
753 log("Warning: Remote host denied authentication agent forwarding.");
754 }
755 /* Initiate local TCP/IP port forwardings. */
756 for (i = 0; i < options.num_local_forwards; i++) {
757 debug("Connections to local port %d forwarded to remote address %.200s:%d",
758 options.local_forwards[i].port,
759 options.local_forwards[i].host,
760 options.local_forwards[i].host_port);
761 channel_request_local_forwarding(options.local_forwards[i].port,
762 options.local_forwards[i].host,
95f1eccc 763 options.local_forwards[i].host_port,
764 options.gateway_ports);
8efc0c15 765 }
766
5260325f 767 /* Initiate remote TCP/IP port forwardings. */
768 for (i = 0; i < options.num_remote_forwards; i++) {
769 debug("Connections to remote port %d forwarded to local address %.200s:%d",
770 options.remote_forwards[i].port,
771 options.remote_forwards[i].host,
772 options.remote_forwards[i].host_port);
773 channel_request_remote_forwarding(options.remote_forwards[i].port,
774 options.remote_forwards[i].host,
775 options.remote_forwards[i].host_port);
8efc0c15 776 }
5260325f 777
aa3378df 778 /* If requested, let ssh continue in the background. */
779 if (fork_after_authentication_flag)
780 if (daemon(1, 1) < 0)
781 fatal("daemon() failed: %.200s", strerror(errno));
782
783 /*
784 * If a command was specified on the command line, execute the
785 * command now. Otherwise request the server to start a shell.
786 */
5260325f 787 if (buffer_len(&command) > 0) {
788 int len = buffer_len(&command);
789 if (len > 900)
790 len = 900;
791 debug("Sending command: %.*s", len, buffer_ptr(&command));
792 packet_start(SSH_CMSG_EXEC_CMD);
793 packet_put_string(buffer_ptr(&command), buffer_len(&command));
794 packet_send();
795 packet_write_wait();
796 } else {
797 debug("Requesting shell.");
798 packet_start(SSH_CMSG_EXEC_SHELL);
799 packet_send();
800 packet_write_wait();
801 }
802
803 /* Enter the interactive session. */
804 exit_status = client_loop(tty_flag, tty_flag ? options.escape_char : -1);
805
806 /* Close the connection to the remote host. */
807 packet_close();
808
809 /* Exit with the status returned by the program on the remote side. */
810 exit(exit_status);
8efc0c15 811}
This page took 0.172708 seconds and 5 git commands to generate.