blob: d12d7580ac722f45e21ae1de045480f696626451 [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 Lindstrom711b04a2001-08-06 21:12:42 +000042RCSID("$OpenBSD: ssh.c,v 1.131 2001/07/27 14:50:45 millert 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
Ben Lindstromc5b68002001-07-04 04:52:03 +0000154#ifdef SMARTCARD
155/* Smartcard reader id */
156int sc_reader_num = -1;
157#endif
158
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000159/* Prints a help message to the user. This function never returns. */
160
Ben Lindstrombba81212001-06-25 05:01:22 +0000161static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000162usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000163{
Kevin Stevesec84dc12000-12-13 17:45:15 +0000164 fprintf(stderr, "Usage: %s [options] host [command]\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100165 fprintf(stderr, "Options:\n");
166 fprintf(stderr, " -l user Log in using this user name.\n");
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000167 fprintf(stderr, " -n Redirect input from " _PATH_DEVNULL ".\n");
Damien Millerb1715dc2000-05-30 13:44:51 +1000168 fprintf(stderr, " -A Enable authentication agent forwarding.\n");
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000169 fprintf(stderr, " -a Disable authentication agent forwarding (default).\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000170#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100171 fprintf(stderr, " -k Disable Kerberos ticket and AFS token forwarding.\n");
172#endif /* AFS */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000173 fprintf(stderr, " -X Enable X11 connection forwarding.\n");
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000174 fprintf(stderr, " -x Disable X11 connection forwarding (default).\n");
Ben Lindstrom0ab2a012001-03-05 06:45:21 +0000175 fprintf(stderr, " -i file Identity for public key authentication "
176 "(default: ~/.ssh/identity)\n");
Damien Miller95def091999-11-25 00:26:21 +1100177 fprintf(stderr, " -t Tty; allocate a tty even if command is given.\n");
Damien Miller1383bd82000-04-06 12:32:37 +1000178 fprintf(stderr, " -T Do not allocate a tty.\n");
Damien Miller95def091999-11-25 00:26:21 +1100179 fprintf(stderr, " -v Verbose; display verbose debugging messages.\n");
Damien Millere4340be2000-09-16 13:29:08 +1100180 fprintf(stderr, " Multiple -v increases verbosity.\n");
Damien Miller95def091999-11-25 00:26:21 +1100181 fprintf(stderr, " -V Display version number only.\n");
182 fprintf(stderr, " -P Don't allocate a privileged port.\n");
183 fprintf(stderr, " -q Quiet; don't display any warning messages.\n");
184 fprintf(stderr, " -f Fork into background after authentication.\n");
185 fprintf(stderr, " -e char Set escape character; ``none'' = disable (default: ~).\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000186
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000187 fprintf(stderr, " -c cipher Select encryption algorithm\n");
Ben Lindstrom3d73a342001-03-05 07:39:01 +0000188 fprintf(stderr, " -m macs Specify MAC algorithms for protocol version 2.\n");
Damien Miller95def091999-11-25 00:26:21 +1100189 fprintf(stderr, " -p port Connect to this port. Server must be on the same port.\n");
190 fprintf(stderr, " -L listen-port:host:port Forward local port to remote address\n");
191 fprintf(stderr, " -R listen-port:host:port Forward remote port to local address\n");
Kevin Stevesec84dc12000-12-13 17:45:15 +0000192 fprintf(stderr, " These cause %s to listen for connections on a port, and\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100193 fprintf(stderr, " forward them to the other side by connecting to host:port.\n");
194 fprintf(stderr, " -C Enable compression.\n");
Damien Miller1383bd82000-04-06 12:32:37 +1000195 fprintf(stderr, " -N Do not execute a shell or command.\n");
Damien Miller95def091999-11-25 00:26:21 +1100196 fprintf(stderr, " -g Allow remote hosts to connect to forwarded ports.\n");
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000197 fprintf(stderr, " -1 Force protocol version 1.\n");
198 fprintf(stderr, " -2 Force protocol version 2.\n");
Damien Miller34132e52000-01-14 15:45:46 +1100199 fprintf(stderr, " -4 Use IPv4 only.\n");
200 fprintf(stderr, " -6 Use IPv6 only.\n");
Damien Miller95def091999-11-25 00:26:21 +1100201 fprintf(stderr, " -o 'option' Process the option as if it was read from a configuration file.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100202 fprintf(stderr, " -s Invoke command (mandatory) as SSH2 subsystem.\n");
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000203 fprintf(stderr, " -b addr Local IP address.\n");
Damien Miller95def091999-11-25 00:26:21 +1100204 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000205}
206
Damien Miller95def091999-11-25 00:26:21 +1100207/*
208 * Connects to the given host using rsh (or prints an error message and exits
209 * if rsh is not available). This function never returns.
210 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000211static void
Damien Miller95def091999-11-25 00:26:21 +1100212rsh_connect(char *host, char *user, Buffer * command)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000213{
Damien Miller95def091999-11-25 00:26:21 +1100214 char *args[10];
215 int i;
216
217 log("Using rsh. WARNING: Connection will not be encrypted.");
218 /* Build argument list for rsh. */
219 i = 0;
220 args[i++] = _PATH_RSH;
221 /* host may have to come after user on some systems */
222 args[i++] = host;
223 if (user) {
224 args[i++] = "-l";
225 args[i++] = user;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000226 }
Damien Miller95def091999-11-25 00:26:21 +1100227 if (buffer_len(command) > 0) {
228 buffer_append(command, "\0", 1);
229 args[i++] = buffer_ptr(command);
230 }
231 args[i++] = NULL;
232 if (debug_flag) {
233 for (i = 0; args[i]; i++) {
234 if (i != 0)
235 fprintf(stderr, " ");
236 fprintf(stderr, "%s", args[i]);
237 }
238 fprintf(stderr, "\n");
239 }
240 execv(_PATH_RSH, args);
241 perror(_PATH_RSH);
242 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000243}
244
Ben Lindstrombba81212001-06-25 05:01:22 +0000245static int ssh_session(void);
246static int ssh_session2(void);
247static void load_public_identity_files(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000248
Damien Miller95def091999-11-25 00:26:21 +1100249/*
250 * Main program for the ssh client.
251 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000252int
253main(int ac, char **av)
254{
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000255 int i, opt, exit_status, cerr;
Damien Milleraae6c611999-12-06 11:47:28 +1100256 u_short fwd_port, fwd_host_port;
Damien Millerf4614452001-07-14 12:18:10 +1000257 char *p, *cp, buf[256];
Damien Miller95def091999-11-25 00:26:21 +1100258 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000259 struct passwd *pw;
Damien Miller1383bd82000-04-06 12:32:37 +1000260 int dummy;
Damien Miller95def091999-11-25 00:26:21 +1100261 uid_t original_effective_uid;
Damien Miller4f8e6692001-07-14 13:22:53 +1000262 extern int optopt;
263 extern int optind;
264 extern int optreset;
265 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000266
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000267 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000268 init_rng();
269
Damien Miller5428f641999-11-25 11:54:57 +1100270 /*
271 * Save the original real uid. It will be needed later (uid-swapping
272 * may clobber the real uid).
273 */
Damien Miller95def091999-11-25 00:26:21 +1100274 original_real_uid = getuid();
275 original_effective_uid = geteuid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000276
Damien Miller05dd7952000-10-01 00:42:48 +1100277#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100278 /* If we are installed setuid root be careful to not drop core. */
279 if (original_real_uid != original_effective_uid) {
280 struct rlimit rlim;
281 rlim.rlim_cur = rlim.rlim_max = 0;
282 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
283 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000284 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100285#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000286 /* Get user data. */
287 pw = getpwuid(original_real_uid);
288 if (!pw) {
289 log("You don't exist, go away!");
290 exit(1);
291 }
292 /* Take a copy of the returned structure. */
293 pw = pwcopy(pw);
294
Damien Miller5428f641999-11-25 11:54:57 +1100295 /*
296 * Use uid-swapping to give up root privileges for the duration of
297 * option processing. We will re-instantiate the rights when we are
298 * ready to create the privileged port, and will permanently drop
299 * them when the port has been created (actually, when the connection
300 * has been made, as we may need to create the port several times).
301 */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000302 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000303
Damien Miller5428f641999-11-25 11:54:57 +1100304 /*
305 * Set our umask to something reasonable, as some files are created
306 * with the default umask. This will make them world-readable but
307 * writable only by the owner, which is ok for all files for which we
308 * don't set the modes explicitly.
309 */
Damien Miller95def091999-11-25 00:26:21 +1100310 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000311
Damien Miller95def091999-11-25 00:26:21 +1100312 /* Initialize option structure to indicate that no values have been set. */
313 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000314
Damien Miller95def091999-11-25 00:26:21 +1100315 /* Parse command-line arguments. */
316 host = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000317
Damien Millerf4614452001-07-14 12:18:10 +1000318again:
319 while ((opt = getopt(ac, av,
Damien Miller1b734482001-07-14 12:21:07 +1000320 "1246ab:c:e:fgi:kl:m:no:p:qstvxACD:I:L:NPR:TVX")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100321 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000322 case '1':
323 options.protocol = SSH_PROTO_1;
324 break;
Damien Miller4af51302000-04-16 11:18:38 +1000325 case '2':
326 options.protocol = SSH_PROTO_2;
327 break;
Damien Miller34132e52000-01-14 15:45:46 +1100328 case '4':
329 IPv4or6 = AF_INET;
330 break;
Damien Miller34132e52000-01-14 15:45:46 +1100331 case '6':
332 IPv4or6 = AF_INET6;
333 break;
Damien Miller95def091999-11-25 00:26:21 +1100334 case 'n':
335 stdin_null_flag = 1;
336 break;
Damien Miller95def091999-11-25 00:26:21 +1100337 case 'f':
338 fork_after_authentication_flag = 1;
339 stdin_null_flag = 1;
340 break;
Damien Miller95def091999-11-25 00:26:21 +1100341 case 'x':
342 options.forward_x11 = 0;
343 break;
Damien Miller95def091999-11-25 00:26:21 +1100344 case 'X':
345 options.forward_x11 = 1;
346 break;
Damien Miller95def091999-11-25 00:26:21 +1100347 case 'g':
348 options.gateway_ports = 1;
349 break;
Damien Miller95def091999-11-25 00:26:21 +1100350 case 'P':
351 options.use_privileged_port = 0;
352 break;
Damien Miller95def091999-11-25 00:26:21 +1100353 case 'a':
354 options.forward_agent = 0;
355 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000356 case 'A':
357 options.forward_agent = 1;
358 break;
Damien Miller95def091999-11-25 00:26:21 +1100359#ifdef AFS
360 case 'k':
361 options.kerberos_tgt_passing = 0;
362 options.afs_token_passing = 0;
363 break;
364#endif
365 case 'i':
366 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000367 fprintf(stderr, "Warning: Identity file %s "
368 "does not exist.\n", optarg);
Damien Miller95def091999-11-25 00:26:21 +1100369 break;
370 }
Damien Millerf4614452001-07-14 12:18:10 +1000371 if (options.num_identity_files >=
372 SSH_MAX_IDENTITY_FILES)
373 fatal("Too many identity files specified "
374 "(max %d)", SSH_MAX_IDENTITY_FILES);
375 options.identity_files[options.num_identity_files++] =
376 xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100377 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000378 case 'I':
379#ifdef SMARTCARD
380 sc_reader_num = atoi(optarg);
381#else
382 fprintf(stderr, "no support for smartcards.\n");
383#endif
384 break;
Damien Miller95def091999-11-25 00:26:21 +1100385 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000386 if (tty_flag)
387 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100388 tty_flag = 1;
389 break;
Damien Miller95def091999-11-25 00:26:21 +1100390 case 'v':
Damien Millere4340be2000-09-16 13:29:08 +1100391 if (0 == debug_flag) {
392 debug_flag = 1;
393 options.log_level = SYSLOG_LEVEL_DEBUG1;
394 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
395 options.log_level++;
396 break;
Damien Millerf4614452001-07-14 12:18:10 +1000397 } else
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000398 fatal("Too high debugging level.");
Damien Millere4340be2000-09-16 13:29:08 +1100399 /* fallthrough */
Damien Miller95def091999-11-25 00:26:21 +1100400 case 'V':
Damien Miller225736c2001-02-19 21:51:08 +1100401 fprintf(stderr,
402 "%s, SSH protocols %d.%d/%d.%d, OpenSSL 0x%8.8lx\n",
Damien Miller78928792000-04-12 20:17:38 +1000403 SSH_VERSION,
404 PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1,
Damien Miller225736c2001-02-19 21:51:08 +1100405 PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2,
406 SSLeay());
Damien Miller95def091999-11-25 00:26:21 +1100407 if (opt == 'V')
408 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100409 break;
Damien Miller95def091999-11-25 00:26:21 +1100410 case 'q':
411 options.log_level = SYSLOG_LEVEL_QUIET;
412 break;
Damien Miller95def091999-11-25 00:26:21 +1100413 case 'e':
414 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000415 (u_char) optarg[1] >= 64 &&
416 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000417 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100418 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000419 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100420 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000421 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100422 else {
Damien Millerf4614452001-07-14 12:18:10 +1000423 fprintf(stderr, "Bad escape character '%s'.\n",
424 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100425 exit(1);
426 }
427 break;
Damien Miller95def091999-11-25 00:26:21 +1100428 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000429 if (ciphers_valid(optarg)) {
430 /* SSH2 only */
431 options.ciphers = xstrdup(optarg);
Damien Miller30c3d422000-05-09 11:02:59 +1000432 options.cipher = SSH_CIPHER_ILLEGAL;
Damien Millereba71ba2000-04-29 23:57:08 +1000433 } else {
434 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100435 options.cipher = cipher_number(optarg);
436 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000437 fprintf(stderr,
438 "Unknown cipher type '%s'\n",
439 optarg);
Damien Millereba71ba2000-04-29 23:57:08 +1000440 exit(1);
441 }
Damien Millerf4614452001-07-14 12:18:10 +1000442 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100443 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000444 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100445 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000446 else
Damien Millere39cacc2000-11-29 12:18:44 +1100447 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100448 }
449 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000450 case 'm':
451 if (mac_valid(optarg))
452 options.macs = xstrdup(optarg);
453 else {
Damien Millerf4614452001-07-14 12:18:10 +1000454 fprintf(stderr, "Unknown mac type '%s'\n",
455 optarg);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000456 exit(1);
457 }
458 break;
Damien Miller95def091999-11-25 00:26:21 +1100459 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000460 options.port = a2port(optarg);
461 if (options.port == 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000462 fprintf(stderr, "Bad port '%s'\n", optarg);
463 exit(1);
464 }
Damien Miller95def091999-11-25 00:26:21 +1100465 break;
Damien Miller95def091999-11-25 00:26:21 +1100466 case 'l':
467 options.user = optarg;
468 break;
Damien Miller95def091999-11-25 00:26:21 +1100469 case 'R':
Damien Miller34132e52000-01-14 15:45:46 +1100470 if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf,
471 &fwd_host_port) != 3 &&
472 sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf,
473 &fwd_host_port) != 3) {
Damien Millerf4614452001-07-14 12:18:10 +1000474 fprintf(stderr,
475 "Bad forwarding specification '%s'.\n",
476 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100477 usage();
478 /* NOTREACHED */
479 }
Damien Millerf4614452001-07-14 12:18:10 +1000480 add_remote_forward(&options, fwd_port, buf,
481 fwd_host_port);
Damien Miller95def091999-11-25 00:26:21 +1100482 break;
Damien Miller95def091999-11-25 00:26:21 +1100483 case 'L':
Damien Miller34132e52000-01-14 15:45:46 +1100484 if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf,
485 &fwd_host_port) != 3 &&
486 sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf,
487 &fwd_host_port) != 3) {
Damien Millerf4614452001-07-14 12:18:10 +1000488 fprintf(stderr,
489 "Bad forwarding specification '%s'.\n",
490 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100491 usage();
492 /* NOTREACHED */
493 }
Damien Millerf4614452001-07-14 12:18:10 +1000494 add_local_forward(&options, fwd_port, buf,
495 fwd_host_port);
Damien Miller95def091999-11-25 00:26:21 +1100496 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000497
498 case 'D':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000499 fwd_port = a2port(optarg);
500 if (fwd_port == 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000501 fprintf(stderr, "Bad dynamic port '%s'\n",
502 optarg);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000503 exit(1);
504 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000505 add_local_forward(&options, fwd_port, "socks4", 0);
506 break;
507
Damien Miller95def091999-11-25 00:26:21 +1100508 case 'C':
509 options.compression = 1;
510 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000511 case 'N':
512 no_shell_flag = 1;
513 no_tty_flag = 1;
514 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000515 case 'T':
516 no_tty_flag = 1;
517 break;
Damien Miller95def091999-11-25 00:26:21 +1100518 case 'o':
519 dummy = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000520 if (process_config_line(&options, host ? host : "",
521 optarg, "command-line", 0, &dummy) != 0)
Damien Miller95def091999-11-25 00:26:21 +1100522 exit(1);
523 break;
Damien Miller832562e2001-01-30 09:30:01 +1100524 case 's':
525 subsystem_flag = 1;
526 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000527 case 'b':
528 options.bind_address = optarg;
529 break;
Damien Miller95def091999-11-25 00:26:21 +1100530 default:
531 usage();
532 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000533 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000534
Damien Millerf4614452001-07-14 12:18:10 +1000535 ac -= optind;
536 av += optind;
537
538 if (ac > 0 && !host && **av != '-') {
539 if (strchr(*av, '@')) {
540 p = xstrdup(*av);
541 cp = strchr(p, '@');
542 if (cp == NULL || cp == p)
543 usage();
544 options.user = p;
545 *cp = '\0';
546 host = ++cp;
547 } else
548 host = *av;
549 ac--, av++;
550 if (ac > 0) {
551 optind = 0;
552 optreset = 1;
553 goto again;
554 }
555 }
556
Damien Miller95def091999-11-25 00:26:21 +1100557 /* Check that we got a host name. */
558 if (!host)
559 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000560
Damien Millercb5e44a2000-09-29 12:12:36 +1100561 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100562 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100563
Damien Miller95def091999-11-25 00:26:21 +1100564 /* Initialize the command to execute on remote host. */
565 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000566
Damien Miller5428f641999-11-25 11:54:57 +1100567 /*
568 * Save the command to execute on the remote host in a buffer. There
569 * is no limit on the length of the command, except by the maximum
570 * packet size. Also sets the tty flag if there is no command.
571 */
Damien Millerf4614452001-07-14 12:18:10 +1000572 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100573 /* No command specified - execute shell on a tty. */
574 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100575 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000576 fprintf(stderr,
577 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100578 usage();
579 }
Damien Miller95def091999-11-25 00:26:21 +1100580 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000581 /* A command has been specified. Store it into the buffer. */
582 for (i = 0; i < ac; i++) {
583 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100584 buffer_append(&command, " ", 1);
585 buffer_append(&command, av[i], strlen(av[i]));
586 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000587 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000588
Damien Miller95def091999-11-25 00:26:21 +1100589 /* Cannot fork to background if no command. */
Damien Millercaf6dd62000-08-29 11:33:50 +1100590 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
Damien Miller95def091999-11-25 00:26:21 +1100591 fatal("Cannot fork into background without a command to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000592
Damien Miller95def091999-11-25 00:26:21 +1100593 /* Allocate a tty by default if no command specified. */
594 if (buffer_len(&command) == 0)
595 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000596
Ben Lindstromc72745a2000-12-02 19:03:54 +0000597 /* Force no tty*/
598 if (no_tty_flag)
599 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100600 /* Do not allocate a tty if stdin is not a tty. */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000601 if (!isatty(fileno(stdin)) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100602 if (tty_flag)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000603 log("Pseudo-terminal will not be allocated because stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100604 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000605 }
Damien Miller1383bd82000-04-06 12:32:37 +1000606
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000607 /*
608 * Initialize "log" output. Since we are the client all output
609 * actually goes to stderr.
610 */
Ben Lindstrom2b646522001-04-12 16:16:57 +0000611 log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
612 SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000613
Damien Miller95def091999-11-25 00:26:21 +1100614 /* Read per-user configuration file. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000615 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, _PATH_SSH_USER_CONFFILE);
Damien Miller95def091999-11-25 00:26:21 +1100616 read_config_file(buf, host, &options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000617
Damien Miller95def091999-11-25 00:26:21 +1100618 /* Read systemwide configuration file. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000619 read_config_file(_PATH_HOST_CONFIG_FILE, host, &options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000620
Damien Miller95def091999-11-25 00:26:21 +1100621 /* Fill configuration defaults. */
622 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000623
Damien Miller95def091999-11-25 00:26:21 +1100624 /* reinit */
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000625 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000626
Damien Miller60bc5172001-03-19 09:38:15 +1100627 seed_rng();
628
Damien Miller95def091999-11-25 00:26:21 +1100629 if (options.user == NULL)
630 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000631
Damien Miller95def091999-11-25 00:26:21 +1100632 if (options.hostname != NULL)
633 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000634
Damien Miller95def091999-11-25 00:26:21 +1100635 /* Disable rhosts authentication if not running as root. */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100636#ifdef HAVE_CYGWIN
637 /* Ignore uid if running under Windows */
638 if (!options.use_privileged_port) {
639#else
Damien Miller95def091999-11-25 00:26:21 +1100640 if (original_effective_uid != 0 || !options.use_privileged_port) {
Damien Millerbac2d8a2000-09-05 16:13:06 +1100641#endif
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000642 debug("Rhosts Authentication disabled, "
643 "originating port will not be trusted.");
Damien Miller95def091999-11-25 00:26:21 +1100644 options.rhosts_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100645 }
Damien Miller5428f641999-11-25 11:54:57 +1100646 /*
647 * If using rsh has been selected, exec it now (without trying
648 * anything else). Note that we must release privileges first.
649 */
Damien Miller95def091999-11-25 00:26:21 +1100650 if (options.use_rsh) {
Damien Miller5428f641999-11-25 11:54:57 +1100651 /*
652 * Restore our superuser privileges. This must be done
653 * before permanently setting the uid.
654 */
Damien Miller95def091999-11-25 00:26:21 +1100655 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000656
Damien Miller95def091999-11-25 00:26:21 +1100657 /* Switch to the original uid permanently. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000658 permanently_set_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000659
Damien Miller95def091999-11-25 00:26:21 +1100660 /* Execute rsh. */
661 rsh_connect(host, options.user, &command);
662 fatal("rsh_connect returned");
663 }
664 /* Restore our superuser privileges. */
665 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000666
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000667 /* Open a connection to the remote host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000668
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000669 cerr = ssh_connect(host, &hostaddr, options.port,
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000670 options.connection_attempts,
671 original_effective_uid != 0 || !options.use_privileged_port,
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000672 pw, options.proxy_command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000673
Damien Miller5428f641999-11-25 11:54:57 +1100674 /*
675 * If we successfully made the connection, load the host private key
676 * in case we will need it later for combined rsa-rhosts
677 * authentication. This must be done before releasing extra
678 * privileges, because the file is only readable by root.
679 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000680 sensitive_data.nkeys = 0;
681 sensitive_data.keys = NULL;
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000682 if (!cerr && (options.rhosts_rsa_authentication ||
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000683 options.hostbased_authentication)) {
684 sensitive_data.nkeys = 3;
685 sensitive_data.keys = xmalloc(sensitive_data.nkeys*sizeof(Key));
686 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Ben Lindstromd0fca422001-03-26 13:44:06 +0000687 _PATH_HOST_KEY_FILE, "", NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000688 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
689 _PATH_HOST_DSA_KEY_FILE, "", NULL);
690 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
691 _PATH_HOST_RSA_KEY_FILE, "", NULL);
Damien Miller95def091999-11-25 00:26:21 +1100692 }
Damien Miller5428f641999-11-25 11:54:57 +1100693 /*
694 * Get rid of any extra privileges that we may have. We will no
695 * longer need them. Also, extra privileges could make it very hard
696 * to read identity files and other non-world-readable files from the
697 * user's home directory if it happens to be on a NFS volume where
698 * root is mapped to nobody.
699 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000700
Damien Miller5428f641999-11-25 11:54:57 +1100701 /*
702 * Note that some legacy systems need to postpone the following call
703 * to permanently_set_uid() until the private hostkey is destroyed
704 * with RSA_free(). Otherwise the calling user could ptrace() the
705 * process, read the private hostkey and impersonate the host.
706 * OpenBSD does not allow ptracing of setuid processes.
707 */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000708 permanently_set_uid(pw);
Damien Miller95def091999-11-25 00:26:21 +1100709
Damien Miller5428f641999-11-25 11:54:57 +1100710 /*
711 * Now that we are back to our own permissions, create ~/.ssh
712 * directory if it doesn\'t already exist.
713 */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000714 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, _PATH_SSH_USER_DIR);
Damien Miller95def091999-11-25 00:26:21 +1100715 if (stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000716 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100717 error("Could not create directory '%.200s'.", buf);
718
719 /* Check if the connection failed, and try "rsh" if appropriate. */
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000720 if (cerr) {
721 if (!options.fallback_to_rsh)
722 exit(1);
Damien Miller95def091999-11-25 00:26:21 +1100723 if (options.port != 0)
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000724 log("Secure connection to %.100s on port %hu refused; "
725 "reverting to insecure method",
726 host, options.port);
Damien Miller95def091999-11-25 00:26:21 +1100727 else
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000728 log("Secure connection to %.100s refused; "
729 "reverting to insecure method.", host);
Damien Miller95def091999-11-25 00:26:21 +1100730
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000731 rsh_connect(host, options.user, &command);
732 fatal("rsh_connect returned");
Damien Miller95def091999-11-25 00:26:21 +1100733 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000734 /* load options.identity_files */
735 load_public_identity_files();
736
737 /* Expand ~ in known host file names. */
738 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100739 options.system_hostfile =
740 tilde_expand_filename(options.system_hostfile, original_real_uid);
741 options.user_hostfile =
742 tilde_expand_filename(options.user_hostfile, original_real_uid);
743 options.system_hostfile2 =
744 tilde_expand_filename(options.system_hostfile2, original_real_uid);
745 options.user_hostfile2 =
746 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100747
748 /* Log into the remote system. This never returns if the login fails. */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000749 ssh_login(sensitive_data.keys, sensitive_data.nkeys,
750 host, (struct sockaddr *)&hostaddr, pw);
Damien Miller95def091999-11-25 00:26:21 +1100751
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000752 /* We no longer need the private host keys. Clear them now. */
753 if (sensitive_data.nkeys != 0) {
754 for (i = 0; i < sensitive_data.nkeys; i++) {
755 if (sensitive_data.keys[i] != NULL) {
756 /* Destroys contents safely */
757 debug3("clear hostkey %d", i);
758 key_free(sensitive_data.keys[i]);
759 sensitive_data.keys[i] = NULL;
760 }
761 }
762 xfree(sensitive_data.keys);
763 }
Damien Miller95def091999-11-25 00:26:21 +1100764
Damien Miller1383bd82000-04-06 12:32:37 +1000765 exit_status = compat20 ? ssh_session2() : ssh_session();
766 packet_close();
767 return exit_status;
768}
769
Ben Lindstrombba81212001-06-25 05:01:22 +0000770static void
Damien Millerbd483e72000-04-30 10:00:53 +1000771x11_get_proto(char *proto, int proto_len, char *data, int data_len)
772{
773 char line[512];
774 FILE *f;
775 int got_data = 0, i;
776
Damien Millerd3a18572000-06-07 19:55:44 +1000777 if (options.xauth_location) {
778 /* Try to get Xauthority information for the display. */
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000779 snprintf(line, sizeof line, "%.100s list %.200s 2>" _PATH_DEVNULL,
Damien Millerd3a18572000-06-07 19:55:44 +1000780 options.xauth_location, getenv("DISPLAY"));
781 f = popen(line, "r");
782 if (f && fgets(line, sizeof(line), f) &&
783 sscanf(line, "%*s %s %s", proto, data) == 2)
784 got_data = 1;
785 if (f)
786 pclose(f);
787 }
Damien Millerbd483e72000-04-30 10:00:53 +1000788 /*
789 * If we didn't get authentication data, just make up some
790 * data. The forwarding code will check the validity of the
791 * response anyway, and substitute this data. The X11
792 * server, however, will ignore this fake data and use
793 * whatever authentication mechanisms it was using otherwise
794 * for the local connection.
795 */
796 if (!got_data) {
797 u_int32_t rand = 0;
798
799 strlcpy(proto, "MIT-MAGIC-COOKIE-1", proto_len);
800 for (i = 0; i < 16; i++) {
801 if (i % 4 == 0)
802 rand = arc4random();
803 snprintf(data + 2 * i, data_len - 2 * i, "%02x", rand & 0xff);
804 rand >>= 8;
805 }
806 }
807}
808
Ben Lindstrombba81212001-06-25 05:01:22 +0000809static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100810ssh_init_forwarding(void)
811{
Kevin Steves12057502001-02-05 14:54:34 +0000812 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100813 int i;
Kevin Steves12057502001-02-05 14:54:34 +0000814
Damien Miller0bc1bd82000-11-13 22:57:25 +1100815 /* Initiate local TCP/IP port forwardings. */
816 for (i = 0; i < options.num_local_forwards; i++) {
817 debug("Connections to local port %d forwarded to remote address %.200s:%d",
818 options.local_forwards[i].port,
819 options.local_forwards[i].host,
820 options.local_forwards[i].host_port);
Kevin Steves12057502001-02-05 14:54:34 +0000821 success += channel_request_local_forwarding(
Damien Miller0bc1bd82000-11-13 22:57:25 +1100822 options.local_forwards[i].port,
823 options.local_forwards[i].host,
824 options.local_forwards[i].host_port,
825 options.gateway_ports);
826 }
Kevin Steves12057502001-02-05 14:54:34 +0000827 if (i > 0 && success == 0)
828 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100829
830 /* Initiate remote TCP/IP port forwardings. */
831 for (i = 0; i < options.num_remote_forwards; i++) {
832 debug("Connections to remote port %d forwarded to local address %.200s:%d",
833 options.remote_forwards[i].port,
834 options.remote_forwards[i].host,
835 options.remote_forwards[i].host_port);
836 channel_request_remote_forwarding(
837 options.remote_forwards[i].port,
838 options.remote_forwards[i].host,
839 options.remote_forwards[i].host_port);
840 }
841}
842
Ben Lindstrombba81212001-06-25 05:01:22 +0000843static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100844check_agent_present(void)
845{
846 if (options.forward_agent) {
847 /* Clear agent forwarding if we don\'t have an agent. */
848 int authfd = ssh_get_authentication_socket();
849 if (authfd < 0)
850 options.forward_agent = 0;
851 else
852 ssh_close_authentication_socket(authfd);
853 }
854}
855
Ben Lindstrombba81212001-06-25 05:01:22 +0000856static int
Damien Miller1383bd82000-04-06 12:32:37 +1000857ssh_session(void)
858{
859 int type;
Damien Miller1383bd82000-04-06 12:32:37 +1000860 int plen;
861 int interactive = 0;
862 int have_tty = 0;
863 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +1000864 char *cp;
865
Damien Miller95def091999-11-25 00:26:21 +1100866 /* Enable compression if requested. */
867 if (options.compression) {
868 debug("Requesting compression at level %d.", options.compression_level);
869
870 if (options.compression_level < 1 || options.compression_level > 9)
871 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
872
873 /* Send the request. */
874 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
875 packet_put_int(options.compression_level);
876 packet_send();
877 packet_write_wait();
878 type = packet_read(&plen);
879 if (type == SSH_SMSG_SUCCESS)
880 packet_start_compression(options.compression_level);
881 else if (type == SSH_SMSG_FAILURE)
882 log("Warning: Remote host refused compression.");
883 else
884 packet_disconnect("Protocol error waiting for compression response.");
885 }
886 /* Allocate a pseudo tty if appropriate. */
887 if (tty_flag) {
888 debug("Requesting pty.");
889
890 /* Start the packet. */
891 packet_start(SSH_CMSG_REQUEST_PTY);
892
893 /* Store TERM in the packet. There is no limit on the
894 length of the string. */
895 cp = getenv("TERM");
896 if (!cp)
897 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +0000898 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +1100899
900 /* Store window size in the packet. */
901 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
902 memset(&ws, 0, sizeof(ws));
903 packet_put_int(ws.ws_row);
904 packet_put_int(ws.ws_col);
905 packet_put_int(ws.ws_xpixel);
906 packet_put_int(ws.ws_ypixel);
907
908 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000909 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +1100910
911 /* Send the packet, and wait for it to leave. */
912 packet_send();
913 packet_write_wait();
914
915 /* Read response from the server. */
916 type = packet_read(&plen);
Damien Miller450a7a12000-03-26 13:04:51 +1000917 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100918 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000919 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +1000920 } else if (type == SSH_SMSG_FAILURE)
Damien Miller95def091999-11-25 00:26:21 +1100921 log("Warning: Remote host failed or refused to allocate a pseudo tty.");
922 else
923 packet_disconnect("Protocol error waiting for pty request response.");
924 }
925 /* Request X11 forwarding if enabled and DISPLAY is set. */
926 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +1000927 char proto[512], data[512];
928 /* Get reasonable local authentication information. */
929 x11_get_proto(proto, sizeof proto, data, sizeof data);
930 /* Request forwarding with authentication spoofing. */
Damien Miller95def091999-11-25 00:26:21 +1100931 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Millerbd483e72000-04-30 10:00:53 +1000932 x11_request_forwarding_with_spoofing(0, proto, data);
Damien Miller95def091999-11-25 00:26:21 +1100933
934 /* Read response from the server. */
935 type = packet_read(&plen);
936 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100937 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000938 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller95def091999-11-25 00:26:21 +1100939 log("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +1000940 } else {
Damien Miller95def091999-11-25 00:26:21 +1100941 packet_disconnect("Protocol error waiting for X11 forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +1000942 }
Damien Miller95def091999-11-25 00:26:21 +1100943 }
944 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000945 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +1100946
947 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100948 check_agent_present();
949
Damien Miller95def091999-11-25 00:26:21 +1100950 if (options.forward_agent) {
951 debug("Requesting authentication agent forwarding.");
952 auth_request_forwarding();
953
954 /* Read response from the server. */
955 type = packet_read(&plen);
956 packet_integrity_check(plen, 0, type);
957 if (type != SSH_SMSG_SUCCESS)
958 log("Warning: Remote host denied authentication agent forwarding.");
959 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000960
Damien Miller0bc1bd82000-11-13 22:57:25 +1100961 /* Initiate port forwardings. */
962 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000963
Damien Miller5428f641999-11-25 11:54:57 +1100964 /* If requested, let ssh continue in the background. */
Damien Miller4af51302000-04-16 11:18:38 +1000965 if (fork_after_authentication_flag)
Damien Miller5428f641999-11-25 11:54:57 +1100966 if (daemon(1, 1) < 0)
967 fatal("daemon() failed: %.200s", strerror(errno));
968
969 /*
970 * If a command was specified on the command line, execute the
971 * command now. Otherwise request the server to start a shell.
972 */
Damien Miller95def091999-11-25 00:26:21 +1100973 if (buffer_len(&command) > 0) {
974 int len = buffer_len(&command);
975 if (len > 900)
976 len = 900;
977 debug("Sending command: %.*s", len, buffer_ptr(&command));
978 packet_start(SSH_CMSG_EXEC_CMD);
979 packet_put_string(buffer_ptr(&command), buffer_len(&command));
980 packet_send();
981 packet_write_wait();
982 } else {
983 debug("Requesting shell.");
984 packet_start(SSH_CMSG_EXEC_SHELL);
985 packet_send();
986 packet_write_wait();
987 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000988
Damien Miller95def091999-11-25 00:26:21 +1100989 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000990 return client_loop(have_tty, tty_flag ?
991 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +1000992}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000993
Ben Lindstrombba81212001-06-25 05:01:22 +0000994static void
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000995client_subsystem_reply(int type, int plen, void *ctxt)
996{
997 int id, len;
998
999 id = packet_get_int();
1000 len = buffer_len(&command);
Ben Lindstrom4040fe12001-03-05 06:52:57 +00001001 if (len > 900)
1002 len = 900;
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001003 packet_done();
1004 if (type == SSH2_MSG_CHANNEL_FAILURE)
1005 fatal("Request for subsystem '%.*s' failed on channel %d",
1006 len, buffer_ptr(&command), id);
1007}
1008
Ben Lindstrombba81212001-06-25 05:01:22 +00001009static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001010ssh_session2_callback(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001011{
1012 int len;
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001013 int interactive = 0;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001014 struct termios tio;
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001015
Kevin Stevesadf74cd2001-02-05 14:22:50 +00001016 debug("client_init id %d arg %ld", id, (long)arg);
Damien Miller1383bd82000-04-06 12:32:37 +10001017
Damien Miller1383bd82000-04-06 12:32:37 +10001018 if (tty_flag) {
1019 struct winsize ws;
1020 char *cp;
1021 cp = getenv("TERM");
1022 if (!cp)
1023 cp = "";
1024 /* Store window size in the packet. */
1025 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1026 memset(&ws, 0, sizeof(ws));
1027
1028 channel_request_start(id, "pty-req", 0);
1029 packet_put_cstring(cp);
1030 packet_put_int(ws.ws_col);
1031 packet_put_int(ws.ws_row);
1032 packet_put_int(ws.ws_xpixel);
1033 packet_put_int(ws.ws_ypixel);
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001034 tio = get_saved_tio();
1035 tty_make_modes(/*ignored*/ 0, &tio);
Damien Miller1383bd82000-04-06 12:32:37 +10001036 packet_send();
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001037 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001038 /* XXX wait for reply */
1039 }
Damien Millerbd483e72000-04-30 10:00:53 +10001040 if (options.forward_x11 &&
1041 getenv("DISPLAY") != NULL) {
1042 char proto[512], data[512];
1043 /* Get reasonable local authentication information. */
1044 x11_get_proto(proto, sizeof proto, data, sizeof data);
1045 /* Request forwarding with authentication spoofing. */
1046 debug("Requesting X11 forwarding with authentication spoofing.");
1047 x11_request_forwarding_with_spoofing(id, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001048 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001049 /* XXX wait for reply */
1050 }
1051
Damien Miller0bc1bd82000-11-13 22:57:25 +11001052 check_agent_present();
1053 if (options.forward_agent) {
1054 debug("Requesting authentication agent forwarding.");
1055 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1056 packet_send();
1057 }
1058
Damien Miller1383bd82000-04-06 12:32:37 +10001059 len = buffer_len(&command);
1060 if (len > 0) {
1061 if (len > 900)
1062 len = 900;
Damien Miller832562e2001-01-30 09:30:01 +11001063 if (subsystem_flag) {
1064 debug("Sending subsystem: %.*s", len, buffer_ptr(&command));
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001065 channel_request_start(id, "subsystem", /*want reply*/ 1);
1066 /* register callback for reply */
1067 /* XXX we asume that client_loop has already been called */
1068 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &client_subsystem_reply);
1069 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &client_subsystem_reply);
Damien Miller832562e2001-01-30 09:30:01 +11001070 } else {
1071 debug("Sending command: %.*s", len, buffer_ptr(&command));
1072 channel_request_start(id, "exec", 0);
1073 }
Ben Lindstrom4040fe12001-03-05 06:52:57 +00001074 packet_put_string(buffer_ptr(&command), buffer_len(&command));
Damien Miller1383bd82000-04-06 12:32:37 +10001075 packet_send();
1076 } else {
1077 channel_request(id, "shell", 0);
1078 }
1079 /* channel_callback(id, SSH2_MSG_OPEN_CONFIGMATION, client_init, 0); */
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001080
Damien Miller1383bd82000-04-06 12:32:37 +10001081 /* register different callback, etc. XXX */
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001082 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001083}
1084
Ben Lindstrombba81212001-06-25 05:01:22 +00001085static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001086ssh_session2_command(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001087{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001088 Channel *c;
1089 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001090
Damien Millercaf6dd62000-08-29 11:33:50 +11001091 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001092 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001093 } else {
1094 in = dup(STDIN_FILENO);
1095 }
1096 out = dup(STDOUT_FILENO);
1097 err = dup(STDERR_FILENO);
1098
1099 if (in < 0 || out < 0 || err < 0)
1100 fatal("dup() in/out/err failed");
1101
Damien Miller69b69aa2000-10-28 14:19:58 +11001102 /* enable nonblocking unless tty */
1103 if (!isatty(in))
1104 set_nonblock(in);
1105 if (!isatty(out))
1106 set_nonblock(out);
1107 if (!isatty(err))
1108 set_nonblock(err);
1109
Damien Millere4340be2000-09-16 13:29:08 +11001110 window = CHAN_SES_WINDOW_DEFAULT;
1111 packetmax = CHAN_SES_PACKET_DEFAULT;
1112 if (!tty_flag) {
Damien Miller1383bd82000-04-06 12:32:37 +10001113 window *= 2;
Damien Millere4340be2000-09-16 13:29:08 +11001114 packetmax *=2;
Damien Miller1383bd82000-04-06 12:32:37 +10001115 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001116 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001117 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001118 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Miller69b69aa2000-10-28 14:19:58 +11001119 xstrdup("client-session"), /*nonblock*/0);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001120 if (c == NULL)
1121 fatal("ssh_session2_command: channel_new failed");
Damien Miller1383bd82000-04-06 12:32:37 +10001122
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001123 debug3("ssh_session2_command: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001124
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001125 channel_send_open(c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001126 channel_register_callback(c->self, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION,
Damien Miller0bc1bd82000-11-13 22:57:25 +11001127 ssh_session2_callback, (void *)0);
Damien Miller1383bd82000-04-06 12:32:37 +10001128
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001129 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001130}
1131
Ben Lindstrombba81212001-06-25 05:01:22 +00001132static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001133ssh_session2(void)
1134{
1135 int id;
1136
1137 /* XXX should be pre-session */
1138 ssh_init_forwarding();
1139
1140 id = no_shell_flag ? -1 : ssh_session2_command();
1141
1142 /* If requested, let ssh continue in the background. */
1143 if (fork_after_authentication_flag)
1144 if (daemon(1, 1) < 0)
1145 fatal("daemon() failed: %.200s", strerror(errno));
1146
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001147 return client_loop(tty_flag, tty_flag ?
1148 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001149}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001150
Ben Lindstrombba81212001-06-25 05:01:22 +00001151static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001152load_public_identity_files(void)
1153{
1154 char *filename;
1155 Key *public;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001156 int i = 0;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001157
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001158#ifdef SMARTCARD
1159 if (sc_reader_num != -1 &&
1160 options.num_identity_files + 1 < SSH_MAX_IDENTITY_FILES &&
1161 (public = sc_get_key(sc_reader_num)) != NULL ) {
1162 Key *new;
1163
1164 if (options.num_identity_files + 2 > SSH_MAX_IDENTITY_FILES)
1165 options.num_identity_files = SSH_MAX_IDENTITY_FILES - 2;
1166 memmove(&options.identity_files[2], &options.identity_files[0],
1167 sizeof(char *) * options.num_identity_files);
1168 options.num_identity_files += 2;
1169 i = 2;
1170
1171 /* XXX ssh1 vs ssh2 */
1172 new = key_new(KEY_RSA);
1173 new->flags = KEY_FLAG_EXT;
1174 BN_copy(new->rsa->n, public->rsa->n);
1175 BN_copy(new->rsa->e, public->rsa->e);
1176 RSA_set_method(new->rsa, sc_get_engine());
1177 options.identity_keys[0] = new;
1178 options.identity_files[0] = xstrdup("smartcard rsa key");;
1179
1180 new = key_new(KEY_RSA1);
1181 new->flags = KEY_FLAG_EXT;
1182 BN_copy(new->rsa->n, public->rsa->n);
1183 BN_copy(new->rsa->e, public->rsa->e);
1184 RSA_set_method(new->rsa, sc_get_engine());
1185 options.identity_keys[1] = new;
1186 options.identity_files[1] = xstrdup("smartcard rsa1 key");
1187
1188 key_free(public);
1189 }
1190#endif
1191 for (; i < options.num_identity_files; i++) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001192 filename = tilde_expand_filename(options.identity_files[i],
1193 original_real_uid);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001194 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001195 debug("identity file %s type %d", filename,
1196 public ? public->type : -1);
1197 xfree(options.identity_files[i]);
1198 options.identity_files[i] = filename;
1199 options.identity_keys[i] = public;
1200 }
1201}