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