blob: a08ddf397e5ecbf1e55bef28271cdf256f5b7a89 [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 Lindstrom8a432f52001-03-05 07:24:46 +000042RCSID("$OpenBSD: ssh.c,v 1.101 2001/03/03 23:59:34 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"
Ben Lindstrom1e7d3062001-02-09 02:36:43 +000066#include "dispatch.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000067#include "misc.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000068#include "kex.h"
69#include "mac.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100070
Damien Miller3f905871999-11-15 17:10:57 +110071#ifdef HAVE___PROGNAME
72extern char *__progname;
Ben Lindstrom49a79c02000-11-17 03:47:20 +000073#else
74char *__progname;
75#endif
Damien Miller3f905871999-11-15 17:10:57 +110076
Damien Miller34132e52000-01-14 15:45:46 +110077/* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
78 Default value is AF_UNSPEC means both IPv4 and IPv6. */
Damien Miller7d80e342000-01-19 14:36:49 +110079#ifdef IPV4_DEFAULT
80int IPv4or6 = AF_INET;
81#else
Damien Miller34132e52000-01-14 15:45:46 +110082int IPv4or6 = AF_UNSPEC;
Damien Miller7d80e342000-01-19 14:36:49 +110083#endif
Damien Miller34132e52000-01-14 15:45:46 +110084
Damien Miller95def091999-11-25 00:26:21 +110085/* Flag indicating whether debug mode is on. This can be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100086int debug_flag = 0;
87
Damien Miller78928792000-04-12 20:17:38 +100088/* Flag indicating whether a tty should be allocated */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100089int tty_flag = 0;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +000090int no_tty_flag = 0;
91int force_tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092
Damien Miller1383bd82000-04-06 12:32:37 +100093/* don't exec a shell */
94int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +100095
Damien Miller5428f641999-11-25 11:54:57 +110096/*
97 * Flag indicating that nothing should be read from stdin. This can be set
98 * on the command line.
99 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000100int stdin_null_flag = 0;
101
Damien Miller5428f641999-11-25 11:54:57 +1100102/*
103 * Flag indicating that ssh should fork after authentication. This is useful
104 * so that the pasphrase can be entered manually, and then ssh goes to the
105 * background.
106 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000107int fork_after_authentication_flag = 0;
108
Damien Miller5428f641999-11-25 11:54:57 +1100109/*
110 * General data structure for command line options and options configurable
111 * in configuration files. See readconf.h.
112 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000113Options options;
114
Damien Miller5428f641999-11-25 11:54:57 +1100115/*
116 * Name of the host we are connecting to. This is the name given on the
117 * command line, or the HostName specified for the user-supplied name in a
118 * configuration file.
119 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000120char *host;
121
122/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100123struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000124
Damien Miller5428f641999-11-25 11:54:57 +1100125/*
126 * Flag to indicate that we have received a window change signal which has
127 * not yet been processed. This will cause a message indicating the new
128 * window size to be sent to the server a little later. This is volatile
129 * because this is updated in a signal handler.
130 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000131volatile int received_window_change_signal = 0;
132
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000133/* Flag indicating whether we have a valid host private key loaded. */
134int host_private_key_loaded = 0;
135
136/* Host private key. */
137RSA *host_private_key = NULL;
138
139/* Original real UID. */
140uid_t original_real_uid;
141
Damien Miller1383bd82000-04-06 12:32:37 +1000142/* command to be executed */
143Buffer command;
144
Damien Miller832562e2001-01-30 09:30:01 +1100145/* Should we execute a command or invoke a subsystem? */
146int subsystem_flag = 0;
147
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000148/* Prints a help message to the user. This function never returns. */
149
150void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000151usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000152{
Kevin Stevesec84dc12000-12-13 17:45:15 +0000153 fprintf(stderr, "Usage: %s [options] host [command]\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100154 fprintf(stderr, "Options:\n");
155 fprintf(stderr, " -l user Log in using this user name.\n");
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000156 fprintf(stderr, " -n Redirect input from " _PATH_DEVNULL ".\n");
Damien Millerb1715dc2000-05-30 13:44:51 +1000157 fprintf(stderr, " -A Enable authentication agent forwarding.\n");
Damien Miller95def091999-11-25 00:26:21 +1100158 fprintf(stderr, " -a Disable authentication agent forwarding.\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000159#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100160 fprintf(stderr, " -k Disable Kerberos ticket and AFS token forwarding.\n");
161#endif /* AFS */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000162 fprintf(stderr, " -X Enable X11 connection forwarding.\n");
Damien Miller95def091999-11-25 00:26:21 +1100163 fprintf(stderr, " -x Disable X11 connection forwarding.\n");
Ben Lindstrom0ab2a012001-03-05 06:45:21 +0000164 fprintf(stderr, " -i file Identity for public key authentication "
165 "(default: ~/.ssh/identity)\n");
Damien Miller95def091999-11-25 00:26:21 +1100166 fprintf(stderr, " -t Tty; allocate a tty even if command is given.\n");
Damien Miller1383bd82000-04-06 12:32:37 +1000167 fprintf(stderr, " -T Do not allocate a tty.\n");
Damien Miller95def091999-11-25 00:26:21 +1100168 fprintf(stderr, " -v Verbose; display verbose debugging messages.\n");
Damien Millere4340be2000-09-16 13:29:08 +1100169 fprintf(stderr, " Multiple -v increases verbosity.\n");
Damien Miller95def091999-11-25 00:26:21 +1100170 fprintf(stderr, " -V Display version number only.\n");
171 fprintf(stderr, " -P Don't allocate a privileged port.\n");
172 fprintf(stderr, " -q Quiet; don't display any warning messages.\n");
173 fprintf(stderr, " -f Fork into background after authentication.\n");
174 fprintf(stderr, " -e char Set escape character; ``none'' = disable (default: ~).\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000175
Damien Miller95def091999-11-25 00:26:21 +1100176 fprintf(stderr, " -c cipher Select encryption algorithm: "
Ben Lindstrom0ab2a012001-03-05 06:45:21 +0000177 "``3des'', ``blowfish''\n");
Damien Miller95def091999-11-25 00:26:21 +1100178 fprintf(stderr, " -p port Connect to this port. Server must be on the same port.\n");
179 fprintf(stderr, " -L listen-port:host:port Forward local port to remote address\n");
180 fprintf(stderr, " -R listen-port:host:port Forward remote port to local address\n");
Kevin Stevesec84dc12000-12-13 17:45:15 +0000181 fprintf(stderr, " These cause %s to listen for connections on a port, and\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100182 fprintf(stderr, " forward them to the other side by connecting to host:port.\n");
183 fprintf(stderr, " -C Enable compression.\n");
Damien Miller1383bd82000-04-06 12:32:37 +1000184 fprintf(stderr, " -N Do not execute a shell or command.\n");
Damien Miller95def091999-11-25 00:26:21 +1100185 fprintf(stderr, " -g Allow remote hosts to connect to forwarded ports.\n");
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000186 fprintf(stderr, " -1 Force protocol version 1.\n");
187 fprintf(stderr, " -2 Force protocol version 2.\n");
Damien Miller34132e52000-01-14 15:45:46 +1100188 fprintf(stderr, " -4 Use IPv4 only.\n");
189 fprintf(stderr, " -6 Use IPv6 only.\n");
Damien Miller95def091999-11-25 00:26:21 +1100190 fprintf(stderr, " -o 'option' Process the option as if it was read from a configuration file.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100191 fprintf(stderr, " -s Invoke command (mandatory) as SSH2 subsystem.\n");
Damien Miller95def091999-11-25 00:26:21 +1100192 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000193}
194
Damien Miller95def091999-11-25 00:26:21 +1100195/*
196 * Connects to the given host using rsh (or prints an error message and exits
197 * if rsh is not available). This function never returns.
198 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000199void
Damien Miller95def091999-11-25 00:26:21 +1100200rsh_connect(char *host, char *user, Buffer * command)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000201{
Damien Miller95def091999-11-25 00:26:21 +1100202 char *args[10];
203 int i;
204
205 log("Using rsh. WARNING: Connection will not be encrypted.");
206 /* Build argument list for rsh. */
207 i = 0;
208 args[i++] = _PATH_RSH;
209 /* host may have to come after user on some systems */
210 args[i++] = host;
211 if (user) {
212 args[i++] = "-l";
213 args[i++] = user;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000214 }
Damien Miller95def091999-11-25 00:26:21 +1100215 if (buffer_len(command) > 0) {
216 buffer_append(command, "\0", 1);
217 args[i++] = buffer_ptr(command);
218 }
219 args[i++] = NULL;
220 if (debug_flag) {
221 for (i = 0; args[i]; i++) {
222 if (i != 0)
223 fprintf(stderr, " ");
224 fprintf(stderr, "%s", args[i]);
225 }
226 fprintf(stderr, "\n");
227 }
228 execv(_PATH_RSH, args);
229 perror(_PATH_RSH);
230 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000231}
232
Damien Miller0bc1bd82000-11-13 22:57:25 +1100233int ssh_session(void);
234int ssh_session2(void);
235int guess_identity_file_type(const char *filename);
Damien Miller1383bd82000-04-06 12:32:37 +1000236
Damien Miller95def091999-11-25 00:26:21 +1100237/*
238 * Main program for the ssh client.
239 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000240int
241main(int ac, char **av)
242{
Damien Miller1383bd82000-04-06 12:32:37 +1000243 int i, opt, optind, exit_status, ok;
Damien Milleraae6c611999-12-06 11:47:28 +1100244 u_short fwd_port, fwd_host_port;
Damien Miller95def091999-11-25 00:26:21 +1100245 char *optarg, *cp, buf[256];
Damien Miller95def091999-11-25 00:26:21 +1100246 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000247 struct passwd *pw;
Damien Miller1383bd82000-04-06 12:32:37 +1000248 int dummy;
Damien Miller95def091999-11-25 00:26:21 +1100249 uid_t original_effective_uid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000250
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000251 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000252 init_rng();
253
Damien Miller5428f641999-11-25 11:54:57 +1100254 /*
255 * Save the original real uid. It will be needed later (uid-swapping
256 * may clobber the real uid).
257 */
Damien Miller95def091999-11-25 00:26:21 +1100258 original_real_uid = getuid();
259 original_effective_uid = geteuid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000260
Damien Miller05dd7952000-10-01 00:42:48 +1100261#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100262 /* If we are installed setuid root be careful to not drop core. */
263 if (original_real_uid != original_effective_uid) {
264 struct rlimit rlim;
265 rlim.rlim_cur = rlim.rlim_max = 0;
266 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
267 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000268 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100269#endif
Damien Miller5428f641999-11-25 11:54:57 +1100270 /*
271 * Use uid-swapping to give up root privileges for the duration of
272 * option processing. We will re-instantiate the rights when we are
273 * ready to create the privileged port, and will permanently drop
274 * them when the port has been created (actually, when the connection
275 * has been made, as we may need to create the port several times).
276 */
Damien Miller95def091999-11-25 00:26:21 +1100277 temporarily_use_uid(original_real_uid);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000278
Damien Miller5428f641999-11-25 11:54:57 +1100279 /*
280 * Set our umask to something reasonable, as some files are created
281 * with the default umask. This will make them world-readable but
282 * writable only by the owner, which is ok for all files for which we
283 * don't set the modes explicitly.
284 */
Damien Miller95def091999-11-25 00:26:21 +1100285 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000286
Damien Miller95def091999-11-25 00:26:21 +1100287 /* Initialize option structure to indicate that no values have been set. */
288 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000289
Damien Miller95def091999-11-25 00:26:21 +1100290 /* Parse command-line arguments. */
291 host = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000292
Damien Miller95def091999-11-25 00:26:21 +1100293 for (optind = 1; optind < ac; optind++) {
294 if (av[optind][0] != '-') {
295 if (host)
296 break;
297 if ((cp = strchr(av[optind], '@'))) {
Damien Miller4af51302000-04-16 11:18:38 +1000298 if(cp == av[optind])
299 usage();
Damien Miller95def091999-11-25 00:26:21 +1100300 options.user = av[optind];
301 *cp = '\0';
302 host = ++cp;
303 } else
304 host = av[optind];
305 continue;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000306 }
Damien Miller95def091999-11-25 00:26:21 +1100307 opt = av[optind][1];
308 if (!opt)
309 usage();
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000310 if (strchr("eilcmpLRo", opt)) { /* options with arguments */
Damien Miller95def091999-11-25 00:26:21 +1100311 optarg = av[optind] + 2;
312 if (strcmp(optarg, "") == 0) {
313 if (optind >= ac - 1)
314 usage();
315 optarg = av[++optind];
316 }
317 } else {
318 if (av[optind][2])
319 usage();
320 optarg = NULL;
321 }
322 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000323 case '1':
324 options.protocol = SSH_PROTO_1;
325 break;
Damien Miller4af51302000-04-16 11:18:38 +1000326 case '2':
327 options.protocol = SSH_PROTO_2;
328 break;
Damien Miller34132e52000-01-14 15:45:46 +1100329 case '4':
330 IPv4or6 = AF_INET;
331 break;
Damien Miller34132e52000-01-14 15:45:46 +1100332 case '6':
333 IPv4or6 = AF_INET6;
334 break;
Damien Miller95def091999-11-25 00:26:21 +1100335 case 'n':
336 stdin_null_flag = 1;
337 break;
Damien Miller95def091999-11-25 00:26:21 +1100338 case 'f':
339 fork_after_authentication_flag = 1;
340 stdin_null_flag = 1;
341 break;
Damien Miller95def091999-11-25 00:26:21 +1100342 case 'x':
343 options.forward_x11 = 0;
344 break;
Damien Miller95def091999-11-25 00:26:21 +1100345 case 'X':
346 options.forward_x11 = 1;
347 break;
Damien Miller95def091999-11-25 00:26:21 +1100348 case 'g':
349 options.gateway_ports = 1;
350 break;
Damien Miller95def091999-11-25 00:26:21 +1100351 case 'P':
352 options.use_privileged_port = 0;
353 break;
Damien Miller95def091999-11-25 00:26:21 +1100354 case 'a':
355 options.forward_agent = 0;
356 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000357 case 'A':
358 options.forward_agent = 1;
359 break;
Damien Miller95def091999-11-25 00:26:21 +1100360#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",
Damien Miller0bc1bd82000-11-13 22:57:25 +1100369 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100370 break;
371 }
372 if (options.num_identity_files >= SSH_MAX_IDENTITY_FILES)
373 fatal("Too many identity files specified (max %d)",
Damien Miller0bc1bd82000-11-13 22:57:25 +1100374 SSH_MAX_IDENTITY_FILES);
375 options.identity_files[options.num_identity_files++] = xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100376 break;
Damien Miller95def091999-11-25 00:26:21 +1100377 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000378 if (tty_flag)
379 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100380 tty_flag = 1;
381 break;
Damien Miller95def091999-11-25 00:26:21 +1100382 case 'v':
Damien Millere4340be2000-09-16 13:29:08 +1100383 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 */
Damien Miller95def091999-11-25 00:26:21 +1100393 case 'V':
Damien Miller225736c2001-02-19 21:51:08 +1100394 fprintf(stderr,
395 "%s, SSH protocols %d.%d/%d.%d, OpenSSL 0x%8.8lx\n",
Damien Miller78928792000-04-12 20:17:38 +1000396 SSH_VERSION,
397 PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1,
Damien Miller225736c2001-02-19 21:51:08 +1100398 PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2,
399 SSLeay());
Damien Miller95def091999-11-25 00:26:21 +1100400 if (opt == 'V')
401 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100402 break;
Damien Miller95def091999-11-25 00:26:21 +1100403 case 'q':
404 options.log_level = SYSLOG_LEVEL_QUIET;
405 break;
Damien Miller95def091999-11-25 00:26:21 +1100406 case 'e':
407 if (optarg[0] == '^' && optarg[2] == 0 &&
Ben Lindstrom46c16222000-12-22 01:43:59 +0000408 (u_char) optarg[1] >= 64 && (u_char) optarg[1] < 128)
409 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100410 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000411 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100412 else if (strcmp(optarg, "none") == 0)
413 options.escape_char = -2;
414 else {
415 fprintf(stderr, "Bad escape character '%s'.\n", optarg);
416 exit(1);
417 }
418 break;
Damien Miller95def091999-11-25 00:26:21 +1100419 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000420 if (ciphers_valid(optarg)) {
421 /* SSH2 only */
422 options.ciphers = xstrdup(optarg);
Damien Miller30c3d422000-05-09 11:02:59 +1000423 options.cipher = SSH_CIPHER_ILLEGAL;
Damien Millereba71ba2000-04-29 23:57:08 +1000424 } else {
425 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100426 options.cipher = cipher_number(optarg);
427 if (options.cipher == -1) {
Damien Millereba71ba2000-04-29 23:57:08 +1000428 fprintf(stderr, "Unknown cipher type '%s'\n", optarg);
429 exit(1);
430 }
Damien Millere39cacc2000-11-29 12:18:44 +1100431 if (options.cipher == SSH_CIPHER_3DES) {
432 options.ciphers = "3des-cbc";
433 } else if (options.cipher == SSH_CIPHER_BLOWFISH) {
434 options.ciphers = "blowfish-cbc";
435 } else {
436 options.ciphers = (char *)-1;
437 }
Damien Miller95def091999-11-25 00:26:21 +1100438 }
439 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000440 case 'm':
441 if (mac_valid(optarg))
442 options.macs = xstrdup(optarg);
443 else {
444 fprintf(stderr, "Unknown mac type '%s'\n", optarg);
445 exit(1);
446 }
447 break;
Damien Miller95def091999-11-25 00:26:21 +1100448 case 'p':
449 options.port = atoi(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100450 break;
Damien Miller95def091999-11-25 00:26:21 +1100451 case 'l':
452 options.user = optarg;
453 break;
Damien Miller95def091999-11-25 00:26:21 +1100454 case 'R':
Damien Miller34132e52000-01-14 15:45:46 +1100455 if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf,
456 &fwd_host_port) != 3 &&
457 sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf,
458 &fwd_host_port) != 3) {
Damien Miller95def091999-11-25 00:26:21 +1100459 fprintf(stderr, "Bad forwarding specification '%s'.\n", optarg);
460 usage();
461 /* NOTREACHED */
462 }
463 add_remote_forward(&options, fwd_port, buf, fwd_host_port);
464 break;
Damien Miller95def091999-11-25 00:26:21 +1100465 case 'L':
Damien Miller34132e52000-01-14 15:45:46 +1100466 if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf,
467 &fwd_host_port) != 3 &&
468 sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf,
469 &fwd_host_port) != 3) {
Damien Miller95def091999-11-25 00:26:21 +1100470 fprintf(stderr, "Bad forwarding specification '%s'.\n", optarg);
471 usage();
472 /* NOTREACHED */
473 }
474 add_local_forward(&options, fwd_port, buf, fwd_host_port);
475 break;
Damien Miller95def091999-11-25 00:26:21 +1100476 case 'C':
477 options.compression = 1;
478 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000479 case 'N':
480 no_shell_flag = 1;
481 no_tty_flag = 1;
482 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000483 case 'T':
484 no_tty_flag = 1;
485 break;
Damien Miller95def091999-11-25 00:26:21 +1100486 case 'o':
487 dummy = 1;
488 if (process_config_line(&options, host ? host : "", optarg,
489 "command-line", 0, &dummy) != 0)
490 exit(1);
491 break;
Damien Miller832562e2001-01-30 09:30:01 +1100492 case 's':
493 subsystem_flag = 1;
494 break;
Damien Miller95def091999-11-25 00:26:21 +1100495 default:
496 usage();
497 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000498 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000499
Damien Miller95def091999-11-25 00:26:21 +1100500 /* Check that we got a host name. */
501 if (!host)
502 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000503
Damien Millercb5e44a2000-09-29 12:12:36 +1100504 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100505 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100506
Damien Miller95def091999-11-25 00:26:21 +1100507 /* Initialize the command to execute on remote host. */
508 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000509
Damien Miller5428f641999-11-25 11:54:57 +1100510 /*
511 * Save the command to execute on the remote host in a buffer. There
512 * is no limit on the length of the command, except by the maximum
513 * packet size. Also sets the tty flag if there is no command.
514 */
Damien Miller95def091999-11-25 00:26:21 +1100515 if (optind == ac) {
516 /* No command specified - execute shell on a tty. */
517 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100518 if (subsystem_flag) {
519 fprintf(stderr, "You must specify a subsystem to invoke.");
520 usage();
521 }
Damien Miller95def091999-11-25 00:26:21 +1100522 } else {
523 /* A command has been specified. Store it into the
524 buffer. */
525 for (i = optind; i < ac; i++) {
526 if (i > optind)
527 buffer_append(&command, " ", 1);
528 buffer_append(&command, av[i], strlen(av[i]));
529 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000530 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000531
Damien Miller95def091999-11-25 00:26:21 +1100532 /* Cannot fork to background if no command. */
Damien Millercaf6dd62000-08-29 11:33:50 +1100533 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
Damien Miller95def091999-11-25 00:26:21 +1100534 fatal("Cannot fork into background without a command to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000535
Damien Miller95def091999-11-25 00:26:21 +1100536 /* Allocate a tty by default if no command specified. */
537 if (buffer_len(&command) == 0)
538 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000539
Ben Lindstromc72745a2000-12-02 19:03:54 +0000540 /* Force no tty*/
541 if (no_tty_flag)
542 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100543 /* Do not allocate a tty if stdin is not a tty. */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000544 if (!isatty(fileno(stdin)) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100545 if (tty_flag)
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000546 log("Pseudo-terminal will not be allocated because stdin is not a terminal.\n");
Damien Miller95def091999-11-25 00:26:21 +1100547 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000548 }
Damien Miller1383bd82000-04-06 12:32:37 +1000549
Damien Miller95def091999-11-25 00:26:21 +1100550 /* Get user data. */
551 pw = getpwuid(original_real_uid);
552 if (!pw) {
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000553 log("You don't exist, go away!\n");
Damien Miller95def091999-11-25 00:26:21 +1100554 exit(1);
555 }
556 /* Take a copy of the returned structure. */
Ben Lindstrom086cf212001-03-05 05:56:40 +0000557 pw = pwcopy(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000558
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000559 /*
560 * Initialize "log" output. Since we are the client all output
561 * actually goes to stderr.
562 */
563 log_init(av[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000564
Damien Miller95def091999-11-25 00:26:21 +1100565 /* Read per-user configuration file. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000566 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, _PATH_SSH_USER_CONFFILE);
Damien Miller95def091999-11-25 00:26:21 +1100567 read_config_file(buf, host, &options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000568
Damien Miller95def091999-11-25 00:26:21 +1100569 /* Read systemwide configuration file. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000570 read_config_file(_PATH_HOST_CONFIG_FILE, host, &options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000571
Damien Miller95def091999-11-25 00:26:21 +1100572 /* Fill configuration defaults. */
573 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000574
Damien Miller95def091999-11-25 00:26:21 +1100575 /* reinit */
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000576 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000577
Damien Miller95def091999-11-25 00:26:21 +1100578 if (options.user == NULL)
579 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000580
Damien Miller95def091999-11-25 00:26:21 +1100581 if (options.hostname != NULL)
582 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000583
Damien Miller95def091999-11-25 00:26:21 +1100584 /* Disable rhosts authentication if not running as root. */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100585#ifdef HAVE_CYGWIN
586 /* Ignore uid if running under Windows */
587 if (!options.use_privileged_port) {
588#else
Damien Miller95def091999-11-25 00:26:21 +1100589 if (original_effective_uid != 0 || !options.use_privileged_port) {
Damien Millerbac2d8a2000-09-05 16:13:06 +1100590#endif
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000591 debug("Rhosts Authentication disabled, "
592 "originating port will not be trusted.");
Damien Miller95def091999-11-25 00:26:21 +1100593 options.rhosts_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100594 }
Damien Miller5428f641999-11-25 11:54:57 +1100595 /*
596 * If using rsh has been selected, exec it now (without trying
597 * anything else). Note that we must release privileges first.
598 */
Damien Miller95def091999-11-25 00:26:21 +1100599 if (options.use_rsh) {
Damien Miller5428f641999-11-25 11:54:57 +1100600 /*
601 * Restore our superuser privileges. This must be done
602 * before permanently setting the uid.
603 */
Damien Miller95def091999-11-25 00:26:21 +1100604 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000605
Damien Miller95def091999-11-25 00:26:21 +1100606 /* Switch to the original uid permanently. */
607 permanently_set_uid(original_real_uid);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000608
Damien Miller95def091999-11-25 00:26:21 +1100609 /* Execute rsh. */
610 rsh_connect(host, options.user, &command);
611 fatal("rsh_connect returned");
612 }
613 /* Restore our superuser privileges. */
614 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000615
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000616 /* Open a connection to the remote host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000617
Damien Miller95def091999-11-25 00:26:21 +1100618 ok = ssh_connect(host, &hostaddr, options.port,
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000619 options.connection_attempts,
620 original_effective_uid != 0 || !options.use_privileged_port,
621 original_real_uid,
622 options.proxy_command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000623
Damien Miller5428f641999-11-25 11:54:57 +1100624 /*
625 * If we successfully made the connection, load the host private key
626 * in case we will need it later for combined rsa-rhosts
627 * authentication. This must be done before releasing extra
628 * privileges, because the file is only readable by root.
629 */
Damien Millereba71ba2000-04-29 23:57:08 +1000630 if (ok && (options.protocol & SSH_PROTO_1)) {
631 Key k;
Damien Miller95def091999-11-25 00:26:21 +1100632 host_private_key = RSA_new();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100633 k.type = KEY_RSA1;
Damien Millereba71ba2000-04-29 23:57:08 +1000634 k.rsa = host_private_key;
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000635 if (load_private_key(_PATH_HOST_KEY_FILE, "", &k, NULL))
Damien Miller95def091999-11-25 00:26:21 +1100636 host_private_key_loaded = 1;
637 }
Damien Miller5428f641999-11-25 11:54:57 +1100638 /*
639 * Get rid of any extra privileges that we may have. We will no
640 * longer need them. Also, extra privileges could make it very hard
641 * to read identity files and other non-world-readable files from the
642 * user's home directory if it happens to be on a NFS volume where
643 * root is mapped to nobody.
644 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000645
Damien Miller5428f641999-11-25 11:54:57 +1100646 /*
647 * Note that some legacy systems need to postpone the following call
648 * to permanently_set_uid() until the private hostkey is destroyed
649 * with RSA_free(). Otherwise the calling user could ptrace() the
650 * process, read the private hostkey and impersonate the host.
651 * OpenBSD does not allow ptracing of setuid processes.
652 */
Damien Miller95def091999-11-25 00:26:21 +1100653 permanently_set_uid(original_real_uid);
654
Damien Miller5428f641999-11-25 11:54:57 +1100655 /*
656 * Now that we are back to our own permissions, create ~/.ssh
657 * directory if it doesn\'t already exist.
658 */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000659 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, _PATH_SSH_USER_DIR);
Damien Miller95def091999-11-25 00:26:21 +1100660 if (stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000661 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100662 error("Could not create directory '%.200s'.", buf);
663
664 /* Check if the connection failed, and try "rsh" if appropriate. */
665 if (!ok) {
666 if (options.port != 0)
Damien Milleraae6c611999-12-06 11:47:28 +1100667 log("Secure connection to %.100s on port %hu refused%.100s.",
Damien Miller95def091999-11-25 00:26:21 +1100668 host, options.port,
669 options.fallback_to_rsh ? "; reverting to insecure method" : "");
670 else
671 log("Secure connection to %.100s refused%.100s.", host,
672 options.fallback_to_rsh ? "; reverting to insecure method" : "");
673
674 if (options.fallback_to_rsh) {
675 rsh_connect(host, options.user, &command);
676 fatal("rsh_connect returned");
677 }
678 exit(1);
679 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100680 /* Expand ~ in options.identity_files, known host file names. */
Damien Millereba71ba2000-04-29 23:57:08 +1000681 /* XXX mem-leaks */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100682 for (i = 0; i < options.num_identity_files; i++) {
Damien Miller95def091999-11-25 00:26:21 +1100683 options.identity_files[i] =
Damien Miller0bc1bd82000-11-13 22:57:25 +1100684 tilde_expand_filename(options.identity_files[i], original_real_uid);
685 options.identity_files_type[i] = guess_identity_file_type(options.identity_files[i]);
686 debug("identity file %s type %d", options.identity_files[i],
687 options.identity_files_type[i]);
688 }
689 options.system_hostfile =
690 tilde_expand_filename(options.system_hostfile, original_real_uid);
691 options.user_hostfile =
692 tilde_expand_filename(options.user_hostfile, original_real_uid);
693 options.system_hostfile2 =
694 tilde_expand_filename(options.system_hostfile2, original_real_uid);
695 options.user_hostfile2 =
696 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100697
698 /* Log into the remote system. This never returns if the login fails. */
699 ssh_login(host_private_key_loaded, host_private_key,
Damien Miller34132e52000-01-14 15:45:46 +1100700 host, (struct sockaddr *)&hostaddr, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100701
702 /* We no longer need the host private key. Clear it now. */
703 if (host_private_key_loaded)
704 RSA_free(host_private_key); /* Destroys contents safely */
705
Damien Miller1383bd82000-04-06 12:32:37 +1000706 exit_status = compat20 ? ssh_session2() : ssh_session();
707 packet_close();
708 return exit_status;
709}
710
Damien Millerbd483e72000-04-30 10:00:53 +1000711void
712x11_get_proto(char *proto, int proto_len, char *data, int data_len)
713{
714 char line[512];
715 FILE *f;
716 int got_data = 0, i;
717
Damien Millerd3a18572000-06-07 19:55:44 +1000718 if (options.xauth_location) {
719 /* Try to get Xauthority information for the display. */
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000720 snprintf(line, sizeof line, "%.100s list %.200s 2>" _PATH_DEVNULL,
Damien Millerd3a18572000-06-07 19:55:44 +1000721 options.xauth_location, getenv("DISPLAY"));
722 f = popen(line, "r");
723 if (f && fgets(line, sizeof(line), f) &&
724 sscanf(line, "%*s %s %s", proto, data) == 2)
725 got_data = 1;
726 if (f)
727 pclose(f);
728 }
Damien Millerbd483e72000-04-30 10:00:53 +1000729 /*
730 * If we didn't get authentication data, just make up some
731 * data. The forwarding code will check the validity of the
732 * response anyway, and substitute this data. The X11
733 * server, however, will ignore this fake data and use
734 * whatever authentication mechanisms it was using otherwise
735 * for the local connection.
736 */
737 if (!got_data) {
738 u_int32_t rand = 0;
739
740 strlcpy(proto, "MIT-MAGIC-COOKIE-1", proto_len);
741 for (i = 0; i < 16; i++) {
742 if (i % 4 == 0)
743 rand = arc4random();
744 snprintf(data + 2 * i, data_len - 2 * i, "%02x", rand & 0xff);
745 rand >>= 8;
746 }
747 }
748}
749
Damien Miller0bc1bd82000-11-13 22:57:25 +1100750void
751ssh_init_forwarding(void)
752{
Kevin Steves12057502001-02-05 14:54:34 +0000753 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100754 int i;
Kevin Steves12057502001-02-05 14:54:34 +0000755
Damien Miller0bc1bd82000-11-13 22:57:25 +1100756 /* Initiate local TCP/IP port forwardings. */
757 for (i = 0; i < options.num_local_forwards; i++) {
758 debug("Connections to local port %d forwarded to remote address %.200s:%d",
759 options.local_forwards[i].port,
760 options.local_forwards[i].host,
761 options.local_forwards[i].host_port);
Kevin Steves12057502001-02-05 14:54:34 +0000762 success += channel_request_local_forwarding(
Damien Miller0bc1bd82000-11-13 22:57:25 +1100763 options.local_forwards[i].port,
764 options.local_forwards[i].host,
765 options.local_forwards[i].host_port,
766 options.gateway_ports);
767 }
Kevin Steves12057502001-02-05 14:54:34 +0000768 if (i > 0 && success == 0)
769 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100770
771 /* Initiate remote TCP/IP port forwardings. */
772 for (i = 0; i < options.num_remote_forwards; i++) {
773 debug("Connections to remote port %d forwarded to local address %.200s:%d",
774 options.remote_forwards[i].port,
775 options.remote_forwards[i].host,
776 options.remote_forwards[i].host_port);
777 channel_request_remote_forwarding(
778 options.remote_forwards[i].port,
779 options.remote_forwards[i].host,
780 options.remote_forwards[i].host_port);
781 }
782}
783
784void
785check_agent_present(void)
786{
787 if (options.forward_agent) {
788 /* Clear agent forwarding if we don\'t have an agent. */
789 int authfd = ssh_get_authentication_socket();
790 if (authfd < 0)
791 options.forward_agent = 0;
792 else
793 ssh_close_authentication_socket(authfd);
794 }
795}
796
Damien Miller1383bd82000-04-06 12:32:37 +1000797int
798ssh_session(void)
799{
800 int type;
Damien Miller1383bd82000-04-06 12:32:37 +1000801 int plen;
802 int interactive = 0;
803 int have_tty = 0;
804 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +1000805 char *cp;
806
Damien Miller95def091999-11-25 00:26:21 +1100807 /* Enable compression if requested. */
808 if (options.compression) {
809 debug("Requesting compression at level %d.", options.compression_level);
810
811 if (options.compression_level < 1 || options.compression_level > 9)
812 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
813
814 /* Send the request. */
815 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
816 packet_put_int(options.compression_level);
817 packet_send();
818 packet_write_wait();
819 type = packet_read(&plen);
820 if (type == SSH_SMSG_SUCCESS)
821 packet_start_compression(options.compression_level);
822 else if (type == SSH_SMSG_FAILURE)
823 log("Warning: Remote host refused compression.");
824 else
825 packet_disconnect("Protocol error waiting for compression response.");
826 }
827 /* Allocate a pseudo tty if appropriate. */
828 if (tty_flag) {
829 debug("Requesting pty.");
830
831 /* Start the packet. */
832 packet_start(SSH_CMSG_REQUEST_PTY);
833
834 /* Store TERM in the packet. There is no limit on the
835 length of the string. */
836 cp = getenv("TERM");
837 if (!cp)
838 cp = "";
839 packet_put_string(cp, strlen(cp));
840
841 /* Store window size in the packet. */
842 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
843 memset(&ws, 0, sizeof(ws));
844 packet_put_int(ws.ws_row);
845 packet_put_int(ws.ws_col);
846 packet_put_int(ws.ws_xpixel);
847 packet_put_int(ws.ws_ypixel);
848
849 /* Store tty modes in the packet. */
850 tty_make_modes(fileno(stdin));
851
852 /* Send the packet, and wait for it to leave. */
853 packet_send();
854 packet_write_wait();
855
856 /* Read response from the server. */
857 type = packet_read(&plen);
Damien Miller450a7a12000-03-26 13:04:51 +1000858 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100859 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000860 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +1000861 } else if (type == SSH_SMSG_FAILURE)
Damien Miller95def091999-11-25 00:26:21 +1100862 log("Warning: Remote host failed or refused to allocate a pseudo tty.");
863 else
864 packet_disconnect("Protocol error waiting for pty request response.");
865 }
866 /* Request X11 forwarding if enabled and DISPLAY is set. */
867 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +1000868 char proto[512], data[512];
869 /* Get reasonable local authentication information. */
870 x11_get_proto(proto, sizeof proto, data, sizeof data);
871 /* Request forwarding with authentication spoofing. */
Damien Miller95def091999-11-25 00:26:21 +1100872 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Millerbd483e72000-04-30 10:00:53 +1000873 x11_request_forwarding_with_spoofing(0, proto, data);
Damien Miller95def091999-11-25 00:26:21 +1100874
875 /* Read response from the server. */
876 type = packet_read(&plen);
877 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100878 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000879 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller95def091999-11-25 00:26:21 +1100880 log("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +1000881 } else {
Damien Miller95def091999-11-25 00:26:21 +1100882 packet_disconnect("Protocol error waiting for X11 forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +1000883 }
Damien Miller95def091999-11-25 00:26:21 +1100884 }
885 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000886 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +1100887
888 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100889 check_agent_present();
890
Damien Miller95def091999-11-25 00:26:21 +1100891 if (options.forward_agent) {
892 debug("Requesting authentication agent forwarding.");
893 auth_request_forwarding();
894
895 /* Read response from the server. */
896 type = packet_read(&plen);
897 packet_integrity_check(plen, 0, type);
898 if (type != SSH_SMSG_SUCCESS)
899 log("Warning: Remote host denied authentication agent forwarding.");
900 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000901
Damien Miller0bc1bd82000-11-13 22:57:25 +1100902 /* Initiate port forwardings. */
903 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000904
Damien Miller5428f641999-11-25 11:54:57 +1100905 /* If requested, let ssh continue in the background. */
Damien Miller4af51302000-04-16 11:18:38 +1000906 if (fork_after_authentication_flag)
Damien Miller5428f641999-11-25 11:54:57 +1100907 if (daemon(1, 1) < 0)
908 fatal("daemon() failed: %.200s", strerror(errno));
909
910 /*
911 * If a command was specified on the command line, execute the
912 * command now. Otherwise request the server to start a shell.
913 */
Damien Miller95def091999-11-25 00:26:21 +1100914 if (buffer_len(&command) > 0) {
915 int len = buffer_len(&command);
916 if (len > 900)
917 len = 900;
918 debug("Sending command: %.*s", len, buffer_ptr(&command));
919 packet_start(SSH_CMSG_EXEC_CMD);
920 packet_put_string(buffer_ptr(&command), buffer_len(&command));
921 packet_send();
922 packet_write_wait();
923 } else {
924 debug("Requesting shell.");
925 packet_start(SSH_CMSG_EXEC_SHELL);
926 packet_send();
927 packet_write_wait();
928 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000929
Damien Miller95def091999-11-25 00:26:21 +1100930 /* Enter the interactive session. */
Damien Millerad833b32000-08-23 10:46:23 +1000931 return client_loop(have_tty, tty_flag ? options.escape_char : -1, 0);
Damien Miller1383bd82000-04-06 12:32:37 +1000932}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000933
Damien Miller1383bd82000-04-06 12:32:37 +1000934void
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000935client_subsystem_reply(int type, int plen, void *ctxt)
936{
937 int id, len;
938
939 id = packet_get_int();
940 len = buffer_len(&command);
Ben Lindstrom4040fe12001-03-05 06:52:57 +0000941 if (len > 900)
942 len = 900;
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000943 packet_done();
944 if (type == SSH2_MSG_CHANNEL_FAILURE)
945 fatal("Request for subsystem '%.*s' failed on channel %d",
946 len, buffer_ptr(&command), id);
947}
948
949void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100950ssh_session2_callback(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +1000951{
952 int len;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000953 int interactive = 0;
954
Kevin Stevesadf74cd2001-02-05 14:22:50 +0000955 debug("client_init id %d arg %ld", id, (long)arg);
Damien Miller1383bd82000-04-06 12:32:37 +1000956
957 if (no_shell_flag)
958 goto done;
959
960 if (tty_flag) {
961 struct winsize ws;
962 char *cp;
963 cp = getenv("TERM");
964 if (!cp)
965 cp = "";
966 /* Store window size in the packet. */
967 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
968 memset(&ws, 0, sizeof(ws));
969
970 channel_request_start(id, "pty-req", 0);
971 packet_put_cstring(cp);
972 packet_put_int(ws.ws_col);
973 packet_put_int(ws.ws_row);
974 packet_put_int(ws.ws_xpixel);
975 packet_put_int(ws.ws_ypixel);
976 packet_put_cstring(""); /* XXX: encode terminal modes */
977 packet_send();
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000978 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000979 /* XXX wait for reply */
980 }
Damien Millerbd483e72000-04-30 10:00:53 +1000981 if (options.forward_x11 &&
982 getenv("DISPLAY") != NULL) {
983 char proto[512], data[512];
984 /* Get reasonable local authentication information. */
985 x11_get_proto(proto, sizeof proto, data, sizeof data);
986 /* Request forwarding with authentication spoofing. */
987 debug("Requesting X11 forwarding with authentication spoofing.");
988 x11_request_forwarding_with_spoofing(id, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000989 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000990 /* XXX wait for reply */
991 }
992
Damien Miller0bc1bd82000-11-13 22:57:25 +1100993 check_agent_present();
994 if (options.forward_agent) {
995 debug("Requesting authentication agent forwarding.");
996 channel_request_start(id, "auth-agent-req@openssh.com", 0);
997 packet_send();
998 }
999
Damien Miller1383bd82000-04-06 12:32:37 +10001000 len = buffer_len(&command);
1001 if (len > 0) {
1002 if (len > 900)
1003 len = 900;
Damien Miller832562e2001-01-30 09:30:01 +11001004 if (subsystem_flag) {
1005 debug("Sending subsystem: %.*s", len, buffer_ptr(&command));
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001006 channel_request_start(id, "subsystem", /*want reply*/ 1);
1007 /* register callback for reply */
1008 /* XXX we asume that client_loop has already been called */
1009 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &client_subsystem_reply);
1010 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &client_subsystem_reply);
Damien Miller832562e2001-01-30 09:30:01 +11001011 } else {
1012 debug("Sending command: %.*s", len, buffer_ptr(&command));
1013 channel_request_start(id, "exec", 0);
1014 }
Ben Lindstrom4040fe12001-03-05 06:52:57 +00001015 packet_put_string(buffer_ptr(&command), buffer_len(&command));
Damien Miller1383bd82000-04-06 12:32:37 +10001016 packet_send();
1017 } else {
1018 channel_request(id, "shell", 0);
1019 }
1020 /* channel_callback(id, SSH2_MSG_OPEN_CONFIGMATION, client_init, 0); */
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001021
Damien Miller1383bd82000-04-06 12:32:37 +10001022done:
1023 /* register different callback, etc. XXX */
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001024 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001025}
1026
1027int
1028ssh_session2(void)
1029{
1030 int window, packetmax, id;
Damien Millerad833b32000-08-23 10:46:23 +10001031 int in, out, err;
1032
Damien Millercaf6dd62000-08-29 11:33:50 +11001033 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001034 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001035 } else {
1036 in = dup(STDIN_FILENO);
1037 }
1038 out = dup(STDOUT_FILENO);
1039 err = dup(STDERR_FILENO);
1040
1041 if (in < 0 || out < 0 || err < 0)
1042 fatal("dup() in/out/err failed");
1043
Damien Miller69b69aa2000-10-28 14:19:58 +11001044 /* enable nonblocking unless tty */
1045 if (!isatty(in))
1046 set_nonblock(in);
1047 if (!isatty(out))
1048 set_nonblock(out);
1049 if (!isatty(err))
1050 set_nonblock(err);
1051
Damien Miller0bc1bd82000-11-13 22:57:25 +11001052 /* XXX should be pre-session */
1053 ssh_init_forwarding();
Kevin Stevesef4eea92001-02-05 12:42:17 +00001054
Damien Millerad833b32000-08-23 10:46:23 +10001055 /* If requested, let ssh continue in the background. */
1056 if (fork_after_authentication_flag)
1057 if (daemon(1, 1) < 0)
1058 fatal("daemon() failed: %.200s", strerror(errno));
1059
Damien Millere4340be2000-09-16 13:29:08 +11001060 window = CHAN_SES_WINDOW_DEFAULT;
1061 packetmax = CHAN_SES_PACKET_DEFAULT;
1062 if (!tty_flag) {
Damien Miller1383bd82000-04-06 12:32:37 +10001063 window *= 2;
Damien Millere4340be2000-09-16 13:29:08 +11001064 packetmax *=2;
Damien Miller1383bd82000-04-06 12:32:37 +10001065 }
Damien Miller1383bd82000-04-06 12:32:37 +10001066 id = channel_new(
1067 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001068 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Miller69b69aa2000-10-28 14:19:58 +11001069 xstrdup("client-session"), /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001070
Damien Miller1383bd82000-04-06 12:32:37 +10001071 channel_open(id);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001072 channel_register_callback(id, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION,
1073 ssh_session2_callback, (void *)0);
Damien Miller1383bd82000-04-06 12:32:37 +10001074
Damien Millerad833b32000-08-23 10:46:23 +10001075 return client_loop(tty_flag, tty_flag ? options.escape_char : -1, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001076}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001077
1078int
1079guess_identity_file_type(const char *filename)
1080{
1081 struct stat st;
1082 Key *public;
1083 int type = KEY_RSA1; /* default */
1084
1085 if (stat(filename, &st) < 0) {
Ben Lindstrom14920292000-11-21 21:24:55 +00001086 /* ignore this key */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001087 return KEY_UNSPEC;
1088 }
1089 public = key_new(type);
1090 if (!load_public_key(filename, public, NULL)) {
1091 /* ok, so we will assume this is 'some' key */
1092 type = KEY_UNSPEC;
1093 }
1094 key_free(public);
1095 return type;
1096}