blob: 294bcf39d0c58b854f8254c8b437a525e7358093 [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 Lindstrom3fcf1a22001-04-08 18:26:59 +000042RCSID("$OpenBSD: ssh.c,v 1.107 2001/04/06 21:00:13 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");
181 fprintf(stderr, " -C Enable compression.\n");
Damien Miller1383bd82000-04-06 12:32:37 +1000182 fprintf(stderr, " -N Do not execute a shell or command.\n");
Damien Miller95def091999-11-25 00:26:21 +1100183 fprintf(stderr, " -g Allow remote hosts to connect to forwarded ports.\n");
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000184 fprintf(stderr, " -1 Force protocol version 1.\n");
185 fprintf(stderr, " -2 Force protocol version 2.\n");
Damien Miller34132e52000-01-14 15:45:46 +1100186 fprintf(stderr, " -4 Use IPv4 only.\n");
187 fprintf(stderr, " -6 Use IPv6 only.\n");
Damien Miller95def091999-11-25 00:26:21 +1100188 fprintf(stderr, " -o 'option' Process the option as if it was read from a configuration file.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100189 fprintf(stderr, " -s Invoke command (mandatory) as SSH2 subsystem.\n");
Damien Miller95def091999-11-25 00:26:21 +1100190 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000191}
192
Damien Miller95def091999-11-25 00:26:21 +1100193/*
194 * Connects to the given host using rsh (or prints an error message and exits
195 * if rsh is not available). This function never returns.
196 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000197void
Damien Miller95def091999-11-25 00:26:21 +1100198rsh_connect(char *host, char *user, Buffer * command)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000199{
Damien Miller95def091999-11-25 00:26:21 +1100200 char *args[10];
201 int i;
202
203 log("Using rsh. WARNING: Connection will not be encrypted.");
204 /* Build argument list for rsh. */
205 i = 0;
206 args[i++] = _PATH_RSH;
207 /* host may have to come after user on some systems */
208 args[i++] = host;
209 if (user) {
210 args[i++] = "-l";
211 args[i++] = user;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000212 }
Damien Miller95def091999-11-25 00:26:21 +1100213 if (buffer_len(command) > 0) {
214 buffer_append(command, "\0", 1);
215 args[i++] = buffer_ptr(command);
216 }
217 args[i++] = NULL;
218 if (debug_flag) {
219 for (i = 0; args[i]; i++) {
220 if (i != 0)
221 fprintf(stderr, " ");
222 fprintf(stderr, "%s", args[i]);
223 }
224 fprintf(stderr, "\n");
225 }
226 execv(_PATH_RSH, args);
227 perror(_PATH_RSH);
228 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000229}
230
Damien Miller0bc1bd82000-11-13 22:57:25 +1100231int ssh_session(void);
232int ssh_session2(void);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000233void load_public_identity_files(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000234
Damien Miller95def091999-11-25 00:26:21 +1100235/*
236 * Main program for the ssh client.
237 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000238int
239main(int ac, char **av)
240{
Damien Miller1383bd82000-04-06 12:32:37 +1000241 int i, opt, optind, exit_status, ok;
Damien Milleraae6c611999-12-06 11:47:28 +1100242 u_short fwd_port, fwd_host_port;
Damien Miller95def091999-11-25 00:26:21 +1100243 char *optarg, *cp, buf[256];
Damien Miller95def091999-11-25 00:26:21 +1100244 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000245 struct passwd *pw;
Damien Miller1383bd82000-04-06 12:32:37 +1000246 int dummy;
Damien Miller95def091999-11-25 00:26:21 +1100247 uid_t original_effective_uid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000248
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000249 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000250 init_rng();
251
Damien Miller5428f641999-11-25 11:54:57 +1100252 /*
253 * Save the original real uid. It will be needed later (uid-swapping
254 * may clobber the real uid).
255 */
Damien Miller95def091999-11-25 00:26:21 +1100256 original_real_uid = getuid();
257 original_effective_uid = geteuid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000258
Damien Miller05dd7952000-10-01 00:42:48 +1100259#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100260 /* If we are installed setuid root be careful to not drop core. */
261 if (original_real_uid != original_effective_uid) {
262 struct rlimit rlim;
263 rlim.rlim_cur = rlim.rlim_max = 0;
264 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
265 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000266 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100267#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000268 /* Get user data. */
269 pw = getpwuid(original_real_uid);
270 if (!pw) {
271 log("You don't exist, go away!");
272 exit(1);
273 }
274 /* Take a copy of the returned structure. */
275 pw = pwcopy(pw);
276
Damien Miller5428f641999-11-25 11:54:57 +1100277 /*
278 * Use uid-swapping to give up root privileges for the duration of
279 * option processing. We will re-instantiate the rights when we are
280 * ready to create the privileged port, and will permanently drop
281 * them when the port has been created (actually, when the connection
282 * has been made, as we may need to create the port several times).
283 */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000284 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000285
Damien Miller5428f641999-11-25 11:54:57 +1100286 /*
287 * Set our umask to something reasonable, as some files are created
288 * with the default umask. This will make them world-readable but
289 * writable only by the owner, which is ok for all files for which we
290 * don't set the modes explicitly.
291 */
Damien Miller95def091999-11-25 00:26:21 +1100292 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000293
Damien Miller95def091999-11-25 00:26:21 +1100294 /* Initialize option structure to indicate that no values have been set. */
295 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000296
Damien Miller95def091999-11-25 00:26:21 +1100297 /* Parse command-line arguments. */
298 host = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000299
Damien Miller95def091999-11-25 00:26:21 +1100300 for (optind = 1; optind < ac; optind++) {
301 if (av[optind][0] != '-') {
302 if (host)
303 break;
304 if ((cp = strchr(av[optind], '@'))) {
Damien Miller4af51302000-04-16 11:18:38 +1000305 if(cp == av[optind])
306 usage();
Damien Miller95def091999-11-25 00:26:21 +1100307 options.user = av[optind];
308 *cp = '\0';
309 host = ++cp;
310 } else
311 host = av[optind];
312 continue;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000313 }
Damien Miller95def091999-11-25 00:26:21 +1100314 opt = av[optind][1];
315 if (!opt)
316 usage();
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000317 if (strchr("eilcmpLRo", opt)) { /* options with arguments */
Damien Miller95def091999-11-25 00:26:21 +1100318 optarg = av[optind] + 2;
319 if (strcmp(optarg, "") == 0) {
320 if (optind >= ac - 1)
321 usage();
322 optarg = av[++optind];
323 }
324 } else {
325 if (av[optind][2])
326 usage();
327 optarg = NULL;
328 }
329 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000330 case '1':
331 options.protocol = SSH_PROTO_1;
332 break;
Damien Miller4af51302000-04-16 11:18:38 +1000333 case '2':
334 options.protocol = SSH_PROTO_2;
335 break;
Damien Miller34132e52000-01-14 15:45:46 +1100336 case '4':
337 IPv4or6 = AF_INET;
338 break;
Damien Miller34132e52000-01-14 15:45:46 +1100339 case '6':
340 IPv4or6 = AF_INET6;
341 break;
Damien Miller95def091999-11-25 00:26:21 +1100342 case 'n':
343 stdin_null_flag = 1;
344 break;
Damien Miller95def091999-11-25 00:26:21 +1100345 case 'f':
346 fork_after_authentication_flag = 1;
347 stdin_null_flag = 1;
348 break;
Damien Miller95def091999-11-25 00:26:21 +1100349 case 'x':
350 options.forward_x11 = 0;
351 break;
Damien Miller95def091999-11-25 00:26:21 +1100352 case 'X':
353 options.forward_x11 = 1;
354 break;
Damien Miller95def091999-11-25 00:26:21 +1100355 case 'g':
356 options.gateway_ports = 1;
357 break;
Damien Miller95def091999-11-25 00:26:21 +1100358 case 'P':
359 options.use_privileged_port = 0;
360 break;
Damien Miller95def091999-11-25 00:26:21 +1100361 case 'a':
362 options.forward_agent = 0;
363 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000364 case 'A':
365 options.forward_agent = 1;
366 break;
Damien Miller95def091999-11-25 00:26:21 +1100367#ifdef AFS
368 case 'k':
369 options.kerberos_tgt_passing = 0;
370 options.afs_token_passing = 0;
371 break;
372#endif
373 case 'i':
374 if (stat(optarg, &st) < 0) {
375 fprintf(stderr, "Warning: Identity file %s does not exist.\n",
Damien Miller0bc1bd82000-11-13 22:57:25 +1100376 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100377 break;
378 }
379 if (options.num_identity_files >= SSH_MAX_IDENTITY_FILES)
380 fatal("Too many identity files specified (max %d)",
Damien Miller0bc1bd82000-11-13 22:57:25 +1100381 SSH_MAX_IDENTITY_FILES);
382 options.identity_files[options.num_identity_files++] = xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100383 break;
Damien Miller95def091999-11-25 00:26:21 +1100384 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000385 if (tty_flag)
386 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100387 tty_flag = 1;
388 break;
Damien Miller95def091999-11-25 00:26:21 +1100389 case 'v':
Damien Millere4340be2000-09-16 13:29:08 +1100390 if (0 == debug_flag) {
391 debug_flag = 1;
392 options.log_level = SYSLOG_LEVEL_DEBUG1;
393 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
394 options.log_level++;
395 break;
396 } else {
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000397 fatal("Too high debugging level.");
Damien Millere4340be2000-09-16 13:29:08 +1100398 }
399 /* fallthrough */
Damien Miller95def091999-11-25 00:26:21 +1100400 case 'V':
Damien Miller225736c2001-02-19 21:51:08 +1100401 fprintf(stderr,
402 "%s, SSH protocols %d.%d/%d.%d, OpenSSL 0x%8.8lx\n",
Damien Miller78928792000-04-12 20:17:38 +1000403 SSH_VERSION,
404 PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1,
Damien Miller225736c2001-02-19 21:51:08 +1100405 PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2,
406 SSLeay());
Damien Miller95def091999-11-25 00:26:21 +1100407 if (opt == 'V')
408 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100409 break;
Damien Miller95def091999-11-25 00:26:21 +1100410 case 'q':
411 options.log_level = SYSLOG_LEVEL_QUIET;
412 break;
Damien Miller95def091999-11-25 00:26:21 +1100413 case 'e':
414 if (optarg[0] == '^' && optarg[2] == 0 &&
Ben Lindstrom46c16222000-12-22 01:43:59 +0000415 (u_char) optarg[1] >= 64 && (u_char) optarg[1] < 128)
416 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100417 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000418 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100419 else if (strcmp(optarg, "none") == 0)
420 options.escape_char = -2;
421 else {
422 fprintf(stderr, "Bad escape character '%s'.\n", optarg);
423 exit(1);
424 }
425 break;
Damien Miller95def091999-11-25 00:26:21 +1100426 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000427 if (ciphers_valid(optarg)) {
428 /* SSH2 only */
429 options.ciphers = xstrdup(optarg);
Damien Miller30c3d422000-05-09 11:02:59 +1000430 options.cipher = SSH_CIPHER_ILLEGAL;
Damien Millereba71ba2000-04-29 23:57:08 +1000431 } else {
432 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100433 options.cipher = cipher_number(optarg);
434 if (options.cipher == -1) {
Damien Millereba71ba2000-04-29 23:57:08 +1000435 fprintf(stderr, "Unknown cipher type '%s'\n", optarg);
436 exit(1);
437 }
Damien Millere39cacc2000-11-29 12:18:44 +1100438 if (options.cipher == SSH_CIPHER_3DES) {
439 options.ciphers = "3des-cbc";
440 } else if (options.cipher == SSH_CIPHER_BLOWFISH) {
441 options.ciphers = "blowfish-cbc";
442 } else {
443 options.ciphers = (char *)-1;
444 }
Damien Miller95def091999-11-25 00:26:21 +1100445 }
446 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000447 case 'm':
448 if (mac_valid(optarg))
449 options.macs = xstrdup(optarg);
450 else {
451 fprintf(stderr, "Unknown mac type '%s'\n", optarg);
452 exit(1);
453 }
454 break;
Damien Miller95def091999-11-25 00:26:21 +1100455 case 'p':
456 options.port = atoi(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100457 break;
Damien Miller95def091999-11-25 00:26:21 +1100458 case 'l':
459 options.user = optarg;
460 break;
Damien Miller95def091999-11-25 00:26:21 +1100461 case 'R':
Damien Miller34132e52000-01-14 15:45:46 +1100462 if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf,
463 &fwd_host_port) != 3 &&
464 sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf,
465 &fwd_host_port) != 3) {
Damien Miller95def091999-11-25 00:26:21 +1100466 fprintf(stderr, "Bad forwarding specification '%s'.\n", optarg);
467 usage();
468 /* NOTREACHED */
469 }
470 add_remote_forward(&options, fwd_port, buf, fwd_host_port);
471 break;
Damien Miller95def091999-11-25 00:26:21 +1100472 case 'L':
Damien Miller34132e52000-01-14 15:45:46 +1100473 if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf,
474 &fwd_host_port) != 3 &&
475 sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf,
476 &fwd_host_port) != 3) {
Damien Miller95def091999-11-25 00:26:21 +1100477 fprintf(stderr, "Bad forwarding specification '%s'.\n", optarg);
478 usage();
479 /* NOTREACHED */
480 }
481 add_local_forward(&options, fwd_port, buf, fwd_host_port);
482 break;
Damien Miller95def091999-11-25 00:26:21 +1100483 case 'C':
484 options.compression = 1;
485 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000486 case 'N':
487 no_shell_flag = 1;
488 no_tty_flag = 1;
489 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000490 case 'T':
491 no_tty_flag = 1;
492 break;
Damien Miller95def091999-11-25 00:26:21 +1100493 case 'o':
494 dummy = 1;
495 if (process_config_line(&options, host ? host : "", optarg,
496 "command-line", 0, &dummy) != 0)
497 exit(1);
498 break;
Damien Miller832562e2001-01-30 09:30:01 +1100499 case 's':
500 subsystem_flag = 1;
501 break;
Damien Miller95def091999-11-25 00:26:21 +1100502 default:
503 usage();
504 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000505 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000506
Damien Miller95def091999-11-25 00:26:21 +1100507 /* Check that we got a host name. */
508 if (!host)
509 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000510
Damien Millercb5e44a2000-09-29 12:12:36 +1100511 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100512 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100513
Damien Miller95def091999-11-25 00:26:21 +1100514 /* Initialize the command to execute on remote host. */
515 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000516
Damien Miller5428f641999-11-25 11:54:57 +1100517 /*
518 * Save the command to execute on the remote host in a buffer. There
519 * is no limit on the length of the command, except by the maximum
520 * packet size. Also sets the tty flag if there is no command.
521 */
Damien Miller95def091999-11-25 00:26:21 +1100522 if (optind == ac) {
523 /* No command specified - execute shell on a tty. */
524 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100525 if (subsystem_flag) {
526 fprintf(stderr, "You must specify a subsystem to invoke.");
527 usage();
528 }
Damien Miller95def091999-11-25 00:26:21 +1100529 } else {
530 /* A command has been specified. Store it into the
531 buffer. */
532 for (i = optind; i < ac; i++) {
533 if (i > optind)
534 buffer_append(&command, " ", 1);
535 buffer_append(&command, av[i], strlen(av[i]));
536 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000537 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000538
Damien Miller95def091999-11-25 00:26:21 +1100539 /* Cannot fork to background if no command. */
Damien Millercaf6dd62000-08-29 11:33:50 +1100540 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
Damien Miller95def091999-11-25 00:26:21 +1100541 fatal("Cannot fork into background without a command to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000542
Damien Miller95def091999-11-25 00:26:21 +1100543 /* Allocate a tty by default if no command specified. */
544 if (buffer_len(&command) == 0)
545 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000546
Ben Lindstromc72745a2000-12-02 19:03:54 +0000547 /* Force no tty*/
548 if (no_tty_flag)
549 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100550 /* Do not allocate a tty if stdin is not a tty. */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000551 if (!isatty(fileno(stdin)) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100552 if (tty_flag)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000553 log("Pseudo-terminal will not be allocated because stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100554 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000555 }
Damien Miller1383bd82000-04-06 12:32:37 +1000556
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000557 /*
558 * Initialize "log" output. Since we are the client all output
559 * actually goes to stderr.
560 */
561 log_init(av[0], SYSLOG_LEVEL_INFO, SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000562
Damien Miller95def091999-11-25 00:26:21 +1100563 /* Read per-user configuration file. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000564 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, _PATH_SSH_USER_CONFFILE);
Damien Miller95def091999-11-25 00:26:21 +1100565 read_config_file(buf, host, &options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000566
Damien Miller95def091999-11-25 00:26:21 +1100567 /* Read systemwide configuration file. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000568 read_config_file(_PATH_HOST_CONFIG_FILE, host, &options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000569
Damien Miller95def091999-11-25 00:26:21 +1100570 /* Fill configuration defaults. */
571 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000572
Damien Miller95def091999-11-25 00:26:21 +1100573 /* reinit */
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000574 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000575
Damien Miller60bc5172001-03-19 09:38:15 +1100576 seed_rng();
577
Damien Miller95def091999-11-25 00:26:21 +1100578 if (options.user == NULL)
579 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000580
Damien Miller95def091999-11-25 00:26:21 +1100581 if (options.hostname != NULL)
582 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000583
Damien Miller95def091999-11-25 00:26:21 +1100584 /* Disable rhosts authentication if not running as root. */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100585#ifdef HAVE_CYGWIN
586 /* Ignore uid if running under Windows */
587 if (!options.use_privileged_port) {
588#else
Damien Miller95def091999-11-25 00:26:21 +1100589 if (original_effective_uid != 0 || !options.use_privileged_port) {
Damien Millerbac2d8a2000-09-05 16:13:06 +1100590#endif
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000591 debug("Rhosts Authentication disabled, "
592 "originating port will not be trusted.");
Damien Miller95def091999-11-25 00:26:21 +1100593 options.rhosts_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100594 }
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000595
Damien Miller5428f641999-11-25 11:54:57 +1100596 /*
597 * If using rsh has been selected, exec it now (without trying
598 * anything else). Note that we must release privileges first.
599 */
Damien Miller95def091999-11-25 00:26:21 +1100600 if (options.use_rsh) {
Damien Miller5428f641999-11-25 11:54:57 +1100601 /*
602 * Restore our superuser privileges. This must be done
603 * before permanently setting the uid.
604 */
Damien Miller95def091999-11-25 00:26:21 +1100605 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000606
Damien Miller95def091999-11-25 00:26:21 +1100607 /* Switch to the original uid permanently. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000608 permanently_set_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000609
Damien Miller95def091999-11-25 00:26:21 +1100610 /* Execute rsh. */
611 rsh_connect(host, options.user, &command);
612 fatal("rsh_connect returned");
613 }
614 /* Restore our superuser privileges. */
615 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000616
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000617 /* Open a connection to the remote host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000618
Damien Miller95def091999-11-25 00:26:21 +1100619 ok = ssh_connect(host, &hostaddr, options.port,
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000620 options.connection_attempts,
621 original_effective_uid != 0 || !options.use_privileged_port,
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000622 pw, options.proxy_command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000623
Damien Miller5428f641999-11-25 11:54:57 +1100624 /*
625 * If we successfully made the connection, load the host private key
626 * in case we will need it later for combined rsa-rhosts
627 * authentication. This must be done before releasing extra
628 * privileges, because the file is only readable by root.
629 */
Damien Millereba71ba2000-04-29 23:57:08 +1000630 if (ok && (options.protocol & SSH_PROTO_1)) {
Ben Lindstromd0fca422001-03-26 13:44:06 +0000631 host_private_key = key_load_private_type(KEY_RSA1,
632 _PATH_HOST_KEY_FILE, "", NULL);
Damien Miller95def091999-11-25 00:26:21 +1100633 }
Damien Miller5428f641999-11-25 11:54:57 +1100634 /*
635 * Get rid of any extra privileges that we may have. We will no
636 * longer need them. Also, extra privileges could make it very hard
637 * to read identity files and other non-world-readable files from the
638 * user's home directory if it happens to be on a NFS volume where
639 * root is mapped to nobody.
640 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000641
Damien Miller5428f641999-11-25 11:54:57 +1100642 /*
643 * Note that some legacy systems need to postpone the following call
644 * to permanently_set_uid() until the private hostkey is destroyed
645 * with RSA_free(). Otherwise the calling user could ptrace() the
646 * process, read the private hostkey and impersonate the host.
647 * OpenBSD does not allow ptracing of setuid processes.
648 */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000649 permanently_set_uid(pw);
Damien Miller95def091999-11-25 00:26:21 +1100650
Damien Miller5428f641999-11-25 11:54:57 +1100651 /*
652 * Now that we are back to our own permissions, create ~/.ssh
653 * directory if it doesn\'t already exist.
654 */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000655 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, _PATH_SSH_USER_DIR);
Damien Miller95def091999-11-25 00:26:21 +1100656 if (stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000657 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100658 error("Could not create directory '%.200s'.", buf);
659
660 /* Check if the connection failed, and try "rsh" if appropriate. */
661 if (!ok) {
662 if (options.port != 0)
Damien Milleraae6c611999-12-06 11:47:28 +1100663 log("Secure connection to %.100s on port %hu refused%.100s.",
Damien Miller95def091999-11-25 00:26:21 +1100664 host, options.port,
665 options.fallback_to_rsh ? "; reverting to insecure method" : "");
666 else
667 log("Secure connection to %.100s refused%.100s.", host,
668 options.fallback_to_rsh ? "; reverting to insecure method" : "");
669
670 if (options.fallback_to_rsh) {
671 rsh_connect(host, options.user, &command);
672 fatal("rsh_connect returned");
673 }
674 exit(1);
675 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000676 /* load options.identity_files */
677 load_public_identity_files();
678
679 /* Expand ~ in known host file names. */
680 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100681 options.system_hostfile =
682 tilde_expand_filename(options.system_hostfile, original_real_uid);
683 options.user_hostfile =
684 tilde_expand_filename(options.user_hostfile, original_real_uid);
685 options.system_hostfile2 =
686 tilde_expand_filename(options.system_hostfile2, original_real_uid);
687 options.user_hostfile2 =
688 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100689
690 /* Log into the remote system. This never returns if the login fails. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000691 ssh_login(host_private_key, host, (struct sockaddr *)&hostaddr, pw);
Damien Miller95def091999-11-25 00:26:21 +1100692
693 /* We no longer need the host private key. Clear it now. */
Ben Lindstromd0fca422001-03-26 13:44:06 +0000694 if (host_private_key != NULL)
695 key_free(host_private_key); /* Destroys contents safely */
Damien Miller95def091999-11-25 00:26:21 +1100696
Damien Miller1383bd82000-04-06 12:32:37 +1000697 exit_status = compat20 ? ssh_session2() : ssh_session();
698 packet_close();
699 return exit_status;
700}
701
Damien Millerbd483e72000-04-30 10:00:53 +1000702void
703x11_get_proto(char *proto, int proto_len, char *data, int data_len)
704{
705 char line[512];
706 FILE *f;
707 int got_data = 0, i;
708
Damien Millerd3a18572000-06-07 19:55:44 +1000709 if (options.xauth_location) {
710 /* Try to get Xauthority information for the display. */
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000711 snprintf(line, sizeof line, "%.100s list %.200s 2>" _PATH_DEVNULL,
Damien Millerd3a18572000-06-07 19:55:44 +1000712 options.xauth_location, getenv("DISPLAY"));
713 f = popen(line, "r");
714 if (f && fgets(line, sizeof(line), f) &&
715 sscanf(line, "%*s %s %s", proto, data) == 2)
716 got_data = 1;
717 if (f)
718 pclose(f);
719 }
Damien Millerbd483e72000-04-30 10:00:53 +1000720 /*
721 * If we didn't get authentication data, just make up some
722 * data. The forwarding code will check the validity of the
723 * response anyway, and substitute this data. The X11
724 * server, however, will ignore this fake data and use
725 * whatever authentication mechanisms it was using otherwise
726 * for the local connection.
727 */
728 if (!got_data) {
729 u_int32_t rand = 0;
730
731 strlcpy(proto, "MIT-MAGIC-COOKIE-1", proto_len);
732 for (i = 0; i < 16; i++) {
733 if (i % 4 == 0)
734 rand = arc4random();
735 snprintf(data + 2 * i, data_len - 2 * i, "%02x", rand & 0xff);
736 rand >>= 8;
737 }
738 }
739}
740
Damien Miller0bc1bd82000-11-13 22:57:25 +1100741void
742ssh_init_forwarding(void)
743{
Kevin Steves12057502001-02-05 14:54:34 +0000744 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100745 int i;
Kevin Steves12057502001-02-05 14:54:34 +0000746
Damien Miller0bc1bd82000-11-13 22:57:25 +1100747 /* Initiate local TCP/IP port forwardings. */
748 for (i = 0; i < options.num_local_forwards; i++) {
749 debug("Connections to local port %d forwarded to remote address %.200s:%d",
750 options.local_forwards[i].port,
751 options.local_forwards[i].host,
752 options.local_forwards[i].host_port);
Kevin Steves12057502001-02-05 14:54:34 +0000753 success += channel_request_local_forwarding(
Damien Miller0bc1bd82000-11-13 22:57:25 +1100754 options.local_forwards[i].port,
755 options.local_forwards[i].host,
756 options.local_forwards[i].host_port,
757 options.gateway_ports);
758 }
Kevin Steves12057502001-02-05 14:54:34 +0000759 if (i > 0 && success == 0)
760 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100761
762 /* Initiate remote TCP/IP port forwardings. */
763 for (i = 0; i < options.num_remote_forwards; i++) {
764 debug("Connections to remote port %d forwarded to local address %.200s:%d",
765 options.remote_forwards[i].port,
766 options.remote_forwards[i].host,
767 options.remote_forwards[i].host_port);
768 channel_request_remote_forwarding(
769 options.remote_forwards[i].port,
770 options.remote_forwards[i].host,
771 options.remote_forwards[i].host_port);
772 }
773}
774
775void
776check_agent_present(void)
777{
778 if (options.forward_agent) {
779 /* Clear agent forwarding if we don\'t have an agent. */
780 int authfd = ssh_get_authentication_socket();
781 if (authfd < 0)
782 options.forward_agent = 0;
783 else
784 ssh_close_authentication_socket(authfd);
785 }
786}
787
Damien Miller1383bd82000-04-06 12:32:37 +1000788int
789ssh_session(void)
790{
791 int type;
Damien Miller1383bd82000-04-06 12:32:37 +1000792 int plen;
793 int interactive = 0;
794 int have_tty = 0;
795 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +1000796 char *cp;
797
Damien Miller95def091999-11-25 00:26:21 +1100798 /* Enable compression if requested. */
799 if (options.compression) {
800 debug("Requesting compression at level %d.", options.compression_level);
801
802 if (options.compression_level < 1 || options.compression_level > 9)
803 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
804
805 /* Send the request. */
806 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
807 packet_put_int(options.compression_level);
808 packet_send();
809 packet_write_wait();
810 type = packet_read(&plen);
811 if (type == SSH_SMSG_SUCCESS)
812 packet_start_compression(options.compression_level);
813 else if (type == SSH_SMSG_FAILURE)
814 log("Warning: Remote host refused compression.");
815 else
816 packet_disconnect("Protocol error waiting for compression response.");
817 }
818 /* Allocate a pseudo tty if appropriate. */
819 if (tty_flag) {
820 debug("Requesting pty.");
821
822 /* Start the packet. */
823 packet_start(SSH_CMSG_REQUEST_PTY);
824
825 /* Store TERM in the packet. There is no limit on the
826 length of the string. */
827 cp = getenv("TERM");
828 if (!cp)
829 cp = "";
830 packet_put_string(cp, strlen(cp));
831
832 /* Store window size in the packet. */
833 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
834 memset(&ws, 0, sizeof(ws));
835 packet_put_int(ws.ws_row);
836 packet_put_int(ws.ws_col);
837 packet_put_int(ws.ws_xpixel);
838 packet_put_int(ws.ws_ypixel);
839
840 /* Store tty modes in the packet. */
841 tty_make_modes(fileno(stdin));
842
843 /* Send the packet, and wait for it to leave. */
844 packet_send();
845 packet_write_wait();
846
847 /* Read response from the server. */
848 type = packet_read(&plen);
Damien Miller450a7a12000-03-26 13:04:51 +1000849 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100850 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000851 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +1000852 } else if (type == SSH_SMSG_FAILURE)
Damien Miller95def091999-11-25 00:26:21 +1100853 log("Warning: Remote host failed or refused to allocate a pseudo tty.");
854 else
855 packet_disconnect("Protocol error waiting for pty request response.");
856 }
857 /* Request X11 forwarding if enabled and DISPLAY is set. */
858 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +1000859 char proto[512], data[512];
860 /* Get reasonable local authentication information. */
861 x11_get_proto(proto, sizeof proto, data, sizeof data);
862 /* Request forwarding with authentication spoofing. */
Damien Miller95def091999-11-25 00:26:21 +1100863 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Millerbd483e72000-04-30 10:00:53 +1000864 x11_request_forwarding_with_spoofing(0, proto, data);
Damien Miller95def091999-11-25 00:26:21 +1100865
866 /* Read response from the server. */
867 type = packet_read(&plen);
868 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100869 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000870 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller95def091999-11-25 00:26:21 +1100871 log("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +1000872 } else {
Damien Miller95def091999-11-25 00:26:21 +1100873 packet_disconnect("Protocol error waiting for X11 forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +1000874 }
Damien Miller95def091999-11-25 00:26:21 +1100875 }
876 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000877 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +1100878
879 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100880 check_agent_present();
881
Damien Miller95def091999-11-25 00:26:21 +1100882 if (options.forward_agent) {
883 debug("Requesting authentication agent forwarding.");
884 auth_request_forwarding();
885
886 /* Read response from the server. */
887 type = packet_read(&plen);
888 packet_integrity_check(plen, 0, type);
889 if (type != SSH_SMSG_SUCCESS)
890 log("Warning: Remote host denied authentication agent forwarding.");
891 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000892
Damien Miller0bc1bd82000-11-13 22:57:25 +1100893 /* Initiate port forwardings. */
894 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000895
Damien Miller5428f641999-11-25 11:54:57 +1100896 /* If requested, let ssh continue in the background. */
Damien Miller4af51302000-04-16 11:18:38 +1000897 if (fork_after_authentication_flag)
Damien Miller5428f641999-11-25 11:54:57 +1100898 if (daemon(1, 1) < 0)
899 fatal("daemon() failed: %.200s", strerror(errno));
900
901 /*
902 * If a command was specified on the command line, execute the
903 * command now. Otherwise request the server to start a shell.
904 */
Damien Miller95def091999-11-25 00:26:21 +1100905 if (buffer_len(&command) > 0) {
906 int len = buffer_len(&command);
907 if (len > 900)
908 len = 900;
909 debug("Sending command: %.*s", len, buffer_ptr(&command));
910 packet_start(SSH_CMSG_EXEC_CMD);
911 packet_put_string(buffer_ptr(&command), buffer_len(&command));
912 packet_send();
913 packet_write_wait();
914 } else {
915 debug("Requesting shell.");
916 packet_start(SSH_CMSG_EXEC_SHELL);
917 packet_send();
918 packet_write_wait();
919 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000920
Damien Miller95def091999-11-25 00:26:21 +1100921 /* Enter the interactive session. */
Damien Millerad833b32000-08-23 10:46:23 +1000922 return client_loop(have_tty, tty_flag ? options.escape_char : -1, 0);
Damien Miller1383bd82000-04-06 12:32:37 +1000923}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000924
Damien Miller1383bd82000-04-06 12:32:37 +1000925void
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000926client_subsystem_reply(int type, int plen, void *ctxt)
927{
928 int id, len;
929
930 id = packet_get_int();
931 len = buffer_len(&command);
Ben Lindstrom4040fe12001-03-05 06:52:57 +0000932 if (len > 900)
933 len = 900;
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000934 packet_done();
935 if (type == SSH2_MSG_CHANNEL_FAILURE)
936 fatal("Request for subsystem '%.*s' failed on channel %d",
937 len, buffer_ptr(&command), id);
938}
939
940void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100941ssh_session2_callback(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +1000942{
943 int len;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000944 int interactive = 0;
945
Kevin Stevesadf74cd2001-02-05 14:22:50 +0000946 debug("client_init id %d arg %ld", id, (long)arg);
Damien Miller1383bd82000-04-06 12:32:37 +1000947
Damien Miller1383bd82000-04-06 12:32:37 +1000948 if (tty_flag) {
949 struct winsize ws;
950 char *cp;
951 cp = getenv("TERM");
952 if (!cp)
953 cp = "";
954 /* Store window size in the packet. */
955 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
956 memset(&ws, 0, sizeof(ws));
957
958 channel_request_start(id, "pty-req", 0);
959 packet_put_cstring(cp);
960 packet_put_int(ws.ws_col);
961 packet_put_int(ws.ws_row);
962 packet_put_int(ws.ws_xpixel);
963 packet_put_int(ws.ws_ypixel);
964 packet_put_cstring(""); /* XXX: encode terminal modes */
965 packet_send();
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000966 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000967 /* XXX wait for reply */
968 }
Damien Millerbd483e72000-04-30 10:00:53 +1000969 if (options.forward_x11 &&
970 getenv("DISPLAY") != NULL) {
971 char proto[512], data[512];
972 /* Get reasonable local authentication information. */
973 x11_get_proto(proto, sizeof proto, data, sizeof data);
974 /* Request forwarding with authentication spoofing. */
975 debug("Requesting X11 forwarding with authentication spoofing.");
976 x11_request_forwarding_with_spoofing(id, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000977 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000978 /* XXX wait for reply */
979 }
980
Damien Miller0bc1bd82000-11-13 22:57:25 +1100981 check_agent_present();
982 if (options.forward_agent) {
983 debug("Requesting authentication agent forwarding.");
984 channel_request_start(id, "auth-agent-req@openssh.com", 0);
985 packet_send();
986 }
987
Damien Miller1383bd82000-04-06 12:32:37 +1000988 len = buffer_len(&command);
989 if (len > 0) {
990 if (len > 900)
991 len = 900;
Damien Miller832562e2001-01-30 09:30:01 +1100992 if (subsystem_flag) {
993 debug("Sending subsystem: %.*s", len, buffer_ptr(&command));
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000994 channel_request_start(id, "subsystem", /*want reply*/ 1);
995 /* register callback for reply */
996 /* XXX we asume that client_loop has already been called */
997 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &client_subsystem_reply);
998 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &client_subsystem_reply);
Damien Miller832562e2001-01-30 09:30:01 +1100999 } else {
1000 debug("Sending command: %.*s", len, buffer_ptr(&command));
1001 channel_request_start(id, "exec", 0);
1002 }
Ben Lindstrom4040fe12001-03-05 06:52:57 +00001003 packet_put_string(buffer_ptr(&command), buffer_len(&command));
Damien Miller1383bd82000-04-06 12:32:37 +10001004 packet_send();
1005 } else {
1006 channel_request(id, "shell", 0);
1007 }
1008 /* channel_callback(id, SSH2_MSG_OPEN_CONFIGMATION, client_init, 0); */
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001009
Damien Miller1383bd82000-04-06 12:32:37 +10001010 /* register different callback, etc. XXX */
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001011 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001012}
1013
1014int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001015ssh_session2_command(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001016{
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001017 int id, window, packetmax;
Damien Millerad833b32000-08-23 10:46:23 +10001018 int in, out, err;
1019
Damien Millercaf6dd62000-08-29 11:33:50 +11001020 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001021 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001022 } else {
1023 in = dup(STDIN_FILENO);
1024 }
1025 out = dup(STDOUT_FILENO);
1026 err = dup(STDERR_FILENO);
1027
1028 if (in < 0 || out < 0 || err < 0)
1029 fatal("dup() in/out/err failed");
1030
Damien Miller69b69aa2000-10-28 14:19:58 +11001031 /* enable nonblocking unless tty */
1032 if (!isatty(in))
1033 set_nonblock(in);
1034 if (!isatty(out))
1035 set_nonblock(out);
1036 if (!isatty(err))
1037 set_nonblock(err);
1038
Damien Millere4340be2000-09-16 13:29:08 +11001039 window = CHAN_SES_WINDOW_DEFAULT;
1040 packetmax = CHAN_SES_PACKET_DEFAULT;
1041 if (!tty_flag) {
Damien Miller1383bd82000-04-06 12:32:37 +10001042 window *= 2;
Damien Millere4340be2000-09-16 13:29:08 +11001043 packetmax *=2;
Damien Miller1383bd82000-04-06 12:32:37 +10001044 }
Damien Miller1383bd82000-04-06 12:32:37 +10001045 id = channel_new(
1046 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001047 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Miller69b69aa2000-10-28 14:19:58 +11001048 xstrdup("client-session"), /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001049
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001050debug("channel_new: %d", id);
1051
Damien Miller1383bd82000-04-06 12:32:37 +10001052 channel_open(id);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001053 channel_register_callback(id, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION,
1054 ssh_session2_callback, (void *)0);
Damien Miller1383bd82000-04-06 12:32:37 +10001055
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001056 return id;
1057}
1058
1059int
1060ssh_session2(void)
1061{
1062 int id;
1063
1064 /* XXX should be pre-session */
1065 ssh_init_forwarding();
1066
1067 id = no_shell_flag ? -1 : ssh_session2_command();
1068
1069 /* If requested, let ssh continue in the background. */
1070 if (fork_after_authentication_flag)
1071 if (daemon(1, 1) < 0)
1072 fatal("daemon() failed: %.200s", strerror(errno));
1073
Damien Millerad833b32000-08-23 10:46:23 +10001074 return client_loop(tty_flag, tty_flag ? options.escape_char : -1, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001075}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001076
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001077void
1078load_public_identity_files(void)
1079{
1080 char *filename;
1081 Key *public;
1082 int i;
1083
1084 for (i = 0; i < options.num_identity_files; i++) {
1085 filename = tilde_expand_filename(options.identity_files[i],
1086 original_real_uid);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001087 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001088 debug("identity file %s type %d", filename,
1089 public ? public->type : -1);
1090 xfree(options.identity_files[i]);
1091 options.identity_files[i] = filename;
1092 options.identity_keys[i] = public;
1093 }
1094}