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