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