]> andersk Git - openssh.git/blame - ssh.c
- djm@cvs.openbsd.org 2005/04/21 06:17:50
[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"
b3669591 43RCSID("$OpenBSD: ssh.c,v 1.235 2005/04/06 12:26:06 dtucker 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 */
148static u_int mux_command = SSHMUX_COMMAND_OPEN;
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':
4598add7 389 options.control_master =
390 (options.control_master >= 1) ? 2 : 1;
5e96b616 391 break;
5260325f 392 case 'p':
2d2a2c65 393 options.port = a2port(optarg);
394 if (options.port == 0) {
6031af8d 395 fprintf(stderr, "Bad port '%s'\n", optarg);
396 exit(1);
397 }
5260325f 398 break;
5260325f 399 case 'l':
400 options.user = optarg;
401 break;
d2e3df16 402
403 case 'L':
3867aa0a 404 if (parse_forward(&fwd, optarg))
405 add_local_forward(&options, &fwd);
406 else {
f5a1a01a 407 fprintf(stderr,
3867aa0a 408 "Bad local forwarding specification '%s'\n",
f5a1a01a 409 optarg);
3867aa0a 410 exit(1);
5260325f 411 }
3867aa0a 412 break;
413
414 case 'R':
415 if (parse_forward(&fwd, optarg)) {
416 add_remote_forward(&options, &fwd);
417 } else {
f5a1a01a 418 fprintf(stderr,
3867aa0a 419 "Bad remote forwarding specification "
420 "'%s'\n", optarg);
d2e3df16 421 exit(1);
5260325f 422 }
5260325f 423 break;
0490e609 424
425 case 'D':
3867aa0a 426 cp = p = xstrdup(optarg);
427 memset(&fwd, '\0', sizeof(fwd));
428 fwd.connect_host = "socks";
429 if ((fwd.listen_host = hpdelim(&cp)) == NULL) {
430 fprintf(stderr, "Bad dynamic forwarding "
431 "specification '%.100s'\n", optarg);
432 exit(1);
433 }
434 if (cp != NULL) {
435 fwd.listen_port = a2port(cp);
436 fwd.listen_host = cleanhostname(fwd.listen_host);
437 } else {
438 fwd.listen_port = a2port(fwd.listen_host);
439 fwd.listen_host = "";
440 }
441
442 if (fwd.listen_port == 0) {
f5a1a01a 443 fprintf(stderr, "Bad dynamic port '%s'\n",
444 optarg);
6031af8d 445 exit(1);
446 }
3867aa0a 447 add_local_forward(&options, &fwd);
448 xfree(p);
0490e609 449 break;
450
5260325f 451 case 'C':
452 options.compression = 1;
453 break;
8ce64345 454 case 'N':
455 no_shell_flag = 1;
456 no_tty_flag = 1;
457 break;
8ce64345 458 case 'T':
459 no_tty_flag = 1;
460 break;
5260325f 461 case 'o':
462 dummy = 1;
1aafd17a 463 line = xstrdup(optarg);
f5a1a01a 464 if (process_config_line(&options, host ? host : "",
1aafd17a 465 line, "command-line", 0, &dummy) != 0)
5260325f 466 exit(1);
1aafd17a 467 xfree(line);
5260325f 468 break;
ae810de7 469 case 's':
470 subsystem_flag = 1;
471 break;
5e96b616 472 case 'S':
473 if (options.control_path != NULL)
474 free(options.control_path);
475 options.control_path = xstrdup(optarg);
5e96b616 476 break;
3435f5a6 477 case 'b':
478 options.bind_address = optarg;
479 break;
e591b98a 480 case 'F':
481 config = optarg;
482 break;
5260325f 483 default:
484 usage();
485 }
486 }
487
f5a1a01a 488 ac -= optind;
489 av += optind;
490
491 if (ac > 0 && !host && **av != '-') {
15748b4d 492 if (strrchr(*av, '@')) {
f5a1a01a 493 p = xstrdup(*av);
15748b4d 494 cp = strrchr(p, '@');
f5a1a01a 495 if (cp == NULL || cp == p)
496 usage();
497 options.user = p;
498 *cp = '\0';
499 host = ++cp;
500 } else
501 host = *av;
978ebf99 502 if (ac > 1) {
503 optind = optreset = 1;
f5a1a01a 504 goto again;
505 }
978ebf99 506 ac--, av++;
f5a1a01a 507 }
508
5260325f 509 /* Check that we got a host name. */
510 if (!host)
8efc0c15 511 usage();
5260325f 512
22d89d24 513 SSLeay_add_all_algorithms();
fa08c86b 514 ERR_load_crypto_strings();
22d89d24 515
5260325f 516 /* Initialize the command to execute on remote host. */
517 buffer_init(&command);
518
aa3378df 519 /*
520 * Save the command to execute on the remote host in a buffer. There
521 * is no limit on the length of the command, except by the maximum
522 * packet size. Also sets the tty flag if there is no command.
523 */
f5a1a01a 524 if (!ac) {
5260325f 525 /* No command specified - execute shell on a tty. */
526 tty_flag = 1;
ae810de7 527 if (subsystem_flag) {
f5a1a01a 528 fprintf(stderr,
529 "You must specify a subsystem to invoke.\n");
ae810de7 530 usage();
531 }
5260325f 532 } else {
f5a1a01a 533 /* A command has been specified. Store it into the buffer. */
534 for (i = 0; i < ac; i++) {
535 if (i)
5260325f 536 buffer_append(&command, " ", 1);
537 buffer_append(&command, av[i], strlen(av[i]));
538 }
8efc0c15 539 }
5260325f 540
541 /* Cannot fork to background if no command. */
14a9a859 542 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
5260325f 543 fatal("Cannot fork into background without a command to execute.");
544
545 /* Allocate a tty by default if no command specified. */
546 if (buffer_len(&command) == 0)
547 tty_flag = 1;
548
343288b8 549 /* Force no tty */
0b6fbf03 550 if (no_tty_flag)
551 tty_flag = 0;
5260325f 552 /* Do not allocate a tty if stdin is not a tty. */
8abcdba4 553 if (!isatty(fileno(stdin)) && !force_tty_flag) {
5260325f 554 if (tty_flag)
bbe88b6d 555 logit("Pseudo-terminal will not be allocated because stdin is not a terminal.");
5260325f 556 tty_flag = 0;
557 }
8ce64345 558
20244695 559 /*
560 * Initialize "log" output. Since we are the client all output
561 * actually goes to stderr.
562 */
cc44f691 563 log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
564 SYSLOG_FACILITY_USER, 1);
5260325f 565
e591b98a 566 /*
567 * Read per-user configuration file. Ignore the system wide config
568 * file if the user specifies a config file on the command line.
569 */
570 if (config != NULL) {
f7f14143 571 if (!read_config_file(config, host, &options, 0))
93111dfa 572 fatal("Can't open user config file %.100s: "
573 "%.100s", config, strerror(errno));
e591b98a 574 } else {
575 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,
576 _PATH_SSH_USER_CONFFILE);
9f6cab4b 577 (void)read_config_file(buf, host, &options, 1);
e591b98a 578
f67792f2 579 /* Read systemwide configuration file after use config. */
f2107e97 580 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host,
9f6cab4b 581 &options, 0);
e591b98a 582 }
5260325f 583
584 /* Fill configuration defaults. */
585 fill_default_options(&options);
586
1572b90f 587 channel_set_af(options.address_family);
588
5260325f 589 /* reinit */
20244695 590 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
5260325f 591
e339aa53 592 seed_rng();
593
5260325f 594 if (options.user == NULL)
595 options.user = xstrdup(pw->pw_name);
596
597 if (options.hostname != NULL)
598 host = options.hostname;
599
03c82656 600 /* force lowercase for hostkey matching */
601 if (options.host_key_alias != NULL) {
602 for (p = options.host_key_alias; *p; p++)
603 if (isupper(*p))
604 *p = tolower(*p);
605 }
606
f78bde70 607 if (options.proxy_command != NULL &&
608 strcmp(options.proxy_command, "none") == 0)
609 options.proxy_command = NULL;
610
5e96b616 611 if (options.control_path != NULL) {
612 options.control_path = tilde_expand_filename(
613 options.control_path, original_real_uid);
614 }
615 if (options.control_path != NULL && options.control_master == 0)
616 control_client(options.control_path); /* This doesn't return */
617
6ffc9c88 618 /* Open a connection to the remote host. */
1572b90f 619 if (ssh_connect(host, &hostaddr, options.port,
620 options.address_family, options.connection_attempts,
d514c907 621#ifdef HAVE_CYGWIN
622 options.use_privileged_port,
623#else
3fb156df 624 original_effective_uid == 0 && options.use_privileged_port,
d514c907 625#endif
de60473e 626 options.proxy_command) != 0)
b34bec32 627 exit(1);
5260325f 628
aa3378df 629 /*
630 * If we successfully made the connection, load the host private key
631 * in case we will need it later for combined rsa-rhosts
632 * authentication. This must be done before releasing extra
633 * privileges, because the file is only readable by root.
78660ed4 634 * If we cannot access the private keys, load the public keys
635 * instead and try to execute the ssh-keysign helper instead.
aa3378df 636 */
8002af61 637 sensitive_data.nkeys = 0;
638 sensitive_data.keys = NULL;
39c00dc2 639 sensitive_data.external_keysign = 0;
b34bec32 640 if (options.rhosts_rsa_authentication ||
641 options.hostbased_authentication) {
8002af61 642 sensitive_data.nkeys = 3;
343288b8 643 sensitive_data.keys = xmalloc(sensitive_data.nkeys *
644 sizeof(Key));
3fb156df 645
646 PRIV_START;
8002af61 647 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
aeaa3d9e 648 _PATH_HOST_KEY_FILE, "", NULL);
8002af61 649 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
650 _PATH_HOST_DSA_KEY_FILE, "", NULL);
651 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
652 _PATH_HOST_RSA_KEY_FILE, "", NULL);
3fb156df 653 PRIV_END;
39c00dc2 654
60cd0a97 655 if (options.hostbased_authentication == 1 &&
656 sensitive_data.keys[0] == NULL &&
39c00dc2 657 sensitive_data.keys[1] == NULL &&
658 sensitive_data.keys[2] == NULL) {
659 sensitive_data.keys[1] = key_load_public(
660 _PATH_HOST_DSA_KEY_FILE, NULL);
661 sensitive_data.keys[2] = key_load_public(
662 _PATH_HOST_RSA_KEY_FILE, NULL);
663 sensitive_data.external_keysign = 1;
664 }
5260325f 665 }
aa3378df 666 /*
667 * Get rid of any extra privileges that we may have. We will no
668 * longer need them. Also, extra privileges could make it very hard
669 * to read identity files and other non-world-readable files from the
670 * user's home directory if it happens to be on a NFS volume where
671 * root is mapped to nobody.
672 */
6213295d 673 if (original_effective_uid == 0) {
674 PRIV_START;
675 permanently_set_uid(pw);
676 }
5260325f 677
aa3378df 678 /*
679 * Now that we are back to our own permissions, create ~/.ssh
680 * directory if it doesn\'t already exist.
681 */
c3abff07 682 snprintf(buf, sizeof buf, "%.100s%s%.100s", pw->pw_dir, strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
5260325f 683 if (stat(buf, &st) < 0)
704b1659 684 if (mkdir(buf, 0700) < 0)
5260325f 685 error("Could not create directory '%.200s'.", buf);
686
fee56204 687 /* load options.identity_files */
688 load_public_identity_files();
689
690 /* Expand ~ in known host file names. */
691 /* XXX mem-leaks: */
fa08c86b 692 options.system_hostfile =
693 tilde_expand_filename(options.system_hostfile, original_real_uid);
694 options.user_hostfile =
695 tilde_expand_filename(options.user_hostfile, original_real_uid);
696 options.system_hostfile2 =
697 tilde_expand_filename(options.system_hostfile2, original_real_uid);
698 options.user_hostfile2 =
699 tilde_expand_filename(options.user_hostfile2, original_real_uid);
5260325f 700
67b75437 701 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
702
5260325f 703 /* Log into the remote system. This never returns if the login fails. */
39c00dc2 704 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr, pw);
8002af61 705
706 /* We no longer need the private host keys. Clear them now. */
707 if (sensitive_data.nkeys != 0) {
708 for (i = 0; i < sensitive_data.nkeys; i++) {
709 if (sensitive_data.keys[i] != NULL) {
710 /* Destroys contents safely */
711 debug3("clear hostkey %d", i);
712 key_free(sensitive_data.keys[i]);
713 sensitive_data.keys[i] = NULL;
714 }
715 }
716 xfree(sensitive_data.keys);
717 }
05b7537a 718 for (i = 0; i < options.num_identity_files; i++) {
719 if (options.identity_files[i]) {
720 xfree(options.identity_files[i]);
721 options.identity_files[i] = NULL;
722 }
723 if (options.identity_keys[i]) {
724 key_free(options.identity_keys[i]);
725 options.identity_keys[i] = NULL;
726 }
727 }
5260325f 728
8ce64345 729 exit_status = compat20 ? ssh_session2() : ssh_session();
730 packet_close();
6939bbd4 731
5e96b616 732 if (options.control_path != NULL && control_fd != -1)
733 unlink(options.control_path);
734
6939bbd4 735 /*
aff51935 736 * Send SIGHUP to proxy command if used. We don't wait() in
6939bbd4 737 * case it hangs and instead rely on init to reap the child
738 */
739 if (proxy_command_pid > 1)
740 kill(proxy_command_pid, SIGHUP);
741
8ce64345 742 return exit_status;
743}
744
d73a67d7 745#define SSH_X11_PROTO "MIT-MAGIC-COOKIE-1"
746
396c147e 747static void
b48eeb07 748x11_get_proto(char **_proto, char **_data)
0b242b12 749{
d73a67d7 750 char cmd[1024];
0b242b12 751 char line[512];
d73a67d7 752 char xdisplay[512];
b48eeb07 753 static char proto[512], data[512];
0b242b12 754 FILE *f;
d73a67d7 755 int got_data = 0, generated = 0, do_unlink = 0, i;
756 char *display, *xauthdir, *xauthfile;
5d185586 757 struct stat st;
0b242b12 758
d73a67d7 759 xauthdir = xauthfile = NULL;
b48eeb07 760 *_proto = proto;
761 *_data = data;
762 proto[0] = data[0] = '\0';
d73a67d7 763
5d185586 764 if (!options.xauth_location ||
765 (stat(options.xauth_location, &st) == -1)) {
766 debug("No xauth program.");
767 } else {
768 if ((display = getenv("DISPLAY")) == NULL) {
769 debug("x11_get_proto: DISPLAY not set");
770 return;
771 }
d73a67d7 772 /*
773 * Handle FamilyLocal case where $DISPLAY does
774 * not match an authorization entry. For this we
775 * just try "xauth list unix:displaynum.screennum".
776 * XXX: "localhost" match to determine FamilyLocal
777 * is not perfect.
778 */
779 if (strncmp(display, "localhost:", 10) == 0) {
780 snprintf(xdisplay, sizeof(xdisplay), "unix:%s",
781 display + 10);
782 display = xdisplay;
783 }
784 if (options.forward_x11_trusted == 0) {
785 xauthdir = xmalloc(MAXPATHLEN);
786 xauthfile = xmalloc(MAXPATHLEN);
787 strlcpy(xauthdir, "/tmp/ssh-XXXXXXXXXX", MAXPATHLEN);
788 if (mkdtemp(xauthdir) != NULL) {
789 do_unlink = 1;
790 snprintf(xauthfile, MAXPATHLEN, "%s/xauthfile",
791 xauthdir);
792 snprintf(cmd, sizeof(cmd),
793 "%s -f %s generate %s " SSH_X11_PROTO
c876ee7e 794 " untrusted timeout 1200 2>" _PATH_DEVNULL,
d73a67d7 795 options.xauth_location, xauthfile, display);
796 debug2("x11_get_proto: %s", cmd);
797 if (system(cmd) == 0)
798 generated = 1;
799 }
800 }
801 snprintf(cmd, sizeof(cmd),
802 "%s %s%s list %s . 2>" _PATH_DEVNULL,
803 options.xauth_location,
804 generated ? "-f " : "" ,
805 generated ? xauthfile : "",
806 display);
807 debug2("x11_get_proto: %s", cmd);
808 f = popen(cmd, "r");
fa649821 809 if (f && fgets(line, sizeof(line), f) &&
b48eeb07 810 sscanf(line, "%*s %511s %511s", proto, data) == 2)
fa649821 811 got_data = 1;
812 if (f)
813 pclose(f);
814 }
d73a67d7 815
816 if (do_unlink) {
817 unlink(xauthfile);
818 rmdir(xauthdir);
819 }
820 if (xauthdir)
821 xfree(xauthdir);
822 if (xauthfile)
823 xfree(xauthfile);
824
0b242b12 825 /*
826 * If we didn't get authentication data, just make up some
827 * data. The forwarding code will check the validity of the
828 * response anyway, and substitute this data. The X11
829 * server, however, will ignore this fake data and use
830 * whatever authentication mechanisms it was using otherwise
831 * for the local connection.
832 */
833 if (!got_data) {
ca75d7de 834 u_int32_t rnd = 0;
0b242b12 835
d73a67d7 836 logit("Warning: No xauth data; "
837 "using fake authentication data for X11 forwarding.");
838 strlcpy(proto, SSH_X11_PROTO, sizeof proto);
0b242b12 839 for (i = 0; i < 16; i++) {
840 if (i % 4 == 0)
ca75d7de 841 rnd = arc4random();
d73a67d7 842 snprintf(data + 2 * i, sizeof data - 2 * i, "%02x",
ca75d7de 843 rnd & 0xff);
844 rnd >>= 8;
0b242b12 845 }
846 }
847}
848
396c147e 849static void
fa08c86b 850ssh_init_forwarding(void)
851{
02a024dd 852 int success = 0;
fa08c86b 853 int i;
02a024dd 854
fa08c86b 855 /* Initiate local TCP/IP port forwardings. */
856 for (i = 0; i < options.num_local_forwards; i++) {
3867aa0a 857 debug("Local connections to %.200s:%d forwarded to remote "
858 "address %.200s:%d",
f8cc7664 859 (options.local_forwards[i].listen_host == NULL) ?
860 (options.gateway_ports ? "*" : "LOCALHOST") :
3867aa0a 861 options.local_forwards[i].listen_host,
862 options.local_forwards[i].listen_port,
863 options.local_forwards[i].connect_host,
864 options.local_forwards[i].connect_port);
5641aefa 865 success += channel_setup_local_fwd_listener(
3867aa0a 866 options.local_forwards[i].listen_host,
867 options.local_forwards[i].listen_port,
868 options.local_forwards[i].connect_host,
869 options.local_forwards[i].connect_port,
fa08c86b 870 options.gateway_ports);
871 }
02a024dd 872 if (i > 0 && success == 0)
873 error("Could not request local forwarding.");
fa08c86b 874
875 /* Initiate remote TCP/IP port forwardings. */
876 for (i = 0; i < options.num_remote_forwards; i++) {
3867aa0a 877 debug("Remote connections from %.200s:%d forwarded to "
878 "local address %.200s:%d",
d0c7c18d 879 (options.remote_forwards[i].listen_host == NULL) ?
880 (options.gateway_ports ? "*" : "LOCALHOST") :
3867aa0a 881 options.remote_forwards[i].listen_host,
882 options.remote_forwards[i].listen_port,
883 options.remote_forwards[i].connect_host,
884 options.remote_forwards[i].connect_port);
fa08c86b 885 channel_request_remote_forwarding(
3867aa0a 886 options.remote_forwards[i].listen_host,
887 options.remote_forwards[i].listen_port,
888 options.remote_forwards[i].connect_host,
889 options.remote_forwards[i].connect_port);
fa08c86b 890 }
891}
892
396c147e 893static void
fa08c86b 894check_agent_present(void)
895{
896 if (options.forward_agent) {
897 /* Clear agent forwarding if we don\'t have an agent. */
8b10e20e 898 if (!ssh_agent_present())
fa08c86b 899 options.forward_agent = 0;
fa08c86b 900 }
901}
902
396c147e 903static int
8ce64345 904ssh_session(void)
905{
906 int type;
8ce64345 907 int interactive = 0;
908 int have_tty = 0;
909 struct winsize ws;
8ce64345 910 char *cp;
911
5260325f 912 /* Enable compression if requested. */
913 if (options.compression) {
914 debug("Requesting compression at level %d.", options.compression_level);
915
916 if (options.compression_level < 1 || options.compression_level > 9)
917 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
918
919 /* Send the request. */
920 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
921 packet_put_int(options.compression_level);
922 packet_send();
923 packet_write_wait();
54a5250f 924 type = packet_read();
5260325f 925 if (type == SSH_SMSG_SUCCESS)
926 packet_start_compression(options.compression_level);
927 else if (type == SSH_SMSG_FAILURE)
bbe88b6d 928 logit("Warning: Remote host refused compression.");
5260325f 929 else
930 packet_disconnect("Protocol error waiting for compression response.");
931 }
932 /* Allocate a pseudo tty if appropriate. */
933 if (tty_flag) {
934 debug("Requesting pty.");
935
936 /* Start the packet. */
937 packet_start(SSH_CMSG_REQUEST_PTY);
938
939 /* Store TERM in the packet. There is no limit on the
940 length of the string. */
941 cp = getenv("TERM");
942 if (!cp)
943 cp = "";
449c5ba5 944 packet_put_cstring(cp);
5260325f 945
946 /* Store window size in the packet. */
947 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
948 memset(&ws, 0, sizeof(ws));
949 packet_put_int(ws.ws_row);
950 packet_put_int(ws.ws_col);
951 packet_put_int(ws.ws_xpixel);
952 packet_put_int(ws.ws_ypixel);
953
954 /* Store tty modes in the packet. */
30dcc918 955 tty_make_modes(fileno(stdin), NULL);
5260325f 956
957 /* Send the packet, and wait for it to leave. */
958 packet_send();
959 packet_write_wait();
960
961 /* Read response from the server. */
54a5250f 962 type = packet_read();
4fe2af09 963 if (type == SSH_SMSG_SUCCESS) {
5260325f 964 interactive = 1;
8ce64345 965 have_tty = 1;
4fe2af09 966 } else if (type == SSH_SMSG_FAILURE)
bbe88b6d 967 logit("Warning: Remote host failed or refused to allocate a pseudo tty.");
5260325f 968 else
969 packet_disconnect("Protocol error waiting for pty request response.");
970 }
971 /* Request X11 forwarding if enabled and DISPLAY is set. */
972 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
b48eeb07 973 char *proto, *data;
0b242b12 974 /* Get reasonable local authentication information. */
b48eeb07 975 x11_get_proto(&proto, &data);
0b242b12 976 /* Request forwarding with authentication spoofing. */
5260325f 977 debug("Requesting X11 forwarding with authentication spoofing.");
0b242b12 978 x11_request_forwarding_with_spoofing(0, proto, data);
5260325f 979
980 /* Read response from the server. */
54a5250f 981 type = packet_read();
5260325f 982 if (type == SSH_SMSG_SUCCESS) {
5260325f 983 interactive = 1;
0b242b12 984 } else if (type == SSH_SMSG_FAILURE) {
bbe88b6d 985 logit("Warning: Remote host denied X11 forwarding.");
0b242b12 986 } else {
5260325f 987 packet_disconnect("Protocol error waiting for X11 forwarding");
0b242b12 988 }
5260325f 989 }
990 /* Tell the packet module whether this is an interactive session. */
b5c334cc 991 packet_set_interactive(interactive);
5260325f 992
993 /* Request authentication agent forwarding if appropriate. */
fa08c86b 994 check_agent_present();
995
5260325f 996 if (options.forward_agent) {
997 debug("Requesting authentication agent forwarding.");
998 auth_request_forwarding();
999
1000 /* Read response from the server. */
54a5250f 1001 type = packet_read();
95500969 1002 packet_check_eom();
5260325f 1003 if (type != SSH_SMSG_SUCCESS)
bbe88b6d 1004 logit("Warning: Remote host denied authentication agent forwarding.");
5260325f 1005 }
8efc0c15 1006
fa08c86b 1007 /* Initiate port forwardings. */
1008 ssh_init_forwarding();
5260325f 1009
aa3378df 1010 /* If requested, let ssh continue in the background. */
6ae2364d 1011 if (fork_after_authentication_flag)
aa3378df 1012 if (daemon(1, 1) < 0)
1013 fatal("daemon() failed: %.200s", strerror(errno));
1014
1015 /*
1016 * If a command was specified on the command line, execute the
1017 * command now. Otherwise request the server to start a shell.
1018 */
5260325f 1019 if (buffer_len(&command) > 0) {
1020 int len = buffer_len(&command);
1021 if (len > 900)
1022 len = 900;
6c0fa2b1 1023 debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
5260325f 1024 packet_start(SSH_CMSG_EXEC_CMD);
1025 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1026 packet_send();
1027 packet_write_wait();
1028 } else {
1029 debug("Requesting shell.");
1030 packet_start(SSH_CMSG_EXEC_SHELL);
1031 packet_send();
1032 packet_write_wait();
1033 }
1034
1035 /* Enter the interactive session. */
4bf9c10e 1036 return client_loop(have_tty, tty_flag ?
1037 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
8ce64345 1038}
5260325f 1039
396c147e 1040static void
5e96b616 1041ssh_subsystem_reply(int type, u_int32_t seq, void *ctxt)
1f3bf5aa 1042{
1043 int id, len;
1044
1045 id = packet_get_int();
1046 len = buffer_len(&command);
ce91d6f8 1047 if (len > 900)
1048 len = 900;
95500969 1049 packet_check_eom();
1f3bf5aa 1050 if (type == SSH2_MSG_CHANNEL_FAILURE)
1051 fatal("Request for subsystem '%.*s' failed on channel %d",
6c0fa2b1 1052 len, (u_char *)buffer_ptr(&command), id);
1f3bf5aa 1053}
1054
e0ae8728 1055void
5d8d32a3 1056client_global_request_reply_fwd(int type, u_int32_t seq, void *ctxt)
e0ae8728 1057{
1058 int i;
1059
1060 i = client_global_request_id++;
5d8d32a3 1061 if (i >= options.num_remote_forwards)
e0ae8728 1062 return;
e0ae8728 1063 debug("remote forward %s for: listen %d, connect %s:%d",
1064 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
3867aa0a 1065 options.remote_forwards[i].listen_port,
1066 options.remote_forwards[i].connect_host,
1067 options.remote_forwards[i].connect_port);
e0ae8728 1068 if (type == SSH2_MSG_REQUEST_FAILURE)
3867aa0a 1069 logit("Warning: remote port forwarding failed for listen "
1070 "port %d", options.remote_forwards[i].listen_port);
e0ae8728 1071}
1072
396c147e 1073static void
5e96b616 1074ssh_control_listener(void)
8ce64345 1075{
5e96b616 1076 struct sockaddr_un addr;
1077 mode_t old_umask;
4b5df124 1078 int addr_len;
1079
0d34d6ce 1080 if (options.control_path == NULL || options.control_master <= 0)
5e96b616 1081 return;
b5c334cc 1082
5e96b616 1083 memset(&addr, '\0', sizeof(addr));
1084 addr.sun_family = AF_UNIX;
4b5df124 1085 addr_len = offsetof(struct sockaddr_un, sun_path) +
5e96b616 1086 strlen(options.control_path) + 1;
8ce64345 1087
5e96b616 1088 if (strlcpy(addr.sun_path, options.control_path,
1089 sizeof(addr.sun_path)) >= sizeof(addr.sun_path))
1090 fatal("ControlPath too long");
8ce64345 1091
5e96b616 1092 if ((control_fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
1093 fatal("%s socket(): %s\n", __func__, strerror(errno));
1094
1095 old_umask = umask(0177);
4b5df124 1096 if (bind(control_fd, (struct sockaddr*)&addr, addr_len) == -1) {
5e96b616 1097 control_fd = -1;
05ada1a6 1098 if (errno == EINVAL || errno == EADDRINUSE)
5e96b616 1099 fatal("ControlSocket %s already exists",
1100 options.control_path);
1101 else
1102 fatal("%s bind(): %s\n", __func__, strerror(errno));
8ce64345 1103 }
5e96b616 1104 umask(old_umask);
1105
1106 if (listen(control_fd, 64) == -1)
1107 fatal("%s listen(): %s\n", __func__, strerror(errno));
1108
1109 set_nonblock(control_fd);
1110}
1111
1112/* request pty/x11/agent/tcpfwd/shell for channel */
1113static void
1114ssh_session2_setup(int id, void *arg)
1115{
1786be35 1116 extern char **environ;
1117
5e96b616 1118 int interactive = tty_flag;
1119 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
b48eeb07 1120 char *proto, *data;
0b242b12 1121 /* Get reasonable local authentication information. */
b48eeb07 1122 x11_get_proto(&proto, &data);
0b242b12 1123 /* Request forwarding with authentication spoofing. */
1124 debug("Requesting X11 forwarding with authentication spoofing.");
1125 x11_request_forwarding_with_spoofing(id, proto, data);
b5c334cc 1126 interactive = 1;
0b242b12 1127 /* XXX wait for reply */
1128 }
1129
fa08c86b 1130 check_agent_present();
1131 if (options.forward_agent) {
1132 debug("Requesting authentication agent forwarding.");
1133 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1134 packet_send();
1135 }
1136
5e96b616 1137 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
1786be35 1138 NULL, fileno(stdin), &command, environ, &ssh_subsystem_reply);
1f3bf5aa 1139
b5c334cc 1140 packet_set_interactive(interactive);
8ce64345 1141}
1142
bcdb96c2 1143/* open new channel for a session */
396c147e 1144static int
bcdb96c2 1145ssh_session2_open(void)
8ce64345 1146{
719fc62f 1147 Channel *c;
1148 int window, packetmax, in, out, err;
2e73a022 1149
14a9a859 1150 if (stdin_null_flag) {
5ca51e19 1151 in = open(_PATH_DEVNULL, O_RDONLY);
14a9a859 1152 } else {
1153 in = dup(STDIN_FILENO);
1154 }
2e73a022 1155 out = dup(STDOUT_FILENO);
1156 err = dup(STDERR_FILENO);
8ce64345 1157
1158 if (in < 0 || out < 0 || err < 0)
14a9a859 1159 fatal("dup() in/out/err failed");
8ce64345 1160
a22aff1f 1161 /* enable nonblocking unless tty */
1162 if (!isatty(in))
1163 set_nonblock(in);
1164 if (!isatty(out))
1165 set_nonblock(out);
1166 if (!isatty(err))
1167 set_nonblock(err);
1168
bcbf86ec 1169 window = CHAN_SES_WINDOW_DEFAULT;
1170 packetmax = CHAN_SES_PACKET_DEFAULT;
ea9700ba 1171 if (tty_flag) {
1172 window >>= 1;
1173 packetmax >>= 1;
8ce64345 1174 }
719fc62f 1175 c = channel_new(
8ce64345 1176 "session", SSH_CHANNEL_OPENING, in, out, err,
bcbf86ec 1177 window, packetmax, CHAN_EXTENDED_WRITE,
0d942eff 1178 "client-session", /*nonblock*/0);
8ce64345 1179
bcdb96c2 1180 debug3("ssh_session2_open: channel_new: %d", c->self);
eb0dd41f 1181
36e1f6a1 1182 channel_send_open(c->self);
bcdb96c2 1183 if (!no_shell_flag)
5e96b616 1184 channel_register_confirm(c->self, ssh_session2_setup, NULL);
5260325f 1185
719fc62f 1186 return c->self;
eb0dd41f 1187}
1188
396c147e 1189static int
eb0dd41f 1190ssh_session2(void)
1191{
bcdb96c2 1192 int id = -1;
eb0dd41f 1193
1194 /* XXX should be pre-session */
1195 ssh_init_forwarding();
5e96b616 1196 ssh_control_listener();
eb0dd41f 1197
bcdb96c2 1198 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1199 id = ssh_session2_open();
eb0dd41f 1200
1201 /* If requested, let ssh continue in the background. */
1202 if (fork_after_authentication_flag)
1203 if (daemon(1, 1) < 0)
1204 fatal("daemon() failed: %.200s", strerror(errno));
1205
4bf9c10e 1206 return client_loop(tty_flag, tty_flag ?
1207 options.escape_char : SSH_ESCAPECHAR_NONE, id);
8efc0c15 1208}
fa08c86b 1209
396c147e 1210static void
fee56204 1211load_public_identity_files(void)
1212{
1213 char *filename;
2e23cde0 1214 int i = 0;
0659cace 1215 Key *public;
383546c4 1216#ifdef SMARTCARD
0659cace 1217 Key **keys;
1218
9ff6f66f 1219 if (options.smartcard_device != NULL &&
0659cace 1220 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
1221 (keys = sc_get_keys(options.smartcard_device, NULL)) != NULL ) {
1222 int count = 0;
1223 for (i = 0; keys[i] != NULL; i++) {
1224 count++;
0659cace 1225 memmove(&options.identity_files[1], &options.identity_files[0],
1226 sizeof(char *) * (SSH_MAX_IDENTITY_FILES - 1));
1227 memmove(&options.identity_keys[1], &options.identity_keys[0],
1228 sizeof(Key *) * (SSH_MAX_IDENTITY_FILES - 1));
1229 options.num_identity_files++;
1230 options.identity_keys[0] = keys[i];
244e796f 1231 options.identity_files[0] = sc_get_key_label(keys[i]);
0659cace 1232 }
1c2deed1 1233 if (options.num_identity_files > SSH_MAX_IDENTITY_FILES)
1234 options.num_identity_files = SSH_MAX_IDENTITY_FILES;
0659cace 1235 i = count;
1236 xfree(keys);
383546c4 1237 }
3e984472 1238#endif /* SMARTCARD */
2e23cde0 1239 for (; i < options.num_identity_files; i++) {
1240 filename = tilde_expand_filename(options.identity_files[i],
1241 original_real_uid);
1242 public = key_load_public(filename, NULL);
1243 debug("identity file %s type %d", filename,
1244 public ? public->type : -1);
1245 xfree(options.identity_files[i]);
1246 options.identity_files[i] = filename;
1247 options.identity_keys[i] = public;
1248 }
fee56204 1249}
5e96b616 1250
1251static void
1252control_client_sighandler(int signo)
1253{
1254 control_client_terminate = signo;
1255}
1256
1257static void
1258control_client_sigrelay(int signo)
1259{
1260 if (control_server_pid > 1)
1261 kill(control_server_pid, signo);
1262}
1263
67a08279 1264static int
1265env_permitted(char *env)
1266{
1267 int i;
1268 char name[1024], *cp;
1269
1270 strlcpy(name, env, sizeof(name));
1271 if ((cp = strchr(name, '=')) == NULL)
1272 return (0);
1273
1274 *cp = '\0';
1275
1276 for (i = 0; i < options.num_send_env; i++)
1277 if (match_pattern(name, options.send_env[i]))
1278 return (1);
1279
1280 return (0);
1281}
1282
5e96b616 1283static void
1284control_client(const char *path)
1285{
1286 struct sockaddr_un addr;
a7e124fe 1287 int i, r, fd, sock, exitval, num_env, addr_len;
5e96b616 1288 Buffer m;
f8c6db83 1289 char *term;
1786be35 1290 extern char **environ;
f8c6db83 1291 u_int flags;
f2107e97 1292
a7e124fe 1293 if (stdin_null_flag) {
1294 if ((fd = open(_PATH_DEVNULL, O_RDONLY)) == -1)
1295 fatal("open(/dev/null): %s", strerror(errno));
1296 if (dup2(fd, STDIN_FILENO) == -1)
1297 fatal("dup2: %s", strerror(errno));
1298 if (fd > STDERR_FILENO)
1299 close(fd);
1300 }
1301
5e96b616 1302 memset(&addr, '\0', sizeof(addr));
1303 addr.sun_family = AF_UNIX;
4b5df124 1304 addr_len = offsetof(struct sockaddr_un, sun_path) +
5e96b616 1305 strlen(path) + 1;
1306
1307 if (strlcpy(addr.sun_path, path,
1308 sizeof(addr.sun_path)) >= sizeof(addr.sun_path))
1309 fatal("ControlPath too long");
1310
1311 if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
1312 fatal("%s socket(): %s", __func__, strerror(errno));
1313
4b5df124 1314 if (connect(sock, (struct sockaddr*)&addr, addr_len) == -1)
5e96b616 1315 fatal("Couldn't connect to %s: %s", path, strerror(errno));
1316
f8c6db83 1317 if ((term = getenv("TERM")) == NULL)
1318 term = "";
1319
1320 flags = 0;
1321 if (tty_flag)
1322 flags |= SSHMUX_FLAG_TTY;
1323 if (subsystem_flag)
1324 flags |= SSHMUX_FLAG_SUBSYS;
5e96b616 1325
5e96b616 1326 buffer_init(&m);
1327
f8c6db83 1328 /* Send our command to server */
1329 buffer_put_int(&m, mux_command);
1330 buffer_put_int(&m, flags);
1331 if (ssh_msg_send(sock, /* version */1, &m) == -1)
1332 fatal("%s: msg_send", __func__);
1333 buffer_clear(&m);
1334
1335 /* Get authorisation status and PID of controlee */
5e96b616 1336 if (ssh_msg_recv(sock, &m) == -1)
1337 fatal("%s: msg_recv", __func__);
f8c6db83 1338 if (buffer_get_char(&m) != 1)
5e96b616 1339 fatal("%s: wrong version", __func__);
0d34d6ce 1340 if (buffer_get_int(&m) != 1)
1341 fatal("Connection to master denied");
5e96b616 1342 control_server_pid = buffer_get_int(&m);
1343
5e96b616 1344 buffer_clear(&m);
5e96b616 1345
f8c6db83 1346 switch (mux_command) {
1347 case SSHMUX_COMMAND_ALIVE_CHECK:
f8cc7664 1348 fprintf(stderr, "Master running (pid=%d)\r\n",
f8c6db83 1349 control_server_pid);
1350 exit(0);
1351 case SSHMUX_COMMAND_TERMINATE:
1352 fprintf(stderr, "Exit request sent.\r\n");
1353 exit(0);
1354 case SSHMUX_COMMAND_OPEN:
1355 /* continue below */
1356 break;
1357 default:
1358 fatal("silly mux_command %d", mux_command);
1359 }
1360
1361 /* SSHMUX_COMMAND_OPEN */
1362 buffer_put_cstring(&m, term);
5e96b616 1363 buffer_append(&command, "\0", 1);
1364 buffer_put_cstring(&m, buffer_ptr(&command));
1365
67a08279 1366 if (options.num_send_env == 0 || environ == NULL) {
1367 buffer_put_int(&m, 0);
f2107e97 1368 } else {
67a08279 1369 /* Pass environment */
1370 num_env = 0;
1371 for (i = 0; environ[i] != NULL; i++)
1372 if (env_permitted(environ[i]))
1373 num_env++; /* Count */
f2107e97 1374
67a08279 1375 buffer_put_int(&m, num_env);
1376
77c50919 1377 for (i = 0; environ[i] != NULL && num_env >= 0; i++)
1378 if (env_permitted(environ[i])) {
1379 num_env--;
67a08279 1380 buffer_put_cstring(&m, environ[i]);
77c50919 1381 }
67a08279 1382 }
1786be35 1383
f8c6db83 1384 if (ssh_msg_send(sock, /* version */1, &m) == -1)
5e96b616 1385 fatal("%s: msg_send", __func__);
1386
1387 mm_send_fd(sock, STDIN_FILENO);
1388 mm_send_fd(sock, STDOUT_FILENO);
1389 mm_send_fd(sock, STDERR_FILENO);
1390
1391 /* Wait for reply, so master has a chance to gather ttymodes */
1392 buffer_clear(&m);
1393 if (ssh_msg_recv(sock, &m) == -1)
1394 fatal("%s: msg_recv", __func__);
f8c6db83 1395 if (buffer_get_char(&m) != 1)
1396 fatal("%s: wrong version", __func__);
5e96b616 1397 buffer_free(&m);
1398
d3e5d1e9 1399 signal(SIGHUP, control_client_sighandler);
78d2b454 1400 signal(SIGINT, control_client_sighandler);
1401 signal(SIGTERM, control_client_sighandler);
1402 signal(SIGWINCH, control_client_sigrelay);
1403
5e96b616 1404 if (tty_flag)
1405 enter_raw_mode();
1406
1407 /* Stick around until the controlee closes the client_fd */
1408 exitval = 0;
1409 for (;!control_client_terminate;) {
1410 r = read(sock, &exitval, sizeof(exitval));
1411 if (r == 0) {
1412 debug2("Received EOF from master");
1413 break;
1414 }
1415 if (r > 0)
1416 debug2("Received exit status from master %d", exitval);
1417 if (r == -1 && errno != EINTR)
1418 fatal("%s: read %s", __func__, strerror(errno));
1419 }
1420
1421 if (control_client_terminate)
1422 debug2("Exiting on signal %d", control_client_terminate);
1423
1424 close(sock);
1425
1426 leave_raw_mode();
1427
1428 if (tty_flag && options.log_level != SYSLOG_LEVEL_QUIET)
1429 fprintf(stderr, "Connection to master closed.\r\n");
1430
1431 exit(exitval);
1432}
This page took 0.70302 seconds and 5 git commands to generate.