blob: a1bc3994903010037ef25edcff9cf317e66505b9 [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 Lindstrom2b261b92001-04-17 18:14:34 +000042RCSID("$OpenBSD: ssh.c,v 1.116 2001/04/17 12:55:04 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"
Ben Lindstromae8e2d32001-04-14 23:13:02 +000070#include "sshtty.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100071
Damien Miller3f905871999-11-15 17:10:57 +110072#ifdef HAVE___PROGNAME
73extern char *__progname;
Ben Lindstrom49a79c02000-11-17 03:47:20 +000074#else
75char *__progname;
76#endif
Damien Miller3f905871999-11-15 17:10:57 +110077
Damien Miller34132e52000-01-14 15:45:46 +110078/* Flag indicating whether IPv4 or IPv6. This can be set on the command line.
79 Default value is AF_UNSPEC means both IPv4 and IPv6. */
Damien Miller7d80e342000-01-19 14:36:49 +110080#ifdef IPV4_DEFAULT
81int IPv4or6 = AF_INET;
82#else
Damien Miller34132e52000-01-14 15:45:46 +110083int IPv4or6 = AF_UNSPEC;
Damien Miller7d80e342000-01-19 14:36:49 +110084#endif
Damien Miller34132e52000-01-14 15:45:46 +110085
Damien Miller95def091999-11-25 00:26:21 +110086/* Flag indicating whether debug mode is on. This can be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100087int debug_flag = 0;
88
Damien Miller78928792000-04-12 20:17:38 +100089/* Flag indicating whether a tty should be allocated */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100090int tty_flag = 0;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +000091int no_tty_flag = 0;
92int force_tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100093
Damien Miller1383bd82000-04-06 12:32:37 +100094/* don't exec a shell */
95int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +100096
Damien Miller5428f641999-11-25 11:54:57 +110097/*
98 * Flag indicating that nothing should be read from stdin. This can be set
99 * on the command line.
100 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000101int stdin_null_flag = 0;
102
Damien Miller5428f641999-11-25 11:54:57 +1100103/*
104 * Flag indicating that ssh should fork after authentication. This is useful
105 * so that the pasphrase can be entered manually, and then ssh goes to the
106 * background.
107 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000108int fork_after_authentication_flag = 0;
109
Damien Miller5428f641999-11-25 11:54:57 +1100110/*
111 * General data structure for command line options and options configurable
112 * in configuration files. See readconf.h.
113 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000114Options options;
115
Damien Miller5428f641999-11-25 11:54:57 +1100116/*
117 * Name of the host we are connecting to. This is the name given on the
118 * command line, or the HostName specified for the user-supplied name in a
119 * configuration file.
120 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000121char *host;
122
123/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100124struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000125
Damien Miller5428f641999-11-25 11:54:57 +1100126/*
127 * Flag to indicate that we have received a window change signal which has
128 * not yet been processed. This will cause a message indicating the new
129 * window size to be sent to the server a little later. This is volatile
130 * because this is updated in a signal handler.
131 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000132volatile int received_window_change_signal = 0;
133
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000134/* Private host keys. */
135struct {
136 Key **keys;
137 int nkeys;
138} sensitive_data;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000139
140/* Original real UID. */
141uid_t original_real_uid;
142
Damien Miller1383bd82000-04-06 12:32:37 +1000143/* command to be executed */
144Buffer command;
145
Damien Miller832562e2001-01-30 09:30:01 +1100146/* Should we execute a command or invoke a subsystem? */
147int subsystem_flag = 0;
148
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000149/* Prints a help message to the user. This function never returns. */
150
151void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000152usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000153{
Kevin Stevesec84dc12000-12-13 17:45:15 +0000154 fprintf(stderr, "Usage: %s [options] host [command]\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100155 fprintf(stderr, "Options:\n");
156 fprintf(stderr, " -l user Log in using this user name.\n");
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000157 fprintf(stderr, " -n Redirect input from " _PATH_DEVNULL ".\n");
Damien Millerb1715dc2000-05-30 13:44:51 +1000158 fprintf(stderr, " -A Enable authentication agent forwarding.\n");
Damien Miller95def091999-11-25 00:26:21 +1100159 fprintf(stderr, " -a Disable authentication agent forwarding.\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000160#ifdef AFS
Damien Miller95def091999-11-25 00:26:21 +1100161 fprintf(stderr, " -k Disable Kerberos ticket and AFS token forwarding.\n");
162#endif /* AFS */
Kevin Stevesef4eea92001-02-05 12:42:17 +0000163 fprintf(stderr, " -X Enable X11 connection forwarding.\n");
Damien Miller95def091999-11-25 00:26:21 +1100164 fprintf(stderr, " -x Disable X11 connection forwarding.\n");
Ben Lindstrom0ab2a012001-03-05 06:45:21 +0000165 fprintf(stderr, " -i file Identity for public key authentication "
166 "(default: ~/.ssh/identity)\n");
Damien Miller95def091999-11-25 00:26:21 +1100167 fprintf(stderr, " -t Tty; allocate a tty even if command is given.\n");
Damien Miller1383bd82000-04-06 12:32:37 +1000168 fprintf(stderr, " -T Do not allocate a tty.\n");
Damien Miller95def091999-11-25 00:26:21 +1100169 fprintf(stderr, " -v Verbose; display verbose debugging messages.\n");
Damien Millere4340be2000-09-16 13:29:08 +1100170 fprintf(stderr, " Multiple -v increases verbosity.\n");
Damien Miller95def091999-11-25 00:26:21 +1100171 fprintf(stderr, " -V Display version number only.\n");
172 fprintf(stderr, " -P Don't allocate a privileged port.\n");
173 fprintf(stderr, " -q Quiet; don't display any warning messages.\n");
174 fprintf(stderr, " -f Fork into background after authentication.\n");
175 fprintf(stderr, " -e char Set escape character; ``none'' = disable (default: ~).\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000176
Damien Miller95def091999-11-25 00:26:21 +1100177 fprintf(stderr, " -c cipher Select encryption algorithm: "
Ben Lindstrom0ab2a012001-03-05 06:45:21 +0000178 "``3des'', ``blowfish''\n");
Ben Lindstrom3d73a342001-03-05 07:39:01 +0000179 fprintf(stderr, " -m macs Specify MAC algorithms for protocol version 2.\n");
Damien Miller95def091999-11-25 00:26:21 +1100180 fprintf(stderr, " -p port Connect to this port. Server must be on the same port.\n");
181 fprintf(stderr, " -L listen-port:host:port Forward local port to remote address\n");
182 fprintf(stderr, " -R listen-port:host:port Forward remote port to local address\n");
Kevin Stevesec84dc12000-12-13 17:45:15 +0000183 fprintf(stderr, " These cause %s to listen for connections on a port, and\n", __progname);
Damien Miller95def091999-11-25 00:26:21 +1100184 fprintf(stderr, " forward them to the other side by connecting to host:port.\n");
185 fprintf(stderr, " -C Enable compression.\n");
Damien Miller1383bd82000-04-06 12:32:37 +1000186 fprintf(stderr, " -N Do not execute a shell or command.\n");
Damien Miller95def091999-11-25 00:26:21 +1100187 fprintf(stderr, " -g Allow remote hosts to connect to forwarded ports.\n");
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000188 fprintf(stderr, " -1 Force protocol version 1.\n");
189 fprintf(stderr, " -2 Force protocol version 2.\n");
Damien Miller34132e52000-01-14 15:45:46 +1100190 fprintf(stderr, " -4 Use IPv4 only.\n");
191 fprintf(stderr, " -6 Use IPv6 only.\n");
Damien Miller95def091999-11-25 00:26:21 +1100192 fprintf(stderr, " -o 'option' Process the option as if it was read from a configuration file.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100193 fprintf(stderr, " -s Invoke command (mandatory) as SSH2 subsystem.\n");
Damien Miller95def091999-11-25 00:26:21 +1100194 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000195}
196
Damien Miller95def091999-11-25 00:26:21 +1100197/*
198 * Connects to the given host using rsh (or prints an error message and exits
199 * if rsh is not available). This function never returns.
200 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000201void
Damien Miller95def091999-11-25 00:26:21 +1100202rsh_connect(char *host, char *user, Buffer * command)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000203{
Damien Miller95def091999-11-25 00:26:21 +1100204 char *args[10];
205 int i;
206
207 log("Using rsh. WARNING: Connection will not be encrypted.");
208 /* Build argument list for rsh. */
209 i = 0;
210 args[i++] = _PATH_RSH;
211 /* host may have to come after user on some systems */
212 args[i++] = host;
213 if (user) {
214 args[i++] = "-l";
215 args[i++] = user;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000216 }
Damien Miller95def091999-11-25 00:26:21 +1100217 if (buffer_len(command) > 0) {
218 buffer_append(command, "\0", 1);
219 args[i++] = buffer_ptr(command);
220 }
221 args[i++] = NULL;
222 if (debug_flag) {
223 for (i = 0; args[i]; i++) {
224 if (i != 0)
225 fprintf(stderr, " ");
226 fprintf(stderr, "%s", args[i]);
227 }
228 fprintf(stderr, "\n");
229 }
230 execv(_PATH_RSH, args);
231 perror(_PATH_RSH);
232 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000233}
234
Damien Miller0bc1bd82000-11-13 22:57:25 +1100235int ssh_session(void);
236int ssh_session2(void);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000237void load_public_identity_files(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000238
Damien Miller95def091999-11-25 00:26:21 +1100239/*
240 * Main program for the ssh client.
241 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000242int
243main(int ac, char **av)
244{
Damien Miller1383bd82000-04-06 12:32:37 +1000245 int i, opt, optind, exit_status, ok;
Damien Milleraae6c611999-12-06 11:47:28 +1100246 u_short fwd_port, fwd_host_port;
Ben Lindstrom19066a12001-04-12 23:39:26 +0000247 char *optarg, *cp, buf[256];
Damien Miller95def091999-11-25 00:26:21 +1100248 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000249 struct passwd *pw;
Damien Miller1383bd82000-04-06 12:32:37 +1000250 int dummy;
Damien Miller95def091999-11-25 00:26:21 +1100251 uid_t original_effective_uid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000252
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000253 __progname = get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000254 init_rng();
255
Damien Miller5428f641999-11-25 11:54:57 +1100256 /*
257 * Save the original real uid. It will be needed later (uid-swapping
258 * may clobber the real uid).
259 */
Damien Miller95def091999-11-25 00:26:21 +1100260 original_real_uid = getuid();
261 original_effective_uid = geteuid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000262
Damien Miller05dd7952000-10-01 00:42:48 +1100263#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100264 /* If we are installed setuid root be careful to not drop core. */
265 if (original_real_uid != original_effective_uid) {
266 struct rlimit rlim;
267 rlim.rlim_cur = rlim.rlim_max = 0;
268 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
269 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000270 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100271#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000272 /* Get user data. */
273 pw = getpwuid(original_real_uid);
274 if (!pw) {
275 log("You don't exist, go away!");
276 exit(1);
277 }
278 /* Take a copy of the returned structure. */
279 pw = pwcopy(pw);
280
Damien Miller5428f641999-11-25 11:54:57 +1100281 /*
282 * Use uid-swapping to give up root privileges for the duration of
283 * option processing. We will re-instantiate the rights when we are
284 * ready to create the privileged port, and will permanently drop
285 * them when the port has been created (actually, when the connection
286 * has been made, as we may need to create the port several times).
287 */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000288 temporarily_use_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000289
Damien Miller5428f641999-11-25 11:54:57 +1100290 /*
291 * Set our umask to something reasonable, as some files are created
292 * with the default umask. This will make them world-readable but
293 * writable only by the owner, which is ok for all files for which we
294 * don't set the modes explicitly.
295 */
Damien Miller95def091999-11-25 00:26:21 +1100296 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000297
Damien Miller95def091999-11-25 00:26:21 +1100298 /* Initialize option structure to indicate that no values have been set. */
299 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000300
Damien Miller95def091999-11-25 00:26:21 +1100301 /* Parse command-line arguments. */
302 host = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000303
Damien Miller95def091999-11-25 00:26:21 +1100304 for (optind = 1; optind < ac; optind++) {
305 if (av[optind][0] != '-') {
306 if (host)
307 break;
308 if ((cp = strchr(av[optind], '@'))) {
Damien Miller4af51302000-04-16 11:18:38 +1000309 if(cp == av[optind])
310 usage();
Damien Miller95def091999-11-25 00:26:21 +1100311 options.user = av[optind];
312 *cp = '\0';
313 host = ++cp;
314 } else
315 host = av[optind];
316 continue;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000317 }
Damien Miller95def091999-11-25 00:26:21 +1100318 opt = av[optind][1];
319 if (!opt)
320 usage();
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000321 if (strchr("eilcmpLRDo", opt)) { /* options with arguments */
Damien Miller95def091999-11-25 00:26:21 +1100322 optarg = av[optind] + 2;
323 if (strcmp(optarg, "") == 0) {
324 if (optind >= ac - 1)
325 usage();
326 optarg = av[++optind];
327 }
328 } else {
329 if (av[optind][2])
330 usage();
331 optarg = NULL;
332 }
333 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000334 case '1':
335 options.protocol = SSH_PROTO_1;
336 break;
Damien Miller4af51302000-04-16 11:18:38 +1000337 case '2':
338 options.protocol = SSH_PROTO_2;
339 break;
Damien Miller34132e52000-01-14 15:45:46 +1100340 case '4':
341 IPv4or6 = AF_INET;
342 break;
Damien Miller34132e52000-01-14 15:45:46 +1100343 case '6':
344 IPv4or6 = AF_INET6;
345 break;
Damien Miller95def091999-11-25 00:26:21 +1100346 case 'n':
347 stdin_null_flag = 1;
348 break;
Damien Miller95def091999-11-25 00:26:21 +1100349 case 'f':
350 fork_after_authentication_flag = 1;
351 stdin_null_flag = 1;
352 break;
Damien Miller95def091999-11-25 00:26:21 +1100353 case 'x':
354 options.forward_x11 = 0;
355 break;
Damien Miller95def091999-11-25 00:26:21 +1100356 case 'X':
357 options.forward_x11 = 1;
358 break;
Damien Miller95def091999-11-25 00:26:21 +1100359 case 'g':
360 options.gateway_ports = 1;
361 break;
Damien Miller95def091999-11-25 00:26:21 +1100362 case 'P':
363 options.use_privileged_port = 0;
364 break;
Damien Miller95def091999-11-25 00:26:21 +1100365 case 'a':
366 options.forward_agent = 0;
367 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000368 case 'A':
369 options.forward_agent = 1;
370 break;
Damien Miller95def091999-11-25 00:26:21 +1100371#ifdef AFS
372 case 'k':
373 options.kerberos_tgt_passing = 0;
374 options.afs_token_passing = 0;
375 break;
376#endif
377 case 'i':
378 if (stat(optarg, &st) < 0) {
379 fprintf(stderr, "Warning: Identity file %s does not exist.\n",
Damien Miller0bc1bd82000-11-13 22:57:25 +1100380 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100381 break;
382 }
383 if (options.num_identity_files >= SSH_MAX_IDENTITY_FILES)
384 fatal("Too many identity files specified (max %d)",
Damien Miller0bc1bd82000-11-13 22:57:25 +1100385 SSH_MAX_IDENTITY_FILES);
386 options.identity_files[options.num_identity_files++] = xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100387 break;
Damien Miller95def091999-11-25 00:26:21 +1100388 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000389 if (tty_flag)
390 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100391 tty_flag = 1;
392 break;
Damien Miller95def091999-11-25 00:26:21 +1100393 case 'v':
Damien Millere4340be2000-09-16 13:29:08 +1100394 if (0 == debug_flag) {
395 debug_flag = 1;
396 options.log_level = SYSLOG_LEVEL_DEBUG1;
397 } else if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
398 options.log_level++;
399 break;
400 } else {
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000401 fatal("Too high debugging level.");
Damien Millere4340be2000-09-16 13:29:08 +1100402 }
403 /* fallthrough */
Damien Miller95def091999-11-25 00:26:21 +1100404 case 'V':
Damien Miller225736c2001-02-19 21:51:08 +1100405 fprintf(stderr,
406 "%s, SSH protocols %d.%d/%d.%d, OpenSSL 0x%8.8lx\n",
Damien Miller78928792000-04-12 20:17:38 +1000407 SSH_VERSION,
408 PROTOCOL_MAJOR_1, PROTOCOL_MINOR_1,
Damien Miller225736c2001-02-19 21:51:08 +1100409 PROTOCOL_MAJOR_2, PROTOCOL_MINOR_2,
410 SSLeay());
Damien Miller95def091999-11-25 00:26:21 +1100411 if (opt == 'V')
412 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100413 break;
Damien Miller95def091999-11-25 00:26:21 +1100414 case 'q':
415 options.log_level = SYSLOG_LEVEL_QUIET;
416 break;
Damien Miller95def091999-11-25 00:26:21 +1100417 case 'e':
418 if (optarg[0] == '^' && optarg[2] == 0 &&
Ben Lindstrom46c16222000-12-22 01:43:59 +0000419 (u_char) optarg[1] >= 64 && (u_char) optarg[1] < 128)
420 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100421 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000422 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100423 else if (strcmp(optarg, "none") == 0)
424 options.escape_char = -2;
425 else {
426 fprintf(stderr, "Bad escape character '%s'.\n", optarg);
427 exit(1);
428 }
429 break;
Damien Miller95def091999-11-25 00:26:21 +1100430 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000431 if (ciphers_valid(optarg)) {
432 /* SSH2 only */
433 options.ciphers = xstrdup(optarg);
Damien Miller30c3d422000-05-09 11:02:59 +1000434 options.cipher = SSH_CIPHER_ILLEGAL;
Damien Millereba71ba2000-04-29 23:57:08 +1000435 } else {
436 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100437 options.cipher = cipher_number(optarg);
438 if (options.cipher == -1) {
Damien Millereba71ba2000-04-29 23:57:08 +1000439 fprintf(stderr, "Unknown cipher type '%s'\n", optarg);
440 exit(1);
441 }
Damien Millere39cacc2000-11-29 12:18:44 +1100442 if (options.cipher == SSH_CIPHER_3DES) {
443 options.ciphers = "3des-cbc";
444 } else if (options.cipher == SSH_CIPHER_BLOWFISH) {
445 options.ciphers = "blowfish-cbc";
446 } else {
447 options.ciphers = (char *)-1;
448 }
Damien Miller95def091999-11-25 00:26:21 +1100449 }
450 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000451 case 'm':
452 if (mac_valid(optarg))
453 options.macs = xstrdup(optarg);
454 else {
455 fprintf(stderr, "Unknown mac type '%s'\n", optarg);
456 exit(1);
457 }
458 break;
Damien Miller95def091999-11-25 00:26:21 +1100459 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000460 options.port = a2port(optarg);
461 if (options.port == 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000462 fprintf(stderr, "Bad port '%s'\n", optarg);
463 exit(1);
464 }
Damien Miller95def091999-11-25 00:26:21 +1100465 break;
Damien Miller95def091999-11-25 00:26:21 +1100466 case 'l':
467 options.user = optarg;
468 break;
Damien Miller95def091999-11-25 00:26:21 +1100469 case 'R':
Damien Miller34132e52000-01-14 15:45:46 +1100470 if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf,
471 &fwd_host_port) != 3 &&
472 sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf,
473 &fwd_host_port) != 3) {
Damien Miller95def091999-11-25 00:26:21 +1100474 fprintf(stderr, "Bad forwarding specification '%s'.\n", optarg);
475 usage();
476 /* NOTREACHED */
477 }
478 add_remote_forward(&options, fwd_port, buf, fwd_host_port);
479 break;
Damien Miller95def091999-11-25 00:26:21 +1100480 case 'L':
Damien Miller34132e52000-01-14 15:45:46 +1100481 if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf,
482 &fwd_host_port) != 3 &&
483 sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf,
484 &fwd_host_port) != 3) {
Damien Miller95def091999-11-25 00:26:21 +1100485 fprintf(stderr, "Bad forwarding specification '%s'.\n", optarg);
486 usage();
487 /* NOTREACHED */
488 }
489 add_local_forward(&options, fwd_port, buf, fwd_host_port);
490 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000491
492 case 'D':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000493 fwd_port = a2port(optarg);
494 if (fwd_port == 0) {
495 fprintf(stderr, "Bad dynamic port '%s'\n", optarg);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000496 exit(1);
497 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000498 add_local_forward(&options, fwd_port, "socks4", 0);
499 break;
500
Damien Miller95def091999-11-25 00:26:21 +1100501 case 'C':
502 options.compression = 1;
503 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000504 case 'N':
505 no_shell_flag = 1;
506 no_tty_flag = 1;
507 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000508 case 'T':
509 no_tty_flag = 1;
510 break;
Damien Miller95def091999-11-25 00:26:21 +1100511 case 'o':
512 dummy = 1;
513 if (process_config_line(&options, host ? host : "", optarg,
514 "command-line", 0, &dummy) != 0)
515 exit(1);
516 break;
Damien Miller832562e2001-01-30 09:30:01 +1100517 case 's':
518 subsystem_flag = 1;
519 break;
Damien Miller95def091999-11-25 00:26:21 +1100520 default:
521 usage();
522 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000523 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000524
Damien Miller95def091999-11-25 00:26:21 +1100525 /* Check that we got a host name. */
526 if (!host)
527 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000528
Damien Millercb5e44a2000-09-29 12:12:36 +1100529 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100530 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100531
Damien Miller95def091999-11-25 00:26:21 +1100532 /* Initialize the command to execute on remote host. */
533 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000534
Damien Miller5428f641999-11-25 11:54:57 +1100535 /*
536 * Save the command to execute on the remote host in a buffer. There
537 * is no limit on the length of the command, except by the maximum
538 * packet size. Also sets the tty flag if there is no command.
539 */
Damien Miller95def091999-11-25 00:26:21 +1100540 if (optind == ac) {
541 /* No command specified - execute shell on a tty. */
542 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100543 if (subsystem_flag) {
Ben Lindstrom92d4a022001-04-13 04:44:37 +0000544 fprintf(stderr, "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100545 usage();
546 }
Damien Miller95def091999-11-25 00:26:21 +1100547 } else {
548 /* A command has been specified. Store it into the
549 buffer. */
550 for (i = optind; i < ac; i++) {
551 if (i > optind)
552 buffer_append(&command, " ", 1);
553 buffer_append(&command, av[i], strlen(av[i]));
554 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000555 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000556
Damien Miller95def091999-11-25 00:26:21 +1100557 /* Cannot fork to background if no command. */
Damien Millercaf6dd62000-08-29 11:33:50 +1100558 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
Damien Miller95def091999-11-25 00:26:21 +1100559 fatal("Cannot fork into background without a command to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000560
Damien Miller95def091999-11-25 00:26:21 +1100561 /* Allocate a tty by default if no command specified. */
562 if (buffer_len(&command) == 0)
563 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000564
Ben Lindstromc72745a2000-12-02 19:03:54 +0000565 /* Force no tty*/
566 if (no_tty_flag)
567 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100568 /* Do not allocate a tty if stdin is not a tty. */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000569 if (!isatty(fileno(stdin)) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100570 if (tty_flag)
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000571 log("Pseudo-terminal will not be allocated because stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100572 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000573 }
Damien Miller1383bd82000-04-06 12:32:37 +1000574
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000575 /*
576 * Initialize "log" output. Since we are the client all output
577 * actually goes to stderr.
578 */
Ben Lindstrom2b646522001-04-12 16:16:57 +0000579 log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
580 SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000581
Damien Miller95def091999-11-25 00:26:21 +1100582 /* Read per-user configuration file. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000583 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, _PATH_SSH_USER_CONFFILE);
Damien Miller95def091999-11-25 00:26:21 +1100584 read_config_file(buf, host, &options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000585
Damien Miller95def091999-11-25 00:26:21 +1100586 /* Read systemwide configuration file. */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000587 read_config_file(_PATH_HOST_CONFIG_FILE, host, &options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000588
Damien Miller95def091999-11-25 00:26:21 +1100589 /* Fill configuration defaults. */
590 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000591
Damien Miller95def091999-11-25 00:26:21 +1100592 /* reinit */
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000593 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000594
Damien Miller60bc5172001-03-19 09:38:15 +1100595 seed_rng();
596
Damien Miller95def091999-11-25 00:26:21 +1100597 if (options.user == NULL)
598 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000599
Damien Miller95def091999-11-25 00:26:21 +1100600 if (options.hostname != NULL)
601 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000602
Damien Miller95def091999-11-25 00:26:21 +1100603 /* Disable rhosts authentication if not running as root. */
Damien Millerbac2d8a2000-09-05 16:13:06 +1100604#ifdef HAVE_CYGWIN
605 /* Ignore uid if running under Windows */
606 if (!options.use_privileged_port) {
607#else
Damien Miller95def091999-11-25 00:26:21 +1100608 if (original_effective_uid != 0 || !options.use_privileged_port) {
Damien Millerbac2d8a2000-09-05 16:13:06 +1100609#endif
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000610 debug("Rhosts Authentication disabled, "
611 "originating port will not be trusted.");
Damien Miller95def091999-11-25 00:26:21 +1100612 options.rhosts_authentication = 0;
Damien Miller95def091999-11-25 00:26:21 +1100613 }
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000614
Damien Miller5428f641999-11-25 11:54:57 +1100615 /*
616 * If using rsh has been selected, exec it now (without trying
617 * anything else). Note that we must release privileges first.
618 */
Damien Miller95def091999-11-25 00:26:21 +1100619 if (options.use_rsh) {
Damien Miller5428f641999-11-25 11:54:57 +1100620 /*
621 * Restore our superuser privileges. This must be done
622 * before permanently setting the uid.
623 */
Damien Miller95def091999-11-25 00:26:21 +1100624 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000625
Damien Miller95def091999-11-25 00:26:21 +1100626 /* Switch to the original uid permanently. */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000627 permanently_set_uid(pw);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000628
Damien Miller95def091999-11-25 00:26:21 +1100629 /* Execute rsh. */
630 rsh_connect(host, options.user, &command);
631 fatal("rsh_connect returned");
632 }
633 /* Restore our superuser privileges. */
634 restore_uid();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000635
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000636 /* Open a connection to the remote host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000637
Damien Miller95def091999-11-25 00:26:21 +1100638 ok = ssh_connect(host, &hostaddr, options.port,
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000639 options.connection_attempts,
640 original_effective_uid != 0 || !options.use_privileged_port,
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000641 pw, options.proxy_command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000642
Damien Miller5428f641999-11-25 11:54:57 +1100643 /*
644 * If we successfully made the connection, load the host private key
645 * in case we will need it later for combined rsa-rhosts
646 * authentication. This must be done before releasing extra
647 * privileges, because the file is only readable by root.
648 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000649 sensitive_data.nkeys = 0;
650 sensitive_data.keys = NULL;
651 if (ok && (options.rhosts_rsa_authentication ||
652 options.hostbased_authentication)) {
653 sensitive_data.nkeys = 3;
654 sensitive_data.keys = xmalloc(sensitive_data.nkeys*sizeof(Key));
655 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Ben Lindstromd0fca422001-03-26 13:44:06 +0000656 _PATH_HOST_KEY_FILE, "", NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000657 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
658 _PATH_HOST_DSA_KEY_FILE, "", NULL);
659 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
660 _PATH_HOST_RSA_KEY_FILE, "", NULL);
Damien Miller95def091999-11-25 00:26:21 +1100661 }
Damien Miller5428f641999-11-25 11:54:57 +1100662 /*
663 * Get rid of any extra privileges that we may have. We will no
664 * longer need them. Also, extra privileges could make it very hard
665 * to read identity files and other non-world-readable files from the
666 * user's home directory if it happens to be on a NFS volume where
667 * root is mapped to nobody.
668 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000669
Damien Miller5428f641999-11-25 11:54:57 +1100670 /*
671 * Note that some legacy systems need to postpone the following call
672 * to permanently_set_uid() until the private hostkey is destroyed
673 * with RSA_free(). Otherwise the calling user could ptrace() the
674 * process, read the private hostkey and impersonate the host.
675 * OpenBSD does not allow ptracing of setuid processes.
676 */
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000677 permanently_set_uid(pw);
Damien Miller95def091999-11-25 00:26:21 +1100678
Damien Miller5428f641999-11-25 11:54:57 +1100679 /*
680 * Now that we are back to our own permissions, create ~/.ssh
681 * directory if it doesn\'t already exist.
682 */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000683 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, _PATH_SSH_USER_DIR);
Damien Miller95def091999-11-25 00:26:21 +1100684 if (stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000685 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100686 error("Could not create directory '%.200s'.", buf);
687
688 /* Check if the connection failed, and try "rsh" if appropriate. */
689 if (!ok) {
690 if (options.port != 0)
Damien Milleraae6c611999-12-06 11:47:28 +1100691 log("Secure connection to %.100s on port %hu refused%.100s.",
Damien Miller95def091999-11-25 00:26:21 +1100692 host, options.port,
693 options.fallback_to_rsh ? "; reverting to insecure method" : "");
694 else
695 log("Secure connection to %.100s refused%.100s.", host,
696 options.fallback_to_rsh ? "; reverting to insecure method" : "");
697
698 if (options.fallback_to_rsh) {
699 rsh_connect(host, options.user, &command);
700 fatal("rsh_connect returned");
701 }
702 exit(1);
703 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000704 /* load options.identity_files */
705 load_public_identity_files();
706
707 /* Expand ~ in known host file names. */
708 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100709 options.system_hostfile =
710 tilde_expand_filename(options.system_hostfile, original_real_uid);
711 options.user_hostfile =
712 tilde_expand_filename(options.user_hostfile, original_real_uid);
713 options.system_hostfile2 =
714 tilde_expand_filename(options.system_hostfile2, original_real_uid);
715 options.user_hostfile2 =
716 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100717
718 /* Log into the remote system. This never returns if the login fails. */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000719 ssh_login(sensitive_data.keys, sensitive_data.nkeys,
720 host, (struct sockaddr *)&hostaddr, pw);
Damien Miller95def091999-11-25 00:26:21 +1100721
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000722 /* We no longer need the private host keys. Clear them now. */
723 if (sensitive_data.nkeys != 0) {
724 for (i = 0; i < sensitive_data.nkeys; i++) {
725 if (sensitive_data.keys[i] != NULL) {
726 /* Destroys contents safely */
727 debug3("clear hostkey %d", i);
728 key_free(sensitive_data.keys[i]);
729 sensitive_data.keys[i] = NULL;
730 }
731 }
732 xfree(sensitive_data.keys);
733 }
Damien Miller95def091999-11-25 00:26:21 +1100734
Damien Miller1383bd82000-04-06 12:32:37 +1000735 exit_status = compat20 ? ssh_session2() : ssh_session();
736 packet_close();
737 return exit_status;
738}
739
Damien Millerbd483e72000-04-30 10:00:53 +1000740void
741x11_get_proto(char *proto, int proto_len, char *data, int data_len)
742{
743 char line[512];
744 FILE *f;
745 int got_data = 0, i;
746
Damien Millerd3a18572000-06-07 19:55:44 +1000747 if (options.xauth_location) {
748 /* Try to get Xauthority information for the display. */
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000749 snprintf(line, sizeof line, "%.100s list %.200s 2>" _PATH_DEVNULL,
Damien Millerd3a18572000-06-07 19:55:44 +1000750 options.xauth_location, getenv("DISPLAY"));
751 f = popen(line, "r");
752 if (f && fgets(line, sizeof(line), f) &&
753 sscanf(line, "%*s %s %s", proto, data) == 2)
754 got_data = 1;
755 if (f)
756 pclose(f);
757 }
Damien Millerbd483e72000-04-30 10:00:53 +1000758 /*
759 * If we didn't get authentication data, just make up some
760 * data. The forwarding code will check the validity of the
761 * response anyway, and substitute this data. The X11
762 * server, however, will ignore this fake data and use
763 * whatever authentication mechanisms it was using otherwise
764 * for the local connection.
765 */
766 if (!got_data) {
767 u_int32_t rand = 0;
768
769 strlcpy(proto, "MIT-MAGIC-COOKIE-1", proto_len);
770 for (i = 0; i < 16; i++) {
771 if (i % 4 == 0)
772 rand = arc4random();
773 snprintf(data + 2 * i, data_len - 2 * i, "%02x", rand & 0xff);
774 rand >>= 8;
775 }
776 }
777}
778
Damien Miller0bc1bd82000-11-13 22:57:25 +1100779void
780ssh_init_forwarding(void)
781{
Kevin Steves12057502001-02-05 14:54:34 +0000782 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100783 int i;
Kevin Steves12057502001-02-05 14:54:34 +0000784
Damien Miller0bc1bd82000-11-13 22:57:25 +1100785 /* Initiate local TCP/IP port forwardings. */
786 for (i = 0; i < options.num_local_forwards; i++) {
787 debug("Connections to local port %d forwarded to remote address %.200s:%d",
788 options.local_forwards[i].port,
789 options.local_forwards[i].host,
790 options.local_forwards[i].host_port);
Kevin Steves12057502001-02-05 14:54:34 +0000791 success += channel_request_local_forwarding(
Damien Miller0bc1bd82000-11-13 22:57:25 +1100792 options.local_forwards[i].port,
793 options.local_forwards[i].host,
794 options.local_forwards[i].host_port,
795 options.gateway_ports);
796 }
Kevin Steves12057502001-02-05 14:54:34 +0000797 if (i > 0 && success == 0)
798 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100799
800 /* Initiate remote TCP/IP port forwardings. */
801 for (i = 0; i < options.num_remote_forwards; i++) {
802 debug("Connections to remote port %d forwarded to local address %.200s:%d",
803 options.remote_forwards[i].port,
804 options.remote_forwards[i].host,
805 options.remote_forwards[i].host_port);
806 channel_request_remote_forwarding(
807 options.remote_forwards[i].port,
808 options.remote_forwards[i].host,
809 options.remote_forwards[i].host_port);
810 }
811}
812
813void
814check_agent_present(void)
815{
816 if (options.forward_agent) {
817 /* Clear agent forwarding if we don\'t have an agent. */
818 int authfd = ssh_get_authentication_socket();
819 if (authfd < 0)
820 options.forward_agent = 0;
821 else
822 ssh_close_authentication_socket(authfd);
823 }
824}
825
Damien Miller1383bd82000-04-06 12:32:37 +1000826int
827ssh_session(void)
828{
829 int type;
Damien Miller1383bd82000-04-06 12:32:37 +1000830 int plen;
831 int interactive = 0;
832 int have_tty = 0;
833 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +1000834 char *cp;
835
Damien Miller95def091999-11-25 00:26:21 +1100836 /* Enable compression if requested. */
837 if (options.compression) {
838 debug("Requesting compression at level %d.", options.compression_level);
839
840 if (options.compression_level < 1 || options.compression_level > 9)
841 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
842
843 /* Send the request. */
844 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
845 packet_put_int(options.compression_level);
846 packet_send();
847 packet_write_wait();
848 type = packet_read(&plen);
849 if (type == SSH_SMSG_SUCCESS)
850 packet_start_compression(options.compression_level);
851 else if (type == SSH_SMSG_FAILURE)
852 log("Warning: Remote host refused compression.");
853 else
854 packet_disconnect("Protocol error waiting for compression response.");
855 }
856 /* Allocate a pseudo tty if appropriate. */
857 if (tty_flag) {
858 debug("Requesting pty.");
859
860 /* Start the packet. */
861 packet_start(SSH_CMSG_REQUEST_PTY);
862
863 /* Store TERM in the packet. There is no limit on the
864 length of the string. */
865 cp = getenv("TERM");
866 if (!cp)
867 cp = "";
868 packet_put_string(cp, strlen(cp));
869
870 /* Store window size in the packet. */
871 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
872 memset(&ws, 0, sizeof(ws));
873 packet_put_int(ws.ws_row);
874 packet_put_int(ws.ws_col);
875 packet_put_int(ws.ws_xpixel);
876 packet_put_int(ws.ws_ypixel);
877
878 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000879 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +1100880
881 /* Send the packet, and wait for it to leave. */
882 packet_send();
883 packet_write_wait();
884
885 /* Read response from the server. */
886 type = packet_read(&plen);
Damien Miller450a7a12000-03-26 13:04:51 +1000887 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100888 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000889 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +1000890 } else if (type == SSH_SMSG_FAILURE)
Damien Miller95def091999-11-25 00:26:21 +1100891 log("Warning: Remote host failed or refused to allocate a pseudo tty.");
892 else
893 packet_disconnect("Protocol error waiting for pty request response.");
894 }
895 /* Request X11 forwarding if enabled and DISPLAY is set. */
896 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
Damien Millerbd483e72000-04-30 10:00:53 +1000897 char proto[512], data[512];
898 /* Get reasonable local authentication information. */
899 x11_get_proto(proto, sizeof proto, data, sizeof data);
900 /* Request forwarding with authentication spoofing. */
Damien Miller95def091999-11-25 00:26:21 +1100901 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Millerbd483e72000-04-30 10:00:53 +1000902 x11_request_forwarding_with_spoofing(0, proto, data);
Damien Miller95def091999-11-25 00:26:21 +1100903
904 /* Read response from the server. */
905 type = packet_read(&plen);
906 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100907 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000908 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller95def091999-11-25 00:26:21 +1100909 log("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +1000910 } else {
Damien Miller95def091999-11-25 00:26:21 +1100911 packet_disconnect("Protocol error waiting for X11 forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +1000912 }
Damien Miller95def091999-11-25 00:26:21 +1100913 }
914 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000915 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +1100916
917 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100918 check_agent_present();
919
Damien Miller95def091999-11-25 00:26:21 +1100920 if (options.forward_agent) {
921 debug("Requesting authentication agent forwarding.");
922 auth_request_forwarding();
923
924 /* Read response from the server. */
925 type = packet_read(&plen);
926 packet_integrity_check(plen, 0, type);
927 if (type != SSH_SMSG_SUCCESS)
928 log("Warning: Remote host denied authentication agent forwarding.");
929 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000930
Damien Miller0bc1bd82000-11-13 22:57:25 +1100931 /* Initiate port forwardings. */
932 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000933
Damien Miller5428f641999-11-25 11:54:57 +1100934 /* If requested, let ssh continue in the background. */
Damien Miller4af51302000-04-16 11:18:38 +1000935 if (fork_after_authentication_flag)
Damien Miller5428f641999-11-25 11:54:57 +1100936 if (daemon(1, 1) < 0)
937 fatal("daemon() failed: %.200s", strerror(errno));
938
939 /*
940 * If a command was specified on the command line, execute the
941 * command now. Otherwise request the server to start a shell.
942 */
Damien Miller95def091999-11-25 00:26:21 +1100943 if (buffer_len(&command) > 0) {
944 int len = buffer_len(&command);
945 if (len > 900)
946 len = 900;
947 debug("Sending command: %.*s", len, buffer_ptr(&command));
948 packet_start(SSH_CMSG_EXEC_CMD);
949 packet_put_string(buffer_ptr(&command), buffer_len(&command));
950 packet_send();
951 packet_write_wait();
952 } else {
953 debug("Requesting shell.");
954 packet_start(SSH_CMSG_EXEC_SHELL);
955 packet_send();
956 packet_write_wait();
957 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000958
Damien Miller95def091999-11-25 00:26:21 +1100959 /* Enter the interactive session. */
Damien Millerad833b32000-08-23 10:46:23 +1000960 return client_loop(have_tty, tty_flag ? options.escape_char : -1, 0);
Damien Miller1383bd82000-04-06 12:32:37 +1000961}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000962
Damien Miller1383bd82000-04-06 12:32:37 +1000963void
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000964client_subsystem_reply(int type, int plen, void *ctxt)
965{
966 int id, len;
967
968 id = packet_get_int();
969 len = buffer_len(&command);
Ben Lindstrom4040fe12001-03-05 06:52:57 +0000970 if (len > 900)
971 len = 900;
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000972 packet_done();
973 if (type == SSH2_MSG_CHANNEL_FAILURE)
974 fatal("Request for subsystem '%.*s' failed on channel %d",
975 len, buffer_ptr(&command), id);
976}
977
978void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100979ssh_session2_callback(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +1000980{
981 int len;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000982 int interactive = 0;
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000983 struct termios tio;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000984
Kevin Stevesadf74cd2001-02-05 14:22:50 +0000985 debug("client_init id %d arg %ld", id, (long)arg);
Damien Miller1383bd82000-04-06 12:32:37 +1000986
Damien Miller1383bd82000-04-06 12:32:37 +1000987 if (tty_flag) {
988 struct winsize ws;
989 char *cp;
990 cp = getenv("TERM");
991 if (!cp)
992 cp = "";
993 /* Store window size in the packet. */
994 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
995 memset(&ws, 0, sizeof(ws));
996
997 channel_request_start(id, "pty-req", 0);
998 packet_put_cstring(cp);
999 packet_put_int(ws.ws_col);
1000 packet_put_int(ws.ws_row);
1001 packet_put_int(ws.ws_xpixel);
1002 packet_put_int(ws.ws_ypixel);
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001003 tio = get_saved_tio();
1004 tty_make_modes(/*ignored*/ 0, &tio);
Damien Miller1383bd82000-04-06 12:32:37 +10001005 packet_send();
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001006 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001007 /* XXX wait for reply */
1008 }
Damien Millerbd483e72000-04-30 10:00:53 +10001009 if (options.forward_x11 &&
1010 getenv("DISPLAY") != NULL) {
1011 char proto[512], data[512];
1012 /* Get reasonable local authentication information. */
1013 x11_get_proto(proto, sizeof proto, data, sizeof data);
1014 /* Request forwarding with authentication spoofing. */
1015 debug("Requesting X11 forwarding with authentication spoofing.");
1016 x11_request_forwarding_with_spoofing(id, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001017 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001018 /* XXX wait for reply */
1019 }
1020
Damien Miller0bc1bd82000-11-13 22:57:25 +11001021 check_agent_present();
1022 if (options.forward_agent) {
1023 debug("Requesting authentication agent forwarding.");
1024 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1025 packet_send();
1026 }
1027
Damien Miller1383bd82000-04-06 12:32:37 +10001028 len = buffer_len(&command);
1029 if (len > 0) {
1030 if (len > 900)
1031 len = 900;
Damien Miller832562e2001-01-30 09:30:01 +11001032 if (subsystem_flag) {
1033 debug("Sending subsystem: %.*s", len, buffer_ptr(&command));
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001034 channel_request_start(id, "subsystem", /*want reply*/ 1);
1035 /* register callback for reply */
1036 /* XXX we asume that client_loop has already been called */
1037 dispatch_set(SSH2_MSG_CHANNEL_FAILURE, &client_subsystem_reply);
1038 dispatch_set(SSH2_MSG_CHANNEL_SUCCESS, &client_subsystem_reply);
Damien Miller832562e2001-01-30 09:30:01 +11001039 } else {
1040 debug("Sending command: %.*s", len, buffer_ptr(&command));
1041 channel_request_start(id, "exec", 0);
1042 }
Ben Lindstrom4040fe12001-03-05 06:52:57 +00001043 packet_put_string(buffer_ptr(&command), buffer_len(&command));
Damien Miller1383bd82000-04-06 12:32:37 +10001044 packet_send();
1045 } else {
1046 channel_request(id, "shell", 0);
1047 }
1048 /* channel_callback(id, SSH2_MSG_OPEN_CONFIGMATION, client_init, 0); */
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001049
Damien Miller1383bd82000-04-06 12:32:37 +10001050 /* register different callback, etc. XXX */
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001051 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001052}
1053
1054int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001055ssh_session2_command(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001056{
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001057 int id, window, packetmax;
Damien Millerad833b32000-08-23 10:46:23 +10001058 int in, out, err;
1059
Damien Millercaf6dd62000-08-29 11:33:50 +11001060 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001061 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001062 } else {
1063 in = dup(STDIN_FILENO);
1064 }
1065 out = dup(STDOUT_FILENO);
1066 err = dup(STDERR_FILENO);
1067
1068 if (in < 0 || out < 0 || err < 0)
1069 fatal("dup() in/out/err failed");
1070
Damien Miller69b69aa2000-10-28 14:19:58 +11001071 /* enable nonblocking unless tty */
1072 if (!isatty(in))
1073 set_nonblock(in);
1074 if (!isatty(out))
1075 set_nonblock(out);
1076 if (!isatty(err))
1077 set_nonblock(err);
1078
Damien Millere4340be2000-09-16 13:29:08 +11001079 window = CHAN_SES_WINDOW_DEFAULT;
1080 packetmax = CHAN_SES_PACKET_DEFAULT;
1081 if (!tty_flag) {
Damien Miller1383bd82000-04-06 12:32:37 +10001082 window *= 2;
Damien Millere4340be2000-09-16 13:29:08 +11001083 packetmax *=2;
Damien Miller1383bd82000-04-06 12:32:37 +10001084 }
Damien Miller1383bd82000-04-06 12:32:37 +10001085 id = channel_new(
1086 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001087 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Miller69b69aa2000-10-28 14:19:58 +11001088 xstrdup("client-session"), /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001089
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001090debug("channel_new: %d", id);
1091
Damien Miller1383bd82000-04-06 12:32:37 +10001092 channel_open(id);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001093 channel_register_callback(id, SSH2_MSG_CHANNEL_OPEN_CONFIRMATION,
1094 ssh_session2_callback, (void *)0);
Damien Miller1383bd82000-04-06 12:32:37 +10001095
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001096 return id;
1097}
1098
1099int
1100ssh_session2(void)
1101{
1102 int id;
1103
1104 /* XXX should be pre-session */
1105 ssh_init_forwarding();
1106
1107 id = no_shell_flag ? -1 : ssh_session2_command();
1108
1109 /* If requested, let ssh continue in the background. */
1110 if (fork_after_authentication_flag)
1111 if (daemon(1, 1) < 0)
1112 fatal("daemon() failed: %.200s", strerror(errno));
1113
Damien Millerad833b32000-08-23 10:46:23 +10001114 return client_loop(tty_flag, tty_flag ? options.escape_char : -1, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001115}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001116
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001117void
1118load_public_identity_files(void)
1119{
1120 char *filename;
1121 Key *public;
1122 int i;
1123
1124 for (i = 0; i < options.num_identity_files; i++) {
1125 filename = tilde_expand_filename(options.identity_files[i],
1126 original_real_uid);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001127 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001128 debug("identity file %s type %d", filename,
1129 public ? public->type : -1);
1130 xfree(options.identity_files[i]);
1131 options.identity_files[i] = filename;
1132 options.identity_keys[i] = public;
1133 }
1134}