blob: ee3f0c6a01efc0c7431bcfdde53b6b8fddd816e0 [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 Lindstromffce1472001-08-06 21:57:31 +000042RCSID("$OpenBSD: ssh.c,v 1.136 2001/08/02 15:43:57 jakob 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"
Ben Lindstromffce1472001-08-06 21:57:31 +000075#endif /* SMARTCARD */
Ben Lindstromc5b68002001-07-04 04:52:03 +000076
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");
Ben Lindstrom61eb9562001-08-06 21:53:42 +0000172#ifdef SMARTCARD
173 fprintf(stderr, " -I reader Set smartcard reader.\n");
174#endif /* SMARTCARD */
Damien Miller95def091999-11-25 00:26:21 +1100175 fprintf(stderr, " -t Tty; allocate a tty even if command is given.\n");
Damien Miller1383bd82000-04-06 12:32:37 +1000176 fprintf(stderr, " -T Do not allocate a tty.\n");
Damien Miller95def091999-11-25 00:26:21 +1100177 fprintf(stderr, " -v Verbose; display verbose debugging messages.\n");
Damien Millere4340be2000-09-16 13:29:08 +1100178 fprintf(stderr, " Multiple -v increases verbosity.\n");
Damien Miller95def091999-11-25 00:26:21 +1100179 fprintf(stderr, " -V Display version number only.\n");
180 fprintf(stderr, " -P Don't allocate a privileged port.\n");
181 fprintf(stderr, " -q Quiet; don't display any warning messages.\n");
182 fprintf(stderr, " -f Fork into background after authentication.\n");
183 fprintf(stderr, " -e char Set escape character; ``none'' = disable (default: ~).\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000184
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000185 fprintf(stderr, " -c cipher Select encryption algorithm\n");
Ben Lindstrom3d73a342001-03-05 07:39:01 +0000186 fprintf(stderr, " -m macs Specify MAC algorithms for protocol version 2.\n");
Damien Miller95def091999-11-25 00:26:21 +1100187 fprintf(stderr, " -p port Connect to this port. Server must be on the same port.\n");
188 fprintf(stderr, " -L listen-port:host:port Forward local port to remote address\n");
189 fprintf(stderr, " -R listen-port:host:port Forward remote port to local address\n");
Kevin Stevesec84dc12000-12-13 17:45:15 +0000190 fprintf(stderr, " These cause %s to listen for connections on a port, and\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100191 fprintf(stderr, " forward them to the other side by connecting to host:port.\n");
192 fprintf(stderr, " -C Enable compression.\n");
Damien Miller1383bd82000-04-06 12:32:37 +1000193 fprintf(stderr, " -N Do not execute a shell or command.\n");
Damien Miller95def091999-11-25 00:26:21 +1100194 fprintf(stderr, " -g Allow remote hosts to connect to forwarded ports.\n");
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000195 fprintf(stderr, " -1 Force protocol version 1.\n");
196 fprintf(stderr, " -2 Force protocol version 2.\n");
Damien Miller34132e52000-01-14 15:45:46 +1100197 fprintf(stderr, " -4 Use IPv4 only.\n");
198 fprintf(stderr, " -6 Use IPv6 only.\n");
Damien Miller95def091999-11-25 00:26:21 +1100199 fprintf(stderr, " -o 'option' Process the option as if it was read from a configuration file.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100200 fprintf(stderr, " -s Invoke command (mandatory) as SSH2 subsystem.\n");
Ben Lindstrom3b89c5e2001-06-05 20:44:16 +0000201 fprintf(stderr, " -b addr Local IP address.\n");
Damien Miller95def091999-11-25 00:26:21 +1100202 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000203}
204
Damien Miller95def091999-11-25 00:26:21 +1100205/*
206 * Connects to the given host using rsh (or prints an error message and exits
207 * if rsh is not available). This function never returns.
208 */
Ben Lindstrombba81212001-06-25 05:01:22 +0000209static void
Damien Miller95def091999-11-25 00:26:21 +1100210rsh_connect(char *host, char *user, Buffer * command)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000211{
Damien Miller95def091999-11-25 00:26:21 +1100212 char *args[10];
213 int i;
214
215 log("Using rsh. WARNING: Connection will not be encrypted.");
216 /* Build argument list for rsh. */
217 i = 0;
218 args[i++] = _PATH_RSH;
219 /* host may have to come after user on some systems */
220 args[i++] = host;
221 if (user) {
222 args[i++] = "-l";
223 args[i++] = user;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000224 }
Damien Miller95def091999-11-25 00:26:21 +1100225 if (buffer_len(command) > 0) {
226 buffer_append(command, "\0", 1);
227 args[i++] = buffer_ptr(command);
228 }
229 args[i++] = NULL;
230 if (debug_flag) {
231 for (i = 0; args[i]; i++) {
232 if (i != 0)
233 fprintf(stderr, " ");
234 fprintf(stderr, "%s", args[i]);
235 }
236 fprintf(stderr, "\n");
237 }
238 execv(_PATH_RSH, args);
239 perror(_PATH_RSH);
240 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000241}
242
Ben Lindstrombba81212001-06-25 05:01:22 +0000243static int ssh_session(void);
244static int ssh_session2(void);
245static void load_public_identity_files(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000246
Damien Miller95def091999-11-25 00:26:21 +1100247/*
248 * Main program for the ssh client.
249 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000250int
251main(int ac, char **av)
252{
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000253 int i, opt, exit_status, cerr;
Damien Milleraae6c611999-12-06 11:47:28 +1100254 u_short fwd_port, fwd_host_port;
Damien Millerf4614452001-07-14 12:18:10 +1000255 char *p, *cp, buf[256];
Damien Miller95def091999-11-25 00:26:21 +1100256 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000257 struct passwd *pw;
Damien Miller1383bd82000-04-06 12:32:37 +1000258 int dummy;
Damien Miller95def091999-11-25 00:26:21 +1100259 uid_t original_effective_uid;
Damien Miller4f8e6692001-07-14 13:22:53 +1000260 extern int optopt;
261 extern int optind;
262 extern int optreset;
263 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000264
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000265 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000266 init_rng();
267
Damien Miller5428f641999-11-25 11:54:57 +1100268 /*
269 * Save the original real uid. It will be needed later (uid-swapping
270 * may clobber the real uid).
271 */
Damien Miller95def091999-11-25 00:26:21 +1100272 original_real_uid = getuid();
273 original_effective_uid = geteuid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000274
Damien Miller05dd7952000-10-01 00:42:48 +1100275#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100276 /* If we are installed setuid root be careful to not drop core. */
277 if (original_real_uid != original_effective_uid) {
278 struct rlimit rlim;
279 rlim.rlim_cur = rlim.rlim_max = 0;
280 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
281 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000282 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100283#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000284 /* Get user data. */
285 pw = getpwuid(original_real_uid);
286 if (!pw) {
287 log("You don't exist, go away!");
288 exit(1);
289 }
290 /* Take a copy of the returned structure. */
291 pw = pwcopy(pw);
292
Damien Miller5428f641999-11-25 11:54:57 +1100293 /*
294 * Use uid-swapping to give up root privileges for the duration of
295 * option processing. We will re-instantiate the rights when we are
296 * ready to create the privileged port, and will permanently drop
297 * them when the port has been created (actually, when the connection
298 * has been made, as we may need to create the port several times).
299 */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000300 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000301
Damien Miller5428f641999-11-25 11:54:57 +1100302 /*
303 * Set our umask to something reasonable, as some files are created
304 * with the default umask. This will make them world-readable but
305 * writable only by the owner, which is ok for all files for which we
306 * don't set the modes explicitly.
307 */
Damien Miller95def091999-11-25 00:26:21 +1100308 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000309
Damien Miller95def091999-11-25 00:26:21 +1100310 /* Initialize option structure to indicate that no values have been set. */
311 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000312
Damien Miller95def091999-11-25 00:26:21 +1100313 /* Parse command-line arguments. */
314 host = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000315
Damien Millerf4614452001-07-14 12:18:10 +1000316again:
317 while ((opt = getopt(ac, av,
Damien Miller1b734482001-07-14 12:21:07 +1000318 "1246ab:c:e:fgi:kl:m:no:p:qstvxACD:I:L:NPR:TVX")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100319 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000320 case '1':
321 options.protocol = SSH_PROTO_1;
322 break;
Damien Miller4af51302000-04-16 11:18:38 +1000323 case '2':
324 options.protocol = SSH_PROTO_2;
325 break;
Damien Miller34132e52000-01-14 15:45:46 +1100326 case '4':
327 IPv4or6 = AF_INET;
328 break;
Damien Miller34132e52000-01-14 15:45:46 +1100329 case '6':
330 IPv4or6 = AF_INET6;
331 break;
Damien Miller95def091999-11-25 00:26:21 +1100332 case 'n':
333 stdin_null_flag = 1;
334 break;
Damien Miller95def091999-11-25 00:26:21 +1100335 case 'f':
336 fork_after_authentication_flag = 1;
337 stdin_null_flag = 1;
338 break;
Damien Miller95def091999-11-25 00:26:21 +1100339 case 'x':
340 options.forward_x11 = 0;
341 break;
Damien Miller95def091999-11-25 00:26:21 +1100342 case 'X':
343 options.forward_x11 = 1;
344 break;
Damien Miller95def091999-11-25 00:26:21 +1100345 case 'g':
346 options.gateway_ports = 1;
347 break;
Damien Miller95def091999-11-25 00:26:21 +1100348 case 'P':
349 options.use_privileged_port = 0;
350 break;
Damien Miller95def091999-11-25 00:26:21 +1100351 case 'a':
352 options.forward_agent = 0;
353 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000354 case 'A':
355 options.forward_agent = 1;
356 break;
Damien Miller95def091999-11-25 00:26:21 +1100357#ifdef AFS
358 case 'k':
359 options.kerberos_tgt_passing = 0;
360 options.afs_token_passing = 0;
361 break;
362#endif
363 case 'i':
364 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000365 fprintf(stderr, "Warning: Identity file %s "
366 "does not exist.\n", optarg);
Damien Miller95def091999-11-25 00:26:21 +1100367 break;
368 }
Damien Millerf4614452001-07-14 12:18:10 +1000369 if (options.num_identity_files >=
370 SSH_MAX_IDENTITY_FILES)
371 fatal("Too many identity files specified "
372 "(max %d)", SSH_MAX_IDENTITY_FILES);
373 options.identity_files[options.num_identity_files++] =
374 xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100375 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000376 case 'I':
377#ifdef SMARTCARD
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000378 options.smartcard_device = xstrdup(optarg);
Ben Lindstromffce1472001-08-06 21:57:31 +0000379#else /* SMARTCARD */
Ben Lindstromc5b68002001-07-04 04:52:03 +0000380 fprintf(stderr, "no support for smartcards.\n");
Ben Lindstromffce1472001-08-06 21:57:31 +0000381#endif /* SMARTCARD */
Ben Lindstromc5b68002001-07-04 04:52:03 +0000382 break;
Damien Miller95def091999-11-25 00:26:21 +1100383 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000384 if (tty_flag)
385 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100386 tty_flag = 1;
387 break;
Damien Miller95def091999-11-25 00:26:21 +1100388 case 'v':
Damien Millere4340be2000-09-16 13:29:08 +1100389 if (0 == debug_flag) {
390 debug_flag = 1;
391 options.log_level = SYSLOG_LEVEL_DEBUG1;
392 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
393 options.log_level++;
394 break;
Damien Millerf4614452001-07-14 12:18:10 +1000395 } else
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000396 fatal("Too high debugging level.");
Damien Millere4340be2000-09-16 13:29:08 +1100397 /* fallthrough */
Damien Miller95def091999-11-25 00:26:21 +1100398 case 'V':
Damien Miller225736c2001-02-19 21:51:08 +1100399 fprintf(stderr,
400 "%s, SSH protocols %d.%d/%d.%d, OpenSSL 0x%8.8lx\n",
Damien Miller78928792000-04-12 20:17:38 +1000401 SSH_VERSION,
402 PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1,
Damien Miller225736c2001-02-19 21:51:08 +1100403 PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2,
404 SSLeay());
Damien Miller95def091999-11-25 00:26:21 +1100405 if (opt == 'V')
406 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100407 break;
Damien Miller95def091999-11-25 00:26:21 +1100408 case 'q':
409 options.log_level = SYSLOG_LEVEL_QUIET;
410 break;
Damien Miller95def091999-11-25 00:26:21 +1100411 case 'e':
412 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000413 (u_char) optarg[1] >= 64 &&
414 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000415 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100416 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000417 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100418 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000419 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100420 else {
Damien Millerf4614452001-07-14 12:18:10 +1000421 fprintf(stderr, "Bad escape character '%s'.\n",
422 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100423 exit(1);
424 }
425 break;
Damien Miller95def091999-11-25 00:26:21 +1100426 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000427 if (ciphers_valid(optarg)) {
428 /* SSH2 only */
429 options.ciphers = xstrdup(optarg);
Damien Miller30c3d422000-05-09 11:02:59 +1000430 options.cipher = SSH_CIPHER_ILLEGAL;
Damien Millereba71ba2000-04-29 23:57:08 +1000431 } else {
432 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100433 options.cipher = cipher_number(optarg);
434 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000435 fprintf(stderr,
436 "Unknown cipher type '%s'\n",
437 optarg);
Damien Millereba71ba2000-04-29 23:57:08 +1000438 exit(1);
439 }
Damien Millerf4614452001-07-14 12:18:10 +1000440 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100441 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000442 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100443 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000444 else
Damien Millere39cacc2000-11-29 12:18:44 +1100445 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100446 }
447 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000448 case 'm':
449 if (mac_valid(optarg))
450 options.macs = xstrdup(optarg);
451 else {
Damien Millerf4614452001-07-14 12:18:10 +1000452 fprintf(stderr, "Unknown mac type '%s'\n",
453 optarg);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000454 exit(1);
455 }
456 break;
Damien Miller95def091999-11-25 00:26:21 +1100457 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000458 options.port = a2port(optarg);
459 if (options.port == 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000460 fprintf(stderr, "Bad port '%s'\n", optarg);
461 exit(1);
462 }
Damien Miller95def091999-11-25 00:26:21 +1100463 break;
Damien Miller95def091999-11-25 00:26:21 +1100464 case 'l':
465 options.user = optarg;
466 break;
Damien Miller95def091999-11-25 00:26:21 +1100467 case 'R':
Damien Miller34132e52000-01-14 15:45:46 +1100468 if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf,
469 &fwd_host_port) != 3 &&
470 sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf,
471 &fwd_host_port) != 3) {
Damien Millerf4614452001-07-14 12:18:10 +1000472 fprintf(stderr,
473 "Bad forwarding specification '%s'.\n",
474 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100475 usage();
476 /* NOTREACHED */
477 }
Damien Millerf4614452001-07-14 12:18:10 +1000478 add_remote_forward(&options, fwd_port, buf,
479 fwd_host_port);
Damien Miller95def091999-11-25 00:26:21 +1100480 break;
Damien Miller95def091999-11-25 00:26:21 +1100481 case 'L':
Damien Miller34132e52000-01-14 15:45:46 +1100482 if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf,
483 &fwd_host_port) != 3 &&
484 sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf,
485 &fwd_host_port) != 3) {
Damien Millerf4614452001-07-14 12:18:10 +1000486 fprintf(stderr,
487 "Bad forwarding specification '%s'.\n",
488 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100489 usage();
490 /* NOTREACHED */
491 }
Damien Millerf4614452001-07-14 12:18:10 +1000492 add_local_forward(&options, fwd_port, buf,
493 fwd_host_port);
Damien Miller95def091999-11-25 00:26:21 +1100494 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000495
496 case 'D':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000497 fwd_port = a2port(optarg);
498 if (fwd_port == 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000499 fprintf(stderr, "Bad dynamic port '%s'\n",
500 optarg);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000501 exit(1);
502 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000503 add_local_forward(&options, fwd_port, "socks4", 0);
504 break;
505
Damien Miller95def091999-11-25 00:26:21 +1100506 case 'C':
507 options.compression = 1;
508 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000509 case 'N':
510 no_shell_flag = 1;
511 no_tty_flag = 1;
512 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000513 case 'T':
514 no_tty_flag = 1;
515 break;
Damien Miller95def091999-11-25 00:26:21 +1100516 case 'o':
517 dummy = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000518 if (process_config_line(&options, host ? host : "",
519 optarg, "command-line", 0, &dummy) != 0)
Damien Miller95def091999-11-25 00:26:21 +1100520 exit(1);
521 break;
Damien Miller832562e2001-01-30 09:30:01 +1100522 case 's':
523 subsystem_flag = 1;
524 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000525 case 'b':
526 options.bind_address = optarg;
527 break;
Damien Miller95def091999-11-25 00:26:21 +1100528 default:
529 usage();
530 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000531 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000532
Damien Millerf4614452001-07-14 12:18:10 +1000533 ac -= optind;
534 av += optind;
535
536 if (ac > 0 && !host && **av != '-') {
537 if (strchr(*av, '@')) {
538 p = xstrdup(*av);
539 cp = strchr(p, '@');
540 if (cp == NULL || cp == p)
541 usage();
542 options.user = p;
543 *cp = '\0';
544 host = ++cp;
545 } else
546 host = *av;
547 ac--, av++;
548 if (ac > 0) {
549 optind = 0;
550 optreset = 1;
551 goto again;
552 }
553 }
554
Damien Miller95def091999-11-25 00:26:21 +1100555 /* Check that we got a host name. */
556 if (!host)
557 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000558
Damien Millercb5e44a2000-09-29 12:12:36 +1100559 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100560 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100561
Damien Miller95def091999-11-25 00:26:21 +1100562 /* Initialize the command to execute on remote host. */
563 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000564
Damien Miller5428f641999-11-25 11:54:57 +1100565 /*
566 * Save the command to execute on the remote host in a buffer. There
567 * is no limit on the length of the command, except by the maximum
568 * packet size. Also sets the tty flag if there is no command.
569 */
Damien Millerf4614452001-07-14 12:18:10 +1000570 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100571 /* No command specified - execute shell on a tty. */
572 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100573 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000574 fprintf(stderr,
575 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100576 usage();
577 }
Damien Miller95def091999-11-25 00:26:21 +1100578 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000579 /* A command has been specified. Store it into the buffer. */
580 for (i = 0; i < ac; i++) {
581 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100582 buffer_append(&command, " ", 1);
583 buffer_append(&command, av[i], strlen(av[i]));
584 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000585 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000586
Damien Miller95def091999-11-25 00:26:21 +1100587 /* Cannot fork to background if no command. */
Damien Millercaf6dd62000-08-29 11:33:50 +1100588 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
Damien Miller95def091999-11-25 00:26:21 +1100589 fatal("Cannot fork into background without a command to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000590
Damien Miller95def091999-11-25 00:26:21 +1100591 /* Allocate a tty by default if no command specified. */
592 if (buffer_len(&command) == 0)
593 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000594
Ben Lindstromc72745a2000-12-02 19:03:54 +0000595 /* Force no tty*/
596 if (no_tty_flag)
597 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100598 /* Do not allocate a tty if stdin is not a tty. */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000599 if (!isatty(fileno(stdin)) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100600 if (tty_flag)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000601 log("Pseudo-terminal will not be allocated because stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100602 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000603 }
Damien Miller1383bd82000-04-06 12:32:37 +1000604
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000605 /*
606 * Initialize "log" output. Since we are the client all output
607 * actually goes to stderr.
608 */
Ben Lindstrom2b646522001-04-12 16:16:57 +0000609 log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
610 SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000611
Damien Miller95def091999-11-25 00:26:21 +1100612 /* Read per-user configuration file. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000613 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, _PATH_SSH_USER_CONFFILE);
Damien Miller95def091999-11-25 00:26:21 +1100614 read_config_file(buf, host, &options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000615
Damien Miller95def091999-11-25 00:26:21 +1100616 /* Read systemwide configuration file. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000617 read_config_file(_PATH_HOST_CONFIG_FILE, host, &options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000618
Damien Miller95def091999-11-25 00:26:21 +1100619 /* Fill configuration defaults. */
620 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000621
Damien Miller95def091999-11-25 00:26:21 +1100622 /* reinit */
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000623 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000624
Damien Miller60bc5172001-03-19 09:38:15 +1100625 seed_rng();
626
Damien Miller95def091999-11-25 00:26:21 +1100627 if (options.user == NULL)
628 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000629
Damien Miller95def091999-11-25 00:26:21 +1100630 if (options.hostname != NULL)
631 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000632
Damien Miller95def091999-11-25 00:26:21 +1100633 /* Disable rhosts authentication if not running as root. */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100634#ifdef HAVE_CYGWIN
635 /* Ignore uid if running under Windows */
636 if (!options.use_privileged_port) {
637#else
Damien Miller95def091999-11-25 00:26:21 +1100638 if (original_effective_uid != 0 || !options.use_privileged_port) {
Damien Millerbac2d8a2000-09-05 16:13:06 +1100639#endif
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000640 debug("Rhosts Authentication disabled, "
641 "originating port will not be trusted.");
Damien Miller95def091999-11-25 00:26:21 +1100642 options.rhosts_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100643 }
Damien Miller5428f641999-11-25 11:54:57 +1100644 /*
645 * If using rsh has been selected, exec it now (without trying
646 * anything else). Note that we must release privileges first.
647 */
Damien Miller95def091999-11-25 00:26:21 +1100648 if (options.use_rsh) {
Damien Miller5428f641999-11-25 11:54:57 +1100649 /*
650 * Restore our superuser privileges. This must be done
651 * before permanently setting the uid.
652 */
Damien Miller95def091999-11-25 00:26:21 +1100653 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000654
Damien Miller95def091999-11-25 00:26:21 +1100655 /* Switch to the original uid permanently. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000656 permanently_set_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000657
Damien Miller95def091999-11-25 00:26:21 +1100658 /* Execute rsh. */
659 rsh_connect(host, options.user, &command);
660 fatal("rsh_connect returned");
661 }
662 /* Restore our superuser privileges. */
663 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000664
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000665 /* Open a connection to the remote host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000666
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000667 cerr = ssh_connect(host, &hostaddr, options.port,
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000668 options.connection_attempts,
669 original_effective_uid != 0 || !options.use_privileged_port,
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000670 pw, options.proxy_command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000671
Damien Miller5428f641999-11-25 11:54:57 +1100672 /*
673 * If we successfully made the connection, load the host private key
674 * in case we will need it later for combined rsa-rhosts
675 * authentication. This must be done before releasing extra
676 * privileges, because the file is only readable by root.
677 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000678 sensitive_data.nkeys = 0;
679 sensitive_data.keys = NULL;
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000680 if (!cerr && (options.rhosts_rsa_authentication ||
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000681 options.hostbased_authentication)) {
682 sensitive_data.nkeys = 3;
683 sensitive_data.keys = xmalloc(sensitive_data.nkeys*sizeof(Key));
684 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Ben Lindstromd0fca422001-03-26 13:44:06 +0000685 _PATH_HOST_KEY_FILE, "", NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000686 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
687 _PATH_HOST_DSA_KEY_FILE, "", NULL);
688 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
689 _PATH_HOST_RSA_KEY_FILE, "", NULL);
Damien Miller95def091999-11-25 00:26:21 +1100690 }
Damien Miller5428f641999-11-25 11:54:57 +1100691 /*
692 * Get rid of any extra privileges that we may have. We will no
693 * longer need them. Also, extra privileges could make it very hard
694 * to read identity files and other non-world-readable files from the
695 * user's home directory if it happens to be on a NFS volume where
696 * root is mapped to nobody.
697 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000698
Damien Miller5428f641999-11-25 11:54:57 +1100699 /*
700 * Note that some legacy systems need to postpone the following call
701 * to permanently_set_uid() until the private hostkey is destroyed
702 * with RSA_free(). Otherwise the calling user could ptrace() the
703 * process, read the private hostkey and impersonate the host.
704 * OpenBSD does not allow ptracing of setuid processes.
705 */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000706 permanently_set_uid(pw);
Damien Miller95def091999-11-25 00:26:21 +1100707
Damien Miller5428f641999-11-25 11:54:57 +1100708 /*
709 * Now that we are back to our own permissions, create ~/.ssh
710 * directory if it doesn\'t already exist.
711 */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000712 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, _PATH_SSH_USER_DIR);
Damien Miller95def091999-11-25 00:26:21 +1100713 if (stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000714 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100715 error("Could not create directory '%.200s'.", buf);
716
717 /* Check if the connection failed, and try "rsh" if appropriate. */
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000718 if (cerr) {
719 if (!options.fallback_to_rsh)
720 exit(1);
Damien Miller95def091999-11-25 00:26:21 +1100721 if (options.port != 0)
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000722 log("Secure connection to %.100s on port %hu refused; "
723 "reverting to insecure method",
724 host, options.port);
Damien Miller95def091999-11-25 00:26:21 +1100725 else
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000726 log("Secure connection to %.100s refused; "
727 "reverting to insecure method.", host);
Damien Miller95def091999-11-25 00:26:21 +1100728
Ben Lindstromf9cedb92001-08-06 21:07:11 +0000729 rsh_connect(host, options.user, &command);
730 fatal("rsh_connect returned");
Damien Miller95def091999-11-25 00:26:21 +1100731 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000732 /* load options.identity_files */
733 load_public_identity_files();
734
735 /* Expand ~ in known host file names. */
736 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100737 options.system_hostfile =
738 tilde_expand_filename(options.system_hostfile, original_real_uid);
739 options.user_hostfile =
740 tilde_expand_filename(options.user_hostfile, original_real_uid);
741 options.system_hostfile2 =
742 tilde_expand_filename(options.system_hostfile2, original_real_uid);
743 options.user_hostfile2 =
744 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100745
746 /* Log into the remote system. This never returns if the login fails. */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000747 ssh_login(sensitive_data.keys, sensitive_data.nkeys,
748 host, (struct sockaddr *)&hostaddr, pw);
Damien Miller95def091999-11-25 00:26:21 +1100749
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000750 /* We no longer need the private host keys. Clear them now. */
751 if (sensitive_data.nkeys != 0) {
752 for (i = 0; i < sensitive_data.nkeys; i++) {
753 if (sensitive_data.keys[i] != NULL) {
754 /* Destroys contents safely */
755 debug3("clear hostkey %d", i);
756 key_free(sensitive_data.keys[i]);
757 sensitive_data.keys[i] = NULL;
758 }
759 }
760 xfree(sensitive_data.keys);
761 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000762 for (i = 0; i < options.num_identity_files; i++) {
763 if (options.identity_files[i]) {
764 xfree(options.identity_files[i]);
765 options.identity_files[i] = NULL;
766 }
767 if (options.identity_keys[i]) {
768 key_free(options.identity_keys[i]);
769 options.identity_keys[i] = NULL;
770 }
771 }
Damien Miller95def091999-11-25 00:26:21 +1100772
Damien Miller1383bd82000-04-06 12:32:37 +1000773 exit_status = compat20 ? ssh_session2() : ssh_session();
774 packet_close();
775 return exit_status;
776}
777
Ben Lindstrombba81212001-06-25 05:01:22 +0000778static void
Damien Millerbd483e72000-04-30 10:00:53 +1000779x11_get_proto(char *proto, int proto_len, char *data, int data_len)
780{
781 char line[512];
782 FILE *f;
783 int got_data = 0, i;
784
Damien Millerd3a18572000-06-07 19:55:44 +1000785 if (options.xauth_location) {
786 /* Try to get Xauthority information for the display. */
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000787 snprintf(line, sizeof line, "%.100s list %.200s 2>" _PATH_DEVNULL,
Damien Millerd3a18572000-06-07 19:55:44 +1000788 options.xauth_location, getenv("DISPLAY"));
789 f = popen(line, "r");
790 if (f && fgets(line, sizeof(line), f) &&
791 sscanf(line, "%*s %s %s", proto, data) == 2)
792 got_data = 1;
793 if (f)
794 pclose(f);
795 }
Damien Millerbd483e72000-04-30 10:00:53 +1000796 /*
797 * If we didn't get authentication data, just make up some
798 * data. The forwarding code will check the validity of the
799 * response anyway, and substitute this data. The X11
800 * server, however, will ignore this fake data and use
801 * whatever authentication mechanisms it was using otherwise
802 * for the local connection.
803 */
804 if (!got_data) {
805 u_int32_t rand = 0;
806
807 strlcpy(proto, "MIT-MAGIC-COOKIE-1", proto_len);
808 for (i = 0; i < 16; i++) {
809 if (i % 4 == 0)
810 rand = arc4random();
811 snprintf(data + 2 * i, data_len - 2 * i, "%02x", rand & 0xff);
812 rand >>= 8;
813 }
814 }
815}
816
Ben Lindstrombba81212001-06-25 05:01:22 +0000817static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100818ssh_init_forwarding(void)
819{
Kevin Steves12057502001-02-05 14:54:34 +0000820 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100821 int i;
Kevin Steves12057502001-02-05 14:54:34 +0000822
Damien Miller0bc1bd82000-11-13 22:57:25 +1100823 /* Initiate local TCP/IP port forwardings. */
824 for (i = 0; i < options.num_local_forwards; i++) {
825 debug("Connections to local port %d forwarded to remote address %.200s:%d",
826 options.local_forwards[i].port,
827 options.local_forwards[i].host,
828 options.local_forwards[i].host_port);
Kevin Steves12057502001-02-05 14:54:34 +0000829 success += channel_request_local_forwarding(
Damien Miller0bc1bd82000-11-13 22:57:25 +1100830 options.local_forwards[i].port,
831 options.local_forwards[i].host,
832 options.local_forwards[i].host_port,
833 options.gateway_ports);
834 }
Kevin Steves12057502001-02-05 14:54:34 +0000835 if (i > 0 && success == 0)
836 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100837
838 /* Initiate remote TCP/IP port forwardings. */
839 for (i = 0; i < options.num_remote_forwards; i++) {
840 debug("Connections to remote port %d forwarded to local address %.200s:%d",
841 options.remote_forwards[i].port,
842 options.remote_forwards[i].host,
843 options.remote_forwards[i].host_port);
844 channel_request_remote_forwarding(
845 options.remote_forwards[i].port,
846 options.remote_forwards[i].host,
847 options.remote_forwards[i].host_port);
848 }
849}
850
Ben Lindstrombba81212001-06-25 05:01:22 +0000851static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100852check_agent_present(void)
853{
854 if (options.forward_agent) {
855 /* Clear agent forwarding if we don\'t have an agent. */
856 int authfd = ssh_get_authentication_socket();
857 if (authfd < 0)
858 options.forward_agent = 0;
859 else
860 ssh_close_authentication_socket(authfd);
861 }
862}
863
Ben Lindstrombba81212001-06-25 05:01:22 +0000864static int
Damien Miller1383bd82000-04-06 12:32:37 +1000865ssh_session(void)
866{
867 int type;
Damien Miller1383bd82000-04-06 12:32:37 +1000868 int plen;
869 int interactive = 0;
870 int have_tty = 0;
871 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +1000872 char *cp;
873
Damien Miller95def091999-11-25 00:26:21 +1100874 /* Enable compression if requested. */
875 if (options.compression) {
876 debug("Requesting compression at level %d.", options.compression_level);
877
878 if (options.compression_level < 1 || options.compression_level > 9)
879 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
880
881 /* Send the request. */
882 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
883 packet_put_int(options.compression_level);
884 packet_send();
885 packet_write_wait();
886 type = packet_read(&plen);
887 if (type == SSH_SMSG_SUCCESS)
888 packet_start_compression(options.compression_level);
889 else if (type == SSH_SMSG_FAILURE)
890 log("Warning: Remote host refused compression.");
891 else
892 packet_disconnect("Protocol error waiting for compression response.");
893 }
894 /* Allocate a pseudo tty if appropriate. */
895 if (tty_flag) {
896 debug("Requesting pty.");
897
898 /* Start the packet. */
899 packet_start(SSH_CMSG_REQUEST_PTY);
900
901 /* Store TERM in the packet. There is no limit on the
902 length of the string. */
903 cp = getenv("TERM");
904 if (!cp)
905 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +0000906 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +1100907
908 /* Store window size in the packet. */
909 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
910 memset(&ws, 0, sizeof(ws));
911 packet_put_int(ws.ws_row);
912 packet_put_int(ws.ws_col);
913 packet_put_int(ws.ws_xpixel);
914 packet_put_int(ws.ws_ypixel);
915
916 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000917 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +1100918
919 /* Send the packet, and wait for it to leave. */
920 packet_send();
921 packet_write_wait();
922
923 /* Read response from the server. */
924 type = packet_read(&plen);
Damien Miller450a7a12000-03-26 13:04:51 +1000925 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100926 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000927 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +1000928 } else if (type == SSH_SMSG_FAILURE)
Damien Miller95def091999-11-25 00:26:21 +1100929 log("Warning: Remote host failed or refused to allocate a pseudo tty.");
930 else
931 packet_disconnect("Protocol error waiting for pty request response.");
932 }
933 /* Request X11 forwarding if enabled and DISPLAY is set. */
934 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +1000935 char proto[512], data[512];
936 /* Get reasonable local authentication information. */
937 x11_get_proto(proto, sizeof proto, data, sizeof data);
938 /* Request forwarding with authentication spoofing. */
Damien Miller95def091999-11-25 00:26:21 +1100939 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Millerbd483e72000-04-30 10:00:53 +1000940 x11_request_forwarding_with_spoofing(0, proto, data);
Damien Miller95def091999-11-25 00:26:21 +1100941
942 /* Read response from the server. */
943 type = packet_read(&plen);
944 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100945 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000946 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller95def091999-11-25 00:26:21 +1100947 log("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +1000948 } else {
Damien Miller95def091999-11-25 00:26:21 +1100949 packet_disconnect("Protocol error waiting for X11 forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +1000950 }
Damien Miller95def091999-11-25 00:26:21 +1100951 }
952 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000953 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +1100954
955 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100956 check_agent_present();
957
Damien Miller95def091999-11-25 00:26:21 +1100958 if (options.forward_agent) {
959 debug("Requesting authentication agent forwarding.");
960 auth_request_forwarding();
961
962 /* Read response from the server. */
963 type = packet_read(&plen);
964 packet_integrity_check(plen, 0, type);
965 if (type != SSH_SMSG_SUCCESS)
966 log("Warning: Remote host denied authentication agent forwarding.");
967 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000968
Damien Miller0bc1bd82000-11-13 22:57:25 +1100969 /* Initiate port forwardings. */
970 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000971
Damien Miller5428f641999-11-25 11:54:57 +1100972 /* If requested, let ssh continue in the background. */
Damien Miller4af51302000-04-16 11:18:38 +1000973 if (fork_after_authentication_flag)
Damien Miller5428f641999-11-25 11:54:57 +1100974 if (daemon(1, 1) < 0)
975 fatal("daemon() failed: %.200s", strerror(errno));
976
977 /*
978 * If a command was specified on the command line, execute the
979 * command now. Otherwise request the server to start a shell.
980 */
Damien Miller95def091999-11-25 00:26:21 +1100981 if (buffer_len(&command) > 0) {
982 int len = buffer_len(&command);
983 if (len > 900)
984 len = 900;
985 debug("Sending command: %.*s", len, buffer_ptr(&command));
986 packet_start(SSH_CMSG_EXEC_CMD);
987 packet_put_string(buffer_ptr(&command), buffer_len(&command));
988 packet_send();
989 packet_write_wait();
990 } else {
991 debug("Requesting shell.");
992 packet_start(SSH_CMSG_EXEC_SHELL);
993 packet_send();
994 packet_write_wait();
995 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000996
Damien Miller95def091999-11-25 00:26:21 +1100997 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000998 return client_loop(have_tty, tty_flag ?
999 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +10001000}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001001
Ben Lindstrombba81212001-06-25 05:01:22 +00001002static void
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001003client_subsystem_reply(int type, int plen, void *ctxt)
1004{
1005 int id, len;
1006
1007 id = packet_get_int();
1008 len = buffer_len(&command);
Ben Lindstrom4040fe12001-03-05 06:52:57 +00001009 if (len > 900)
1010 len = 900;
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001011 packet_done();
1012 if (type == SSH2_MSG_CHANNEL_FAILURE)
1013 fatal("Request for subsystem '%.*s' failed on channel %d",
1014 len, buffer_ptr(&command), id);
1015}
1016
Ben Lindstrombba81212001-06-25 05:01:22 +00001017static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001018ssh_session2_callback(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001019{
1020 int len;
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001021 int interactive = 0;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001022 struct termios tio;
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001023
Kevin Stevesadf74cd2001-02-05 14:22:50 +00001024 debug("client_init id %d arg %ld", id, (long)arg);
Damien Miller1383bd82000-04-06 12:32:37 +10001025
Damien Miller1383bd82000-04-06 12:32:37 +10001026 if (tty_flag) {
1027 struct winsize ws;
1028 char *cp;
1029 cp = getenv("TERM");
1030 if (!cp)
1031 cp = "";
1032 /* Store window size in the packet. */
1033 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1034 memset(&ws, 0, sizeof(ws));
1035
1036 channel_request_start(id, "pty-req", 0);
1037 packet_put_cstring(cp);
1038 packet_put_int(ws.ws_col);
1039 packet_put_int(ws.ws_row);
1040 packet_put_int(ws.ws_xpixel);
1041 packet_put_int(ws.ws_ypixel);
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001042 tio = get_saved_tio();
1043 tty_make_modes(/*ignored*/ 0, &tio);
Damien Miller1383bd82000-04-06 12:32:37 +10001044 packet_send();
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001045 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001046 /* XXX wait for reply */
1047 }
Damien Millerbd483e72000-04-30 10:00:53 +10001048 if (options.forward_x11 &&
1049 getenv("DISPLAY") != NULL) {
1050 char proto[512], data[512];
1051 /* Get reasonable local authentication information. */
1052 x11_get_proto(proto, sizeof proto, data, sizeof data);
1053 /* Request forwarding with authentication spoofing. */
1054 debug("Requesting X11 forwarding with authentication spoofing.");
1055 x11_request_forwarding_with_spoofing(id, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001056 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001057 /* XXX wait for reply */
1058 }
1059
Damien Miller0bc1bd82000-11-13 22:57:25 +11001060 check_agent_present();
1061 if (options.forward_agent) {
1062 debug("Requesting authentication agent forwarding.");
1063 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1064 packet_send();
1065 }
1066
Damien Miller1383bd82000-04-06 12:32:37 +10001067 len = buffer_len(&command);
1068 if (len > 0) {
1069 if (len > 900)
1070 len = 900;
Damien Miller832562e2001-01-30 09:30:01 +11001071 if (subsystem_flag) {
1072 debug("Sending subsystem: %.*s", len, buffer_ptr(&command));
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001073 channel_request_start(id, "subsystem", /*want reply*/ 1);
1074 /* register callback for reply */
1075 /* XXX we asume that client_loop has already been called */
1076 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &client_subsystem_reply);
1077 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &client_subsystem_reply);
Damien Miller832562e2001-01-30 09:30:01 +11001078 } else {
1079 debug("Sending command: %.*s", len, buffer_ptr(&command));
1080 channel_request_start(id, "exec", 0);
1081 }
Ben Lindstrom4040fe12001-03-05 06:52:57 +00001082 packet_put_string(buffer_ptr(&command), buffer_len(&command));
Damien Miller1383bd82000-04-06 12:32:37 +10001083 packet_send();
1084 } else {
1085 channel_request(id, "shell", 0);
1086 }
1087 /* channel_callback(id, SSH2_MSG_OPEN_CONFIGMATION, client_init, 0); */
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001088
Damien Miller1383bd82000-04-06 12:32:37 +10001089 /* register different callback, etc. XXX */
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001090 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001091}
1092
Ben Lindstrombba81212001-06-25 05:01:22 +00001093static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001094ssh_session2_command(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001095{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001096 Channel *c;
1097 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001098
Damien Millercaf6dd62000-08-29 11:33:50 +11001099 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001100 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001101 } else {
1102 in = dup(STDIN_FILENO);
1103 }
1104 out = dup(STDOUT_FILENO);
1105 err = dup(STDERR_FILENO);
1106
1107 if (in < 0 || out < 0 || err < 0)
1108 fatal("dup() in/out/err failed");
1109
Damien Miller69b69aa2000-10-28 14:19:58 +11001110 /* enable nonblocking unless tty */
1111 if (!isatty(in))
1112 set_nonblock(in);
1113 if (!isatty(out))
1114 set_nonblock(out);
1115 if (!isatty(err))
1116 set_nonblock(err);
1117
Damien Millere4340be2000-09-16 13:29:08 +11001118 window = CHAN_SES_WINDOW_DEFAULT;
1119 packetmax = CHAN_SES_PACKET_DEFAULT;
1120 if (!tty_flag) {
Damien Miller1383bd82000-04-06 12:32:37 +10001121 window *= 2;
Damien Millere4340be2000-09-16 13:29:08 +11001122 packetmax *=2;
Damien Miller1383bd82000-04-06 12:32:37 +10001123 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001124 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001125 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001126 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Miller69b69aa2000-10-28 14:19:58 +11001127 xstrdup("client-session"), /*nonblock*/0);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001128 if (c == NULL)
1129 fatal("ssh_session2_command: channel_new failed");
Damien Miller1383bd82000-04-06 12:32:37 +10001130
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001131 debug3("ssh_session2_command: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001132
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001133 channel_send_open(c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001134 channel_register_callback(c->self, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION,
Damien Miller0bc1bd82000-11-13 22:57:25 +11001135 ssh_session2_callback, (void *)0);
Damien Miller1383bd82000-04-06 12:32:37 +10001136
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001137 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001138}
1139
Ben Lindstrombba81212001-06-25 05:01:22 +00001140static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001141ssh_session2(void)
1142{
1143 int id;
1144
1145 /* XXX should be pre-session */
1146 ssh_init_forwarding();
1147
1148 id = no_shell_flag ? -1 : ssh_session2_command();
1149
1150 /* If requested, let ssh continue in the background. */
1151 if (fork_after_authentication_flag)
1152 if (daemon(1, 1) < 0)
1153 fatal("daemon() failed: %.200s", strerror(errno));
1154
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001155 return client_loop(tty_flag, tty_flag ?
1156 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001157}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001158
Ben Lindstrombba81212001-06-25 05:01:22 +00001159static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001160load_public_identity_files(void)
1161{
1162 char *filename;
1163 Key *public;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001164 int i = 0;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001165
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001166#ifdef SMARTCARD
Ben Lindstromf7db3bb2001-08-06 21:35:51 +00001167 if (options.smartcard_device != NULL &&
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001168 options.num_identity_files + 1 < SSH_MAX_IDENTITY_FILES &&
Ben Lindstromae996bf2001-08-06 21:27:53 +00001169 (public = sc_get_key(options.smartcard_device)) != NULL ) {
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001170 Key *new;
1171
1172 if (options.num_identity_files + 2 > SSH_MAX_IDENTITY_FILES)
1173 options.num_identity_files = SSH_MAX_IDENTITY_FILES - 2;
1174 memmove(&options.identity_files[2], &options.identity_files[0],
1175 sizeof(char *) * options.num_identity_files);
1176 options.num_identity_files += 2;
1177 i = 2;
1178
1179 /* XXX ssh1 vs ssh2 */
1180 new = key_new(KEY_RSA);
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[0] = new;
1186 options.identity_files[0] = xstrdup("smartcard rsa key");;
1187
1188 new = key_new(KEY_RSA1);
1189 new->flags = KEY_FLAG_EXT;
1190 BN_copy(new->rsa->n, public->rsa->n);
1191 BN_copy(new->rsa->e, public->rsa->e);
1192 RSA_set_method(new->rsa, sc_get_engine());
1193 options.identity_keys[1] = new;
1194 options.identity_files[1] = xstrdup("smartcard rsa1 key");
1195
1196 key_free(public);
1197 }
Ben Lindstromffce1472001-08-06 21:57:31 +00001198#endif /* SMARTCARD */
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001199 for (; i < options.num_identity_files; i++) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001200 filename = tilde_expand_filename(options.identity_files[i],
1201 original_real_uid);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001202 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001203 debug("identity file %s type %d", filename,
1204 public ? public->type : -1);
1205 xfree(options.identity_files[i]);
1206 options.identity_files[i] = filename;
1207 options.identity_keys[i] = public;
1208 }
1209}