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