blob: 89ced97e28d85c00051a90f0544958e1f4d40af5 [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 Lindstrom146edb92001-04-11 23:06:28 +000042RCSID("$OpenBSD: ssh.c,v 1.109 2001/04/11 10:59:01 markus Exp $");
Damien Millereba71ba2000-04-29 23:57:08 +100043
44#include <openssl/evp.h>
Damien Miller0bc1bd82000-11-13 22:57:25 +110045#include <openssl/err.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100046
Damien Millerd4a8b7e1999-10-27 13:42:43 +100047#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000048#include "ssh1.h"
Damien Miller1383bd82000-04-06 12:32:37 +100049#include "ssh2.h"
50#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000051#include "cipher.h"
52#include "xmalloc.h"
53#include "packet.h"
54#include "buffer.h"
55#include "uidswap.h"
Damien Millerb38eff82000-04-01 11:09:21 +100056#include "channels.h"
Damien Millereba71ba2000-04-29 23:57:08 +100057#include "key.h"
Damien Miller994cf142000-07-21 10:19:44 +100058#include "authfd.h"
Damien Millereba71ba2000-04-29 23:57:08 +100059#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000060#include "pathnames.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000061#include "clientloop.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000062#include "log.h"
63#include "readconf.h"
64#include "sshconnect.h"
65#include "tildexpand.h"
Ben Lindstrom1e7d3062001-02-09 02:36:43 +000066#include "dispatch.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000067#include "misc.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000068#include "kex.h"
69#include "mac.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100070
Damien Miller3f905871999-11-15 17:10:57 +110071#ifdef HAVE___PROGNAME
72extern char *__progname;
Ben Lindstrom49a79c02000-11-17 03:47:20 +000073#else
74char *__progname;
75#endif
Damien Miller3f905871999-11-15 17:10:57 +110076
Damien Miller34132e52000-01-14 15:45:46 +110077/* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
78 Default value is AF_UNSPEC means both IPv4 and IPv6. */
Damien Miller7d80e342000-01-19 14:36:49 +110079#ifdef IPV4_DEFAULT
80int IPv4or6 = AF_INET;
81#else
Damien Miller34132e52000-01-14 15:45:46 +110082int IPv4or6 = AF_UNSPEC;
Damien Miller7d80e342000-01-19 14:36:49 +110083#endif
Damien Miller34132e52000-01-14 15:45:46 +110084
Damien Miller95def091999-11-25 00:26:21 +110085/* Flag indicating whether debug mode is on. This can be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100086int debug_flag = 0;
87
Damien Miller78928792000-04-12 20:17:38 +100088/* Flag indicating whether a tty should be allocated */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100089int tty_flag = 0;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +000090int no_tty_flag = 0;
91int force_tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092
Damien Miller1383bd82000-04-06 12:32:37 +100093/* don't exec a shell */
94int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +100095
Damien Miller5428f641999-11-25 11:54:57 +110096/*
97 * Flag indicating that nothing should be read from stdin. This can be set
98 * on the command line.
99 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000100int stdin_null_flag = 0;
101
Damien Miller5428f641999-11-25 11:54:57 +1100102/*
103 * Flag indicating that ssh should fork after authentication. This is useful
104 * so that the pasphrase can be entered manually, and then ssh goes to the
105 * background.
106 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000107int fork_after_authentication_flag = 0;
108
Damien Miller5428f641999-11-25 11:54:57 +1100109/*
110 * General data structure for command line options and options configurable
111 * in configuration files. See readconf.h.
112 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000113Options options;
114
Damien Miller5428f641999-11-25 11:54:57 +1100115/*
116 * Name of the host we are connecting to. This is the name given on the
117 * command line, or the HostName specified for the user-supplied name in a
118 * configuration file.
119 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000120char *host;
121
122/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100123struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000124
Damien Miller5428f641999-11-25 11:54:57 +1100125/*
126 * Flag to indicate that we have received a window change signal which has
127 * not yet been processed. This will cause a message indicating the new
128 * window size to be sent to the server a little later. This is volatile
129 * because this is updated in a signal handler.
130 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000131volatile int received_window_change_signal = 0;
132
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000133/* Host private key. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000134Key *host_private_key = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000135
136/* Original real UID. */
137uid_t original_real_uid;
138
Damien Miller1383bd82000-04-06 12:32:37 +1000139/* command to be executed */
140Buffer command;
141
Damien Miller832562e2001-01-30 09:30:01 +1100142/* Should we execute a command or invoke a subsystem? */
143int subsystem_flag = 0;
144
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000145/* Prints a help message to the user. This function never returns. */
146
147void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000148usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000149{
Kevin Stevesec84dc12000-12-13 17:45:15 +0000150 fprintf(stderr, "Usage: %s [options] host [command]\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100151 fprintf(stderr, "Options:\n");
152 fprintf(stderr, " -l user Log in using this user name.\n");
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000153 fprintf(stderr, " -n Redirect input from " _PATH_DEVNULL ".\n");
Damien Millerb1715dc2000-05-30 13:44:51 +1000154 fprintf(stderr, " -A Enable authentication agent forwarding.\n");
Damien Miller95def091999-11-25 00:26:21 +1100155 fprintf(stderr, " -a Disable authentication agent forwarding.\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000156#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100157 fprintf(stderr, " -k Disable Kerberos ticket and AFS token forwarding.\n");
158#endif /* AFS */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000159 fprintf(stderr, " -X Enable X11 connection forwarding.\n");
Damien Miller95def091999-11-25 00:26:21 +1100160 fprintf(stderr, " -x Disable X11 connection forwarding.\n");
Ben Lindstrom0ab2a012001-03-05 06:45:21 +0000161 fprintf(stderr, " -i file Identity for public key authentication "
162 "(default: ~/.ssh/identity)\n");
Damien Miller95def091999-11-25 00:26:21 +1100163 fprintf(stderr, " -t Tty; allocate a tty even if command is given.\n");
Damien Miller1383bd82000-04-06 12:32:37 +1000164 fprintf(stderr, " -T Do not allocate a tty.\n");
Damien Miller95def091999-11-25 00:26:21 +1100165 fprintf(stderr, " -v Verbose; display verbose debugging messages.\n");
Damien Millere4340be2000-09-16 13:29:08 +1100166 fprintf(stderr, " Multiple -v increases verbosity.\n");
Damien Miller95def091999-11-25 00:26:21 +1100167 fprintf(stderr, " -V Display version number only.\n");
168 fprintf(stderr, " -P Don't allocate a privileged port.\n");
169 fprintf(stderr, " -q Quiet; don't display any warning messages.\n");
170 fprintf(stderr, " -f Fork into background after authentication.\n");
171 fprintf(stderr, " -e char Set escape character; ``none'' = disable (default: ~).\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000172
Damien Miller95def091999-11-25 00:26:21 +1100173 fprintf(stderr, " -c cipher Select encryption algorithm: "
Ben Lindstrom0ab2a012001-03-05 06:45:21 +0000174 "``3des'', ``blowfish''\n");
Ben Lindstrom3d73a342001-03-05 07:39:01 +0000175 fprintf(stderr, " -m macs Specify MAC algorithms for protocol version 2.\n");
Damien Miller95def091999-11-25 00:26:21 +1100176 fprintf(stderr, " -p port Connect to this port. Server must be on the same port.\n");
177 fprintf(stderr, " -L listen-port:host:port Forward local port to remote address\n");
178 fprintf(stderr, " -R listen-port:host:port Forward remote port to local address\n");
Kevin Stevesec84dc12000-12-13 17:45:15 +0000179 fprintf(stderr, " These cause %s to listen for connections on a port, and\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100180 fprintf(stderr, " forward them to the other side by connecting to host:port.\n");
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000181 fprintf(stderr, " -D port Dynamically forward local port to multiple remote addresses.\n");
182 fprintf(stderr, " Allows SSH to act as an application-layer proxy.\n");
183 fprintf(stderr, " Protocols Supported: SOCKS4\n");
Damien Miller95def091999-11-25 00:26:21 +1100184 fprintf(stderr, " -C Enable compression.\n");
Damien Miller1383bd82000-04-06 12:32:37 +1000185 fprintf(stderr, " -N Do not execute a shell or command.\n");
Damien Miller95def091999-11-25 00:26:21 +1100186 fprintf(stderr, " -g Allow remote hosts to connect to forwarded ports.\n");
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000187 fprintf(stderr, " -1 Force protocol version 1.\n");
188 fprintf(stderr, " -2 Force protocol version 2.\n");
Damien Miller34132e52000-01-14 15:45:46 +1100189 fprintf(stderr, " -4 Use IPv4 only.\n");
190 fprintf(stderr, " -6 Use IPv6 only.\n");
Damien Miller95def091999-11-25 00:26:21 +1100191 fprintf(stderr, " -o 'option' Process the option as if it was read from a configuration file.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100192 fprintf(stderr, " -s Invoke command (mandatory) as SSH2 subsystem.\n");
Damien Miller95def091999-11-25 00:26:21 +1100193 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000194}
195
Damien Miller95def091999-11-25 00:26:21 +1100196/*
197 * Connects to the given host using rsh (or prints an error message and exits
198 * if rsh is not available). This function never returns.
199 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000200void
Damien Miller95def091999-11-25 00:26:21 +1100201rsh_connect(char *host, char *user, Buffer * command)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000202{
Damien Miller95def091999-11-25 00:26:21 +1100203 char *args[10];
204 int i;
205
206 log("Using rsh. WARNING: Connection will not be encrypted.");
207 /* Build argument list for rsh. */
208 i = 0;
209 args[i++] = _PATH_RSH;
210 /* host may have to come after user on some systems */
211 args[i++] = host;
212 if (user) {
213 args[i++] = "-l";
214 args[i++] = user;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000215 }
Damien Miller95def091999-11-25 00:26:21 +1100216 if (buffer_len(command) > 0) {
217 buffer_append(command, "\0", 1);
218 args[i++] = buffer_ptr(command);
219 }
220 args[i++] = NULL;
221 if (debug_flag) {
222 for (i = 0; args[i]; i++) {
223 if (i != 0)
224 fprintf(stderr, " ");
225 fprintf(stderr, "%s", args[i]);
226 }
227 fprintf(stderr, "\n");
228 }
229 execv(_PATH_RSH, args);
230 perror(_PATH_RSH);
231 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000232}
233
Damien Miller0bc1bd82000-11-13 22:57:25 +1100234int ssh_session(void);
235int ssh_session2(void);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000236void load_public_identity_files(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000237
Damien Miller95def091999-11-25 00:26:21 +1100238/*
239 * Main program for the ssh client.
240 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000241int
242main(int ac, char **av)
243{
Damien Miller1383bd82000-04-06 12:32:37 +1000244 int i, opt, optind, exit_status, ok;
Damien Milleraae6c611999-12-06 11:47:28 +1100245 u_short fwd_port, fwd_host_port;
Ben Lindstrom146edb92001-04-11 23:06:28 +0000246 char *optarg, *cp, *endofnumber, buf[256];
Damien Miller95def091999-11-25 00:26:21 +1100247 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000248 struct passwd *pw;
Damien Miller1383bd82000-04-06 12:32:37 +1000249 int dummy;
Damien Miller95def091999-11-25 00:26:21 +1100250 uid_t original_effective_uid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000251
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000252 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000253 init_rng();
254
Damien Miller5428f641999-11-25 11:54:57 +1100255 /*
256 * Save the original real uid. It will be needed later (uid-swapping
257 * may clobber the real uid).
258 */
Damien Miller95def091999-11-25 00:26:21 +1100259 original_real_uid = getuid();
260 original_effective_uid = geteuid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000261
Damien Miller05dd7952000-10-01 00:42:48 +1100262#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100263 /* If we are installed setuid root be careful to not drop core. */
264 if (original_real_uid != original_effective_uid) {
265 struct rlimit rlim;
266 rlim.rlim_cur = rlim.rlim_max = 0;
267 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
268 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000269 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100270#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000271 /* Get user data. */
272 pw = getpwuid(original_real_uid);
273 if (!pw) {
274 log("You don't exist, go away!");
275 exit(1);
276 }
277 /* Take a copy of the returned structure. */
278 pw = pwcopy(pw);
279
Damien Miller5428f641999-11-25 11:54:57 +1100280 /*
281 * Use uid-swapping to give up root privileges for the duration of
282 * option processing. We will re-instantiate the rights when we are
283 * ready to create the privileged port, and will permanently drop
284 * them when the port has been created (actually, when the connection
285 * has been made, as we may need to create the port several times).
286 */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000287 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000288
Damien Miller5428f641999-11-25 11:54:57 +1100289 /*
290 * Set our umask to something reasonable, as some files are created
291 * with the default umask. This will make them world-readable but
292 * writable only by the owner, which is ok for all files for which we
293 * don't set the modes explicitly.
294 */
Damien Miller95def091999-11-25 00:26:21 +1100295 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000296
Damien Miller95def091999-11-25 00:26:21 +1100297 /* Initialize option structure to indicate that no values have been set. */
298 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000299
Damien Miller95def091999-11-25 00:26:21 +1100300 /* Parse command-line arguments. */
301 host = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000302
Damien Miller95def091999-11-25 00:26:21 +1100303 for (optind = 1; optind < ac; optind++) {
304 if (av[optind][0] != '-') {
305 if (host)
306 break;
307 if ((cp = strchr(av[optind], '@'))) {
Damien Miller4af51302000-04-16 11:18:38 +1000308 if(cp == av[optind])
309 usage();
Damien Miller95def091999-11-25 00:26:21 +1100310 options.user = av[optind];
311 *cp = '\0';
312 host = ++cp;
313 } else
314 host = av[optind];
315 continue;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000316 }
Damien Miller95def091999-11-25 00:26:21 +1100317 opt = av[optind][1];
318 if (!opt)
319 usage();
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000320 if (strchr("eilcmpLRDo", opt)) { /* options with arguments */
Damien Miller95def091999-11-25 00:26:21 +1100321 optarg = av[optind] + 2;
322 if (strcmp(optarg, "") == 0) {
323 if (optind >= ac - 1)
324 usage();
325 optarg = av[++optind];
326 }
327 } else {
328 if (av[optind][2])
329 usage();
330 optarg = NULL;
331 }
332 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000333 case '1':
334 options.protocol = SSH_PROTO_1;
335 break;
Damien Miller4af51302000-04-16 11:18:38 +1000336 case '2':
337 options.protocol = SSH_PROTO_2;
338 break;
Damien Miller34132e52000-01-14 15:45:46 +1100339 case '4':
340 IPv4or6 = AF_INET;
341 break;
Damien Miller34132e52000-01-14 15:45:46 +1100342 case '6':
343 IPv4or6 = AF_INET6;
344 break;
Damien Miller95def091999-11-25 00:26:21 +1100345 case 'n':
346 stdin_null_flag = 1;
347 break;
Damien Miller95def091999-11-25 00:26:21 +1100348 case 'f':
349 fork_after_authentication_flag = 1;
350 stdin_null_flag = 1;
351 break;
Damien Miller95def091999-11-25 00:26:21 +1100352 case 'x':
353 options.forward_x11 = 0;
354 break;
Damien Miller95def091999-11-25 00:26:21 +1100355 case 'X':
356 options.forward_x11 = 1;
357 break;
Damien Miller95def091999-11-25 00:26:21 +1100358 case 'g':
359 options.gateway_ports = 1;
360 break;
Damien Miller95def091999-11-25 00:26:21 +1100361 case 'P':
362 options.use_privileged_port = 0;
363 break;
Damien Miller95def091999-11-25 00:26:21 +1100364 case 'a':
365 options.forward_agent = 0;
366 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000367 case 'A':
368 options.forward_agent = 1;
369 break;
Damien Miller95def091999-11-25 00:26:21 +1100370#ifdef AFS
371 case 'k':
372 options.kerberos_tgt_passing = 0;
373 options.afs_token_passing = 0;
374 break;
375#endif
376 case 'i':
377 if (stat(optarg, &st) < 0) {
378 fprintf(stderr, "Warning: Identity file %s does not exist.\n",
Damien Miller0bc1bd82000-11-13 22:57:25 +1100379 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100380 break;
381 }
382 if (options.num_identity_files >= SSH_MAX_IDENTITY_FILES)
383 fatal("Too many identity files specified (max %d)",
Damien Miller0bc1bd82000-11-13 22:57:25 +1100384 SSH_MAX_IDENTITY_FILES);
385 options.identity_files[options.num_identity_files++] = xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100386 break;
Damien Miller95def091999-11-25 00:26:21 +1100387 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000388 if (tty_flag)
389 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100390 tty_flag = 1;
391 break;
Damien Miller95def091999-11-25 00:26:21 +1100392 case 'v':
Damien Millere4340be2000-09-16 13:29:08 +1100393 if (0 == debug_flag) {
394 debug_flag = 1;
395 options.log_level = SYSLOG_LEVEL_DEBUG1;
396 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
397 options.log_level++;
398 break;
399 } else {
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000400 fatal("Too high debugging level.");
Damien Millere4340be2000-09-16 13:29:08 +1100401 }
402 /* fallthrough */
Damien Miller95def091999-11-25 00:26:21 +1100403 case 'V':
Damien Miller225736c2001-02-19 21:51:08 +1100404 fprintf(stderr,
405 "%s, SSH protocols %d.%d/%d.%d, OpenSSL 0x%8.8lx\n",
Damien Miller78928792000-04-12 20:17:38 +1000406 SSH_VERSION,
407 PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1,
Damien Miller225736c2001-02-19 21:51:08 +1100408 PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2,
409 SSLeay());
Damien Miller95def091999-11-25 00:26:21 +1100410 if (opt == 'V')
411 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100412 break;
Damien Miller95def091999-11-25 00:26:21 +1100413 case 'q':
414 options.log_level = SYSLOG_LEVEL_QUIET;
415 break;
Damien Miller95def091999-11-25 00:26:21 +1100416 case 'e':
417 if (optarg[0] == '^' && optarg[2] == 0 &&
Ben Lindstrom46c16222000-12-22 01:43:59 +0000418 (u_char) optarg[1] >= 64 && (u_char) optarg[1] < 128)
419 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100420 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000421 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100422 else if (strcmp(optarg, "none") == 0)
423 options.escape_char = -2;
424 else {
425 fprintf(stderr, "Bad escape character '%s'.\n", optarg);
426 exit(1);
427 }
428 break;
Damien Miller95def091999-11-25 00:26:21 +1100429 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000430 if (ciphers_valid(optarg)) {
431 /* SSH2 only */
432 options.ciphers = xstrdup(optarg);
Damien Miller30c3d422000-05-09 11:02:59 +1000433 options.cipher = SSH_CIPHER_ILLEGAL;
Damien Millereba71ba2000-04-29 23:57:08 +1000434 } else {
435 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100436 options.cipher = cipher_number(optarg);
437 if (options.cipher == -1) {
Damien Millereba71ba2000-04-29 23:57:08 +1000438 fprintf(stderr, "Unknown cipher type '%s'\n", optarg);
439 exit(1);
440 }
Damien Millere39cacc2000-11-29 12:18:44 +1100441 if (options.cipher == SSH_CIPHER_3DES) {
442 options.ciphers = "3des-cbc";
443 } else if (options.cipher == SSH_CIPHER_BLOWFISH) {
444 options.ciphers = "blowfish-cbc";
445 } else {
446 options.ciphers = (char *)-1;
447 }
Damien Miller95def091999-11-25 00:26:21 +1100448 }
449 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000450 case 'm':
451 if (mac_valid(optarg))
452 options.macs = xstrdup(optarg);
453 else {
454 fprintf(stderr, "Unknown mac type '%s'\n", optarg);
455 exit(1);
456 }
457 break;
Damien Miller95def091999-11-25 00:26:21 +1100458 case 'p':
Ben Lindstrom146edb92001-04-11 23:06:28 +0000459 options.port = strtol(optarg, &endofnumber, 0);
460 if (optarg == endofnumber) {
461 fprintf(stderr, "Bad port '%s'\n", optarg);
462 exit(1);
463 }
Damien Miller95def091999-11-25 00:26:21 +1100464 break;
Damien Miller95def091999-11-25 00:26:21 +1100465 case 'l':
466 options.user = optarg;
467 break;
Damien Miller95def091999-11-25 00:26:21 +1100468 case 'R':
Damien Miller34132e52000-01-14 15:45:46 +1100469 if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf,
470 &fwd_host_port) != 3 &&
471 sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf,
472 &fwd_host_port) != 3) {
Damien Miller95def091999-11-25 00:26:21 +1100473 fprintf(stderr, "Bad forwarding specification '%s'.\n", optarg);
474 usage();
475 /* NOTREACHED */
476 }
477 add_remote_forward(&options, fwd_port, buf, fwd_host_port);
478 break;
Damien Miller95def091999-11-25 00:26:21 +1100479 case 'L':
Damien Miller34132e52000-01-14 15:45:46 +1100480 if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf,
481 &fwd_host_port) != 3 &&
482 sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf,
483 &fwd_host_port) != 3) {
Damien Miller95def091999-11-25 00:26:21 +1100484 fprintf(stderr, "Bad forwarding specification '%s'.\n", optarg);
485 usage();
486 /* NOTREACHED */
487 }
488 add_local_forward(&options, fwd_port, buf, fwd_host_port);
489 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000490
491 case 'D':
Ben Lindstrom146edb92001-04-11 23:06:28 +0000492 fwd_port = strtol(optarg, &endofnumber, 0);
493 if (optarg == endofnumber) {
494 fprintf(stderr, "Bad port '%s'\n", optarg);
495 exit(1);
496 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000497 add_local_forward(&options, fwd_port, "socks4", 0);
498 break;
499
Damien Miller95def091999-11-25 00:26:21 +1100500 case 'C':
501 options.compression = 1;
502 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000503 case 'N':
504 no_shell_flag = 1;
505 no_tty_flag = 1;
506 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000507 case 'T':
508 no_tty_flag = 1;
509 break;
Damien Miller95def091999-11-25 00:26:21 +1100510 case 'o':
511 dummy = 1;
512 if (process_config_line(&options, host ? host : "", optarg,
513 "command-line", 0, &dummy) != 0)
514 exit(1);
515 break;
Damien Miller832562e2001-01-30 09:30:01 +1100516 case 's':
517 subsystem_flag = 1;
518 break;
Damien Miller95def091999-11-25 00:26:21 +1100519 default:
520 usage();
521 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000522 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000523
Damien Miller95def091999-11-25 00:26:21 +1100524 /* Check that we got a host name. */
525 if (!host)
526 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000527
Damien Millercb5e44a2000-09-29 12:12:36 +1100528 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100529 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100530
Damien Miller95def091999-11-25 00:26:21 +1100531 /* Initialize the command to execute on remote host. */
532 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000533
Damien Miller5428f641999-11-25 11:54:57 +1100534 /*
535 * Save the command to execute on the remote host in a buffer. There
536 * is no limit on the length of the command, except by the maximum
537 * packet size. Also sets the tty flag if there is no command.
538 */
Damien Miller95def091999-11-25 00:26:21 +1100539 if (optind == ac) {
540 /* No command specified - execute shell on a tty. */
541 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100542 if (subsystem_flag) {
543 fprintf(stderr, "You must specify a subsystem to invoke.");
544 usage();
545 }
Damien Miller95def091999-11-25 00:26:21 +1100546 } else {
547 /* A command has been specified. Store it into the
548 buffer. */
549 for (i = optind; i < ac; i++) {
550 if (i > optind)
551 buffer_append(&command, " ", 1);
552 buffer_append(&command, av[i], strlen(av[i]));
553 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000554 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000555
Damien Miller95def091999-11-25 00:26:21 +1100556 /* Cannot fork to background if no command. */
Damien Millercaf6dd62000-08-29 11:33:50 +1100557 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
Damien Miller95def091999-11-25 00:26:21 +1100558 fatal("Cannot fork into background without a command to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000559
Damien Miller95def091999-11-25 00:26:21 +1100560 /* Allocate a tty by default if no command specified. */
561 if (buffer_len(&command) == 0)
562 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000563
Ben Lindstromc72745a2000-12-02 19:03:54 +0000564 /* Force no tty*/
565 if (no_tty_flag)
566 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100567 /* Do not allocate a tty if stdin is not a tty. */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000568 if (!isatty(fileno(stdin)) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100569 if (tty_flag)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000570 log("Pseudo-terminal will not be allocated because stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100571 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000572 }
Damien Miller1383bd82000-04-06 12:32:37 +1000573
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000574 /*
575 * Initialize "log" output. Since we are the client all output
576 * actually goes to stderr.
577 */
578 log_init(av[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000579
Damien Miller95def091999-11-25 00:26:21 +1100580 /* Read per-user configuration file. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000581 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, _PATH_SSH_USER_CONFFILE);
Damien Miller95def091999-11-25 00:26:21 +1100582 read_config_file(buf, host, &options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000583
Damien Miller95def091999-11-25 00:26:21 +1100584 /* Read systemwide configuration file. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000585 read_config_file(_PATH_HOST_CONFIG_FILE, host, &options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000586
Damien Miller95def091999-11-25 00:26:21 +1100587 /* Fill configuration defaults. */
588 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000589
Damien Miller95def091999-11-25 00:26:21 +1100590 /* reinit */
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000591 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000592
Damien Miller60bc5172001-03-19 09:38:15 +1100593 seed_rng();
594
Damien Miller95def091999-11-25 00:26:21 +1100595 if (options.user == NULL)
596 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000597
Damien Miller95def091999-11-25 00:26:21 +1100598 if (options.hostname != NULL)
599 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000600
Damien Miller95def091999-11-25 00:26:21 +1100601 /* Disable rhosts authentication if not running as root. */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100602#ifdef HAVE_CYGWIN
603 /* Ignore uid if running under Windows */
604 if (!options.use_privileged_port) {
605#else
Damien Miller95def091999-11-25 00:26:21 +1100606 if (original_effective_uid != 0 || !options.use_privileged_port) {
Damien Millerbac2d8a2000-09-05 16:13:06 +1100607#endif
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000608 debug("Rhosts Authentication disabled, "
609 "originating port will not be trusted.");
Damien Miller95def091999-11-25 00:26:21 +1100610 options.rhosts_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100611 }
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000612
Damien Miller5428f641999-11-25 11:54:57 +1100613 /*
614 * If using rsh has been selected, exec it now (without trying
615 * anything else). Note that we must release privileges first.
616 */
Damien Miller95def091999-11-25 00:26:21 +1100617 if (options.use_rsh) {
Damien Miller5428f641999-11-25 11:54:57 +1100618 /*
619 * Restore our superuser privileges. This must be done
620 * before permanently setting the uid.
621 */
Damien Miller95def091999-11-25 00:26:21 +1100622 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000623
Damien Miller95def091999-11-25 00:26:21 +1100624 /* Switch to the original uid permanently. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000625 permanently_set_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000626
Damien Miller95def091999-11-25 00:26:21 +1100627 /* Execute rsh. */
628 rsh_connect(host, options.user, &command);
629 fatal("rsh_connect returned");
630 }
631 /* Restore our superuser privileges. */
632 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000633
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000634 /* Open a connection to the remote host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000635
Damien Miller95def091999-11-25 00:26:21 +1100636 ok = ssh_connect(host, &hostaddr, options.port,
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000637 options.connection_attempts,
638 original_effective_uid != 0 || !options.use_privileged_port,
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000639 pw, options.proxy_command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000640
Damien Miller5428f641999-11-25 11:54:57 +1100641 /*
642 * If we successfully made the connection, load the host private key
643 * in case we will need it later for combined rsa-rhosts
644 * authentication. This must be done before releasing extra
645 * privileges, because the file is only readable by root.
646 */
Damien Millereba71ba2000-04-29 23:57:08 +1000647 if (ok && (options.protocol & SSH_PROTO_1)) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000648 host_private_key = key_load_private_type(KEY_RSA1,
649 _PATH_HOST_KEY_FILE, "", NULL);
Damien Miller95def091999-11-25 00:26:21 +1100650 }
Damien Miller5428f641999-11-25 11:54:57 +1100651 /*
652 * Get rid of any extra privileges that we may have. We will no
653 * longer need them. Also, extra privileges could make it very hard
654 * to read identity files and other non-world-readable files from the
655 * user's home directory if it happens to be on a NFS volume where
656 * root is mapped to nobody.
657 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000658
Damien Miller5428f641999-11-25 11:54:57 +1100659 /*
660 * Note that some legacy systems need to postpone the following call
661 * to permanently_set_uid() until the private hostkey is destroyed
662 * with RSA_free(). Otherwise the calling user could ptrace() the
663 * process, read the private hostkey and impersonate the host.
664 * OpenBSD does not allow ptracing of setuid processes.
665 */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000666 permanently_set_uid(pw);
Damien Miller95def091999-11-25 00:26:21 +1100667
Damien Miller5428f641999-11-25 11:54:57 +1100668 /*
669 * Now that we are back to our own permissions, create ~/.ssh
670 * directory if it doesn\'t already exist.
671 */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000672 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, _PATH_SSH_USER_DIR);
Damien Miller95def091999-11-25 00:26:21 +1100673 if (stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000674 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100675 error("Could not create directory '%.200s'.", buf);
676
677 /* Check if the connection failed, and try "rsh" if appropriate. */
678 if (!ok) {
679 if (options.port != 0)
Damien Milleraae6c611999-12-06 11:47:28 +1100680 log("Secure connection to %.100s on port %hu refused%.100s.",
Damien Miller95def091999-11-25 00:26:21 +1100681 host, options.port,
682 options.fallback_to_rsh ? "; reverting to insecure method" : "");
683 else
684 log("Secure connection to %.100s refused%.100s.", host,
685 options.fallback_to_rsh ? "; reverting to insecure method" : "");
686
687 if (options.fallback_to_rsh) {
688 rsh_connect(host, options.user, &command);
689 fatal("rsh_connect returned");
690 }
691 exit(1);
692 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000693 /* load options.identity_files */
694 load_public_identity_files();
695
696 /* Expand ~ in known host file names. */
697 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100698 options.system_hostfile =
699 tilde_expand_filename(options.system_hostfile, original_real_uid);
700 options.user_hostfile =
701 tilde_expand_filename(options.user_hostfile, original_real_uid);
702 options.system_hostfile2 =
703 tilde_expand_filename(options.system_hostfile2, original_real_uid);
704 options.user_hostfile2 =
705 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100706
707 /* Log into the remote system. This never returns if the login fails. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000708 ssh_login(host_private_key, host, (struct sockaddr *)&hostaddr, pw);
Damien Miller95def091999-11-25 00:26:21 +1100709
710 /* We no longer need the host private key. Clear it now. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000711 if (host_private_key != NULL)
712 key_free(host_private_key); /* Destroys contents safely */
Damien Miller95def091999-11-25 00:26:21 +1100713
Damien Miller1383bd82000-04-06 12:32:37 +1000714 exit_status = compat20 ? ssh_session2() : ssh_session();
715 packet_close();
716 return exit_status;
717}
718
Damien Millerbd483e72000-04-30 10:00:53 +1000719void
720x11_get_proto(char *proto, int proto_len, char *data, int data_len)
721{
722 char line[512];
723 FILE *f;
724 int got_data = 0, i;
725
Damien Millerd3a18572000-06-07 19:55:44 +1000726 if (options.xauth_location) {
727 /* Try to get Xauthority information for the display. */
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000728 snprintf(line, sizeof line, "%.100s list %.200s 2>" _PATH_DEVNULL,
Damien Millerd3a18572000-06-07 19:55:44 +1000729 options.xauth_location, getenv("DISPLAY"));
730 f = popen(line, "r");
731 if (f && fgets(line, sizeof(line), f) &&
732 sscanf(line, "%*s %s %s", proto, data) == 2)
733 got_data = 1;
734 if (f)
735 pclose(f);
736 }
Damien Millerbd483e72000-04-30 10:00:53 +1000737 /*
738 * If we didn't get authentication data, just make up some
739 * data. The forwarding code will check the validity of the
740 * response anyway, and substitute this data. The X11
741 * server, however, will ignore this fake data and use
742 * whatever authentication mechanisms it was using otherwise
743 * for the local connection.
744 */
745 if (!got_data) {
746 u_int32_t rand = 0;
747
748 strlcpy(proto, "MIT-MAGIC-COOKIE-1", proto_len);
749 for (i = 0; i < 16; i++) {
750 if (i % 4 == 0)
751 rand = arc4random();
752 snprintf(data + 2 * i, data_len - 2 * i, "%02x", rand & 0xff);
753 rand >>= 8;
754 }
755 }
756}
757
Damien Miller0bc1bd82000-11-13 22:57:25 +1100758void
759ssh_init_forwarding(void)
760{
Kevin Steves12057502001-02-05 14:54:34 +0000761 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100762 int i;
Kevin Steves12057502001-02-05 14:54:34 +0000763
Damien Miller0bc1bd82000-11-13 22:57:25 +1100764 /* Initiate local TCP/IP port forwardings. */
765 for (i = 0; i < options.num_local_forwards; i++) {
766 debug("Connections to local port %d forwarded to remote address %.200s:%d",
767 options.local_forwards[i].port,
768 options.local_forwards[i].host,
769 options.local_forwards[i].host_port);
Kevin Steves12057502001-02-05 14:54:34 +0000770 success += channel_request_local_forwarding(
Damien Miller0bc1bd82000-11-13 22:57:25 +1100771 options.local_forwards[i].port,
772 options.local_forwards[i].host,
773 options.local_forwards[i].host_port,
774 options.gateway_ports);
775 }
Kevin Steves12057502001-02-05 14:54:34 +0000776 if (i > 0 && success == 0)
777 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100778
779 /* Initiate remote TCP/IP port forwardings. */
780 for (i = 0; i < options.num_remote_forwards; i++) {
781 debug("Connections to remote port %d forwarded to local address %.200s:%d",
782 options.remote_forwards[i].port,
783 options.remote_forwards[i].host,
784 options.remote_forwards[i].host_port);
785 channel_request_remote_forwarding(
786 options.remote_forwards[i].port,
787 options.remote_forwards[i].host,
788 options.remote_forwards[i].host_port);
789 }
790}
791
792void
793check_agent_present(void)
794{
795 if (options.forward_agent) {
796 /* Clear agent forwarding if we don\'t have an agent. */
797 int authfd = ssh_get_authentication_socket();
798 if (authfd < 0)
799 options.forward_agent = 0;
800 else
801 ssh_close_authentication_socket(authfd);
802 }
803}
804
Damien Miller1383bd82000-04-06 12:32:37 +1000805int
806ssh_session(void)
807{
808 int type;
Damien Miller1383bd82000-04-06 12:32:37 +1000809 int plen;
810 int interactive = 0;
811 int have_tty = 0;
812 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +1000813 char *cp;
814
Damien Miller95def091999-11-25 00:26:21 +1100815 /* Enable compression if requested. */
816 if (options.compression) {
817 debug("Requesting compression at level %d.", options.compression_level);
818
819 if (options.compression_level < 1 || options.compression_level > 9)
820 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
821
822 /* Send the request. */
823 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
824 packet_put_int(options.compression_level);
825 packet_send();
826 packet_write_wait();
827 type = packet_read(&plen);
828 if (type == SSH_SMSG_SUCCESS)
829 packet_start_compression(options.compression_level);
830 else if (type == SSH_SMSG_FAILURE)
831 log("Warning: Remote host refused compression.");
832 else
833 packet_disconnect("Protocol error waiting for compression response.");
834 }
835 /* Allocate a pseudo tty if appropriate. */
836 if (tty_flag) {
837 debug("Requesting pty.");
838
839 /* Start the packet. */
840 packet_start(SSH_CMSG_REQUEST_PTY);
841
842 /* Store TERM in the packet. There is no limit on the
843 length of the string. */
844 cp = getenv("TERM");
845 if (!cp)
846 cp = "";
847 packet_put_string(cp, strlen(cp));
848
849 /* Store window size in the packet. */
850 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
851 memset(&ws, 0, sizeof(ws));
852 packet_put_int(ws.ws_row);
853 packet_put_int(ws.ws_col);
854 packet_put_int(ws.ws_xpixel);
855 packet_put_int(ws.ws_ypixel);
856
857 /* Store tty modes in the packet. */
858 tty_make_modes(fileno(stdin));
859
860 /* Send the packet, and wait for it to leave. */
861 packet_send();
862 packet_write_wait();
863
864 /* Read response from the server. */
865 type = packet_read(&plen);
Damien Miller450a7a12000-03-26 13:04:51 +1000866 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100867 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000868 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +1000869 } else if (type == SSH_SMSG_FAILURE)
Damien Miller95def091999-11-25 00:26:21 +1100870 log("Warning: Remote host failed or refused to allocate a pseudo tty.");
871 else
872 packet_disconnect("Protocol error waiting for pty request response.");
873 }
874 /* Request X11 forwarding if enabled and DISPLAY is set. */
875 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +1000876 char proto[512], data[512];
877 /* Get reasonable local authentication information. */
878 x11_get_proto(proto, sizeof proto, data, sizeof data);
879 /* Request forwarding with authentication spoofing. */
Damien Miller95def091999-11-25 00:26:21 +1100880 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Millerbd483e72000-04-30 10:00:53 +1000881 x11_request_forwarding_with_spoofing(0, proto, data);
Damien Miller95def091999-11-25 00:26:21 +1100882
883 /* Read response from the server. */
884 type = packet_read(&plen);
885 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100886 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000887 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller95def091999-11-25 00:26:21 +1100888 log("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +1000889 } else {
Damien Miller95def091999-11-25 00:26:21 +1100890 packet_disconnect("Protocol error waiting for X11 forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +1000891 }
Damien Miller95def091999-11-25 00:26:21 +1100892 }
893 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000894 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +1100895
896 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100897 check_agent_present();
898
Damien Miller95def091999-11-25 00:26:21 +1100899 if (options.forward_agent) {
900 debug("Requesting authentication agent forwarding.");
901 auth_request_forwarding();
902
903 /* Read response from the server. */
904 type = packet_read(&plen);
905 packet_integrity_check(plen, 0, type);
906 if (type != SSH_SMSG_SUCCESS)
907 log("Warning: Remote host denied authentication agent forwarding.");
908 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000909
Damien Miller0bc1bd82000-11-13 22:57:25 +1100910 /* Initiate port forwardings. */
911 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000912
Damien Miller5428f641999-11-25 11:54:57 +1100913 /* If requested, let ssh continue in the background. */
Damien Miller4af51302000-04-16 11:18:38 +1000914 if (fork_after_authentication_flag)
Damien Miller5428f641999-11-25 11:54:57 +1100915 if (daemon(1, 1) < 0)
916 fatal("daemon() failed: %.200s", strerror(errno));
917
918 /*
919 * If a command was specified on the command line, execute the
920 * command now. Otherwise request the server to start a shell.
921 */
Damien Miller95def091999-11-25 00:26:21 +1100922 if (buffer_len(&command) > 0) {
923 int len = buffer_len(&command);
924 if (len > 900)
925 len = 900;
926 debug("Sending command: %.*s", len, buffer_ptr(&command));
927 packet_start(SSH_CMSG_EXEC_CMD);
928 packet_put_string(buffer_ptr(&command), buffer_len(&command));
929 packet_send();
930 packet_write_wait();
931 } else {
932 debug("Requesting shell.");
933 packet_start(SSH_CMSG_EXEC_SHELL);
934 packet_send();
935 packet_write_wait();
936 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000937
Damien Miller95def091999-11-25 00:26:21 +1100938 /* Enter the interactive session. */
Damien Millerad833b32000-08-23 10:46:23 +1000939 return client_loop(have_tty, tty_flag ? options.escape_char : -1, 0);
Damien Miller1383bd82000-04-06 12:32:37 +1000940}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000941
Damien Miller1383bd82000-04-06 12:32:37 +1000942void
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000943client_subsystem_reply(int type, int plen, void *ctxt)
944{
945 int id, len;
946
947 id = packet_get_int();
948 len = buffer_len(&command);
Ben Lindstrom4040fe12001-03-05 06:52:57 +0000949 if (len > 900)
950 len = 900;
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000951 packet_done();
952 if (type == SSH2_MSG_CHANNEL_FAILURE)
953 fatal("Request for subsystem '%.*s' failed on channel %d",
954 len, buffer_ptr(&command), id);
955}
956
957void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100958ssh_session2_callback(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +1000959{
960 int len;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000961 int interactive = 0;
962
Kevin Stevesadf74cd2001-02-05 14:22:50 +0000963 debug("client_init id %d arg %ld", id, (long)arg);
Damien Miller1383bd82000-04-06 12:32:37 +1000964
Damien Miller1383bd82000-04-06 12:32:37 +1000965 if (tty_flag) {
966 struct winsize ws;
967 char *cp;
968 cp = getenv("TERM");
969 if (!cp)
970 cp = "";
971 /* Store window size in the packet. */
972 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
973 memset(&ws, 0, sizeof(ws));
974
975 channel_request_start(id, "pty-req", 0);
976 packet_put_cstring(cp);
977 packet_put_int(ws.ws_col);
978 packet_put_int(ws.ws_row);
979 packet_put_int(ws.ws_xpixel);
980 packet_put_int(ws.ws_ypixel);
981 packet_put_cstring(""); /* XXX: encode terminal modes */
982 packet_send();
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000983 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000984 /* XXX wait for reply */
985 }
Damien Millerbd483e72000-04-30 10:00:53 +1000986 if (options.forward_x11 &&
987 getenv("DISPLAY") != NULL) {
988 char proto[512], data[512];
989 /* Get reasonable local authentication information. */
990 x11_get_proto(proto, sizeof proto, data, sizeof data);
991 /* Request forwarding with authentication spoofing. */
992 debug("Requesting X11 forwarding with authentication spoofing.");
993 x11_request_forwarding_with_spoofing(id, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000994 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000995 /* XXX wait for reply */
996 }
997
Damien Miller0bc1bd82000-11-13 22:57:25 +1100998 check_agent_present();
999 if (options.forward_agent) {
1000 debug("Requesting authentication agent forwarding.");
1001 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1002 packet_send();
1003 }
1004
Damien Miller1383bd82000-04-06 12:32:37 +10001005 len = buffer_len(&command);
1006 if (len > 0) {
1007 if (len > 900)
1008 len = 900;
Damien Miller832562e2001-01-30 09:30:01 +11001009 if (subsystem_flag) {
1010 debug("Sending subsystem: %.*s", len, buffer_ptr(&command));
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001011 channel_request_start(id, "subsystem", /*want reply*/ 1);
1012 /* register callback for reply */
1013 /* XXX we asume that client_loop has already been called */
1014 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &client_subsystem_reply);
1015 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &client_subsystem_reply);
Damien Miller832562e2001-01-30 09:30:01 +11001016 } else {
1017 debug("Sending command: %.*s", len, buffer_ptr(&command));
1018 channel_request_start(id, "exec", 0);
1019 }
Ben Lindstrom4040fe12001-03-05 06:52:57 +00001020 packet_put_string(buffer_ptr(&command), buffer_len(&command));
Damien Miller1383bd82000-04-06 12:32:37 +10001021 packet_send();
1022 } else {
1023 channel_request(id, "shell", 0);
1024 }
1025 /* channel_callback(id, SSH2_MSG_OPEN_CONFIGMATION, client_init, 0); */
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001026
Damien Miller1383bd82000-04-06 12:32:37 +10001027 /* register different callback, etc. XXX */
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001028 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001029}
1030
1031int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001032ssh_session2_command(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001033{
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001034 int id, window, packetmax;
Damien Millerad833b32000-08-23 10:46:23 +10001035 int in, out, err;
1036
Damien Millercaf6dd62000-08-29 11:33:50 +11001037 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001038 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001039 } else {
1040 in = dup(STDIN_FILENO);
1041 }
1042 out = dup(STDOUT_FILENO);
1043 err = dup(STDERR_FILENO);
1044
1045 if (in < 0 || out < 0 || err < 0)
1046 fatal("dup() in/out/err failed");
1047
Damien Miller69b69aa2000-10-28 14:19:58 +11001048 /* enable nonblocking unless tty */
1049 if (!isatty(in))
1050 set_nonblock(in);
1051 if (!isatty(out))
1052 set_nonblock(out);
1053 if (!isatty(err))
1054 set_nonblock(err);
1055
Damien Millere4340be2000-09-16 13:29:08 +11001056 window = CHAN_SES_WINDOW_DEFAULT;
1057 packetmax = CHAN_SES_PACKET_DEFAULT;
1058 if (!tty_flag) {
Damien Miller1383bd82000-04-06 12:32:37 +10001059 window *= 2;
Damien Millere4340be2000-09-16 13:29:08 +11001060 packetmax *=2;
Damien Miller1383bd82000-04-06 12:32:37 +10001061 }
Damien Miller1383bd82000-04-06 12:32:37 +10001062 id = channel_new(
1063 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001064 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Miller69b69aa2000-10-28 14:19:58 +11001065 xstrdup("client-session"), /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001066
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001067debug("channel_new: %d", id);
1068
Damien Miller1383bd82000-04-06 12:32:37 +10001069 channel_open(id);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001070 channel_register_callback(id, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION,
1071 ssh_session2_callback, (void *)0);
Damien Miller1383bd82000-04-06 12:32:37 +10001072
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001073 return id;
1074}
1075
1076int
1077ssh_session2(void)
1078{
1079 int id;
1080
1081 /* XXX should be pre-session */
1082 ssh_init_forwarding();
1083
1084 id = no_shell_flag ? -1 : ssh_session2_command();
1085
1086 /* If requested, let ssh continue in the background. */
1087 if (fork_after_authentication_flag)
1088 if (daemon(1, 1) < 0)
1089 fatal("daemon() failed: %.200s", strerror(errno));
1090
Damien Millerad833b32000-08-23 10:46:23 +10001091 return client_loop(tty_flag, tty_flag ? options.escape_char : -1, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001092}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001093
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001094void
1095load_public_identity_files(void)
1096{
1097 char *filename;
1098 Key *public;
1099 int i;
1100
1101 for (i = 0; i < options.num_identity_files; i++) {
1102 filename = tilde_expand_filename(options.identity_files[i],
1103 original_real_uid);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001104 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001105 debug("identity file %s type %d", filename,
1106 public ? public->type : -1);
1107 xfree(options.identity_files[i]);
1108 options.identity_files[i] = filename;
1109 options.identity_keys[i] = public;
1110 }
1111}