blob: dfe9b25c1e474fb26d7124897c8083cc3021aeda [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"
Darren Tucker7ebfc102004-11-07 20:06:19 +110043RCSID("$OpenBSD: ssh.c,v 1.229 2004/11/07 00:01:46 djm 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 Tuckerba5c5922004-06-18 16:22:39 +1000160"usage: ssh [-1246AaCfghkMNnqsTtVvXxY] [-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"
162" [-L port:host:hostport] [-l login_name] [-m mac_spec] [-o option]\n"
Damien Millerb8ea2482004-06-18 22:21:55 +1000163" [-p port] [-R port:host:hostport] [-S ctl] [user@]hostname [command]\n"
Damien Miller50955102004-03-22 09:34:58 +1100164 );
Damien Miller95def091999-11-25 00:26:21 +1100165 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000166}
167
Ben Lindstrombba81212001-06-25 05:01:22 +0000168static int ssh_session(void);
169static int ssh_session2(void);
170static void load_public_identity_files(void);
Damien Miller0e220db2004-06-15 10:34:08 +1000171static void control_client(const char *path);
Damien Miller1383bd82000-04-06 12:32:37 +1000172
Damien Miller95def091999-11-25 00:26:21 +1100173/*
174 * Main program for the ssh client.
175 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000176int
177main(int ac, char **av)
178{
Ben Lindstrom24157572002-06-12 16:09:39 +0000179 int i, opt, exit_status;
Damien Milleraae6c611999-12-06 11:47:28 +1100180 u_short fwd_port, fwd_host_port;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000181 char sfwd_port[6], sfwd_host_port[6];
Damien Miller9836cf82003-12-17 16:30:06 +1100182 char *p, *cp, *line, buf[256];
Damien Miller95def091999-11-25 00:26:21 +1100183 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000184 struct passwd *pw;
Damien Miller1383bd82000-04-06 12:32:37 +1000185 int dummy;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000186 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000187 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000188
Damien Miller59d3d5b2003-08-22 09:34:41 +1000189 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000190 init_rng();
191
Damien Miller5428f641999-11-25 11:54:57 +1100192 /*
193 * Save the original real uid. It will be needed later (uid-swapping
194 * may clobber the real uid).
195 */
Damien Miller95def091999-11-25 00:26:21 +1100196 original_real_uid = getuid();
197 original_effective_uid = geteuid();
Damien Millera8e06ce2003-11-21 23:48:55 +1100198
Damien Miller50b9a602002-09-04 16:50:06 +1000199 /*
200 * Use uid-swapping to give up root privileges for the duration of
201 * option processing. We will re-instantiate the rights when we are
202 * ready to create the privileged port, and will permanently drop
203 * them when the port has been created (actually, when the connection
204 * has been made, as we may need to create the port several times).
205 */
206 PRIV_END;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000207
Damien Miller05dd7952000-10-01 00:42:48 +1100208#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100209 /* If we are installed setuid root be careful to not drop core. */
210 if (original_real_uid != original_effective_uid) {
211 struct rlimit rlim;
212 rlim.rlim_cur = rlim.rlim_max = 0;
213 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
214 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000215 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100216#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000217 /* Get user data. */
218 pw = getpwuid(original_real_uid);
219 if (!pw) {
Damien Miller996acd22003-04-09 20:59:48 +1000220 logit("You don't exist, go away!");
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000221 exit(1);
222 }
223 /* Take a copy of the returned structure. */
224 pw = pwcopy(pw);
225
Damien Miller5428f641999-11-25 11:54:57 +1100226 /*
Damien Miller5428f641999-11-25 11:54:57 +1100227 * Set our umask to something reasonable, as some files are created
228 * with the default umask. This will make them world-readable but
229 * writable only by the owner, which is ok for all files for which we
230 * don't set the modes explicitly.
231 */
Damien Miller95def091999-11-25 00:26:21 +1100232 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000233
Damien Miller95def091999-11-25 00:26:21 +1100234 /* Initialize option structure to indicate that no values have been set. */
235 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000236
Damien Miller95def091999-11-25 00:26:21 +1100237 /* Parse command-line arguments. */
238 host = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000239
Damien Millerf4614452001-07-14 12:18:10 +1000240again:
241 while ((opt = getopt(ac, av,
Darren Tucker7ebfc102004-11-07 20:06:19 +1100242 "1246ab:c:e:fgi:kl:m:no:p:qstvxACD:F:I:L:MNO:PR:S:TVXY")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100243 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000244 case '1':
245 options.protocol = SSH_PROTO_1;
246 break;
Damien Miller4af51302000-04-16 11:18:38 +1000247 case '2':
248 options.protocol = SSH_PROTO_2;
249 break;
Damien Miller34132e52000-01-14 15:45:46 +1100250 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000251 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100252 break;
Damien Miller34132e52000-01-14 15:45:46 +1100253 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000254 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100255 break;
Damien Miller95def091999-11-25 00:26:21 +1100256 case 'n':
257 stdin_null_flag = 1;
258 break;
Damien Miller95def091999-11-25 00:26:21 +1100259 case 'f':
260 fork_after_authentication_flag = 1;
261 stdin_null_flag = 1;
262 break;
Damien Miller95def091999-11-25 00:26:21 +1100263 case 'x':
264 options.forward_x11 = 0;
265 break;
Damien Miller95def091999-11-25 00:26:21 +1100266 case 'X':
267 options.forward_x11 = 1;
268 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000269 case 'Y':
270 options.forward_x11 = 1;
271 options.forward_x11_trusted = 1;
272 break;
Damien Miller95def091999-11-25 00:26:21 +1100273 case 'g':
274 options.gateway_ports = 1;
275 break;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100276 case 'O':
277 if (strcmp(optarg, "check") == 0)
278 mux_command = SSHMUX_COMMAND_ALIVE_CHECK;
279 else if (strcmp(optarg, "exit") == 0)
280 mux_command = SSHMUX_COMMAND_TERMINATE;
281 else
282 fatal("Invalid multiplex command.");
283 break;
Damien Miller147bba32002-09-04 16:46:06 +1000284 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100285 options.use_privileged_port = 0;
286 break;
Damien Miller95def091999-11-25 00:26:21 +1100287 case 'a':
288 options.forward_agent = 0;
289 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000290 case 'A':
291 options.forward_agent = 1;
292 break;
Damien Miller95def091999-11-25 00:26:21 +1100293 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100294 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100295 break;
Damien Miller95def091999-11-25 00:26:21 +1100296 case 'i':
297 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000298 fprintf(stderr, "Warning: Identity file %s "
299 "does not exist.\n", optarg);
Damien Miller95def091999-11-25 00:26:21 +1100300 break;
301 }
Damien Millerf4614452001-07-14 12:18:10 +1000302 if (options.num_identity_files >=
303 SSH_MAX_IDENTITY_FILES)
304 fatal("Too many identity files specified "
305 "(max %d)", SSH_MAX_IDENTITY_FILES);
306 options.identity_files[options.num_identity_files++] =
307 xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100308 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000309 case 'I':
310#ifdef SMARTCARD
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000311 options.smartcard_device = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000312#else
Ben Lindstromc5b68002001-07-04 04:52:03 +0000313 fprintf(stderr, "no support for smartcards.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000314#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000315 break;
Damien Miller95def091999-11-25 00:26:21 +1100316 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000317 if (tty_flag)
318 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100319 tty_flag = 1;
320 break;
Damien Miller95def091999-11-25 00:26:21 +1100321 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000322 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100323 debug_flag = 1;
324 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000325 } else {
326 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
327 options.log_level++;
Damien Millere4340be2000-09-16 13:29:08 +1100328 break;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000329 }
Darren Tuckere9bf9842004-11-05 20:05:32 +1100330 /* FALLTHROUGH */
Damien Miller95def091999-11-25 00:26:21 +1100331 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100332 fprintf(stderr, "%s, %s\n",
Damien Miller2aa6d3c2004-09-12 16:53:04 +1000333 SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
Damien Miller95def091999-11-25 00:26:21 +1100334 if (opt == 'V')
335 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100336 break;
Damien Miller95def091999-11-25 00:26:21 +1100337 case 'q':
338 options.log_level = SYSLOG_LEVEL_QUIET;
339 break;
Damien Miller95def091999-11-25 00:26:21 +1100340 case 'e':
341 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000342 (u_char) optarg[1] >= 64 &&
343 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000344 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100345 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000346 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100347 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000348 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100349 else {
Damien Millerf4614452001-07-14 12:18:10 +1000350 fprintf(stderr, "Bad escape character '%s'.\n",
351 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100352 exit(1);
353 }
354 break;
Damien Miller95def091999-11-25 00:26:21 +1100355 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000356 if (ciphers_valid(optarg)) {
357 /* SSH2 only */
358 options.ciphers = xstrdup(optarg);
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000359 options.cipher = SSH_CIPHER_INVALID;
Damien Millereba71ba2000-04-29 23:57:08 +1000360 } else {
361 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100362 options.cipher = cipher_number(optarg);
363 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000364 fprintf(stderr,
365 "Unknown cipher type '%s'\n",
366 optarg);
Damien Millereba71ba2000-04-29 23:57:08 +1000367 exit(1);
368 }
Damien Millerf4614452001-07-14 12:18:10 +1000369 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100370 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000371 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100372 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000373 else
Damien Millere39cacc2000-11-29 12:18:44 +1100374 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100375 }
376 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000377 case 'm':
378 if (mac_valid(optarg))
379 options.macs = xstrdup(optarg);
380 else {
Damien Millerf4614452001-07-14 12:18:10 +1000381 fprintf(stderr, "Unknown mac type '%s'\n",
382 optarg);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000383 exit(1);
384 }
385 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000386 case 'M':
Damien Millerb8ea2482004-06-18 22:21:55 +1000387 options.control_master =
388 (options.control_master >= 1) ? 2 : 1;
Damien Miller0e220db2004-06-15 10:34:08 +1000389 break;
Damien Miller95def091999-11-25 00:26:21 +1100390 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000391 options.port = a2port(optarg);
392 if (options.port == 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000393 fprintf(stderr, "Bad port '%s'\n", optarg);
394 exit(1);
395 }
Damien Miller95def091999-11-25 00:26:21 +1100396 break;
Damien Miller95def091999-11-25 00:26:21 +1100397 case 'l':
398 options.user = optarg;
399 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000400
Damien Miller95def091999-11-25 00:26:21 +1100401 case 'L':
Ben Lindstrom1a174712001-09-12 17:56:15 +0000402 case 'R':
Damien Miller1ea71662003-05-14 22:33:58 +1000403 if (sscanf(optarg, "%5[0123456789]:%255[^:]:%5[0123456789]",
Ben Lindstrom1a174712001-09-12 17:56:15 +0000404 sfwd_port, buf, sfwd_host_port) != 3 &&
Damien Miller1ea71662003-05-14 22:33:58 +1000405 sscanf(optarg, "%5[0123456789]/%255[^/]/%5[0123456789]",
Ben Lindstrom1a174712001-09-12 17:56:15 +0000406 sfwd_port, buf, sfwd_host_port) != 3) {
Damien Millerf4614452001-07-14 12:18:10 +1000407 fprintf(stderr,
Ben Lindstrom1a174712001-09-12 17:56:15 +0000408 "Bad forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000409 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100410 usage();
411 /* NOTREACHED */
412 }
Ben Lindstrom1a174712001-09-12 17:56:15 +0000413 if ((fwd_port = a2port(sfwd_port)) == 0 ||
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000414 (fwd_host_port = a2port(sfwd_host_port)) == 0) {
Ben Lindstrom1a174712001-09-12 17:56:15 +0000415 fprintf(stderr,
416 "Bad forwarding port(s) '%s'\n", optarg);
417 exit(1);
418 }
419 if (opt == 'L')
420 add_local_forward(&options, fwd_port, buf,
421 fwd_host_port);
422 else if (opt == 'R')
423 add_remote_forward(&options, fwd_port, buf,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100424 fwd_host_port);
Damien Miller95def091999-11-25 00:26:21 +1100425 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000426
427 case 'D':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000428 fwd_port = a2port(optarg);
429 if (fwd_port == 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000430 fprintf(stderr, "Bad dynamic port '%s'\n",
431 optarg);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000432 exit(1);
433 }
Darren Tucker1c52ee32003-08-13 20:38:36 +1000434 add_local_forward(&options, fwd_port, "socks", 0);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000435 break;
436
Damien Miller95def091999-11-25 00:26:21 +1100437 case 'C':
438 options.compression = 1;
439 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000440 case 'N':
441 no_shell_flag = 1;
442 no_tty_flag = 1;
443 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000444 case 'T':
445 no_tty_flag = 1;
446 break;
Damien Miller95def091999-11-25 00:26:21 +1100447 case 'o':
448 dummy = 1;
Damien Miller9836cf82003-12-17 16:30:06 +1100449 line = xstrdup(optarg);
Damien Millerf4614452001-07-14 12:18:10 +1000450 if (process_config_line(&options, host ? host : "",
Damien Miller9836cf82003-12-17 16:30:06 +1100451 line, "command-line", 0, &dummy) != 0)
Damien Miller95def091999-11-25 00:26:21 +1100452 exit(1);
Damien Miller9836cf82003-12-17 16:30:06 +1100453 xfree(line);
Damien Miller95def091999-11-25 00:26:21 +1100454 break;
Damien Miller832562e2001-01-30 09:30:01 +1100455 case 's':
456 subsystem_flag = 1;
457 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000458 case 'S':
459 if (options.control_path != NULL)
460 free(options.control_path);
461 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000462 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000463 case 'b':
464 options.bind_address = optarg;
465 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000466 case 'F':
467 config = optarg;
468 break;
Damien Miller95def091999-11-25 00:26:21 +1100469 default:
470 usage();
471 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000472 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000473
Damien Millerf4614452001-07-14 12:18:10 +1000474 ac -= optind;
475 av += optind;
476
477 if (ac > 0 && !host && **av != '-') {
Ben Lindstromc276c122002-12-23 02:14:51 +0000478 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000479 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000480 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000481 if (cp == NULL || cp == p)
482 usage();
483 options.user = p;
484 *cp = '\0';
485 host = ++cp;
486 } else
487 host = *av;
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000488 if (ac > 1) {
489 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000490 goto again;
491 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000492 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000493 }
494
Damien Miller95def091999-11-25 00:26:21 +1100495 /* Check that we got a host name. */
496 if (!host)
497 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000498
Damien Millercb5e44a2000-09-29 12:12:36 +1100499 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100500 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100501
Damien Miller95def091999-11-25 00:26:21 +1100502 /* Initialize the command to execute on remote host. */
503 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000504
Damien Miller5428f641999-11-25 11:54:57 +1100505 /*
506 * Save the command to execute on the remote host in a buffer. There
507 * is no limit on the length of the command, except by the maximum
508 * packet size. Also sets the tty flag if there is no command.
509 */
Damien Millerf4614452001-07-14 12:18:10 +1000510 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100511 /* No command specified - execute shell on a tty. */
512 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100513 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000514 fprintf(stderr,
515 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100516 usage();
517 }
Damien Miller95def091999-11-25 00:26:21 +1100518 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000519 /* A command has been specified. Store it into the buffer. */
520 for (i = 0; i < ac; i++) {
521 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100522 buffer_append(&command, " ", 1);
523 buffer_append(&command, av[i], strlen(av[i]));
524 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000525 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000526
Damien Miller95def091999-11-25 00:26:21 +1100527 /* Cannot fork to background if no command. */
Damien Millercaf6dd62000-08-29 11:33:50 +1100528 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
Damien Miller95def091999-11-25 00:26:21 +1100529 fatal("Cannot fork into background without a command to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000530
Damien Miller95def091999-11-25 00:26:21 +1100531 /* Allocate a tty by default if no command specified. */
532 if (buffer_len(&command) == 0)
533 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000534
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000535 /* Force no tty */
Ben Lindstromc72745a2000-12-02 19:03:54 +0000536 if (no_tty_flag)
537 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100538 /* Do not allocate a tty if stdin is not a tty. */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000539 if (!isatty(fileno(stdin)) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100540 if (tty_flag)
Damien Miller996acd22003-04-09 20:59:48 +1000541 logit("Pseudo-terminal will not be allocated because stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100542 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000543 }
Damien Miller1383bd82000-04-06 12:32:37 +1000544
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000545 /*
546 * Initialize "log" output. Since we are the client all output
547 * actually goes to stderr.
548 */
Ben Lindstrom2b646522001-04-12 16:16:57 +0000549 log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
550 SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000551
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000552 /*
553 * Read per-user configuration file. Ignore the system wide config
554 * file if the user specifies a config file on the command line.
555 */
556 if (config != NULL) {
Damien Miller914420f2004-04-20 20:14:07 +1000557 if (!read_config_file(config, host, &options, 0))
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000558 fatal("Can't open user config file %.100s: "
559 "%.100s", config, strerror(errno));
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000560 } else {
561 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,
562 _PATH_SSH_USER_CONFFILE);
Damien Miller57a44762004-04-20 20:11:57 +1000563 (void)read_config_file(buf, host, &options, 1);
Ben Lindstrom83f07d12001-10-03 17:22:29 +0000564
565 /* Read systemwide configuration file after use config. */
Darren Tuckerfc959702004-07-17 16:12:08 +1000566 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host,
Damien Miller57a44762004-04-20 20:11:57 +1000567 &options, 0);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000568 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000569
Damien Miller95def091999-11-25 00:26:21 +1100570 /* Fill configuration defaults. */
571 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000572
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000573 channel_set_af(options.address_family);
574
Damien Miller95def091999-11-25 00:26:21 +1100575 /* reinit */
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000576 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000577
Damien Miller60bc5172001-03-19 09:38:15 +1100578 seed_rng();
579
Damien Miller95def091999-11-25 00:26:21 +1100580 if (options.user == NULL)
581 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000582
Damien Miller95def091999-11-25 00:26:21 +1100583 if (options.hostname != NULL)
584 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000585
Darren Tucker3f521e22003-07-03 16:20:42 +1000586 /* force lowercase for hostkey matching */
587 if (options.host_key_alias != NULL) {
588 for (p = options.host_key_alias; *p; p++)
589 if (isupper(*p))
590 *p = tolower(*p);
591 }
592
Damien Miller9f1e33a2003-02-24 11:57:32 +1100593 if (options.proxy_command != NULL &&
594 strcmp(options.proxy_command, "none") == 0)
595 options.proxy_command = NULL;
596
Damien Miller0e220db2004-06-15 10:34:08 +1000597 if (options.control_path != NULL) {
598 options.control_path = tilde_expand_filename(
599 options.control_path, original_real_uid);
600 }
601 if (options.control_path != NULL && options.control_master == 0)
602 control_client(options.control_path); /* This doesn't return */
603
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000604 /* Open a connection to the remote host. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000605 if (ssh_connect(host, &hostaddr, options.port,
606 options.address_family, options.connection_attempts,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000607#ifdef HAVE_CYGWIN
608 options.use_privileged_port,
609#else
Ben Lindstromf9c48842002-06-11 16:37:51 +0000610 original_effective_uid == 0 && options.use_privileged_port,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000611#endif
Ben Lindstromda394ca2002-06-12 16:11:12 +0000612 options.proxy_command) != 0)
Ben Lindstrom24157572002-06-12 16:09:39 +0000613 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000614
Damien Miller5428f641999-11-25 11:54:57 +1100615 /*
616 * If we successfully made the connection, load the host private key
617 * in case we will need it later for combined rsa-rhosts
618 * authentication. This must be done before releasing extra
619 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +0000620 * If we cannot access the private keys, load the public keys
621 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +1100622 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000623 sensitive_data.nkeys = 0;
624 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000625 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +0000626 if (options.rhosts_rsa_authentication ||
627 options.hostbased_authentication) {
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000628 sensitive_data.nkeys = 3;
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000629 sensitive_data.keys = xmalloc(sensitive_data.nkeys *
630 sizeof(Key));
Ben Lindstromf9c48842002-06-11 16:37:51 +0000631
632 PRIV_START;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000633 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Ben Lindstromd0fca422001-03-26 13:44:06 +0000634 _PATH_HOST_KEY_FILE, "", NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000635 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
636 _PATH_HOST_DSA_KEY_FILE, "", NULL);
637 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
638 _PATH_HOST_RSA_KEY_FILE, "", NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +0000639 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000640
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +0000641 if (options.hostbased_authentication == 1 &&
642 sensitive_data.keys[0] == NULL &&
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000643 sensitive_data.keys[1] == NULL &&
644 sensitive_data.keys[2] == NULL) {
645 sensitive_data.keys[1] = key_load_public(
646 _PATH_HOST_DSA_KEY_FILE, NULL);
647 sensitive_data.keys[2] = key_load_public(
648 _PATH_HOST_RSA_KEY_FILE, NULL);
649 sensitive_data.external_keysign = 1;
650 }
Damien Miller95def091999-11-25 00:26:21 +1100651 }
Damien Miller5428f641999-11-25 11:54:57 +1100652 /*
653 * Get rid of any extra privileges that we may have. We will no
654 * longer need them. Also, extra privileges could make it very hard
655 * to read identity files and other non-world-readable files from the
656 * user's home directory if it happens to be on a NFS volume where
657 * root is mapped to nobody.
658 */
Darren Tucker25f60a72004-08-15 17:23:34 +1000659 if (original_effective_uid == 0) {
660 PRIV_START;
661 permanently_set_uid(pw);
662 }
Damien Miller95def091999-11-25 00:26:21 +1100663
Damien Miller5428f641999-11-25 11:54:57 +1100664 /*
665 * Now that we are back to our own permissions, create ~/.ssh
666 * directory if it doesn\'t already exist.
667 */
Ben Lindstrom930b14a2001-08-15 23:19:21 +0000668 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 +1100669 if (stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000670 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100671 error("Could not create directory '%.200s'.", buf);
672
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000673 /* load options.identity_files */
674 load_public_identity_files();
675
676 /* Expand ~ in known host file names. */
677 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100678 options.system_hostfile =
679 tilde_expand_filename(options.system_hostfile, original_real_uid);
680 options.user_hostfile =
681 tilde_expand_filename(options.user_hostfile, original_real_uid);
682 options.system_hostfile2 =
683 tilde_expand_filename(options.system_hostfile2, original_real_uid);
684 options.user_hostfile2 =
685 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100686
Damien Miller07cd5892001-11-12 10:52:03 +1100687 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
688
Damien Miller95def091999-11-25 00:26:21 +1100689 /* Log into the remote system. This never returns if the login fails. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000690 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr, pw);
Damien Miller95def091999-11-25 00:26:21 +1100691
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000692 /* We no longer need the private host keys. Clear them now. */
693 if (sensitive_data.nkeys != 0) {
694 for (i = 0; i < sensitive_data.nkeys; i++) {
695 if (sensitive_data.keys[i] != NULL) {
696 /* Destroys contents safely */
697 debug3("clear hostkey %d", i);
698 key_free(sensitive_data.keys[i]);
699 sensitive_data.keys[i] = NULL;
700 }
701 }
702 xfree(sensitive_data.keys);
703 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000704 for (i = 0; i < options.num_identity_files; i++) {
705 if (options.identity_files[i]) {
706 xfree(options.identity_files[i]);
707 options.identity_files[i] = NULL;
708 }
709 if (options.identity_keys[i]) {
710 key_free(options.identity_keys[i]);
711 options.identity_keys[i] = NULL;
712 }
713 }
Damien Miller95def091999-11-25 00:26:21 +1100714
Damien Miller1383bd82000-04-06 12:32:37 +1000715 exit_status = compat20 ? ssh_session2() : ssh_session();
716 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +1000717
Damien Miller0e220db2004-06-15 10:34:08 +1000718 if (options.control_path != NULL && control_fd != -1)
719 unlink(options.control_path);
720
Damien Miller8c4e18a2002-09-19 12:05:02 +1000721 /*
Damien Millera8e06ce2003-11-21 23:48:55 +1100722 * Send SIGHUP to proxy command if used. We don't wait() in
Damien Miller8c4e18a2002-09-19 12:05:02 +1000723 * case it hangs and instead rely on init to reap the child
724 */
725 if (proxy_command_pid > 1)
726 kill(proxy_command_pid, SIGHUP);
727
Damien Miller1383bd82000-04-06 12:32:37 +1000728 return exit_status;
729}
730
Darren Tucker0a118da2003-10-15 15:54:32 +1000731#define SSH_X11_PROTO "MIT-MAGIC-COOKIE-1"
732
Ben Lindstrombba81212001-06-25 05:01:22 +0000733static void
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000734x11_get_proto(char **_proto, char **_data)
Damien Millerbd483e72000-04-30 10:00:53 +1000735{
Darren Tucker0a118da2003-10-15 15:54:32 +1000736 char cmd[1024];
Damien Millerbd483e72000-04-30 10:00:53 +1000737 char line[512];
Darren Tucker0a118da2003-10-15 15:54:32 +1000738 char xdisplay[512];
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000739 static char proto[512], data[512];
Damien Millerbd483e72000-04-30 10:00:53 +1000740 FILE *f;
Darren Tucker0a118da2003-10-15 15:54:32 +1000741 int got_data = 0, generated = 0, do_unlink = 0, i;
742 char *display, *xauthdir, *xauthfile;
Ben Lindstromee8d52d2002-07-23 21:03:02 +0000743 struct stat st;
Damien Millerbd483e72000-04-30 10:00:53 +1000744
Darren Tucker0a118da2003-10-15 15:54:32 +1000745 xauthdir = xauthfile = NULL;
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000746 *_proto = proto;
747 *_data = data;
748 proto[0] = data[0] = '\0';
Darren Tucker0a118da2003-10-15 15:54:32 +1000749
Ben Lindstromee8d52d2002-07-23 21:03:02 +0000750 if (!options.xauth_location ||
751 (stat(options.xauth_location, &st) == -1)) {
752 debug("No xauth program.");
753 } else {
754 if ((display = getenv("DISPLAY")) == NULL) {
755 debug("x11_get_proto: DISPLAY not set");
756 return;
757 }
Darren Tucker0a118da2003-10-15 15:54:32 +1000758 /*
759 * Handle FamilyLocal case where $DISPLAY does
760 * not match an authorization entry. For this we
761 * just try "xauth list unix:displaynum.screennum".
762 * XXX: "localhost" match to determine FamilyLocal
763 * is not perfect.
764 */
765 if (strncmp(display, "localhost:", 10) == 0) {
766 snprintf(xdisplay, sizeof(xdisplay), "unix:%s",
767 display + 10);
768 display = xdisplay;
769 }
770 if (options.forward_x11_trusted == 0) {
771 xauthdir = xmalloc(MAXPATHLEN);
772 xauthfile = xmalloc(MAXPATHLEN);
773 strlcpy(xauthdir, "/tmp/ssh-XXXXXXXXXX", MAXPATHLEN);
774 if (mkdtemp(xauthdir) != NULL) {
775 do_unlink = 1;
776 snprintf(xauthfile, MAXPATHLEN, "%s/xauthfile",
777 xauthdir);
778 snprintf(cmd, sizeof(cmd),
779 "%s -f %s generate %s " SSH_X11_PROTO
Damien Miller3df755e2004-03-22 09:34:26 +1100780 " untrusted timeout 1200 2>" _PATH_DEVNULL,
Darren Tucker0a118da2003-10-15 15:54:32 +1000781 options.xauth_location, xauthfile, display);
782 debug2("x11_get_proto: %s", cmd);
783 if (system(cmd) == 0)
784 generated = 1;
785 }
786 }
787 snprintf(cmd, sizeof(cmd),
788 "%s %s%s list %s . 2>" _PATH_DEVNULL,
789 options.xauth_location,
790 generated ? "-f " : "" ,
791 generated ? xauthfile : "",
792 display);
793 debug2("x11_get_proto: %s", cmd);
794 f = popen(cmd, "r");
Damien Millerd3a18572000-06-07 19:55:44 +1000795 if (f && fgets(line, sizeof(line), f) &&
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000796 sscanf(line, "%*s %511s %511s", proto, data) == 2)
Damien Millerd3a18572000-06-07 19:55:44 +1000797 got_data = 1;
798 if (f)
799 pclose(f);
800 }
Darren Tucker0a118da2003-10-15 15:54:32 +1000801
802 if (do_unlink) {
803 unlink(xauthfile);
804 rmdir(xauthdir);
805 }
806 if (xauthdir)
807 xfree(xauthdir);
808 if (xauthfile)
809 xfree(xauthfile);
810
Damien Millerbd483e72000-04-30 10:00:53 +1000811 /*
812 * If we didn't get authentication data, just make up some
813 * data. The forwarding code will check the validity of the
814 * response anyway, and substitute this data. The X11
815 * server, however, will ignore this fake data and use
816 * whatever authentication mechanisms it was using otherwise
817 * for the local connection.
818 */
819 if (!got_data) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000820 u_int32_t rnd = 0;
Damien Millerbd483e72000-04-30 10:00:53 +1000821
Darren Tucker0a118da2003-10-15 15:54:32 +1000822 logit("Warning: No xauth data; "
823 "using fake authentication data for X11 forwarding.");
824 strlcpy(proto, SSH_X11_PROTO, sizeof proto);
Damien Millerbd483e72000-04-30 10:00:53 +1000825 for (i = 0; i < 16; i++) {
826 if (i % 4 == 0)
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000827 rnd = arc4random();
Darren Tucker0a118da2003-10-15 15:54:32 +1000828 snprintf(data + 2 * i, sizeof data - 2 * i, "%02x",
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000829 rnd & 0xff);
830 rnd >>= 8;
Damien Millerbd483e72000-04-30 10:00:53 +1000831 }
832 }
833}
834
Ben Lindstrombba81212001-06-25 05:01:22 +0000835static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100836ssh_init_forwarding(void)
837{
Kevin Steves12057502001-02-05 14:54:34 +0000838 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100839 int i;
Kevin Steves12057502001-02-05 14:54:34 +0000840
Damien Miller0bc1bd82000-11-13 22:57:25 +1100841 /* Initiate local TCP/IP port forwardings. */
842 for (i = 0; i < options.num_local_forwards; i++) {
843 debug("Connections to local port %d forwarded to remote address %.200s:%d",
844 options.local_forwards[i].port,
845 options.local_forwards[i].host,
846 options.local_forwards[i].host_port);
Damien Millerb16461c2002-01-22 23:29:22 +1100847 success += channel_setup_local_fwd_listener(
Damien Miller0bc1bd82000-11-13 22:57:25 +1100848 options.local_forwards[i].port,
849 options.local_forwards[i].host,
850 options.local_forwards[i].host_port,
851 options.gateway_ports);
852 }
Kevin Steves12057502001-02-05 14:54:34 +0000853 if (i > 0 && success == 0)
854 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100855
856 /* Initiate remote TCP/IP port forwardings. */
857 for (i = 0; i < options.num_remote_forwards; i++) {
858 debug("Connections to remote port %d forwarded to local address %.200s:%d",
859 options.remote_forwards[i].port,
860 options.remote_forwards[i].host,
861 options.remote_forwards[i].host_port);
862 channel_request_remote_forwarding(
863 options.remote_forwards[i].port,
864 options.remote_forwards[i].host,
865 options.remote_forwards[i].host_port);
866 }
867}
868
Ben Lindstrombba81212001-06-25 05:01:22 +0000869static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100870check_agent_present(void)
871{
872 if (options.forward_agent) {
873 /* Clear agent forwarding if we don\'t have an agent. */
Damien Miller789e95d2002-09-12 09:52:46 +1000874 if (!ssh_agent_present())
Damien Miller0bc1bd82000-11-13 22:57:25 +1100875 options.forward_agent = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100876 }
877}
878
Ben Lindstrombba81212001-06-25 05:01:22 +0000879static int
Damien Miller1383bd82000-04-06 12:32:37 +1000880ssh_session(void)
881{
882 int type;
Damien Miller1383bd82000-04-06 12:32:37 +1000883 int interactive = 0;
884 int have_tty = 0;
885 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +1000886 char *cp;
887
Damien Miller95def091999-11-25 00:26:21 +1100888 /* Enable compression if requested. */
889 if (options.compression) {
890 debug("Requesting compression at level %d.", options.compression_level);
891
892 if (options.compression_level < 1 || options.compression_level > 9)
893 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
894
895 /* Send the request. */
896 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
897 packet_put_int(options.compression_level);
898 packet_send();
899 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +1100900 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100901 if (type == SSH_SMSG_SUCCESS)
902 packet_start_compression(options.compression_level);
903 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +1000904 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +1100905 else
906 packet_disconnect("Protocol error waiting for compression response.");
907 }
908 /* Allocate a pseudo tty if appropriate. */
909 if (tty_flag) {
910 debug("Requesting pty.");
911
912 /* Start the packet. */
913 packet_start(SSH_CMSG_REQUEST_PTY);
914
915 /* Store TERM in the packet. There is no limit on the
916 length of the string. */
917 cp = getenv("TERM");
918 if (!cp)
919 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +0000920 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +1100921
922 /* Store window size in the packet. */
923 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
924 memset(&ws, 0, sizeof(ws));
925 packet_put_int(ws.ws_row);
926 packet_put_int(ws.ws_col);
927 packet_put_int(ws.ws_xpixel);
928 packet_put_int(ws.ws_ypixel);
929
930 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000931 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +1100932
933 /* Send the packet, and wait for it to leave. */
934 packet_send();
935 packet_write_wait();
936
937 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100938 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +1000939 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100940 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000941 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +1000942 } else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +1000943 logit("Warning: Remote host failed or refused to allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +1100944 else
945 packet_disconnect("Protocol error waiting for pty request response.");
946 }
947 /* Request X11 forwarding if enabled and DISPLAY is set. */
948 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000949 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +1000950 /* Get reasonable local authentication information. */
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000951 x11_get_proto(&proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +1000952 /* Request forwarding with authentication spoofing. */
Damien Miller95def091999-11-25 00:26:21 +1100953 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Millerbd483e72000-04-30 10:00:53 +1000954 x11_request_forwarding_with_spoofing(0, proto, data);
Damien Miller95def091999-11-25 00:26:21 +1100955
956 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100957 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100958 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100959 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000960 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +1000961 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +1000962 } else {
Damien Miller95def091999-11-25 00:26:21 +1100963 packet_disconnect("Protocol error waiting for X11 forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +1000964 }
Damien Miller95def091999-11-25 00:26:21 +1100965 }
966 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000967 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +1100968
969 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100970 check_agent_present();
971
Damien Miller95def091999-11-25 00:26:21 +1100972 if (options.forward_agent) {
973 debug("Requesting authentication agent forwarding.");
974 auth_request_forwarding();
975
976 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100977 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +1100978 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +1100979 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +1000980 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +1100981 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000982
Damien Miller0bc1bd82000-11-13 22:57:25 +1100983 /* Initiate port forwardings. */
984 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000985
Damien Miller5428f641999-11-25 11:54:57 +1100986 /* If requested, let ssh continue in the background. */
Damien Miller4af51302000-04-16 11:18:38 +1000987 if (fork_after_authentication_flag)
Damien Miller5428f641999-11-25 11:54:57 +1100988 if (daemon(1, 1) < 0)
989 fatal("daemon() failed: %.200s", strerror(errno));
990
991 /*
992 * If a command was specified on the command line, execute the
993 * command now. Otherwise request the server to start a shell.
994 */
Damien Miller95def091999-11-25 00:26:21 +1100995 if (buffer_len(&command) > 0) {
996 int len = buffer_len(&command);
997 if (len > 900)
998 len = 900;
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100999 debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +11001000 packet_start(SSH_CMSG_EXEC_CMD);
1001 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1002 packet_send();
1003 packet_write_wait();
1004 } else {
1005 debug("Requesting shell.");
1006 packet_start(SSH_CMSG_EXEC_SHELL);
1007 packet_send();
1008 packet_write_wait();
1009 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001010
Damien Miller95def091999-11-25 00:26:21 +11001011 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001012 return client_loop(have_tty, tty_flag ?
1013 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +10001014}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001015
Ben Lindstrombba81212001-06-25 05:01:22 +00001016static void
Damien Miller0e220db2004-06-15 10:34:08 +10001017ssh_subsystem_reply(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001018{
1019 int id, len;
1020
1021 id = packet_get_int();
1022 len = buffer_len(&command);
Ben Lindstrom4040fe12001-03-05 06:52:57 +00001023 if (len > 900)
1024 len = 900;
Damien Miller48b03fc2002-01-22 23:11:40 +11001025 packet_check_eom();
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001026 if (type == SSH2_MSG_CHANNEL_FAILURE)
1027 fatal("Request for subsystem '%.*s' failed on channel %d",
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001028 len, (u_char *)buffer_ptr(&command), id);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001029}
1030
Damien Miller2797f7f2002-04-23 21:09:44 +10001031void
Damien Miller509b0102003-12-17 16:33:10 +11001032client_global_request_reply_fwd(int type, u_int32_t seq, void *ctxt)
Damien Miller2797f7f2002-04-23 21:09:44 +10001033{
1034 int i;
1035
1036 i = client_global_request_id++;
Damien Miller509b0102003-12-17 16:33:10 +11001037 if (i >= options.num_remote_forwards)
Damien Miller2797f7f2002-04-23 21:09:44 +10001038 return;
Damien Miller2797f7f2002-04-23 21:09:44 +10001039 debug("remote forward %s for: listen %d, connect %s:%d",
1040 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
1041 options.remote_forwards[i].port,
1042 options.remote_forwards[i].host,
1043 options.remote_forwards[i].host_port);
1044 if (type == SSH2_MSG_REQUEST_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +10001045 logit("Warning: remote port forwarding failed for listen port %d",
Damien Miller2797f7f2002-04-23 21:09:44 +10001046 options.remote_forwards[i].port);
1047}
1048
Damien Miller0e220db2004-06-15 10:34:08 +10001049static void
1050ssh_control_listener(void)
1051{
1052 struct sockaddr_un addr;
1053 mode_t old_umask;
Damien Miller07b6ff12004-06-15 11:14:45 +10001054 int addr_len;
1055
Damien Miller23f07702004-06-18 01:19:03 +10001056 if (options.control_path == NULL || options.control_master <= 0)
Damien Miller0e220db2004-06-15 10:34:08 +10001057 return;
1058
1059 memset(&addr, '\0', sizeof(addr));
1060 addr.sun_family = AF_UNIX;
Damien Miller07b6ff12004-06-15 11:14:45 +10001061 addr_len = offsetof(struct sockaddr_un, sun_path) +
Damien Miller0e220db2004-06-15 10:34:08 +10001062 strlen(options.control_path) + 1;
1063
1064 if (strlcpy(addr.sun_path, options.control_path,
1065 sizeof(addr.sun_path)) >= sizeof(addr.sun_path))
1066 fatal("ControlPath too long");
1067
1068 if ((control_fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
1069 fatal("%s socket(): %s\n", __func__, strerror(errno));
1070
1071 old_umask = umask(0177);
Damien Miller07b6ff12004-06-15 11:14:45 +10001072 if (bind(control_fd, (struct sockaddr*)&addr, addr_len) == -1) {
Damien Miller0e220db2004-06-15 10:34:08 +10001073 control_fd = -1;
1074 if (errno == EINVAL)
1075 fatal("ControlSocket %s already exists",
1076 options.control_path);
1077 else
1078 fatal("%s bind(): %s\n", __func__, strerror(errno));
1079 }
1080 umask(old_umask);
1081
1082 if (listen(control_fd, 64) == -1)
1083 fatal("%s listen(): %s\n", __func__, strerror(errno));
1084
1085 set_nonblock(control_fd);
1086}
1087
Ben Lindstromf558cf62001-09-20 23:13:49 +00001088/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001089static void
Ben Lindstromf558cf62001-09-20 23:13:49 +00001090ssh_session2_setup(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001091{
Damien Miller3756dce2004-06-18 01:17:29 +10001092 extern char **environ;
1093
Damien Miller0e220db2004-06-15 10:34:08 +10001094 int interactive = tty_flag;
1095 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001096 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001097 /* Get reasonable local authentication information. */
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001098 x11_get_proto(&proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001099 /* Request forwarding with authentication spoofing. */
1100 debug("Requesting X11 forwarding with authentication spoofing.");
1101 x11_request_forwarding_with_spoofing(id, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001102 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001103 /* XXX wait for reply */
1104 }
1105
Damien Miller0bc1bd82000-11-13 22:57:25 +11001106 check_agent_present();
1107 if (options.forward_agent) {
1108 debug("Requesting authentication agent forwarding.");
1109 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1110 packet_send();
1111 }
1112
Damien Miller0e220db2004-06-15 10:34:08 +10001113 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
Damien Miller3756dce2004-06-18 01:17:29 +10001114 NULL, fileno(stdin), &command, environ, &ssh_subsystem_reply);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001115
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001116 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001117}
1118
Ben Lindstromf558cf62001-09-20 23:13:49 +00001119/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001120static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001121ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001122{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001123 Channel *c;
1124 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001125
Damien Millercaf6dd62000-08-29 11:33:50 +11001126 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001127 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001128 } else {
1129 in = dup(STDIN_FILENO);
1130 }
1131 out = dup(STDOUT_FILENO);
1132 err = dup(STDERR_FILENO);
1133
1134 if (in < 0 || out < 0 || err < 0)
1135 fatal("dup() in/out/err failed");
1136
Damien Miller69b69aa2000-10-28 14:19:58 +11001137 /* enable nonblocking unless tty */
1138 if (!isatty(in))
1139 set_nonblock(in);
1140 if (!isatty(out))
1141 set_nonblock(out);
1142 if (!isatty(err))
1143 set_nonblock(err);
1144
Damien Millere4340be2000-09-16 13:29:08 +11001145 window = CHAN_SES_WINDOW_DEFAULT;
1146 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001147 if (tty_flag) {
1148 window >>= 1;
1149 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001150 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001151 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001152 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001153 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001154 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001155
Ben Lindstromf558cf62001-09-20 23:13:49 +00001156 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001157
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001158 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001159 if (!no_shell_flag)
Damien Miller0e220db2004-06-15 10:34:08 +10001160 channel_register_confirm(c->self, ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001161
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001162 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001163}
1164
Ben Lindstrombba81212001-06-25 05:01:22 +00001165static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001166ssh_session2(void)
1167{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001168 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001169
1170 /* XXX should be pre-session */
1171 ssh_init_forwarding();
Damien Miller0e220db2004-06-15 10:34:08 +10001172 ssh_control_listener();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001173
Ben Lindstromf558cf62001-09-20 23:13:49 +00001174 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1175 id = ssh_session2_open();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001176
1177 /* If requested, let ssh continue in the background. */
1178 if (fork_after_authentication_flag)
1179 if (daemon(1, 1) < 0)
1180 fatal("daemon() failed: %.200s", strerror(errno));
1181
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001182 return client_loop(tty_flag, tty_flag ?
1183 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001184}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001185
Ben Lindstrombba81212001-06-25 05:01:22 +00001186static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001187load_public_identity_files(void)
1188{
1189 char *filename;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001190 int i = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001191 Key *public;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001192#ifdef SMARTCARD
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001193 Key **keys;
1194
Ben Lindstromf7db3bb2001-08-06 21:35:51 +00001195 if (options.smartcard_device != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001196 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
1197 (keys = sc_get_keys(options.smartcard_device, NULL)) != NULL ) {
1198 int count = 0;
1199 for (i = 0; keys[i] != NULL; i++) {
1200 count++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001201 memmove(&options.identity_files[1], &options.identity_files[0],
1202 sizeof(char *) * (SSH_MAX_IDENTITY_FILES - 1));
1203 memmove(&options.identity_keys[1], &options.identity_keys[0],
1204 sizeof(Key *) * (SSH_MAX_IDENTITY_FILES - 1));
1205 options.num_identity_files++;
1206 options.identity_keys[0] = keys[i];
Damien Miller56a0bb02003-06-18 20:28:40 +10001207 options.identity_files[0] = sc_get_key_label(keys[i]);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001208 }
Ben Lindstrom4f054602002-03-26 03:23:00 +00001209 if (options.num_identity_files > SSH_MAX_IDENTITY_FILES)
1210 options.num_identity_files = SSH_MAX_IDENTITY_FILES;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001211 i = count;
1212 xfree(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001213 }
Ben Lindstromffce1472001-08-06 21:57:31 +00001214#endif /* SMARTCARD */
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001215 for (; i < options.num_identity_files; i++) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001216 filename = tilde_expand_filename(options.identity_files[i],
1217 original_real_uid);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001218 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001219 debug("identity file %s type %d", filename,
1220 public ? public->type : -1);
1221 xfree(options.identity_files[i]);
1222 options.identity_files[i] = filename;
1223 options.identity_keys[i] = public;
1224 }
1225}
Damien Miller0e220db2004-06-15 10:34:08 +10001226
1227static void
1228control_client_sighandler(int signo)
1229{
1230 control_client_terminate = signo;
1231}
1232
1233static void
1234control_client_sigrelay(int signo)
1235{
1236 if (control_server_pid > 1)
1237 kill(control_server_pid, signo);
1238}
1239
Darren Tucker365433f2004-06-22 12:29:23 +10001240static int
1241env_permitted(char *env)
1242{
1243 int i;
1244 char name[1024], *cp;
1245
1246 strlcpy(name, env, sizeof(name));
1247 if ((cp = strchr(name, '=')) == NULL)
1248 return (0);
1249
1250 *cp = '\0';
1251
1252 for (i = 0; i < options.num_send_env; i++)
1253 if (match_pattern(name, options.send_env[i]))
1254 return (1);
1255
1256 return (0);
1257}
1258
Damien Miller0e220db2004-06-15 10:34:08 +10001259static void
1260control_client(const char *path)
1261{
1262 struct sockaddr_un addr;
Darren Tucker39207a42004-11-05 20:19:51 +11001263 int i, r, fd, sock, exitval, num_env, addr_len;
Damien Miller0e220db2004-06-15 10:34:08 +10001264 Buffer m;
Darren Tucker7ebfc102004-11-07 20:06:19 +11001265 char *term;
Damien Miller3756dce2004-06-18 01:17:29 +10001266 extern char **environ;
Darren Tucker7ebfc102004-11-07 20:06:19 +11001267 u_int flags;
Darren Tuckerfc959702004-07-17 16:12:08 +10001268
Darren Tucker39207a42004-11-05 20:19:51 +11001269 if (stdin_null_flag) {
1270 if ((fd = open(_PATH_DEVNULL, O_RDONLY)) == -1)
1271 fatal("open(/dev/null): %s", strerror(errno));
1272 if (dup2(fd, STDIN_FILENO) == -1)
1273 fatal("dup2: %s", strerror(errno));
1274 if (fd > STDERR_FILENO)
1275 close(fd);
1276 }
1277
Damien Miller0e220db2004-06-15 10:34:08 +10001278 memset(&addr, '\0', sizeof(addr));
1279 addr.sun_family = AF_UNIX;
Damien Miller07b6ff12004-06-15 11:14:45 +10001280 addr_len = offsetof(struct sockaddr_un, sun_path) +
Damien Miller0e220db2004-06-15 10:34:08 +10001281 strlen(path) + 1;
1282
1283 if (strlcpy(addr.sun_path, path,
1284 sizeof(addr.sun_path)) >= sizeof(addr.sun_path))
1285 fatal("ControlPath too long");
1286
1287 if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
1288 fatal("%s socket(): %s", __func__, strerror(errno));
1289
Damien Miller07b6ff12004-06-15 11:14:45 +10001290 if (connect(sock, (struct sockaddr*)&addr, addr_len) == -1)
Damien Miller0e220db2004-06-15 10:34:08 +10001291 fatal("Couldn't connect to %s: %s", path, strerror(errno));
1292
Darren Tucker7ebfc102004-11-07 20:06:19 +11001293 if ((term = getenv("TERM")) == NULL)
1294 term = "";
1295
1296 flags = 0;
1297 if (tty_flag)
1298 flags |= SSHMUX_FLAG_TTY;
1299 if (subsystem_flag)
1300 flags |= SSHMUX_FLAG_SUBSYS;
Damien Miller0e220db2004-06-15 10:34:08 +10001301
Damien Miller0e220db2004-06-15 10:34:08 +10001302 buffer_init(&m);
1303
Darren Tucker7ebfc102004-11-07 20:06:19 +11001304 /* Send our command to server */
1305 buffer_put_int(&m, mux_command);
1306 buffer_put_int(&m, flags);
1307 if (ssh_msg_send(sock, /* version */1, &m) == -1)
1308 fatal("%s: msg_send", __func__);
1309 buffer_clear(&m);
1310
1311 /* Get authorisation status and PID of controlee */
Damien Miller0e220db2004-06-15 10:34:08 +10001312 if (ssh_msg_recv(sock, &m) == -1)
1313 fatal("%s: msg_recv", __func__);
Darren Tucker7ebfc102004-11-07 20:06:19 +11001314 if (buffer_get_char(&m) != 1)
Damien Miller0e220db2004-06-15 10:34:08 +10001315 fatal("%s: wrong version", __func__);
Damien Miller23f07702004-06-18 01:19:03 +10001316 if (buffer_get_int(&m) != 1)
1317 fatal("Connection to master denied");
Damien Miller0e220db2004-06-15 10:34:08 +10001318 control_server_pid = buffer_get_int(&m);
1319
Damien Miller0e220db2004-06-15 10:34:08 +10001320 buffer_clear(&m);
Damien Miller0e220db2004-06-15 10:34:08 +10001321
Darren Tucker7ebfc102004-11-07 20:06:19 +11001322 switch (mux_command) {
1323 case SSHMUX_COMMAND_ALIVE_CHECK:
1324 fprintf(stderr, "Master running (pid=%d)\r\n",
1325 control_server_pid);
1326 exit(0);
1327 case SSHMUX_COMMAND_TERMINATE:
1328 fprintf(stderr, "Exit request sent.\r\n");
1329 exit(0);
1330 case SSHMUX_COMMAND_OPEN:
1331 /* continue below */
1332 break;
1333 default:
1334 fatal("silly mux_command %d", mux_command);
1335 }
1336
1337 /* SSHMUX_COMMAND_OPEN */
1338 buffer_put_cstring(&m, term);
Damien Miller0e220db2004-06-15 10:34:08 +10001339 buffer_append(&command, "\0", 1);
1340 buffer_put_cstring(&m, buffer_ptr(&command));
1341
Darren Tucker365433f2004-06-22 12:29:23 +10001342 if (options.num_send_env == 0 || environ == NULL) {
1343 buffer_put_int(&m, 0);
Darren Tuckerfc959702004-07-17 16:12:08 +10001344 } else {
Darren Tucker365433f2004-06-22 12:29:23 +10001345 /* Pass environment */
1346 num_env = 0;
1347 for (i = 0; environ[i] != NULL; i++)
1348 if (env_permitted(environ[i]))
1349 num_env++; /* Count */
Darren Tuckerfc959702004-07-17 16:12:08 +10001350
Darren Tucker365433f2004-06-22 12:29:23 +10001351 buffer_put_int(&m, num_env);
1352
Darren Tuckerb5bc1a62004-06-24 00:34:53 +10001353 for (i = 0; environ[i] != NULL && num_env >= 0; i++)
1354 if (env_permitted(environ[i])) {
1355 num_env--;
Darren Tucker365433f2004-06-22 12:29:23 +10001356 buffer_put_cstring(&m, environ[i]);
Darren Tuckerb5bc1a62004-06-24 00:34:53 +10001357 }
Darren Tucker365433f2004-06-22 12:29:23 +10001358 }
Damien Miller3756dce2004-06-18 01:17:29 +10001359
Darren Tucker7ebfc102004-11-07 20:06:19 +11001360 if (ssh_msg_send(sock, /* version */1, &m) == -1)
Damien Miller0e220db2004-06-15 10:34:08 +10001361 fatal("%s: msg_send", __func__);
1362
1363 mm_send_fd(sock, STDIN_FILENO);
1364 mm_send_fd(sock, STDOUT_FILENO);
1365 mm_send_fd(sock, STDERR_FILENO);
1366
1367 /* Wait for reply, so master has a chance to gather ttymodes */
1368 buffer_clear(&m);
1369 if (ssh_msg_recv(sock, &m) == -1)
1370 fatal("%s: msg_recv", __func__);
Darren Tucker7ebfc102004-11-07 20:06:19 +11001371 if (buffer_get_char(&m) != 1)
1372 fatal("%s: wrong version", __func__);
Damien Miller0e220db2004-06-15 10:34:08 +10001373 buffer_free(&m);
1374
Darren Tucker07336da2004-11-05 20:02:16 +11001375 signal(SIGHUP, control_client_sighandler);
Damien Miller0809e232004-06-18 22:20:57 +10001376 signal(SIGINT, control_client_sighandler);
1377 signal(SIGTERM, control_client_sighandler);
1378 signal(SIGWINCH, control_client_sigrelay);
1379
Damien Miller0e220db2004-06-15 10:34:08 +10001380 if (tty_flag)
1381 enter_raw_mode();
1382
1383 /* Stick around until the controlee closes the client_fd */
1384 exitval = 0;
1385 for (;!control_client_terminate;) {
1386 r = read(sock, &exitval, sizeof(exitval));
1387 if (r == 0) {
1388 debug2("Received EOF from master");
1389 break;
1390 }
1391 if (r > 0)
1392 debug2("Received exit status from master %d", exitval);
1393 if (r == -1 && errno != EINTR)
1394 fatal("%s: read %s", __func__, strerror(errno));
1395 }
1396
1397 if (control_client_terminate)
1398 debug2("Exiting on signal %d", control_client_terminate);
1399
1400 close(sock);
1401
1402 leave_raw_mode();
1403
1404 if (tty_flag && options.log_level != SYSLOG_LEVEL_QUIET)
1405 fprintf(stderr, "Connection to master closed.\r\n");
1406
1407 exit(exitval);
1408}