blob: ac537338c1474d19a56589ee59bc8c458b2def7b [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 Tucker9c6bf322004-12-03 14:10:19 +110043RCSID("$OpenBSD: ssh.c,v 1.230 2004/11/07 17:57:30 jmc 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 "
300 "does not exist.\n", optarg);
Damien Miller95def091999-11-25 00:26:21 +1100301 break;
302 }
Damien Millerf4614452001-07-14 12:18:10 +1000303 if (options.num_identity_files >=
304 SSH_MAX_IDENTITY_FILES)
305 fatal("Too many identity files specified "
306 "(max %d)", SSH_MAX_IDENTITY_FILES);
307 options.identity_files[options.num_identity_files++] =
308 xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100309 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000310 case 'I':
311#ifdef SMARTCARD
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000312 options.smartcard_device = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000313#else
Ben Lindstromc5b68002001-07-04 04:52:03 +0000314 fprintf(stderr, "no support for smartcards.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000315#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000316 break;
Damien Miller95def091999-11-25 00:26:21 +1100317 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000318 if (tty_flag)
319 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100320 tty_flag = 1;
321 break;
Damien Miller95def091999-11-25 00:26:21 +1100322 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000323 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100324 debug_flag = 1;
325 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000326 } else {
327 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
328 options.log_level++;
Damien Millere4340be2000-09-16 13:29:08 +1100329 break;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000330 }
Darren Tuckere9bf9842004-11-05 20:05:32 +1100331 /* FALLTHROUGH */
Damien Miller95def091999-11-25 00:26:21 +1100332 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100333 fprintf(stderr, "%s, %s\n",
Damien Miller2aa6d3c2004-09-12 16:53:04 +1000334 SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
Damien Miller95def091999-11-25 00:26:21 +1100335 if (opt == 'V')
336 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100337 break;
Damien Miller95def091999-11-25 00:26:21 +1100338 case 'q':
339 options.log_level = SYSLOG_LEVEL_QUIET;
340 break;
Damien Miller95def091999-11-25 00:26:21 +1100341 case 'e':
342 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000343 (u_char) optarg[1] >= 64 &&
344 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000345 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100346 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000347 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100348 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000349 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100350 else {
Damien Millerf4614452001-07-14 12:18:10 +1000351 fprintf(stderr, "Bad escape character '%s'.\n",
352 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100353 exit(1);
354 }
355 break;
Damien Miller95def091999-11-25 00:26:21 +1100356 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000357 if (ciphers_valid(optarg)) {
358 /* SSH2 only */
359 options.ciphers = xstrdup(optarg);
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000360 options.cipher = SSH_CIPHER_INVALID;
Damien Millereba71ba2000-04-29 23:57:08 +1000361 } else {
362 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100363 options.cipher = cipher_number(optarg);
364 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000365 fprintf(stderr,
366 "Unknown cipher type '%s'\n",
367 optarg);
Damien Millereba71ba2000-04-29 23:57:08 +1000368 exit(1);
369 }
Damien Millerf4614452001-07-14 12:18:10 +1000370 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100371 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000372 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100373 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000374 else
Damien Millere39cacc2000-11-29 12:18:44 +1100375 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100376 }
377 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000378 case 'm':
379 if (mac_valid(optarg))
380 options.macs = xstrdup(optarg);
381 else {
Damien Millerf4614452001-07-14 12:18:10 +1000382 fprintf(stderr, "Unknown mac type '%s'\n",
383 optarg);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000384 exit(1);
385 }
386 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000387 case 'M':
Damien Millerb8ea2482004-06-18 22:21:55 +1000388 options.control_master =
389 (options.control_master >= 1) ? 2 : 1;
Damien Miller0e220db2004-06-15 10:34:08 +1000390 break;
Damien Miller95def091999-11-25 00:26:21 +1100391 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000392 options.port = a2port(optarg);
393 if (options.port == 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000394 fprintf(stderr, "Bad port '%s'\n", optarg);
395 exit(1);
396 }
Damien Miller95def091999-11-25 00:26:21 +1100397 break;
Damien Miller95def091999-11-25 00:26:21 +1100398 case 'l':
399 options.user = optarg;
400 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000401
Damien Miller95def091999-11-25 00:26:21 +1100402 case 'L':
Ben Lindstrom1a174712001-09-12 17:56:15 +0000403 case 'R':
Damien Miller1ea71662003-05-14 22:33:58 +1000404 if (sscanf(optarg, "%5[0123456789]:%255[^:]:%5[0123456789]",
Ben Lindstrom1a174712001-09-12 17:56:15 +0000405 sfwd_port, buf, sfwd_host_port) != 3 &&
Damien Miller1ea71662003-05-14 22:33:58 +1000406 sscanf(optarg, "%5[0123456789]/%255[^/]/%5[0123456789]",
Ben Lindstrom1a174712001-09-12 17:56:15 +0000407 sfwd_port, buf, sfwd_host_port) != 3) {
Damien Millerf4614452001-07-14 12:18:10 +1000408 fprintf(stderr,
Ben Lindstrom1a174712001-09-12 17:56:15 +0000409 "Bad forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000410 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100411 usage();
412 /* NOTREACHED */
413 }
Ben Lindstrom1a174712001-09-12 17:56:15 +0000414 if ((fwd_port = a2port(sfwd_port)) == 0 ||
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000415 (fwd_host_port = a2port(sfwd_host_port)) == 0) {
Ben Lindstrom1a174712001-09-12 17:56:15 +0000416 fprintf(stderr,
417 "Bad forwarding port(s) '%s'\n", optarg);
418 exit(1);
419 }
420 if (opt == 'L')
421 add_local_forward(&options, fwd_port, buf,
422 fwd_host_port);
423 else if (opt == 'R')
424 add_remote_forward(&options, fwd_port, buf,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100425 fwd_host_port);
Damien Miller95def091999-11-25 00:26:21 +1100426 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000427
428 case 'D':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000429 fwd_port = a2port(optarg);
430 if (fwd_port == 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000431 fprintf(stderr, "Bad dynamic port '%s'\n",
432 optarg);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000433 exit(1);
434 }
Darren Tucker1c52ee32003-08-13 20:38:36 +1000435 add_local_forward(&options, fwd_port, "socks", 0);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000436 break;
437
Damien Miller95def091999-11-25 00:26:21 +1100438 case 'C':
439 options.compression = 1;
440 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000441 case 'N':
442 no_shell_flag = 1;
443 no_tty_flag = 1;
444 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000445 case 'T':
446 no_tty_flag = 1;
447 break;
Damien Miller95def091999-11-25 00:26:21 +1100448 case 'o':
449 dummy = 1;
Damien Miller9836cf82003-12-17 16:30:06 +1100450 line = xstrdup(optarg);
Damien Millerf4614452001-07-14 12:18:10 +1000451 if (process_config_line(&options, host ? host : "",
Damien Miller9836cf82003-12-17 16:30:06 +1100452 line, "command-line", 0, &dummy) != 0)
Damien Miller95def091999-11-25 00:26:21 +1100453 exit(1);
Damien Miller9836cf82003-12-17 16:30:06 +1100454 xfree(line);
Damien Miller95def091999-11-25 00:26:21 +1100455 break;
Damien Miller832562e2001-01-30 09:30:01 +1100456 case 's':
457 subsystem_flag = 1;
458 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000459 case 'S':
460 if (options.control_path != NULL)
461 free(options.control_path);
462 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000463 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000464 case 'b':
465 options.bind_address = optarg;
466 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000467 case 'F':
468 config = optarg;
469 break;
Damien Miller95def091999-11-25 00:26:21 +1100470 default:
471 usage();
472 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000473 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000474
Damien Millerf4614452001-07-14 12:18:10 +1000475 ac -= optind;
476 av += optind;
477
478 if (ac > 0 && !host && **av != '-') {
Ben Lindstromc276c122002-12-23 02:14:51 +0000479 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000480 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000481 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000482 if (cp == NULL || cp == p)
483 usage();
484 options.user = p;
485 *cp = '\0';
486 host = ++cp;
487 } else
488 host = *av;
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000489 if (ac > 1) {
490 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000491 goto again;
492 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000493 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000494 }
495
Damien Miller95def091999-11-25 00:26:21 +1100496 /* Check that we got a host name. */
497 if (!host)
498 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000499
Damien Millercb5e44a2000-09-29 12:12:36 +1100500 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100501 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100502
Damien Miller95def091999-11-25 00:26:21 +1100503 /* Initialize the command to execute on remote host. */
504 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000505
Damien Miller5428f641999-11-25 11:54:57 +1100506 /*
507 * Save the command to execute on the remote host in a buffer. There
508 * is no limit on the length of the command, except by the maximum
509 * packet size. Also sets the tty flag if there is no command.
510 */
Damien Millerf4614452001-07-14 12:18:10 +1000511 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100512 /* No command specified - execute shell on a tty. */
513 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100514 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000515 fprintf(stderr,
516 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100517 usage();
518 }
Damien Miller95def091999-11-25 00:26:21 +1100519 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000520 /* A command has been specified. Store it into the buffer. */
521 for (i = 0; i < ac; i++) {
522 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100523 buffer_append(&command, " ", 1);
524 buffer_append(&command, av[i], strlen(av[i]));
525 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000526 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000527
Damien Miller95def091999-11-25 00:26:21 +1100528 /* Cannot fork to background if no command. */
Damien Millercaf6dd62000-08-29 11:33:50 +1100529 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
Damien Miller95def091999-11-25 00:26:21 +1100530 fatal("Cannot fork into background without a command to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000531
Damien Miller95def091999-11-25 00:26:21 +1100532 /* Allocate a tty by default if no command specified. */
533 if (buffer_len(&command) == 0)
534 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000535
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000536 /* Force no tty */
Ben Lindstromc72745a2000-12-02 19:03:54 +0000537 if (no_tty_flag)
538 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100539 /* Do not allocate a tty if stdin is not a tty. */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000540 if (!isatty(fileno(stdin)) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100541 if (tty_flag)
Damien Miller996acd22003-04-09 20:59:48 +1000542 logit("Pseudo-terminal will not be allocated because stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100543 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000544 }
Damien Miller1383bd82000-04-06 12:32:37 +1000545
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000546 /*
547 * Initialize "log" output. Since we are the client all output
548 * actually goes to stderr.
549 */
Ben Lindstrom2b646522001-04-12 16:16:57 +0000550 log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
551 SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000552
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000553 /*
554 * Read per-user configuration file. Ignore the system wide config
555 * file if the user specifies a config file on the command line.
556 */
557 if (config != NULL) {
Damien Miller914420f2004-04-20 20:14:07 +1000558 if (!read_config_file(config, host, &options, 0))
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000559 fatal("Can't open user config file %.100s: "
560 "%.100s", config, strerror(errno));
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000561 } else {
562 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,
563 _PATH_SSH_USER_CONFFILE);
Damien Miller57a44762004-04-20 20:11:57 +1000564 (void)read_config_file(buf, host, &options, 1);
Ben Lindstrom83f07d12001-10-03 17:22:29 +0000565
566 /* Read systemwide configuration file after use config. */
Darren Tuckerfc959702004-07-17 16:12:08 +1000567 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host,
Damien Miller57a44762004-04-20 20:11:57 +1000568 &options, 0);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000569 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000570
Damien Miller95def091999-11-25 00:26:21 +1100571 /* Fill configuration defaults. */
572 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000573
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000574 channel_set_af(options.address_family);
575
Damien Miller95def091999-11-25 00:26:21 +1100576 /* reinit */
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000577 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000578
Damien Miller60bc5172001-03-19 09:38:15 +1100579 seed_rng();
580
Damien Miller95def091999-11-25 00:26:21 +1100581 if (options.user == NULL)
582 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000583
Damien Miller95def091999-11-25 00:26:21 +1100584 if (options.hostname != NULL)
585 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000586
Darren Tucker3f521e22003-07-03 16:20:42 +1000587 /* force lowercase for hostkey matching */
588 if (options.host_key_alias != NULL) {
589 for (p = options.host_key_alias; *p; p++)
590 if (isupper(*p))
591 *p = tolower(*p);
592 }
593
Damien Miller9f1e33a2003-02-24 11:57:32 +1100594 if (options.proxy_command != NULL &&
595 strcmp(options.proxy_command, "none") == 0)
596 options.proxy_command = NULL;
597
Damien Miller0e220db2004-06-15 10:34:08 +1000598 if (options.control_path != NULL) {
599 options.control_path = tilde_expand_filename(
600 options.control_path, original_real_uid);
601 }
602 if (options.control_path != NULL && options.control_master == 0)
603 control_client(options.control_path); /* This doesn't return */
604
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000605 /* Open a connection to the remote host. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000606 if (ssh_connect(host, &hostaddr, options.port,
607 options.address_family, options.connection_attempts,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000608#ifdef HAVE_CYGWIN
609 options.use_privileged_port,
610#else
Ben Lindstromf9c48842002-06-11 16:37:51 +0000611 original_effective_uid == 0 && options.use_privileged_port,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000612#endif
Ben Lindstromda394ca2002-06-12 16:11:12 +0000613 options.proxy_command) != 0)
Ben Lindstrom24157572002-06-12 16:09:39 +0000614 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000615
Damien Miller5428f641999-11-25 11:54:57 +1100616 /*
617 * If we successfully made the connection, load the host private key
618 * in case we will need it later for combined rsa-rhosts
619 * authentication. This must be done before releasing extra
620 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +0000621 * If we cannot access the private keys, load the public keys
622 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +1100623 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000624 sensitive_data.nkeys = 0;
625 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000626 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +0000627 if (options.rhosts_rsa_authentication ||
628 options.hostbased_authentication) {
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000629 sensitive_data.nkeys = 3;
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000630 sensitive_data.keys = xmalloc(sensitive_data.nkeys *
631 sizeof(Key));
Ben Lindstromf9c48842002-06-11 16:37:51 +0000632
633 PRIV_START;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000634 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Ben Lindstromd0fca422001-03-26 13:44:06 +0000635 _PATH_HOST_KEY_FILE, "", NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000636 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
637 _PATH_HOST_DSA_KEY_FILE, "", NULL);
638 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
639 _PATH_HOST_RSA_KEY_FILE, "", NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +0000640 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000641
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +0000642 if (options.hostbased_authentication == 1 &&
643 sensitive_data.keys[0] == NULL &&
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000644 sensitive_data.keys[1] == NULL &&
645 sensitive_data.keys[2] == NULL) {
646 sensitive_data.keys[1] = key_load_public(
647 _PATH_HOST_DSA_KEY_FILE, NULL);
648 sensitive_data.keys[2] = key_load_public(
649 _PATH_HOST_RSA_KEY_FILE, NULL);
650 sensitive_data.external_keysign = 1;
651 }
Damien Miller95def091999-11-25 00:26:21 +1100652 }
Damien Miller5428f641999-11-25 11:54:57 +1100653 /*
654 * Get rid of any extra privileges that we may have. We will no
655 * longer need them. Also, extra privileges could make it very hard
656 * to read identity files and other non-world-readable files from the
657 * user's home directory if it happens to be on a NFS volume where
658 * root is mapped to nobody.
659 */
Darren Tucker25f60a72004-08-15 17:23:34 +1000660 if (original_effective_uid == 0) {
661 PRIV_START;
662 permanently_set_uid(pw);
663 }
Damien Miller95def091999-11-25 00:26:21 +1100664
Damien Miller5428f641999-11-25 11:54:57 +1100665 /*
666 * Now that we are back to our own permissions, create ~/.ssh
667 * directory if it doesn\'t already exist.
668 */
Ben Lindstrom930b14a2001-08-15 23:19:21 +0000669 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 +1100670 if (stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000671 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100672 error("Could not create directory '%.200s'.", buf);
673
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000674 /* load options.identity_files */
675 load_public_identity_files();
676
677 /* Expand ~ in known host file names. */
678 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100679 options.system_hostfile =
680 tilde_expand_filename(options.system_hostfile, original_real_uid);
681 options.user_hostfile =
682 tilde_expand_filename(options.user_hostfile, original_real_uid);
683 options.system_hostfile2 =
684 tilde_expand_filename(options.system_hostfile2, original_real_uid);
685 options.user_hostfile2 =
686 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100687
Damien Miller07cd5892001-11-12 10:52:03 +1100688 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
689
Damien Miller95def091999-11-25 00:26:21 +1100690 /* Log into the remote system. This never returns if the login fails. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000691 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr, pw);
Damien Miller95def091999-11-25 00:26:21 +1100692
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000693 /* We no longer need the private host keys. Clear them now. */
694 if (sensitive_data.nkeys != 0) {
695 for (i = 0; i < sensitive_data.nkeys; i++) {
696 if (sensitive_data.keys[i] != NULL) {
697 /* Destroys contents safely */
698 debug3("clear hostkey %d", i);
699 key_free(sensitive_data.keys[i]);
700 sensitive_data.keys[i] = NULL;
701 }
702 }
703 xfree(sensitive_data.keys);
704 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000705 for (i = 0; i < options.num_identity_files; i++) {
706 if (options.identity_files[i]) {
707 xfree(options.identity_files[i]);
708 options.identity_files[i] = NULL;
709 }
710 if (options.identity_keys[i]) {
711 key_free(options.identity_keys[i]);
712 options.identity_keys[i] = NULL;
713 }
714 }
Damien Miller95def091999-11-25 00:26:21 +1100715
Damien Miller1383bd82000-04-06 12:32:37 +1000716 exit_status = compat20 ? ssh_session2() : ssh_session();
717 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +1000718
Damien Miller0e220db2004-06-15 10:34:08 +1000719 if (options.control_path != NULL && control_fd != -1)
720 unlink(options.control_path);
721
Damien Miller8c4e18a2002-09-19 12:05:02 +1000722 /*
Damien Millera8e06ce2003-11-21 23:48:55 +1100723 * Send SIGHUP to proxy command if used. We don't wait() in
Damien Miller8c4e18a2002-09-19 12:05:02 +1000724 * case it hangs and instead rely on init to reap the child
725 */
726 if (proxy_command_pid > 1)
727 kill(proxy_command_pid, SIGHUP);
728
Damien Miller1383bd82000-04-06 12:32:37 +1000729 return exit_status;
730}
731
Darren Tucker0a118da2003-10-15 15:54:32 +1000732#define SSH_X11_PROTO "MIT-MAGIC-COOKIE-1"
733
Ben Lindstrombba81212001-06-25 05:01:22 +0000734static void
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000735x11_get_proto(char **_proto, char **_data)
Damien Millerbd483e72000-04-30 10:00:53 +1000736{
Darren Tucker0a118da2003-10-15 15:54:32 +1000737 char cmd[1024];
Damien Millerbd483e72000-04-30 10:00:53 +1000738 char line[512];
Darren Tucker0a118da2003-10-15 15:54:32 +1000739 char xdisplay[512];
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000740 static char proto[512], data[512];
Damien Millerbd483e72000-04-30 10:00:53 +1000741 FILE *f;
Darren Tucker0a118da2003-10-15 15:54:32 +1000742 int got_data = 0, generated = 0, do_unlink = 0, i;
743 char *display, *xauthdir, *xauthfile;
Ben Lindstromee8d52d2002-07-23 21:03:02 +0000744 struct stat st;
Damien Millerbd483e72000-04-30 10:00:53 +1000745
Darren Tucker0a118da2003-10-15 15:54:32 +1000746 xauthdir = xauthfile = NULL;
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000747 *_proto = proto;
748 *_data = data;
749 proto[0] = data[0] = '\0';
Darren Tucker0a118da2003-10-15 15:54:32 +1000750
Ben Lindstromee8d52d2002-07-23 21:03:02 +0000751 if (!options.xauth_location ||
752 (stat(options.xauth_location, &st) == -1)) {
753 debug("No xauth program.");
754 } else {
755 if ((display = getenv("DISPLAY")) == NULL) {
756 debug("x11_get_proto: DISPLAY not set");
757 return;
758 }
Darren Tucker0a118da2003-10-15 15:54:32 +1000759 /*
760 * Handle FamilyLocal case where $DISPLAY does
761 * not match an authorization entry. For this we
762 * just try "xauth list unix:displaynum.screennum".
763 * XXX: "localhost" match to determine FamilyLocal
764 * is not perfect.
765 */
766 if (strncmp(display, "localhost:", 10) == 0) {
767 snprintf(xdisplay, sizeof(xdisplay), "unix:%s",
768 display + 10);
769 display = xdisplay;
770 }
771 if (options.forward_x11_trusted == 0) {
772 xauthdir = xmalloc(MAXPATHLEN);
773 xauthfile = xmalloc(MAXPATHLEN);
774 strlcpy(xauthdir, "/tmp/ssh-XXXXXXXXXX", MAXPATHLEN);
775 if (mkdtemp(xauthdir) != NULL) {
776 do_unlink = 1;
777 snprintf(xauthfile, MAXPATHLEN, "%s/xauthfile",
778 xauthdir);
779 snprintf(cmd, sizeof(cmd),
780 "%s -f %s generate %s " SSH_X11_PROTO
Damien Miller3df755e2004-03-22 09:34:26 +1100781 " untrusted timeout 1200 2>" _PATH_DEVNULL,
Darren Tucker0a118da2003-10-15 15:54:32 +1000782 options.xauth_location, xauthfile, display);
783 debug2("x11_get_proto: %s", cmd);
784 if (system(cmd) == 0)
785 generated = 1;
786 }
787 }
788 snprintf(cmd, sizeof(cmd),
789 "%s %s%s list %s . 2>" _PATH_DEVNULL,
790 options.xauth_location,
791 generated ? "-f " : "" ,
792 generated ? xauthfile : "",
793 display);
794 debug2("x11_get_proto: %s", cmd);
795 f = popen(cmd, "r");
Damien Millerd3a18572000-06-07 19:55:44 +1000796 if (f && fgets(line, sizeof(line), f) &&
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000797 sscanf(line, "%*s %511s %511s", proto, data) == 2)
Damien Millerd3a18572000-06-07 19:55:44 +1000798 got_data = 1;
799 if (f)
800 pclose(f);
801 }
Darren Tucker0a118da2003-10-15 15:54:32 +1000802
803 if (do_unlink) {
804 unlink(xauthfile);
805 rmdir(xauthdir);
806 }
807 if (xauthdir)
808 xfree(xauthdir);
809 if (xauthfile)
810 xfree(xauthfile);
811
Damien Millerbd483e72000-04-30 10:00:53 +1000812 /*
813 * If we didn't get authentication data, just make up some
814 * data. The forwarding code will check the validity of the
815 * response anyway, and substitute this data. The X11
816 * server, however, will ignore this fake data and use
817 * whatever authentication mechanisms it was using otherwise
818 * for the local connection.
819 */
820 if (!got_data) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000821 u_int32_t rnd = 0;
Damien Millerbd483e72000-04-30 10:00:53 +1000822
Darren Tucker0a118da2003-10-15 15:54:32 +1000823 logit("Warning: No xauth data; "
824 "using fake authentication data for X11 forwarding.");
825 strlcpy(proto, SSH_X11_PROTO, sizeof proto);
Damien Millerbd483e72000-04-30 10:00:53 +1000826 for (i = 0; i < 16; i++) {
827 if (i % 4 == 0)
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000828 rnd = arc4random();
Darren Tucker0a118da2003-10-15 15:54:32 +1000829 snprintf(data + 2 * i, sizeof data - 2 * i, "%02x",
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000830 rnd & 0xff);
831 rnd >>= 8;
Damien Millerbd483e72000-04-30 10:00:53 +1000832 }
833 }
834}
835
Ben Lindstrombba81212001-06-25 05:01:22 +0000836static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100837ssh_init_forwarding(void)
838{
Kevin Steves12057502001-02-05 14:54:34 +0000839 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100840 int i;
Kevin Steves12057502001-02-05 14:54:34 +0000841
Damien Miller0bc1bd82000-11-13 22:57:25 +1100842 /* Initiate local TCP/IP port forwardings. */
843 for (i = 0; i < options.num_local_forwards; i++) {
844 debug("Connections to local port %d forwarded to remote address %.200s:%d",
845 options.local_forwards[i].port,
846 options.local_forwards[i].host,
847 options.local_forwards[i].host_port);
Damien Millerb16461c2002-01-22 23:29:22 +1100848 success += channel_setup_local_fwd_listener(
Damien Miller0bc1bd82000-11-13 22:57:25 +1100849 options.local_forwards[i].port,
850 options.local_forwards[i].host,
851 options.local_forwards[i].host_port,
852 options.gateway_ports);
853 }
Kevin Steves12057502001-02-05 14:54:34 +0000854 if (i > 0 && success == 0)
855 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100856
857 /* Initiate remote TCP/IP port forwardings. */
858 for (i = 0; i < options.num_remote_forwards; i++) {
859 debug("Connections to remote port %d forwarded to local address %.200s:%d",
860 options.remote_forwards[i].port,
861 options.remote_forwards[i].host,
862 options.remote_forwards[i].host_port);
863 channel_request_remote_forwarding(
864 options.remote_forwards[i].port,
865 options.remote_forwards[i].host,
866 options.remote_forwards[i].host_port);
867 }
868}
869
Ben Lindstrombba81212001-06-25 05:01:22 +0000870static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100871check_agent_present(void)
872{
873 if (options.forward_agent) {
874 /* Clear agent forwarding if we don\'t have an agent. */
Damien Miller789e95d2002-09-12 09:52:46 +1000875 if (!ssh_agent_present())
Damien Miller0bc1bd82000-11-13 22:57:25 +1100876 options.forward_agent = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100877 }
878}
879
Ben Lindstrombba81212001-06-25 05:01:22 +0000880static int
Damien Miller1383bd82000-04-06 12:32:37 +1000881ssh_session(void)
882{
883 int type;
Damien Miller1383bd82000-04-06 12:32:37 +1000884 int interactive = 0;
885 int have_tty = 0;
886 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +1000887 char *cp;
888
Damien Miller95def091999-11-25 00:26:21 +1100889 /* Enable compression if requested. */
890 if (options.compression) {
891 debug("Requesting compression at level %d.", options.compression_level);
892
893 if (options.compression_level < 1 || options.compression_level > 9)
894 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
895
896 /* Send the request. */
897 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
898 packet_put_int(options.compression_level);
899 packet_send();
900 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +1100901 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100902 if (type == SSH_SMSG_SUCCESS)
903 packet_start_compression(options.compression_level);
904 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +1000905 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +1100906 else
907 packet_disconnect("Protocol error waiting for compression response.");
908 }
909 /* Allocate a pseudo tty if appropriate. */
910 if (tty_flag) {
911 debug("Requesting pty.");
912
913 /* Start the packet. */
914 packet_start(SSH_CMSG_REQUEST_PTY);
915
916 /* Store TERM in the packet. There is no limit on the
917 length of the string. */
918 cp = getenv("TERM");
919 if (!cp)
920 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +0000921 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +1100922
923 /* Store window size in the packet. */
924 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
925 memset(&ws, 0, sizeof(ws));
926 packet_put_int(ws.ws_row);
927 packet_put_int(ws.ws_col);
928 packet_put_int(ws.ws_xpixel);
929 packet_put_int(ws.ws_ypixel);
930
931 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000932 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +1100933
934 /* Send the packet, and wait for it to leave. */
935 packet_send();
936 packet_write_wait();
937
938 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100939 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +1000940 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100941 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000942 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +1000943 } else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +1000944 logit("Warning: Remote host failed or refused to allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +1100945 else
946 packet_disconnect("Protocol error waiting for pty request response.");
947 }
948 /* Request X11 forwarding if enabled and DISPLAY is set. */
949 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000950 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +1000951 /* Get reasonable local authentication information. */
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000952 x11_get_proto(&proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +1000953 /* Request forwarding with authentication spoofing. */
Damien Miller95def091999-11-25 00:26:21 +1100954 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Millerbd483e72000-04-30 10:00:53 +1000955 x11_request_forwarding_with_spoofing(0, proto, data);
Damien Miller95def091999-11-25 00:26:21 +1100956
957 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100958 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100959 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100960 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000961 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +1000962 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +1000963 } else {
Damien Miller95def091999-11-25 00:26:21 +1100964 packet_disconnect("Protocol error waiting for X11 forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +1000965 }
Damien Miller95def091999-11-25 00:26:21 +1100966 }
967 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000968 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +1100969
970 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100971 check_agent_present();
972
Damien Miller95def091999-11-25 00:26:21 +1100973 if (options.forward_agent) {
974 debug("Requesting authentication agent forwarding.");
975 auth_request_forwarding();
976
977 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100978 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +1100979 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +1100980 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +1000981 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +1100982 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000983
Damien Miller0bc1bd82000-11-13 22:57:25 +1100984 /* Initiate port forwardings. */
985 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000986
Damien Miller5428f641999-11-25 11:54:57 +1100987 /* If requested, let ssh continue in the background. */
Damien Miller4af51302000-04-16 11:18:38 +1000988 if (fork_after_authentication_flag)
Damien Miller5428f641999-11-25 11:54:57 +1100989 if (daemon(1, 1) < 0)
990 fatal("daemon() failed: %.200s", strerror(errno));
991
992 /*
993 * If a command was specified on the command line, execute the
994 * command now. Otherwise request the server to start a shell.
995 */
Damien Miller95def091999-11-25 00:26:21 +1100996 if (buffer_len(&command) > 0) {
997 int len = buffer_len(&command);
998 if (len > 900)
999 len = 900;
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001000 debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +11001001 packet_start(SSH_CMSG_EXEC_CMD);
1002 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1003 packet_send();
1004 packet_write_wait();
1005 } else {
1006 debug("Requesting shell.");
1007 packet_start(SSH_CMSG_EXEC_SHELL);
1008 packet_send();
1009 packet_write_wait();
1010 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001011
Damien Miller95def091999-11-25 00:26:21 +11001012 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001013 return client_loop(have_tty, tty_flag ?
1014 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +10001015}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001016
Ben Lindstrombba81212001-06-25 05:01:22 +00001017static void
Damien Miller0e220db2004-06-15 10:34:08 +10001018ssh_subsystem_reply(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001019{
1020 int id, len;
1021
1022 id = packet_get_int();
1023 len = buffer_len(&command);
Ben Lindstrom4040fe12001-03-05 06:52:57 +00001024 if (len > 900)
1025 len = 900;
Damien Miller48b03fc2002-01-22 23:11:40 +11001026 packet_check_eom();
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001027 if (type == SSH2_MSG_CHANNEL_FAILURE)
1028 fatal("Request for subsystem '%.*s' failed on channel %d",
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001029 len, (u_char *)buffer_ptr(&command), id);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001030}
1031
Damien Miller2797f7f2002-04-23 21:09:44 +10001032void
Damien Miller509b0102003-12-17 16:33:10 +11001033client_global_request_reply_fwd(int type, u_int32_t seq, void *ctxt)
Damien Miller2797f7f2002-04-23 21:09:44 +10001034{
1035 int i;
1036
1037 i = client_global_request_id++;
Damien Miller509b0102003-12-17 16:33:10 +11001038 if (i >= options.num_remote_forwards)
Damien Miller2797f7f2002-04-23 21:09:44 +10001039 return;
Damien Miller2797f7f2002-04-23 21:09:44 +10001040 debug("remote forward %s for: listen %d, connect %s:%d",
1041 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
1042 options.remote_forwards[i].port,
1043 options.remote_forwards[i].host,
1044 options.remote_forwards[i].host_port);
1045 if (type == SSH2_MSG_REQUEST_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +10001046 logit("Warning: remote port forwarding failed for listen port %d",
Damien Miller2797f7f2002-04-23 21:09:44 +10001047 options.remote_forwards[i].port);
1048}
1049
Damien Miller0e220db2004-06-15 10:34:08 +10001050static void
1051ssh_control_listener(void)
1052{
1053 struct sockaddr_un addr;
1054 mode_t old_umask;
Damien Miller07b6ff12004-06-15 11:14:45 +10001055 int addr_len;
1056
Damien Miller23f07702004-06-18 01:19:03 +10001057 if (options.control_path == NULL || options.control_master <= 0)
Damien Miller0e220db2004-06-15 10:34:08 +10001058 return;
1059
1060 memset(&addr, '\0', sizeof(addr));
1061 addr.sun_family = AF_UNIX;
Damien Miller07b6ff12004-06-15 11:14:45 +10001062 addr_len = offsetof(struct sockaddr_un, sun_path) +
Damien Miller0e220db2004-06-15 10:34:08 +10001063 strlen(options.control_path) + 1;
1064
1065 if (strlcpy(addr.sun_path, options.control_path,
1066 sizeof(addr.sun_path)) >= sizeof(addr.sun_path))
1067 fatal("ControlPath too long");
1068
1069 if ((control_fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
1070 fatal("%s socket(): %s\n", __func__, strerror(errno));
1071
1072 old_umask = umask(0177);
Damien Miller07b6ff12004-06-15 11:14:45 +10001073 if (bind(control_fd, (struct sockaddr*)&addr, addr_len) == -1) {
Damien Miller0e220db2004-06-15 10:34:08 +10001074 control_fd = -1;
1075 if (errno == EINVAL)
1076 fatal("ControlSocket %s already exists",
1077 options.control_path);
1078 else
1079 fatal("%s bind(): %s\n", __func__, strerror(errno));
1080 }
1081 umask(old_umask);
1082
1083 if (listen(control_fd, 64) == -1)
1084 fatal("%s listen(): %s\n", __func__, strerror(errno));
1085
1086 set_nonblock(control_fd);
1087}
1088
Ben Lindstromf558cf62001-09-20 23:13:49 +00001089/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001090static void
Ben Lindstromf558cf62001-09-20 23:13:49 +00001091ssh_session2_setup(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001092{
Damien Miller3756dce2004-06-18 01:17:29 +10001093 extern char **environ;
1094
Damien Miller0e220db2004-06-15 10:34:08 +10001095 int interactive = tty_flag;
1096 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001097 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001098 /* Get reasonable local authentication information. */
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001099 x11_get_proto(&proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001100 /* Request forwarding with authentication spoofing. */
1101 debug("Requesting X11 forwarding with authentication spoofing.");
1102 x11_request_forwarding_with_spoofing(id, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001103 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001104 /* XXX wait for reply */
1105 }
1106
Damien Miller0bc1bd82000-11-13 22:57:25 +11001107 check_agent_present();
1108 if (options.forward_agent) {
1109 debug("Requesting authentication agent forwarding.");
1110 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1111 packet_send();
1112 }
1113
Damien Miller0e220db2004-06-15 10:34:08 +10001114 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
Damien Miller3756dce2004-06-18 01:17:29 +10001115 NULL, fileno(stdin), &command, environ, &ssh_subsystem_reply);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001116
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001117 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001118}
1119
Ben Lindstromf558cf62001-09-20 23:13:49 +00001120/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001121static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001122ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001123{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001124 Channel *c;
1125 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001126
Damien Millercaf6dd62000-08-29 11:33:50 +11001127 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001128 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001129 } else {
1130 in = dup(STDIN_FILENO);
1131 }
1132 out = dup(STDOUT_FILENO);
1133 err = dup(STDERR_FILENO);
1134
1135 if (in < 0 || out < 0 || err < 0)
1136 fatal("dup() in/out/err failed");
1137
Damien Miller69b69aa2000-10-28 14:19:58 +11001138 /* enable nonblocking unless tty */
1139 if (!isatty(in))
1140 set_nonblock(in);
1141 if (!isatty(out))
1142 set_nonblock(out);
1143 if (!isatty(err))
1144 set_nonblock(err);
1145
Damien Millere4340be2000-09-16 13:29:08 +11001146 window = CHAN_SES_WINDOW_DEFAULT;
1147 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001148 if (tty_flag) {
1149 window >>= 1;
1150 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001151 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001152 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001153 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001154 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001155 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001156
Ben Lindstromf558cf62001-09-20 23:13:49 +00001157 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001158
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001159 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001160 if (!no_shell_flag)
Damien Miller0e220db2004-06-15 10:34:08 +10001161 channel_register_confirm(c->self, ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001162
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001163 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001164}
1165
Ben Lindstrombba81212001-06-25 05:01:22 +00001166static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001167ssh_session2(void)
1168{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001169 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001170
1171 /* XXX should be pre-session */
1172 ssh_init_forwarding();
Damien Miller0e220db2004-06-15 10:34:08 +10001173 ssh_control_listener();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001174
Ben Lindstromf558cf62001-09-20 23:13:49 +00001175 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1176 id = ssh_session2_open();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001177
1178 /* If requested, let ssh continue in the background. */
1179 if (fork_after_authentication_flag)
1180 if (daemon(1, 1) < 0)
1181 fatal("daemon() failed: %.200s", strerror(errno));
1182
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001183 return client_loop(tty_flag, tty_flag ?
1184 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001185}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001186
Ben Lindstrombba81212001-06-25 05:01:22 +00001187static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001188load_public_identity_files(void)
1189{
1190 char *filename;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001191 int i = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001192 Key *public;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001193#ifdef SMARTCARD
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001194 Key **keys;
1195
Ben Lindstromf7db3bb2001-08-06 21:35:51 +00001196 if (options.smartcard_device != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001197 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
1198 (keys = sc_get_keys(options.smartcard_device, NULL)) != NULL ) {
1199 int count = 0;
1200 for (i = 0; keys[i] != NULL; i++) {
1201 count++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001202 memmove(&options.identity_files[1], &options.identity_files[0],
1203 sizeof(char *) * (SSH_MAX_IDENTITY_FILES - 1));
1204 memmove(&options.identity_keys[1], &options.identity_keys[0],
1205 sizeof(Key *) * (SSH_MAX_IDENTITY_FILES - 1));
1206 options.num_identity_files++;
1207 options.identity_keys[0] = keys[i];
Damien Miller56a0bb02003-06-18 20:28:40 +10001208 options.identity_files[0] = sc_get_key_label(keys[i]);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001209 }
Ben Lindstrom4f054602002-03-26 03:23:00 +00001210 if (options.num_identity_files > SSH_MAX_IDENTITY_FILES)
1211 options.num_identity_files = SSH_MAX_IDENTITY_FILES;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001212 i = count;
1213 xfree(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001214 }
Ben Lindstromffce1472001-08-06 21:57:31 +00001215#endif /* SMARTCARD */
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001216 for (; i < options.num_identity_files; i++) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001217 filename = tilde_expand_filename(options.identity_files[i],
1218 original_real_uid);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001219 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001220 debug("identity file %s type %d", filename,
1221 public ? public->type : -1);
1222 xfree(options.identity_files[i]);
1223 options.identity_files[i] = filename;
1224 options.identity_keys[i] = public;
1225 }
1226}
Damien Miller0e220db2004-06-15 10:34:08 +10001227
1228static void
1229control_client_sighandler(int signo)
1230{
1231 control_client_terminate = signo;
1232}
1233
1234static void
1235control_client_sigrelay(int signo)
1236{
1237 if (control_server_pid > 1)
1238 kill(control_server_pid, signo);
1239}
1240
Darren Tucker365433f2004-06-22 12:29:23 +10001241static int
1242env_permitted(char *env)
1243{
1244 int i;
1245 char name[1024], *cp;
1246
1247 strlcpy(name, env, sizeof(name));
1248 if ((cp = strchr(name, '=')) == NULL)
1249 return (0);
1250
1251 *cp = '\0';
1252
1253 for (i = 0; i < options.num_send_env; i++)
1254 if (match_pattern(name, options.send_env[i]))
1255 return (1);
1256
1257 return (0);
1258}
1259
Damien Miller0e220db2004-06-15 10:34:08 +10001260static void
1261control_client(const char *path)
1262{
1263 struct sockaddr_un addr;
Darren Tucker39207a42004-11-05 20:19:51 +11001264 int i, r, fd, sock, exitval, num_env, addr_len;
Damien Miller0e220db2004-06-15 10:34:08 +10001265 Buffer m;
Darren Tucker7ebfc102004-11-07 20:06:19 +11001266 char *term;
Damien Miller3756dce2004-06-18 01:17:29 +10001267 extern char **environ;
Darren Tucker7ebfc102004-11-07 20:06:19 +11001268 u_int flags;
Darren Tuckerfc959702004-07-17 16:12:08 +10001269
Darren Tucker39207a42004-11-05 20:19:51 +11001270 if (stdin_null_flag) {
1271 if ((fd = open(_PATH_DEVNULL, O_RDONLY)) == -1)
1272 fatal("open(/dev/null): %s", strerror(errno));
1273 if (dup2(fd, STDIN_FILENO) == -1)
1274 fatal("dup2: %s", strerror(errno));
1275 if (fd > STDERR_FILENO)
1276 close(fd);
1277 }
1278
Damien Miller0e220db2004-06-15 10:34:08 +10001279 memset(&addr, '\0', sizeof(addr));
1280 addr.sun_family = AF_UNIX;
Damien Miller07b6ff12004-06-15 11:14:45 +10001281 addr_len = offsetof(struct sockaddr_un, sun_path) +
Damien Miller0e220db2004-06-15 10:34:08 +10001282 strlen(path) + 1;
1283
1284 if (strlcpy(addr.sun_path, path,
1285 sizeof(addr.sun_path)) >= sizeof(addr.sun_path))
1286 fatal("ControlPath too long");
1287
1288 if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
1289 fatal("%s socket(): %s", __func__, strerror(errno));
1290
Damien Miller07b6ff12004-06-15 11:14:45 +10001291 if (connect(sock, (struct sockaddr*)&addr, addr_len) == -1)
Damien Miller0e220db2004-06-15 10:34:08 +10001292 fatal("Couldn't connect to %s: %s", path, strerror(errno));
1293
Darren Tucker7ebfc102004-11-07 20:06:19 +11001294 if ((term = getenv("TERM")) == NULL)
1295 term = "";
1296
1297 flags = 0;
1298 if (tty_flag)
1299 flags |= SSHMUX_FLAG_TTY;
1300 if (subsystem_flag)
1301 flags |= SSHMUX_FLAG_SUBSYS;
Damien Miller0e220db2004-06-15 10:34:08 +10001302
Damien Miller0e220db2004-06-15 10:34:08 +10001303 buffer_init(&m);
1304
Darren Tucker7ebfc102004-11-07 20:06:19 +11001305 /* Send our command to server */
1306 buffer_put_int(&m, mux_command);
1307 buffer_put_int(&m, flags);
1308 if (ssh_msg_send(sock, /* version */1, &m) == -1)
1309 fatal("%s: msg_send", __func__);
1310 buffer_clear(&m);
1311
1312 /* Get authorisation status and PID of controlee */
Damien Miller0e220db2004-06-15 10:34:08 +10001313 if (ssh_msg_recv(sock, &m) == -1)
1314 fatal("%s: msg_recv", __func__);
Darren Tucker7ebfc102004-11-07 20:06:19 +11001315 if (buffer_get_char(&m) != 1)
Damien Miller0e220db2004-06-15 10:34:08 +10001316 fatal("%s: wrong version", __func__);
Damien Miller23f07702004-06-18 01:19:03 +10001317 if (buffer_get_int(&m) != 1)
1318 fatal("Connection to master denied");
Damien Miller0e220db2004-06-15 10:34:08 +10001319 control_server_pid = buffer_get_int(&m);
1320
Damien Miller0e220db2004-06-15 10:34:08 +10001321 buffer_clear(&m);
Damien Miller0e220db2004-06-15 10:34:08 +10001322
Darren Tucker7ebfc102004-11-07 20:06:19 +11001323 switch (mux_command) {
1324 case SSHMUX_COMMAND_ALIVE_CHECK:
1325 fprintf(stderr, "Master running (pid=%d)\r\n",
1326 control_server_pid);
1327 exit(0);
1328 case SSHMUX_COMMAND_TERMINATE:
1329 fprintf(stderr, "Exit request sent.\r\n");
1330 exit(0);
1331 case SSHMUX_COMMAND_OPEN:
1332 /* continue below */
1333 break;
1334 default:
1335 fatal("silly mux_command %d", mux_command);
1336 }
1337
1338 /* SSHMUX_COMMAND_OPEN */
1339 buffer_put_cstring(&m, term);
Damien Miller0e220db2004-06-15 10:34:08 +10001340 buffer_append(&command, "\0", 1);
1341 buffer_put_cstring(&m, buffer_ptr(&command));
1342
Darren Tucker365433f2004-06-22 12:29:23 +10001343 if (options.num_send_env == 0 || environ == NULL) {
1344 buffer_put_int(&m, 0);
Darren Tuckerfc959702004-07-17 16:12:08 +10001345 } else {
Darren Tucker365433f2004-06-22 12:29:23 +10001346 /* Pass environment */
1347 num_env = 0;
1348 for (i = 0; environ[i] != NULL; i++)
1349 if (env_permitted(environ[i]))
1350 num_env++; /* Count */
Darren Tuckerfc959702004-07-17 16:12:08 +10001351
Darren Tucker365433f2004-06-22 12:29:23 +10001352 buffer_put_int(&m, num_env);
1353
Darren Tuckerb5bc1a62004-06-24 00:34:53 +10001354 for (i = 0; environ[i] != NULL && num_env >= 0; i++)
1355 if (env_permitted(environ[i])) {
1356 num_env--;
Darren Tucker365433f2004-06-22 12:29:23 +10001357 buffer_put_cstring(&m, environ[i]);
Darren Tuckerb5bc1a62004-06-24 00:34:53 +10001358 }
Darren Tucker365433f2004-06-22 12:29:23 +10001359 }
Damien Miller3756dce2004-06-18 01:17:29 +10001360
Darren Tucker7ebfc102004-11-07 20:06:19 +11001361 if (ssh_msg_send(sock, /* version */1, &m) == -1)
Damien Miller0e220db2004-06-15 10:34:08 +10001362 fatal("%s: msg_send", __func__);
1363
1364 mm_send_fd(sock, STDIN_FILENO);
1365 mm_send_fd(sock, STDOUT_FILENO);
1366 mm_send_fd(sock, STDERR_FILENO);
1367
1368 /* Wait for reply, so master has a chance to gather ttymodes */
1369 buffer_clear(&m);
1370 if (ssh_msg_recv(sock, &m) == -1)
1371 fatal("%s: msg_recv", __func__);
Darren Tucker7ebfc102004-11-07 20:06:19 +11001372 if (buffer_get_char(&m) != 1)
1373 fatal("%s: wrong version", __func__);
Damien Miller0e220db2004-06-15 10:34:08 +10001374 buffer_free(&m);
1375
Darren Tucker07336da2004-11-05 20:02:16 +11001376 signal(SIGHUP, control_client_sighandler);
Damien Miller0809e232004-06-18 22:20:57 +10001377 signal(SIGINT, control_client_sighandler);
1378 signal(SIGTERM, control_client_sighandler);
1379 signal(SIGWINCH, control_client_sigrelay);
1380
Damien Miller0e220db2004-06-15 10:34:08 +10001381 if (tty_flag)
1382 enter_raw_mode();
1383
1384 /* Stick around until the controlee closes the client_fd */
1385 exitval = 0;
1386 for (;!control_client_terminate;) {
1387 r = read(sock, &exitval, sizeof(exitval));
1388 if (r == 0) {
1389 debug2("Received EOF from master");
1390 break;
1391 }
1392 if (r > 0)
1393 debug2("Received exit status from master %d", exitval);
1394 if (r == -1 && errno != EINTR)
1395 fatal("%s: read %s", __func__, strerror(errno));
1396 }
1397
1398 if (control_client_terminate)
1399 debug2("Exiting on signal %d", control_client_terminate);
1400
1401 close(sock);
1402
1403 leave_raw_mode();
1404
1405 if (tty_flag && options.log_level != SYSLOG_LEVEL_QUIET)
1406 fprintf(stderr, "Connection to master closed.\r\n");
1407
1408 exit(exitval);
1409}