blob: a7fe1408a7f225d5d87155cb795e2b0c94e98cff [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 Lindstromc5b68002001-07-04 04:52:03 +000042RCSID("$OpenBSD: ssh.c,v 1.127 2001/06/26 20:14:11 markus Exp $");
Damien Millereba71ba2000-04-29 23:57:08 +100043
44#include <openssl/evp.h>
Damien Miller0bc1bd82000-11-13 22:57:25 +110045#include <openssl/err.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100046
Damien Millerd4a8b7e1999-10-27 13:42:43 +100047#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000048#include "ssh1.h"
Damien Miller1383bd82000-04-06 12:32:37 +100049#include "ssh2.h"
50#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000051#include "cipher.h"
52#include "xmalloc.h"
53#include "packet.h"
54#include "buffer.h"
55#include "uidswap.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000056#include "channels.h"
Damien Millereba71ba2000-04-29 23:57:08 +100057#include "key.h"
Damien Miller994cf142000-07-21 10:19:44 +100058#include "authfd.h"
Damien Millereba71ba2000-04-29 23:57:08 +100059#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000060#include "pathnames.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000061#include "clientloop.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000062#include "log.h"
63#include "readconf.h"
64#include "sshconnect.h"
65#include "tildexpand.h"
Ben Lindstrom1e7d3062001-02-09 02:36:43 +000066#include "dispatch.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000067#include "misc.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000068#include "kex.h"
69#include "mac.h"
Ben Lindstromae8e2d32001-04-14 23:13:02 +000070#include "sshtty.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100071
Ben Lindstromc5b68002001-07-04 04:52:03 +000072#ifdef SMARTCARD
73#include <openssl/engine.h>
74#include "scard.h"
75#endif
76
Damien Miller3f905871999-11-15 17:10:57 +110077#ifdef HAVE___PROGNAME
78extern char *__progname;
Ben Lindstrom49a79c02000-11-17 03:47:20 +000079#else
80char *__progname;
81#endif
Damien Miller3f905871999-11-15 17:10:57 +110082
Damien Miller34132e52000-01-14 15:45:46 +110083/* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
84 Default value is AF_UNSPEC means both IPv4 and IPv6. */
Damien Miller7d80e342000-01-19 14:36:49 +110085#ifdef IPV4_DEFAULT
86int IPv4or6 = AF_INET;
87#else
Damien Miller34132e52000-01-14 15:45:46 +110088int IPv4or6 = AF_UNSPEC;
Damien Miller7d80e342000-01-19 14:36:49 +110089#endif
Damien Miller34132e52000-01-14 15:45:46 +110090
Damien Miller95def091999-11-25 00:26:21 +110091/* Flag indicating whether debug mode is on. This can be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092int debug_flag = 0;
93
Damien Miller78928792000-04-12 20:17:38 +100094/* Flag indicating whether a tty should be allocated */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100095int tty_flag = 0;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +000096int no_tty_flag = 0;
97int force_tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100098
Damien Miller1383bd82000-04-06 12:32:37 +100099/* don't exec a shell */
100int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000101
Damien Miller5428f641999-11-25 11:54:57 +1100102/*
103 * Flag indicating that nothing should be read from stdin. This can be set
104 * on the command line.
105 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000106int stdin_null_flag = 0;
107
Damien Miller5428f641999-11-25 11:54:57 +1100108/*
109 * Flag indicating that ssh should fork after authentication. This is useful
110 * so that the pasphrase can be entered manually, and then ssh goes to the
111 * background.
112 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000113int fork_after_authentication_flag = 0;
114
Damien Miller5428f641999-11-25 11:54:57 +1100115/*
116 * General data structure for command line options and options configurable
117 * in configuration files. See readconf.h.
118 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000119Options options;
120
Damien Miller5428f641999-11-25 11:54:57 +1100121/*
122 * Name of the host we are connecting to. This is the name given on the
123 * command line, or the HostName specified for the user-supplied name in a
124 * configuration file.
125 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000126char *host;
127
128/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100129struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000130
Damien Miller5428f641999-11-25 11:54:57 +1100131/*
132 * Flag to indicate that we have received a window change signal which has
133 * not yet been processed. This will cause a message indicating the new
134 * window size to be sent to the server a little later. This is volatile
135 * because this is updated in a signal handler.
136 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000137volatile int received_window_change_signal = 0;
138
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000139/* Private host keys. */
140struct {
141 Key **keys;
142 int nkeys;
143} sensitive_data;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000144
145/* Original real UID. */
146uid_t original_real_uid;
147
Damien Miller1383bd82000-04-06 12:32:37 +1000148/* command to be executed */
149Buffer command;
150
Damien Miller832562e2001-01-30 09:30:01 +1100151/* Should we execute a command or invoke a subsystem? */
152int subsystem_flag = 0;
153
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{
Damien Miller1383bd82000-04-06 12:32:37 +1000255 int i, opt, optind, exit_status, ok;
Damien Milleraae6c611999-12-06 11:47:28 +1100256 u_short fwd_port, fwd_host_port;
Ben Lindstrom6ab64862001-06-25 04:26:55 +0000257 char *optarg, *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 Millerd4a8b7e1999-10-27 13:42:43 +1000262
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000263 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000264 init_rng();
265
Damien Miller5428f641999-11-25 11:54:57 +1100266 /*
267 * Save the original real uid. It will be needed later (uid-swapping
268 * may clobber the real uid).
269 */
Damien Miller95def091999-11-25 00:26:21 +1100270 original_real_uid = getuid();
271 original_effective_uid = geteuid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000272
Damien Miller05dd7952000-10-01 00:42:48 +1100273#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100274 /* If we are installed setuid root be careful to not drop core. */
275 if (original_real_uid != original_effective_uid) {
276 struct rlimit rlim;
277 rlim.rlim_cur = rlim.rlim_max = 0;
278 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
279 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000280 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100281#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000282 /* Get user data. */
283 pw = getpwuid(original_real_uid);
284 if (!pw) {
285 log("You don't exist, go away!");
286 exit(1);
287 }
288 /* Take a copy of the returned structure. */
289 pw = pwcopy(pw);
290
Damien Miller5428f641999-11-25 11:54:57 +1100291 /*
292 * Use uid-swapping to give up root privileges for the duration of
293 * option processing. We will re-instantiate the rights when we are
294 * ready to create the privileged port, and will permanently drop
295 * them when the port has been created (actually, when the connection
296 * has been made, as we may need to create the port several times).
297 */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000298 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000299
Damien Miller5428f641999-11-25 11:54:57 +1100300 /*
301 * Set our umask to something reasonable, as some files are created
302 * with the default umask. This will make them world-readable but
303 * writable only by the owner, which is ok for all files for which we
304 * don't set the modes explicitly.
305 */
Damien Miller95def091999-11-25 00:26:21 +1100306 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000307
Damien Miller95def091999-11-25 00:26:21 +1100308 /* Initialize option structure to indicate that no values have been set. */
309 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000310
Damien Miller95def091999-11-25 00:26:21 +1100311 /* Parse command-line arguments. */
312 host = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000313
Damien Miller95def091999-11-25 00:26:21 +1100314 for (optind = 1; optind < ac; optind++) {
315 if (av[optind][0] != '-') {
316 if (host)
317 break;
Ben Lindstrom6ab64862001-06-25 04:26:55 +0000318 if (strchr(av[optind], '@')) {
319 p = xstrdup(av[optind]);
320 cp = strchr(p, '@');
321 if(cp == NULL || cp == p)
Damien Miller4af51302000-04-16 11:18:38 +1000322 usage();
Ben Lindstrom6ab64862001-06-25 04:26:55 +0000323 options.user = p;
Damien Miller95def091999-11-25 00:26:21 +1100324 *cp = '\0';
325 host = ++cp;
326 } else
327 host = av[optind];
328 continue;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000329 }
Damien Miller95def091999-11-25 00:26:21 +1100330 opt = av[optind][1];
331 if (!opt)
332 usage();
Ben Lindstromc5b68002001-07-04 04:52:03 +0000333 if (strchr("eilcmpbILRDo", opt)) { /* options with arguments */
Damien Miller95def091999-11-25 00:26:21 +1100334 optarg = av[optind] + 2;
335 if (strcmp(optarg, "") == 0) {
336 if (optind >= ac - 1)
337 usage();
338 optarg = av[++optind];
339 }
340 } else {
341 if (av[optind][2])
342 usage();
343 optarg = NULL;
344 }
345 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000346 case '1':
347 options.protocol = SSH_PROTO_1;
348 break;
Damien Miller4af51302000-04-16 11:18:38 +1000349 case '2':
350 options.protocol = SSH_PROTO_2;
351 break;
Damien Miller34132e52000-01-14 15:45:46 +1100352 case '4':
353 IPv4or6 = AF_INET;
354 break;
Damien Miller34132e52000-01-14 15:45:46 +1100355 case '6':
356 IPv4or6 = AF_INET6;
357 break;
Damien Miller95def091999-11-25 00:26:21 +1100358 case 'n':
359 stdin_null_flag = 1;
360 break;
Damien Miller95def091999-11-25 00:26:21 +1100361 case 'f':
362 fork_after_authentication_flag = 1;
363 stdin_null_flag = 1;
364 break;
Damien Miller95def091999-11-25 00:26:21 +1100365 case 'x':
366 options.forward_x11 = 0;
367 break;
Damien Miller95def091999-11-25 00:26:21 +1100368 case 'X':
369 options.forward_x11 = 1;
370 break;
Damien Miller95def091999-11-25 00:26:21 +1100371 case 'g':
372 options.gateway_ports = 1;
373 break;
Damien Miller95def091999-11-25 00:26:21 +1100374 case 'P':
375 options.use_privileged_port = 0;
376 break;
Damien Miller95def091999-11-25 00:26:21 +1100377 case 'a':
378 options.forward_agent = 0;
379 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000380 case 'A':
381 options.forward_agent = 1;
382 break;
Damien Miller95def091999-11-25 00:26:21 +1100383#ifdef AFS
384 case 'k':
385 options.kerberos_tgt_passing = 0;
386 options.afs_token_passing = 0;
387 break;
388#endif
389 case 'i':
390 if (stat(optarg, &st) < 0) {
391 fprintf(stderr, "Warning: Identity file %s does not exist.\n",
Damien Miller0bc1bd82000-11-13 22:57:25 +1100392 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100393 break;
394 }
395 if (options.num_identity_files >= SSH_MAX_IDENTITY_FILES)
396 fatal("Too many identity files specified (max %d)",
Damien Miller0bc1bd82000-11-13 22:57:25 +1100397 SSH_MAX_IDENTITY_FILES);
398 options.identity_files[options.num_identity_files++] = xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100399 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000400 case 'I':
401#ifdef SMARTCARD
402 sc_reader_num = atoi(optarg);
403#else
404 fprintf(stderr, "no support for smartcards.\n");
405#endif
406 break;
Damien Miller95def091999-11-25 00:26:21 +1100407 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000408 if (tty_flag)
409 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100410 tty_flag = 1;
411 break;
Damien Miller95def091999-11-25 00:26:21 +1100412 case 'v':
Damien Millere4340be2000-09-16 13:29:08 +1100413 if (0 == debug_flag) {
414 debug_flag = 1;
415 options.log_level = SYSLOG_LEVEL_DEBUG1;
416 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
417 options.log_level++;
418 break;
419 } else {
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000420 fatal("Too high debugging level.");
Damien Millere4340be2000-09-16 13:29:08 +1100421 }
422 /* fallthrough */
Damien Miller95def091999-11-25 00:26:21 +1100423 case 'V':
Damien Miller225736c2001-02-19 21:51:08 +1100424 fprintf(stderr,
425 "%s, SSH protocols %d.%d/%d.%d, OpenSSL 0x%8.8lx\n",
Damien Miller78928792000-04-12 20:17:38 +1000426 SSH_VERSION,
427 PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1,
Damien Miller225736c2001-02-19 21:51:08 +1100428 PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2,
429 SSLeay());
Damien Miller95def091999-11-25 00:26:21 +1100430 if (opt == 'V')
431 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100432 break;
Damien Miller95def091999-11-25 00:26:21 +1100433 case 'q':
434 options.log_level = SYSLOG_LEVEL_QUIET;
435 break;
Damien Miller95def091999-11-25 00:26:21 +1100436 case 'e':
437 if (optarg[0] == '^' && optarg[2] == 0 &&
Ben Lindstrom46c16222000-12-22 01:43:59 +0000438 (u_char) optarg[1] >= 64 && (u_char) optarg[1] < 128)
439 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100440 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000441 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100442 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000443 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100444 else {
445 fprintf(stderr, "Bad escape character '%s'.\n", optarg);
446 exit(1);
447 }
448 break;
Damien Miller95def091999-11-25 00:26:21 +1100449 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000450 if (ciphers_valid(optarg)) {
451 /* SSH2 only */
452 options.ciphers = xstrdup(optarg);
Damien Miller30c3d422000-05-09 11:02:59 +1000453 options.cipher = SSH_CIPHER_ILLEGAL;
Damien Millereba71ba2000-04-29 23:57:08 +1000454 } else {
455 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100456 options.cipher = cipher_number(optarg);
457 if (options.cipher == -1) {
Damien Millereba71ba2000-04-29 23:57:08 +1000458 fprintf(stderr, "Unknown cipher type '%s'\n", optarg);
459 exit(1);
460 }
Damien Millere39cacc2000-11-29 12:18:44 +1100461 if (options.cipher == SSH_CIPHER_3DES) {
462 options.ciphers = "3des-cbc";
463 } else if (options.cipher == SSH_CIPHER_BLOWFISH) {
464 options.ciphers = "blowfish-cbc";
465 } else {
466 options.ciphers = (char *)-1;
467 }
Damien Miller95def091999-11-25 00:26:21 +1100468 }
469 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000470 case 'm':
471 if (mac_valid(optarg))
472 options.macs = xstrdup(optarg);
473 else {
474 fprintf(stderr, "Unknown mac type '%s'\n", optarg);
475 exit(1);
476 }
477 break;
Damien Miller95def091999-11-25 00:26:21 +1100478 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000479 options.port = a2port(optarg);
480 if (options.port == 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000481 fprintf(stderr, "Bad port '%s'\n", optarg);
482 exit(1);
483 }
Damien Miller95def091999-11-25 00:26:21 +1100484 break;
Damien Miller95def091999-11-25 00:26:21 +1100485 case 'l':
486 options.user = optarg;
487 break;
Damien Miller95def091999-11-25 00:26:21 +1100488 case 'R':
Damien Miller34132e52000-01-14 15:45:46 +1100489 if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf,
490 &fwd_host_port) != 3 &&
491 sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf,
492 &fwd_host_port) != 3) {
Damien Miller95def091999-11-25 00:26:21 +1100493 fprintf(stderr, "Bad forwarding specification '%s'.\n", optarg);
494 usage();
495 /* NOTREACHED */
496 }
497 add_remote_forward(&options, fwd_port, buf, fwd_host_port);
498 break;
Damien Miller95def091999-11-25 00:26:21 +1100499 case 'L':
Damien Miller34132e52000-01-14 15:45:46 +1100500 if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf,
501 &fwd_host_port) != 3 &&
502 sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf,
503 &fwd_host_port) != 3) {
Damien Miller95def091999-11-25 00:26:21 +1100504 fprintf(stderr, "Bad forwarding specification '%s'.\n", optarg);
505 usage();
506 /* NOTREACHED */
507 }
508 add_local_forward(&options, fwd_port, buf, fwd_host_port);
509 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000510
511 case 'D':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000512 fwd_port = a2port(optarg);
513 if (fwd_port == 0) {
514 fprintf(stderr, "Bad dynamic port '%s'\n", optarg);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000515 exit(1);
516 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000517 add_local_forward(&options, fwd_port, "socks4", 0);
518 break;
519
Damien Miller95def091999-11-25 00:26:21 +1100520 case 'C':
521 options.compression = 1;
522 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000523 case 'N':
524 no_shell_flag = 1;
525 no_tty_flag = 1;
526 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000527 case 'T':
528 no_tty_flag = 1;
529 break;
Damien Miller95def091999-11-25 00:26:21 +1100530 case 'o':
531 dummy = 1;
532 if (process_config_line(&options, host ? host : "", optarg,
533 "command-line", 0, &dummy) != 0)
534 exit(1);
535 break;
Damien Miller832562e2001-01-30 09:30:01 +1100536 case 's':
537 subsystem_flag = 1;
538 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000539 case 'b':
540 options.bind_address = optarg;
541 break;
Damien Miller95def091999-11-25 00:26:21 +1100542 default:
543 usage();
544 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000545 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000546
Damien Miller95def091999-11-25 00:26:21 +1100547 /* Check that we got a host name. */
548 if (!host)
549 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000550
Damien Millercb5e44a2000-09-29 12:12:36 +1100551 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100552 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100553
Damien Miller95def091999-11-25 00:26:21 +1100554 /* Initialize the command to execute on remote host. */
555 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000556
Damien Miller5428f641999-11-25 11:54:57 +1100557 /*
558 * Save the command to execute on the remote host in a buffer. There
559 * is no limit on the length of the command, except by the maximum
560 * packet size. Also sets the tty flag if there is no command.
561 */
Damien Miller95def091999-11-25 00:26:21 +1100562 if (optind == ac) {
563 /* No command specified - execute shell on a tty. */
564 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100565 if (subsystem_flag) {
Ben Lindstrom92d4a022001-04-13 04:44:37 +0000566 fprintf(stderr, "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100567 usage();
568 }
Damien Miller95def091999-11-25 00:26:21 +1100569 } else {
570 /* A command has been specified. Store it into the
571 buffer. */
572 for (i = optind; i < ac; i++) {
573 if (i > optind)
574 buffer_append(&command, " ", 1);
575 buffer_append(&command, av[i], strlen(av[i]));
576 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000577 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000578
Damien Miller95def091999-11-25 00:26:21 +1100579 /* Cannot fork to background if no command. */
Damien Millercaf6dd62000-08-29 11:33:50 +1100580 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
Damien Miller95def091999-11-25 00:26:21 +1100581 fatal("Cannot fork into background without a command to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000582
Damien Miller95def091999-11-25 00:26:21 +1100583 /* Allocate a tty by default if no command specified. */
584 if (buffer_len(&command) == 0)
585 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000586
Ben Lindstromc72745a2000-12-02 19:03:54 +0000587 /* Force no tty*/
588 if (no_tty_flag)
589 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100590 /* Do not allocate a tty if stdin is not a tty. */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000591 if (!isatty(fileno(stdin)) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100592 if (tty_flag)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000593 log("Pseudo-terminal will not be allocated because stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100594 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000595 }
Damien Miller1383bd82000-04-06 12:32:37 +1000596
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000597 /*
598 * Initialize "log" output. Since we are the client all output
599 * actually goes to stderr.
600 */
Ben Lindstrom2b646522001-04-12 16:16:57 +0000601 log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
602 SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000603
Damien Miller95def091999-11-25 00:26:21 +1100604 /* Read per-user configuration file. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000605 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, _PATH_SSH_USER_CONFFILE);
Damien Miller95def091999-11-25 00:26:21 +1100606 read_config_file(buf, host, &options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000607
Damien Miller95def091999-11-25 00:26:21 +1100608 /* Read systemwide configuration file. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000609 read_config_file(_PATH_HOST_CONFIG_FILE, host, &options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000610
Damien Miller95def091999-11-25 00:26:21 +1100611 /* Fill configuration defaults. */
612 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000613
Damien Miller95def091999-11-25 00:26:21 +1100614 /* reinit */
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000615 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000616
Damien Miller60bc5172001-03-19 09:38:15 +1100617 seed_rng();
618
Damien Miller95def091999-11-25 00:26:21 +1100619 if (options.user == NULL)
620 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000621
Damien Miller95def091999-11-25 00:26:21 +1100622 if (options.hostname != NULL)
623 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000624
Damien Miller95def091999-11-25 00:26:21 +1100625 /* Disable rhosts authentication if not running as root. */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100626#ifdef HAVE_CYGWIN
627 /* Ignore uid if running under Windows */
628 if (!options.use_privileged_port) {
629#else
Damien Miller95def091999-11-25 00:26:21 +1100630 if (original_effective_uid != 0 || !options.use_privileged_port) {
Damien Millerbac2d8a2000-09-05 16:13:06 +1100631#endif
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000632 debug("Rhosts Authentication disabled, "
633 "originating port will not be trusted.");
Damien Miller95def091999-11-25 00:26:21 +1100634 options.rhosts_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100635 }
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000636
Damien Miller5428f641999-11-25 11:54:57 +1100637 /*
638 * If using rsh has been selected, exec it now (without trying
639 * anything else). Note that we must release privileges first.
640 */
Damien Miller95def091999-11-25 00:26:21 +1100641 if (options.use_rsh) {
Damien Miller5428f641999-11-25 11:54:57 +1100642 /*
643 * Restore our superuser privileges. This must be done
644 * before permanently setting the uid.
645 */
Damien Miller95def091999-11-25 00:26:21 +1100646 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000647
Damien Miller95def091999-11-25 00:26:21 +1100648 /* Switch to the original uid permanently. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000649 permanently_set_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000650
Damien Miller95def091999-11-25 00:26:21 +1100651 /* Execute rsh. */
652 rsh_connect(host, options.user, &command);
653 fatal("rsh_connect returned");
654 }
655 /* Restore our superuser privileges. */
656 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000657
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000658 /* Open a connection to the remote host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000659
Damien Miller95def091999-11-25 00:26:21 +1100660 ok = ssh_connect(host, &hostaddr, options.port,
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000661 options.connection_attempts,
662 original_effective_uid != 0 || !options.use_privileged_port,
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000663 pw, options.proxy_command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000664
Damien Miller5428f641999-11-25 11:54:57 +1100665 /*
666 * If we successfully made the connection, load the host private key
667 * in case we will need it later for combined rsa-rhosts
668 * authentication. This must be done before releasing extra
669 * privileges, because the file is only readable by root.
670 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000671 sensitive_data.nkeys = 0;
672 sensitive_data.keys = NULL;
673 if (ok && (options.rhosts_rsa_authentication ||
674 options.hostbased_authentication)) {
675 sensitive_data.nkeys = 3;
676 sensitive_data.keys = xmalloc(sensitive_data.nkeys*sizeof(Key));
677 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Ben Lindstromd0fca422001-03-26 13:44:06 +0000678 _PATH_HOST_KEY_FILE, "", NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000679 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
680 _PATH_HOST_DSA_KEY_FILE, "", NULL);
681 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
682 _PATH_HOST_RSA_KEY_FILE, "", NULL);
Damien Miller95def091999-11-25 00:26:21 +1100683 }
Damien Miller5428f641999-11-25 11:54:57 +1100684 /*
685 * Get rid of any extra privileges that we may have. We will no
686 * longer need them. Also, extra privileges could make it very hard
687 * to read identity files and other non-world-readable files from the
688 * user's home directory if it happens to be on a NFS volume where
689 * root is mapped to nobody.
690 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000691
Damien Miller5428f641999-11-25 11:54:57 +1100692 /*
693 * Note that some legacy systems need to postpone the following call
694 * to permanently_set_uid() until the private hostkey is destroyed
695 * with RSA_free(). Otherwise the calling user could ptrace() the
696 * process, read the private hostkey and impersonate the host.
697 * OpenBSD does not allow ptracing of setuid processes.
698 */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000699 permanently_set_uid(pw);
Damien Miller95def091999-11-25 00:26:21 +1100700
Damien Miller5428f641999-11-25 11:54:57 +1100701 /*
702 * Now that we are back to our own permissions, create ~/.ssh
703 * directory if it doesn\'t already exist.
704 */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000705 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, _PATH_SSH_USER_DIR);
Damien Miller95def091999-11-25 00:26:21 +1100706 if (stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000707 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100708 error("Could not create directory '%.200s'.", buf);
709
710 /* Check if the connection failed, and try "rsh" if appropriate. */
711 if (!ok) {
712 if (options.port != 0)
Damien Milleraae6c611999-12-06 11:47:28 +1100713 log("Secure connection to %.100s on port %hu refused%.100s.",
Damien Miller95def091999-11-25 00:26:21 +1100714 host, options.port,
715 options.fallback_to_rsh ? "; reverting to insecure method" : "");
716 else
717 log("Secure connection to %.100s refused%.100s.", host,
718 options.fallback_to_rsh ? "; reverting to insecure method" : "");
719
720 if (options.fallback_to_rsh) {
721 rsh_connect(host, options.user, &command);
722 fatal("rsh_connect returned");
723 }
724 exit(1);
725 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000726 /* load options.identity_files */
727 load_public_identity_files();
728
729 /* Expand ~ in known host file names. */
730 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100731 options.system_hostfile =
732 tilde_expand_filename(options.system_hostfile, original_real_uid);
733 options.user_hostfile =
734 tilde_expand_filename(options.user_hostfile, original_real_uid);
735 options.system_hostfile2 =
736 tilde_expand_filename(options.system_hostfile2, original_real_uid);
737 options.user_hostfile2 =
738 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100739
740 /* Log into the remote system. This never returns if the login fails. */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000741 ssh_login(sensitive_data.keys, sensitive_data.nkeys,
742 host, (struct sockaddr *)&hostaddr, pw);
Damien Miller95def091999-11-25 00:26:21 +1100743
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000744 /* We no longer need the private host keys. Clear them now. */
745 if (sensitive_data.nkeys != 0) {
746 for (i = 0; i < sensitive_data.nkeys; i++) {
747 if (sensitive_data.keys[i] != NULL) {
748 /* Destroys contents safely */
749 debug3("clear hostkey %d", i);
750 key_free(sensitive_data.keys[i]);
751 sensitive_data.keys[i] = NULL;
752 }
753 }
754 xfree(sensitive_data.keys);
755 }
Damien Miller95def091999-11-25 00:26:21 +1100756
Damien Miller1383bd82000-04-06 12:32:37 +1000757 exit_status = compat20 ? ssh_session2() : ssh_session();
758 packet_close();
759 return exit_status;
760}
761
Ben Lindstrombba81212001-06-25 05:01:22 +0000762static void
Damien Millerbd483e72000-04-30 10:00:53 +1000763x11_get_proto(char *proto, int proto_len, char *data, int data_len)
764{
765 char line[512];
766 FILE *f;
767 int got_data = 0, i;
768
Damien Millerd3a18572000-06-07 19:55:44 +1000769 if (options.xauth_location) {
770 /* Try to get Xauthority information for the display. */
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000771 snprintf(line, sizeof line, "%.100s list %.200s 2>" _PATH_DEVNULL,
Damien Millerd3a18572000-06-07 19:55:44 +1000772 options.xauth_location, getenv("DISPLAY"));
773 f = popen(line, "r");
774 if (f && fgets(line, sizeof(line), f) &&
775 sscanf(line, "%*s %s %s", proto, data) == 2)
776 got_data = 1;
777 if (f)
778 pclose(f);
779 }
Damien Millerbd483e72000-04-30 10:00:53 +1000780 /*
781 * If we didn't get authentication data, just make up some
782 * data. The forwarding code will check the validity of the
783 * response anyway, and substitute this data. The X11
784 * server, however, will ignore this fake data and use
785 * whatever authentication mechanisms it was using otherwise
786 * for the local connection.
787 */
788 if (!got_data) {
789 u_int32_t rand = 0;
790
791 strlcpy(proto, "MIT-MAGIC-COOKIE-1", proto_len);
792 for (i = 0; i < 16; i++) {
793 if (i % 4 == 0)
794 rand = arc4random();
795 snprintf(data + 2 * i, data_len - 2 * i, "%02x", rand & 0xff);
796 rand >>= 8;
797 }
798 }
799}
800
Ben Lindstrombba81212001-06-25 05:01:22 +0000801static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100802ssh_init_forwarding(void)
803{
Kevin Steves12057502001-02-05 14:54:34 +0000804 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100805 int i;
Kevin Steves12057502001-02-05 14:54:34 +0000806
Damien Miller0bc1bd82000-11-13 22:57:25 +1100807 /* Initiate local TCP/IP port forwardings. */
808 for (i = 0; i < options.num_local_forwards; i++) {
809 debug("Connections to local port %d forwarded to remote address %.200s:%d",
810 options.local_forwards[i].port,
811 options.local_forwards[i].host,
812 options.local_forwards[i].host_port);
Kevin Steves12057502001-02-05 14:54:34 +0000813 success += channel_request_local_forwarding(
Damien Miller0bc1bd82000-11-13 22:57:25 +1100814 options.local_forwards[i].port,
815 options.local_forwards[i].host,
816 options.local_forwards[i].host_port,
817 options.gateway_ports);
818 }
Kevin Steves12057502001-02-05 14:54:34 +0000819 if (i > 0 && success == 0)
820 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100821
822 /* Initiate remote TCP/IP port forwardings. */
823 for (i = 0; i < options.num_remote_forwards; i++) {
824 debug("Connections to remote port %d forwarded to local address %.200s:%d",
825 options.remote_forwards[i].port,
826 options.remote_forwards[i].host,
827 options.remote_forwards[i].host_port);
828 channel_request_remote_forwarding(
829 options.remote_forwards[i].port,
830 options.remote_forwards[i].host,
831 options.remote_forwards[i].host_port);
832 }
833}
834
Ben Lindstrombba81212001-06-25 05:01:22 +0000835static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100836check_agent_present(void)
837{
838 if (options.forward_agent) {
839 /* Clear agent forwarding if we don\'t have an agent. */
840 int authfd = ssh_get_authentication_socket();
841 if (authfd < 0)
842 options.forward_agent = 0;
843 else
844 ssh_close_authentication_socket(authfd);
845 }
846}
847
Ben Lindstrombba81212001-06-25 05:01:22 +0000848static int
Damien Miller1383bd82000-04-06 12:32:37 +1000849ssh_session(void)
850{
851 int type;
Damien Miller1383bd82000-04-06 12:32:37 +1000852 int plen;
853 int interactive = 0;
854 int have_tty = 0;
855 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +1000856 char *cp;
857
Damien Miller95def091999-11-25 00:26:21 +1100858 /* Enable compression if requested. */
859 if (options.compression) {
860 debug("Requesting compression at level %d.", options.compression_level);
861
862 if (options.compression_level < 1 || options.compression_level > 9)
863 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
864
865 /* Send the request. */
866 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
867 packet_put_int(options.compression_level);
868 packet_send();
869 packet_write_wait();
870 type = packet_read(&plen);
871 if (type == SSH_SMSG_SUCCESS)
872 packet_start_compression(options.compression_level);
873 else if (type == SSH_SMSG_FAILURE)
874 log("Warning: Remote host refused compression.");
875 else
876 packet_disconnect("Protocol error waiting for compression response.");
877 }
878 /* Allocate a pseudo tty if appropriate. */
879 if (tty_flag) {
880 debug("Requesting pty.");
881
882 /* Start the packet. */
883 packet_start(SSH_CMSG_REQUEST_PTY);
884
885 /* Store TERM in the packet. There is no limit on the
886 length of the string. */
887 cp = getenv("TERM");
888 if (!cp)
889 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +0000890 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +1100891
892 /* Store window size in the packet. */
893 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
894 memset(&ws, 0, sizeof(ws));
895 packet_put_int(ws.ws_row);
896 packet_put_int(ws.ws_col);
897 packet_put_int(ws.ws_xpixel);
898 packet_put_int(ws.ws_ypixel);
899
900 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000901 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +1100902
903 /* Send the packet, and wait for it to leave. */
904 packet_send();
905 packet_write_wait();
906
907 /* Read response from the server. */
908 type = packet_read(&plen);
Damien Miller450a7a12000-03-26 13:04:51 +1000909 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100910 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000911 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +1000912 } else if (type == SSH_SMSG_FAILURE)
Damien Miller95def091999-11-25 00:26:21 +1100913 log("Warning: Remote host failed or refused to allocate a pseudo tty.");
914 else
915 packet_disconnect("Protocol error waiting for pty request response.");
916 }
917 /* Request X11 forwarding if enabled and DISPLAY is set. */
918 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +1000919 char proto[512], data[512];
920 /* Get reasonable local authentication information. */
921 x11_get_proto(proto, sizeof proto, data, sizeof data);
922 /* Request forwarding with authentication spoofing. */
Damien Miller95def091999-11-25 00:26:21 +1100923 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Millerbd483e72000-04-30 10:00:53 +1000924 x11_request_forwarding_with_spoofing(0, proto, data);
Damien Miller95def091999-11-25 00:26:21 +1100925
926 /* Read response from the server. */
927 type = packet_read(&plen);
928 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100929 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000930 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller95def091999-11-25 00:26:21 +1100931 log("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +1000932 } else {
Damien Miller95def091999-11-25 00:26:21 +1100933 packet_disconnect("Protocol error waiting for X11 forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +1000934 }
Damien Miller95def091999-11-25 00:26:21 +1100935 }
936 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000937 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +1100938
939 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100940 check_agent_present();
941
Damien Miller95def091999-11-25 00:26:21 +1100942 if (options.forward_agent) {
943 debug("Requesting authentication agent forwarding.");
944 auth_request_forwarding();
945
946 /* Read response from the server. */
947 type = packet_read(&plen);
948 packet_integrity_check(plen, 0, type);
949 if (type != SSH_SMSG_SUCCESS)
950 log("Warning: Remote host denied authentication agent forwarding.");
951 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000952
Damien Miller0bc1bd82000-11-13 22:57:25 +1100953 /* Initiate port forwardings. */
954 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000955
Damien Miller5428f641999-11-25 11:54:57 +1100956 /* If requested, let ssh continue in the background. */
Damien Miller4af51302000-04-16 11:18:38 +1000957 if (fork_after_authentication_flag)
Damien Miller5428f641999-11-25 11:54:57 +1100958 if (daemon(1, 1) < 0)
959 fatal("daemon() failed: %.200s", strerror(errno));
960
961 /*
962 * If a command was specified on the command line, execute the
963 * command now. Otherwise request the server to start a shell.
964 */
Damien Miller95def091999-11-25 00:26:21 +1100965 if (buffer_len(&command) > 0) {
966 int len = buffer_len(&command);
967 if (len > 900)
968 len = 900;
969 debug("Sending command: %.*s", len, buffer_ptr(&command));
970 packet_start(SSH_CMSG_EXEC_CMD);
971 packet_put_string(buffer_ptr(&command), buffer_len(&command));
972 packet_send();
973 packet_write_wait();
974 } else {
975 debug("Requesting shell.");
976 packet_start(SSH_CMSG_EXEC_SHELL);
977 packet_send();
978 packet_write_wait();
979 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000980
Damien Miller95def091999-11-25 00:26:21 +1100981 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000982 return client_loop(have_tty, tty_flag ?
983 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +1000984}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000985
Ben Lindstrombba81212001-06-25 05:01:22 +0000986static void
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000987client_subsystem_reply(int type, int plen, void *ctxt)
988{
989 int id, len;
990
991 id = packet_get_int();
992 len = buffer_len(&command);
Ben Lindstrom4040fe12001-03-05 06:52:57 +0000993 if (len > 900)
994 len = 900;
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000995 packet_done();
996 if (type == SSH2_MSG_CHANNEL_FAILURE)
997 fatal("Request for subsystem '%.*s' failed on channel %d",
998 len, buffer_ptr(&command), id);
999}
1000
Ben Lindstrombba81212001-06-25 05:01:22 +00001001static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001002ssh_session2_callback(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001003{
1004 int len;
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001005 int interactive = 0;
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001006 struct termios tio;
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001007
Kevin Stevesadf74cd2001-02-05 14:22:50 +00001008 debug("client_init id %d arg %ld", id, (long)arg);
Damien Miller1383bd82000-04-06 12:32:37 +10001009
Damien Miller1383bd82000-04-06 12:32:37 +10001010 if (tty_flag) {
1011 struct winsize ws;
1012 char *cp;
1013 cp = getenv("TERM");
1014 if (!cp)
1015 cp = "";
1016 /* Store window size in the packet. */
1017 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1018 memset(&ws, 0, sizeof(ws));
1019
1020 channel_request_start(id, "pty-req", 0);
1021 packet_put_cstring(cp);
1022 packet_put_int(ws.ws_col);
1023 packet_put_int(ws.ws_row);
1024 packet_put_int(ws.ws_xpixel);
1025 packet_put_int(ws.ws_ypixel);
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001026 tio = get_saved_tio();
1027 tty_make_modes(/*ignored*/ 0, &tio);
Damien Miller1383bd82000-04-06 12:32:37 +10001028 packet_send();
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001029 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001030 /* XXX wait for reply */
1031 }
Damien Millerbd483e72000-04-30 10:00:53 +10001032 if (options.forward_x11 &&
1033 getenv("DISPLAY") != NULL) {
1034 char proto[512], data[512];
1035 /* Get reasonable local authentication information. */
1036 x11_get_proto(proto, sizeof proto, data, sizeof data);
1037 /* Request forwarding with authentication spoofing. */
1038 debug("Requesting X11 forwarding with authentication spoofing.");
1039 x11_request_forwarding_with_spoofing(id, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001040 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001041 /* XXX wait for reply */
1042 }
1043
Damien Miller0bc1bd82000-11-13 22:57:25 +11001044 check_agent_present();
1045 if (options.forward_agent) {
1046 debug("Requesting authentication agent forwarding.");
1047 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1048 packet_send();
1049 }
1050
Damien Miller1383bd82000-04-06 12:32:37 +10001051 len = buffer_len(&command);
1052 if (len > 0) {
1053 if (len > 900)
1054 len = 900;
Damien Miller832562e2001-01-30 09:30:01 +11001055 if (subsystem_flag) {
1056 debug("Sending subsystem: %.*s", len, buffer_ptr(&command));
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001057 channel_request_start(id, "subsystem", /*want reply*/ 1);
1058 /* register callback for reply */
1059 /* XXX we asume that client_loop has already been called */
1060 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &client_subsystem_reply);
1061 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &client_subsystem_reply);
Damien Miller832562e2001-01-30 09:30:01 +11001062 } else {
1063 debug("Sending command: %.*s", len, buffer_ptr(&command));
1064 channel_request_start(id, "exec", 0);
1065 }
Ben Lindstrom4040fe12001-03-05 06:52:57 +00001066 packet_put_string(buffer_ptr(&command), buffer_len(&command));
Damien Miller1383bd82000-04-06 12:32:37 +10001067 packet_send();
1068 } else {
1069 channel_request(id, "shell", 0);
1070 }
1071 /* channel_callback(id, SSH2_MSG_OPEN_CONFIGMATION, client_init, 0); */
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001072
Damien Miller1383bd82000-04-06 12:32:37 +10001073 /* register different callback, etc. XXX */
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001074 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001075}
1076
Ben Lindstrombba81212001-06-25 05:01:22 +00001077static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001078ssh_session2_command(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001079{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001080 Channel *c;
1081 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001082
Damien Millercaf6dd62000-08-29 11:33:50 +11001083 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001084 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001085 } else {
1086 in = dup(STDIN_FILENO);
1087 }
1088 out = dup(STDOUT_FILENO);
1089 err = dup(STDERR_FILENO);
1090
1091 if (in < 0 || out < 0 || err < 0)
1092 fatal("dup() in/out/err failed");
1093
Damien Miller69b69aa2000-10-28 14:19:58 +11001094 /* enable nonblocking unless tty */
1095 if (!isatty(in))
1096 set_nonblock(in);
1097 if (!isatty(out))
1098 set_nonblock(out);
1099 if (!isatty(err))
1100 set_nonblock(err);
1101
Damien Millere4340be2000-09-16 13:29:08 +11001102 window = CHAN_SES_WINDOW_DEFAULT;
1103 packetmax = CHAN_SES_PACKET_DEFAULT;
1104 if (!tty_flag) {
Damien Miller1383bd82000-04-06 12:32:37 +10001105 window *= 2;
Damien Millere4340be2000-09-16 13:29:08 +11001106 packetmax *=2;
Damien Miller1383bd82000-04-06 12:32:37 +10001107 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001108 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001109 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001110 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Miller69b69aa2000-10-28 14:19:58 +11001111 xstrdup("client-session"), /*nonblock*/0);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001112 if (c == NULL)
1113 fatal("ssh_session2_command: channel_new failed");
Damien Miller1383bd82000-04-06 12:32:37 +10001114
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001115 debug3("ssh_session2_command: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001116
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001117 channel_send_open(c->self);
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001118 channel_register_callback(c->self, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION,
Damien Miller0bc1bd82000-11-13 22:57:25 +11001119 ssh_session2_callback, (void *)0);
Damien Miller1383bd82000-04-06 12:32:37 +10001120
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001121 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001122}
1123
Ben Lindstrombba81212001-06-25 05:01:22 +00001124static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001125ssh_session2(void)
1126{
1127 int id;
1128
1129 /* XXX should be pre-session */
1130 ssh_init_forwarding();
1131
1132 id = no_shell_flag ? -1 : ssh_session2_command();
1133
1134 /* If requested, let ssh continue in the background. */
1135 if (fork_after_authentication_flag)
1136 if (daemon(1, 1) < 0)
1137 fatal("daemon() failed: %.200s", strerror(errno));
1138
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001139 return client_loop(tty_flag, tty_flag ?
1140 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001141}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001142
Ben Lindstrombba81212001-06-25 05:01:22 +00001143static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001144load_public_identity_files(void)
1145{
1146 char *filename;
1147 Key *public;
1148 int i;
1149
1150 for (i = 0; i < options.num_identity_files; i++) {
1151 filename = tilde_expand_filename(options.identity_files[i],
1152 original_real_uid);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001153 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001154 debug("identity file %s type %d", filename,
1155 public ? public->type : -1);
1156 xfree(options.identity_files[i]);
1157 options.identity_files[i] = filename;
1158 options.identity_keys[i] = public;
1159 }
Ben Lindstromc5b68002001-07-04 04:52:03 +00001160#ifdef SMARTCARD
1161 if (sc_reader_num != -1 &&
1162 options.num_identity_files + 1 < SSH_MAX_IDENTITY_FILES &&
1163 (public = sc_get_key(sc_reader_num)) != NULL ) {
1164 Key *new;
1165
1166 /* XXX ssh1 vs ssh2 */
1167 new = key_new(KEY_RSA);
1168 new->flags = KEY_FLAG_EXT;
1169 BN_copy(new->rsa->n, public->rsa->n);
1170 BN_copy(new->rsa->e, public->rsa->e);
1171 RSA_set_method(new->rsa, sc_get_engine());
1172 i = options.num_identity_files++;
1173 options.identity_keys[i] = new;
1174 options.identity_files[i] = xstrdup("smartcard rsa key");;
1175
1176 new = key_new(KEY_RSA1);
1177 new->flags = KEY_FLAG_EXT;
1178 BN_copy(new->rsa->n, public->rsa->n);
1179 BN_copy(new->rsa->e, public->rsa->e);
1180 RSA_set_method(new->rsa, sc_get_engine());
1181 i = options.num_identity_files++;
1182 options.identity_keys[i] = new;
1183 options.identity_files[i] = xstrdup("smartcard rsa1 key");;
1184
1185 key_free(public);
1186 }
1187#endif
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001188}