]> andersk Git - openssh.git/blame - ssh.c
- andreas@cvs.openbsd.org 2009/10/24 11:22:37
[openssh.git] / ssh.c
CommitLineData
0f63ab10 1/* $OpenBSD: ssh.c,v 1.326 2009/07/02 02:11:47 dtucker Exp $ */
8efc0c15 2/*
5260325f 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
5260325f 6 * Ssh client program. This program can be used to log into a remote machine.
7 * The software supports strong authentication, encryption, and forwarding
8 * of X11, TCP/IP, and authentication connections.
9 *
bcbf86ec 10 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
15 *
16 * Copyright (c) 1999 Niels Provos. All rights reserved.
d73a67d7 17 * Copyright (c) 2000, 2001, 2002, 2003 Markus Friedl. All rights reserved.
bcbf86ec 18 *
19 * Modified to work with SSL by Niels Provos <provos@citi.umich.edu>
20 * in Canada (German citizen).
21 *
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 * 1. Redistributions of source code must retain the above copyright
26 * notice, this list of conditions and the following disclaimer.
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
29 * documentation and/or other materials provided with the distribution.
30 *
31 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
32 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
33 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
34 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
35 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
36 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
37 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
38 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
39 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
40 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5260325f 41 */
8efc0c15 42
43#include "includes.h"
876faccd 44
4095f623 45#include <sys/types.h>
46#ifdef HAVE_SYS_STAT_H
47# include <sys/stat.h>
48#endif
876faccd 49#include <sys/resource.h>
bd7c69ea 50#include <sys/ioctl.h>
0f63ab10 51#include <sys/param.h>
5b04a8bf 52#include <sys/socket.h>
a75f5360 53
b6438382 54#include <ctype.h>
dd984467 55#include <errno.h>
d3221cca 56#include <fcntl.h>
28cb0a43 57#include <netdb.h>
b5b88c19 58#ifdef HAVE_PATHS_H
a75f5360 59#include <paths.h>
b5b88c19 60#endif
b1842393 61#include <pwd.h>
ada68823 62#include <signal.h>
24436b92 63#include <stdarg.h>
bcaab305 64#include <stddef.h>
cf851879 65#include <stdio.h>
ffa517a8 66#include <stdlib.h>
00146caa 67#include <string.h>
5188ba17 68#include <unistd.h>
8efc0c15 69
5e837c7b 70#include <netinet/in.h>
71#include <arpa/inet.h>
72
a306f2dd 73#include <openssl/evp.h>
fa08c86b 74#include <openssl/err.h>
f5f25d17 75#include "openbsd-compat/openssl-compat.h"
3593bdc0 76#include "openbsd-compat/sys-queue.h"
a306f2dd 77
31652869 78#include "xmalloc.h"
8efc0c15 79#include "ssh.h"
42f11eb2 80#include "ssh1.h"
81#include "ssh2.h"
82#include "compat.h"
83#include "cipher.h"
8efc0c15 84#include "packet.h"
85#include "buffer.h"
a5efa1bb 86#include "channels.h"
a306f2dd 87#include "key.h"
4c8722d9 88#include "authfd.h"
a306f2dd 89#include "authfile.h"
42f11eb2 90#include "pathnames.h"
5e96b616 91#include "dispatch.h"
b5c334cc 92#include "clientloop.h"
42f11eb2 93#include "log.h"
94#include "readconf.h"
95#include "sshconnect.h"
42f11eb2 96#include "misc.h"
b2552997 97#include "kex.h"
98#include "mac.h"
07d80252 99#include "sshpty.h"
61a2c1da 100#include "match.h"
5e96b616 101#include "msg.h"
6213295d 102#include "uidswap.h"
28015df4 103#include "version.h"
8efc0c15 104
383546c4 105#ifdef SMARTCARD
383546c4 106#include "scard.h"
dd2495cb 107#endif
383546c4 108
f601d847 109extern char *__progname;
f601d847 110
e8097dc9 111/* Flag indicating whether debug mode is on. May be set on the command line. */
8efc0c15 112int debug_flag = 0;
113
a8be9f80 114/* Flag indicating whether a tty should be allocated */
8efc0c15 115int tty_flag = 0;
8abcdba4 116int no_tty_flag = 0;
117int force_tty_flag = 0;
8efc0c15 118
8ce64345 119/* don't exec a shell */
120int no_shell_flag = 0;
8ce64345 121
aa3378df 122/*
123 * Flag indicating that nothing should be read from stdin. This can be set
124 * on the command line.
125 */
8efc0c15 126int stdin_null_flag = 0;
127
aa3378df 128/*
129 * Flag indicating that ssh should fork after authentication. This is useful
c242fc96 130 * so that the passphrase can be entered manually, and then ssh goes to the
aa3378df 131 * background.
132 */
8efc0c15 133int fork_after_authentication_flag = 0;
134
aa3378df 135/*
136 * General data structure for command line options and options configurable
137 * in configuration files. See readconf.h.
138 */
8efc0c15 139Options options;
140
e591b98a 141/* optional user configfile */
142char *config = NULL;
143
aa3378df 144/*
145 * Name of the host we are connecting to. This is the name given on the
146 * command line, or the HostName specified for the user-supplied name in a
147 * configuration file.
148 */
8efc0c15 149char *host;
150
151/* socket address the host resolves to */
48e671d5 152struct sockaddr_storage hostaddr;
8efc0c15 153
8002af61 154/* Private host keys. */
39c00dc2 155Sensitive sensitive_data;
8efc0c15 156
157/* Original real UID. */
158uid_t original_real_uid;
3fb156df 159uid_t original_effective_uid;
8efc0c15 160
8ce64345 161/* command to be executed */
162Buffer command;
163
ae810de7 164/* Should we execute a command or invoke a subsystem? */
165int subsystem_flag = 0;
166
e0ae8728 167/* # of replies received for global requests */
72becb62 168static int remote_forward_confirms_received = 0;
e0ae8728 169
6939bbd4 170/* pid of proxycommand child process */
171pid_t proxy_command_pid = 0;
172
3bcced4c 173/* mux.c */
174extern int muxserver_sock;
175extern u_int muxclient_command;
5e96b616 176
8efc0c15 177/* Prints a help message to the user. This function never returns. */
178
396c147e 179static void
5ca51e19 180usage(void)
8efc0c15 181{
182ccbba 182 fprintf(stderr,
f3a4d0d0 183"usage: ssh [-1246AaCfgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]\n"
80e29ee6 184" [-D [bind_address:]port] [-e escape_char] [-F configfile]\n"
8cf98c65 185" [-i identity_file] [-L [bind_address:]port:host:hostport]\n"
3867aa0a 186" [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
8cf98c65 187" [-R [bind_address:]port:host:hostport] [-S ctl_path]\n"
06fa4ac1 188" [-w local_tun[:remote_tun]] [user@]hostname [command]\n"
182ccbba 189 );
3aa43b24 190 exit(255);
8efc0c15 191}
192
396c147e 193static int ssh_session(void);
194static int ssh_session2(void);
195static void load_public_identity_files(void);
3bcced4c 196
197/* from muxclient.c */
198void muxclient(const char *);
199void muxserver_listen(void);
8ce64345 200
5260325f 201/*
202 * Main program for the ssh client.
203 */
8efc0c15 204int
205main(int ac, char **av)
206{
0f63ab10 207 int i, r, opt, exit_status, use_syslog;
208 char *p, *cp, *line, *argv0, buf[MAXPATHLEN];
5260325f 209 struct stat st;
3b1a83df 210 struct passwd *pw;
71300a43 211 int dummy, timeout_ms;
57dade33 212 extern int optind, optreset;
1812a662 213 extern char *optarg;
c1cbe68a 214 struct servent *sp;
3867aa0a 215 Forward fwd;
5260325f 216
fd6168c1 217 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
218 sanitise_stdfd();
219
fda04d7d 220 __progname = ssh_get_progname(av[0]);
264dce47 221 init_rng();
222
aa3378df 223 /*
224 * Save the original real uid. It will be needed later (uid-swapping
225 * may clobber the real uid).
226 */
5260325f 227 original_real_uid = getuid();
228 original_effective_uid = geteuid();
aff51935 229
9f324470 230 /*
231 * Use uid-swapping to give up root privileges for the duration of
232 * option processing. We will re-instantiate the rights when we are
233 * ready to create the privileged port, and will permanently drop
234 * them when the port has been created (actually, when the connection
235 * has been made, as we may need to create the port several times).
236 */
237 PRIV_END;
5260325f 238
7322ef0e 239#ifdef HAVE_SETRLIMIT
5260325f 240 /* If we are installed setuid root be careful to not drop core. */
241 if (original_real_uid != original_effective_uid) {
242 struct rlimit rlim;
243 rlim.rlim_cur = rlim.rlim_max = 0;
244 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
245 fatal("setrlimit failed: %.100s", strerror(errno));
8efc0c15 246 }
3c62e7eb 247#endif
63bd8c36 248 /* Get user data. */
249 pw = getpwuid(original_real_uid);
250 if (!pw) {
bbe88b6d 251 logit("You don't exist, go away!");
3aa43b24 252 exit(255);
63bd8c36 253 }
254 /* Take a copy of the returned structure. */
255 pw = pwcopy(pw);
256
aa3378df 257 /*
258 * Set our umask to something reasonable, as some files are created
259 * with the default umask. This will make them world-readable but
260 * writable only by the owner, which is ok for all files for which we
261 * don't set the modes explicitly.
262 */
5260325f 263 umask(022);
264
e8097dc9 265 /*
266 * Initialize option structure to indicate that no values have been
267 * set.
268 */
5260325f 269 initialize_options(&options);
270
271 /* Parse command-line arguments. */
272 host = NULL;
bf793210 273 use_syslog = 0;
f0956980 274 argv0 = av[0];
5260325f 275
16a5525d 276 again:
e8097dc9 277 while ((opt = getopt(ac, av, "1246ab:c:e:fgi:kl:m:no:p:qstvx"
bf793210 278 "ACD:F:I:KL:MNO:PR:S:TVw:XYy")) != -1) {
5260325f 279 switch (opt) {
1f3bf5aa 280 case '1':
281 options.protocol = SSH_PROTO_1;
282 break;
6ae2364d 283 case '2':
284 options.protocol = SSH_PROTO_2;
285 break;
48e671d5 286 case '4':
1572b90f 287 options.address_family = AF_INET;
48e671d5 288 break;
48e671d5 289 case '6':
1572b90f 290 options.address_family = AF_INET6;
48e671d5 291 break;
5260325f 292 case 'n':
293 stdin_null_flag = 1;
294 break;
5260325f 295 case 'f':
296 fork_after_authentication_flag = 1;
297 stdin_null_flag = 1;
298 break;
5260325f 299 case 'x':
300 options.forward_x11 = 0;
301 break;
5260325f 302 case 'X':
303 options.forward_x11 = 1;
304 break;
bf793210 305 case 'y':
306 use_syslog = 1;
307 break;
d73a67d7 308 case 'Y':
309 options.forward_x11 = 1;
310 options.forward_x11_trusted = 1;
311 break;
5260325f 312 case 'g':
313 options.gateway_ports = 1;
314 break;
f8c6db83 315 case 'O':
316 if (strcmp(optarg, "check") == 0)
3bcced4c 317 muxclient_command = SSHMUX_COMMAND_ALIVE_CHECK;
f8c6db83 318 else if (strcmp(optarg, "exit") == 0)
3bcced4c 319 muxclient_command = SSHMUX_COMMAND_TERMINATE;
f8c6db83 320 else
321 fatal("Invalid multiplex command.");
322 break;
e59404d1 323 case 'P': /* deprecated */
5260325f 324 options.use_privileged_port = 0;
325 break;
5260325f 326 case 'a':
327 options.forward_agent = 0;
328 break;
71276795 329 case 'A':
330 options.forward_agent = 1;
331 break;
5260325f 332 case 'k':
f7926e97 333 options.gss_deleg_creds = 0;
5260325f 334 break;
b2f4d5cc 335 case 'K':
336 options.gss_authentication = 1;
337 options.gss_deleg_creds = 1;
338 break;
5260325f 339 case 'i':
340 if (stat(optarg, &st) < 0) {
f5a1a01a 341 fprintf(stderr, "Warning: Identity file %s "
ec304d66 342 "not accessible: %s.\n", optarg,
343 strerror(errno));
5260325f 344 break;
345 }
f5a1a01a 346 if (options.num_identity_files >=
347 SSH_MAX_IDENTITY_FILES)
348 fatal("Too many identity files specified "
349 "(max %d)", SSH_MAX_IDENTITY_FILES);
350 options.identity_files[options.num_identity_files++] =
351 xstrdup(optarg);
5260325f 352 break;
383546c4 353 case 'I':
354#ifdef SMARTCARD
9ff6f66f 355 options.smartcard_device = xstrdup(optarg);
dd2495cb 356#else
383546c4 357 fprintf(stderr, "no support for smartcards.\n");
dd2495cb 358#endif
383546c4 359 break;
5260325f 360 case 't':
8abcdba4 361 if (tty_flag)
362 force_tty_flag = 1;
5260325f 363 tty_flag = 1;
364 break;
5260325f 365 case 'v':
e053cd2c 366 if (debug_flag == 0) {
bcbf86ec 367 debug_flag = 1;
368 options.log_level = SYSLOG_LEVEL_DEBUG1;
e053cd2c 369 } else {
370 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
371 options.log_level++;
bcbf86ec 372 break;
e053cd2c 373 }
59d4718a 374 /* FALLTHROUGH */
5260325f 375 case 'V':
85ac7a84 376 fprintf(stderr, "%s, %s\n",
4526e8c2 377 SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
5260325f 378 if (opt == 'V')
379 exit(0);
5260325f 380 break;
d20f3c9e 381 case 'w':
a4f24bf8 382 if (options.tun_open == -1)
383 options.tun_open = SSH_TUNMODE_DEFAULT;
d20f3c9e 384 options.tun_local = a2tun(optarg, &options.tun_remote);
a4f24bf8 385 if (options.tun_local == SSH_TUNID_ERR) {
e8097dc9 386 fprintf(stderr,
387 "Bad tun device '%s'\n", optarg);
3aa43b24 388 exit(255);
d20f3c9e 389 }
390 break;
5260325f 391 case 'q':
392 options.log_level = SYSLOG_LEVEL_QUIET;
393 break;
5260325f 394 case 'e':
395 if (optarg[0] == '^' && optarg[2] == 0 &&
f5a1a01a 396 (u_char) optarg[1] >= 64 &&
397 (u_char) optarg[1] < 128)
1e3b8b07 398 options.escape_char = (u_char) optarg[1] & 31;
5260325f 399 else if (strlen(optarg) == 1)
1e3b8b07 400 options.escape_char = (u_char) optarg[0];
5260325f 401 else if (strcmp(optarg, "none") == 0)
4bf9c10e 402 options.escape_char = SSH_ESCAPECHAR_NONE;
5260325f 403 else {
f5a1a01a 404 fprintf(stderr, "Bad escape character '%s'.\n",
405 optarg);
3aa43b24 406 exit(255);
5260325f 407 }
408 break;
5260325f 409 case 'c':
a306f2dd 410 if (ciphers_valid(optarg)) {
411 /* SSH2 only */
412 options.ciphers = xstrdup(optarg);
d77347cc 413 options.cipher = SSH_CIPHER_INVALID;
a306f2dd 414 } else {
415 /* SSH1 only */
c523303b 416 options.cipher = cipher_number(optarg);
417 if (options.cipher == -1) {
f5a1a01a 418 fprintf(stderr,
419 "Unknown cipher type '%s'\n",
420 optarg);
3aa43b24 421 exit(255);
a306f2dd 422 }
f5a1a01a 423 if (options.cipher == SSH_CIPHER_3DES)
c523303b 424 options.ciphers = "3des-cbc";
f5a1a01a 425 else if (options.cipher == SSH_CIPHER_BLOWFISH)
c523303b 426 options.ciphers = "blowfish-cbc";
f5a1a01a 427 else
c523303b 428 options.ciphers = (char *)-1;
5260325f 429 }
430 break;
b2552997 431 case 'm':
432 if (mac_valid(optarg))
433 options.macs = xstrdup(optarg);
434 else {
f5a1a01a 435 fprintf(stderr, "Unknown mac type '%s'\n",
436 optarg);
3aa43b24 437 exit(255);
b2552997 438 }
439 break;
5e96b616 440 case 'M':
9dfd96d6 441 if (options.control_master == SSHCTL_MASTER_YES)
442 options.control_master = SSHCTL_MASTER_ASK;
443 else
444 options.control_master = SSHCTL_MASTER_YES;
5e96b616 445 break;
5260325f 446 case 'p':
2d2a2c65 447 options.port = a2port(optarg);
5134115d 448 if (options.port <= 0) {
6031af8d 449 fprintf(stderr, "Bad port '%s'\n", optarg);
3aa43b24 450 exit(255);
6031af8d 451 }
5260325f 452 break;
5260325f 453 case 'l':
454 options.user = optarg;
455 break;
d2e3df16 456
457 case 'L':
17525a70 458 if (parse_forward(&fwd, optarg, 0, 0))
3867aa0a 459 add_local_forward(&options, &fwd);
460 else {
f5a1a01a 461 fprintf(stderr,
3867aa0a 462 "Bad local forwarding specification '%s'\n",
f5a1a01a 463 optarg);
3aa43b24 464 exit(255);
5260325f 465 }
3867aa0a 466 break;
467
468 case 'R':
17525a70 469 if (parse_forward(&fwd, optarg, 0, 1)) {
3867aa0a 470 add_remote_forward(&options, &fwd);
471 } else {
f5a1a01a 472 fprintf(stderr,
3867aa0a 473 "Bad remote forwarding specification "
474 "'%s'\n", optarg);
3aa43b24 475 exit(255);
5260325f 476 }
5260325f 477 break;
0490e609 478
479 case 'D':
17525a70 480 if (parse_forward(&fwd, optarg, 1, 0)) {
30573fea 481 add_local_forward(&options, &fwd);
3867aa0a 482 } else {
30573fea 483 fprintf(stderr,
484 "Bad dynamic forwarding specification "
485 "'%s'\n", optarg);
3aa43b24 486 exit(255);
6031af8d 487 }
0490e609 488 break;
489
5260325f 490 case 'C':
491 options.compression = 1;
492 break;
8ce64345 493 case 'N':
494 no_shell_flag = 1;
495 no_tty_flag = 1;
496 break;
8ce64345 497 case 'T':
498 no_tty_flag = 1;
499 break;
5260325f 500 case 'o':
501 dummy = 1;
1aafd17a 502 line = xstrdup(optarg);
f5a1a01a 503 if (process_config_line(&options, host ? host : "",
1aafd17a 504 line, "command-line", 0, &dummy) != 0)
3aa43b24 505 exit(255);
1aafd17a 506 xfree(line);
5260325f 507 break;
ae810de7 508 case 's':
509 subsystem_flag = 1;
510 break;
5e96b616 511 case 'S':
512 if (options.control_path != NULL)
513 free(options.control_path);
514 options.control_path = xstrdup(optarg);
5e96b616 515 break;
3435f5a6 516 case 'b':
517 options.bind_address = optarg;
518 break;
e591b98a 519 case 'F':
520 config = optarg;
521 break;
5260325f 522 default:
523 usage();
524 }
525 }
526
f5a1a01a 527 ac -= optind;
528 av += optind;
529
530 if (ac > 0 && !host && **av != '-') {
15748b4d 531 if (strrchr(*av, '@')) {
f5a1a01a 532 p = xstrdup(*av);
15748b4d 533 cp = strrchr(p, '@');
f5a1a01a 534 if (cp == NULL || cp == p)
535 usage();
536 options.user = p;
537 *cp = '\0';
538 host = ++cp;
539 } else
540 host = *av;
978ebf99 541 if (ac > 1) {
542 optind = optreset = 1;
f5a1a01a 543 goto again;
544 }
978ebf99 545 ac--, av++;
f5a1a01a 546 }
547
5260325f 548 /* Check that we got a host name. */
549 if (!host)
8efc0c15 550 usage();
5260325f 551
22d89d24 552 SSLeay_add_all_algorithms();
fa08c86b 553 ERR_load_crypto_strings();
22d89d24 554
5260325f 555 /* Initialize the command to execute on remote host. */
556 buffer_init(&command);
557
aa3378df 558 /*
559 * Save the command to execute on the remote host in a buffer. There
560 * is no limit on the length of the command, except by the maximum
561 * packet size. Also sets the tty flag if there is no command.
562 */
f5a1a01a 563 if (!ac) {
5260325f 564 /* No command specified - execute shell on a tty. */
565 tty_flag = 1;
ae810de7 566 if (subsystem_flag) {
f5a1a01a 567 fprintf(stderr,
568 "You must specify a subsystem to invoke.\n");
ae810de7 569 usage();
570 }
5260325f 571 } else {
f5a1a01a 572 /* A command has been specified. Store it into the buffer. */
573 for (i = 0; i < ac; i++) {
574 if (i)
5260325f 575 buffer_append(&command, " ", 1);
576 buffer_append(&command, av[i], strlen(av[i]));
577 }
8efc0c15 578 }
5260325f 579
580 /* Cannot fork to background if no command. */
e8097dc9 581 if (fork_after_authentication_flag && buffer_len(&command) == 0 &&
582 !no_shell_flag)
583 fatal("Cannot fork into background without a command "
584 "to execute.");
5260325f 585
586 /* Allocate a tty by default if no command specified. */
587 if (buffer_len(&command) == 0)
588 tty_flag = 1;
589
343288b8 590 /* Force no tty */
0b6fbf03 591 if (no_tty_flag)
592 tty_flag = 0;
5260325f 593 /* Do not allocate a tty if stdin is not a tty. */
7697ac2b 594 if ((!isatty(fileno(stdin)) || stdin_null_flag) && !force_tty_flag) {
5260325f 595 if (tty_flag)
e8097dc9 596 logit("Pseudo-terminal will not be allocated because "
597 "stdin is not a terminal.");
5260325f 598 tty_flag = 0;
599 }
8ce64345 600
20244695 601 /*
602 * Initialize "log" output. Since we are the client all output
603 * actually goes to stderr.
604 */
f0956980 605 log_init(argv0,
e8097dc9 606 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
bf793210 607 SYSLOG_FACILITY_USER, !use_syslog);
5260325f 608
e591b98a 609 /*
610 * Read per-user configuration file. Ignore the system wide config
611 * file if the user specifies a config file on the command line.
612 */
613 if (config != NULL) {
f7f14143 614 if (!read_config_file(config, host, &options, 0))
93111dfa 615 fatal("Can't open user config file %.100s: "
616 "%.100s", config, strerror(errno));
4f6e2ba9 617 } else {
0f63ab10 618 r = snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir,
e591b98a 619 _PATH_SSH_USER_CONFFILE);
0f63ab10 620 if (r > 0 && (size_t)r < sizeof(buf))
621 (void)read_config_file(buf, host, &options, 1);
e591b98a 622
f67792f2 623 /* Read systemwide configuration file after use config. */
f2107e97 624 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host,
9f6cab4b 625 &options, 0);
e591b98a 626 }
5260325f 627
628 /* Fill configuration defaults. */
629 fill_default_options(&options);
630
1572b90f 631 channel_set_af(options.address_family);
632
5260325f 633 /* reinit */
f0956980 634 log_init(argv0, options.log_level, SYSLOG_FACILITY_USER, !use_syslog);
5260325f 635
e339aa53 636 seed_rng();
637
5260325f 638 if (options.user == NULL)
639 options.user = xstrdup(pw->pw_name);
640
e9d0b573 641 /* Get default port if port has not been set. */
642 if (options.port == 0) {
643 sp = getservbyname(SSH_SERVICE_NAME, "tcp");
644 options.port = sp ? ntohs(sp->s_port) : SSH_DEFAULT_PORT;
645 }
646
647 if (options.local_command != NULL) {
648 char thishost[NI_MAXHOST];
649
650 if (gethostname(thishost, sizeof(thishost)) == -1)
651 fatal("gethostname: %s", strerror(errno));
652 snprintf(buf, sizeof(buf), "%d", options.port);
653 debug3("expanding LocalCommand: %s", options.local_command);
654 cp = options.local_command;
655 options.local_command = percent_expand(cp, "d", pw->pw_dir,
656 "h", options.hostname? options.hostname : host,
657 "l", thishost, "n", host, "r", options.user, "p", buf,
658 "u", pw->pw_name, (char *)NULL);
659 debug3("expanded LocalCommand: %s", options.local_command);
660 xfree(cp);
661 }
662
5260325f 663 if (options.hostname != NULL)
664 host = options.hostname;
665
03c82656 666 /* force lowercase for hostkey matching */
667 if (options.host_key_alias != NULL) {
668 for (p = options.host_key_alias; *p; p++)
669 if (isupper(*p))
9555d258 670 *p = (char)tolower(*p);
03c82656 671 }
672
f78bde70 673 if (options.proxy_command != NULL &&
d0420e01 674 strcmp(options.proxy_command, "none") == 0) {
675 xfree(options.proxy_command);
f78bde70 676 options.proxy_command = NULL;
d0420e01 677 }
699255b5 678 if (options.control_path != NULL &&
d0420e01 679 strcmp(options.control_path, "none") == 0) {
680 xfree(options.control_path);
699255b5 681 options.control_path = NULL;
d0420e01 682 }
f78bde70 683
5e96b616 684 if (options.control_path != NULL) {
8cffe22a 685 char thishost[NI_MAXHOST];
f7b8224d 686
8cffe22a 687 if (gethostname(thishost, sizeof(thishost)) == -1)
f7b8224d 688 fatal("gethostname: %s", strerror(errno));
a980cbd7 689 snprintf(buf, sizeof(buf), "%d", options.port);
690 cp = tilde_expand_filename(options.control_path,
691 original_real_uid);
d0420e01 692 xfree(options.control_path);
a980cbd7 693 options.control_path = percent_expand(cp, "p", buf, "h", host,
8cffe22a 694 "r", options.user, "l", thishost, (char *)NULL);
a980cbd7 695 xfree(cp);
5e96b616 696 }
3bcced4c 697 if (muxclient_command != 0 && options.control_path == NULL)
19186c3d 698 fatal("No ControlPath specified for \"-O\" command");
9dfd96d6 699 if (options.control_path != NULL)
3bcced4c 700 muxclient(options.control_path);
5e96b616 701
71300a43 702 timeout_ms = options.connection_timeout * 1000;
703
6ffc9c88 704 /* Open a connection to the remote host. */
1572b90f 705 if (ssh_connect(host, &hostaddr, options.port,
71300a43 706 options.address_family, options.connection_attempts, &timeout_ms,
707 options.tcp_keep_alive,
d514c907 708#ifdef HAVE_CYGWIN
709 options.use_privileged_port,
710#else
3fb156df 711 original_effective_uid == 0 && options.use_privileged_port,
d514c907 712#endif
de60473e 713 options.proxy_command) != 0)
3aa43b24 714 exit(255);
5260325f 715
71300a43 716 if (timeout_ms > 0)
717 debug3("timeout: %d ms remain after connect", timeout_ms);
718
aa3378df 719 /*
720 * If we successfully made the connection, load the host private key
721 * in case we will need it later for combined rsa-rhosts
722 * authentication. This must be done before releasing extra
723 * privileges, because the file is only readable by root.
78660ed4 724 * If we cannot access the private keys, load the public keys
725 * instead and try to execute the ssh-keysign helper instead.
aa3378df 726 */
8002af61 727 sensitive_data.nkeys = 0;
728 sensitive_data.keys = NULL;
39c00dc2 729 sensitive_data.external_keysign = 0;
b34bec32 730 if (options.rhosts_rsa_authentication ||
731 options.hostbased_authentication) {
8002af61 732 sensitive_data.nkeys = 3;
19e79961 733 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
343288b8 734 sizeof(Key));
3fb156df 735
736 PRIV_START;
8002af61 737 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
fc231518 738 _PATH_HOST_KEY_FILE, "", NULL, NULL);
8002af61 739 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
fc231518 740 _PATH_HOST_DSA_KEY_FILE, "", NULL, NULL);
8002af61 741 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
fc231518 742 _PATH_HOST_RSA_KEY_FILE, "", NULL, NULL);
3fb156df 743 PRIV_END;
39c00dc2 744
60cd0a97 745 if (options.hostbased_authentication == 1 &&
746 sensitive_data.keys[0] == NULL &&
39c00dc2 747 sensitive_data.keys[1] == NULL &&
748 sensitive_data.keys[2] == NULL) {
749 sensitive_data.keys[1] = key_load_public(
750 _PATH_HOST_DSA_KEY_FILE, NULL);
751 sensitive_data.keys[2] = key_load_public(
752 _PATH_HOST_RSA_KEY_FILE, NULL);
753 sensitive_data.external_keysign = 1;
754 }
5260325f 755 }
aa3378df 756 /*
757 * Get rid of any extra privileges that we may have. We will no
758 * longer need them. Also, extra privileges could make it very hard
759 * to read identity files and other non-world-readable files from the
760 * user's home directory if it happens to be on a NFS volume where
761 * root is mapped to nobody.
762 */
6213295d 763 if (original_effective_uid == 0) {
764 PRIV_START;
765 permanently_set_uid(pw);
766 }
5260325f 767
aa3378df 768 /*
769 * Now that we are back to our own permissions, create ~/.ssh
7b9b0103 770 * directory if it doesn't already exist.
aa3378df 771 */
0f63ab10 772 r = snprintf(buf, sizeof buf, "%s%s%s", pw->pw_dir,
e8097dc9 773 strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
0f63ab10 774 if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) < 0)
704b1659 775 if (mkdir(buf, 0700) < 0)
5260325f 776 error("Could not create directory '%.200s'.", buf);
777
fee56204 778 /* load options.identity_files */
779 load_public_identity_files();
780
781 /* Expand ~ in known host file names. */
782 /* XXX mem-leaks: */
fa08c86b 783 options.system_hostfile =
784 tilde_expand_filename(options.system_hostfile, original_real_uid);
785 options.user_hostfile =
786 tilde_expand_filename(options.user_hostfile, original_real_uid);
787 options.system_hostfile2 =
788 tilde_expand_filename(options.system_hostfile2, original_real_uid);
789 options.user_hostfile2 =
790 tilde_expand_filename(options.user_hostfile2, original_real_uid);
5260325f 791
67b75437 792 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
793
e8097dc9 794 /* Log into the remote system. Never returns if the login fails. */
71300a43 795 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr,
796 pw, timeout_ms);
8002af61 797
798 /* We no longer need the private host keys. Clear them now. */
799 if (sensitive_data.nkeys != 0) {
800 for (i = 0; i < sensitive_data.nkeys; i++) {
801 if (sensitive_data.keys[i] != NULL) {
802 /* Destroys contents safely */
803 debug3("clear hostkey %d", i);
804 key_free(sensitive_data.keys[i]);
805 sensitive_data.keys[i] = NULL;
806 }
807 }
808 xfree(sensitive_data.keys);
809 }
05b7537a 810 for (i = 0; i < options.num_identity_files; i++) {
811 if (options.identity_files[i]) {
812 xfree(options.identity_files[i]);
813 options.identity_files[i] = NULL;
814 }
815 if (options.identity_keys[i]) {
816 key_free(options.identity_keys[i]);
817 options.identity_keys[i] = NULL;
818 }
819 }
5260325f 820
8ce64345 821 exit_status = compat20 ? ssh_session2() : ssh_session();
822 packet_close();
6939bbd4 823
3bcced4c 824 if (options.control_path != NULL && muxserver_sock != -1)
5e96b616 825 unlink(options.control_path);
826
6939bbd4 827 /*
aff51935 828 * Send SIGHUP to proxy command if used. We don't wait() in
6939bbd4 829 * case it hangs and instead rely on init to reap the child
830 */
831 if (proxy_command_pid > 1)
832 kill(proxy_command_pid, SIGHUP);
833
8ce64345 834 return exit_status;
835}
836
72becb62 837/* Callback for remote forward global requests */
838static void
839ssh_confirm_remote_forward(int type, u_int32_t seq, void *ctxt)
840{
841 Forward *rfwd = (Forward *)ctxt;
842
17525a70 843 /* XXX verbose() on failure? */
72becb62 844 debug("remote forward %s for: listen %d, connect %s:%d",
845 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
846 rfwd->listen_port, rfwd->connect_host, rfwd->connect_port);
17525a70 847 if (type == SSH2_MSG_REQUEST_SUCCESS && rfwd->listen_port == 0) {
848 logit("Allocated port %u for remote forward to %s:%d",
849 packet_get_int(),
850 rfwd->connect_host, rfwd->connect_port);
851 }
852
72becb62 853 if (type == SSH2_MSG_REQUEST_FAILURE) {
854 if (options.exit_on_forward_failure)
855 fatal("Error: remote port forwarding failed for "
856 "listen port %d", rfwd->listen_port);
857 else
858 logit("Warning: remote port forwarding failed for "
859 "listen port %d", rfwd->listen_port);
860 }
6c777090 861 if (++remote_forward_confirms_received == options.num_remote_forwards) {
72becb62 862 debug("All remote forwarding requests processed");
6c777090 863 if (fork_after_authentication_flag) {
864 fork_after_authentication_flag = 0;
865 if (daemon(1, 1) < 0)
866 fatal("daemon() failed: %.200s",
867 strerror(errno));
868 }
869 }
72becb62 870}
871
396c147e 872static void
fa08c86b 873ssh_init_forwarding(void)
874{
02a024dd 875 int success = 0;
fa08c86b 876 int i;
02a024dd 877
fa08c86b 878 /* Initiate local TCP/IP port forwardings. */
879 for (i = 0; i < options.num_local_forwards; i++) {
3867aa0a 880 debug("Local connections to %.200s:%d forwarded to remote "
881 "address %.200s:%d",
f8cc7664 882 (options.local_forwards[i].listen_host == NULL) ?
883 (options.gateway_ports ? "*" : "LOCALHOST") :
3867aa0a 884 options.local_forwards[i].listen_host,
885 options.local_forwards[i].listen_port,
886 options.local_forwards[i].connect_host,
887 options.local_forwards[i].connect_port);
5641aefa 888 success += channel_setup_local_fwd_listener(
3867aa0a 889 options.local_forwards[i].listen_host,
890 options.local_forwards[i].listen_port,
891 options.local_forwards[i].connect_host,
892 options.local_forwards[i].connect_port,
fa08c86b 893 options.gateway_ports);
894 }
42ea6f5e 895 if (i > 0 && success != i && options.exit_on_forward_failure)
896 fatal("Could not request local forwarding.");
02a024dd 897 if (i > 0 && success == 0)
898 error("Could not request local forwarding.");
fa08c86b 899
900 /* Initiate remote TCP/IP port forwardings. */
901 for (i = 0; i < options.num_remote_forwards; i++) {
3867aa0a 902 debug("Remote connections from %.200s:%d forwarded to "
903 "local address %.200s:%d",
56964485 904 (options.remote_forwards[i].listen_host == NULL) ?
aa9bc1de 905 "LOCALHOST" : options.remote_forwards[i].listen_host,
3867aa0a 906 options.remote_forwards[i].listen_port,
907 options.remote_forwards[i].connect_host,
908 options.remote_forwards[i].connect_port);
42ea6f5e 909 if (channel_request_remote_forwarding(
3867aa0a 910 options.remote_forwards[i].listen_host,
911 options.remote_forwards[i].listen_port,
912 options.remote_forwards[i].connect_host,
42ea6f5e 913 options.remote_forwards[i].connect_port) < 0) {
914 if (options.exit_on_forward_failure)
915 fatal("Could not request remote forwarding.");
916 else
917 logit("Warning: Could not request remote "
918 "forwarding.");
919 }
72becb62 920 client_register_global_confirm(ssh_confirm_remote_forward,
921 &options.remote_forwards[i]);
fa08c86b 922 }
79303c5a 923
924 /* Initiate tunnel forwarding. */
925 if (options.tun_open != SSH_TUNMODE_NO) {
926 if (client_request_tun_fwd(options.tun_open,
927 options.tun_local, options.tun_remote) == -1) {
928 if (options.exit_on_forward_failure)
929 fatal("Could not request tunnel forwarding.");
930 else
931 error("Could not request tunnel forwarding.");
932 }
933 }
fa08c86b 934}
935
396c147e 936static void
fa08c86b 937check_agent_present(void)
938{
939 if (options.forward_agent) {
7b9b0103 940 /* Clear agent forwarding if we don't have an agent. */
8b10e20e 941 if (!ssh_agent_present())
fa08c86b 942 options.forward_agent = 0;
fa08c86b 943 }
944}
945
396c147e 946static int
8ce64345 947ssh_session(void)
948{
949 int type;
8ce64345 950 int interactive = 0;
951 int have_tty = 0;
952 struct winsize ws;
8ce64345 953 char *cp;
9bf083eb 954 const char *display;
8ce64345 955
5260325f 956 /* Enable compression if requested. */
957 if (options.compression) {
e8097dc9 958 debug("Requesting compression at level %d.",
959 options.compression_level);
5260325f 960
e8097dc9 961 if (options.compression_level < 1 ||
962 options.compression_level > 9)
963 fatal("Compression level must be from 1 (fast) to "
964 "9 (slow, best).");
5260325f 965
966 /* Send the request. */
967 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
968 packet_put_int(options.compression_level);
969 packet_send();
970 packet_write_wait();
54a5250f 971 type = packet_read();
5260325f 972 if (type == SSH_SMSG_SUCCESS)
973 packet_start_compression(options.compression_level);
974 else if (type == SSH_SMSG_FAILURE)
bbe88b6d 975 logit("Warning: Remote host refused compression.");
5260325f 976 else
e8097dc9 977 packet_disconnect("Protocol error waiting for "
978 "compression response.");
5260325f 979 }
980 /* Allocate a pseudo tty if appropriate. */
981 if (tty_flag) {
982 debug("Requesting pty.");
983
984 /* Start the packet. */
985 packet_start(SSH_CMSG_REQUEST_PTY);
986
987 /* Store TERM in the packet. There is no limit on the
988 length of the string. */
989 cp = getenv("TERM");
990 if (!cp)
991 cp = "";
449c5ba5 992 packet_put_cstring(cp);
5260325f 993
994 /* Store window size in the packet. */
995 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
996 memset(&ws, 0, sizeof(ws));
148de80c 997 packet_put_int((u_int)ws.ws_row);
998 packet_put_int((u_int)ws.ws_col);
999 packet_put_int((u_int)ws.ws_xpixel);
1000 packet_put_int((u_int)ws.ws_ypixel);
5260325f 1001
1002 /* Store tty modes in the packet. */
30dcc918 1003 tty_make_modes(fileno(stdin), NULL);
5260325f 1004
1005 /* Send the packet, and wait for it to leave. */
1006 packet_send();
1007 packet_write_wait();
1008
1009 /* Read response from the server. */
54a5250f 1010 type = packet_read();
4fe2af09 1011 if (type == SSH_SMSG_SUCCESS) {
5260325f 1012 interactive = 1;
8ce64345 1013 have_tty = 1;
4fe2af09 1014 } else if (type == SSH_SMSG_FAILURE)
e8097dc9 1015 logit("Warning: Remote host failed or refused to "
1016 "allocate a pseudo tty.");
5260325f 1017 else
e8097dc9 1018 packet_disconnect("Protocol error waiting for pty "
1019 "request response.");
5260325f 1020 }
1021 /* Request X11 forwarding if enabled and DISPLAY is set. */
9bf083eb 1022 display = getenv("DISPLAY");
1023 if (options.forward_x11 && display != NULL) {
b48eeb07 1024 char *proto, *data;
0b242b12 1025 /* Get reasonable local authentication information. */
9bf083eb 1026 client_x11_get_proto(display, options.xauth_location,
1027 options.forward_x11_trusted, &proto, &data);
0b242b12 1028 /* Request forwarding with authentication spoofing. */
e8097dc9 1029 debug("Requesting X11 forwarding with authentication "
1030 "spoofing.");
9bf083eb 1031 x11_request_forwarding_with_spoofing(0, display, proto, data);
5260325f 1032
1033 /* Read response from the server. */
54a5250f 1034 type = packet_read();
5260325f 1035 if (type == SSH_SMSG_SUCCESS) {
5260325f 1036 interactive = 1;
0b242b12 1037 } else if (type == SSH_SMSG_FAILURE) {
bbe88b6d 1038 logit("Warning: Remote host denied X11 forwarding.");
0b242b12 1039 } else {
e8097dc9 1040 packet_disconnect("Protocol error waiting for X11 "
1041 "forwarding");
0b242b12 1042 }
5260325f 1043 }
1044 /* Tell the packet module whether this is an interactive session. */
b5c334cc 1045 packet_set_interactive(interactive);
5260325f 1046
1047 /* Request authentication agent forwarding if appropriate. */
fa08c86b 1048 check_agent_present();
1049
5260325f 1050 if (options.forward_agent) {
1051 debug("Requesting authentication agent forwarding.");
1052 auth_request_forwarding();
1053
1054 /* Read response from the server. */
54a5250f 1055 type = packet_read();
95500969 1056 packet_check_eom();
5260325f 1057 if (type != SSH_SMSG_SUCCESS)
bbe88b6d 1058 logit("Warning: Remote host denied authentication agent forwarding.");
5260325f 1059 }
8efc0c15 1060
fa08c86b 1061 /* Initiate port forwardings. */
1062 ssh_init_forwarding();
5260325f 1063
c80e7e5d 1064 /* Execute a local command */
1065 if (options.local_command != NULL &&
1066 options.permit_local_command)
1067 ssh_local_cmd(options.local_command);
1068
6c777090 1069 /*
1070 * If requested and we are not interested in replies to remote
1071 * forwarding requests, then let ssh continue in the background.
1072 */
1073 if (fork_after_authentication_flag &&
1074 (!options.exit_on_forward_failure ||
1075 options.num_remote_forwards == 0)) {
1076 fork_after_authentication_flag = 0;
aa3378df 1077 if (daemon(1, 1) < 0)
1078 fatal("daemon() failed: %.200s", strerror(errno));
6c777090 1079 }
aa3378df 1080
1081 /*
1082 * If a command was specified on the command line, execute the
1083 * command now. Otherwise request the server to start a shell.
1084 */
5260325f 1085 if (buffer_len(&command) > 0) {
1086 int len = buffer_len(&command);
1087 if (len > 900)
1088 len = 900;
e8097dc9 1089 debug("Sending command: %.*s", len,
1090 (u_char *)buffer_ptr(&command));
5260325f 1091 packet_start(SSH_CMSG_EXEC_CMD);
1092 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1093 packet_send();
1094 packet_write_wait();
1095 } else {
1096 debug("Requesting shell.");
1097 packet_start(SSH_CMSG_EXEC_SHELL);
1098 packet_send();
1099 packet_write_wait();
1100 }
1101
1102 /* Enter the interactive session. */
4bf9c10e 1103 return client_loop(have_tty, tty_flag ?
1104 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
8ce64345 1105}
5260325f 1106
5e96b616 1107/* request pty/x11/agent/tcpfwd/shell for channel */
1108static void
1109ssh_session2_setup(int id, void *arg)
1110{
1786be35 1111 extern char **environ;
9bf083eb 1112 const char *display;
5e96b616 1113 int interactive = tty_flag;
9bf083eb 1114
56964485 1115 display = getenv("DISPLAY");
9bf083eb 1116 if (options.forward_x11 && display != NULL) {
b48eeb07 1117 char *proto, *data;
0b242b12 1118 /* Get reasonable local authentication information. */
9bf083eb 1119 client_x11_get_proto(display, options.xauth_location,
1120 options.forward_x11_trusted, &proto, &data);
0b242b12 1121 /* Request forwarding with authentication spoofing. */
e8097dc9 1122 debug("Requesting X11 forwarding with authentication "
1123 "spoofing.");
9bf083eb 1124 x11_request_forwarding_with_spoofing(id, display, proto, data);
b5c334cc 1125 interactive = 1;
0b242b12 1126 /* XXX wait for reply */
1127 }
1128
fa08c86b 1129 check_agent_present();
1130 if (options.forward_agent) {
1131 debug("Requesting authentication agent forwarding.");
1132 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1133 packet_send();
1134 }
1135
5e96b616 1136 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
95d3c124 1137 NULL, fileno(stdin), &command, environ);
1f3bf5aa 1138
b5c334cc 1139 packet_set_interactive(interactive);
8ce64345 1140}
1141
bcdb96c2 1142/* open new channel for a session */
396c147e 1143static int
bcdb96c2 1144ssh_session2_open(void)
8ce64345 1145{
719fc62f 1146 Channel *c;
1147 int window, packetmax, in, out, err;
2e73a022 1148
14a9a859 1149 if (stdin_null_flag) {
5ca51e19 1150 in = open(_PATH_DEVNULL, O_RDONLY);
14a9a859 1151 } else {
1152 in = dup(STDIN_FILENO);
1153 }
2e73a022 1154 out = dup(STDOUT_FILENO);
1155 err = dup(STDERR_FILENO);
8ce64345 1156
1157 if (in < 0 || out < 0 || err < 0)
14a9a859 1158 fatal("dup() in/out/err failed");
8ce64345 1159
a22aff1f 1160 /* enable nonblocking unless tty */
1161 if (!isatty(in))
1162 set_nonblock(in);
1163 if (!isatty(out))
1164 set_nonblock(out);
1165 if (!isatty(err))
1166 set_nonblock(err);
1167
bcbf86ec 1168 window = CHAN_SES_WINDOW_DEFAULT;
1169 packetmax = CHAN_SES_PACKET_DEFAULT;
ea9700ba 1170 if (tty_flag) {
1171 window >>= 1;
1172 packetmax >>= 1;
8ce64345 1173 }
719fc62f 1174 c = channel_new(
8ce64345 1175 "session", SSH_CHANNEL_OPENING, in, out, err,
bcbf86ec 1176 window, packetmax, CHAN_EXTENDED_WRITE,
0d942eff 1177 "client-session", /*nonblock*/0);
8ce64345 1178
bcdb96c2 1179 debug3("ssh_session2_open: channel_new: %d", c->self);
eb0dd41f 1180
36e1f6a1 1181 channel_send_open(c->self);
bcdb96c2 1182 if (!no_shell_flag)
3593bdc0 1183 channel_register_open_confirm(c->self,
1184 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();
1196
bcdb96c2 1197 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1198 id = ssh_session2_open();
eb0dd41f 1199
3f0444ca 1200 /* If we don't expect to open a new session, then disallow it */
72bd2fca 1201 if (options.control_master == SSHCTL_MASTER_NO &&
1202 (datafellows & SSH_NEW_OPENSSH)) {
3f0444ca 1203 debug("Requesting no-more-sessions@openssh.com");
1204 packet_start(SSH2_MSG_GLOBAL_REQUEST);
1205 packet_put_cstring("no-more-sessions@openssh.com");
1206 packet_put_char(0);
1207 packet_send();
1208 }
1209
d20f3c9e 1210 /* Execute a local command */
1211 if (options.local_command != NULL &&
1212 options.permit_local_command)
1213 ssh_local_cmd(options.local_command);
1214
79303c5a 1215 /* Start listening for multiplex clients */
3bcced4c 1216 muxserver_listen();
79303c5a 1217
eb0dd41f 1218 /* If requested, let ssh continue in the background. */
6c777090 1219 if (fork_after_authentication_flag) {
1220 fork_after_authentication_flag = 0;
eb0dd41f 1221 if (daemon(1, 1) < 0)
1222 fatal("daemon() failed: %.200s", strerror(errno));
6c777090 1223 }
eb0dd41f 1224
4bf9c10e 1225 return client_loop(tty_flag, tty_flag ?
1226 options.escape_char : SSH_ESCAPECHAR_NONE, id);
8efc0c15 1227}
fa08c86b 1228
396c147e 1229static void
fee56204 1230load_public_identity_files(void)
1231{
8cffe22a 1232 char *filename, *cp, thishost[NI_MAXHOST];
a7082e17 1233 char *pwdir = NULL, *pwname = NULL;
2e23cde0 1234 int i = 0;
0659cace 1235 Key *public;
8cffe22a 1236 struct passwd *pw;
383546c4 1237#ifdef SMARTCARD
0659cace 1238 Key **keys;
1239
9ff6f66f 1240 if (options.smartcard_device != NULL &&
0659cace 1241 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
d4f40d92 1242 (keys = sc_get_keys(options.smartcard_device, NULL)) != NULL) {
0659cace 1243 int count = 0;
1244 for (i = 0; keys[i] != NULL; i++) {
1245 count++;
e8097dc9 1246 memmove(&options.identity_files[1],
1247 &options.identity_files[0],
0659cace 1248 sizeof(char *) * (SSH_MAX_IDENTITY_FILES - 1));
e8097dc9 1249 memmove(&options.identity_keys[1],
1250 &options.identity_keys[0],
0659cace 1251 sizeof(Key *) * (SSH_MAX_IDENTITY_FILES - 1));
1252 options.num_identity_files++;
1253 options.identity_keys[0] = keys[i];
244e796f 1254 options.identity_files[0] = sc_get_key_label(keys[i]);
0659cace 1255 }
1c2deed1 1256 if (options.num_identity_files > SSH_MAX_IDENTITY_FILES)
1257 options.num_identity_files = SSH_MAX_IDENTITY_FILES;
0659cace 1258 i = count;
1259 xfree(keys);
383546c4 1260 }
3e984472 1261#endif /* SMARTCARD */
8cffe22a 1262 if ((pw = getpwuid(original_real_uid)) == NULL)
1263 fatal("load_public_identity_files: getpwuid failed");
42f4b33f 1264 pwname = xstrdup(pw->pw_name);
1265 pwdir = xstrdup(pw->pw_dir);
8cffe22a 1266 if (gethostname(thishost, sizeof(thishost)) == -1)
1267 fatal("load_public_identity_files: gethostname: %s",
1268 strerror(errno));
2e23cde0 1269 for (; i < options.num_identity_files; i++) {
8cffe22a 1270 cp = tilde_expand_filename(options.identity_files[i],
2e23cde0 1271 original_real_uid);
a7082e17 1272 filename = percent_expand(cp, "d", pwdir,
1273 "u", pwname, "l", thishost, "h", host,
8cffe22a 1274 "r", options.user, (char *)NULL);
1275 xfree(cp);
2e23cde0 1276 public = key_load_public(filename, NULL);
1277 debug("identity file %s type %d", filename,
1278 public ? public->type : -1);
1279 xfree(options.identity_files[i]);
1280 options.identity_files[i] = filename;
1281 options.identity_keys[i] = public;
1282 }
a7082e17 1283 bzero(pwname, strlen(pwname));
42f4b33f 1284 xfree(pwname);
a7082e17 1285 bzero(pwdir, strlen(pwdir));
42f4b33f 1286 xfree(pwdir);
fee56204 1287}
This page took 0.611842 seconds and 5 git commands to generate.