]> andersk Git - openssh.git/blame - ssh.c
- dtucker@cvs.openbsd.org 2005/06/09 13:43:49
[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.
d73a67d7 16 * Copyright (c) 2000, 2001, 2002, 2003 Markus Friedl. All rights reserved.
bcbf86ec 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.
5260325f 40 */
8efc0c15 41
42#include "includes.h"
9dfd96d6 43RCSID("$OpenBSD: ssh.c,v 1.242 2005/06/08 11:25:09 djm Exp $");
8efc0c15 44
a306f2dd 45#include <openssl/evp.h>
fa08c86b 46#include <openssl/err.h>
a306f2dd 47
8efc0c15 48#include "ssh.h"
42f11eb2 49#include "ssh1.h"
50#include "ssh2.h"
51#include "compat.h"
52#include "cipher.h"
53#include "xmalloc.h"
8efc0c15 54#include "packet.h"
55#include "buffer.h"
5e96b616 56#include "bufaux.h"
a5efa1bb 57#include "channels.h"
a306f2dd 58#include "key.h"
4c8722d9 59#include "authfd.h"
a306f2dd 60#include "authfile.h"
42f11eb2 61#include "pathnames.h"
5e96b616 62#include "dispatch.h"
b5c334cc 63#include "clientloop.h"
42f11eb2 64#include "log.h"
65#include "readconf.h"
66#include "sshconnect.h"
42f11eb2 67#include "misc.h"
b2552997 68#include "kex.h"
69#include "mac.h"
07d80252 70#include "sshpty.h"
61a2c1da 71#include "match.h"
5e96b616 72#include "msg.h"
73#include "monitor_fdpass.h"
6213295d 74#include "uidswap.h"
8efc0c15 75
383546c4 76#ifdef SMARTCARD
383546c4 77#include "scard.h"
dd2495cb 78#endif
383546c4 79
f601d847 80extern char *__progname;
f601d847 81
5260325f 82/* Flag indicating whether debug mode is on. This can be set on the command line. */
8efc0c15 83int debug_flag = 0;
84
a8be9f80 85/* Flag indicating whether a tty should be allocated */
8efc0c15 86int tty_flag = 0;
8abcdba4 87int no_tty_flag = 0;
88int force_tty_flag = 0;
8efc0c15 89
8ce64345 90/* don't exec a shell */
91int no_shell_flag = 0;
8ce64345 92
aa3378df 93/*
94 * Flag indicating that nothing should be read from stdin. This can be set
95 * on the command line.
96 */
8efc0c15 97int stdin_null_flag = 0;
98
aa3378df 99/*
100 * Flag indicating that ssh should fork after authentication. This is useful
c242fc96 101 * so that the passphrase can be entered manually, and then ssh goes to the
aa3378df 102 * background.
103 */
8efc0c15 104int fork_after_authentication_flag = 0;
105
aa3378df 106/*
107 * General data structure for command line options and options configurable
108 * in configuration files. See readconf.h.
109 */
8efc0c15 110Options options;
111
e591b98a 112/* optional user configfile */
113char *config = NULL;
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
8002af61 125/* Private host keys. */
39c00dc2 126Sensitive sensitive_data;
8efc0c15 127
128/* Original real UID. */
129uid_t original_real_uid;
3fb156df 130uid_t original_effective_uid;
8efc0c15 131
8ce64345 132/* command to be executed */
133Buffer command;
134
ae810de7 135/* Should we execute a command or invoke a subsystem? */
136int subsystem_flag = 0;
137
e0ae8728 138/* # of replies received for global requests */
139static int client_global_request_id = 0;
140
6939bbd4 141/* pid of proxycommand child process */
142pid_t proxy_command_pid = 0;
143
5e96b616 144/* fd to control socket */
145int control_fd = -1;
146
f8c6db83 147/* Multiplexing control command */
19186c3d 148static u_int mux_command = 0;
f8c6db83 149
5e96b616 150/* Only used in control client mode */
151volatile sig_atomic_t control_client_terminate = 0;
152u_int control_server_pid = 0;
153
8efc0c15 154/* Prints a help message to the user. This function never returns. */
155
396c147e 156static void
5ca51e19 157usage(void)
8efc0c15 158{
182ccbba 159 fprintf(stderr,
aeefce7a 160"usage: ssh [-1246AaCfgkMNnqsTtVvXxY] [-b bind_address] [-c cipher_spec]\n"
8cf98c65 161" [-D port] [-e escape_char] [-F configfile]\n"
162" [-i identity_file] [-L [bind_address:]port:host:hostport]\n"
3867aa0a 163" [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
8cf98c65 164" [-R [bind_address:]port:host:hostport] [-S ctl_path]\n"
aeefce7a 165" [user@]hostname [command]\n"
182ccbba 166 );
5260325f 167 exit(1);
8efc0c15 168}
169
396c147e 170static int ssh_session(void);
171static int ssh_session2(void);
172static void load_public_identity_files(void);
5e96b616 173static void control_client(const char *path);
8ce64345 174
5260325f 175/*
176 * Main program for the ssh client.
177 */
8efc0c15 178int
179main(int ac, char **av)
180{
b34bec32 181 int i, opt, exit_status;
1aafd17a 182 char *p, *cp, *line, buf[256];
5260325f 183 struct stat st;
3b1a83df 184 struct passwd *pw;
8ce64345 185 int dummy;
57dade33 186 extern int optind, optreset;
1812a662 187 extern char *optarg;
3867aa0a 188 Forward fwd;
5260325f 189
fda04d7d 190 __progname = ssh_get_progname(av[0]);
264dce47 191 init_rng();
192
aa3378df 193 /*
194 * Save the original real uid. It will be needed later (uid-swapping
195 * may clobber the real uid).
196 */
5260325f 197 original_real_uid = getuid();
198 original_effective_uid = geteuid();
aff51935 199
9f324470 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 */
207 PRIV_END;
5260325f 208
7322ef0e 209#ifdef HAVE_SETRLIMIT
5260325f 210 /* If we are installed setuid root be careful to not drop core. */
211 if (original_real_uid != original_effective_uid) {
212 struct rlimit rlim;
213 rlim.rlim_cur = rlim.rlim_max = 0;
214 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
215 fatal("setrlimit failed: %.100s", strerror(errno));
8efc0c15 216 }
3c62e7eb 217#endif
63bd8c36 218 /* Get user data. */
219 pw = getpwuid(original_real_uid);
220 if (!pw) {
bbe88b6d 221 logit("You don't exist, go away!");
63bd8c36 222 exit(1);
223 }
224 /* Take a copy of the returned structure. */
225 pw = pwcopy(pw);
226
aa3378df 227 /*
228 * Set our umask to something reasonable, as some files are created
229 * with the default umask. This will make them world-readable but
230 * writable only by the owner, which is ok for all files for which we
231 * don't set the modes explicitly.
232 */
5260325f 233 umask(022);
234
5260325f 235 /* Initialize option structure to indicate that no values have been set. */
236 initialize_options(&options);
237
238 /* Parse command-line arguments. */
239 host = NULL;
240
f5a1a01a 241again:
242 while ((opt = getopt(ac, av,
f8c6db83 243 "1246ab:c:e:fgi:kl:m:no:p:qstvxACD:F:I:L:MNO:PR:S:TVXY")) != -1) {
5260325f 244 switch (opt) {
1f3bf5aa 245 case '1':
246 options.protocol = SSH_PROTO_1;
247 break;
6ae2364d 248 case '2':
249 options.protocol = SSH_PROTO_2;
250 break;
48e671d5 251 case '4':
1572b90f 252 options.address_family = AF_INET;
48e671d5 253 break;
48e671d5 254 case '6':
1572b90f 255 options.address_family = AF_INET6;
48e671d5 256 break;
5260325f 257 case 'n':
258 stdin_null_flag = 1;
259 break;
5260325f 260 case 'f':
261 fork_after_authentication_flag = 1;
262 stdin_null_flag = 1;
263 break;
5260325f 264 case 'x':
265 options.forward_x11 = 0;
266 break;
5260325f 267 case 'X':
268 options.forward_x11 = 1;
269 break;
d73a67d7 270 case 'Y':
271 options.forward_x11 = 1;
272 options.forward_x11_trusted = 1;
273 break;
5260325f 274 case 'g':
275 options.gateway_ports = 1;
276 break;
f8c6db83 277 case 'O':
278 if (strcmp(optarg, "check") == 0)
279 mux_command = SSHMUX_COMMAND_ALIVE_CHECK;
280 else if (strcmp(optarg, "exit") == 0)
281 mux_command = SSHMUX_COMMAND_TERMINATE;
282 else
283 fatal("Invalid multiplex command.");
284 break;
e59404d1 285 case 'P': /* deprecated */
5260325f 286 options.use_privileged_port = 0;
287 break;
5260325f 288 case 'a':
289 options.forward_agent = 0;
290 break;
71276795 291 case 'A':
292 options.forward_agent = 1;
293 break;
5260325f 294 case 'k':
f7926e97 295 options.gss_deleg_creds = 0;
5260325f 296 break;
5260325f 297 case 'i':
298 if (stat(optarg, &st) < 0) {
f5a1a01a 299 fprintf(stderr, "Warning: Identity file %s "
ec304d66 300 "not accessible: %s.\n", optarg,
301 strerror(errno));
5260325f 302 break;
303 }
f5a1a01a 304 if (options.num_identity_files >=
305 SSH_MAX_IDENTITY_FILES)
306 fatal("Too many identity files specified "
307 "(max %d)", SSH_MAX_IDENTITY_FILES);
308 options.identity_files[options.num_identity_files++] =
309 xstrdup(optarg);
5260325f 310 break;
383546c4 311 case 'I':
312#ifdef SMARTCARD
9ff6f66f 313 options.smartcard_device = xstrdup(optarg);
dd2495cb 314#else
383546c4 315 fprintf(stderr, "no support for smartcards.\n");
dd2495cb 316#endif
383546c4 317 break;
5260325f 318 case 't':
8abcdba4 319 if (tty_flag)
320 force_tty_flag = 1;
5260325f 321 tty_flag = 1;
322 break;
5260325f 323 case 'v':
e053cd2c 324 if (debug_flag == 0) {
bcbf86ec 325 debug_flag = 1;
326 options.log_level = SYSLOG_LEVEL_DEBUG1;
e053cd2c 327 } else {
328 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
329 options.log_level++;
bcbf86ec 330 break;
e053cd2c 331 }
59d4718a 332 /* FALLTHROUGH */
5260325f 333 case 'V':
85ac7a84 334 fprintf(stderr, "%s, %s\n",
4526e8c2 335 SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
5260325f 336 if (opt == 'V')
337 exit(0);
5260325f 338 break;
5260325f 339 case 'q':
340 options.log_level = SYSLOG_LEVEL_QUIET;
341 break;
5260325f 342 case 'e':
343 if (optarg[0] == '^' && optarg[2] == 0 &&
f5a1a01a 344 (u_char) optarg[1] >= 64 &&
345 (u_char) optarg[1] < 128)
1e3b8b07 346 options.escape_char = (u_char) optarg[1] & 31;
5260325f 347 else if (strlen(optarg) == 1)
1e3b8b07 348 options.escape_char = (u_char) optarg[0];
5260325f 349 else if (strcmp(optarg, "none") == 0)
4bf9c10e 350 options.escape_char = SSH_ESCAPECHAR_NONE;
5260325f 351 else {
f5a1a01a 352 fprintf(stderr, "Bad escape character '%s'.\n",
353 optarg);
5260325f 354 exit(1);
355 }
356 break;
5260325f 357 case 'c':
a306f2dd 358 if (ciphers_valid(optarg)) {
359 /* SSH2 only */
360 options.ciphers = xstrdup(optarg);
d77347cc 361 options.cipher = SSH_CIPHER_INVALID;
a306f2dd 362 } else {
363 /* SSH1 only */
c523303b 364 options.cipher = cipher_number(optarg);
365 if (options.cipher == -1) {
f5a1a01a 366 fprintf(stderr,
367 "Unknown cipher type '%s'\n",
368 optarg);
a306f2dd 369 exit(1);
370 }
f5a1a01a 371 if (options.cipher == SSH_CIPHER_3DES)
c523303b 372 options.ciphers = "3des-cbc";
f5a1a01a 373 else if (options.cipher == SSH_CIPHER_BLOWFISH)
c523303b 374 options.ciphers = "blowfish-cbc";
f5a1a01a 375 else
c523303b 376 options.ciphers = (char *)-1;
5260325f 377 }
378 break;
b2552997 379 case 'm':
380 if (mac_valid(optarg))
381 options.macs = xstrdup(optarg);
382 else {
f5a1a01a 383 fprintf(stderr, "Unknown mac type '%s'\n",
384 optarg);
b2552997 385 exit(1);
386 }
387 break;
5e96b616 388 case 'M':
9dfd96d6 389 if (options.control_master == SSHCTL_MASTER_YES)
390 options.control_master = SSHCTL_MASTER_ASK;
391 else
392 options.control_master = SSHCTL_MASTER_YES;
5e96b616 393 break;
5260325f 394 case 'p':
2d2a2c65 395 options.port = a2port(optarg);
396 if (options.port == 0) {
6031af8d 397 fprintf(stderr, "Bad port '%s'\n", optarg);
398 exit(1);
399 }
5260325f 400 break;
5260325f 401 case 'l':
402 options.user = optarg;
403 break;
d2e3df16 404
405 case 'L':
3867aa0a 406 if (parse_forward(&fwd, optarg))
407 add_local_forward(&options, &fwd);
408 else {
f5a1a01a 409 fprintf(stderr,
3867aa0a 410 "Bad local forwarding specification '%s'\n",
f5a1a01a 411 optarg);
3867aa0a 412 exit(1);
5260325f 413 }
3867aa0a 414 break;
415
416 case 'R':
417 if (parse_forward(&fwd, optarg)) {
418 add_remote_forward(&options, &fwd);
419 } else {
f5a1a01a 420 fprintf(stderr,
3867aa0a 421 "Bad remote forwarding specification "
422 "'%s'\n", optarg);
d2e3df16 423 exit(1);
5260325f 424 }
5260325f 425 break;
0490e609 426
427 case 'D':
3867aa0a 428 cp = p = xstrdup(optarg);
429 memset(&fwd, '\0', sizeof(fwd));
430 fwd.connect_host = "socks";
431 if ((fwd.listen_host = hpdelim(&cp)) == NULL) {
432 fprintf(stderr, "Bad dynamic forwarding "
433 "specification '%.100s'\n", optarg);
434 exit(1);
435 }
436 if (cp != NULL) {
437 fwd.listen_port = a2port(cp);
438 fwd.listen_host = cleanhostname(fwd.listen_host);
439 } else {
440 fwd.listen_port = a2port(fwd.listen_host);
441 fwd.listen_host = "";
442 }
443
444 if (fwd.listen_port == 0) {
f5a1a01a 445 fprintf(stderr, "Bad dynamic port '%s'\n",
446 optarg);
6031af8d 447 exit(1);
448 }
3867aa0a 449 add_local_forward(&options, &fwd);
450 xfree(p);
0490e609 451 break;
452
5260325f 453 case 'C':
454 options.compression = 1;
455 break;
8ce64345 456 case 'N':
457 no_shell_flag = 1;
458 no_tty_flag = 1;
459 break;
8ce64345 460 case 'T':
461 no_tty_flag = 1;
462 break;
5260325f 463 case 'o':
464 dummy = 1;
1aafd17a 465 line = xstrdup(optarg);
f5a1a01a 466 if (process_config_line(&options, host ? host : "",
1aafd17a 467 line, "command-line", 0, &dummy) != 0)
5260325f 468 exit(1);
1aafd17a 469 xfree(line);
5260325f 470 break;
ae810de7 471 case 's':
472 subsystem_flag = 1;
473 break;
5e96b616 474 case 'S':
475 if (options.control_path != NULL)
476 free(options.control_path);
477 options.control_path = xstrdup(optarg);
5e96b616 478 break;
3435f5a6 479 case 'b':
480 options.bind_address = optarg;
481 break;
e591b98a 482 case 'F':
483 config = optarg;
484 break;
5260325f 485 default:
486 usage();
487 }
488 }
489
f5a1a01a 490 ac -= optind;
491 av += optind;
492
493 if (ac > 0 && !host && **av != '-') {
15748b4d 494 if (strrchr(*av, '@')) {
f5a1a01a 495 p = xstrdup(*av);
15748b4d 496 cp = strrchr(p, '@');
f5a1a01a 497 if (cp == NULL || cp == p)
498 usage();
499 options.user = p;
500 *cp = '\0';
501 host = ++cp;
502 } else
503 host = *av;
978ebf99 504 if (ac > 1) {
505 optind = optreset = 1;
f5a1a01a 506 goto again;
507 }
978ebf99 508 ac--, av++;
f5a1a01a 509 }
510
5260325f 511 /* Check that we got a host name. */
512 if (!host)
8efc0c15 513 usage();
5260325f 514
22d89d24 515 SSLeay_add_all_algorithms();
fa08c86b 516 ERR_load_crypto_strings();
22d89d24 517
5260325f 518 /* Initialize the command to execute on remote host. */
519 buffer_init(&command);
520
aa3378df 521 /*
522 * Save the command to execute on the remote host in a buffer. There
523 * is no limit on the length of the command, except by the maximum
524 * packet size. Also sets the tty flag if there is no command.
525 */
f5a1a01a 526 if (!ac) {
5260325f 527 /* No command specified - execute shell on a tty. */
528 tty_flag = 1;
ae810de7 529 if (subsystem_flag) {
f5a1a01a 530 fprintf(stderr,
531 "You must specify a subsystem to invoke.\n");
ae810de7 532 usage();
533 }
5260325f 534 } else {
f5a1a01a 535 /* A command has been specified. Store it into the buffer. */
536 for (i = 0; i < ac; i++) {
537 if (i)
5260325f 538 buffer_append(&command, " ", 1);
539 buffer_append(&command, av[i], strlen(av[i]));
540 }
8efc0c15 541 }
5260325f 542
543 /* Cannot fork to background if no command. */
14a9a859 544 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
5260325f 545 fatal("Cannot fork into background without a command to execute.");
546
547 /* Allocate a tty by default if no command specified. */
548 if (buffer_len(&command) == 0)
549 tty_flag = 1;
550
343288b8 551 /* Force no tty */
0b6fbf03 552 if (no_tty_flag)
553 tty_flag = 0;
5260325f 554 /* Do not allocate a tty if stdin is not a tty. */
7697ac2b 555 if ((!isatty(fileno(stdin)) || stdin_null_flag) && !force_tty_flag) {
5260325f 556 if (tty_flag)
bbe88b6d 557 logit("Pseudo-terminal will not be allocated because stdin is not a terminal.");
5260325f 558 tty_flag = 0;
559 }
8ce64345 560
20244695 561 /*
562 * Initialize "log" output. Since we are the client all output
563 * actually goes to stderr.
564 */
cc44f691 565 log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
566 SYSLOG_FACILITY_USER, 1);
5260325f 567
e591b98a 568 /*
569 * Read per-user configuration file. Ignore the system wide config
570 * file if the user specifies a config file on the command line.
571 */
572 if (config != NULL) {
f7f14143 573 if (!read_config_file(config, host, &options, 0))
93111dfa 574 fatal("Can't open user config file %.100s: "
575 "%.100s", config, strerror(errno));
e591b98a 576 } else {
577 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,
578 _PATH_SSH_USER_CONFFILE);
9f6cab4b 579 (void)read_config_file(buf, host, &options, 1);
e591b98a 580
f67792f2 581 /* Read systemwide configuration file after use config. */
f2107e97 582 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host,
9f6cab4b 583 &options, 0);
e591b98a 584 }
5260325f 585
586 /* Fill configuration defaults. */
587 fill_default_options(&options);
588
1572b90f 589 channel_set_af(options.address_family);
590
5260325f 591 /* reinit */
20244695 592 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
5260325f 593
e339aa53 594 seed_rng();
595
5260325f 596 if (options.user == NULL)
597 options.user = xstrdup(pw->pw_name);
598
599 if (options.hostname != NULL)
600 host = options.hostname;
601
03c82656 602 /* force lowercase for hostkey matching */
603 if (options.host_key_alias != NULL) {
604 for (p = options.host_key_alias; *p; p++)
605 if (isupper(*p))
606 *p = tolower(*p);
607 }
608
f78bde70 609 if (options.proxy_command != NULL &&
610 strcmp(options.proxy_command, "none") == 0)
611 options.proxy_command = NULL;
612
5e96b616 613 if (options.control_path != NULL) {
a980cbd7 614 snprintf(buf, sizeof(buf), "%d", options.port);
615 cp = tilde_expand_filename(options.control_path,
616 original_real_uid);
617 options.control_path = percent_expand(cp, "p", buf, "h", host,
618 "r", options.user, (char *)NULL);
619 xfree(cp);
5e96b616 620 }
19186c3d 621 if (mux_command != 0 && options.control_path == NULL)
622 fatal("No ControlPath specified for \"-O\" command");
9dfd96d6 623 if (options.control_path != NULL)
cc8ca1e6 624 control_client(options.control_path);
5e96b616 625
6ffc9c88 626 /* Open a connection to the remote host. */
1572b90f 627 if (ssh_connect(host, &hostaddr, options.port,
628 options.address_family, options.connection_attempts,
d514c907 629#ifdef HAVE_CYGWIN
630 options.use_privileged_port,
631#else
3fb156df 632 original_effective_uid == 0 && options.use_privileged_port,
d514c907 633#endif
de60473e 634 options.proxy_command) != 0)
b34bec32 635 exit(1);
5260325f 636
aa3378df 637 /*
638 * If we successfully made the connection, load the host private key
639 * in case we will need it later for combined rsa-rhosts
640 * authentication. This must be done before releasing extra
641 * privileges, because the file is only readable by root.
78660ed4 642 * If we cannot access the private keys, load the public keys
643 * instead and try to execute the ssh-keysign helper instead.
aa3378df 644 */
8002af61 645 sensitive_data.nkeys = 0;
646 sensitive_data.keys = NULL;
39c00dc2 647 sensitive_data.external_keysign = 0;
b34bec32 648 if (options.rhosts_rsa_authentication ||
649 options.hostbased_authentication) {
8002af61 650 sensitive_data.nkeys = 3;
343288b8 651 sensitive_data.keys = xmalloc(sensitive_data.nkeys *
652 sizeof(Key));
3fb156df 653
654 PRIV_START;
8002af61 655 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
aeaa3d9e 656 _PATH_HOST_KEY_FILE, "", NULL);
8002af61 657 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
658 _PATH_HOST_DSA_KEY_FILE, "", NULL);
659 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
660 _PATH_HOST_RSA_KEY_FILE, "", NULL);
3fb156df 661 PRIV_END;
39c00dc2 662
60cd0a97 663 if (options.hostbased_authentication == 1 &&
664 sensitive_data.keys[0] == NULL &&
39c00dc2 665 sensitive_data.keys[1] == NULL &&
666 sensitive_data.keys[2] == NULL) {
667 sensitive_data.keys[1] = key_load_public(
668 _PATH_HOST_DSA_KEY_FILE, NULL);
669 sensitive_data.keys[2] = key_load_public(
670 _PATH_HOST_RSA_KEY_FILE, NULL);
671 sensitive_data.external_keysign = 1;
672 }
5260325f 673 }
aa3378df 674 /*
675 * Get rid of any extra privileges that we may have. We will no
676 * longer need them. Also, extra privileges could make it very hard
677 * to read identity files and other non-world-readable files from the
678 * user's home directory if it happens to be on a NFS volume where
679 * root is mapped to nobody.
680 */
6213295d 681 if (original_effective_uid == 0) {
682 PRIV_START;
683 permanently_set_uid(pw);
684 }
5260325f 685
aa3378df 686 /*
687 * Now that we are back to our own permissions, create ~/.ssh
688 * directory if it doesn\'t already exist.
689 */
c3abff07 690 snprintf(buf, sizeof buf, "%.100s%s%.100s", pw->pw_dir, strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
5260325f 691 if (stat(buf, &st) < 0)
704b1659 692 if (mkdir(buf, 0700) < 0)
5260325f 693 error("Could not create directory '%.200s'.", buf);
694
fee56204 695 /* load options.identity_files */
696 load_public_identity_files();
697
698 /* Expand ~ in known host file names. */
699 /* XXX mem-leaks: */
fa08c86b 700 options.system_hostfile =
701 tilde_expand_filename(options.system_hostfile, original_real_uid);
702 options.user_hostfile =
703 tilde_expand_filename(options.user_hostfile, original_real_uid);
704 options.system_hostfile2 =
705 tilde_expand_filename(options.system_hostfile2, original_real_uid);
706 options.user_hostfile2 =
707 tilde_expand_filename(options.user_hostfile2, original_real_uid);
5260325f 708
67b75437 709 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
710
5260325f 711 /* Log into the remote system. This never returns if the login fails. */
39c00dc2 712 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr, pw);
8002af61 713
714 /* We no longer need the private host keys. Clear them now. */
715 if (sensitive_data.nkeys != 0) {
716 for (i = 0; i < sensitive_data.nkeys; i++) {
717 if (sensitive_data.keys[i] != NULL) {
718 /* Destroys contents safely */
719 debug3("clear hostkey %d", i);
720 key_free(sensitive_data.keys[i]);
721 sensitive_data.keys[i] = NULL;
722 }
723 }
724 xfree(sensitive_data.keys);
725 }
05b7537a 726 for (i = 0; i < options.num_identity_files; i++) {
727 if (options.identity_files[i]) {
728 xfree(options.identity_files[i]);
729 options.identity_files[i] = NULL;
730 }
731 if (options.identity_keys[i]) {
732 key_free(options.identity_keys[i]);
733 options.identity_keys[i] = NULL;
734 }
735 }
5260325f 736
8ce64345 737 exit_status = compat20 ? ssh_session2() : ssh_session();
738 packet_close();
6939bbd4 739
5e96b616 740 if (options.control_path != NULL && control_fd != -1)
741 unlink(options.control_path);
742
6939bbd4 743 /*
aff51935 744 * Send SIGHUP to proxy command if used. We don't wait() in
6939bbd4 745 * case it hangs and instead rely on init to reap the child
746 */
747 if (proxy_command_pid > 1)
748 kill(proxy_command_pid, SIGHUP);
749
8ce64345 750 return exit_status;
751}
752
d73a67d7 753#define SSH_X11_PROTO "MIT-MAGIC-COOKIE-1"
754
396c147e 755static void
b48eeb07 756x11_get_proto(char **_proto, char **_data)
0b242b12 757{
d73a67d7 758 char cmd[1024];
0b242b12 759 char line[512];
d73a67d7 760 char xdisplay[512];
b48eeb07 761 static char proto[512], data[512];
0b242b12 762 FILE *f;
d73a67d7 763 int got_data = 0, generated = 0, do_unlink = 0, i;
764 char *display, *xauthdir, *xauthfile;
5d185586 765 struct stat st;
0b242b12 766
d73a67d7 767 xauthdir = xauthfile = NULL;
b48eeb07 768 *_proto = proto;
769 *_data = data;
770 proto[0] = data[0] = '\0';
d73a67d7 771
5d185586 772 if (!options.xauth_location ||
773 (stat(options.xauth_location, &st) == -1)) {
774 debug("No xauth program.");
775 } else {
776 if ((display = getenv("DISPLAY")) == NULL) {
777 debug("x11_get_proto: DISPLAY not set");
778 return;
779 }
d73a67d7 780 /*
781 * Handle FamilyLocal case where $DISPLAY does
782 * not match an authorization entry. For this we
783 * just try "xauth list unix:displaynum.screennum".
784 * XXX: "localhost" match to determine FamilyLocal
785 * is not perfect.
786 */
787 if (strncmp(display, "localhost:", 10) == 0) {
788 snprintf(xdisplay, sizeof(xdisplay), "unix:%s",
789 display + 10);
790 display = xdisplay;
791 }
792 if (options.forward_x11_trusted == 0) {
793 xauthdir = xmalloc(MAXPATHLEN);
794 xauthfile = xmalloc(MAXPATHLEN);
795 strlcpy(xauthdir, "/tmp/ssh-XXXXXXXXXX", MAXPATHLEN);
796 if (mkdtemp(xauthdir) != NULL) {
797 do_unlink = 1;
798 snprintf(xauthfile, MAXPATHLEN, "%s/xauthfile",
799 xauthdir);
800 snprintf(cmd, sizeof(cmd),
801 "%s -f %s generate %s " SSH_X11_PROTO
c876ee7e 802 " untrusted timeout 1200 2>" _PATH_DEVNULL,
d73a67d7 803 options.xauth_location, xauthfile, display);
804 debug2("x11_get_proto: %s", cmd);
805 if (system(cmd) == 0)
806 generated = 1;
807 }
808 }
809 snprintf(cmd, sizeof(cmd),
810 "%s %s%s list %s . 2>" _PATH_DEVNULL,
811 options.xauth_location,
812 generated ? "-f " : "" ,
813 generated ? xauthfile : "",
814 display);
815 debug2("x11_get_proto: %s", cmd);
816 f = popen(cmd, "r");
fa649821 817 if (f && fgets(line, sizeof(line), f) &&
b48eeb07 818 sscanf(line, "%*s %511s %511s", proto, data) == 2)
fa649821 819 got_data = 1;
820 if (f)
821 pclose(f);
822 }
d73a67d7 823
824 if (do_unlink) {
825 unlink(xauthfile);
826 rmdir(xauthdir);
827 }
828 if (xauthdir)
829 xfree(xauthdir);
830 if (xauthfile)
831 xfree(xauthfile);
832
0b242b12 833 /*
834 * If we didn't get authentication data, just make up some
835 * data. The forwarding code will check the validity of the
836 * response anyway, and substitute this data. The X11
837 * server, however, will ignore this fake data and use
838 * whatever authentication mechanisms it was using otherwise
839 * for the local connection.
840 */
841 if (!got_data) {
ca75d7de 842 u_int32_t rnd = 0;
0b242b12 843
d73a67d7 844 logit("Warning: No xauth data; "
845 "using fake authentication data for X11 forwarding.");
846 strlcpy(proto, SSH_X11_PROTO, sizeof proto);
0b242b12 847 for (i = 0; i < 16; i++) {
848 if (i % 4 == 0)
ca75d7de 849 rnd = arc4random();
d73a67d7 850 snprintf(data + 2 * i, sizeof data - 2 * i, "%02x",
ca75d7de 851 rnd & 0xff);
852 rnd >>= 8;
0b242b12 853 }
854 }
855}
856
396c147e 857static void
fa08c86b 858ssh_init_forwarding(void)
859{
02a024dd 860 int success = 0;
fa08c86b 861 int i;
02a024dd 862
fa08c86b 863 /* Initiate local TCP/IP port forwardings. */
864 for (i = 0; i < options.num_local_forwards; i++) {
3867aa0a 865 debug("Local connections to %.200s:%d forwarded to remote "
866 "address %.200s:%d",
f8cc7664 867 (options.local_forwards[i].listen_host == NULL) ?
868 (options.gateway_ports ? "*" : "LOCALHOST") :
3867aa0a 869 options.local_forwards[i].listen_host,
870 options.local_forwards[i].listen_port,
871 options.local_forwards[i].connect_host,
872 options.local_forwards[i].connect_port);
5641aefa 873 success += channel_setup_local_fwd_listener(
3867aa0a 874 options.local_forwards[i].listen_host,
875 options.local_forwards[i].listen_port,
876 options.local_forwards[i].connect_host,
877 options.local_forwards[i].connect_port,
fa08c86b 878 options.gateway_ports);
879 }
02a024dd 880 if (i > 0 && success == 0)
881 error("Could not request local forwarding.");
fa08c86b 882
883 /* Initiate remote TCP/IP port forwardings. */
884 for (i = 0; i < options.num_remote_forwards; i++) {
3867aa0a 885 debug("Remote connections from %.200s:%d forwarded to "
886 "local address %.200s:%d",
d0c7c18d 887 (options.remote_forwards[i].listen_host == NULL) ?
888 (options.gateway_ports ? "*" : "LOCALHOST") :
3867aa0a 889 options.remote_forwards[i].listen_host,
890 options.remote_forwards[i].listen_port,
891 options.remote_forwards[i].connect_host,
892 options.remote_forwards[i].connect_port);
fa08c86b 893 channel_request_remote_forwarding(
3867aa0a 894 options.remote_forwards[i].listen_host,
895 options.remote_forwards[i].listen_port,
896 options.remote_forwards[i].connect_host,
897 options.remote_forwards[i].connect_port);
fa08c86b 898 }
899}
900
396c147e 901static void
fa08c86b 902check_agent_present(void)
903{
904 if (options.forward_agent) {
905 /* Clear agent forwarding if we don\'t have an agent. */
8b10e20e 906 if (!ssh_agent_present())
fa08c86b 907 options.forward_agent = 0;
fa08c86b 908 }
909}
910
396c147e 911static int
8ce64345 912ssh_session(void)
913{
914 int type;
8ce64345 915 int interactive = 0;
916 int have_tty = 0;
917 struct winsize ws;
8ce64345 918 char *cp;
919
5260325f 920 /* Enable compression if requested. */
921 if (options.compression) {
922 debug("Requesting compression at level %d.", options.compression_level);
923
924 if (options.compression_level < 1 || options.compression_level > 9)
925 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
926
927 /* Send the request. */
928 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
929 packet_put_int(options.compression_level);
930 packet_send();
931 packet_write_wait();
54a5250f 932 type = packet_read();
5260325f 933 if (type == SSH_SMSG_SUCCESS)
934 packet_start_compression(options.compression_level);
935 else if (type == SSH_SMSG_FAILURE)
bbe88b6d 936 logit("Warning: Remote host refused compression.");
5260325f 937 else
938 packet_disconnect("Protocol error waiting for compression response.");
939 }
940 /* Allocate a pseudo tty if appropriate. */
941 if (tty_flag) {
942 debug("Requesting pty.");
943
944 /* Start the packet. */
945 packet_start(SSH_CMSG_REQUEST_PTY);
946
947 /* Store TERM in the packet. There is no limit on the
948 length of the string. */
949 cp = getenv("TERM");
950 if (!cp)
951 cp = "";
449c5ba5 952 packet_put_cstring(cp);
5260325f 953
954 /* Store window size in the packet. */
955 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
956 memset(&ws, 0, sizeof(ws));
957 packet_put_int(ws.ws_row);
958 packet_put_int(ws.ws_col);
959 packet_put_int(ws.ws_xpixel);
960 packet_put_int(ws.ws_ypixel);
961
962 /* Store tty modes in the packet. */
30dcc918 963 tty_make_modes(fileno(stdin), NULL);
5260325f 964
965 /* Send the packet, and wait for it to leave. */
966 packet_send();
967 packet_write_wait();
968
969 /* Read response from the server. */
54a5250f 970 type = packet_read();
4fe2af09 971 if (type == SSH_SMSG_SUCCESS) {
5260325f 972 interactive = 1;
8ce64345 973 have_tty = 1;
4fe2af09 974 } else if (type == SSH_SMSG_FAILURE)
bbe88b6d 975 logit("Warning: Remote host failed or refused to allocate a pseudo tty.");
5260325f 976 else
977 packet_disconnect("Protocol error waiting for pty request response.");
978 }
979 /* Request X11 forwarding if enabled and DISPLAY is set. */
980 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
b48eeb07 981 char *proto, *data;
0b242b12 982 /* Get reasonable local authentication information. */
b48eeb07 983 x11_get_proto(&proto, &data);
0b242b12 984 /* Request forwarding with authentication spoofing. */
5260325f 985 debug("Requesting X11 forwarding with authentication spoofing.");
0b242b12 986 x11_request_forwarding_with_spoofing(0, proto, data);
5260325f 987
988 /* Read response from the server. */
54a5250f 989 type = packet_read();
5260325f 990 if (type == SSH_SMSG_SUCCESS) {
5260325f 991 interactive = 1;
0b242b12 992 } else if (type == SSH_SMSG_FAILURE) {
bbe88b6d 993 logit("Warning: Remote host denied X11 forwarding.");
0b242b12 994 } else {
5260325f 995 packet_disconnect("Protocol error waiting for X11 forwarding");
0b242b12 996 }
5260325f 997 }
998 /* Tell the packet module whether this is an interactive session. */
b5c334cc 999 packet_set_interactive(interactive);
5260325f 1000
1001 /* Request authentication agent forwarding if appropriate. */
fa08c86b 1002 check_agent_present();
1003
5260325f 1004 if (options.forward_agent) {
1005 debug("Requesting authentication agent forwarding.");
1006 auth_request_forwarding();
1007
1008 /* Read response from the server. */
54a5250f 1009 type = packet_read();
95500969 1010 packet_check_eom();
5260325f 1011 if (type != SSH_SMSG_SUCCESS)
bbe88b6d 1012 logit("Warning: Remote host denied authentication agent forwarding.");
5260325f 1013 }
8efc0c15 1014
fa08c86b 1015 /* Initiate port forwardings. */
1016 ssh_init_forwarding();
5260325f 1017
aa3378df 1018 /* If requested, let ssh continue in the background. */
6ae2364d 1019 if (fork_after_authentication_flag)
aa3378df 1020 if (daemon(1, 1) < 0)
1021 fatal("daemon() failed: %.200s", strerror(errno));
1022
1023 /*
1024 * If a command was specified on the command line, execute the
1025 * command now. Otherwise request the server to start a shell.
1026 */
5260325f 1027 if (buffer_len(&command) > 0) {
1028 int len = buffer_len(&command);
1029 if (len > 900)
1030 len = 900;
6c0fa2b1 1031 debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
5260325f 1032 packet_start(SSH_CMSG_EXEC_CMD);
1033 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1034 packet_send();
1035 packet_write_wait();
1036 } else {
1037 debug("Requesting shell.");
1038 packet_start(SSH_CMSG_EXEC_SHELL);
1039 packet_send();
1040 packet_write_wait();
1041 }
1042
1043 /* Enter the interactive session. */
4bf9c10e 1044 return client_loop(have_tty, tty_flag ?
1045 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
8ce64345 1046}
5260325f 1047
396c147e 1048static void
5e96b616 1049ssh_subsystem_reply(int type, u_int32_t seq, void *ctxt)
1f3bf5aa 1050{
1051 int id, len;
1052
1053 id = packet_get_int();
1054 len = buffer_len(&command);
ce91d6f8 1055 if (len > 900)
1056 len = 900;
95500969 1057 packet_check_eom();
1f3bf5aa 1058 if (type == SSH2_MSG_CHANNEL_FAILURE)
1059 fatal("Request for subsystem '%.*s' failed on channel %d",
6c0fa2b1 1060 len, (u_char *)buffer_ptr(&command), id);
1f3bf5aa 1061}
1062
e0ae8728 1063void
5d8d32a3 1064client_global_request_reply_fwd(int type, u_int32_t seq, void *ctxt)
e0ae8728 1065{
1066 int i;
1067
1068 i = client_global_request_id++;
5d8d32a3 1069 if (i >= options.num_remote_forwards)
e0ae8728 1070 return;
e0ae8728 1071 debug("remote forward %s for: listen %d, connect %s:%d",
1072 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
3867aa0a 1073 options.remote_forwards[i].listen_port,
1074 options.remote_forwards[i].connect_host,
1075 options.remote_forwards[i].connect_port);
e0ae8728 1076 if (type == SSH2_MSG_REQUEST_FAILURE)
3867aa0a 1077 logit("Warning: remote port forwarding failed for listen "
1078 "port %d", options.remote_forwards[i].listen_port);
e0ae8728 1079}
1080
396c147e 1081static void
5e96b616 1082ssh_control_listener(void)
8ce64345 1083{
5e96b616 1084 struct sockaddr_un addr;
1085 mode_t old_umask;
4b5df124 1086 int addr_len;
1087
9dfd96d6 1088 if (options.control_path == NULL ||
1089 options.control_master == SSHCTL_MASTER_NO)
5e96b616 1090 return;
b5c334cc 1091
9dfd96d6 1092 debug("setting up multiplex master socket");
1093
5e96b616 1094 memset(&addr, '\0', sizeof(addr));
1095 addr.sun_family = AF_UNIX;
4b5df124 1096 addr_len = offsetof(struct sockaddr_un, sun_path) +
5e96b616 1097 strlen(options.control_path) + 1;
8ce64345 1098
5e96b616 1099 if (strlcpy(addr.sun_path, options.control_path,
1100 sizeof(addr.sun_path)) >= sizeof(addr.sun_path))
1101 fatal("ControlPath too long");
8ce64345 1102
5e96b616 1103 if ((control_fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
1104 fatal("%s socket(): %s\n", __func__, strerror(errno));
1105
1106 old_umask = umask(0177);
4b5df124 1107 if (bind(control_fd, (struct sockaddr*)&addr, addr_len) == -1) {
5e96b616 1108 control_fd = -1;
05ada1a6 1109 if (errno == EINVAL || errno == EADDRINUSE)
5e96b616 1110 fatal("ControlSocket %s already exists",
1111 options.control_path);
1112 else
1113 fatal("%s bind(): %s\n", __func__, strerror(errno));
8ce64345 1114 }
5e96b616 1115 umask(old_umask);
1116
1117 if (listen(control_fd, 64) == -1)
1118 fatal("%s listen(): %s\n", __func__, strerror(errno));
1119
1120 set_nonblock(control_fd);
1121}
1122
1123/* request pty/x11/agent/tcpfwd/shell for channel */
1124static void
1125ssh_session2_setup(int id, void *arg)
1126{
1786be35 1127 extern char **environ;
1128
5e96b616 1129 int interactive = tty_flag;
1130 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
b48eeb07 1131 char *proto, *data;
0b242b12 1132 /* Get reasonable local authentication information. */
b48eeb07 1133 x11_get_proto(&proto, &data);
0b242b12 1134 /* Request forwarding with authentication spoofing. */
1135 debug("Requesting X11 forwarding with authentication spoofing.");
1136 x11_request_forwarding_with_spoofing(id, proto, data);
b5c334cc 1137 interactive = 1;
0b242b12 1138 /* XXX wait for reply */
1139 }
1140
fa08c86b 1141 check_agent_present();
1142 if (options.forward_agent) {
1143 debug("Requesting authentication agent forwarding.");
1144 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1145 packet_send();
1146 }
1147
5e96b616 1148 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
1786be35 1149 NULL, fileno(stdin), &command, environ, &ssh_subsystem_reply);
1f3bf5aa 1150
b5c334cc 1151 packet_set_interactive(interactive);
8ce64345 1152}
1153
bcdb96c2 1154/* open new channel for a session */
396c147e 1155static int
bcdb96c2 1156ssh_session2_open(void)
8ce64345 1157{
719fc62f 1158 Channel *c;
1159 int window, packetmax, in, out, err;
2e73a022 1160
14a9a859 1161 if (stdin_null_flag) {
5ca51e19 1162 in = open(_PATH_DEVNULL, O_RDONLY);
14a9a859 1163 } else {
1164 in = dup(STDIN_FILENO);
1165 }
2e73a022 1166 out = dup(STDOUT_FILENO);
1167 err = dup(STDERR_FILENO);
8ce64345 1168
1169 if (in < 0 || out < 0 || err < 0)
14a9a859 1170 fatal("dup() in/out/err failed");
8ce64345 1171
a22aff1f 1172 /* enable nonblocking unless tty */
1173 if (!isatty(in))
1174 set_nonblock(in);
1175 if (!isatty(out))
1176 set_nonblock(out);
1177 if (!isatty(err))
1178 set_nonblock(err);
1179
bcbf86ec 1180 window = CHAN_SES_WINDOW_DEFAULT;
1181 packetmax = CHAN_SES_PACKET_DEFAULT;
ea9700ba 1182 if (tty_flag) {
1183 window >>= 1;
1184 packetmax >>= 1;
8ce64345 1185 }
719fc62f 1186 c = channel_new(
8ce64345 1187 "session", SSH_CHANNEL_OPENING, in, out, err,
bcbf86ec 1188 window, packetmax, CHAN_EXTENDED_WRITE,
0d942eff 1189 "client-session", /*nonblock*/0);
8ce64345 1190
bcdb96c2 1191 debug3("ssh_session2_open: channel_new: %d", c->self);
eb0dd41f 1192
36e1f6a1 1193 channel_send_open(c->self);
bcdb96c2 1194 if (!no_shell_flag)
5e96b616 1195 channel_register_confirm(c->self, ssh_session2_setup, NULL);
5260325f 1196
719fc62f 1197 return c->self;
eb0dd41f 1198}
1199
396c147e 1200static int
eb0dd41f 1201ssh_session2(void)
1202{
bcdb96c2 1203 int id = -1;
eb0dd41f 1204
1205 /* XXX should be pre-session */
1206 ssh_init_forwarding();
5e96b616 1207 ssh_control_listener();
eb0dd41f 1208
bcdb96c2 1209 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1210 id = ssh_session2_open();
eb0dd41f 1211
1212 /* If requested, let ssh continue in the background. */
1213 if (fork_after_authentication_flag)
1214 if (daemon(1, 1) < 0)
1215 fatal("daemon() failed: %.200s", strerror(errno));
1216
4bf9c10e 1217 return client_loop(tty_flag, tty_flag ?
1218 options.escape_char : SSH_ESCAPECHAR_NONE, id);
8efc0c15 1219}
fa08c86b 1220
396c147e 1221static void
fee56204 1222load_public_identity_files(void)
1223{
1224 char *filename;
2e23cde0 1225 int i = 0;
0659cace 1226 Key *public;
383546c4 1227#ifdef SMARTCARD
0659cace 1228 Key **keys;
1229
9ff6f66f 1230 if (options.smartcard_device != NULL &&
0659cace 1231 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
1232 (keys = sc_get_keys(options.smartcard_device, NULL)) != NULL ) {
1233 int count = 0;
1234 for (i = 0; keys[i] != NULL; i++) {
1235 count++;
0659cace 1236 memmove(&options.identity_files[1], &options.identity_files[0],
1237 sizeof(char *) * (SSH_MAX_IDENTITY_FILES - 1));
1238 memmove(&options.identity_keys[1], &options.identity_keys[0],
1239 sizeof(Key *) * (SSH_MAX_IDENTITY_FILES - 1));
1240 options.num_identity_files++;
1241 options.identity_keys[0] = keys[i];
244e796f 1242 options.identity_files[0] = sc_get_key_label(keys[i]);
0659cace 1243 }
1c2deed1 1244 if (options.num_identity_files > SSH_MAX_IDENTITY_FILES)
1245 options.num_identity_files = SSH_MAX_IDENTITY_FILES;
0659cace 1246 i = count;
1247 xfree(keys);
383546c4 1248 }
3e984472 1249#endif /* SMARTCARD */
2e23cde0 1250 for (; i < options.num_identity_files; i++) {
1251 filename = tilde_expand_filename(options.identity_files[i],
1252 original_real_uid);
1253 public = key_load_public(filename, NULL);
1254 debug("identity file %s type %d", filename,
1255 public ? public->type : -1);
1256 xfree(options.identity_files[i]);
1257 options.identity_files[i] = filename;
1258 options.identity_keys[i] = public;
1259 }
fee56204 1260}
5e96b616 1261
1262static void
1263control_client_sighandler(int signo)
1264{
1265 control_client_terminate = signo;
1266}
1267
1268static void
1269control_client_sigrelay(int signo)
1270{
1271 if (control_server_pid > 1)
1272 kill(control_server_pid, signo);
1273}
1274
67a08279 1275static int
1276env_permitted(char *env)
1277{
1278 int i;
1279 char name[1024], *cp;
1280
1281 strlcpy(name, env, sizeof(name));
1282 if ((cp = strchr(name, '=')) == NULL)
1283 return (0);
1284
1285 *cp = '\0';
1286
1287 for (i = 0; i < options.num_send_env; i++)
1288 if (match_pattern(name, options.send_env[i]))
1289 return (1);
1290
1291 return (0);
1292}
1293
5e96b616 1294static void
1295control_client(const char *path)
1296{
1297 struct sockaddr_un addr;
a7e124fe 1298 int i, r, fd, sock, exitval, num_env, addr_len;
5e96b616 1299 Buffer m;
f8c6db83 1300 char *term;
1786be35 1301 extern char **environ;
f8c6db83 1302 u_int flags;
f2107e97 1303
9dfd96d6 1304 if (mux_command == 0)
1305 mux_command = SSHMUX_COMMAND_OPEN;
1306
1307 switch (options.control_master) {
1308 case SSHCTL_MASTER_AUTO:
1309 case SSHCTL_MASTER_AUTO_ASK:
1310 debug("auto-mux: Trying existing master");
1311 /* FALLTHROUGH */
1312 case SSHCTL_MASTER_NO:
1313 break;
1314 default:
1315 return;
1316 }
1317
5e96b616 1318 memset(&addr, '\0', sizeof(addr));
1319 addr.sun_family = AF_UNIX;
4b5df124 1320 addr_len = offsetof(struct sockaddr_un, sun_path) +
5e96b616 1321 strlen(path) + 1;
1322
1323 if (strlcpy(addr.sun_path, path,
1324 sizeof(addr.sun_path)) >= sizeof(addr.sun_path))
1325 fatal("ControlPath too long");
1326
1327 if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
1328 fatal("%s socket(): %s", __func__, strerror(errno));
1329
cc8ca1e6 1330 if (connect(sock, (struct sockaddr*)&addr, addr_len) == -1) {
19186c3d 1331 if (mux_command != SSHMUX_COMMAND_OPEN) {
1332 fatal("Control socket connect(%.100s): %s", path,
1333 strerror(errno));
1334 }
f6740270 1335 if (errno == ENOENT)
1336 debug("Control socket \"%.100s\" does not exist", path);
1337 else {
1338 error("Control socket connect(%.100s): %s", path,
1339 strerror(errno));
1340 }
cc8ca1e6 1341 close(sock);
1342 return;
1343 }
1344
1345 if (stdin_null_flag) {
1346 if ((fd = open(_PATH_DEVNULL, O_RDONLY)) == -1)
1347 fatal("open(/dev/null): %s", strerror(errno));
1348 if (dup2(fd, STDIN_FILENO) == -1)
1349 fatal("dup2: %s", strerror(errno));
1350 if (fd > STDERR_FILENO)
1351 close(fd);
1352 }
5e96b616 1353
f8c6db83 1354 if ((term = getenv("TERM")) == NULL)
1355 term = "";
1356
1357 flags = 0;
1358 if (tty_flag)
1359 flags |= SSHMUX_FLAG_TTY;
1360 if (subsystem_flag)
1361 flags |= SSHMUX_FLAG_SUBSYS;
5e96b616 1362
5e96b616 1363 buffer_init(&m);
1364
f8c6db83 1365 /* Send our command to server */
1366 buffer_put_int(&m, mux_command);
1367 buffer_put_int(&m, flags);
1368 if (ssh_msg_send(sock, /* version */1, &m) == -1)
1369 fatal("%s: msg_send", __func__);
1370 buffer_clear(&m);
1371
1372 /* Get authorisation status and PID of controlee */
5e96b616 1373 if (ssh_msg_recv(sock, &m) == -1)
1374 fatal("%s: msg_recv", __func__);
f8c6db83 1375 if (buffer_get_char(&m) != 1)
5e96b616 1376 fatal("%s: wrong version", __func__);
0d34d6ce 1377 if (buffer_get_int(&m) != 1)
1378 fatal("Connection to master denied");
5e96b616 1379 control_server_pid = buffer_get_int(&m);
1380
5e96b616 1381 buffer_clear(&m);
5e96b616 1382
f8c6db83 1383 switch (mux_command) {
1384 case SSHMUX_COMMAND_ALIVE_CHECK:
f8cc7664 1385 fprintf(stderr, "Master running (pid=%d)\r\n",
f8c6db83 1386 control_server_pid);
1387 exit(0);
1388 case SSHMUX_COMMAND_TERMINATE:
1389 fprintf(stderr, "Exit request sent.\r\n");
1390 exit(0);
1391 case SSHMUX_COMMAND_OPEN:
1392 /* continue below */
1393 break;
1394 default:
1395 fatal("silly mux_command %d", mux_command);
1396 }
1397
1398 /* SSHMUX_COMMAND_OPEN */
1399 buffer_put_cstring(&m, term);
5e96b616 1400 buffer_append(&command, "\0", 1);
1401 buffer_put_cstring(&m, buffer_ptr(&command));
1402
67a08279 1403 if (options.num_send_env == 0 || environ == NULL) {
1404 buffer_put_int(&m, 0);
f2107e97 1405 } else {
67a08279 1406 /* Pass environment */
1407 num_env = 0;
1408 for (i = 0; environ[i] != NULL; i++)
1409 if (env_permitted(environ[i]))
1410 num_env++; /* Count */
f2107e97 1411
67a08279 1412 buffer_put_int(&m, num_env);
1413
77c50919 1414 for (i = 0; environ[i] != NULL && num_env >= 0; i++)
1415 if (env_permitted(environ[i])) {
1416 num_env--;
67a08279 1417 buffer_put_cstring(&m, environ[i]);
77c50919 1418 }
67a08279 1419 }
1786be35 1420
f8c6db83 1421 if (ssh_msg_send(sock, /* version */1, &m) == -1)
5e96b616 1422 fatal("%s: msg_send", __func__);
1423
1424 mm_send_fd(sock, STDIN_FILENO);
1425 mm_send_fd(sock, STDOUT_FILENO);
1426 mm_send_fd(sock, STDERR_FILENO);
1427
1428 /* Wait for reply, so master has a chance to gather ttymodes */
1429 buffer_clear(&m);
1430 if (ssh_msg_recv(sock, &m) == -1)
1431 fatal("%s: msg_recv", __func__);
f8c6db83 1432 if (buffer_get_char(&m) != 1)
1433 fatal("%s: wrong version", __func__);
5e96b616 1434 buffer_free(&m);
1435
d3e5d1e9 1436 signal(SIGHUP, control_client_sighandler);
78d2b454 1437 signal(SIGINT, control_client_sighandler);
1438 signal(SIGTERM, control_client_sighandler);
1439 signal(SIGWINCH, control_client_sigrelay);
1440
5e96b616 1441 if (tty_flag)
1442 enter_raw_mode();
1443
1444 /* Stick around until the controlee closes the client_fd */
1445 exitval = 0;
1446 for (;!control_client_terminate;) {
1447 r = read(sock, &exitval, sizeof(exitval));
1448 if (r == 0) {
1449 debug2("Received EOF from master");
1450 break;
1451 }
1452 if (r > 0)
1453 debug2("Received exit status from master %d", exitval);
1454 if (r == -1 && errno != EINTR)
1455 fatal("%s: read %s", __func__, strerror(errno));
1456 }
1457
1458 if (control_client_terminate)
1459 debug2("Exiting on signal %d", control_client_terminate);
1460
1461 close(sock);
1462
1463 leave_raw_mode();
1464
1465 if (tty_flag && options.log_level != SYSLOG_LEVEL_QUIET)
1466 fprintf(stderr, "Connection to master closed.\r\n");
1467
1468 exit(exitval);
1469}
This page took 4.76184 seconds and 5 git commands to generate.