]> andersk Git - openssh.git/blame - ssh.c
- markus@cvs.openbsd.org 2003/07/14 12:36:37
[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.
5fb274c1 16 * Copyright (c) 2000, 2001, 2002 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"
1572b90f 43RCSID("$OpenBSD: ssh.c,v 1.196 2003/07/03 08:09:06 djm Exp $");
8efc0c15 44
a306f2dd 45#include <openssl/evp.h>
fa08c86b 46#include <openssl/err.h>
a306f2dd 47
8efc0c15 48#include "ssh.h"
42f11eb2 49#include "ssh1.h"
50#include "ssh2.h"
51#include "compat.h"
52#include "cipher.h"
53#include "xmalloc.h"
8efc0c15 54#include "packet.h"
55#include "buffer.h"
a5efa1bb 56#include "channels.h"
a306f2dd 57#include "key.h"
4c8722d9 58#include "authfd.h"
a306f2dd 59#include "authfile.h"
42f11eb2 60#include "pathnames.h"
b5c334cc 61#include "clientloop.h"
42f11eb2 62#include "log.h"
63#include "readconf.h"
64#include "sshconnect.h"
65#include "tildexpand.h"
1f3bf5aa 66#include "dispatch.h"
42f11eb2 67#include "misc.h"
b2552997 68#include "kex.h"
69#include "mac.h"
30dcc918 70#include "sshtty.h"
8efc0c15 71
383546c4 72#ifdef SMARTCARD
383546c4 73#include "scard.h"
dd2495cb 74#endif
383546c4 75
f601d847 76#ifdef HAVE___PROGNAME
77extern char *__progname;
260d427b 78#else
79char *__progname;
80#endif
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
8efc0c15 144/* Prints a help message to the user. This function never returns. */
145
396c147e 146static void
5ca51e19 147usage(void)
8efc0c15 148{
1fe6a48f 149 fprintf(stderr, "Usage: %s [options] host [command]\n", __progname);
5260325f 150 fprintf(stderr, "Options:\n");
151 fprintf(stderr, " -l user Log in using this user name.\n");
5ca51e19 152 fprintf(stderr, " -n Redirect input from " _PATH_DEVNULL ".\n");
e591b98a 153 fprintf(stderr, " -F config Config file (default: ~/%s).\n",
154 _PATH_SSH_USER_CONFFILE);
71276795 155 fprintf(stderr, " -A Enable authentication agent forwarding.\n");
63cd7dd0 156 fprintf(stderr, " -a Disable authentication agent forwarding (default).\n");
8efc0c15 157#ifdef AFS
5260325f 158 fprintf(stderr, " -k Disable Kerberos ticket and AFS token forwarding.\n");
159#endif /* AFS */
2b87da3b 160 fprintf(stderr, " -X Enable X11 connection forwarding.\n");
63cd7dd0 161 fprintf(stderr, " -x Disable X11 connection forwarding (default).\n");
a01a5f30 162 fprintf(stderr, " -i file Identity for public key authentication "
163 "(default: ~/.ssh/identity)\n");
315dfb04 164#ifdef SMARTCARD
165 fprintf(stderr, " -I reader Set smartcard reader.\n");
dd2495cb 166#endif
5260325f 167 fprintf(stderr, " -t Tty; allocate a tty even if command is given.\n");
8ce64345 168 fprintf(stderr, " -T Do not allocate a tty.\n");
5260325f 169 fprintf(stderr, " -v Verbose; display verbose debugging messages.\n");
bcbf86ec 170 fprintf(stderr, " Multiple -v increases verbosity.\n");
5260325f 171 fprintf(stderr, " -V Display version number only.\n");
5260325f 172 fprintf(stderr, " -q Quiet; don't display any warning messages.\n");
173 fprintf(stderr, " -f Fork into background after authentication.\n");
174 fprintf(stderr, " -e char Set escape character; ``none'' = disable (default: ~).\n");
175
63cd7dd0 176 fprintf(stderr, " -c cipher Select encryption algorithm\n");
38967add 177 fprintf(stderr, " -m macs Specify MAC algorithms for protocol version 2.\n");
5260325f 178 fprintf(stderr, " -p port Connect to this port. Server must be on the same port.\n");
179 fprintf(stderr, " -L listen-port:host:port Forward local port to remote address\n");
180 fprintf(stderr, " -R listen-port:host:port Forward remote port to local address\n");
1fe6a48f 181 fprintf(stderr, " These cause %s to listen for connections on a port, and\n", __progname);
5260325f 182 fprintf(stderr, " forward them to the other side by connecting to host:port.\n");
4c780c2a 183 fprintf(stderr, " -D port Enable dynamic application-level port forwarding.\n");
5260325f 184 fprintf(stderr, " -C Enable compression.\n");
8ce64345 185 fprintf(stderr, " -N Do not execute a shell or command.\n");
5260325f 186 fprintf(stderr, " -g Allow remote hosts to connect to forwarded ports.\n");
1f3bf5aa 187 fprintf(stderr, " -1 Force protocol version 1.\n");
188 fprintf(stderr, " -2 Force protocol version 2.\n");
48e671d5 189 fprintf(stderr, " -4 Use IPv4 only.\n");
190 fprintf(stderr, " -6 Use IPv6 only.\n");
5260325f 191 fprintf(stderr, " -o 'option' Process the option as if it was read from a configuration file.\n");
ae810de7 192 fprintf(stderr, " -s Invoke command (mandatory) as SSH2 subsystem.\n");
63cd7dd0 193 fprintf(stderr, " -b addr Local IP address.\n");
5260325f 194 exit(1);
8efc0c15 195}
196
396c147e 197static int ssh_session(void);
198static int ssh_session2(void);
199static void load_public_identity_files(void);
8ce64345 200
5260325f 201/*
202 * Main program for the ssh client.
203 */
8efc0c15 204int
205main(int ac, char **av)
206{
b34bec32 207 int i, opt, exit_status;
57112b5a 208 u_short fwd_port, fwd_host_port;
d2e3df16 209 char sfwd_port[6], sfwd_host_port[6];
f5a1a01a 210 char *p, *cp, buf[256];
5260325f 211 struct stat st;
3b1a83df 212 struct passwd *pw;
8ce64345 213 int dummy;
57dade33 214 extern int optind, optreset;
1812a662 215 extern char *optarg;
5260325f 216
260d427b 217 __progname = get_progname(av[0]);
264dce47 218 init_rng();
219
aa3378df 220 /*
221 * Save the original real uid. It will be needed later (uid-swapping
222 * may clobber the real uid).
223 */
5260325f 224 original_real_uid = getuid();
225 original_effective_uid = geteuid();
9f324470 226
227 /*
228 * Use uid-swapping to give up root privileges for the duration of
229 * option processing. We will re-instantiate the rights when we are
230 * ready to create the privileged port, and will permanently drop
231 * them when the port has been created (actually, when the connection
232 * has been made, as we may need to create the port several times).
233 */
234 PRIV_END;
5260325f 235
7322ef0e 236#ifdef HAVE_SETRLIMIT
5260325f 237 /* If we are installed setuid root be careful to not drop core. */
238 if (original_real_uid != original_effective_uid) {
239 struct rlimit rlim;
240 rlim.rlim_cur = rlim.rlim_max = 0;
241 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
242 fatal("setrlimit failed: %.100s", strerror(errno));
8efc0c15 243 }
3c62e7eb 244#endif
63bd8c36 245 /* Get user data. */
246 pw = getpwuid(original_real_uid);
247 if (!pw) {
bbe88b6d 248 logit("You don't exist, go away!");
63bd8c36 249 exit(1);
250 }
251 /* Take a copy of the returned structure. */
252 pw = pwcopy(pw);
253
aa3378df 254 /*
255 * Set our umask to something reasonable, as some files are created
256 * with the default umask. This will make them world-readable but
257 * writable only by the owner, which is ok for all files for which we
258 * don't set the modes explicitly.
259 */
5260325f 260 umask(022);
261
5260325f 262 /* Initialize option structure to indicate that no values have been set. */
263 initialize_options(&options);
264
265 /* Parse command-line arguments. */
266 host = NULL;
267
f5a1a01a 268again:
269 while ((opt = getopt(ac, av,
e591b98a 270 "1246ab:c:e:fgi:kl:m:no:p:qstvxACD:F:I:L:NPR:TVX")) != -1) {
5260325f 271 switch (opt) {
1f3bf5aa 272 case '1':
273 options.protocol = SSH_PROTO_1;
274 break;
6ae2364d 275 case '2':
276 options.protocol = SSH_PROTO_2;
277 break;
48e671d5 278 case '4':
1572b90f 279 options.address_family = AF_INET;
48e671d5 280 break;
48e671d5 281 case '6':
1572b90f 282 options.address_family = AF_INET6;
48e671d5 283 break;
5260325f 284 case 'n':
285 stdin_null_flag = 1;
286 break;
5260325f 287 case 'f':
288 fork_after_authentication_flag = 1;
289 stdin_null_flag = 1;
290 break;
5260325f 291 case 'x':
292 options.forward_x11 = 0;
293 break;
5260325f 294 case 'X':
295 options.forward_x11 = 1;
296 break;
5260325f 297 case 'g':
298 options.gateway_ports = 1;
299 break;
e59404d1 300 case 'P': /* deprecated */
5260325f 301 options.use_privileged_port = 0;
302 break;
5260325f 303 case 'a':
304 options.forward_agent = 0;
305 break;
71276795 306 case 'A':
307 options.forward_agent = 1;
308 break;
5260325f 309#ifdef AFS
310 case 'k':
311 options.kerberos_tgt_passing = 0;
312 options.afs_token_passing = 0;
313 break;
314#endif
315 case 'i':
316 if (stat(optarg, &st) < 0) {
f5a1a01a 317 fprintf(stderr, "Warning: Identity file %s "
318 "does not exist.\n", optarg);
5260325f 319 break;
320 }
f5a1a01a 321 if (options.num_identity_files >=
322 SSH_MAX_IDENTITY_FILES)
323 fatal("Too many identity files specified "
324 "(max %d)", SSH_MAX_IDENTITY_FILES);
325 options.identity_files[options.num_identity_files++] =
326 xstrdup(optarg);
5260325f 327 break;
383546c4 328 case 'I':
329#ifdef SMARTCARD
9ff6f66f 330 options.smartcard_device = xstrdup(optarg);
dd2495cb 331#else
383546c4 332 fprintf(stderr, "no support for smartcards.\n");
dd2495cb 333#endif
383546c4 334 break;
5260325f 335 case 't':
8abcdba4 336 if (tty_flag)
337 force_tty_flag = 1;
5260325f 338 tty_flag = 1;
339 break;
5260325f 340 case 'v':
bcbf86ec 341 if (0 == debug_flag) {
342 debug_flag = 1;
343 options.log_level = SYSLOG_LEVEL_DEBUG1;
344 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
345 options.log_level++;
346 break;
f5a1a01a 347 } else
54b974dc 348 fatal("Too high debugging level.");
bcbf86ec 349 /* fallthrough */
5260325f 350 case 'V':
e68225b2 351 fprintf(stderr,
c936c243 352 "%s, SSH protocols %d.%d/%d.%d, %s\n",
a8be9f80 353 SSH_VERSION,
354 PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1,
e68225b2 355 PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2,
c936c243 356 SSLeay_version(SSLEAY_VERSION));
5260325f 357 if (opt == 'V')
358 exit(0);
5260325f 359 break;
5260325f 360 case 'q':
361 options.log_level = SYSLOG_LEVEL_QUIET;
362 break;
5260325f 363 case 'e':
364 if (optarg[0] == '^' && optarg[2] == 0 &&
f5a1a01a 365 (u_char) optarg[1] >= 64 &&
366 (u_char) optarg[1] < 128)
1e3b8b07 367 options.escape_char = (u_char) optarg[1] & 31;
5260325f 368 else if (strlen(optarg) == 1)
1e3b8b07 369 options.escape_char = (u_char) optarg[0];
5260325f 370 else if (strcmp(optarg, "none") == 0)
4bf9c10e 371 options.escape_char = SSH_ESCAPECHAR_NONE;
5260325f 372 else {
f5a1a01a 373 fprintf(stderr, "Bad escape character '%s'.\n",
374 optarg);
5260325f 375 exit(1);
376 }
377 break;
5260325f 378 case 'c':
a306f2dd 379 if (ciphers_valid(optarg)) {
380 /* SSH2 only */
381 options.ciphers = xstrdup(optarg);
d0c832f3 382 options.cipher = SSH_CIPHER_ILLEGAL;
a306f2dd 383 } else {
384 /* SSH1 only */
c523303b 385 options.cipher = cipher_number(optarg);
386 if (options.cipher == -1) {
f5a1a01a 387 fprintf(stderr,
388 "Unknown cipher type '%s'\n",
389 optarg);
a306f2dd 390 exit(1);
391 }
f5a1a01a 392 if (options.cipher == SSH_CIPHER_3DES)
c523303b 393 options.ciphers = "3des-cbc";
f5a1a01a 394 else if (options.cipher == SSH_CIPHER_BLOWFISH)
c523303b 395 options.ciphers = "blowfish-cbc";
f5a1a01a 396 else
c523303b 397 options.ciphers = (char *)-1;
5260325f 398 }
399 break;
b2552997 400 case 'm':
401 if (mac_valid(optarg))
402 options.macs = xstrdup(optarg);
403 else {
f5a1a01a 404 fprintf(stderr, "Unknown mac type '%s'\n",
405 optarg);
b2552997 406 exit(1);
407 }
408 break;
5260325f 409 case 'p':
2d2a2c65 410 options.port = a2port(optarg);
411 if (options.port == 0) {
6031af8d 412 fprintf(stderr, "Bad port '%s'\n", optarg);
413 exit(1);
414 }
5260325f 415 break;
5260325f 416 case 'l':
417 options.user = optarg;
418 break;
d2e3df16 419
420 case 'L':
5260325f 421 case 'R':
fa065de2 422 if (sscanf(optarg, "%5[0123456789]:%255[^:]:%5[0123456789]",
d2e3df16 423 sfwd_port, buf, sfwd_host_port) != 3 &&
fa065de2 424 sscanf(optarg, "%5[0123456789]/%255[^/]/%5[0123456789]",
d2e3df16 425 sfwd_port, buf, sfwd_host_port) != 3) {
f5a1a01a 426 fprintf(stderr,
d2e3df16 427 "Bad forwarding specification '%s'\n",
f5a1a01a 428 optarg);
5260325f 429 usage();
430 /* NOTREACHED */
431 }
d2e3df16 432 if ((fwd_port = a2port(sfwd_port)) == 0 ||
762715ce 433 (fwd_host_port = a2port(sfwd_host_port)) == 0) {
f5a1a01a 434 fprintf(stderr,
d2e3df16 435 "Bad forwarding port(s) '%s'\n", optarg);
436 exit(1);
5260325f 437 }
d2e3df16 438 if (opt == 'L')
439 add_local_forward(&options, fwd_port, buf,
440 fwd_host_port);
441 else if (opt == 'R')
442 add_remote_forward(&options, fwd_port, buf,
184eed6a 443 fwd_host_port);
5260325f 444 break;
0490e609 445
446 case 'D':
2d2a2c65 447 fwd_port = a2port(optarg);
448 if (fwd_port == 0) {
f5a1a01a 449 fprintf(stderr, "Bad dynamic port '%s'\n",
450 optarg);
6031af8d 451 exit(1);
452 }
0490e609 453 add_local_forward(&options, fwd_port, "socks4", 0);
454 break;
455
5260325f 456 case 'C':
457 options.compression = 1;
458 break;
8ce64345 459 case 'N':
460 no_shell_flag = 1;
461 no_tty_flag = 1;
462 break;
8ce64345 463 case 'T':
464 no_tty_flag = 1;
465 break;
5260325f 466 case 'o':
467 dummy = 1;
f5a1a01a 468 if (process_config_line(&options, host ? host : "",
469 optarg, "command-line", 0, &dummy) != 0)
5260325f 470 exit(1);
471 break;
ae810de7 472 case 's':
473 subsystem_flag = 1;
474 break;
3435f5a6 475 case 'b':
476 options.bind_address = optarg;
477 break;
e591b98a 478 case 'F':
479 config = optarg;
480 break;
5260325f 481 default:
482 usage();
483 }
484 }
485
f5a1a01a 486 ac -= optind;
487 av += optind;
488
489 if (ac > 0 && !host && **av != '-') {
15748b4d 490 if (strrchr(*av, '@')) {
f5a1a01a 491 p = xstrdup(*av);
15748b4d 492 cp = strrchr(p, '@');
f5a1a01a 493 if (cp == NULL || cp == p)
494 usage();
495 options.user = p;
496 *cp = '\0';
497 host = ++cp;
498 } else
499 host = *av;
978ebf99 500 if (ac > 1) {
501 optind = optreset = 1;
f5a1a01a 502 goto again;
503 }
978ebf99 504 ac--, av++;
f5a1a01a 505 }
506
5260325f 507 /* Check that we got a host name. */
508 if (!host)
8efc0c15 509 usage();
5260325f 510
22d89d24 511 SSLeay_add_all_algorithms();
fa08c86b 512 ERR_load_crypto_strings();
22d89d24 513
5260325f 514 /* Initialize the command to execute on remote host. */
515 buffer_init(&command);
516
aa3378df 517 /*
518 * Save the command to execute on the remote host in a buffer. There
519 * is no limit on the length of the command, except by the maximum
520 * packet size. Also sets the tty flag if there is no command.
521 */
f5a1a01a 522 if (!ac) {
5260325f 523 /* No command specified - execute shell on a tty. */
524 tty_flag = 1;
ae810de7 525 if (subsystem_flag) {
f5a1a01a 526 fprintf(stderr,
527 "You must specify a subsystem to invoke.\n");
ae810de7 528 usage();
529 }
5260325f 530 } else {
f5a1a01a 531 /* A command has been specified. Store it into the buffer. */
532 for (i = 0; i < ac; i++) {
533 if (i)
5260325f 534 buffer_append(&command, " ", 1);
535 buffer_append(&command, av[i], strlen(av[i]));
536 }
8efc0c15 537 }
5260325f 538
539 /* Cannot fork to background if no command. */
14a9a859 540 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
5260325f 541 fatal("Cannot fork into background without a command to execute.");
542
543 /* Allocate a tty by default if no command specified. */
544 if (buffer_len(&command) == 0)
545 tty_flag = 1;
546
343288b8 547 /* Force no tty */
0b6fbf03 548 if (no_tty_flag)
549 tty_flag = 0;
5260325f 550 /* Do not allocate a tty if stdin is not a tty. */
8abcdba4 551 if (!isatty(fileno(stdin)) && !force_tty_flag) {
5260325f 552 if (tty_flag)
bbe88b6d 553 logit("Pseudo-terminal will not be allocated because stdin is not a terminal.");
5260325f 554 tty_flag = 0;
555 }
8ce64345 556
20244695 557 /*
558 * Initialize "log" output. Since we are the client all output
559 * actually goes to stderr.
560 */
cc44f691 561 log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
562 SYSLOG_FACILITY_USER, 1);
5260325f 563
e591b98a 564 /*
565 * Read per-user configuration file. Ignore the system wide config
566 * file if the user specifies a config file on the command line.
567 */
568 if (config != NULL) {
93111dfa 569 if (!read_config_file(config, host, &options))
570 fatal("Can't open user config file %.100s: "
571 "%.100s", config, strerror(errno));
e591b98a 572 } else {
573 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,
574 _PATH_SSH_USER_CONFFILE);
f67792f2 575 (void)read_config_file(buf, host, &options);
e591b98a 576
f67792f2 577 /* Read systemwide configuration file after use config. */
93111dfa 578 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host, &options);
e591b98a 579 }
5260325f 580
581 /* Fill configuration defaults. */
582 fill_default_options(&options);
583
1572b90f 584 channel_set_af(options.address_family);
585
5260325f 586 /* reinit */
20244695 587 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
5260325f 588
e339aa53 589 seed_rng();
590
5260325f 591 if (options.user == NULL)
592 options.user = xstrdup(pw->pw_name);
593
594 if (options.hostname != NULL)
595 host = options.hostname;
596
03c82656 597 /* force lowercase for hostkey matching */
598 if (options.host_key_alias != NULL) {
599 for (p = options.host_key_alias; *p; p++)
600 if (isupper(*p))
601 *p = tolower(*p);
602 }
603
f78bde70 604 if (options.proxy_command != NULL &&
605 strcmp(options.proxy_command, "none") == 0)
606 options.proxy_command = NULL;
607
5260325f 608 /* Disable rhosts authentication if not running as root. */
3c62e7eb 609#ifdef HAVE_CYGWIN
610 /* Ignore uid if running under Windows */
611 if (!options.use_privileged_port) {
612#else
5260325f 613 if (original_effective_uid != 0 || !options.use_privileged_port) {
3c62e7eb 614#endif
6ffc9c88 615 debug("Rhosts Authentication disabled, "
616 "originating port will not be trusted.");
5260325f 617 options.rhosts_authentication = 0;
5260325f 618 }
6ffc9c88 619 /* Open a connection to the remote host. */
5260325f 620
1572b90f 621 if (ssh_connect(host, &hostaddr, options.port,
622 options.address_family, options.connection_attempts,
d514c907 623#ifdef HAVE_CYGWIN
624 options.use_privileged_port,
625#else
3fb156df 626 original_effective_uid == 0 && options.use_privileged_port,
d514c907 627#endif
de60473e 628 options.proxy_command) != 0)
b34bec32 629 exit(1);
5260325f 630
aa3378df 631 /*
632 * If we successfully made the connection, load the host private key
633 * in case we will need it later for combined rsa-rhosts
634 * authentication. This must be done before releasing extra
635 * privileges, because the file is only readable by root.
78660ed4 636 * If we cannot access the private keys, load the public keys
637 * instead and try to execute the ssh-keysign helper instead.
aa3378df 638 */
8002af61 639 sensitive_data.nkeys = 0;
640 sensitive_data.keys = NULL;
39c00dc2 641 sensitive_data.external_keysign = 0;
b34bec32 642 if (options.rhosts_rsa_authentication ||
643 options.hostbased_authentication) {
8002af61 644 sensitive_data.nkeys = 3;
343288b8 645 sensitive_data.keys = xmalloc(sensitive_data.nkeys *
646 sizeof(Key));
3fb156df 647
648 PRIV_START;
8002af61 649 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
aeaa3d9e 650 _PATH_HOST_KEY_FILE, "", NULL);
8002af61 651 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
652 _PATH_HOST_DSA_KEY_FILE, "", NULL);
653 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
654 _PATH_HOST_RSA_KEY_FILE, "", NULL);
3fb156df 655 PRIV_END;
39c00dc2 656
60cd0a97 657 if (options.hostbased_authentication == 1 &&
658 sensitive_data.keys[0] == NULL &&
39c00dc2 659 sensitive_data.keys[1] == NULL &&
660 sensitive_data.keys[2] == NULL) {
661 sensitive_data.keys[1] = key_load_public(
662 _PATH_HOST_DSA_KEY_FILE, NULL);
663 sensitive_data.keys[2] = key_load_public(
664 _PATH_HOST_RSA_KEY_FILE, NULL);
665 sensitive_data.external_keysign = 1;
666 }
5260325f 667 }
aa3378df 668 /*
669 * Get rid of any extra privileges that we may have. We will no
670 * longer need them. Also, extra privileges could make it very hard
671 * to read identity files and other non-world-readable files from the
672 * user's home directory if it happens to be on a NFS volume where
673 * root is mapped to nobody.
674 */
3fb156df 675 seteuid(original_real_uid);
676 setuid(original_real_uid);
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
732 /*
733 * Send SIGHUP to proxy command if used. We don't wait() in
734 * case it hangs and instead rely on init to reap the child
735 */
736 if (proxy_command_pid > 1)
737 kill(proxy_command_pid, SIGHUP);
738
8ce64345 739 return exit_status;
740}
741
396c147e 742static void
b48eeb07 743x11_get_proto(char **_proto, char **_data)
0b242b12 744{
745 char line[512];
b48eeb07 746 static char proto[512], data[512];
0b242b12 747 FILE *f;
748 int got_data = 0, i;
75a624f0 749 char *display;
5d185586 750 struct stat st;
0b242b12 751
b48eeb07 752 *_proto = proto;
753 *_data = data;
754 proto[0] = data[0] = '\0';
5d185586 755 if (!options.xauth_location ||
756 (stat(options.xauth_location, &st) == -1)) {
757 debug("No xauth program.");
758 } else {
759 if ((display = getenv("DISPLAY")) == NULL) {
760 debug("x11_get_proto: DISPLAY not set");
761 return;
762 }
fa649821 763 /* Try to get Xauthority information for the display. */
75a624f0 764 if (strncmp(display, "localhost:", 10) == 0)
765 /*
766 * Handle FamilyLocal case where $DISPLAY does
767 * not match an authorization entry. For this we
768 * just try "xauth list unix:displaynum.screennum".
769 * XXX: "localhost" match to determine FamilyLocal
770 * is not perfect.
771 */
375e20e7 772 snprintf(line, sizeof line, "%s list unix:%s 2>"
75a624f0 773 _PATH_DEVNULL, options.xauth_location, display+10);
774 else
375e20e7 775 snprintf(line, sizeof line, "%s list %.200s 2>"
75a624f0 776 _PATH_DEVNULL, options.xauth_location, display);
5d185586 777 debug2("x11_get_proto: %s", line);
fa649821 778 f = popen(line, "r");
779 if (f && fgets(line, sizeof(line), f) &&
b48eeb07 780 sscanf(line, "%*s %511s %511s", proto, data) == 2)
fa649821 781 got_data = 1;
782 if (f)
783 pclose(f);
784 }
0b242b12 785 /*
786 * If we didn't get authentication data, just make up some
787 * data. The forwarding code will check the validity of the
788 * response anyway, and substitute this data. The X11
789 * server, however, will ignore this fake data and use
790 * whatever authentication mechanisms it was using otherwise
791 * for the local connection.
792 */
793 if (!got_data) {
794 u_int32_t rand = 0;
795
bbe88b6d 796 logit("Warning: No xauth data; using fake authentication data for X11 forwarding.");
b48eeb07 797 strlcpy(proto, "MIT-MAGIC-COOKIE-1", sizeof proto);
0b242b12 798 for (i = 0; i < 16; i++) {
799 if (i % 4 == 0)
800 rand = arc4random();
b48eeb07 801 snprintf(data + 2 * i, sizeof data - 2 * i, "%02x", rand & 0xff);
0b242b12 802 rand >>= 8;
803 }
804 }
805}
806
396c147e 807static void
fa08c86b 808ssh_init_forwarding(void)
809{
02a024dd 810 int success = 0;
fa08c86b 811 int i;
02a024dd 812
fa08c86b 813 /* Initiate local TCP/IP port forwardings. */
814 for (i = 0; i < options.num_local_forwards; i++) {
815 debug("Connections to local port %d forwarded to remote address %.200s:%d",
816 options.local_forwards[i].port,
817 options.local_forwards[i].host,
818 options.local_forwards[i].host_port);
5641aefa 819 success += channel_setup_local_fwd_listener(
fa08c86b 820 options.local_forwards[i].port,
821 options.local_forwards[i].host,
822 options.local_forwards[i].host_port,
823 options.gateway_ports);
824 }
02a024dd 825 if (i > 0 && success == 0)
826 error("Could not request local forwarding.");
fa08c86b 827
828 /* Initiate remote TCP/IP port forwardings. */
829 for (i = 0; i < options.num_remote_forwards; i++) {
830 debug("Connections to remote port %d forwarded to local address %.200s:%d",
831 options.remote_forwards[i].port,
832 options.remote_forwards[i].host,
833 options.remote_forwards[i].host_port);
834 channel_request_remote_forwarding(
835 options.remote_forwards[i].port,
836 options.remote_forwards[i].host,
837 options.remote_forwards[i].host_port);
838 }
839}
840
396c147e 841static void
fa08c86b 842check_agent_present(void)
843{
844 if (options.forward_agent) {
845 /* Clear agent forwarding if we don\'t have an agent. */
8b10e20e 846 if (!ssh_agent_present())
fa08c86b 847 options.forward_agent = 0;
fa08c86b 848 }
849}
850
396c147e 851static int
8ce64345 852ssh_session(void)
853{
854 int type;
8ce64345 855 int interactive = 0;
856 int have_tty = 0;
857 struct winsize ws;
8ce64345 858 char *cp;
859
5260325f 860 /* Enable compression if requested. */
861 if (options.compression) {
862 debug("Requesting compression at level %d.", options.compression_level);
863
864 if (options.compression_level < 1 || options.compression_level > 9)
865 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
866
867 /* Send the request. */
868 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
869 packet_put_int(options.compression_level);
870 packet_send();
871 packet_write_wait();
54a5250f 872 type = packet_read();
5260325f 873 if (type == SSH_SMSG_SUCCESS)
874 packet_start_compression(options.compression_level);
875 else if (type == SSH_SMSG_FAILURE)
bbe88b6d 876 logit("Warning: Remote host refused compression.");
5260325f 877 else
878 packet_disconnect("Protocol error waiting for compression response.");
879 }
880 /* Allocate a pseudo tty if appropriate. */
881 if (tty_flag) {
882 debug("Requesting pty.");
883
884 /* Start the packet. */
885 packet_start(SSH_CMSG_REQUEST_PTY);
886
887 /* Store TERM in the packet. There is no limit on the
888 length of the string. */
889 cp = getenv("TERM");
890 if (!cp)
891 cp = "";
449c5ba5 892 packet_put_cstring(cp);
5260325f 893
894 /* Store window size in the packet. */
895 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
896 memset(&ws, 0, sizeof(ws));
897 packet_put_int(ws.ws_row);
898 packet_put_int(ws.ws_col);
899 packet_put_int(ws.ws_xpixel);
900 packet_put_int(ws.ws_ypixel);
901
902 /* Store tty modes in the packet. */
30dcc918 903 tty_make_modes(fileno(stdin), NULL);
5260325f 904
905 /* Send the packet, and wait for it to leave. */
906 packet_send();
907 packet_write_wait();
908
909 /* Read response from the server. */
54a5250f 910 type = packet_read();
4fe2af09 911 if (type == SSH_SMSG_SUCCESS) {
5260325f 912 interactive = 1;
8ce64345 913 have_tty = 1;
4fe2af09 914 } else if (type == SSH_SMSG_FAILURE)
bbe88b6d 915 logit("Warning: Remote host failed or refused to allocate a pseudo tty.");
5260325f 916 else
917 packet_disconnect("Protocol error waiting for pty request response.");
918 }
919 /* Request X11 forwarding if enabled and DISPLAY is set. */
920 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
b48eeb07 921 char *proto, *data;
0b242b12 922 /* Get reasonable local authentication information. */
b48eeb07 923 x11_get_proto(&proto, &data);
0b242b12 924 /* Request forwarding with authentication spoofing. */
5260325f 925 debug("Requesting X11 forwarding with authentication spoofing.");
0b242b12 926 x11_request_forwarding_with_spoofing(0, proto, data);
5260325f 927
928 /* Read response from the server. */
54a5250f 929 type = packet_read();
5260325f 930 if (type == SSH_SMSG_SUCCESS) {
5260325f 931 interactive = 1;
0b242b12 932 } else if (type == SSH_SMSG_FAILURE) {
bbe88b6d 933 logit("Warning: Remote host denied X11 forwarding.");
0b242b12 934 } else {
5260325f 935 packet_disconnect("Protocol error waiting for X11 forwarding");
0b242b12 936 }
5260325f 937 }
938 /* Tell the packet module whether this is an interactive session. */
b5c334cc 939 packet_set_interactive(interactive);
5260325f 940
941 /* Request authentication agent forwarding if appropriate. */
fa08c86b 942 check_agent_present();
943
5260325f 944 if (options.forward_agent) {
945 debug("Requesting authentication agent forwarding.");
946 auth_request_forwarding();
947
948 /* Read response from the server. */
54a5250f 949 type = packet_read();
95500969 950 packet_check_eom();
5260325f 951 if (type != SSH_SMSG_SUCCESS)
bbe88b6d 952 logit("Warning: Remote host denied authentication agent forwarding.");
5260325f 953 }
8efc0c15 954
fa08c86b 955 /* Initiate port forwardings. */
956 ssh_init_forwarding();
5260325f 957
aa3378df 958 /* If requested, let ssh continue in the background. */
6ae2364d 959 if (fork_after_authentication_flag)
aa3378df 960 if (daemon(1, 1) < 0)
961 fatal("daemon() failed: %.200s", strerror(errno));
962
963 /*
964 * If a command was specified on the command line, execute the
965 * command now. Otherwise request the server to start a shell.
966 */
5260325f 967 if (buffer_len(&command) > 0) {
968 int len = buffer_len(&command);
969 if (len > 900)
970 len = 900;
6c0fa2b1 971 debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
5260325f 972 packet_start(SSH_CMSG_EXEC_CMD);
973 packet_put_string(buffer_ptr(&command), buffer_len(&command));
974 packet_send();
975 packet_write_wait();
976 } else {
977 debug("Requesting shell.");
978 packet_start(SSH_CMSG_EXEC_SHELL);
979 packet_send();
980 packet_write_wait();
981 }
982
983 /* Enter the interactive session. */
4bf9c10e 984 return client_loop(have_tty, tty_flag ?
985 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
8ce64345 986}
5260325f 987
396c147e 988static void
7819b5c3 989client_subsystem_reply(int type, u_int32_t seq, void *ctxt)
1f3bf5aa 990{
991 int id, len;
992
993 id = packet_get_int();
994 len = buffer_len(&command);
ce91d6f8 995 if (len > 900)
996 len = 900;
95500969 997 packet_check_eom();
1f3bf5aa 998 if (type == SSH2_MSG_CHANNEL_FAILURE)
999 fatal("Request for subsystem '%.*s' failed on channel %d",
6c0fa2b1 1000 len, (u_char *)buffer_ptr(&command), id);
1f3bf5aa 1001}
1002
e0ae8728 1003void
1004client_global_request_reply(int type, u_int32_t seq, void *ctxt)
1005{
1006 int i;
1007
1008 i = client_global_request_id++;
1009 if (i >= options.num_remote_forwards) {
1010 debug("client_global_request_reply: too many replies %d > %d",
1011 i, options.num_remote_forwards);
1012 return;
1013 }
1014 debug("remote forward %s for: listen %d, connect %s:%d",
1015 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
1016 options.remote_forwards[i].port,
1017 options.remote_forwards[i].host,
1018 options.remote_forwards[i].host_port);
1019 if (type == SSH2_MSG_REQUEST_FAILURE)
bbe88b6d 1020 logit("Warning: remote port forwarding failed for listen port %d",
e0ae8728 1021 options.remote_forwards[i].port);
1022}
1023
bcdb96c2 1024/* request pty/x11/agent/tcpfwd/shell for channel */
396c147e 1025static void
bcdb96c2 1026ssh_session2_setup(int id, void *arg)
8ce64345 1027{
1028 int len;
b5c334cc 1029 int interactive = 0;
30dcc918 1030 struct termios tio;
b5c334cc 1031
83bbc162 1032 debug2("ssh_session2_setup: id %d", id);
8ce64345 1033
8ce64345 1034 if (tty_flag) {
1035 struct winsize ws;
1036 char *cp;
1037 cp = getenv("TERM");
1038 if (!cp)
1039 cp = "";
1040 /* Store window size in the packet. */
1041 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1042 memset(&ws, 0, sizeof(ws));
1043
1044 channel_request_start(id, "pty-req", 0);
1045 packet_put_cstring(cp);
1046 packet_put_int(ws.ws_col);
1047 packet_put_int(ws.ws_row);
1048 packet_put_int(ws.ws_xpixel);
1049 packet_put_int(ws.ws_ypixel);
30dcc918 1050 tio = get_saved_tio();
1051 tty_make_modes(/*ignored*/ 0, &tio);
8ce64345 1052 packet_send();
b5c334cc 1053 interactive = 1;
8ce64345 1054 /* XXX wait for reply */
1055 }
0b242b12 1056 if (options.forward_x11 &&
1057 getenv("DISPLAY") != NULL) {
b48eeb07 1058 char *proto, *data;
0b242b12 1059 /* Get reasonable local authentication information. */
b48eeb07 1060 x11_get_proto(&proto, &data);
0b242b12 1061 /* Request forwarding with authentication spoofing. */
1062 debug("Requesting X11 forwarding with authentication spoofing.");
1063 x11_request_forwarding_with_spoofing(id, proto, data);
b5c334cc 1064 interactive = 1;
0b242b12 1065 /* XXX wait for reply */
1066 }
1067
fa08c86b 1068 check_agent_present();
1069 if (options.forward_agent) {
1070 debug("Requesting authentication agent forwarding.");
1071 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1072 packet_send();
1073 }
1074
8ce64345 1075 len = buffer_len(&command);
1076 if (len > 0) {
1077 if (len > 900)
1078 len = 900;
ae810de7 1079 if (subsystem_flag) {
6c0fa2b1 1080 debug("Sending subsystem: %.*s", len, (u_char *)buffer_ptr(&command));
1f3bf5aa 1081 channel_request_start(id, "subsystem", /*want reply*/ 1);
1082 /* register callback for reply */
c242fc96 1083 /* XXX we assume that client_loop has already been called */
1f3bf5aa 1084 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &client_subsystem_reply);
1085 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &client_subsystem_reply);
ae810de7 1086 } else {
6c0fa2b1 1087 debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
ae810de7 1088 channel_request_start(id, "exec", 0);
1089 }
ce91d6f8 1090 packet_put_string(buffer_ptr(&command), buffer_len(&command));
8ce64345 1091 packet_send();
1092 } else {
06ee33fb 1093 channel_request_start(id, "shell", 0);
1094 packet_send();
8ce64345 1095 }
1f3bf5aa 1096
b5c334cc 1097 packet_set_interactive(interactive);
8ce64345 1098}
1099
bcdb96c2 1100/* open new channel for a session */
396c147e 1101static int
bcdb96c2 1102ssh_session2_open(void)
8ce64345 1103{
719fc62f 1104 Channel *c;
1105 int window, packetmax, in, out, err;
2e73a022 1106
14a9a859 1107 if (stdin_null_flag) {
5ca51e19 1108 in = open(_PATH_DEVNULL, O_RDONLY);
14a9a859 1109 } else {
1110 in = dup(STDIN_FILENO);
1111 }
2e73a022 1112 out = dup(STDOUT_FILENO);
1113 err = dup(STDERR_FILENO);
8ce64345 1114
1115 if (in < 0 || out < 0 || err < 0)
14a9a859 1116 fatal("dup() in/out/err failed");
8ce64345 1117
a22aff1f 1118 /* enable nonblocking unless tty */
1119 if (!isatty(in))
1120 set_nonblock(in);
1121 if (!isatty(out))
1122 set_nonblock(out);
1123 if (!isatty(err))
1124 set_nonblock(err);
1125
bcbf86ec 1126 window = CHAN_SES_WINDOW_DEFAULT;
1127 packetmax = CHAN_SES_PACKET_DEFAULT;
ea9700ba 1128 if (tty_flag) {
1129 window >>= 1;
1130 packetmax >>= 1;
8ce64345 1131 }
719fc62f 1132 c = channel_new(
8ce64345 1133 "session", SSH_CHANNEL_OPENING, in, out, err,
bcbf86ec 1134 window, packetmax, CHAN_EXTENDED_WRITE,
0d942eff 1135 "client-session", /*nonblock*/0);
8ce64345 1136
bcdb96c2 1137 debug3("ssh_session2_open: channel_new: %d", c->self);
eb0dd41f 1138
36e1f6a1 1139 channel_send_open(c->self);
bcdb96c2 1140 if (!no_shell_flag)
05ca0898 1141 channel_register_confirm(c->self, ssh_session2_setup);
5260325f 1142
719fc62f 1143 return c->self;
eb0dd41f 1144}
1145
396c147e 1146static int
eb0dd41f 1147ssh_session2(void)
1148{
bcdb96c2 1149 int id = -1;
eb0dd41f 1150
1151 /* XXX should be pre-session */
1152 ssh_init_forwarding();
1153
bcdb96c2 1154 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1155 id = ssh_session2_open();
eb0dd41f 1156
1157 /* If requested, let ssh continue in the background. */
1158 if (fork_after_authentication_flag)
1159 if (daemon(1, 1) < 0)
1160 fatal("daemon() failed: %.200s", strerror(errno));
1161
4bf9c10e 1162 return client_loop(tty_flag, tty_flag ?
1163 options.escape_char : SSH_ESCAPECHAR_NONE, id);
8efc0c15 1164}
fa08c86b 1165
396c147e 1166static void
fee56204 1167load_public_identity_files(void)
1168{
1169 char *filename;
2e23cde0 1170 int i = 0;
0659cace 1171 Key *public;
383546c4 1172#ifdef SMARTCARD
0659cace 1173 Key **keys;
1174
9ff6f66f 1175 if (options.smartcard_device != NULL &&
0659cace 1176 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
1177 (keys = sc_get_keys(options.smartcard_device, NULL)) != NULL ) {
1178 int count = 0;
1179 for (i = 0; keys[i] != NULL; i++) {
1180 count++;
0659cace 1181 memmove(&options.identity_files[1], &options.identity_files[0],
1182 sizeof(char *) * (SSH_MAX_IDENTITY_FILES - 1));
1183 memmove(&options.identity_keys[1], &options.identity_keys[0],
1184 sizeof(Key *) * (SSH_MAX_IDENTITY_FILES - 1));
1185 options.num_identity_files++;
1186 options.identity_keys[0] = keys[i];
244e796f 1187 options.identity_files[0] = sc_get_key_label(keys[i]);
0659cace 1188 }
1c2deed1 1189 if (options.num_identity_files > SSH_MAX_IDENTITY_FILES)
1190 options.num_identity_files = SSH_MAX_IDENTITY_FILES;
0659cace 1191 i = count;
1192 xfree(keys);
383546c4 1193 }
3e984472 1194#endif /* SMARTCARD */
2e23cde0 1195 for (; i < options.num_identity_files; i++) {
1196 filename = tilde_expand_filename(options.identity_files[i],
1197 original_real_uid);
1198 public = key_load_public(filename, NULL);
1199 debug("identity file %s type %d", filename,
1200 public ? public->type : -1);
1201 xfree(options.identity_files[i]);
1202 options.identity_files[i] = filename;
1203 options.identity_keys[i] = public;
1204 }
fee56204 1205}
This page took 0.411617 seconds and 5 git commands to generate.