blob: 1f50727e934a839dd192edd9043666a30a964361 [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.
Darren Tucker0a118da2003-10-15 15:54:32 +100016 * Copyright (c) 2000, 2001, 2002, 2003 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110017 *
18 * Modified to work with SSL by Niels Provos <provos@citi.umich.edu>
19 * in Canada (German citizen).
20 *
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
23 * are met:
24 * 1. Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * 2. Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in the
28 * documentation and/or other materials provided with the distribution.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110040 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100041
42#include "includes.h"
Damien Miller3eb48b62005-03-01 21:15:46 +110043RCSID("$OpenBSD: ssh.c,v 1.231 2005/02/16 09:56:44 otto Exp $");
Damien Millereba71ba2000-04-29 23:57:08 +100044
45#include <openssl/evp.h>
Damien Miller0bc1bd82000-11-13 22:57:25 +110046#include <openssl/err.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100047
Damien Millerd4a8b7e1999-10-27 13:42:43 +100048#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000049#include "ssh1.h"
Damien Miller1383bd82000-04-06 12:32:37 +100050#include "ssh2.h"
51#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000052#include "cipher.h"
53#include "xmalloc.h"
54#include "packet.h"
55#include "buffer.h"
Damien Miller0e220db2004-06-15 10:34:08 +100056#include "bufaux.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000057#include "channels.h"
Damien Millereba71ba2000-04-29 23:57:08 +100058#include "key.h"
Damien Miller994cf142000-07-21 10:19:44 +100059#include "authfd.h"
Damien Millereba71ba2000-04-29 23:57:08 +100060#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000061#include "pathnames.h"
Damien Miller0e220db2004-06-15 10:34:08 +100062#include "dispatch.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000063#include "clientloop.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000064#include "log.h"
65#include "readconf.h"
66#include "sshconnect.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"
Darren Tucker06f2bd82004-05-13 16:06:46 +100070#include "sshpty.h"
Darren Tucker46bc0752004-05-02 22:11:30 +100071#include "match.h"
Damien Miller0e220db2004-06-15 10:34:08 +100072#include "msg.h"
73#include "monitor_fdpass.h"
Darren Tucker25f60a72004-08-15 17:23:34 +100074#include "uidswap.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100075
Ben Lindstromc5b68002001-07-04 04:52:03 +000076#ifdef SMARTCARD
Ben Lindstromc5b68002001-07-04 04:52:03 +000077#include "scard.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +000078#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +000079
Damien Miller3f905871999-11-15 17:10:57 +110080extern char *__progname;
Damien Miller3f905871999-11-15 17:10:57 +110081
Damien Miller95def091999-11-25 00:26:21 +110082/* Flag indicating whether debug mode is on. This can be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100083int debug_flag = 0;
84
Damien Miller78928792000-04-12 20:17:38 +100085/* Flag indicating whether a tty should be allocated */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100086int tty_flag = 0;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +000087int no_tty_flag = 0;
88int force_tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100089
Damien Miller1383bd82000-04-06 12:32:37 +100090/* don't exec a shell */
91int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +100092
Damien Miller5428f641999-11-25 11:54:57 +110093/*
94 * Flag indicating that nothing should be read from stdin. This can be set
95 * on the command line.
96 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100097int stdin_null_flag = 0;
98
Damien Miller5428f641999-11-25 11:54:57 +110099/*
100 * Flag indicating that ssh should fork after authentication. This is useful
Ben Lindstromf666fec2002-06-06 19:51:58 +0000101 * so that the passphrase can be entered manually, and then ssh goes to the
Damien Miller5428f641999-11-25 11:54:57 +1100102 * background.
103 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000104int fork_after_authentication_flag = 0;
105
Damien Miller5428f641999-11-25 11:54:57 +1100106/*
107 * General data structure for command line options and options configurable
108 * in configuration files. See readconf.h.
109 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000110Options options;
111
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000112/* optional user configfile */
113char *config = NULL;
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
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000125/* Private host keys. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000126Sensitive sensitive_data;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000127
128/* Original real UID. */
129uid_t original_real_uid;
Ben Lindstromf9c48842002-06-11 16:37:51 +0000130uid_t original_effective_uid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000131
Damien Miller1383bd82000-04-06 12:32:37 +1000132/* command to be executed */
133Buffer command;
134
Damien Miller832562e2001-01-30 09:30:01 +1100135/* Should we execute a command or invoke a subsystem? */
136int subsystem_flag = 0;
137
Damien Miller2797f7f2002-04-23 21:09:44 +1000138/* # of replies received for global requests */
139static int client_global_request_id = 0;
140
Damien Miller8c4e18a2002-09-19 12:05:02 +1000141/* pid of proxycommand child process */
142pid_t proxy_command_pid = 0;
143
Damien Miller0e220db2004-06-15 10:34:08 +1000144/* fd to control socket */
145int control_fd = -1;
146
Darren Tucker7ebfc102004-11-07 20:06:19 +1100147/* Multiplexing control command */
148static u_int mux_command = SSHMUX_COMMAND_OPEN;
149
Damien Miller0e220db2004-06-15 10:34:08 +1000150/* Only used in control client mode */
151volatile sig_atomic_t control_client_terminate = 0;
152u_int control_server_pid = 0;
153
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000154/* Prints a help message to the user. This function never returns. */
155
Ben Lindstrombba81212001-06-25 05:01:22 +0000156static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000157usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000158{
Damien Miller50955102004-03-22 09:34:58 +1100159 fprintf(stderr,
Darren Tucker9c6bf322004-12-03 14:10:19 +1100160"usage: ssh [-1246AaCfgkMNnqsTtVvXxY] [-b bind_address] [-c cipher_spec]\n"
Damien Miller50955102004-03-22 09:34:58 +1100161" [-D port] [-e escape_char] [-F configfile] [-i identity_file]\n"
Darren Tucker9c6bf322004-12-03 14:10:19 +1100162" [-L port:host:hostport] [-l login_name] [-m mac_spec] [-O ctl_cmd]\n"
163" [-o option] [-p port] [-R port:host:hostport] [-S ctl_path]\n"
164" [user@]hostname [command]\n"
Damien Miller50955102004-03-22 09:34:58 +1100165 );
Damien Miller95def091999-11-25 00:26:21 +1100166 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000167}
168
Ben Lindstrombba81212001-06-25 05:01:22 +0000169static int ssh_session(void);
170static int ssh_session2(void);
171static void load_public_identity_files(void);
Damien Miller0e220db2004-06-15 10:34:08 +1000172static void control_client(const char *path);
Damien Miller1383bd82000-04-06 12:32:37 +1000173
Damien Miller95def091999-11-25 00:26:21 +1100174/*
175 * Main program for the ssh client.
176 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000177int
178main(int ac, char **av)
179{
Ben Lindstrom24157572002-06-12 16:09:39 +0000180 int i, opt, exit_status;
Damien Milleraae6c611999-12-06 11:47:28 +1100181 u_short fwd_port, fwd_host_port;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000182 char sfwd_port[6], sfwd_host_port[6];
Damien Miller9836cf82003-12-17 16:30:06 +1100183 char *p, *cp, *line, buf[256];
Damien Miller95def091999-11-25 00:26:21 +1100184 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000185 struct passwd *pw;
Damien Miller1383bd82000-04-06 12:32:37 +1000186 int dummy;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000187 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000188 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000189
Damien Miller59d3d5b2003-08-22 09:34:41 +1000190 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000191 init_rng();
192
Damien Miller5428f641999-11-25 11:54:57 +1100193 /*
194 * Save the original real uid. It will be needed later (uid-swapping
195 * may clobber the real uid).
196 */
Damien Miller95def091999-11-25 00:26:21 +1100197 original_real_uid = getuid();
198 original_effective_uid = geteuid();
Damien Millera8e06ce2003-11-21 23:48:55 +1100199
Damien Miller50b9a602002-09-04 16:50:06 +1000200 /*
201 * Use uid-swapping to give up root privileges for the duration of
202 * option processing. We will re-instantiate the rights when we are
203 * ready to create the privileged port, and will permanently drop
204 * them when the port has been created (actually, when the connection
205 * has been made, as we may need to create the port several times).
206 */
207 PRIV_END;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000208
Damien Miller05dd7952000-10-01 00:42:48 +1100209#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100210 /* If we are installed setuid root be careful to not drop core. */
211 if (original_real_uid != original_effective_uid) {
212 struct rlimit rlim;
213 rlim.rlim_cur = rlim.rlim_max = 0;
214 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
215 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000216 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100217#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000218 /* Get user data. */
219 pw = getpwuid(original_real_uid);
220 if (!pw) {
Damien Miller996acd22003-04-09 20:59:48 +1000221 logit("You don't exist, go away!");
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000222 exit(1);
223 }
224 /* Take a copy of the returned structure. */
225 pw = pwcopy(pw);
226
Damien Miller5428f641999-11-25 11:54:57 +1100227 /*
Damien Miller5428f641999-11-25 11:54:57 +1100228 * Set our umask to something reasonable, as some files are created
229 * with the default umask. This will make them world-readable but
230 * writable only by the owner, which is ok for all files for which we
231 * don't set the modes explicitly.
232 */
Damien Miller95def091999-11-25 00:26:21 +1100233 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000234
Damien Miller95def091999-11-25 00:26:21 +1100235 /* Initialize option structure to indicate that no values have been set. */
236 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000237
Damien Miller95def091999-11-25 00:26:21 +1100238 /* Parse command-line arguments. */
239 host = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000240
Damien Millerf4614452001-07-14 12:18:10 +1000241again:
242 while ((opt = getopt(ac, av,
Darren Tucker7ebfc102004-11-07 20:06:19 +1100243 "1246ab:c:e:fgi:kl:m:no:p:qstvxACD:F:I:L:MNO:PR:S:TVXY")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100244 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000245 case '1':
246 options.protocol = SSH_PROTO_1;
247 break;
Damien Miller4af51302000-04-16 11:18:38 +1000248 case '2':
249 options.protocol = SSH_PROTO_2;
250 break;
Damien Miller34132e52000-01-14 15:45:46 +1100251 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000252 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100253 break;
Damien Miller34132e52000-01-14 15:45:46 +1100254 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000255 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100256 break;
Damien Miller95def091999-11-25 00:26:21 +1100257 case 'n':
258 stdin_null_flag = 1;
259 break;
Damien Miller95def091999-11-25 00:26:21 +1100260 case 'f':
261 fork_after_authentication_flag = 1;
262 stdin_null_flag = 1;
263 break;
Damien Miller95def091999-11-25 00:26:21 +1100264 case 'x':
265 options.forward_x11 = 0;
266 break;
Damien Miller95def091999-11-25 00:26:21 +1100267 case 'X':
268 options.forward_x11 = 1;
269 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000270 case 'Y':
271 options.forward_x11 = 1;
272 options.forward_x11_trusted = 1;
273 break;
Damien Miller95def091999-11-25 00:26:21 +1100274 case 'g':
275 options.gateway_ports = 1;
276 break;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100277 case 'O':
278 if (strcmp(optarg, "check") == 0)
279 mux_command = SSHMUX_COMMAND_ALIVE_CHECK;
280 else if (strcmp(optarg, "exit") == 0)
281 mux_command = SSHMUX_COMMAND_TERMINATE;
282 else
283 fatal("Invalid multiplex command.");
284 break;
Damien Miller147bba32002-09-04 16:46:06 +1000285 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100286 options.use_privileged_port = 0;
287 break;
Damien Miller95def091999-11-25 00:26:21 +1100288 case 'a':
289 options.forward_agent = 0;
290 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000291 case 'A':
292 options.forward_agent = 1;
293 break;
Damien Miller95def091999-11-25 00:26:21 +1100294 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100295 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100296 break;
Damien Miller95def091999-11-25 00:26:21 +1100297 case 'i':
298 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000299 fprintf(stderr, "Warning: Identity file %s "
Damien Miller3eb48b62005-03-01 21:15:46 +1100300 "not accessible: %s.\n", optarg,
301 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100302 break;
303 }
Damien Millerf4614452001-07-14 12:18:10 +1000304 if (options.num_identity_files >=
305 SSH_MAX_IDENTITY_FILES)
306 fatal("Too many identity files specified "
307 "(max %d)", SSH_MAX_IDENTITY_FILES);
308 options.identity_files[options.num_identity_files++] =
309 xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100310 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000311 case 'I':
312#ifdef SMARTCARD
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000313 options.smartcard_device = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000314#else
Ben Lindstromc5b68002001-07-04 04:52:03 +0000315 fprintf(stderr, "no support for smartcards.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000316#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000317 break;
Damien Miller95def091999-11-25 00:26:21 +1100318 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000319 if (tty_flag)
320 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100321 tty_flag = 1;
322 break;
Damien Miller95def091999-11-25 00:26:21 +1100323 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000324 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100325 debug_flag = 1;
326 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000327 } else {
328 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
329 options.log_level++;
Damien Millere4340be2000-09-16 13:29:08 +1100330 break;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000331 }
Darren Tuckere9bf9842004-11-05 20:05:32 +1100332 /* FALLTHROUGH */
Damien Miller95def091999-11-25 00:26:21 +1100333 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100334 fprintf(stderr, "%s, %s\n",
Damien Miller2aa6d3c2004-09-12 16:53:04 +1000335 SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
Damien Miller95def091999-11-25 00:26:21 +1100336 if (opt == 'V')
337 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100338 break;
Damien Miller95def091999-11-25 00:26:21 +1100339 case 'q':
340 options.log_level = SYSLOG_LEVEL_QUIET;
341 break;
Damien Miller95def091999-11-25 00:26:21 +1100342 case 'e':
343 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000344 (u_char) optarg[1] >= 64 &&
345 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000346 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100347 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000348 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100349 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000350 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100351 else {
Damien Millerf4614452001-07-14 12:18:10 +1000352 fprintf(stderr, "Bad escape character '%s'.\n",
353 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100354 exit(1);
355 }
356 break;
Damien Miller95def091999-11-25 00:26:21 +1100357 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000358 if (ciphers_valid(optarg)) {
359 /* SSH2 only */
360 options.ciphers = xstrdup(optarg);
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000361 options.cipher = SSH_CIPHER_INVALID;
Damien Millereba71ba2000-04-29 23:57:08 +1000362 } else {
363 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100364 options.cipher = cipher_number(optarg);
365 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000366 fprintf(stderr,
367 "Unknown cipher type '%s'\n",
368 optarg);
Damien Millereba71ba2000-04-29 23:57:08 +1000369 exit(1);
370 }
Damien Millerf4614452001-07-14 12:18:10 +1000371 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100372 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000373 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100374 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000375 else
Damien Millere39cacc2000-11-29 12:18:44 +1100376 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100377 }
378 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000379 case 'm':
380 if (mac_valid(optarg))
381 options.macs = xstrdup(optarg);
382 else {
Damien Millerf4614452001-07-14 12:18:10 +1000383 fprintf(stderr, "Unknown mac type '%s'\n",
384 optarg);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000385 exit(1);
386 }
387 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000388 case 'M':
Damien Millerb8ea2482004-06-18 22:21:55 +1000389 options.control_master =
390 (options.control_master >= 1) ? 2 : 1;
Damien Miller0e220db2004-06-15 10:34:08 +1000391 break;
Damien Miller95def091999-11-25 00:26:21 +1100392 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000393 options.port = a2port(optarg);
394 if (options.port == 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000395 fprintf(stderr, "Bad port '%s'\n", optarg);
396 exit(1);
397 }
Damien Miller95def091999-11-25 00:26:21 +1100398 break;
Damien Miller95def091999-11-25 00:26:21 +1100399 case 'l':
400 options.user = optarg;
401 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000402
Damien Miller95def091999-11-25 00:26:21 +1100403 case 'L':
Ben Lindstrom1a174712001-09-12 17:56:15 +0000404 case 'R':
Damien Miller1ea71662003-05-14 22:33:58 +1000405 if (sscanf(optarg, "%5[0123456789]:%255[^:]:%5[0123456789]",
Ben Lindstrom1a174712001-09-12 17:56:15 +0000406 sfwd_port, buf, sfwd_host_port) != 3 &&
Damien Miller1ea71662003-05-14 22:33:58 +1000407 sscanf(optarg, "%5[0123456789]/%255[^/]/%5[0123456789]",
Ben Lindstrom1a174712001-09-12 17:56:15 +0000408 sfwd_port, buf, sfwd_host_port) != 3) {
Damien Millerf4614452001-07-14 12:18:10 +1000409 fprintf(stderr,
Ben Lindstrom1a174712001-09-12 17:56:15 +0000410 "Bad forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000411 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100412 usage();
413 /* NOTREACHED */
414 }
Ben Lindstrom1a174712001-09-12 17:56:15 +0000415 if ((fwd_port = a2port(sfwd_port)) == 0 ||
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000416 (fwd_host_port = a2port(sfwd_host_port)) == 0) {
Ben Lindstrom1a174712001-09-12 17:56:15 +0000417 fprintf(stderr,
418 "Bad forwarding port(s) '%s'\n", optarg);
419 exit(1);
420 }
421 if (opt == 'L')
422 add_local_forward(&options, fwd_port, buf,
423 fwd_host_port);
424 else if (opt == 'R')
425 add_remote_forward(&options, fwd_port, buf,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100426 fwd_host_port);
Damien Miller95def091999-11-25 00:26:21 +1100427 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000428
429 case 'D':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000430 fwd_port = a2port(optarg);
431 if (fwd_port == 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000432 fprintf(stderr, "Bad dynamic port '%s'\n",
433 optarg);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000434 exit(1);
435 }
Darren Tucker1c52ee32003-08-13 20:38:36 +1000436 add_local_forward(&options, fwd_port, "socks", 0);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000437 break;
438
Damien Miller95def091999-11-25 00:26:21 +1100439 case 'C':
440 options.compression = 1;
441 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000442 case 'N':
443 no_shell_flag = 1;
444 no_tty_flag = 1;
445 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000446 case 'T':
447 no_tty_flag = 1;
448 break;
Damien Miller95def091999-11-25 00:26:21 +1100449 case 'o':
450 dummy = 1;
Damien Miller9836cf82003-12-17 16:30:06 +1100451 line = xstrdup(optarg);
Damien Millerf4614452001-07-14 12:18:10 +1000452 if (process_config_line(&options, host ? host : "",
Damien Miller9836cf82003-12-17 16:30:06 +1100453 line, "command-line", 0, &dummy) != 0)
Damien Miller95def091999-11-25 00:26:21 +1100454 exit(1);
Damien Miller9836cf82003-12-17 16:30:06 +1100455 xfree(line);
Damien Miller95def091999-11-25 00:26:21 +1100456 break;
Damien Miller832562e2001-01-30 09:30:01 +1100457 case 's':
458 subsystem_flag = 1;
459 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000460 case 'S':
461 if (options.control_path != NULL)
462 free(options.control_path);
463 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000464 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000465 case 'b':
466 options.bind_address = optarg;
467 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000468 case 'F':
469 config = optarg;
470 break;
Damien Miller95def091999-11-25 00:26:21 +1100471 default:
472 usage();
473 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000474 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000475
Damien Millerf4614452001-07-14 12:18:10 +1000476 ac -= optind;
477 av += optind;
478
479 if (ac > 0 && !host && **av != '-') {
Ben Lindstromc276c122002-12-23 02:14:51 +0000480 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000481 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000482 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000483 if (cp == NULL || cp == p)
484 usage();
485 options.user = p;
486 *cp = '\0';
487 host = ++cp;
488 } else
489 host = *av;
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000490 if (ac > 1) {
491 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000492 goto again;
493 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000494 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000495 }
496
Damien Miller95def091999-11-25 00:26:21 +1100497 /* Check that we got a host name. */
498 if (!host)
499 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000500
Damien Millercb5e44a2000-09-29 12:12:36 +1100501 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100502 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100503
Damien Miller95def091999-11-25 00:26:21 +1100504 /* Initialize the command to execute on remote host. */
505 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000506
Damien Miller5428f641999-11-25 11:54:57 +1100507 /*
508 * Save the command to execute on the remote host in a buffer. There
509 * is no limit on the length of the command, except by the maximum
510 * packet size. Also sets the tty flag if there is no command.
511 */
Damien Millerf4614452001-07-14 12:18:10 +1000512 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100513 /* No command specified - execute shell on a tty. */
514 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100515 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000516 fprintf(stderr,
517 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100518 usage();
519 }
Damien Miller95def091999-11-25 00:26:21 +1100520 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000521 /* A command has been specified. Store it into the buffer. */
522 for (i = 0; i < ac; i++) {
523 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100524 buffer_append(&command, " ", 1);
525 buffer_append(&command, av[i], strlen(av[i]));
526 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000527 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000528
Damien Miller95def091999-11-25 00:26:21 +1100529 /* Cannot fork to background if no command. */
Damien Millercaf6dd62000-08-29 11:33:50 +1100530 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
Damien Miller95def091999-11-25 00:26:21 +1100531 fatal("Cannot fork into background without a command to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000532
Damien Miller95def091999-11-25 00:26:21 +1100533 /* Allocate a tty by default if no command specified. */
534 if (buffer_len(&command) == 0)
535 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000536
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000537 /* Force no tty */
Ben Lindstromc72745a2000-12-02 19:03:54 +0000538 if (no_tty_flag)
539 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100540 /* Do not allocate a tty if stdin is not a tty. */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000541 if (!isatty(fileno(stdin)) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100542 if (tty_flag)
Damien Miller996acd22003-04-09 20:59:48 +1000543 logit("Pseudo-terminal will not be allocated because stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100544 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000545 }
Damien Miller1383bd82000-04-06 12:32:37 +1000546
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000547 /*
548 * Initialize "log" output. Since we are the client all output
549 * actually goes to stderr.
550 */
Ben Lindstrom2b646522001-04-12 16:16:57 +0000551 log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
552 SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000553
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000554 /*
555 * Read per-user configuration file. Ignore the system wide config
556 * file if the user specifies a config file on the command line.
557 */
558 if (config != NULL) {
Damien Miller914420f2004-04-20 20:14:07 +1000559 if (!read_config_file(config, host, &options, 0))
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000560 fatal("Can't open user config file %.100s: "
561 "%.100s", config, strerror(errno));
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000562 } else {
563 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,
564 _PATH_SSH_USER_CONFFILE);
Damien Miller57a44762004-04-20 20:11:57 +1000565 (void)read_config_file(buf, host, &options, 1);
Ben Lindstrom83f07d12001-10-03 17:22:29 +0000566
567 /* Read systemwide configuration file after use config. */
Darren Tuckerfc959702004-07-17 16:12:08 +1000568 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host,
Damien Miller57a44762004-04-20 20:11:57 +1000569 &options, 0);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000570 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000571
Damien Miller95def091999-11-25 00:26:21 +1100572 /* Fill configuration defaults. */
573 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000574
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000575 channel_set_af(options.address_family);
576
Damien Miller95def091999-11-25 00:26:21 +1100577 /* reinit */
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000578 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000579
Damien Miller60bc5172001-03-19 09:38:15 +1100580 seed_rng();
581
Damien Miller95def091999-11-25 00:26:21 +1100582 if (options.user == NULL)
583 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000584
Damien Miller95def091999-11-25 00:26:21 +1100585 if (options.hostname != NULL)
586 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000587
Darren Tucker3f521e22003-07-03 16:20:42 +1000588 /* force lowercase for hostkey matching */
589 if (options.host_key_alias != NULL) {
590 for (p = options.host_key_alias; *p; p++)
591 if (isupper(*p))
592 *p = tolower(*p);
593 }
594
Damien Miller9f1e33a2003-02-24 11:57:32 +1100595 if (options.proxy_command != NULL &&
596 strcmp(options.proxy_command, "none") == 0)
597 options.proxy_command = NULL;
598
Damien Miller0e220db2004-06-15 10:34:08 +1000599 if (options.control_path != NULL) {
600 options.control_path = tilde_expand_filename(
601 options.control_path, original_real_uid);
602 }
603 if (options.control_path != NULL && options.control_master == 0)
604 control_client(options.control_path); /* This doesn't return */
605
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000606 /* Open a connection to the remote host. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000607 if (ssh_connect(host, &hostaddr, options.port,
608 options.address_family, options.connection_attempts,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000609#ifdef HAVE_CYGWIN
610 options.use_privileged_port,
611#else
Ben Lindstromf9c48842002-06-11 16:37:51 +0000612 original_effective_uid == 0 && options.use_privileged_port,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000613#endif
Ben Lindstromda394ca2002-06-12 16:11:12 +0000614 options.proxy_command) != 0)
Ben Lindstrom24157572002-06-12 16:09:39 +0000615 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000616
Damien Miller5428f641999-11-25 11:54:57 +1100617 /*
618 * If we successfully made the connection, load the host private key
619 * in case we will need it later for combined rsa-rhosts
620 * authentication. This must be done before releasing extra
621 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +0000622 * If we cannot access the private keys, load the public keys
623 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +1100624 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000625 sensitive_data.nkeys = 0;
626 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000627 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +0000628 if (options.rhosts_rsa_authentication ||
629 options.hostbased_authentication) {
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000630 sensitive_data.nkeys = 3;
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000631 sensitive_data.keys = xmalloc(sensitive_data.nkeys *
632 sizeof(Key));
Ben Lindstromf9c48842002-06-11 16:37:51 +0000633
634 PRIV_START;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000635 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Ben Lindstromd0fca422001-03-26 13:44:06 +0000636 _PATH_HOST_KEY_FILE, "", NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000637 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
638 _PATH_HOST_DSA_KEY_FILE, "", NULL);
639 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
640 _PATH_HOST_RSA_KEY_FILE, "", NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +0000641 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000642
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +0000643 if (options.hostbased_authentication == 1 &&
644 sensitive_data.keys[0] == NULL &&
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000645 sensitive_data.keys[1] == NULL &&
646 sensitive_data.keys[2] == NULL) {
647 sensitive_data.keys[1] = key_load_public(
648 _PATH_HOST_DSA_KEY_FILE, NULL);
649 sensitive_data.keys[2] = key_load_public(
650 _PATH_HOST_RSA_KEY_FILE, NULL);
651 sensitive_data.external_keysign = 1;
652 }
Damien Miller95def091999-11-25 00:26:21 +1100653 }
Damien Miller5428f641999-11-25 11:54:57 +1100654 /*
655 * Get rid of any extra privileges that we may have. We will no
656 * longer need them. Also, extra privileges could make it very hard
657 * to read identity files and other non-world-readable files from the
658 * user's home directory if it happens to be on a NFS volume where
659 * root is mapped to nobody.
660 */
Darren Tucker25f60a72004-08-15 17:23:34 +1000661 if (original_effective_uid == 0) {
662 PRIV_START;
663 permanently_set_uid(pw);
664 }
Damien Miller95def091999-11-25 00:26:21 +1100665
Damien Miller5428f641999-11-25 11:54:57 +1100666 /*
667 * Now that we are back to our own permissions, create ~/.ssh
668 * directory if it doesn\'t already exist.
669 */
Ben Lindstrom930b14a2001-08-15 23:19:21 +0000670 snprintf(buf, sizeof buf, "%.100s%s%.100s", pw->pw_dir, strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
Damien Miller95def091999-11-25 00:26:21 +1100671 if (stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000672 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100673 error("Could not create directory '%.200s'.", buf);
674
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000675 /* load options.identity_files */
676 load_public_identity_files();
677
678 /* Expand ~ in known host file names. */
679 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100680 options.system_hostfile =
681 tilde_expand_filename(options.system_hostfile, original_real_uid);
682 options.user_hostfile =
683 tilde_expand_filename(options.user_hostfile, original_real_uid);
684 options.system_hostfile2 =
685 tilde_expand_filename(options.system_hostfile2, original_real_uid);
686 options.user_hostfile2 =
687 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100688
Damien Miller07cd5892001-11-12 10:52:03 +1100689 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
690
Damien Miller95def091999-11-25 00:26:21 +1100691 /* Log into the remote system. This never returns if the login fails. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000692 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr, pw);
Damien Miller95def091999-11-25 00:26:21 +1100693
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000694 /* We no longer need the private host keys. Clear them now. */
695 if (sensitive_data.nkeys != 0) {
696 for (i = 0; i < sensitive_data.nkeys; i++) {
697 if (sensitive_data.keys[i] != NULL) {
698 /* Destroys contents safely */
699 debug3("clear hostkey %d", i);
700 key_free(sensitive_data.keys[i]);
701 sensitive_data.keys[i] = NULL;
702 }
703 }
704 xfree(sensitive_data.keys);
705 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000706 for (i = 0; i < options.num_identity_files; i++) {
707 if (options.identity_files[i]) {
708 xfree(options.identity_files[i]);
709 options.identity_files[i] = NULL;
710 }
711 if (options.identity_keys[i]) {
712 key_free(options.identity_keys[i]);
713 options.identity_keys[i] = NULL;
714 }
715 }
Damien Miller95def091999-11-25 00:26:21 +1100716
Damien Miller1383bd82000-04-06 12:32:37 +1000717 exit_status = compat20 ? ssh_session2() : ssh_session();
718 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +1000719
Damien Miller0e220db2004-06-15 10:34:08 +1000720 if (options.control_path != NULL && control_fd != -1)
721 unlink(options.control_path);
722
Damien Miller8c4e18a2002-09-19 12:05:02 +1000723 /*
Damien Millera8e06ce2003-11-21 23:48:55 +1100724 * Send SIGHUP to proxy command if used. We don't wait() in
Damien Miller8c4e18a2002-09-19 12:05:02 +1000725 * case it hangs and instead rely on init to reap the child
726 */
727 if (proxy_command_pid > 1)
728 kill(proxy_command_pid, SIGHUP);
729
Damien Miller1383bd82000-04-06 12:32:37 +1000730 return exit_status;
731}
732
Darren Tucker0a118da2003-10-15 15:54:32 +1000733#define SSH_X11_PROTO "MIT-MAGIC-COOKIE-1"
734
Ben Lindstrombba81212001-06-25 05:01:22 +0000735static void
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000736x11_get_proto(char **_proto, char **_data)
Damien Millerbd483e72000-04-30 10:00:53 +1000737{
Darren Tucker0a118da2003-10-15 15:54:32 +1000738 char cmd[1024];
Damien Millerbd483e72000-04-30 10:00:53 +1000739 char line[512];
Darren Tucker0a118da2003-10-15 15:54:32 +1000740 char xdisplay[512];
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000741 static char proto[512], data[512];
Damien Millerbd483e72000-04-30 10:00:53 +1000742 FILE *f;
Darren Tucker0a118da2003-10-15 15:54:32 +1000743 int got_data = 0, generated = 0, do_unlink = 0, i;
744 char *display, *xauthdir, *xauthfile;
Ben Lindstromee8d52d2002-07-23 21:03:02 +0000745 struct stat st;
Damien Millerbd483e72000-04-30 10:00:53 +1000746
Darren Tucker0a118da2003-10-15 15:54:32 +1000747 xauthdir = xauthfile = NULL;
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000748 *_proto = proto;
749 *_data = data;
750 proto[0] = data[0] = '\0';
Darren Tucker0a118da2003-10-15 15:54:32 +1000751
Ben Lindstromee8d52d2002-07-23 21:03:02 +0000752 if (!options.xauth_location ||
753 (stat(options.xauth_location, &st) == -1)) {
754 debug("No xauth program.");
755 } else {
756 if ((display = getenv("DISPLAY")) == NULL) {
757 debug("x11_get_proto: DISPLAY not set");
758 return;
759 }
Darren Tucker0a118da2003-10-15 15:54:32 +1000760 /*
761 * Handle FamilyLocal case where $DISPLAY does
762 * not match an authorization entry. For this we
763 * just try "xauth list unix:displaynum.screennum".
764 * XXX: "localhost" match to determine FamilyLocal
765 * is not perfect.
766 */
767 if (strncmp(display, "localhost:", 10) == 0) {
768 snprintf(xdisplay, sizeof(xdisplay), "unix:%s",
769 display + 10);
770 display = xdisplay;
771 }
772 if (options.forward_x11_trusted == 0) {
773 xauthdir = xmalloc(MAXPATHLEN);
774 xauthfile = xmalloc(MAXPATHLEN);
775 strlcpy(xauthdir, "/tmp/ssh-XXXXXXXXXX", MAXPATHLEN);
776 if (mkdtemp(xauthdir) != NULL) {
777 do_unlink = 1;
778 snprintf(xauthfile, MAXPATHLEN, "%s/xauthfile",
779 xauthdir);
780 snprintf(cmd, sizeof(cmd),
781 "%s -f %s generate %s " SSH_X11_PROTO
Damien Miller3df755e2004-03-22 09:34:26 +1100782 " untrusted timeout 1200 2>" _PATH_DEVNULL,
Darren Tucker0a118da2003-10-15 15:54:32 +1000783 options.xauth_location, xauthfile, display);
784 debug2("x11_get_proto: %s", cmd);
785 if (system(cmd) == 0)
786 generated = 1;
787 }
788 }
789 snprintf(cmd, sizeof(cmd),
790 "%s %s%s list %s . 2>" _PATH_DEVNULL,
791 options.xauth_location,
792 generated ? "-f " : "" ,
793 generated ? xauthfile : "",
794 display);
795 debug2("x11_get_proto: %s", cmd);
796 f = popen(cmd, "r");
Damien Millerd3a18572000-06-07 19:55:44 +1000797 if (f && fgets(line, sizeof(line), f) &&
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000798 sscanf(line, "%*s %511s %511s", proto, data) == 2)
Damien Millerd3a18572000-06-07 19:55:44 +1000799 got_data = 1;
800 if (f)
801 pclose(f);
802 }
Darren Tucker0a118da2003-10-15 15:54:32 +1000803
804 if (do_unlink) {
805 unlink(xauthfile);
806 rmdir(xauthdir);
807 }
808 if (xauthdir)
809 xfree(xauthdir);
810 if (xauthfile)
811 xfree(xauthfile);
812
Damien Millerbd483e72000-04-30 10:00:53 +1000813 /*
814 * If we didn't get authentication data, just make up some
815 * data. The forwarding code will check the validity of the
816 * response anyway, and substitute this data. The X11
817 * server, however, will ignore this fake data and use
818 * whatever authentication mechanisms it was using otherwise
819 * for the local connection.
820 */
821 if (!got_data) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000822 u_int32_t rnd = 0;
Damien Millerbd483e72000-04-30 10:00:53 +1000823
Darren Tucker0a118da2003-10-15 15:54:32 +1000824 logit("Warning: No xauth data; "
825 "using fake authentication data for X11 forwarding.");
826 strlcpy(proto, SSH_X11_PROTO, sizeof proto);
Damien Millerbd483e72000-04-30 10:00:53 +1000827 for (i = 0; i < 16; i++) {
828 if (i % 4 == 0)
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000829 rnd = arc4random();
Darren Tucker0a118da2003-10-15 15:54:32 +1000830 snprintf(data + 2 * i, sizeof data - 2 * i, "%02x",
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000831 rnd & 0xff);
832 rnd >>= 8;
Damien Millerbd483e72000-04-30 10:00:53 +1000833 }
834 }
835}
836
Ben Lindstrombba81212001-06-25 05:01:22 +0000837static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100838ssh_init_forwarding(void)
839{
Kevin Steves12057502001-02-05 14:54:34 +0000840 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100841 int i;
Kevin Steves12057502001-02-05 14:54:34 +0000842
Damien Miller0bc1bd82000-11-13 22:57:25 +1100843 /* Initiate local TCP/IP port forwardings. */
844 for (i = 0; i < options.num_local_forwards; i++) {
845 debug("Connections to local port %d forwarded to remote address %.200s:%d",
846 options.local_forwards[i].port,
847 options.local_forwards[i].host,
848 options.local_forwards[i].host_port);
Damien Millerb16461c2002-01-22 23:29:22 +1100849 success += channel_setup_local_fwd_listener(
Damien Miller0bc1bd82000-11-13 22:57:25 +1100850 options.local_forwards[i].port,
851 options.local_forwards[i].host,
852 options.local_forwards[i].host_port,
853 options.gateway_ports);
854 }
Kevin Steves12057502001-02-05 14:54:34 +0000855 if (i > 0 && success == 0)
856 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100857
858 /* Initiate remote TCP/IP port forwardings. */
859 for (i = 0; i < options.num_remote_forwards; i++) {
860 debug("Connections to remote port %d forwarded to local address %.200s:%d",
861 options.remote_forwards[i].port,
862 options.remote_forwards[i].host,
863 options.remote_forwards[i].host_port);
864 channel_request_remote_forwarding(
865 options.remote_forwards[i].port,
866 options.remote_forwards[i].host,
867 options.remote_forwards[i].host_port);
868 }
869}
870
Ben Lindstrombba81212001-06-25 05:01:22 +0000871static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100872check_agent_present(void)
873{
874 if (options.forward_agent) {
875 /* Clear agent forwarding if we don\'t have an agent. */
Damien Miller789e95d2002-09-12 09:52:46 +1000876 if (!ssh_agent_present())
Damien Miller0bc1bd82000-11-13 22:57:25 +1100877 options.forward_agent = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100878 }
879}
880
Ben Lindstrombba81212001-06-25 05:01:22 +0000881static int
Damien Miller1383bd82000-04-06 12:32:37 +1000882ssh_session(void)
883{
884 int type;
Damien Miller1383bd82000-04-06 12:32:37 +1000885 int interactive = 0;
886 int have_tty = 0;
887 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +1000888 char *cp;
889
Damien Miller95def091999-11-25 00:26:21 +1100890 /* Enable compression if requested. */
891 if (options.compression) {
892 debug("Requesting compression at level %d.", options.compression_level);
893
894 if (options.compression_level < 1 || options.compression_level > 9)
895 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
896
897 /* Send the request. */
898 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
899 packet_put_int(options.compression_level);
900 packet_send();
901 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +1100902 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100903 if (type == SSH_SMSG_SUCCESS)
904 packet_start_compression(options.compression_level);
905 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +1000906 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +1100907 else
908 packet_disconnect("Protocol error waiting for compression response.");
909 }
910 /* Allocate a pseudo tty if appropriate. */
911 if (tty_flag) {
912 debug("Requesting pty.");
913
914 /* Start the packet. */
915 packet_start(SSH_CMSG_REQUEST_PTY);
916
917 /* Store TERM in the packet. There is no limit on the
918 length of the string. */
919 cp = getenv("TERM");
920 if (!cp)
921 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +0000922 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +1100923
924 /* Store window size in the packet. */
925 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
926 memset(&ws, 0, sizeof(ws));
927 packet_put_int(ws.ws_row);
928 packet_put_int(ws.ws_col);
929 packet_put_int(ws.ws_xpixel);
930 packet_put_int(ws.ws_ypixel);
931
932 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000933 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +1100934
935 /* Send the packet, and wait for it to leave. */
936 packet_send();
937 packet_write_wait();
938
939 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100940 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +1000941 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100942 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000943 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +1000944 } else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +1000945 logit("Warning: Remote host failed or refused to allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +1100946 else
947 packet_disconnect("Protocol error waiting for pty request response.");
948 }
949 /* Request X11 forwarding if enabled and DISPLAY is set. */
950 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000951 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +1000952 /* Get reasonable local authentication information. */
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000953 x11_get_proto(&proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +1000954 /* Request forwarding with authentication spoofing. */
Damien Miller95def091999-11-25 00:26:21 +1100955 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Millerbd483e72000-04-30 10:00:53 +1000956 x11_request_forwarding_with_spoofing(0, proto, data);
Damien Miller95def091999-11-25 00:26:21 +1100957
958 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100959 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100960 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100961 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000962 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +1000963 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +1000964 } else {
Damien Miller95def091999-11-25 00:26:21 +1100965 packet_disconnect("Protocol error waiting for X11 forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +1000966 }
Damien Miller95def091999-11-25 00:26:21 +1100967 }
968 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000969 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +1100970
971 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100972 check_agent_present();
973
Damien Miller95def091999-11-25 00:26:21 +1100974 if (options.forward_agent) {
975 debug("Requesting authentication agent forwarding.");
976 auth_request_forwarding();
977
978 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100979 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +1100980 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +1100981 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +1000982 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +1100983 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000984
Damien Miller0bc1bd82000-11-13 22:57:25 +1100985 /* Initiate port forwardings. */
986 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000987
Damien Miller5428f641999-11-25 11:54:57 +1100988 /* If requested, let ssh continue in the background. */
Damien Miller4af51302000-04-16 11:18:38 +1000989 if (fork_after_authentication_flag)
Damien Miller5428f641999-11-25 11:54:57 +1100990 if (daemon(1, 1) < 0)
991 fatal("daemon() failed: %.200s", strerror(errno));
992
993 /*
994 * If a command was specified on the command line, execute the
995 * command now. Otherwise request the server to start a shell.
996 */
Damien Miller95def091999-11-25 00:26:21 +1100997 if (buffer_len(&command) > 0) {
998 int len = buffer_len(&command);
999 if (len > 900)
1000 len = 900;
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001001 debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +11001002 packet_start(SSH_CMSG_EXEC_CMD);
1003 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1004 packet_send();
1005 packet_write_wait();
1006 } else {
1007 debug("Requesting shell.");
1008 packet_start(SSH_CMSG_EXEC_SHELL);
1009 packet_send();
1010 packet_write_wait();
1011 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001012
Damien Miller95def091999-11-25 00:26:21 +11001013 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001014 return client_loop(have_tty, tty_flag ?
1015 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +10001016}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001017
Ben Lindstrombba81212001-06-25 05:01:22 +00001018static void
Damien Miller0e220db2004-06-15 10:34:08 +10001019ssh_subsystem_reply(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001020{
1021 int id, len;
1022
1023 id = packet_get_int();
1024 len = buffer_len(&command);
Ben Lindstrom4040fe12001-03-05 06:52:57 +00001025 if (len > 900)
1026 len = 900;
Damien Miller48b03fc2002-01-22 23:11:40 +11001027 packet_check_eom();
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001028 if (type == SSH2_MSG_CHANNEL_FAILURE)
1029 fatal("Request for subsystem '%.*s' failed on channel %d",
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001030 len, (u_char *)buffer_ptr(&command), id);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001031}
1032
Damien Miller2797f7f2002-04-23 21:09:44 +10001033void
Damien Miller509b0102003-12-17 16:33:10 +11001034client_global_request_reply_fwd(int type, u_int32_t seq, void *ctxt)
Damien Miller2797f7f2002-04-23 21:09:44 +10001035{
1036 int i;
1037
1038 i = client_global_request_id++;
Damien Miller509b0102003-12-17 16:33:10 +11001039 if (i >= options.num_remote_forwards)
Damien Miller2797f7f2002-04-23 21:09:44 +10001040 return;
Damien Miller2797f7f2002-04-23 21:09:44 +10001041 debug("remote forward %s for: listen %d, connect %s:%d",
1042 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
1043 options.remote_forwards[i].port,
1044 options.remote_forwards[i].host,
1045 options.remote_forwards[i].host_port);
1046 if (type == SSH2_MSG_REQUEST_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +10001047 logit("Warning: remote port forwarding failed for listen port %d",
Damien Miller2797f7f2002-04-23 21:09:44 +10001048 options.remote_forwards[i].port);
1049}
1050
Damien Miller0e220db2004-06-15 10:34:08 +10001051static void
1052ssh_control_listener(void)
1053{
1054 struct sockaddr_un addr;
1055 mode_t old_umask;
Damien Miller07b6ff12004-06-15 11:14:45 +10001056 int addr_len;
1057
Damien Miller23f07702004-06-18 01:19:03 +10001058 if (options.control_path == NULL || options.control_master <= 0)
Damien Miller0e220db2004-06-15 10:34:08 +10001059 return;
1060
1061 memset(&addr, '\0', sizeof(addr));
1062 addr.sun_family = AF_UNIX;
Damien Miller07b6ff12004-06-15 11:14:45 +10001063 addr_len = offsetof(struct sockaddr_un, sun_path) +
Damien Miller0e220db2004-06-15 10:34:08 +10001064 strlen(options.control_path) + 1;
1065
1066 if (strlcpy(addr.sun_path, options.control_path,
1067 sizeof(addr.sun_path)) >= sizeof(addr.sun_path))
1068 fatal("ControlPath too long");
1069
1070 if ((control_fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
1071 fatal("%s socket(): %s\n", __func__, strerror(errno));
1072
1073 old_umask = umask(0177);
Damien Miller07b6ff12004-06-15 11:14:45 +10001074 if (bind(control_fd, (struct sockaddr*)&addr, addr_len) == -1) {
Damien Miller0e220db2004-06-15 10:34:08 +10001075 control_fd = -1;
1076 if (errno == EINVAL)
1077 fatal("ControlSocket %s already exists",
1078 options.control_path);
1079 else
1080 fatal("%s bind(): %s\n", __func__, strerror(errno));
1081 }
1082 umask(old_umask);
1083
1084 if (listen(control_fd, 64) == -1)
1085 fatal("%s listen(): %s\n", __func__, strerror(errno));
1086
1087 set_nonblock(control_fd);
1088}
1089
Ben Lindstromf558cf62001-09-20 23:13:49 +00001090/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001091static void
Ben Lindstromf558cf62001-09-20 23:13:49 +00001092ssh_session2_setup(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001093{
Damien Miller3756dce2004-06-18 01:17:29 +10001094 extern char **environ;
1095
Damien Miller0e220db2004-06-15 10:34:08 +10001096 int interactive = tty_flag;
1097 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001098 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001099 /* Get reasonable local authentication information. */
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001100 x11_get_proto(&proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001101 /* Request forwarding with authentication spoofing. */
1102 debug("Requesting X11 forwarding with authentication spoofing.");
1103 x11_request_forwarding_with_spoofing(id, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001104 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001105 /* XXX wait for reply */
1106 }
1107
Damien Miller0bc1bd82000-11-13 22:57:25 +11001108 check_agent_present();
1109 if (options.forward_agent) {
1110 debug("Requesting authentication agent forwarding.");
1111 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1112 packet_send();
1113 }
1114
Damien Miller0e220db2004-06-15 10:34:08 +10001115 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
Damien Miller3756dce2004-06-18 01:17:29 +10001116 NULL, fileno(stdin), &command, environ, &ssh_subsystem_reply);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001117
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001118 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001119}
1120
Ben Lindstromf558cf62001-09-20 23:13:49 +00001121/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001122static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001123ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001124{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001125 Channel *c;
1126 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001127
Damien Millercaf6dd62000-08-29 11:33:50 +11001128 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001129 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001130 } else {
1131 in = dup(STDIN_FILENO);
1132 }
1133 out = dup(STDOUT_FILENO);
1134 err = dup(STDERR_FILENO);
1135
1136 if (in < 0 || out < 0 || err < 0)
1137 fatal("dup() in/out/err failed");
1138
Damien Miller69b69aa2000-10-28 14:19:58 +11001139 /* enable nonblocking unless tty */
1140 if (!isatty(in))
1141 set_nonblock(in);
1142 if (!isatty(out))
1143 set_nonblock(out);
1144 if (!isatty(err))
1145 set_nonblock(err);
1146
Damien Millere4340be2000-09-16 13:29:08 +11001147 window = CHAN_SES_WINDOW_DEFAULT;
1148 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001149 if (tty_flag) {
1150 window >>= 1;
1151 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001152 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001153 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001154 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001155 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001156 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001157
Ben Lindstromf558cf62001-09-20 23:13:49 +00001158 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001159
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001160 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001161 if (!no_shell_flag)
Damien Miller0e220db2004-06-15 10:34:08 +10001162 channel_register_confirm(c->self, ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001163
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001164 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001165}
1166
Ben Lindstrombba81212001-06-25 05:01:22 +00001167static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001168ssh_session2(void)
1169{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001170 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001171
1172 /* XXX should be pre-session */
1173 ssh_init_forwarding();
Damien Miller0e220db2004-06-15 10:34:08 +10001174 ssh_control_listener();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001175
Ben Lindstromf558cf62001-09-20 23:13:49 +00001176 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1177 id = ssh_session2_open();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001178
1179 /* If requested, let ssh continue in the background. */
1180 if (fork_after_authentication_flag)
1181 if (daemon(1, 1) < 0)
1182 fatal("daemon() failed: %.200s", strerror(errno));
1183
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001184 return client_loop(tty_flag, tty_flag ?
1185 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001186}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001187
Ben Lindstrombba81212001-06-25 05:01:22 +00001188static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001189load_public_identity_files(void)
1190{
1191 char *filename;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001192 int i = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001193 Key *public;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001194#ifdef SMARTCARD
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001195 Key **keys;
1196
Ben Lindstromf7db3bb2001-08-06 21:35:51 +00001197 if (options.smartcard_device != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001198 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
1199 (keys = sc_get_keys(options.smartcard_device, NULL)) != NULL ) {
1200 int count = 0;
1201 for (i = 0; keys[i] != NULL; i++) {
1202 count++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001203 memmove(&options.identity_files[1], &options.identity_files[0],
1204 sizeof(char *) * (SSH_MAX_IDENTITY_FILES - 1));
1205 memmove(&options.identity_keys[1], &options.identity_keys[0],
1206 sizeof(Key *) * (SSH_MAX_IDENTITY_FILES - 1));
1207 options.num_identity_files++;
1208 options.identity_keys[0] = keys[i];
Damien Miller56a0bb02003-06-18 20:28:40 +10001209 options.identity_files[0] = sc_get_key_label(keys[i]);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001210 }
Ben Lindstrom4f054602002-03-26 03:23:00 +00001211 if (options.num_identity_files > SSH_MAX_IDENTITY_FILES)
1212 options.num_identity_files = SSH_MAX_IDENTITY_FILES;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001213 i = count;
1214 xfree(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001215 }
Ben Lindstromffce1472001-08-06 21:57:31 +00001216#endif /* SMARTCARD */
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001217 for (; i < options.num_identity_files; i++) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001218 filename = tilde_expand_filename(options.identity_files[i],
1219 original_real_uid);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001220 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001221 debug("identity file %s type %d", filename,
1222 public ? public->type : -1);
1223 xfree(options.identity_files[i]);
1224 options.identity_files[i] = filename;
1225 options.identity_keys[i] = public;
1226 }
1227}
Damien Miller0e220db2004-06-15 10:34:08 +10001228
1229static void
1230control_client_sighandler(int signo)
1231{
1232 control_client_terminate = signo;
1233}
1234
1235static void
1236control_client_sigrelay(int signo)
1237{
1238 if (control_server_pid > 1)
1239 kill(control_server_pid, signo);
1240}
1241
Darren Tucker365433f2004-06-22 12:29:23 +10001242static int
1243env_permitted(char *env)
1244{
1245 int i;
1246 char name[1024], *cp;
1247
1248 strlcpy(name, env, sizeof(name));
1249 if ((cp = strchr(name, '=')) == NULL)
1250 return (0);
1251
1252 *cp = '\0';
1253
1254 for (i = 0; i < options.num_send_env; i++)
1255 if (match_pattern(name, options.send_env[i]))
1256 return (1);
1257
1258 return (0);
1259}
1260
Damien Miller0e220db2004-06-15 10:34:08 +10001261static void
1262control_client(const char *path)
1263{
1264 struct sockaddr_un addr;
Darren Tucker39207a42004-11-05 20:19:51 +11001265 int i, r, fd, sock, exitval, num_env, addr_len;
Damien Miller0e220db2004-06-15 10:34:08 +10001266 Buffer m;
Darren Tucker7ebfc102004-11-07 20:06:19 +11001267 char *term;
Damien Miller3756dce2004-06-18 01:17:29 +10001268 extern char **environ;
Darren Tucker7ebfc102004-11-07 20:06:19 +11001269 u_int flags;
Darren Tuckerfc959702004-07-17 16:12:08 +10001270
Darren Tucker39207a42004-11-05 20:19:51 +11001271 if (stdin_null_flag) {
1272 if ((fd = open(_PATH_DEVNULL, O_RDONLY)) == -1)
1273 fatal("open(/dev/null): %s", strerror(errno));
1274 if (dup2(fd, STDIN_FILENO) == -1)
1275 fatal("dup2: %s", strerror(errno));
1276 if (fd > STDERR_FILENO)
1277 close(fd);
1278 }
1279
Damien Miller0e220db2004-06-15 10:34:08 +10001280 memset(&addr, '\0', sizeof(addr));
1281 addr.sun_family = AF_UNIX;
Damien Miller07b6ff12004-06-15 11:14:45 +10001282 addr_len = offsetof(struct sockaddr_un, sun_path) +
Damien Miller0e220db2004-06-15 10:34:08 +10001283 strlen(path) + 1;
1284
1285 if (strlcpy(addr.sun_path, path,
1286 sizeof(addr.sun_path)) >= sizeof(addr.sun_path))
1287 fatal("ControlPath too long");
1288
1289 if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
1290 fatal("%s socket(): %s", __func__, strerror(errno));
1291
Damien Miller07b6ff12004-06-15 11:14:45 +10001292 if (connect(sock, (struct sockaddr*)&addr, addr_len) == -1)
Damien Miller0e220db2004-06-15 10:34:08 +10001293 fatal("Couldn't connect to %s: %s", path, strerror(errno));
1294
Darren Tucker7ebfc102004-11-07 20:06:19 +11001295 if ((term = getenv("TERM")) == NULL)
1296 term = "";
1297
1298 flags = 0;
1299 if (tty_flag)
1300 flags |= SSHMUX_FLAG_TTY;
1301 if (subsystem_flag)
1302 flags |= SSHMUX_FLAG_SUBSYS;
Damien Miller0e220db2004-06-15 10:34:08 +10001303
Damien Miller0e220db2004-06-15 10:34:08 +10001304 buffer_init(&m);
1305
Darren Tucker7ebfc102004-11-07 20:06:19 +11001306 /* Send our command to server */
1307 buffer_put_int(&m, mux_command);
1308 buffer_put_int(&m, flags);
1309 if (ssh_msg_send(sock, /* version */1, &m) == -1)
1310 fatal("%s: msg_send", __func__);
1311 buffer_clear(&m);
1312
1313 /* Get authorisation status and PID of controlee */
Damien Miller0e220db2004-06-15 10:34:08 +10001314 if (ssh_msg_recv(sock, &m) == -1)
1315 fatal("%s: msg_recv", __func__);
Darren Tucker7ebfc102004-11-07 20:06:19 +11001316 if (buffer_get_char(&m) != 1)
Damien Miller0e220db2004-06-15 10:34:08 +10001317 fatal("%s: wrong version", __func__);
Damien Miller23f07702004-06-18 01:19:03 +10001318 if (buffer_get_int(&m) != 1)
1319 fatal("Connection to master denied");
Damien Miller0e220db2004-06-15 10:34:08 +10001320 control_server_pid = buffer_get_int(&m);
1321
Damien Miller0e220db2004-06-15 10:34:08 +10001322 buffer_clear(&m);
Damien Miller0e220db2004-06-15 10:34:08 +10001323
Darren Tucker7ebfc102004-11-07 20:06:19 +11001324 switch (mux_command) {
1325 case SSHMUX_COMMAND_ALIVE_CHECK:
1326 fprintf(stderr, "Master running (pid=%d)\r\n",
1327 control_server_pid);
1328 exit(0);
1329 case SSHMUX_COMMAND_TERMINATE:
1330 fprintf(stderr, "Exit request sent.\r\n");
1331 exit(0);
1332 case SSHMUX_COMMAND_OPEN:
1333 /* continue below */
1334 break;
1335 default:
1336 fatal("silly mux_command %d", mux_command);
1337 }
1338
1339 /* SSHMUX_COMMAND_OPEN */
1340 buffer_put_cstring(&m, term);
Damien Miller0e220db2004-06-15 10:34:08 +10001341 buffer_append(&command, "\0", 1);
1342 buffer_put_cstring(&m, buffer_ptr(&command));
1343
Darren Tucker365433f2004-06-22 12:29:23 +10001344 if (options.num_send_env == 0 || environ == NULL) {
1345 buffer_put_int(&m, 0);
Darren Tuckerfc959702004-07-17 16:12:08 +10001346 } else {
Darren Tucker365433f2004-06-22 12:29:23 +10001347 /* Pass environment */
1348 num_env = 0;
1349 for (i = 0; environ[i] != NULL; i++)
1350 if (env_permitted(environ[i]))
1351 num_env++; /* Count */
Darren Tuckerfc959702004-07-17 16:12:08 +10001352
Darren Tucker365433f2004-06-22 12:29:23 +10001353 buffer_put_int(&m, num_env);
1354
Darren Tuckerb5bc1a62004-06-24 00:34:53 +10001355 for (i = 0; environ[i] != NULL && num_env >= 0; i++)
1356 if (env_permitted(environ[i])) {
1357 num_env--;
Darren Tucker365433f2004-06-22 12:29:23 +10001358 buffer_put_cstring(&m, environ[i]);
Darren Tuckerb5bc1a62004-06-24 00:34:53 +10001359 }
Darren Tucker365433f2004-06-22 12:29:23 +10001360 }
Damien Miller3756dce2004-06-18 01:17:29 +10001361
Darren Tucker7ebfc102004-11-07 20:06:19 +11001362 if (ssh_msg_send(sock, /* version */1, &m) == -1)
Damien Miller0e220db2004-06-15 10:34:08 +10001363 fatal("%s: msg_send", __func__);
1364
1365 mm_send_fd(sock, STDIN_FILENO);
1366 mm_send_fd(sock, STDOUT_FILENO);
1367 mm_send_fd(sock, STDERR_FILENO);
1368
1369 /* Wait for reply, so master has a chance to gather ttymodes */
1370 buffer_clear(&m);
1371 if (ssh_msg_recv(sock, &m) == -1)
1372 fatal("%s: msg_recv", __func__);
Darren Tucker7ebfc102004-11-07 20:06:19 +11001373 if (buffer_get_char(&m) != 1)
1374 fatal("%s: wrong version", __func__);
Damien Miller0e220db2004-06-15 10:34:08 +10001375 buffer_free(&m);
1376
Darren Tucker07336da2004-11-05 20:02:16 +11001377 signal(SIGHUP, control_client_sighandler);
Damien Miller0809e232004-06-18 22:20:57 +10001378 signal(SIGINT, control_client_sighandler);
1379 signal(SIGTERM, control_client_sighandler);
1380 signal(SIGWINCH, control_client_sigrelay);
1381
Damien Miller0e220db2004-06-15 10:34:08 +10001382 if (tty_flag)
1383 enter_raw_mode();
1384
1385 /* Stick around until the controlee closes the client_fd */
1386 exitval = 0;
1387 for (;!control_client_terminate;) {
1388 r = read(sock, &exitval, sizeof(exitval));
1389 if (r == 0) {
1390 debug2("Received EOF from master");
1391 break;
1392 }
1393 if (r > 0)
1394 debug2("Received exit status from master %d", exitval);
1395 if (r == -1 && errno != EINTR)
1396 fatal("%s: read %s", __func__, strerror(errno));
1397 }
1398
1399 if (control_client_terminate)
1400 debug2("Exiting on signal %d", control_client_terminate);
1401
1402 close(sock);
1403
1404 leave_raw_mode();
1405
1406 if (tty_flag && options.log_level != SYSLOG_LEVEL_QUIET)
1407 fprintf(stderr, "Connection to master closed.\r\n");
1408
1409 exit(exitval);
1410}