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