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