blob: 185d15e1ae78a8fe11d56626874f136c7886b333 [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 Lindstroma6c8a8d2001-08-06 21:42:00 +000042RCSID("$OpenBSD: ssh.c,v 1.134 2001/08/01 23:38:45 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"
Ben Lindstromc7637672001-06-09 00:36:26 +000056#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"
Ben Lindstromae8e2d32001-04-14 23:13:02 +000070#include "sshtty.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100071
Ben Lindstromc5b68002001-07-04 04:52:03 +000072#ifdef SMARTCARD
73#include <openssl/engine.h>
74#include "scard.h"
75#endif
76
Damien Miller3f905871999-11-15 17:10:57 +110077#ifdef HAVE___PROGNAME
78extern char *__progname;
Ben Lindstrom49a79c02000-11-17 03:47:20 +000079#else
80char *__progname;
81#endif
Damien Miller3f905871999-11-15 17:10:57 +110082
Damien Miller34132e52000-01-14 15:45:46 +110083/* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
84 Default value is AF_UNSPEC means both IPv4 and IPv6. */
Damien Miller7d80e342000-01-19 14:36:49 +110085#ifdef IPV4_DEFAULT
86int IPv4or6 = AF_INET;
87#else
Damien Miller34132e52000-01-14 15:45:46 +110088int IPv4or6 = AF_UNSPEC;
Damien Miller7d80e342000-01-19 14:36:49 +110089#endif
Damien Miller34132e52000-01-14 15:45:46 +110090
Damien Miller95def091999-11-25 00:26:21 +110091/* Flag indicating whether debug mode is on. This can be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092int debug_flag = 0;
93
Damien Miller78928792000-04-12 20:17:38 +100094/* Flag indicating whether a tty should be allocated */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100095int tty_flag = 0;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +000096int no_tty_flag = 0;
97int force_tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100098
Damien Miller1383bd82000-04-06 12:32:37 +100099/* don't exec a shell */
100int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000101
Damien Miller5428f641999-11-25 11:54:57 +1100102/*
103 * Flag indicating that nothing should be read from stdin. This can be set
104 * on the command line.
105 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000106int stdin_null_flag = 0;
107
Damien Miller5428f641999-11-25 11:54:57 +1100108/*
109 * Flag indicating that ssh should fork after authentication. This is useful
110 * so that the pasphrase can be entered manually, and then ssh goes to the
111 * background.
112 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000113int fork_after_authentication_flag = 0;
114
Damien Miller5428f641999-11-25 11:54:57 +1100115/*
116 * General data structure for command line options and options configurable
117 * in configuration files. See readconf.h.
118 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000119Options options;
120
Damien Miller5428f641999-11-25 11:54:57 +1100121/*
122 * Name of the host we are connecting to. This is the name given on the
123 * command line, or the HostName specified for the user-supplied name in a
124 * configuration file.
125 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000126char *host;
127
128/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100129struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000130
Damien Miller5428f641999-11-25 11:54:57 +1100131/*
132 * Flag to indicate that we have received a window change signal which has
133 * not yet been processed. This will cause a message indicating the new
134 * window size to be sent to the server a little later. This is volatile
135 * because this is updated in a signal handler.
136 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000137volatile int received_window_change_signal = 0;
138
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000139/* Private host keys. */
140struct {
141 Key **keys;
142 int nkeys;
143} sensitive_data;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000144
145/* Original real UID. */
146uid_t original_real_uid;
147
Damien Miller1383bd82000-04-06 12:32:37 +1000148/* command to be executed */
149Buffer command;
150
Damien Miller832562e2001-01-30 09:30:01 +1100151/* Should we execute a command or invoke a subsystem? */
152int subsystem_flag = 0;
153
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000154/* Prints a help message to the user. This function never returns. */
155
Ben Lindstrombba81212001-06-25 05:01:22 +0000156static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000157usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000158{
Kevin Stevesec84dc12000-12-13 17:45:15 +0000159 fprintf(stderr, "Usage: %s [options] host [command]\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100160 fprintf(stderr, "Options:\n");
161 fprintf(stderr, " -l user Log in using this user name.\n");
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000162 fprintf(stderr, " -n Redirect input from " _PATH_DEVNULL ".\n");
Damien Millerb1715dc2000-05-30 13:44:51 +1000163 fprintf(stderr, " -A Enable authentication agent forwarding.\n");
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000164 fprintf(stderr, " -a Disable authentication agent forwarding (default).\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000165#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100166 fprintf(stderr, " -k Disable Kerberos ticket and AFS token forwarding.\n");
167#endif /* AFS */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000168 fprintf(stderr, " -X Enable X11 connection forwarding.\n");
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000169 fprintf(stderr, " -x Disable X11 connection forwarding (default).\n");
Ben Lindstrom0ab2a012001-03-05 06:45:21 +0000170 fprintf(stderr, " -i file Identity for public key authentication "
171 "(default: ~/.ssh/identity)\n");
Damien Miller95def091999-11-25 00:26:21 +1100172 fprintf(stderr, " -t Tty; allocate a tty even if command is given.\n");
Damien Miller1383bd82000-04-06 12:32:37 +1000173 fprintf(stderr, " -T Do not allocate a tty.\n");
Damien Miller95def091999-11-25 00:26:21 +1100174 fprintf(stderr, " -v Verbose; display verbose debugging messages.\n");
Damien Millere4340be2000-09-16 13:29:08 +1100175 fprintf(stderr, " Multiple -v increases verbosity.\n");
Damien Miller95def091999-11-25 00:26:21 +1100176 fprintf(stderr, " -V Display version number only.\n");
177 fprintf(stderr, " -P Don't allocate a privileged port.\n");
178 fprintf(stderr, " -q Quiet; don't display any warning messages.\n");
179 fprintf(stderr, " -f Fork into background after authentication.\n");
180 fprintf(stderr, " -e char Set escape character; ``none'' = disable (default: ~).\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000181
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000182 fprintf(stderr, " -c cipher Select encryption algorithm\n");
Ben Lindstrom3d73a342001-03-05 07:39:01 +0000183 fprintf(stderr, " -m macs Specify MAC algorithms for protocol version 2.\n");
Damien Miller95def091999-11-25 00:26:21 +1100184 fprintf(stderr, " -p port Connect to this port. Server must be on the same port.\n");
185 fprintf(stderr, " -L listen-port:host:port Forward local port to remote address\n");
186 fprintf(stderr, " -R listen-port:host:port Forward remote port to local address\n");
Kevin Stevesec84dc12000-12-13 17:45:15 +0000187 fprintf(stderr, " These cause %s to listen for connections on a port, and\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100188 fprintf(stderr, " forward them to the other side by connecting to host:port.\n");
189 fprintf(stderr, " -C Enable compression.\n");
Damien Miller1383bd82000-04-06 12:32:37 +1000190 fprintf(stderr, " -N Do not execute a shell or command.\n");
Damien Miller95def091999-11-25 00:26:21 +1100191 fprintf(stderr, " -g Allow remote hosts to connect to forwarded ports.\n");
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000192 fprintf(stderr, " -1 Force protocol version 1.\n");
193 fprintf(stderr, " -2 Force protocol version 2.\n");
Damien Miller34132e52000-01-14 15:45:46 +1100194 fprintf(stderr, " -4 Use IPv4 only.\n");
195 fprintf(stderr, " -6 Use IPv6 only.\n");
Damien Miller95def091999-11-25 00:26:21 +1100196 fprintf(stderr, " -o 'option' Process the option as if it was read from a configuration file.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100197 fprintf(stderr, " -s Invoke command (mandatory) as SSH2 subsystem.\n");
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000198 fprintf(stderr, " -b addr Local IP address.\n");
Damien Miller95def091999-11-25 00:26:21 +1100199 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000200}
201
Damien Miller95def091999-11-25 00:26:21 +1100202/*
203 * Connects to the given host using rsh (or prints an error message and exits
204 * if rsh is not available). This function never returns.
205 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000206static void
Damien Miller95def091999-11-25 00:26:21 +1100207rsh_connect(char *host, char *user, Buffer * command)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000208{
Damien Miller95def091999-11-25 00:26:21 +1100209 char *args[10];
210 int i;
211
212 log("Using rsh. WARNING: Connection will not be encrypted.");
213 /* Build argument list for rsh. */
214 i = 0;
215 args[i++] = _PATH_RSH;
216 /* host may have to come after user on some systems */
217 args[i++] = host;
218 if (user) {
219 args[i++] = "-l";
220 args[i++] = user;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000221 }
Damien Miller95def091999-11-25 00:26:21 +1100222 if (buffer_len(command) > 0) {
223 buffer_append(command, "\0", 1);
224 args[i++] = buffer_ptr(command);
225 }
226 args[i++] = NULL;
227 if (debug_flag) {
228 for (i = 0; args[i]; i++) {
229 if (i != 0)
230 fprintf(stderr, " ");
231 fprintf(stderr, "%s", args[i]);
232 }
233 fprintf(stderr, "\n");
234 }
235 execv(_PATH_RSH, args);
236 perror(_PATH_RSH);
237 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000238}
239
Ben Lindstrombba81212001-06-25 05:01:22 +0000240static int ssh_session(void);
241static int ssh_session2(void);
242static void load_public_identity_files(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000243
Damien Miller95def091999-11-25 00:26:21 +1100244/*
245 * Main program for the ssh client.
246 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000247int
248main(int ac, char **av)
249{
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000250 int i, opt, exit_status, cerr;
Damien Milleraae6c611999-12-06 11:47:28 +1100251 u_short fwd_port, fwd_host_port;
Damien Millerf4614452001-07-14 12:18:10 +1000252 char *p, *cp, buf[256];
Damien Miller95def091999-11-25 00:26:21 +1100253 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000254 struct passwd *pw;
Damien Miller1383bd82000-04-06 12:32:37 +1000255 int dummy;
Damien Miller95def091999-11-25 00:26:21 +1100256 uid_t original_effective_uid;
Damien Miller4f8e6692001-07-14 13:22:53 +1000257 extern int optopt;
258 extern int optind;
259 extern int optreset;
260 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000261
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000262 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000263 init_rng();
264
Damien Miller5428f641999-11-25 11:54:57 +1100265 /*
266 * Save the original real uid. It will be needed later (uid-swapping
267 * may clobber the real uid).
268 */
Damien Miller95def091999-11-25 00:26:21 +1100269 original_real_uid = getuid();
270 original_effective_uid = geteuid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000271
Damien Miller05dd7952000-10-01 00:42:48 +1100272#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100273 /* If we are installed setuid root be careful to not drop core. */
274 if (original_real_uid != original_effective_uid) {
275 struct rlimit rlim;
276 rlim.rlim_cur = rlim.rlim_max = 0;
277 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
278 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000279 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100280#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000281 /* Get user data. */
282 pw = getpwuid(original_real_uid);
283 if (!pw) {
284 log("You don't exist, go away!");
285 exit(1);
286 }
287 /* Take a copy of the returned structure. */
288 pw = pwcopy(pw);
289
Damien Miller5428f641999-11-25 11:54:57 +1100290 /*
291 * Use uid-swapping to give up root privileges for the duration of
292 * option processing. We will re-instantiate the rights when we are
293 * ready to create the privileged port, and will permanently drop
294 * them when the port has been created (actually, when the connection
295 * has been made, as we may need to create the port several times).
296 */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000297 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000298
Damien Miller5428f641999-11-25 11:54:57 +1100299 /*
300 * Set our umask to something reasonable, as some files are created
301 * with the default umask. This will make them world-readable but
302 * writable only by the owner, which is ok for all files for which we
303 * don't set the modes explicitly.
304 */
Damien Miller95def091999-11-25 00:26:21 +1100305 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000306
Damien Miller95def091999-11-25 00:26:21 +1100307 /* Initialize option structure to indicate that no values have been set. */
308 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000309
Damien Miller95def091999-11-25 00:26:21 +1100310 /* Parse command-line arguments. */
311 host = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000312
Damien Millerf4614452001-07-14 12:18:10 +1000313again:
314 while ((opt = getopt(ac, av,
Damien Miller1b734482001-07-14 12:21:07 +1000315 "1246ab:c:e:fgi:kl:m:no:p:qstvxACD:I:L:NPR:TVX")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100316 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000317 case '1':
318 options.protocol = SSH_PROTO_1;
319 break;
Damien Miller4af51302000-04-16 11:18:38 +1000320 case '2':
321 options.protocol = SSH_PROTO_2;
322 break;
Damien Miller34132e52000-01-14 15:45:46 +1100323 case '4':
324 IPv4or6 = AF_INET;
325 break;
Damien Miller34132e52000-01-14 15:45:46 +1100326 case '6':
327 IPv4or6 = AF_INET6;
328 break;
Damien Miller95def091999-11-25 00:26:21 +1100329 case 'n':
330 stdin_null_flag = 1;
331 break;
Damien Miller95def091999-11-25 00:26:21 +1100332 case 'f':
333 fork_after_authentication_flag = 1;
334 stdin_null_flag = 1;
335 break;
Damien Miller95def091999-11-25 00:26:21 +1100336 case 'x':
337 options.forward_x11 = 0;
338 break;
Damien Miller95def091999-11-25 00:26:21 +1100339 case 'X':
340 options.forward_x11 = 1;
341 break;
Damien Miller95def091999-11-25 00:26:21 +1100342 case 'g':
343 options.gateway_ports = 1;
344 break;
Damien Miller95def091999-11-25 00:26:21 +1100345 case 'P':
346 options.use_privileged_port = 0;
347 break;
Damien Miller95def091999-11-25 00:26:21 +1100348 case 'a':
349 options.forward_agent = 0;
350 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000351 case 'A':
352 options.forward_agent = 1;
353 break;
Damien Miller95def091999-11-25 00:26:21 +1100354#ifdef AFS
355 case 'k':
356 options.kerberos_tgt_passing = 0;
357 options.afs_token_passing = 0;
358 break;
359#endif
360 case 'i':
361 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000362 fprintf(stderr, "Warning: Identity file %s "
363 "does not exist.\n", optarg);
Damien Miller95def091999-11-25 00:26:21 +1100364 break;
365 }
Damien Millerf4614452001-07-14 12:18:10 +1000366 if (options.num_identity_files >=
367 SSH_MAX_IDENTITY_FILES)
368 fatal("Too many identity files specified "
369 "(max %d)", SSH_MAX_IDENTITY_FILES);
370 options.identity_files[options.num_identity_files++] =
371 xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100372 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000373 case 'I':
374#ifdef SMARTCARD
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000375 options.smartcard_device = xstrdup(optarg);
Ben Lindstromc5b68002001-07-04 04:52:03 +0000376#else
377 fprintf(stderr, "no support for smartcards.\n");
378#endif
379 break;
Damien Miller95def091999-11-25 00:26:21 +1100380 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000381 if (tty_flag)
382 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100383 tty_flag = 1;
384 break;
Damien Miller95def091999-11-25 00:26:21 +1100385 case 'v':
Damien Millere4340be2000-09-16 13:29:08 +1100386 if (0 == debug_flag) {
387 debug_flag = 1;
388 options.log_level = SYSLOG_LEVEL_DEBUG1;
389 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
390 options.log_level++;
391 break;
Damien Millerf4614452001-07-14 12:18:10 +1000392 } else
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000393 fatal("Too high debugging level.");
Damien Millere4340be2000-09-16 13:29:08 +1100394 /* fallthrough */
Damien Miller95def091999-11-25 00:26:21 +1100395 case 'V':
Damien Miller225736c2001-02-19 21:51:08 +1100396 fprintf(stderr,
397 "%s, SSH protocols %d.%d/%d.%d, OpenSSL 0x%8.8lx\n",
Damien Miller78928792000-04-12 20:17:38 +1000398 SSH_VERSION,
399 PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1,
Damien Miller225736c2001-02-19 21:51:08 +1100400 PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2,
401 SSLeay());
Damien Miller95def091999-11-25 00:26:21 +1100402 if (opt == 'V')
403 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100404 break;
Damien Miller95def091999-11-25 00:26:21 +1100405 case 'q':
406 options.log_level = SYSLOG_LEVEL_QUIET;
407 break;
Damien Miller95def091999-11-25 00:26:21 +1100408 case 'e':
409 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000410 (u_char) optarg[1] >= 64 &&
411 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000412 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)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000416 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100417 else {
Damien Millerf4614452001-07-14 12:18:10 +1000418 fprintf(stderr, "Bad escape character '%s'.\n",
419 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100420 exit(1);
421 }
422 break;
Damien Miller95def091999-11-25 00:26:21 +1100423 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000424 if (ciphers_valid(optarg)) {
425 /* SSH2 only */
426 options.ciphers = xstrdup(optarg);
Damien Miller30c3d422000-05-09 11:02:59 +1000427 options.cipher = SSH_CIPHER_ILLEGAL;
Damien Millereba71ba2000-04-29 23:57:08 +1000428 } else {
429 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100430 options.cipher = cipher_number(optarg);
431 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000432 fprintf(stderr,
433 "Unknown cipher type '%s'\n",
434 optarg);
Damien Millereba71ba2000-04-29 23:57:08 +1000435 exit(1);
436 }
Damien Millerf4614452001-07-14 12:18:10 +1000437 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100438 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000439 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100440 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000441 else
Damien Millere39cacc2000-11-29 12:18:44 +1100442 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100443 }
444 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000445 case 'm':
446 if (mac_valid(optarg))
447 options.macs = xstrdup(optarg);
448 else {
Damien Millerf4614452001-07-14 12:18:10 +1000449 fprintf(stderr, "Unknown mac type '%s'\n",
450 optarg);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000451 exit(1);
452 }
453 break;
Damien Miller95def091999-11-25 00:26:21 +1100454 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000455 options.port = a2port(optarg);
456 if (options.port == 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000457 fprintf(stderr, "Bad port '%s'\n", optarg);
458 exit(1);
459 }
Damien Miller95def091999-11-25 00:26:21 +1100460 break;
Damien Miller95def091999-11-25 00:26:21 +1100461 case 'l':
462 options.user = optarg;
463 break;
Damien Miller95def091999-11-25 00:26:21 +1100464 case 'R':
Damien Miller34132e52000-01-14 15:45:46 +1100465 if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf,
466 &fwd_host_port) != 3 &&
467 sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf,
468 &fwd_host_port) != 3) {
Damien Millerf4614452001-07-14 12:18:10 +1000469 fprintf(stderr,
470 "Bad forwarding specification '%s'.\n",
471 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100472 usage();
473 /* NOTREACHED */
474 }
Damien Millerf4614452001-07-14 12:18:10 +1000475 add_remote_forward(&options, fwd_port, buf,
476 fwd_host_port);
Damien Miller95def091999-11-25 00:26:21 +1100477 break;
Damien Miller95def091999-11-25 00:26:21 +1100478 case 'L':
Damien Miller34132e52000-01-14 15:45:46 +1100479 if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf,
480 &fwd_host_port) != 3 &&
481 sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf,
482 &fwd_host_port) != 3) {
Damien Millerf4614452001-07-14 12:18:10 +1000483 fprintf(stderr,
484 "Bad forwarding specification '%s'.\n",
485 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100486 usage();
487 /* NOTREACHED */
488 }
Damien Millerf4614452001-07-14 12:18:10 +1000489 add_local_forward(&options, fwd_port, buf,
490 fwd_host_port);
Damien Miller95def091999-11-25 00:26:21 +1100491 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000492
493 case 'D':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000494 fwd_port = a2port(optarg);
495 if (fwd_port == 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000496 fprintf(stderr, "Bad dynamic port '%s'\n",
497 optarg);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000498 exit(1);
499 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000500 add_local_forward(&options, fwd_port, "socks4", 0);
501 break;
502
Damien Miller95def091999-11-25 00:26:21 +1100503 case 'C':
504 options.compression = 1;
505 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000506 case 'N':
507 no_shell_flag = 1;
508 no_tty_flag = 1;
509 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000510 case 'T':
511 no_tty_flag = 1;
512 break;
Damien Miller95def091999-11-25 00:26:21 +1100513 case 'o':
514 dummy = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000515 if (process_config_line(&options, host ? host : "",
516 optarg, "command-line", 0, &dummy) != 0)
Damien Miller95def091999-11-25 00:26:21 +1100517 exit(1);
518 break;
Damien Miller832562e2001-01-30 09:30:01 +1100519 case 's':
520 subsystem_flag = 1;
521 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000522 case 'b':
523 options.bind_address = optarg;
524 break;
Damien Miller95def091999-11-25 00:26:21 +1100525 default:
526 usage();
527 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000528 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000529
Damien Millerf4614452001-07-14 12:18:10 +1000530 ac -= optind;
531 av += optind;
532
533 if (ac > 0 && !host && **av != '-') {
534 if (strchr(*av, '@')) {
535 p = xstrdup(*av);
536 cp = strchr(p, '@');
537 if (cp == NULL || cp == p)
538 usage();
539 options.user = p;
540 *cp = '\0';
541 host = ++cp;
542 } else
543 host = *av;
544 ac--, av++;
545 if (ac > 0) {
546 optind = 0;
547 optreset = 1;
548 goto again;
549 }
550 }
551
Damien Miller95def091999-11-25 00:26:21 +1100552 /* Check that we got a host name. */
553 if (!host)
554 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000555
Damien Millercb5e44a2000-09-29 12:12:36 +1100556 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100557 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100558
Damien Miller95def091999-11-25 00:26:21 +1100559 /* Initialize the command to execute on remote host. */
560 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000561
Damien Miller5428f641999-11-25 11:54:57 +1100562 /*
563 * Save the command to execute on the remote host in a buffer. There
564 * is no limit on the length of the command, except by the maximum
565 * packet size. Also sets the tty flag if there is no command.
566 */
Damien Millerf4614452001-07-14 12:18:10 +1000567 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100568 /* No command specified - execute shell on a tty. */
569 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100570 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000571 fprintf(stderr,
572 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100573 usage();
574 }
Damien Miller95def091999-11-25 00:26:21 +1100575 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000576 /* A command has been specified. Store it into the buffer. */
577 for (i = 0; i < ac; i++) {
578 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100579 buffer_append(&command, " ", 1);
580 buffer_append(&command, av[i], strlen(av[i]));
581 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000582 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000583
Damien Miller95def091999-11-25 00:26:21 +1100584 /* Cannot fork to background if no command. */
Damien Millercaf6dd62000-08-29 11:33:50 +1100585 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
Damien Miller95def091999-11-25 00:26:21 +1100586 fatal("Cannot fork into background without a command to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000587
Damien Miller95def091999-11-25 00:26:21 +1100588 /* Allocate a tty by default if no command specified. */
589 if (buffer_len(&command) == 0)
590 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000591
Ben Lindstromc72745a2000-12-02 19:03:54 +0000592 /* Force no tty*/
593 if (no_tty_flag)
594 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100595 /* Do not allocate a tty if stdin is not a tty. */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000596 if (!isatty(fileno(stdin)) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100597 if (tty_flag)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000598 log("Pseudo-terminal will not be allocated because stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100599 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000600 }
Damien Miller1383bd82000-04-06 12:32:37 +1000601
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000602 /*
603 * Initialize "log" output. Since we are the client all output
604 * actually goes to stderr.
605 */
Ben Lindstrom2b646522001-04-12 16:16:57 +0000606 log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
607 SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000608
Damien Miller95def091999-11-25 00:26:21 +1100609 /* Read per-user configuration file. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000610 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, _PATH_SSH_USER_CONFFILE);
Damien Miller95def091999-11-25 00:26:21 +1100611 read_config_file(buf, host, &options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000612
Damien Miller95def091999-11-25 00:26:21 +1100613 /* Read systemwide configuration file. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000614 read_config_file(_PATH_HOST_CONFIG_FILE, host, &options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000615
Damien Miller95def091999-11-25 00:26:21 +1100616 /* Fill configuration defaults. */
617 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000618
Damien Miller95def091999-11-25 00:26:21 +1100619 /* reinit */
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000620 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000621
Damien Miller60bc5172001-03-19 09:38:15 +1100622 seed_rng();
623
Damien Miller95def091999-11-25 00:26:21 +1100624 if (options.user == NULL)
625 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000626
Damien Miller95def091999-11-25 00:26:21 +1100627 if (options.hostname != NULL)
628 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000629
Damien Miller95def091999-11-25 00:26:21 +1100630 /* Disable rhosts authentication if not running as root. */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100631#ifdef HAVE_CYGWIN
632 /* Ignore uid if running under Windows */
633 if (!options.use_privileged_port) {
634#else
Damien Miller95def091999-11-25 00:26:21 +1100635 if (original_effective_uid != 0 || !options.use_privileged_port) {
Damien Millerbac2d8a2000-09-05 16:13:06 +1100636#endif
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000637 debug("Rhosts Authentication disabled, "
638 "originating port will not be trusted.");
Damien Miller95def091999-11-25 00:26:21 +1100639 options.rhosts_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100640 }
Damien Miller5428f641999-11-25 11:54:57 +1100641 /*
642 * If using rsh has been selected, exec it now (without trying
643 * anything else). Note that we must release privileges first.
644 */
Damien Miller95def091999-11-25 00:26:21 +1100645 if (options.use_rsh) {
Damien Miller5428f641999-11-25 11:54:57 +1100646 /*
647 * Restore our superuser privileges. This must be done
648 * before permanently setting the uid.
649 */
Damien Miller95def091999-11-25 00:26:21 +1100650 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000651
Damien Miller95def091999-11-25 00:26:21 +1100652 /* Switch to the original uid permanently. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000653 permanently_set_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000654
Damien Miller95def091999-11-25 00:26:21 +1100655 /* Execute rsh. */
656 rsh_connect(host, options.user, &command);
657 fatal("rsh_connect returned");
658 }
659 /* Restore our superuser privileges. */
660 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000661
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000662 /* Open a connection to the remote host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000663
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000664 cerr = ssh_connect(host, &hostaddr, options.port,
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000665 options.connection_attempts,
666 original_effective_uid != 0 || !options.use_privileged_port,
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000667 pw, options.proxy_command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000668
Damien Miller5428f641999-11-25 11:54:57 +1100669 /*
670 * If we successfully made the connection, load the host private key
671 * in case we will need it later for combined rsa-rhosts
672 * authentication. This must be done before releasing extra
673 * privileges, because the file is only readable by root.
674 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000675 sensitive_data.nkeys = 0;
676 sensitive_data.keys = NULL;
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000677 if (!cerr && (options.rhosts_rsa_authentication ||
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000678 options.hostbased_authentication)) {
679 sensitive_data.nkeys = 3;
680 sensitive_data.keys = xmalloc(sensitive_data.nkeys*sizeof(Key));
681 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Ben Lindstromd0fca422001-03-26 13:44:06 +0000682 _PATH_HOST_KEY_FILE, "", NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000683 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
684 _PATH_HOST_DSA_KEY_FILE, "", NULL);
685 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
686 _PATH_HOST_RSA_KEY_FILE, "", NULL);
Damien Miller95def091999-11-25 00:26:21 +1100687 }
Damien Miller5428f641999-11-25 11:54:57 +1100688 /*
689 * Get rid of any extra privileges that we may have. We will no
690 * longer need them. Also, extra privileges could make it very hard
691 * to read identity files and other non-world-readable files from the
692 * user's home directory if it happens to be on a NFS volume where
693 * root is mapped to nobody.
694 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000695
Damien Miller5428f641999-11-25 11:54:57 +1100696 /*
697 * Note that some legacy systems need to postpone the following call
698 * to permanently_set_uid() until the private hostkey is destroyed
699 * with RSA_free(). Otherwise the calling user could ptrace() the
700 * process, read the private hostkey and impersonate the host.
701 * OpenBSD does not allow ptracing of setuid processes.
702 */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000703 permanently_set_uid(pw);
Damien Miller95def091999-11-25 00:26:21 +1100704
Damien Miller5428f641999-11-25 11:54:57 +1100705 /*
706 * Now that we are back to our own permissions, create ~/.ssh
707 * directory if it doesn\'t already exist.
708 */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000709 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, _PATH_SSH_USER_DIR);
Damien Miller95def091999-11-25 00:26:21 +1100710 if (stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000711 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100712 error("Could not create directory '%.200s'.", buf);
713
714 /* Check if the connection failed, and try "rsh" if appropriate. */
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000715 if (cerr) {
716 if (!options.fallback_to_rsh)
717 exit(1);
Damien Miller95def091999-11-25 00:26:21 +1100718 if (options.port != 0)
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000719 log("Secure connection to %.100s on port %hu refused; "
720 "reverting to insecure method",
721 host, options.port);
Damien Miller95def091999-11-25 00:26:21 +1100722 else
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000723 log("Secure connection to %.100s refused; "
724 "reverting to insecure method.", host);
Damien Miller95def091999-11-25 00:26:21 +1100725
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000726 rsh_connect(host, options.user, &command);
727 fatal("rsh_connect returned");
Damien Miller95def091999-11-25 00:26:21 +1100728 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000729 /* load options.identity_files */
730 load_public_identity_files();
731
732 /* Expand ~ in known host file names. */
733 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100734 options.system_hostfile =
735 tilde_expand_filename(options.system_hostfile, original_real_uid);
736 options.user_hostfile =
737 tilde_expand_filename(options.user_hostfile, original_real_uid);
738 options.system_hostfile2 =
739 tilde_expand_filename(options.system_hostfile2, original_real_uid);
740 options.user_hostfile2 =
741 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100742
743 /* Log into the remote system. This never returns if the login fails. */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000744 ssh_login(sensitive_data.keys, sensitive_data.nkeys,
745 host, (struct sockaddr *)&hostaddr, pw);
Damien Miller95def091999-11-25 00:26:21 +1100746
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000747 /* We no longer need the private host keys. Clear them now. */
748 if (sensitive_data.nkeys != 0) {
749 for (i = 0; i < sensitive_data.nkeys; i++) {
750 if (sensitive_data.keys[i] != NULL) {
751 /* Destroys contents safely */
752 debug3("clear hostkey %d", i);
753 key_free(sensitive_data.keys[i]);
754 sensitive_data.keys[i] = NULL;
755 }
756 }
757 xfree(sensitive_data.keys);
758 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000759 for (i = 0; i < options.num_identity_files; i++) {
760 if (options.identity_files[i]) {
761 xfree(options.identity_files[i]);
762 options.identity_files[i] = NULL;
763 }
764 if (options.identity_keys[i]) {
765 key_free(options.identity_keys[i]);
766 options.identity_keys[i] = NULL;
767 }
768 }
Damien Miller95def091999-11-25 00:26:21 +1100769
Damien Miller1383bd82000-04-06 12:32:37 +1000770 exit_status = compat20 ? ssh_session2() : ssh_session();
771 packet_close();
772 return exit_status;
773}
774
Ben Lindstrombba81212001-06-25 05:01:22 +0000775static void
Damien Millerbd483e72000-04-30 10:00:53 +1000776x11_get_proto(char *proto, int proto_len, char *data, int data_len)
777{
778 char line[512];
779 FILE *f;
780 int got_data = 0, i;
781
Damien Millerd3a18572000-06-07 19:55:44 +1000782 if (options.xauth_location) {
783 /* Try to get Xauthority information for the display. */
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000784 snprintf(line, sizeof line, "%.100s list %.200s 2>" _PATH_DEVNULL,
Damien Millerd3a18572000-06-07 19:55:44 +1000785 options.xauth_location, getenv("DISPLAY"));
786 f = popen(line, "r");
787 if (f && fgets(line, sizeof(line), f) &&
788 sscanf(line, "%*s %s %s", proto, data) == 2)
789 got_data = 1;
790 if (f)
791 pclose(f);
792 }
Damien Millerbd483e72000-04-30 10:00:53 +1000793 /*
794 * If we didn't get authentication data, just make up some
795 * data. The forwarding code will check the validity of the
796 * response anyway, and substitute this data. The X11
797 * server, however, will ignore this fake data and use
798 * whatever authentication mechanisms it was using otherwise
799 * for the local connection.
800 */
801 if (!got_data) {
802 u_int32_t rand = 0;
803
804 strlcpy(proto, "MIT-MAGIC-COOKIE-1", proto_len);
805 for (i = 0; i < 16; i++) {
806 if (i % 4 == 0)
807 rand = arc4random();
808 snprintf(data + 2 * i, data_len - 2 * i, "%02x", rand & 0xff);
809 rand >>= 8;
810 }
811 }
812}
813
Ben Lindstrombba81212001-06-25 05:01:22 +0000814static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100815ssh_init_forwarding(void)
816{
Kevin Steves12057502001-02-05 14:54:34 +0000817 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100818 int i;
Kevin Steves12057502001-02-05 14:54:34 +0000819
Damien Miller0bc1bd82000-11-13 22:57:25 +1100820 /* Initiate local TCP/IP port forwardings. */
821 for (i = 0; i < options.num_local_forwards; i++) {
822 debug("Connections to local port %d forwarded to remote address %.200s:%d",
823 options.local_forwards[i].port,
824 options.local_forwards[i].host,
825 options.local_forwards[i].host_port);
Kevin Steves12057502001-02-05 14:54:34 +0000826 success += channel_request_local_forwarding(
Damien Miller0bc1bd82000-11-13 22:57:25 +1100827 options.local_forwards[i].port,
828 options.local_forwards[i].host,
829 options.local_forwards[i].host_port,
830 options.gateway_ports);
831 }
Kevin Steves12057502001-02-05 14:54:34 +0000832 if (i > 0 && success == 0)
833 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100834
835 /* Initiate remote TCP/IP port forwardings. */
836 for (i = 0; i < options.num_remote_forwards; i++) {
837 debug("Connections to remote port %d forwarded to local address %.200s:%d",
838 options.remote_forwards[i].port,
839 options.remote_forwards[i].host,
840 options.remote_forwards[i].host_port);
841 channel_request_remote_forwarding(
842 options.remote_forwards[i].port,
843 options.remote_forwards[i].host,
844 options.remote_forwards[i].host_port);
845 }
846}
847
Ben Lindstrombba81212001-06-25 05:01:22 +0000848static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100849check_agent_present(void)
850{
851 if (options.forward_agent) {
852 /* Clear agent forwarding if we don\'t have an agent. */
853 int authfd = ssh_get_authentication_socket();
854 if (authfd < 0)
855 options.forward_agent = 0;
856 else
857 ssh_close_authentication_socket(authfd);
858 }
859}
860
Ben Lindstrombba81212001-06-25 05:01:22 +0000861static int
Damien Miller1383bd82000-04-06 12:32:37 +1000862ssh_session(void)
863{
864 int type;
Damien Miller1383bd82000-04-06 12:32:37 +1000865 int plen;
866 int interactive = 0;
867 int have_tty = 0;
868 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +1000869 char *cp;
870
Damien Miller95def091999-11-25 00:26:21 +1100871 /* Enable compression if requested. */
872 if (options.compression) {
873 debug("Requesting compression at level %d.", options.compression_level);
874
875 if (options.compression_level < 1 || options.compression_level > 9)
876 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
877
878 /* Send the request. */
879 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
880 packet_put_int(options.compression_level);
881 packet_send();
882 packet_write_wait();
883 type = packet_read(&plen);
884 if (type == SSH_SMSG_SUCCESS)
885 packet_start_compression(options.compression_level);
886 else if (type == SSH_SMSG_FAILURE)
887 log("Warning: Remote host refused compression.");
888 else
889 packet_disconnect("Protocol error waiting for compression response.");
890 }
891 /* Allocate a pseudo tty if appropriate. */
892 if (tty_flag) {
893 debug("Requesting pty.");
894
895 /* Start the packet. */
896 packet_start(SSH_CMSG_REQUEST_PTY);
897
898 /* Store TERM in the packet. There is no limit on the
899 length of the string. */
900 cp = getenv("TERM");
901 if (!cp)
902 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +0000903 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +1100904
905 /* Store window size in the packet. */
906 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
907 memset(&ws, 0, sizeof(ws));
908 packet_put_int(ws.ws_row);
909 packet_put_int(ws.ws_col);
910 packet_put_int(ws.ws_xpixel);
911 packet_put_int(ws.ws_ypixel);
912
913 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000914 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +1100915
916 /* Send the packet, and wait for it to leave. */
917 packet_send();
918 packet_write_wait();
919
920 /* Read response from the server. */
921 type = packet_read(&plen);
Damien Miller450a7a12000-03-26 13:04:51 +1000922 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100923 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000924 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +1000925 } else if (type == SSH_SMSG_FAILURE)
Damien Miller95def091999-11-25 00:26:21 +1100926 log("Warning: Remote host failed or refused to allocate a pseudo tty.");
927 else
928 packet_disconnect("Protocol error waiting for pty request response.");
929 }
930 /* Request X11 forwarding if enabled and DISPLAY is set. */
931 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +1000932 char proto[512], data[512];
933 /* Get reasonable local authentication information. */
934 x11_get_proto(proto, sizeof proto, data, sizeof data);
935 /* Request forwarding with authentication spoofing. */
Damien Miller95def091999-11-25 00:26:21 +1100936 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Millerbd483e72000-04-30 10:00:53 +1000937 x11_request_forwarding_with_spoofing(0, proto, data);
Damien Miller95def091999-11-25 00:26:21 +1100938
939 /* Read response from the server. */
940 type = packet_read(&plen);
941 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100942 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000943 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller95def091999-11-25 00:26:21 +1100944 log("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +1000945 } else {
Damien Miller95def091999-11-25 00:26:21 +1100946 packet_disconnect("Protocol error waiting for X11 forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +1000947 }
Damien Miller95def091999-11-25 00:26:21 +1100948 }
949 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000950 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +1100951
952 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100953 check_agent_present();
954
Damien Miller95def091999-11-25 00:26:21 +1100955 if (options.forward_agent) {
956 debug("Requesting authentication agent forwarding.");
957 auth_request_forwarding();
958
959 /* Read response from the server. */
960 type = packet_read(&plen);
961 packet_integrity_check(plen, 0, type);
962 if (type != SSH_SMSG_SUCCESS)
963 log("Warning: Remote host denied authentication agent forwarding.");
964 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000965
Damien Miller0bc1bd82000-11-13 22:57:25 +1100966 /* Initiate port forwardings. */
967 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000968
Damien Miller5428f641999-11-25 11:54:57 +1100969 /* If requested, let ssh continue in the background. */
Damien Miller4af51302000-04-16 11:18:38 +1000970 if (fork_after_authentication_flag)
Damien Miller5428f641999-11-25 11:54:57 +1100971 if (daemon(1, 1) < 0)
972 fatal("daemon() failed: %.200s", strerror(errno));
973
974 /*
975 * If a command was specified on the command line, execute the
976 * command now. Otherwise request the server to start a shell.
977 */
Damien Miller95def091999-11-25 00:26:21 +1100978 if (buffer_len(&command) > 0) {
979 int len = buffer_len(&command);
980 if (len > 900)
981 len = 900;
982 debug("Sending command: %.*s", len, buffer_ptr(&command));
983 packet_start(SSH_CMSG_EXEC_CMD);
984 packet_put_string(buffer_ptr(&command), buffer_len(&command));
985 packet_send();
986 packet_write_wait();
987 } else {
988 debug("Requesting shell.");
989 packet_start(SSH_CMSG_EXEC_SHELL);
990 packet_send();
991 packet_write_wait();
992 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000993
Damien Miller95def091999-11-25 00:26:21 +1100994 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000995 return client_loop(have_tty, tty_flag ?
996 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +1000997}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000998
Ben Lindstrombba81212001-06-25 05:01:22 +0000999static void
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001000client_subsystem_reply(int type, int plen, void *ctxt)
1001{
1002 int id, len;
1003
1004 id = packet_get_int();
1005 len = buffer_len(&command);
Ben Lindstrom4040fe12001-03-05 06:52:57 +00001006 if (len > 900)
1007 len = 900;
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001008 packet_done();
1009 if (type == SSH2_MSG_CHANNEL_FAILURE)
1010 fatal("Request for subsystem '%.*s' failed on channel %d",
1011 len, buffer_ptr(&command), id);
1012}
1013
Ben Lindstrombba81212001-06-25 05:01:22 +00001014static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001015ssh_session2_callback(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001016{
1017 int len;
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001018 int interactive = 0;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001019 struct termios tio;
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001020
Kevin Stevesadf74cd2001-02-05 14:22:50 +00001021 debug("client_init id %d arg %ld", id, (long)arg);
Damien Miller1383bd82000-04-06 12:32:37 +10001022
Damien Miller1383bd82000-04-06 12:32:37 +10001023 if (tty_flag) {
1024 struct winsize ws;
1025 char *cp;
1026 cp = getenv("TERM");
1027 if (!cp)
1028 cp = "";
1029 /* Store window size in the packet. */
1030 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1031 memset(&ws, 0, sizeof(ws));
1032
1033 channel_request_start(id, "pty-req", 0);
1034 packet_put_cstring(cp);
1035 packet_put_int(ws.ws_col);
1036 packet_put_int(ws.ws_row);
1037 packet_put_int(ws.ws_xpixel);
1038 packet_put_int(ws.ws_ypixel);
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001039 tio = get_saved_tio();
1040 tty_make_modes(/*ignored*/ 0, &tio);
Damien Miller1383bd82000-04-06 12:32:37 +10001041 packet_send();
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001042 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001043 /* XXX wait for reply */
1044 }
Damien Millerbd483e72000-04-30 10:00:53 +10001045 if (options.forward_x11 &&
1046 getenv("DISPLAY") != NULL) {
1047 char proto[512], data[512];
1048 /* Get reasonable local authentication information. */
1049 x11_get_proto(proto, sizeof proto, data, sizeof data);
1050 /* Request forwarding with authentication spoofing. */
1051 debug("Requesting X11 forwarding with authentication spoofing.");
1052 x11_request_forwarding_with_spoofing(id, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001053 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001054 /* XXX wait for reply */
1055 }
1056
Damien Miller0bc1bd82000-11-13 22:57:25 +11001057 check_agent_present();
1058 if (options.forward_agent) {
1059 debug("Requesting authentication agent forwarding.");
1060 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1061 packet_send();
1062 }
1063
Damien Miller1383bd82000-04-06 12:32:37 +10001064 len = buffer_len(&command);
1065 if (len > 0) {
1066 if (len > 900)
1067 len = 900;
Damien Miller832562e2001-01-30 09:30:01 +11001068 if (subsystem_flag) {
1069 debug("Sending subsystem: %.*s", len, buffer_ptr(&command));
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001070 channel_request_start(id, "subsystem", /*want reply*/ 1);
1071 /* register callback for reply */
1072 /* XXX we asume that client_loop has already been called */
1073 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &client_subsystem_reply);
1074 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &client_subsystem_reply);
Damien Miller832562e2001-01-30 09:30:01 +11001075 } else {
1076 debug("Sending command: %.*s", len, buffer_ptr(&command));
1077 channel_request_start(id, "exec", 0);
1078 }
Ben Lindstrom4040fe12001-03-05 06:52:57 +00001079 packet_put_string(buffer_ptr(&command), buffer_len(&command));
Damien Miller1383bd82000-04-06 12:32:37 +10001080 packet_send();
1081 } else {
1082 channel_request(id, "shell", 0);
1083 }
1084 /* channel_callback(id, SSH2_MSG_OPEN_CONFIGMATION, client_init, 0); */
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001085
Damien Miller1383bd82000-04-06 12:32:37 +10001086 /* register different callback, etc. XXX */
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001087 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001088}
1089
Ben Lindstrombba81212001-06-25 05:01:22 +00001090static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001091ssh_session2_command(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001092{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001093 Channel *c;
1094 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001095
Damien Millercaf6dd62000-08-29 11:33:50 +11001096 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001097 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001098 } else {
1099 in = dup(STDIN_FILENO);
1100 }
1101 out = dup(STDOUT_FILENO);
1102 err = dup(STDERR_FILENO);
1103
1104 if (in < 0 || out < 0 || err < 0)
1105 fatal("dup() in/out/err failed");
1106
Damien Miller69b69aa2000-10-28 14:19:58 +11001107 /* enable nonblocking unless tty */
1108 if (!isatty(in))
1109 set_nonblock(in);
1110 if (!isatty(out))
1111 set_nonblock(out);
1112 if (!isatty(err))
1113 set_nonblock(err);
1114
Damien Millere4340be2000-09-16 13:29:08 +11001115 window = CHAN_SES_WINDOW_DEFAULT;
1116 packetmax = CHAN_SES_PACKET_DEFAULT;
1117 if (!tty_flag) {
Damien Miller1383bd82000-04-06 12:32:37 +10001118 window *= 2;
Damien Millere4340be2000-09-16 13:29:08 +11001119 packetmax *=2;
Damien Miller1383bd82000-04-06 12:32:37 +10001120 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001121 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001122 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001123 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Miller69b69aa2000-10-28 14:19:58 +11001124 xstrdup("client-session"), /*nonblock*/0);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001125 if (c == NULL)
1126 fatal("ssh_session2_command: channel_new failed");
Damien Miller1383bd82000-04-06 12:32:37 +10001127
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001128 debug3("ssh_session2_command: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001129
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001130 channel_send_open(c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001131 channel_register_callback(c->self, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION,
Damien Miller0bc1bd82000-11-13 22:57:25 +11001132 ssh_session2_callback, (void *)0);
Damien Miller1383bd82000-04-06 12:32:37 +10001133
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001134 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001135}
1136
Ben Lindstrombba81212001-06-25 05:01:22 +00001137static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001138ssh_session2(void)
1139{
1140 int id;
1141
1142 /* XXX should be pre-session */
1143 ssh_init_forwarding();
1144
1145 id = no_shell_flag ? -1 : ssh_session2_command();
1146
1147 /* If requested, let ssh continue in the background. */
1148 if (fork_after_authentication_flag)
1149 if (daemon(1, 1) < 0)
1150 fatal("daemon() failed: %.200s", strerror(errno));
1151
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001152 return client_loop(tty_flag, tty_flag ?
1153 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001154}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001155
Ben Lindstrombba81212001-06-25 05:01:22 +00001156static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001157load_public_identity_files(void)
1158{
1159 char *filename;
1160 Key *public;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001161 int i = 0;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001162
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001163#ifdef SMARTCARD
Ben Lindstromf7db3bb2001-08-06 21:35:51 +00001164 if (options.smartcard_device != NULL &&
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001165 options.num_identity_files + 1 < SSH_MAX_IDENTITY_FILES &&
Ben Lindstromae996bf2001-08-06 21:27:53 +00001166 (public = sc_get_key(options.smartcard_device)) != NULL ) {
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001167 Key *new;
1168
1169 if (options.num_identity_files + 2 > SSH_MAX_IDENTITY_FILES)
1170 options.num_identity_files = SSH_MAX_IDENTITY_FILES - 2;
1171 memmove(&options.identity_files[2], &options.identity_files[0],
1172 sizeof(char *) * options.num_identity_files);
1173 options.num_identity_files += 2;
1174 i = 2;
1175
1176 /* XXX ssh1 vs ssh2 */
1177 new = key_new(KEY_RSA);
1178 new->flags = KEY_FLAG_EXT;
1179 BN_copy(new->rsa->n, public->rsa->n);
1180 BN_copy(new->rsa->e, public->rsa->e);
1181 RSA_set_method(new->rsa, sc_get_engine());
1182 options.identity_keys[0] = new;
1183 options.identity_files[0] = xstrdup("smartcard rsa key");;
1184
1185 new = key_new(KEY_RSA1);
1186 new->flags = KEY_FLAG_EXT;
1187 BN_copy(new->rsa->n, public->rsa->n);
1188 BN_copy(new->rsa->e, public->rsa->e);
1189 RSA_set_method(new->rsa, sc_get_engine());
1190 options.identity_keys[1] = new;
1191 options.identity_files[1] = xstrdup("smartcard rsa1 key");
1192
1193 key_free(public);
1194 }
1195#endif
1196 for (; i < options.num_identity_files; i++) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001197 filename = tilde_expand_filename(options.identity_files[i],
1198 original_real_uid);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001199 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001200 debug("identity file %s type %d", filename,
1201 public ? public->type : -1);
1202 xfree(options.identity_files[i]);
1203 options.identity_files[i] = filename;
1204 options.identity_keys[i] = public;
1205 }
1206}