blob: 9f9055a5f289d710e9d13720e944ed9813e6c06b [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11005 * 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 *
Damien Millere4340be2000-09-16 13:29:08 +11009 * 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.
Damien Miller95def091999-11-25 00:26:21 +110039 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100040
41#include "includes.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000042RCSID("$OpenBSD: ssh.c,v 1.84 2001/01/21 19:05:58 markus Exp $");
Damien Millereba71ba2000-04-29 23:57:08 +100043
44#include <openssl/evp.h>
Damien Miller0bc1bd82000-11-13 22:57:25 +110045#include <openssl/err.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100046
Damien Millerd4a8b7e1999-10-27 13:42:43 +100047#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000048#include "ssh1.h"
Damien Miller1383bd82000-04-06 12:32:37 +100049#include "ssh2.h"
50#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000051#include "cipher.h"
52#include "xmalloc.h"
53#include "packet.h"
54#include "buffer.h"
55#include "uidswap.h"
Damien Millerb38eff82000-04-01 11:09:21 +100056#include "channels.h"
Damien Millereba71ba2000-04-29 23:57:08 +100057#include "key.h"
Damien Miller994cf142000-07-21 10:19:44 +100058#include "authfd.h"
Damien Millereba71ba2000-04-29 23:57:08 +100059#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000060#include "pathnames.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000061#include "clientloop.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000062#include "log.h"
63#include "readconf.h"
64#include "sshconnect.h"
65#include "tildexpand.h"
66#include "misc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100067
Damien Miller3f905871999-11-15 17:10:57 +110068#ifdef HAVE___PROGNAME
69extern char *__progname;
Ben Lindstrom49a79c02000-11-17 03:47:20 +000070#else
71char *__progname;
72#endif
Damien Miller3f905871999-11-15 17:10:57 +110073
Damien Miller34132e52000-01-14 15:45:46 +110074/* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
75 Default value is AF_UNSPEC means both IPv4 and IPv6. */
Damien Miller7d80e342000-01-19 14:36:49 +110076#ifdef IPV4_DEFAULT
77int IPv4or6 = AF_INET;
78#else
Damien Miller34132e52000-01-14 15:45:46 +110079int IPv4or6 = AF_UNSPEC;
Damien Miller7d80e342000-01-19 14:36:49 +110080#endif
Damien Miller34132e52000-01-14 15:45:46 +110081
Damien Miller95def091999-11-25 00:26:21 +110082/* Flag indicating whether debug mode is on. This can be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100083int debug_flag = 0;
84
Damien Miller78928792000-04-12 20:17:38 +100085/* Flag indicating whether a tty should be allocated */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100086int tty_flag = 0;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +000087int no_tty_flag = 0;
88int force_tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100089
Damien Miller1383bd82000-04-06 12:32:37 +100090/* don't exec a shell */
91int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +100092
Damien Miller5428f641999-11-25 11:54:57 +110093/*
94 * Flag indicating that nothing should be read from stdin. This can be set
95 * on the command line.
96 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100097int stdin_null_flag = 0;
98
Damien Miller5428f641999-11-25 11:54:57 +110099/*
100 * Flag indicating that ssh should fork after authentication. This is useful
101 * so that the pasphrase can be entered manually, and then ssh goes to the
102 * background.
103 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000104int fork_after_authentication_flag = 0;
105
Damien Miller5428f641999-11-25 11:54:57 +1100106/*
107 * General data structure for command line options and options configurable
108 * in configuration files. See readconf.h.
109 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000110Options options;
111
Damien Miller5428f641999-11-25 11:54:57 +1100112/*
113 * Name of the host we are connecting to. This is the name given on the
114 * command line, or the HostName specified for the user-supplied name in a
115 * configuration file.
116 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000117char *host;
118
119/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100120struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000121
Damien Miller5428f641999-11-25 11:54:57 +1100122/*
123 * Flag to indicate that we have received a window change signal which has
124 * not yet been processed. This will cause a message indicating the new
125 * window size to be sent to the server a little later. This is volatile
126 * because this is updated in a signal handler.
127 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000128volatile int received_window_change_signal = 0;
129
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000130/* Flag indicating whether we have a valid host private key loaded. */
131int host_private_key_loaded = 0;
132
133/* Host private key. */
134RSA *host_private_key = NULL;
135
136/* Original real UID. */
137uid_t original_real_uid;
138
Damien Miller1383bd82000-04-06 12:32:37 +1000139/* command to be executed */
140Buffer command;
141
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000142/* Prints a help message to the user. This function never returns. */
143
144void
145usage()
146{
Kevin Stevesec84dc12000-12-13 17:45:15 +0000147 fprintf(stderr, "Usage: %s [options] host [command]\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100148 fprintf(stderr, "Options:\n");
149 fprintf(stderr, " -l user Log in using this user name.\n");
150 fprintf(stderr, " -n Redirect input from /dev/null.\n");
Damien Millerb1715dc2000-05-30 13:44:51 +1000151 fprintf(stderr, " -A Enable authentication agent forwarding.\n");
Damien Miller95def091999-11-25 00:26:21 +1100152 fprintf(stderr, " -a Disable authentication agent forwarding.\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000153#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100154 fprintf(stderr, " -k Disable Kerberos ticket and AFS token forwarding.\n");
155#endif /* AFS */
Damien Millerdcb6ecd2000-05-17 22:34:22 +1000156 fprintf(stderr, " -X Enable X11 connection forwarding.\n");
Damien Miller95def091999-11-25 00:26:21 +1100157 fprintf(stderr, " -x Disable X11 connection forwarding.\n");
158 fprintf(stderr, " -i file Identity for RSA authentication (default: ~/.ssh/identity).\n");
159 fprintf(stderr, " -t Tty; allocate a tty even if command is given.\n");
Damien Miller1383bd82000-04-06 12:32:37 +1000160 fprintf(stderr, " -T Do not allocate a tty.\n");
Damien Miller95def091999-11-25 00:26:21 +1100161 fprintf(stderr, " -v Verbose; display verbose debugging messages.\n");
Damien Millere4340be2000-09-16 13:29:08 +1100162 fprintf(stderr, " Multiple -v increases verbosity.\n");
Damien Miller95def091999-11-25 00:26:21 +1100163 fprintf(stderr, " -V Display version number only.\n");
164 fprintf(stderr, " -P Don't allocate a privileged port.\n");
165 fprintf(stderr, " -q Quiet; don't display any warning messages.\n");
166 fprintf(stderr, " -f Fork into background after authentication.\n");
167 fprintf(stderr, " -e char Set escape character; ``none'' = disable (default: ~).\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000168
Damien Miller95def091999-11-25 00:26:21 +1100169 fprintf(stderr, " -c cipher Select encryption algorithm: "
170 "``3des'', "
171 "``blowfish''\n");
172 fprintf(stderr, " -p port Connect to this port. Server must be on the same port.\n");
173 fprintf(stderr, " -L listen-port:host:port Forward local port to remote address\n");
174 fprintf(stderr, " -R listen-port:host:port Forward remote port to local address\n");
Kevin Stevesec84dc12000-12-13 17:45:15 +0000175 fprintf(stderr, " These cause %s to listen for connections on a port, and\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100176 fprintf(stderr, " forward them to the other side by connecting to host:port.\n");
177 fprintf(stderr, " -C Enable compression.\n");
Damien Miller1383bd82000-04-06 12:32:37 +1000178 fprintf(stderr, " -N Do not execute a shell or command.\n");
Damien Miller95def091999-11-25 00:26:21 +1100179 fprintf(stderr, " -g Allow remote hosts to connect to forwarded ports.\n");
Damien Miller34132e52000-01-14 15:45:46 +1100180 fprintf(stderr, " -4 Use IPv4 only.\n");
181 fprintf(stderr, " -6 Use IPv6 only.\n");
Damien Miller4af51302000-04-16 11:18:38 +1000182 fprintf(stderr, " -2 Force protocol version 2.\n");
Damien Miller95def091999-11-25 00:26:21 +1100183 fprintf(stderr, " -o 'option' Process the option as if it was read from a configuration file.\n");
184 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000185}
186
Damien Miller95def091999-11-25 00:26:21 +1100187/*
188 * Connects to the given host using rsh (or prints an error message and exits
189 * if rsh is not available). This function never returns.
190 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000191void
Damien Miller95def091999-11-25 00:26:21 +1100192rsh_connect(char *host, char *user, Buffer * command)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000193{
Damien Miller95def091999-11-25 00:26:21 +1100194 char *args[10];
195 int i;
196
197 log("Using rsh. WARNING: Connection will not be encrypted.");
198 /* Build argument list for rsh. */
199 i = 0;
200 args[i++] = _PATH_RSH;
201 /* host may have to come after user on some systems */
202 args[i++] = host;
203 if (user) {
204 args[i++] = "-l";
205 args[i++] = user;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000206 }
Damien Miller95def091999-11-25 00:26:21 +1100207 if (buffer_len(command) > 0) {
208 buffer_append(command, "\0", 1);
209 args[i++] = buffer_ptr(command);
210 }
211 args[i++] = NULL;
212 if (debug_flag) {
213 for (i = 0; args[i]; i++) {
214 if (i != 0)
215 fprintf(stderr, " ");
216 fprintf(stderr, "%s", args[i]);
217 }
218 fprintf(stderr, "\n");
219 }
220 execv(_PATH_RSH, args);
221 perror(_PATH_RSH);
222 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000223}
224
Damien Miller0bc1bd82000-11-13 22:57:25 +1100225int ssh_session(void);
226int ssh_session2(void);
227int guess_identity_file_type(const char *filename);
Damien Miller1383bd82000-04-06 12:32:37 +1000228
Damien Miller95def091999-11-25 00:26:21 +1100229/*
230 * Main program for the ssh client.
231 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000232int
233main(int ac, char **av)
234{
Damien Miller1383bd82000-04-06 12:32:37 +1000235 int i, opt, optind, exit_status, ok;
Damien Milleraae6c611999-12-06 11:47:28 +1100236 u_short fwd_port, fwd_host_port;
Damien Miller95def091999-11-25 00:26:21 +1100237 char *optarg, *cp, buf[256];
Damien Miller95def091999-11-25 00:26:21 +1100238 struct stat st;
239 struct passwd *pw, pwcopy;
Damien Miller1383bd82000-04-06 12:32:37 +1000240 int dummy;
Damien Miller95def091999-11-25 00:26:21 +1100241 uid_t original_effective_uid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000242
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000243 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000244 init_rng();
245
Damien Miller5428f641999-11-25 11:54:57 +1100246 /*
247 * Save the original real uid. It will be needed later (uid-swapping
248 * may clobber the real uid).
249 */
Damien Miller95def091999-11-25 00:26:21 +1100250 original_real_uid = getuid();
251 original_effective_uid = geteuid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000252
Damien Miller05dd7952000-10-01 00:42:48 +1100253#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100254 /* If we are installed setuid root be careful to not drop core. */
255 if (original_real_uid != original_effective_uid) {
256 struct rlimit rlim;
257 rlim.rlim_cur = rlim.rlim_max = 0;
258 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
259 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000260 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100261#endif
Damien Miller5428f641999-11-25 11:54:57 +1100262 /*
263 * Use uid-swapping to give up root privileges for the duration of
264 * option processing. We will re-instantiate the rights when we are
265 * ready to create the privileged port, and will permanently drop
266 * them when the port has been created (actually, when the connection
267 * has been made, as we may need to create the port several times).
268 */
Damien Miller95def091999-11-25 00:26:21 +1100269 temporarily_use_uid(original_real_uid);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000270
Damien Miller5428f641999-11-25 11:54:57 +1100271 /*
272 * Set our umask to something reasonable, as some files are created
273 * with the default umask. This will make them world-readable but
274 * writable only by the owner, which is ok for all files for which we
275 * don't set the modes explicitly.
276 */
Damien Miller95def091999-11-25 00:26:21 +1100277 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000278
Damien Miller95def091999-11-25 00:26:21 +1100279 /* Initialize option structure to indicate that no values have been set. */
280 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000281
Damien Miller95def091999-11-25 00:26:21 +1100282 /* Parse command-line arguments. */
283 host = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000284
Damien Miller95def091999-11-25 00:26:21 +1100285 /* If program name is not one of the standard names, use it as host name. */
Kevin Stevesec84dc12000-12-13 17:45:15 +0000286 cp = __progname;
Damien Millerbac2d8a2000-09-05 16:13:06 +1100287#ifdef HAVE_CYGWIN
288 if (strcasecmp(cp, "rsh") && strcasecmp(cp, "ssh") &&
289 strcasecmp(cp, "rlogin") && strcasecmp(cp, "slogin") &&
290 strcasecmp(cp, "remsh") &&
291 strcasecmp(cp, "rsh.exe") && strcasecmp(cp, "ssh.exe") &&
292 strcasecmp(cp, "rlogin.exe") && strcasecmp(cp, "slogin.exe") &&
293 strcasecmp(cp, "remsh.exe"))
294#else
Damien Millerad833b32000-08-23 10:46:23 +1000295 if (strcmp(cp, "rsh") && strcmp(cp, "ssh") && strcmp(cp, "rlogin") &&
296 strcmp(cp, "slogin") && strcmp(cp, "remsh"))
Damien Millerbac2d8a2000-09-05 16:13:06 +1100297#endif
Damien Miller95def091999-11-25 00:26:21 +1100298 host = cp;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000299
Damien Miller95def091999-11-25 00:26:21 +1100300 for (optind = 1; optind < ac; optind++) {
301 if (av[optind][0] != '-') {
302 if (host)
303 break;
304 if ((cp = strchr(av[optind], '@'))) {
Damien Miller4af51302000-04-16 11:18:38 +1000305 if(cp == av[optind])
306 usage();
Damien Miller95def091999-11-25 00:26:21 +1100307 options.user = av[optind];
308 *cp = '\0';
309 host = ++cp;
310 } else
311 host = av[optind];
312 continue;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000313 }
Damien Miller95def091999-11-25 00:26:21 +1100314 opt = av[optind][1];
315 if (!opt)
316 usage();
317 if (strchr("eilcpLRo", opt)) { /* options with arguments */
318 optarg = av[optind] + 2;
319 if (strcmp(optarg, "") == 0) {
320 if (optind >= ac - 1)
321 usage();
322 optarg = av[++optind];
323 }
324 } else {
325 if (av[optind][2])
326 usage();
327 optarg = NULL;
328 }
329 switch (opt) {
Damien Miller4af51302000-04-16 11:18:38 +1000330 case '2':
331 options.protocol = SSH_PROTO_2;
332 break;
Damien Miller34132e52000-01-14 15:45:46 +1100333 case '4':
334 IPv4or6 = AF_INET;
335 break;
Damien Miller34132e52000-01-14 15:45:46 +1100336 case '6':
337 IPv4or6 = AF_INET6;
338 break;
Damien Miller95def091999-11-25 00:26:21 +1100339 case 'n':
340 stdin_null_flag = 1;
341 break;
Damien Miller95def091999-11-25 00:26:21 +1100342 case 'f':
343 fork_after_authentication_flag = 1;
344 stdin_null_flag = 1;
345 break;
Damien Miller95def091999-11-25 00:26:21 +1100346 case 'x':
347 options.forward_x11 = 0;
348 break;
Damien Miller95def091999-11-25 00:26:21 +1100349 case 'X':
350 options.forward_x11 = 1;
351 break;
Damien Miller95def091999-11-25 00:26:21 +1100352 case 'g':
353 options.gateway_ports = 1;
354 break;
Damien Miller95def091999-11-25 00:26:21 +1100355 case 'P':
356 options.use_privileged_port = 0;
357 break;
Damien Miller95def091999-11-25 00:26:21 +1100358 case 'a':
359 options.forward_agent = 0;
360 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000361 case 'A':
362 options.forward_agent = 1;
363 break;
Damien Miller95def091999-11-25 00:26:21 +1100364#ifdef AFS
365 case 'k':
366 options.kerberos_tgt_passing = 0;
367 options.afs_token_passing = 0;
368 break;
369#endif
370 case 'i':
371 if (stat(optarg, &st) < 0) {
372 fprintf(stderr, "Warning: Identity file %s does not exist.\n",
Damien Miller0bc1bd82000-11-13 22:57:25 +1100373 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100374 break;
375 }
376 if (options.num_identity_files >= SSH_MAX_IDENTITY_FILES)
377 fatal("Too many identity files specified (max %d)",
Damien Miller0bc1bd82000-11-13 22:57:25 +1100378 SSH_MAX_IDENTITY_FILES);
379 options.identity_files[options.num_identity_files++] = xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100380 break;
Damien Miller95def091999-11-25 00:26:21 +1100381 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000382 if (tty_flag)
383 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100384 tty_flag = 1;
385 break;
Damien Miller95def091999-11-25 00:26:21 +1100386 case 'v':
Damien Millere4340be2000-09-16 13:29:08 +1100387 if (0 == debug_flag) {
388 debug_flag = 1;
389 options.log_level = SYSLOG_LEVEL_DEBUG1;
390 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
391 options.log_level++;
392 break;
393 } else {
394 fatal("Too high debugging level.\n");
395 }
396 /* fallthrough */
Damien Miller95def091999-11-25 00:26:21 +1100397 case 'V':
Damien Miller78928792000-04-12 20:17:38 +1000398 fprintf(stderr, "SSH Version %s, protocol versions %d.%d/%d.%d.\n",
399 SSH_VERSION,
400 PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1,
401 PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2);
Damien Miller1383bd82000-04-06 12:32:37 +1000402 fprintf(stderr, "Compiled with SSL (0x%8.8lx).\n", SSLeay());
Damien Miller95def091999-11-25 00:26:21 +1100403 if (opt == 'V')
404 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100405 break;
Damien Miller95def091999-11-25 00:26:21 +1100406 case 'q':
407 options.log_level = SYSLOG_LEVEL_QUIET;
408 break;
Damien Miller95def091999-11-25 00:26:21 +1100409 case 'e':
410 if (optarg[0] == '^' && optarg[2] == 0 &&
Ben Lindstrom46c16222000-12-22 01:43:59 +0000411 (u_char) optarg[1] >= 64 && (u_char) optarg[1] < 128)
412 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100413 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000414 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100415 else if (strcmp(optarg, "none") == 0)
416 options.escape_char = -2;
417 else {
418 fprintf(stderr, "Bad escape character '%s'.\n", optarg);
419 exit(1);
420 }
421 break;
Damien Miller95def091999-11-25 00:26:21 +1100422 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000423 if (ciphers_valid(optarg)) {
424 /* SSH2 only */
425 options.ciphers = xstrdup(optarg);
Damien Miller30c3d422000-05-09 11:02:59 +1000426 options.cipher = SSH_CIPHER_ILLEGAL;
Damien Millereba71ba2000-04-29 23:57:08 +1000427 } else {
428 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100429 options.cipher = cipher_number(optarg);
430 if (options.cipher == -1) {
Damien Millereba71ba2000-04-29 23:57:08 +1000431 fprintf(stderr, "Unknown cipher type '%s'\n", optarg);
432 exit(1);
433 }
Damien Millere39cacc2000-11-29 12:18:44 +1100434 if (options.cipher == SSH_CIPHER_3DES) {
435 options.ciphers = "3des-cbc";
436 } else if (options.cipher == SSH_CIPHER_BLOWFISH) {
437 options.ciphers = "blowfish-cbc";
438 } else {
439 options.ciphers = (char *)-1;
440 }
Damien Miller95def091999-11-25 00:26:21 +1100441 }
442 break;
Damien Miller95def091999-11-25 00:26:21 +1100443 case 'p':
444 options.port = atoi(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100445 break;
Damien Miller95def091999-11-25 00:26:21 +1100446 case 'l':
447 options.user = optarg;
448 break;
Damien Miller95def091999-11-25 00:26:21 +1100449 case 'R':
Damien Miller34132e52000-01-14 15:45:46 +1100450 if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf,
451 &fwd_host_port) != 3 &&
452 sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf,
453 &fwd_host_port) != 3) {
Damien Miller95def091999-11-25 00:26:21 +1100454 fprintf(stderr, "Bad forwarding specification '%s'.\n", optarg);
455 usage();
456 /* NOTREACHED */
457 }
458 add_remote_forward(&options, fwd_port, buf, fwd_host_port);
459 break;
Damien Miller95def091999-11-25 00:26:21 +1100460 case 'L':
Damien Miller34132e52000-01-14 15:45:46 +1100461 if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf,
462 &fwd_host_port) != 3 &&
463 sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf,
464 &fwd_host_port) != 3) {
Damien Miller95def091999-11-25 00:26:21 +1100465 fprintf(stderr, "Bad forwarding specification '%s'.\n", optarg);
466 usage();
467 /* NOTREACHED */
468 }
469 add_local_forward(&options, fwd_port, buf, fwd_host_port);
470 break;
Damien Miller95def091999-11-25 00:26:21 +1100471 case 'C':
472 options.compression = 1;
473 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000474 case 'N':
475 no_shell_flag = 1;
476 no_tty_flag = 1;
477 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000478 case 'T':
479 no_tty_flag = 1;
480 break;
Damien Miller95def091999-11-25 00:26:21 +1100481 case 'o':
482 dummy = 1;
483 if (process_config_line(&options, host ? host : "", optarg,
484 "command-line", 0, &dummy) != 0)
485 exit(1);
486 break;
Damien Miller95def091999-11-25 00:26:21 +1100487 default:
488 usage();
489 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000490 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000491
Damien Miller95def091999-11-25 00:26:21 +1100492 /* Check that we got a host name. */
493 if (!host)
494 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000495
Damien Millercb5e44a2000-09-29 12:12:36 +1100496 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100497 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100498
Damien Miller95def091999-11-25 00:26:21 +1100499 /* Initialize the command to execute on remote host. */
500 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000501
Damien Miller5428f641999-11-25 11:54:57 +1100502 /*
503 * Save the command to execute on the remote host in a buffer. There
504 * is no limit on the length of the command, except by the maximum
505 * packet size. Also sets the tty flag if there is no command.
506 */
Damien Miller95def091999-11-25 00:26:21 +1100507 if (optind == ac) {
508 /* No command specified - execute shell on a tty. */
509 tty_flag = 1;
510 } else {
511 /* A command has been specified. Store it into the
512 buffer. */
513 for (i = optind; i < ac; i++) {
514 if (i > optind)
515 buffer_append(&command, " ", 1);
516 buffer_append(&command, av[i], strlen(av[i]));
517 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000518 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000519
Damien Miller95def091999-11-25 00:26:21 +1100520 /* Cannot fork to background if no command. */
Damien Millercaf6dd62000-08-29 11:33:50 +1100521 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
Damien Miller95def091999-11-25 00:26:21 +1100522 fatal("Cannot fork into background without a command to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000523
Damien Miller95def091999-11-25 00:26:21 +1100524 /* Allocate a tty by default if no command specified. */
525 if (buffer_len(&command) == 0)
526 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000527
Ben Lindstromc72745a2000-12-02 19:03:54 +0000528 /* Force no tty*/
529 if (no_tty_flag)
530 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100531 /* Do not allocate a tty if stdin is not a tty. */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000532 if (!isatty(fileno(stdin)) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100533 if (tty_flag)
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000534 log("Pseudo-terminal will not be allocated because stdin is not a terminal.\n");
Damien Miller95def091999-11-25 00:26:21 +1100535 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000536 }
Damien Miller1383bd82000-04-06 12:32:37 +1000537
Damien Miller95def091999-11-25 00:26:21 +1100538 /* Get user data. */
539 pw = getpwuid(original_real_uid);
540 if (!pw) {
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000541 log("You don't exist, go away!\n");
Damien Miller95def091999-11-25 00:26:21 +1100542 exit(1);
543 }
544 /* Take a copy of the returned structure. */
545 memset(&pwcopy, 0, sizeof(pwcopy));
546 pwcopy.pw_name = xstrdup(pw->pw_name);
547 pwcopy.pw_passwd = xstrdup(pw->pw_passwd);
548 pwcopy.pw_uid = pw->pw_uid;
549 pwcopy.pw_gid = pw->pw_gid;
Damien Millerad833b32000-08-23 10:46:23 +1000550#ifdef HAVE_PW_CLASS_IN_PASSWD
551 pwcopy.pw_class = xstrdup(pw->pw_class);
552#endif
Damien Miller95def091999-11-25 00:26:21 +1100553 pwcopy.pw_dir = xstrdup(pw->pw_dir);
554 pwcopy.pw_shell = xstrdup(pw->pw_shell);
555 pw = &pwcopy;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000556
Damien Miller95def091999-11-25 00:26:21 +1100557 /* Initialize "log" output. Since we are the client all output
558 actually goes to the terminal. */
559 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000560
Damien Miller95def091999-11-25 00:26:21 +1100561 /* Read per-user configuration file. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000562 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, _PATH_SSH_USER_CONFFILE);
Damien Miller95def091999-11-25 00:26:21 +1100563 read_config_file(buf, host, &options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000564
Damien Miller95def091999-11-25 00:26:21 +1100565 /* Read systemwide configuration file. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000566 read_config_file(_PATH_HOST_CONFIG_FILE, host, &options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000567
Damien Miller95def091999-11-25 00:26:21 +1100568 /* Fill configuration defaults. */
569 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000570
Damien Miller95def091999-11-25 00:26:21 +1100571 /* reinit */
572 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000573
Damien Miller95def091999-11-25 00:26:21 +1100574 if (options.user == NULL)
575 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000576
Damien Miller95def091999-11-25 00:26:21 +1100577 if (options.hostname != NULL)
578 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000579
Damien Miller95def091999-11-25 00:26:21 +1100580 /* Disable rhosts authentication if not running as root. */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100581#ifdef HAVE_CYGWIN
582 /* Ignore uid if running under Windows */
583 if (!options.use_privileged_port) {
584#else
Damien Miller95def091999-11-25 00:26:21 +1100585 if (original_effective_uid != 0 || !options.use_privileged_port) {
Damien Millerbac2d8a2000-09-05 16:13:06 +1100586#endif
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000587 debug("Rhosts Authentication disabled, "
588 "originating port will not be trusted.");
Damien Miller95def091999-11-25 00:26:21 +1100589 options.rhosts_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100590 }
Damien Miller5428f641999-11-25 11:54:57 +1100591 /*
592 * If using rsh has been selected, exec it now (without trying
593 * anything else). Note that we must release privileges first.
594 */
Damien Miller95def091999-11-25 00:26:21 +1100595 if (options.use_rsh) {
Damien Miller5428f641999-11-25 11:54:57 +1100596 /*
597 * Restore our superuser privileges. This must be done
598 * before permanently setting the uid.
599 */
Damien Miller95def091999-11-25 00:26:21 +1100600 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000601
Damien Miller95def091999-11-25 00:26:21 +1100602 /* Switch to the original uid permanently. */
603 permanently_set_uid(original_real_uid);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000604
Damien Miller95def091999-11-25 00:26:21 +1100605 /* Execute rsh. */
606 rsh_connect(host, options.user, &command);
607 fatal("rsh_connect returned");
608 }
609 /* Restore our superuser privileges. */
610 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000611
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000612 /* Open a connection to the remote host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000613
Damien Miller95def091999-11-25 00:26:21 +1100614 ok = ssh_connect(host, &hostaddr, options.port,
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000615 options.connection_attempts,
616 original_effective_uid != 0 || !options.use_privileged_port,
617 original_real_uid,
618 options.proxy_command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000619
Damien Miller5428f641999-11-25 11:54:57 +1100620 /*
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 */
Damien Millereba71ba2000-04-29 23:57:08 +1000626 if (ok && (options.protocol & SSH_PROTO_1)) {
627 Key k;
Damien Miller95def091999-11-25 00:26:21 +1100628 host_private_key = RSA_new();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100629 k.type = KEY_RSA1;
Damien Millereba71ba2000-04-29 23:57:08 +1000630 k.rsa = host_private_key;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000631 if (load_private_key(_PATH_HOST_KEY_FILE, "", &k, NULL))
Damien Miller95def091999-11-25 00:26:21 +1100632 host_private_key_loaded = 1;
633 }
Damien Miller5428f641999-11-25 11:54:57 +1100634 /*
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 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000641
Damien Miller5428f641999-11-25 11:54:57 +1100642 /*
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 */
Damien Miller95def091999-11-25 00:26:21 +1100649 permanently_set_uid(original_real_uid);
650
Damien Miller5428f641999-11-25 11:54:57 +1100651 /*
652 * Now that we are back to our own permissions, create ~/.ssh
653 * directory if it doesn\'t already exist.
654 */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000655 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, _PATH_SSH_USER_DIR);
Damien Miller95def091999-11-25 00:26:21 +1100656 if (stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000657 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100658 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)
Damien Milleraae6c611999-12-06 11:47:28 +1100663 log("Secure connection to %.100s on port %hu refused%.100s.",
Damien Miller95def091999-11-25 00:26:21 +1100664 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);
675 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100676 /* Expand ~ in options.identity_files, known host file names. */
Damien Millereba71ba2000-04-29 23:57:08 +1000677 /* XXX mem-leaks */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100678 for (i = 0; i < options.num_identity_files; i++) {
Damien Miller95def091999-11-25 00:26:21 +1100679 options.identity_files[i] =
Damien Miller0bc1bd82000-11-13 22:57:25 +1100680 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);
Damien Miller95def091999-11-25 00:26:21 +1100693
694 /* Log into the remote system. This never returns if the login fails. */
695 ssh_login(host_private_key_loaded, host_private_key,
Damien Miller34132e52000-01-14 15:45:46 +1100696 host, (struct sockaddr *)&hostaddr, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100697
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
Damien Miller1383bd82000-04-06 12:32:37 +1000702 exit_status = compat20 ? ssh_session2() : ssh_session();
703 packet_close();
704 return exit_status;
705}
706
Damien Millerbd483e72000-04-30 10:00:53 +1000707void
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
Damien Millerd3a18572000-06-07 19:55:44 +1000714 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 }
Damien Millerbd483e72000-04-30 10:00:53 +1000725 /*
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
Damien Miller0bc1bd82000-11-13 22:57:25 +1100746void
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
Damien Miller1383bd82000-04-06 12:32:37 +1000789int
790ssh_session(void)
791{
792 int type;
Damien Miller1383bd82000-04-06 12:32:37 +1000793 int plen;
794 int interactive = 0;
795 int have_tty = 0;
796 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +1000797 char *cp;
798
Damien Miller95def091999-11-25 00:26:21 +1100799 /* 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);
Damien Miller450a7a12000-03-26 13:04:51 +1000850 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100851 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000852 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +1000853 } else if (type == SSH_SMSG_FAILURE)
Damien Miller95def091999-11-25 00:26:21 +1100854 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) {
Damien Millerbd483e72000-04-30 10:00:53 +1000860 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. */
Damien Miller95def091999-11-25 00:26:21 +1100864 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Millerbd483e72000-04-30 10:00:53 +1000865 x11_request_forwarding_with_spoofing(0, proto, data);
Damien Miller95def091999-11-25 00:26:21 +1100866
867 /* Read response from the server. */
868 type = packet_read(&plen);
869 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100870 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000871 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller95def091999-11-25 00:26:21 +1100872 log("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +1000873 } else {
Damien Miller95def091999-11-25 00:26:21 +1100874 packet_disconnect("Protocol error waiting for X11 forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +1000875 }
Damien Miller95def091999-11-25 00:26:21 +1100876 }
877 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000878 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +1100879
880 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100881 check_agent_present();
882
Damien Miller95def091999-11-25 00:26:21 +1100883 if (options.forward_agent) {
884 debug("Requesting authentication agent forwarding.");
885 auth_request_forwarding();
886
887 /* Read response from the server. */
888 type = packet_read(&plen);
889 packet_integrity_check(plen, 0, type);
890 if (type != SSH_SMSG_SUCCESS)
891 log("Warning: Remote host denied authentication agent forwarding.");
892 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000893
Damien Miller0bc1bd82000-11-13 22:57:25 +1100894 /* Initiate port forwardings. */
895 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000896
Damien Miller5428f641999-11-25 11:54:57 +1100897 /* If requested, let ssh continue in the background. */
Damien Miller4af51302000-04-16 11:18:38 +1000898 if (fork_after_authentication_flag)
Damien Miller5428f641999-11-25 11:54:57 +1100899 if (daemon(1, 1) < 0)
900 fatal("daemon() failed: %.200s", strerror(errno));
901
902 /*
903 * If a command was specified on the command line, execute the
904 * command now. Otherwise request the server to start a shell.
905 */
Damien Miller95def091999-11-25 00:26:21 +1100906 if (buffer_len(&command) > 0) {
907 int len = buffer_len(&command);
908 if (len > 900)
909 len = 900;
910 debug("Sending command: %.*s", len, buffer_ptr(&command));
911 packet_start(SSH_CMSG_EXEC_CMD);
912 packet_put_string(buffer_ptr(&command), buffer_len(&command));
913 packet_send();
914 packet_write_wait();
915 } else {
916 debug("Requesting shell.");
917 packet_start(SSH_CMSG_EXEC_SHELL);
918 packet_send();
919 packet_write_wait();
920 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000921
Damien Miller95def091999-11-25 00:26:21 +1100922 /* Enter the interactive session. */
Damien Millerad833b32000-08-23 10:46:23 +1000923 return client_loop(have_tty, tty_flag ? options.escape_char : -1, 0);
Damien Miller1383bd82000-04-06 12:32:37 +1000924}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000925
Damien Miller1383bd82000-04-06 12:32:37 +1000926void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100927ssh_session2_callback(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +1000928{
929 int len;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000930 int interactive = 0;
931
Damien Miller1383bd82000-04-06 12:32:37 +1000932 debug("client_init id %d arg %d", id, (int)arg);
933
934 if (no_shell_flag)
935 goto done;
936
937 if (tty_flag) {
938 struct winsize ws;
939 char *cp;
940 cp = getenv("TERM");
941 if (!cp)
942 cp = "";
943 /* Store window size in the packet. */
944 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
945 memset(&ws, 0, sizeof(ws));
946
947 channel_request_start(id, "pty-req", 0);
948 packet_put_cstring(cp);
949 packet_put_int(ws.ws_col);
950 packet_put_int(ws.ws_row);
951 packet_put_int(ws.ws_xpixel);
952 packet_put_int(ws.ws_ypixel);
953 packet_put_cstring(""); /* XXX: encode terminal modes */
954 packet_send();
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000955 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000956 /* XXX wait for reply */
957 }
Damien Millerbd483e72000-04-30 10:00:53 +1000958 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);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000966 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000967 /* XXX wait for reply */
968 }
969
Damien Miller0bc1bd82000-11-13 22:57:25 +1100970 check_agent_present();
971 if (options.forward_agent) {
972 debug("Requesting authentication agent forwarding.");
973 channel_request_start(id, "auth-agent-req@openssh.com", 0);
974 packet_send();
975 }
976
Damien Miller1383bd82000-04-06 12:32:37 +1000977 len = buffer_len(&command);
978 if (len > 0) {
979 if (len > 900)
980 len = 900;
981 debug("Sending command: %.*s", len, buffer_ptr(&command));
982 channel_request_start(id, "exec", 0);
983 packet_put_string(buffer_ptr(&command), len);
984 packet_send();
985 } else {
986 channel_request(id, "shell", 0);
987 }
988 /* channel_callback(id, SSH2_MSG_OPEN_CONFIGMATION, client_init, 0); */
989done:
990 /* register different callback, etc. XXX */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000991 packet_set_interactive(interactive);
992 clientloop_set_session_ident(id);
Damien Miller1383bd82000-04-06 12:32:37 +1000993}
994
995int
996ssh_session2(void)
997{
998 int window, packetmax, id;
Damien Millerad833b32000-08-23 10:46:23 +1000999 int in, out, err;
1000
Damien Millercaf6dd62000-08-29 11:33:50 +11001001 if (stdin_null_flag) {
1002 in = open("/dev/null", O_RDONLY);
1003 } else {
1004 in = dup(STDIN_FILENO);
1005 }
1006 out = dup(STDOUT_FILENO);
1007 err = dup(STDERR_FILENO);
1008
1009 if (in < 0 || out < 0 || err < 0)
1010 fatal("dup() in/out/err failed");
1011
Damien Miller69b69aa2000-10-28 14:19:58 +11001012 /* enable nonblocking unless tty */
1013 if (!isatty(in))
1014 set_nonblock(in);
1015 if (!isatty(out))
1016 set_nonblock(out);
1017 if (!isatty(err))
1018 set_nonblock(err);
1019
Damien Miller0bc1bd82000-11-13 22:57:25 +11001020 /* XXX should be pre-session */
1021 ssh_init_forwarding();
Damien Millercaf6dd62000-08-29 11:33:50 +11001022
Damien Millerad833b32000-08-23 10:46:23 +10001023 /* If requested, let ssh continue in the background. */
1024 if (fork_after_authentication_flag)
1025 if (daemon(1, 1) < 0)
1026 fatal("daemon() failed: %.200s", strerror(errno));
1027
Damien Millere4340be2000-09-16 13:29:08 +11001028 window = CHAN_SES_WINDOW_DEFAULT;
1029 packetmax = CHAN_SES_PACKET_DEFAULT;
1030 if (!tty_flag) {
Damien Miller1383bd82000-04-06 12:32:37 +10001031 window *= 2;
Damien Millere4340be2000-09-16 13:29:08 +11001032 packetmax *=2;
Damien Miller1383bd82000-04-06 12:32:37 +10001033 }
Damien Miller1383bd82000-04-06 12:32:37 +10001034 id = channel_new(
1035 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001036 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Miller69b69aa2000-10-28 14:19:58 +11001037 xstrdup("client-session"), /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001038
Damien Miller1383bd82000-04-06 12:32:37 +10001039 channel_open(id);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001040 channel_register_callback(id, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION,
1041 ssh_session2_callback, (void *)0);
Damien Miller1383bd82000-04-06 12:32:37 +10001042
Damien Millerad833b32000-08-23 10:46:23 +10001043 return client_loop(tty_flag, tty_flag ? options.escape_char : -1, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001044}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001045
1046int
1047guess_identity_file_type(const char *filename)
1048{
1049 struct stat st;
1050 Key *public;
1051 int type = KEY_RSA1; /* default */
1052
1053 if (stat(filename, &st) < 0) {
Ben Lindstrom14920292000-11-21 21:24:55 +00001054 /* ignore this key */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001055 return KEY_UNSPEC;
1056 }
1057 public = key_new(type);
1058 if (!load_public_key(filename, public, NULL)) {
1059 /* ok, so we will assume this is 'some' key */
1060 type = KEY_UNSPEC;
1061 }
1062 key_free(public);
1063 return type;
1064}