]> andersk Git - openssh.git/blame - ssh.c
- (djm) Reorder Makefile.in so clean targets work a little better when
[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;
5260325f 262
260d427b 263 __progname = get_progname(av[0]);
264dce47 264 init_rng();
265
aa3378df 266 /*
267 * Save the original real uid. It will be needed later (uid-swapping
268 * may clobber the real uid).
269 */
5260325f 270 original_real_uid = getuid();
271 original_effective_uid = geteuid();
272
7322ef0e 273#ifdef HAVE_SETRLIMIT
5260325f 274 /* If we are installed setuid root be careful to not drop core. */
275 if (original_real_uid != original_effective_uid) {
276 struct rlimit rlim;
277 rlim.rlim_cur = rlim.rlim_max = 0;
278 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
279 fatal("setrlimit failed: %.100s", strerror(errno));
8efc0c15 280 }
3c62e7eb 281#endif
63bd8c36 282 /* Get user data. */
283 pw = getpwuid(original_real_uid);
284 if (!pw) {
285 log("You don't exist, go away!");
286 exit(1);
287 }
288 /* Take a copy of the returned structure. */
289 pw = pwcopy(pw);
290
aa3378df 291 /*
292 * Use uid-swapping to give up root privileges for the duration of
293 * option processing. We will re-instantiate the rights when we are
294 * ready to create the privileged port, and will permanently drop
295 * them when the port has been created (actually, when the connection
296 * has been made, as we may need to create the port several times).
297 */
63bd8c36 298 temporarily_use_uid(pw);
5260325f 299
aa3378df 300 /*
301 * Set our umask to something reasonable, as some files are created
302 * with the default umask. This will make them world-readable but
303 * writable only by the owner, which is ok for all files for which we
304 * don't set the modes explicitly.
305 */
5260325f 306 umask(022);
307
5260325f 308 /* Initialize option structure to indicate that no values have been set. */
309 initialize_options(&options);
310
311 /* Parse command-line arguments. */
312 host = NULL;
313
f5a1a01a 314again:
315 while ((opt = getopt(ac, av,
1783c29f 316 "1246ab:c:e:fgi:kl:m:no:p:qstvxACD:I:L:NPR:TVX")) != -1) {
5260325f 317 switch (opt) {
1f3bf5aa 318 case '1':
319 options.protocol = SSH_PROTO_1;
320 break;
6ae2364d 321 case '2':
322 options.protocol = SSH_PROTO_2;
323 break;
48e671d5 324 case '4':
325 IPv4or6 = AF_INET;
326 break;
48e671d5 327 case '6':
328 IPv4or6 = AF_INET6;
329 break;
5260325f 330 case 'n':
331 stdin_null_flag = 1;
332 break;
5260325f 333 case 'f':
334 fork_after_authentication_flag = 1;
335 stdin_null_flag = 1;
336 break;
5260325f 337 case 'x':
338 options.forward_x11 = 0;
339 break;
5260325f 340 case 'X':
341 options.forward_x11 = 1;
342 break;
5260325f 343 case 'g':
344 options.gateway_ports = 1;
345 break;
5260325f 346 case 'P':
347 options.use_privileged_port = 0;
348 break;
5260325f 349 case 'a':
350 options.forward_agent = 0;
351 break;
71276795 352 case 'A':
353 options.forward_agent = 1;
354 break;
5260325f 355#ifdef AFS
356 case 'k':
357 options.kerberos_tgt_passing = 0;
358 options.afs_token_passing = 0;
359 break;
360#endif
361 case 'i':
362 if (stat(optarg, &st) < 0) {
f5a1a01a 363 fprintf(stderr, "Warning: Identity file %s "
364 "does not exist.\n", optarg);
5260325f 365 break;
366 }
f5a1a01a 367 if (options.num_identity_files >=
368 SSH_MAX_IDENTITY_FILES)
369 fatal("Too many identity files specified "
370 "(max %d)", SSH_MAX_IDENTITY_FILES);
371 options.identity_files[options.num_identity_files++] =
372 xstrdup(optarg);
5260325f 373 break;
383546c4 374 case 'I':
375#ifdef SMARTCARD
376 sc_reader_num = atoi(optarg);
377#else
378 fprintf(stderr, "no support for smartcards.\n");
379#endif
380 break;
5260325f 381 case 't':
8abcdba4 382 if (tty_flag)
383 force_tty_flag = 1;
5260325f 384 tty_flag = 1;
385 break;
5260325f 386 case 'v':
bcbf86ec 387 if (0 == debug_flag) {
388 debug_flag = 1;
389 options.log_level = SYSLOG_LEVEL_DEBUG1;
390 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
391 options.log_level++;
392 break;
f5a1a01a 393 } else
54b974dc 394 fatal("Too high debugging level.");
bcbf86ec 395 /* fallthrough */
5260325f 396 case 'V':
e68225b2 397 fprintf(stderr,
398 "%s, SSH protocols %d.%d/%d.%d, OpenSSL 0x%8.8lx\n",
a8be9f80 399 SSH_VERSION,
400 PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1,
e68225b2 401 PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2,
402 SSLeay());
5260325f 403 if (opt == 'V')
404 exit(0);
5260325f 405 break;
5260325f 406 case 'q':
407 options.log_level = SYSLOG_LEVEL_QUIET;
408 break;
5260325f 409 case 'e':
410 if (optarg[0] == '^' && optarg[2] == 0 &&
f5a1a01a 411 (u_char) optarg[1] >= 64 &&
412 (u_char) optarg[1] < 128)
1e3b8b07 413 options.escape_char = (u_char) optarg[1] & 31;
5260325f 414 else if (strlen(optarg) == 1)
1e3b8b07 415 options.escape_char = (u_char) optarg[0];
5260325f 416 else if (strcmp(optarg, "none") == 0)
4bf9c10e 417 options.escape_char = SSH_ESCAPECHAR_NONE;
5260325f 418 else {
f5a1a01a 419 fprintf(stderr, "Bad escape character '%s'.\n",
420 optarg);
5260325f 421 exit(1);
422 }
423 break;
5260325f 424 case 'c':
a306f2dd 425 if (ciphers_valid(optarg)) {
426 /* SSH2 only */
427 options.ciphers = xstrdup(optarg);
d0c832f3 428 options.cipher = SSH_CIPHER_ILLEGAL;
a306f2dd 429 } else {
430 /* SSH1 only */
c523303b 431 options.cipher = cipher_number(optarg);
432 if (options.cipher == -1) {
f5a1a01a 433 fprintf(stderr,
434 "Unknown cipher type '%s'\n",
435 optarg);
a306f2dd 436 exit(1);
437 }
f5a1a01a 438 if (options.cipher == SSH_CIPHER_3DES)
c523303b 439 options.ciphers = "3des-cbc";
f5a1a01a 440 else if (options.cipher == SSH_CIPHER_BLOWFISH)
c523303b 441 options.ciphers = "blowfish-cbc";
f5a1a01a 442 else
c523303b 443 options.ciphers = (char *)-1;
5260325f 444 }
445 break;
b2552997 446 case 'm':
447 if (mac_valid(optarg))
448 options.macs = xstrdup(optarg);
449 else {
f5a1a01a 450 fprintf(stderr, "Unknown mac type '%s'\n",
451 optarg);
b2552997 452 exit(1);
453 }
454 break;
5260325f 455 case 'p':
2d2a2c65 456 options.port = a2port(optarg);
457 if (options.port == 0) {
6031af8d 458 fprintf(stderr, "Bad port '%s'\n", optarg);
459 exit(1);
460 }
5260325f 461 break;
5260325f 462 case 'l':
463 options.user = optarg;
464 break;
5260325f 465 case 'R':
48e671d5 466 if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf,
467 &fwd_host_port) != 3 &&
468 sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf,
469 &fwd_host_port) != 3) {
f5a1a01a 470 fprintf(stderr,
471 "Bad forwarding specification '%s'.\n",
472 optarg);
5260325f 473 usage();
474 /* NOTREACHED */
475 }
f5a1a01a 476 add_remote_forward(&options, fwd_port, buf,
477 fwd_host_port);
5260325f 478 break;
5260325f 479 case 'L':
48e671d5 480 if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf,
481 &fwd_host_port) != 3 &&
482 sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf,
483 &fwd_host_port) != 3) {
f5a1a01a 484 fprintf(stderr,
485 "Bad forwarding specification '%s'.\n",
486 optarg);
5260325f 487 usage();
488 /* NOTREACHED */
489 }
f5a1a01a 490 add_local_forward(&options, fwd_port, buf,
491 fwd_host_port);
5260325f 492 break;
0490e609 493
494 case 'D':
2d2a2c65 495 fwd_port = a2port(optarg);
496 if (fwd_port == 0) {
f5a1a01a 497 fprintf(stderr, "Bad dynamic port '%s'\n",
498 optarg);
6031af8d 499 exit(1);
500 }
0490e609 501 add_local_forward(&options, fwd_port, "socks4", 0);
502 break;
503
5260325f 504 case 'C':
505 options.compression = 1;
506 break;
8ce64345 507 case 'N':
508 no_shell_flag = 1;
509 no_tty_flag = 1;
510 break;
8ce64345 511 case 'T':
512 no_tty_flag = 1;
513 break;
5260325f 514 case 'o':
515 dummy = 1;
f5a1a01a 516 if (process_config_line(&options, host ? host : "",
517 optarg, "command-line", 0, &dummy) != 0)
5260325f 518 exit(1);
519 break;
ae810de7 520 case 's':
521 subsystem_flag = 1;
522 break;
3435f5a6 523 case 'b':
524 options.bind_address = optarg;
525 break;
5260325f 526 default:
527 usage();
528 }
529 }
530
f5a1a01a 531 ac -= optind;
532 av += optind;
533
534 if (ac > 0 && !host && **av != '-') {
535 if (strchr(*av, '@')) {
536 p = xstrdup(*av);
537 cp = strchr(p, '@');
538 if (cp == NULL || cp == p)
539 usage();
540 options.user = p;
541 *cp = '\0';
542 host = ++cp;
543 } else
544 host = *av;
545 ac--, av++;
546 if (ac > 0) {
547 optind = 0;
548 optreset = 1;
549 goto again;
550 }
551 }
552
5260325f 553 /* Check that we got a host name. */
554 if (!host)
8efc0c15 555 usage();
5260325f 556
22d89d24 557 SSLeay_add_all_algorithms();
fa08c86b 558 ERR_load_crypto_strings();
22d89d24 559
5260325f 560 /* Initialize the command to execute on remote host. */
561 buffer_init(&command);
562
aa3378df 563 /*
564 * Save the command to execute on the remote host in a buffer. There
565 * is no limit on the length of the command, except by the maximum
566 * packet size. Also sets the tty flag if there is no command.
567 */
f5a1a01a 568 if (!ac) {
5260325f 569 /* No command specified - execute shell on a tty. */
570 tty_flag = 1;
ae810de7 571 if (subsystem_flag) {
f5a1a01a 572 fprintf(stderr,
573 "You must specify a subsystem to invoke.\n");
ae810de7 574 usage();
575 }
5260325f 576 } else {
f5a1a01a 577 /* A command has been specified. Store it into the buffer. */
578 for (i = 0; i < ac; i++) {
579 if (i)
5260325f 580 buffer_append(&command, " ", 1);
581 buffer_append(&command, av[i], strlen(av[i]));
582 }
8efc0c15 583 }
5260325f 584
585 /* Cannot fork to background if no command. */
14a9a859 586 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
5260325f 587 fatal("Cannot fork into background without a command to execute.");
588
589 /* Allocate a tty by default if no command specified. */
590 if (buffer_len(&command) == 0)
591 tty_flag = 1;
592
0b6fbf03 593 /* Force no tty*/
594 if (no_tty_flag)
595 tty_flag = 0;
5260325f 596 /* Do not allocate a tty if stdin is not a tty. */
8abcdba4 597 if (!isatty(fileno(stdin)) && !force_tty_flag) {
5260325f 598 if (tty_flag)
54b974dc 599 log("Pseudo-terminal will not be allocated because stdin is not a terminal.");
5260325f 600 tty_flag = 0;
601 }
8ce64345 602
20244695 603 /*
604 * Initialize "log" output. Since we are the client all output
605 * actually goes to stderr.
606 */
cc44f691 607 log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
608 SYSLOG_FACILITY_USER, 1);
5260325f 609
610 /* Read per-user configuration file. */
42f11eb2 611 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, _PATH_SSH_USER_CONFFILE);
5260325f 612 read_config_file(buf, host, &options);
613
614 /* Read systemwide configuration file. */
42f11eb2 615 read_config_file(_PATH_HOST_CONFIG_FILE, host, &options);
5260325f 616
617 /* Fill configuration defaults. */
618 fill_default_options(&options);
619
620 /* reinit */
20244695 621 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
5260325f 622
e339aa53 623 seed_rng();
624
5260325f 625 if (options.user == NULL)
626 options.user = xstrdup(pw->pw_name);
627
628 if (options.hostname != NULL)
629 host = options.hostname;
630
5260325f 631 /* Disable rhosts authentication if not running as root. */
3c62e7eb 632#ifdef HAVE_CYGWIN
633 /* Ignore uid if running under Windows */
634 if (!options.use_privileged_port) {
635#else
5260325f 636 if (original_effective_uid != 0 || !options.use_privileged_port) {
3c62e7eb 637#endif
6ffc9c88 638 debug("Rhosts Authentication disabled, "
639 "originating port will not be trusted.");
5260325f 640 options.rhosts_authentication = 0;
5260325f 641 }
aa3378df 642 /*
643 * If using rsh has been selected, exec it now (without trying
644 * anything else). Note that we must release privileges first.
645 */
5260325f 646 if (options.use_rsh) {
aa3378df 647 /*
648 * Restore our superuser privileges. This must be done
649 * before permanently setting the uid.
650 */
5260325f 651 restore_uid();
652
653 /* Switch to the original uid permanently. */
63bd8c36 654 permanently_set_uid(pw);
5260325f 655
656 /* Execute rsh. */
657 rsh_connect(host, options.user, &command);
658 fatal("rsh_connect returned");
8efc0c15 659 }
5260325f 660 /* Restore our superuser privileges. */
661 restore_uid();
662
6ffc9c88 663 /* Open a connection to the remote host. */
5260325f 664
665 ok = ssh_connect(host, &hostaddr, options.port,
6ffc9c88 666 options.connection_attempts,
667 original_effective_uid != 0 || !options.use_privileged_port,
63bd8c36 668 pw, options.proxy_command);
5260325f 669
aa3378df 670 /*
671 * If we successfully made the connection, load the host private key
672 * in case we will need it later for combined rsa-rhosts
673 * authentication. This must be done before releasing extra
674 * privileges, because the file is only readable by root.
675 */
8002af61 676 sensitive_data.nkeys = 0;
677 sensitive_data.keys = NULL;
678 if (ok && (options.rhosts_rsa_authentication ||
679 options.hostbased_authentication)) {
680 sensitive_data.nkeys = 3;
681 sensitive_data.keys = xmalloc(sensitive_data.nkeys*sizeof(Key));
682 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
aeaa3d9e 683 _PATH_HOST_KEY_FILE, "", NULL);
8002af61 684 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
685 _PATH_HOST_DSA_KEY_FILE, "", NULL);
686 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
687 _PATH_HOST_RSA_KEY_FILE, "", NULL);
5260325f 688 }
aa3378df 689 /*
690 * Get rid of any extra privileges that we may have. We will no
691 * longer need them. Also, extra privileges could make it very hard
692 * to read identity files and other non-world-readable files from the
693 * user's home directory if it happens to be on a NFS volume where
694 * root is mapped to nobody.
695 */
696
697 /*
698 * Note that some legacy systems need to postpone the following call
699 * to permanently_set_uid() until the private hostkey is destroyed
700 * with RSA_free(). Otherwise the calling user could ptrace() the
701 * process, read the private hostkey and impersonate the host.
702 * OpenBSD does not allow ptracing of setuid processes.
703 */
63bd8c36 704 permanently_set_uid(pw);
5260325f 705
aa3378df 706 /*
707 * Now that we are back to our own permissions, create ~/.ssh
708 * directory if it doesn\'t already exist.
709 */
42f11eb2 710 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, _PATH_SSH_USER_DIR);
5260325f 711 if (stat(buf, &st) < 0)
704b1659 712 if (mkdir(buf, 0700) < 0)
5260325f 713 error("Could not create directory '%.200s'.", buf);
714
715 /* Check if the connection failed, and try "rsh" if appropriate. */
716 if (!ok) {
717 if (options.port != 0)
57112b5a 718 log("Secure connection to %.100s on port %hu refused%.100s.",
5260325f 719 host, options.port,
720 options.fallback_to_rsh ? "; reverting to insecure method" : "");
721 else
722 log("Secure connection to %.100s refused%.100s.", host,
723 options.fallback_to_rsh ? "; reverting to insecure method" : "");
724
725 if (options.fallback_to_rsh) {
726 rsh_connect(host, options.user, &command);
727 fatal("rsh_connect returned");
728 }
729 exit(1);
8efc0c15 730 }
fee56204 731 /* load options.identity_files */
732 load_public_identity_files();
733
734 /* Expand ~ in known host file names. */
735 /* XXX mem-leaks: */
fa08c86b 736 options.system_hostfile =
737 tilde_expand_filename(options.system_hostfile, original_real_uid);
738 options.user_hostfile =
739 tilde_expand_filename(options.user_hostfile, original_real_uid);
740 options.system_hostfile2 =
741 tilde_expand_filename(options.system_hostfile2, original_real_uid);
742 options.user_hostfile2 =
743 tilde_expand_filename(options.user_hostfile2, original_real_uid);
5260325f 744
745 /* Log into the remote system. This never returns if the login fails. */
8002af61 746 ssh_login(sensitive_data.keys, sensitive_data.nkeys,
747 host, (struct sockaddr *)&hostaddr, pw);
748
749 /* We no longer need the private host keys. Clear them now. */
750 if (sensitive_data.nkeys != 0) {
751 for (i = 0; i < sensitive_data.nkeys; i++) {
752 if (sensitive_data.keys[i] != NULL) {
753 /* Destroys contents safely */
754 debug3("clear hostkey %d", i);
755 key_free(sensitive_data.keys[i]);
756 sensitive_data.keys[i] = NULL;
757 }
758 }
759 xfree(sensitive_data.keys);
760 }
5260325f 761
8ce64345 762 exit_status = compat20 ? ssh_session2() : ssh_session();
763 packet_close();
764 return exit_status;
765}
766
396c147e 767static void
0b242b12 768x11_get_proto(char *proto, int proto_len, char *data, int data_len)
769{
770 char line[512];
771 FILE *f;
772 int got_data = 0, i;
773
fa649821 774 if (options.xauth_location) {
775 /* Try to get Xauthority information for the display. */
5ca51e19 776 snprintf(line, sizeof line, "%.100s list %.200s 2>" _PATH_DEVNULL,
fa649821 777 options.xauth_location, getenv("DISPLAY"));
778 f = popen(line, "r");
779 if (f && fgets(line, sizeof(line), f) &&
780 sscanf(line, "%*s %s %s", proto, data) == 2)
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
796 strlcpy(proto, "MIT-MAGIC-COOKIE-1", proto_len);
797 for (i = 0; i < 16; i++) {
798 if (i % 4 == 0)
799 rand = arc4random();
800 snprintf(data + 2 * i, data_len - 2 * i, "%02x", rand & 0xff);
801 rand >>= 8;
802 }
803 }
804}
805
396c147e 806static void
fa08c86b 807ssh_init_forwarding(void)
808{
02a024dd 809 int success = 0;
fa08c86b 810 int i;
02a024dd 811
fa08c86b 812 /* Initiate local TCP/IP port forwardings. */
813 for (i = 0; i < options.num_local_forwards; i++) {
814 debug("Connections to local port %d forwarded to remote address %.200s:%d",
815 options.local_forwards[i].port,
816 options.local_forwards[i].host,
817 options.local_forwards[i].host_port);
02a024dd 818 success += channel_request_local_forwarding(
fa08c86b 819 options.local_forwards[i].port,
820 options.local_forwards[i].host,
821 options.local_forwards[i].host_port,
822 options.gateway_ports);
823 }
02a024dd 824 if (i > 0 && success == 0)
825 error("Could not request local forwarding.");
fa08c86b 826
827 /* Initiate remote TCP/IP port forwardings. */
828 for (i = 0; i < options.num_remote_forwards; i++) {
829 debug("Connections to remote port %d forwarded to local address %.200s:%d",
830 options.remote_forwards[i].port,
831 options.remote_forwards[i].host,
832 options.remote_forwards[i].host_port);
833 channel_request_remote_forwarding(
834 options.remote_forwards[i].port,
835 options.remote_forwards[i].host,
836 options.remote_forwards[i].host_port);
837 }
838}
839
396c147e 840static void
fa08c86b 841check_agent_present(void)
842{
843 if (options.forward_agent) {
844 /* Clear agent forwarding if we don\'t have an agent. */
845 int authfd = ssh_get_authentication_socket();
846 if (authfd < 0)
847 options.forward_agent = 0;
848 else
849 ssh_close_authentication_socket(authfd);
850 }
851}
852
396c147e 853static int
8ce64345 854ssh_session(void)
855{
856 int type;
8ce64345 857 int plen;
858 int interactive = 0;
859 int have_tty = 0;
860 struct winsize ws;
8ce64345 861 char *cp;
862
5260325f 863 /* Enable compression if requested. */
864 if (options.compression) {
865 debug("Requesting compression at level %d.", options.compression_level);
866
867 if (options.compression_level < 1 || options.compression_level > 9)
868 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
869
870 /* Send the request. */
871 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
872 packet_put_int(options.compression_level);
873 packet_send();
874 packet_write_wait();
875 type = packet_read(&plen);
876 if (type == SSH_SMSG_SUCCESS)
877 packet_start_compression(options.compression_level);
878 else if (type == SSH_SMSG_FAILURE)
879 log("Warning: Remote host refused compression.");
880 else
881 packet_disconnect("Protocol error waiting for compression response.");
882 }
883 /* Allocate a pseudo tty if appropriate. */
884 if (tty_flag) {
885 debug("Requesting pty.");
886
887 /* Start the packet. */
888 packet_start(SSH_CMSG_REQUEST_PTY);
889
890 /* Store TERM in the packet. There is no limit on the
891 length of the string. */
892 cp = getenv("TERM");
893 if (!cp)
894 cp = "";
449c5ba5 895 packet_put_cstring(cp);
5260325f 896
897 /* Store window size in the packet. */
898 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
899 memset(&ws, 0, sizeof(ws));
900 packet_put_int(ws.ws_row);
901 packet_put_int(ws.ws_col);
902 packet_put_int(ws.ws_xpixel);
903 packet_put_int(ws.ws_ypixel);
904
905 /* Store tty modes in the packet. */
30dcc918 906 tty_make_modes(fileno(stdin), NULL);
5260325f 907
908 /* Send the packet, and wait for it to leave. */
909 packet_send();
910 packet_write_wait();
911
912 /* Read response from the server. */
913 type = packet_read(&plen);
4fe2af09 914 if (type == SSH_SMSG_SUCCESS) {
5260325f 915 interactive = 1;
8ce64345 916 have_tty = 1;
4fe2af09 917 } else if (type == SSH_SMSG_FAILURE)
5260325f 918 log("Warning: Remote host failed or refused to allocate a pseudo tty.");
919 else
920 packet_disconnect("Protocol error waiting for pty request response.");
921 }
922 /* Request X11 forwarding if enabled and DISPLAY is set. */
923 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
0b242b12 924 char proto[512], data[512];
925 /* Get reasonable local authentication information. */
926 x11_get_proto(proto, sizeof proto, data, sizeof data);
927 /* Request forwarding with authentication spoofing. */
5260325f 928 debug("Requesting X11 forwarding with authentication spoofing.");
0b242b12 929 x11_request_forwarding_with_spoofing(0, proto, data);
5260325f 930
931 /* Read response from the server. */
932 type = packet_read(&plen);
933 if (type == SSH_SMSG_SUCCESS) {
5260325f 934 interactive = 1;
0b242b12 935 } else if (type == SSH_SMSG_FAILURE) {
5260325f 936 log("Warning: Remote host denied X11 forwarding.");
0b242b12 937 } else {
5260325f 938 packet_disconnect("Protocol error waiting for X11 forwarding");
0b242b12 939 }
5260325f 940 }
941 /* Tell the packet module whether this is an interactive session. */
b5c334cc 942 packet_set_interactive(interactive);
5260325f 943
944 /* Request authentication agent forwarding if appropriate. */
fa08c86b 945 check_agent_present();
946
5260325f 947 if (options.forward_agent) {
948 debug("Requesting authentication agent forwarding.");
949 auth_request_forwarding();
950
951 /* Read response from the server. */
952 type = packet_read(&plen);
953 packet_integrity_check(plen, 0, type);
954 if (type != SSH_SMSG_SUCCESS)
955 log("Warning: Remote host denied authentication agent forwarding.");
956 }
8efc0c15 957
fa08c86b 958 /* Initiate port forwardings. */
959 ssh_init_forwarding();
5260325f 960
aa3378df 961 /* If requested, let ssh continue in the background. */
6ae2364d 962 if (fork_after_authentication_flag)
aa3378df 963 if (daemon(1, 1) < 0)
964 fatal("daemon() failed: %.200s", strerror(errno));
965
966 /*
967 * If a command was specified on the command line, execute the
968 * command now. Otherwise request the server to start a shell.
969 */
5260325f 970 if (buffer_len(&command) > 0) {
971 int len = buffer_len(&command);
972 if (len > 900)
973 len = 900;
974 debug("Sending command: %.*s", len, buffer_ptr(&command));
975 packet_start(SSH_CMSG_EXEC_CMD);
976 packet_put_string(buffer_ptr(&command), buffer_len(&command));
977 packet_send();
978 packet_write_wait();
979 } else {
980 debug("Requesting shell.");
981 packet_start(SSH_CMSG_EXEC_SHELL);
982 packet_send();
983 packet_write_wait();
984 }
985
986 /* Enter the interactive session. */
4bf9c10e 987 return client_loop(have_tty, tty_flag ?
988 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
8ce64345 989}
5260325f 990
396c147e 991static void
1f3bf5aa 992client_subsystem_reply(int type, int plen, void *ctxt)
993{
994 int id, len;
995
996 id = packet_get_int();
997 len = buffer_len(&command);
ce91d6f8 998 if (len > 900)
999 len = 900;
1f3bf5aa 1000 packet_done();
1001 if (type == SSH2_MSG_CHANNEL_FAILURE)
1002 fatal("Request for subsystem '%.*s' failed on channel %d",
1003 len, buffer_ptr(&command), id);
1004}
1005
396c147e 1006static void
fa08c86b 1007ssh_session2_callback(int id, void *arg)
8ce64345 1008{
1009 int len;
b5c334cc 1010 int interactive = 0;
30dcc918 1011 struct termios tio;
b5c334cc 1012
6a416424 1013 debug("client_init id %d arg %ld", id, (long)arg);
8ce64345 1014
8ce64345 1015 if (tty_flag) {
1016 struct winsize ws;
1017 char *cp;
1018 cp = getenv("TERM");
1019 if (!cp)
1020 cp = "";
1021 /* Store window size in the packet. */
1022 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1023 memset(&ws, 0, sizeof(ws));
1024
1025 channel_request_start(id, "pty-req", 0);
1026 packet_put_cstring(cp);
1027 packet_put_int(ws.ws_col);
1028 packet_put_int(ws.ws_row);
1029 packet_put_int(ws.ws_xpixel);
1030 packet_put_int(ws.ws_ypixel);
30dcc918 1031 tio = get_saved_tio();
1032 tty_make_modes(/*ignored*/ 0, &tio);
8ce64345 1033 packet_send();
b5c334cc 1034 interactive = 1;
8ce64345 1035 /* XXX wait for reply */
1036 }
0b242b12 1037 if (options.forward_x11 &&
1038 getenv("DISPLAY") != NULL) {
1039 char proto[512], data[512];
1040 /* Get reasonable local authentication information. */
1041 x11_get_proto(proto, sizeof proto, data, sizeof data);
1042 /* Request forwarding with authentication spoofing. */
1043 debug("Requesting X11 forwarding with authentication spoofing.");
1044 x11_request_forwarding_with_spoofing(id, proto, data);
b5c334cc 1045 interactive = 1;
0b242b12 1046 /* XXX wait for reply */
1047 }
1048
fa08c86b 1049 check_agent_present();
1050 if (options.forward_agent) {
1051 debug("Requesting authentication agent forwarding.");
1052 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1053 packet_send();
1054 }
1055
8ce64345 1056 len = buffer_len(&command);
1057 if (len > 0) {
1058 if (len > 900)
1059 len = 900;
ae810de7 1060 if (subsystem_flag) {
1061 debug("Sending subsystem: %.*s", len, buffer_ptr(&command));
1f3bf5aa 1062 channel_request_start(id, "subsystem", /*want reply*/ 1);
1063 /* register callback for reply */
1064 /* XXX we asume that client_loop has already been called */
1065 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &client_subsystem_reply);
1066 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &client_subsystem_reply);
ae810de7 1067 } else {
1068 debug("Sending command: %.*s", len, buffer_ptr(&command));
1069 channel_request_start(id, "exec", 0);
1070 }
ce91d6f8 1071 packet_put_string(buffer_ptr(&command), buffer_len(&command));
8ce64345 1072 packet_send();
1073 } else {
1074 channel_request(id, "shell", 0);
1075 }
1076 /* channel_callback(id, SSH2_MSG_OPEN_CONFIGMATION, client_init, 0); */
1f3bf5aa 1077
8ce64345 1078 /* register different callback, etc. XXX */
b5c334cc 1079 packet_set_interactive(interactive);
8ce64345 1080}
1081
396c147e 1082static int
eb0dd41f 1083ssh_session2_command(void)
8ce64345 1084{
719fc62f 1085 Channel *c;
1086 int window, packetmax, in, out, err;
2e73a022 1087
14a9a859 1088 if (stdin_null_flag) {
5ca51e19 1089 in = open(_PATH_DEVNULL, O_RDONLY);
14a9a859 1090 } else {
1091 in = dup(STDIN_FILENO);
1092 }
2e73a022 1093 out = dup(STDOUT_FILENO);
1094 err = dup(STDERR_FILENO);
8ce64345 1095
1096 if (in < 0 || out < 0 || err < 0)
14a9a859 1097 fatal("dup() in/out/err failed");
8ce64345 1098
a22aff1f 1099 /* enable nonblocking unless tty */
1100 if (!isatty(in))
1101 set_nonblock(in);
1102 if (!isatty(out))
1103 set_nonblock(out);
1104 if (!isatty(err))
1105 set_nonblock(err);
1106
bcbf86ec 1107 window = CHAN_SES_WINDOW_DEFAULT;
1108 packetmax = CHAN_SES_PACKET_DEFAULT;
1109 if (!tty_flag) {
8ce64345 1110 window *= 2;
bcbf86ec 1111 packetmax *=2;
8ce64345 1112 }
719fc62f 1113 c = channel_new(
8ce64345 1114 "session", SSH_CHANNEL_OPENING, in, out, err,
bcbf86ec 1115 window, packetmax, CHAN_EXTENDED_WRITE,
a22aff1f 1116 xstrdup("client-session"), /*nonblock*/0);
719fc62f 1117 if (c == NULL)
1118 fatal("ssh_session2_command: channel_new failed");
8ce64345 1119
719fc62f 1120 debug3("ssh_session2_command: channel_new: %d", c->self);
eb0dd41f 1121
36e1f6a1 1122 channel_send_open(c->self);
719fc62f 1123 channel_register_callback(c->self, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION,
fa08c86b 1124 ssh_session2_callback, (void *)0);
5260325f 1125
719fc62f 1126 return c->self;
eb0dd41f 1127}
1128
396c147e 1129static int
eb0dd41f 1130ssh_session2(void)
1131{
1132 int id;
1133
1134 /* XXX should be pre-session */
1135 ssh_init_forwarding();
1136
1137 id = no_shell_flag ? -1 : ssh_session2_command();
1138
1139 /* If requested, let ssh continue in the background. */
1140 if (fork_after_authentication_flag)
1141 if (daemon(1, 1) < 0)
1142 fatal("daemon() failed: %.200s", strerror(errno));
1143
4bf9c10e 1144 return client_loop(tty_flag, tty_flag ?
1145 options.escape_char : SSH_ESCAPECHAR_NONE, id);
8efc0c15 1146}
fa08c86b 1147
396c147e 1148static void
fee56204 1149load_public_identity_files(void)
1150{
1151 char *filename;
1152 Key *public;
1153 int i;
1154
1155 for (i = 0; i < options.num_identity_files; i++) {
1156 filename = tilde_expand_filename(options.identity_files[i],
1157 original_real_uid);
aeaa3d9e 1158 public = key_load_public(filename, NULL);
fee56204 1159 debug("identity file %s type %d", filename,
1160 public ? public->type : -1);
1161 xfree(options.identity_files[i]);
1162 options.identity_files[i] = filename;
1163 options.identity_keys[i] = public;
1164 }
383546c4 1165#ifdef SMARTCARD
1166 if (sc_reader_num != -1 &&
1167 options.num_identity_files + 1 < SSH_MAX_IDENTITY_FILES &&
1168 (public = sc_get_key(sc_reader_num)) != NULL ) {
1169 Key *new;
1170
1171 /* XXX ssh1 vs ssh2 */
1172 new = key_new(KEY_RSA);
1173 new->flags = KEY_FLAG_EXT;
1174 BN_copy(new->rsa->n, public->rsa->n);
1175 BN_copy(new->rsa->e, public->rsa->e);
1176 RSA_set_method(new->rsa, sc_get_engine());
1177 i = options.num_identity_files++;
1178 options.identity_keys[i] = new;
1179 options.identity_files[i] = xstrdup("smartcard rsa key");;
1180
1181 new = key_new(KEY_RSA1);
1182 new->flags = KEY_FLAG_EXT;
1183 BN_copy(new->rsa->n, public->rsa->n);
1184 BN_copy(new->rsa->e, public->rsa->e);
1185 RSA_set_method(new->rsa, sc_get_engine());
1186 i = options.num_identity_files++;
1187 options.identity_keys[i] = new;
1188 options.identity_files[i] = xstrdup("smartcard rsa1 key");;
1189
1190 key_free(public);
1191 }
1192#endif
fee56204 1193}
This page took 0.328063 seconds and 5 git commands to generate.