blob: 7859b0f7850d716b4ecf5121347a6a9192e5296a [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 Tuckere9bf9842004-11-05 20:05:32 +110043RCSID("$OpenBSD: ssh.c,v 1.227 2004/09/15 00:46:01 deraadt 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
147/* Only used in control client mode */
148volatile sig_atomic_t control_client_terminate = 0;
149u_int control_server_pid = 0;
150
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000151/* Prints a help message to the user. This function never returns. */
152
Ben Lindstrombba81212001-06-25 05:01:22 +0000153static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000154usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000155{
Damien Miller50955102004-03-22 09:34:58 +1100156 fprintf(stderr,
Darren Tuckerba5c5922004-06-18 16:22:39 +1000157"usage: ssh [-1246AaCfghkMNnqsTtVvXxY] [-b bind_address] [-c cipher_spec]\n"
Damien Miller50955102004-03-22 09:34:58 +1100158" [-D port] [-e escape_char] [-F configfile] [-i identity_file]\n"
159" [-L port:host:hostport] [-l login_name] [-m mac_spec] [-o option]\n"
Damien Millerb8ea2482004-06-18 22:21:55 +1000160" [-p port] [-R port:host:hostport] [-S ctl] [user@]hostname [command]\n"
Damien Miller50955102004-03-22 09:34:58 +1100161 );
Damien Miller95def091999-11-25 00:26:21 +1100162 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000163}
164
Ben Lindstrombba81212001-06-25 05:01:22 +0000165static int ssh_session(void);
166static int ssh_session2(void);
167static void load_public_identity_files(void);
Damien Miller0e220db2004-06-15 10:34:08 +1000168static void control_client(const char *path);
Damien Miller1383bd82000-04-06 12:32:37 +1000169
Damien Miller95def091999-11-25 00:26:21 +1100170/*
171 * Main program for the ssh client.
172 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000173int
174main(int ac, char **av)
175{
Ben Lindstrom24157572002-06-12 16:09:39 +0000176 int i, opt, exit_status;
Damien Milleraae6c611999-12-06 11:47:28 +1100177 u_short fwd_port, fwd_host_port;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000178 char sfwd_port[6], sfwd_host_port[6];
Damien Miller9836cf82003-12-17 16:30:06 +1100179 char *p, *cp, *line, buf[256];
Damien Miller95def091999-11-25 00:26:21 +1100180 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000181 struct passwd *pw;
Damien Miller1383bd82000-04-06 12:32:37 +1000182 int dummy;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000183 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000184 extern char *optarg;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000185
Damien Miller59d3d5b2003-08-22 09:34:41 +1000186 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000187 init_rng();
188
Damien Miller5428f641999-11-25 11:54:57 +1100189 /*
190 * Save the original real uid. It will be needed later (uid-swapping
191 * may clobber the real uid).
192 */
Damien Miller95def091999-11-25 00:26:21 +1100193 original_real_uid = getuid();
194 original_effective_uid = geteuid();
Damien Millera8e06ce2003-11-21 23:48:55 +1100195
Damien Miller50b9a602002-09-04 16:50:06 +1000196 /*
197 * Use uid-swapping to give up root privileges for the duration of
198 * option processing. We will re-instantiate the rights when we are
199 * ready to create the privileged port, and will permanently drop
200 * them when the port has been created (actually, when the connection
201 * has been made, as we may need to create the port several times).
202 */
203 PRIV_END;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000204
Damien Miller05dd7952000-10-01 00:42:48 +1100205#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100206 /* If we are installed setuid root be careful to not drop core. */
207 if (original_real_uid != original_effective_uid) {
208 struct rlimit rlim;
209 rlim.rlim_cur = rlim.rlim_max = 0;
210 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
211 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000212 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100213#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000214 /* Get user data. */
215 pw = getpwuid(original_real_uid);
216 if (!pw) {
Damien Miller996acd22003-04-09 20:59:48 +1000217 logit("You don't exist, go away!");
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000218 exit(1);
219 }
220 /* Take a copy of the returned structure. */
221 pw = pwcopy(pw);
222
Damien Miller5428f641999-11-25 11:54:57 +1100223 /*
Damien Miller5428f641999-11-25 11:54:57 +1100224 * Set our umask to something reasonable, as some files are created
225 * with the default umask. This will make them world-readable but
226 * writable only by the owner, which is ok for all files for which we
227 * don't set the modes explicitly.
228 */
Damien Miller95def091999-11-25 00:26:21 +1100229 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000230
Damien Miller95def091999-11-25 00:26:21 +1100231 /* Initialize option structure to indicate that no values have been set. */
232 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000233
Damien Miller95def091999-11-25 00:26:21 +1100234 /* Parse command-line arguments. */
235 host = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000236
Damien Millerf4614452001-07-14 12:18:10 +1000237again:
238 while ((opt = getopt(ac, av,
Damien Miller0e220db2004-06-15 10:34:08 +1000239 "1246ab:c:e:fgi:kl:m:no:p:qstvxACD:F:I:L:MNPR:S:TVXY")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100240 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000241 case '1':
242 options.protocol = SSH_PROTO_1;
243 break;
Damien Miller4af51302000-04-16 11:18:38 +1000244 case '2':
245 options.protocol = SSH_PROTO_2;
246 break;
Damien Miller34132e52000-01-14 15:45:46 +1100247 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000248 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100249 break;
Damien Miller34132e52000-01-14 15:45:46 +1100250 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000251 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100252 break;
Damien Miller95def091999-11-25 00:26:21 +1100253 case 'n':
254 stdin_null_flag = 1;
255 break;
Damien Miller95def091999-11-25 00:26:21 +1100256 case 'f':
257 fork_after_authentication_flag = 1;
258 stdin_null_flag = 1;
259 break;
Damien Miller95def091999-11-25 00:26:21 +1100260 case 'x':
261 options.forward_x11 = 0;
262 break;
Damien Miller95def091999-11-25 00:26:21 +1100263 case 'X':
264 options.forward_x11 = 1;
265 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000266 case 'Y':
267 options.forward_x11 = 1;
268 options.forward_x11_trusted = 1;
269 break;
Damien Miller95def091999-11-25 00:26:21 +1100270 case 'g':
271 options.gateway_ports = 1;
272 break;
Damien Miller147bba32002-09-04 16:46:06 +1000273 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100274 options.use_privileged_port = 0;
275 break;
Damien Miller95def091999-11-25 00:26:21 +1100276 case 'a':
277 options.forward_agent = 0;
278 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000279 case 'A':
280 options.forward_agent = 1;
281 break;
Damien Miller95def091999-11-25 00:26:21 +1100282 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100283 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100284 break;
Damien Miller95def091999-11-25 00:26:21 +1100285 case 'i':
286 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000287 fprintf(stderr, "Warning: Identity file %s "
288 "does not exist.\n", optarg);
Damien Miller95def091999-11-25 00:26:21 +1100289 break;
290 }
Damien Millerf4614452001-07-14 12:18:10 +1000291 if (options.num_identity_files >=
292 SSH_MAX_IDENTITY_FILES)
293 fatal("Too many identity files specified "
294 "(max %d)", SSH_MAX_IDENTITY_FILES);
295 options.identity_files[options.num_identity_files++] =
296 xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100297 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000298 case 'I':
299#ifdef SMARTCARD
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000300 options.smartcard_device = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000301#else
Ben Lindstromc5b68002001-07-04 04:52:03 +0000302 fprintf(stderr, "no support for smartcards.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000303#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000304 break;
Damien Miller95def091999-11-25 00:26:21 +1100305 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000306 if (tty_flag)
307 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100308 tty_flag = 1;
309 break;
Damien Miller95def091999-11-25 00:26:21 +1100310 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000311 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100312 debug_flag = 1;
313 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000314 } else {
315 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
316 options.log_level++;
Damien Millere4340be2000-09-16 13:29:08 +1100317 break;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000318 }
Darren Tuckere9bf9842004-11-05 20:05:32 +1100319 /* FALLTHROUGH */
Damien Miller95def091999-11-25 00:26:21 +1100320 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100321 fprintf(stderr, "%s, %s\n",
Damien Miller2aa6d3c2004-09-12 16:53:04 +1000322 SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
Damien Miller95def091999-11-25 00:26:21 +1100323 if (opt == 'V')
324 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100325 break;
Damien Miller95def091999-11-25 00:26:21 +1100326 case 'q':
327 options.log_level = SYSLOG_LEVEL_QUIET;
328 break;
Damien Miller95def091999-11-25 00:26:21 +1100329 case 'e':
330 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000331 (u_char) optarg[1] >= 64 &&
332 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000333 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100334 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000335 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100336 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000337 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100338 else {
Damien Millerf4614452001-07-14 12:18:10 +1000339 fprintf(stderr, "Bad escape character '%s'.\n",
340 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100341 exit(1);
342 }
343 break;
Damien Miller95def091999-11-25 00:26:21 +1100344 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000345 if (ciphers_valid(optarg)) {
346 /* SSH2 only */
347 options.ciphers = xstrdup(optarg);
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000348 options.cipher = SSH_CIPHER_INVALID;
Damien Millereba71ba2000-04-29 23:57:08 +1000349 } else {
350 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100351 options.cipher = cipher_number(optarg);
352 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000353 fprintf(stderr,
354 "Unknown cipher type '%s'\n",
355 optarg);
Damien Millereba71ba2000-04-29 23:57:08 +1000356 exit(1);
357 }
Damien Millerf4614452001-07-14 12:18:10 +1000358 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100359 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000360 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100361 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000362 else
Damien Millere39cacc2000-11-29 12:18:44 +1100363 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100364 }
365 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000366 case 'm':
367 if (mac_valid(optarg))
368 options.macs = xstrdup(optarg);
369 else {
Damien Millerf4614452001-07-14 12:18:10 +1000370 fprintf(stderr, "Unknown mac type '%s'\n",
371 optarg);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000372 exit(1);
373 }
374 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000375 case 'M':
Damien Millerb8ea2482004-06-18 22:21:55 +1000376 options.control_master =
377 (options.control_master >= 1) ? 2 : 1;
Damien Miller0e220db2004-06-15 10:34:08 +1000378 break;
Damien Miller95def091999-11-25 00:26:21 +1100379 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000380 options.port = a2port(optarg);
381 if (options.port == 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000382 fprintf(stderr, "Bad port '%s'\n", optarg);
383 exit(1);
384 }
Damien Miller95def091999-11-25 00:26:21 +1100385 break;
Damien Miller95def091999-11-25 00:26:21 +1100386 case 'l':
387 options.user = optarg;
388 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000389
Damien Miller95def091999-11-25 00:26:21 +1100390 case 'L':
Ben Lindstrom1a174712001-09-12 17:56:15 +0000391 case 'R':
Damien Miller1ea71662003-05-14 22:33:58 +1000392 if (sscanf(optarg, "%5[0123456789]:%255[^:]:%5[0123456789]",
Ben Lindstrom1a174712001-09-12 17:56:15 +0000393 sfwd_port, buf, sfwd_host_port) != 3 &&
Damien Miller1ea71662003-05-14 22:33:58 +1000394 sscanf(optarg, "%5[0123456789]/%255[^/]/%5[0123456789]",
Ben Lindstrom1a174712001-09-12 17:56:15 +0000395 sfwd_port, buf, sfwd_host_port) != 3) {
Damien Millerf4614452001-07-14 12:18:10 +1000396 fprintf(stderr,
Ben Lindstrom1a174712001-09-12 17:56:15 +0000397 "Bad forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000398 optarg);
Damien Miller95def091999-11-25 00:26:21 +1100399 usage();
400 /* NOTREACHED */
401 }
Ben Lindstrom1a174712001-09-12 17:56:15 +0000402 if ((fwd_port = a2port(sfwd_port)) == 0 ||
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000403 (fwd_host_port = a2port(sfwd_host_port)) == 0) {
Ben Lindstrom1a174712001-09-12 17:56:15 +0000404 fprintf(stderr,
405 "Bad forwarding port(s) '%s'\n", optarg);
406 exit(1);
407 }
408 if (opt == 'L')
409 add_local_forward(&options, fwd_port, buf,
410 fwd_host_port);
411 else if (opt == 'R')
412 add_remote_forward(&options, fwd_port, buf,
Damien Miller9f0f5c62001-12-21 14:45:46 +1100413 fwd_host_port);
Damien Miller95def091999-11-25 00:26:21 +1100414 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000415
416 case 'D':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000417 fwd_port = a2port(optarg);
418 if (fwd_port == 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000419 fprintf(stderr, "Bad dynamic port '%s'\n",
420 optarg);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000421 exit(1);
422 }
Darren Tucker1c52ee32003-08-13 20:38:36 +1000423 add_local_forward(&options, fwd_port, "socks", 0);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000424 break;
425
Damien Miller95def091999-11-25 00:26:21 +1100426 case 'C':
427 options.compression = 1;
428 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000429 case 'N':
430 no_shell_flag = 1;
431 no_tty_flag = 1;
432 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000433 case 'T':
434 no_tty_flag = 1;
435 break;
Damien Miller95def091999-11-25 00:26:21 +1100436 case 'o':
437 dummy = 1;
Damien Miller9836cf82003-12-17 16:30:06 +1100438 line = xstrdup(optarg);
Damien Millerf4614452001-07-14 12:18:10 +1000439 if (process_config_line(&options, host ? host : "",
Damien Miller9836cf82003-12-17 16:30:06 +1100440 line, "command-line", 0, &dummy) != 0)
Damien Miller95def091999-11-25 00:26:21 +1100441 exit(1);
Damien Miller9836cf82003-12-17 16:30:06 +1100442 xfree(line);
Damien Miller95def091999-11-25 00:26:21 +1100443 break;
Damien Miller832562e2001-01-30 09:30:01 +1100444 case 's':
445 subsystem_flag = 1;
446 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000447 case 'S':
448 if (options.control_path != NULL)
449 free(options.control_path);
450 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000451 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000452 case 'b':
453 options.bind_address = optarg;
454 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000455 case 'F':
456 config = optarg;
457 break;
Damien Miller95def091999-11-25 00:26:21 +1100458 default:
459 usage();
460 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000461 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000462
Damien Millerf4614452001-07-14 12:18:10 +1000463 ac -= optind;
464 av += optind;
465
466 if (ac > 0 && !host && **av != '-') {
Ben Lindstromc276c122002-12-23 02:14:51 +0000467 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000468 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000469 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000470 if (cp == NULL || cp == p)
471 usage();
472 options.user = p;
473 *cp = '\0';
474 host = ++cp;
475 } else
476 host = *av;
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000477 if (ac > 1) {
478 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000479 goto again;
480 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000481 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000482 }
483
Damien Miller95def091999-11-25 00:26:21 +1100484 /* Check that we got a host name. */
485 if (!host)
486 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000487
Damien Millercb5e44a2000-09-29 12:12:36 +1100488 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100489 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100490
Damien Miller95def091999-11-25 00:26:21 +1100491 /* Initialize the command to execute on remote host. */
492 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000493
Damien Miller5428f641999-11-25 11:54:57 +1100494 /*
495 * Save the command to execute on the remote host in a buffer. There
496 * is no limit on the length of the command, except by the maximum
497 * packet size. Also sets the tty flag if there is no command.
498 */
Damien Millerf4614452001-07-14 12:18:10 +1000499 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100500 /* No command specified - execute shell on a tty. */
501 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100502 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000503 fprintf(stderr,
504 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100505 usage();
506 }
Damien Miller95def091999-11-25 00:26:21 +1100507 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000508 /* A command has been specified. Store it into the buffer. */
509 for (i = 0; i < ac; i++) {
510 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100511 buffer_append(&command, " ", 1);
512 buffer_append(&command, av[i], strlen(av[i]));
513 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000514 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000515
Damien Miller95def091999-11-25 00:26:21 +1100516 /* Cannot fork to background if no command. */
Damien Millercaf6dd62000-08-29 11:33:50 +1100517 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
Damien Miller95def091999-11-25 00:26:21 +1100518 fatal("Cannot fork into background without a command to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000519
Damien Miller95def091999-11-25 00:26:21 +1100520 /* Allocate a tty by default if no command specified. */
521 if (buffer_len(&command) == 0)
522 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000523
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000524 /* Force no tty */
Ben Lindstromc72745a2000-12-02 19:03:54 +0000525 if (no_tty_flag)
526 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100527 /* Do not allocate a tty if stdin is not a tty. */
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000528 if (!isatty(fileno(stdin)) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100529 if (tty_flag)
Damien Miller996acd22003-04-09 20:59:48 +1000530 logit("Pseudo-terminal will not be allocated because stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100531 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000532 }
Damien Miller1383bd82000-04-06 12:32:37 +1000533
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000534 /*
535 * Initialize "log" output. Since we are the client all output
536 * actually goes to stderr.
537 */
Ben Lindstrom2b646522001-04-12 16:16:57 +0000538 log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
539 SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000540
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000541 /*
542 * Read per-user configuration file. Ignore the system wide config
543 * file if the user specifies a config file on the command line.
544 */
545 if (config != NULL) {
Damien Miller914420f2004-04-20 20:14:07 +1000546 if (!read_config_file(config, host, &options, 0))
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000547 fatal("Can't open user config file %.100s: "
548 "%.100s", config, strerror(errno));
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000549 } else {
550 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,
551 _PATH_SSH_USER_CONFFILE);
Damien Miller57a44762004-04-20 20:11:57 +1000552 (void)read_config_file(buf, host, &options, 1);
Ben Lindstrom83f07d12001-10-03 17:22:29 +0000553
554 /* Read systemwide configuration file after use config. */
Darren Tuckerfc959702004-07-17 16:12:08 +1000555 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host,
Damien Miller57a44762004-04-20 20:11:57 +1000556 &options, 0);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000557 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000558
Damien Miller95def091999-11-25 00:26:21 +1100559 /* Fill configuration defaults. */
560 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000561
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000562 channel_set_af(options.address_family);
563
Damien Miller95def091999-11-25 00:26:21 +1100564 /* reinit */
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000565 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000566
Damien Miller60bc5172001-03-19 09:38:15 +1100567 seed_rng();
568
Damien Miller95def091999-11-25 00:26:21 +1100569 if (options.user == NULL)
570 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000571
Damien Miller95def091999-11-25 00:26:21 +1100572 if (options.hostname != NULL)
573 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000574
Darren Tucker3f521e22003-07-03 16:20:42 +1000575 /* force lowercase for hostkey matching */
576 if (options.host_key_alias != NULL) {
577 for (p = options.host_key_alias; *p; p++)
578 if (isupper(*p))
579 *p = tolower(*p);
580 }
581
Damien Miller9f1e33a2003-02-24 11:57:32 +1100582 if (options.proxy_command != NULL &&
583 strcmp(options.proxy_command, "none") == 0)
584 options.proxy_command = NULL;
585
Damien Miller0e220db2004-06-15 10:34:08 +1000586 if (options.control_path != NULL) {
587 options.control_path = tilde_expand_filename(
588 options.control_path, original_real_uid);
589 }
590 if (options.control_path != NULL && options.control_master == 0)
591 control_client(options.control_path); /* This doesn't return */
592
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000593 /* Open a connection to the remote host. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000594 if (ssh_connect(host, &hostaddr, options.port,
595 options.address_family, options.connection_attempts,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000596#ifdef HAVE_CYGWIN
597 options.use_privileged_port,
598#else
Ben Lindstromf9c48842002-06-11 16:37:51 +0000599 original_effective_uid == 0 && options.use_privileged_port,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000600#endif
Ben Lindstromda394ca2002-06-12 16:11:12 +0000601 options.proxy_command) != 0)
Ben Lindstrom24157572002-06-12 16:09:39 +0000602 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000603
Damien Miller5428f641999-11-25 11:54:57 +1100604 /*
605 * If we successfully made the connection, load the host private key
606 * in case we will need it later for combined rsa-rhosts
607 * authentication. This must be done before releasing extra
608 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +0000609 * If we cannot access the private keys, load the public keys
610 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +1100611 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000612 sensitive_data.nkeys = 0;
613 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000614 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +0000615 if (options.rhosts_rsa_authentication ||
616 options.hostbased_authentication) {
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000617 sensitive_data.nkeys = 3;
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000618 sensitive_data.keys = xmalloc(sensitive_data.nkeys *
619 sizeof(Key));
Ben Lindstromf9c48842002-06-11 16:37:51 +0000620
621 PRIV_START;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000622 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Ben Lindstromd0fca422001-03-26 13:44:06 +0000623 _PATH_HOST_KEY_FILE, "", NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000624 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
625 _PATH_HOST_DSA_KEY_FILE, "", NULL);
626 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
627 _PATH_HOST_RSA_KEY_FILE, "", NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +0000628 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000629
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +0000630 if (options.hostbased_authentication == 1 &&
631 sensitive_data.keys[0] == NULL &&
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000632 sensitive_data.keys[1] == NULL &&
633 sensitive_data.keys[2] == NULL) {
634 sensitive_data.keys[1] = key_load_public(
635 _PATH_HOST_DSA_KEY_FILE, NULL);
636 sensitive_data.keys[2] = key_load_public(
637 _PATH_HOST_RSA_KEY_FILE, NULL);
638 sensitive_data.external_keysign = 1;
639 }
Damien Miller95def091999-11-25 00:26:21 +1100640 }
Damien Miller5428f641999-11-25 11:54:57 +1100641 /*
642 * Get rid of any extra privileges that we may have. We will no
643 * longer need them. Also, extra privileges could make it very hard
644 * to read identity files and other non-world-readable files from the
645 * user's home directory if it happens to be on a NFS volume where
646 * root is mapped to nobody.
647 */
Darren Tucker25f60a72004-08-15 17:23:34 +1000648 if (original_effective_uid == 0) {
649 PRIV_START;
650 permanently_set_uid(pw);
651 }
Damien Miller95def091999-11-25 00:26:21 +1100652
Damien Miller5428f641999-11-25 11:54:57 +1100653 /*
654 * Now that we are back to our own permissions, create ~/.ssh
655 * directory if it doesn\'t already exist.
656 */
Ben Lindstrom930b14a2001-08-15 23:19:21 +0000657 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 +1100658 if (stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000659 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100660 error("Could not create directory '%.200s'.", buf);
661
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000662 /* load options.identity_files */
663 load_public_identity_files();
664
665 /* Expand ~ in known host file names. */
666 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100667 options.system_hostfile =
668 tilde_expand_filename(options.system_hostfile, original_real_uid);
669 options.user_hostfile =
670 tilde_expand_filename(options.user_hostfile, original_real_uid);
671 options.system_hostfile2 =
672 tilde_expand_filename(options.system_hostfile2, original_real_uid);
673 options.user_hostfile2 =
674 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100675
Damien Miller07cd5892001-11-12 10:52:03 +1100676 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
677
Damien Miller95def091999-11-25 00:26:21 +1100678 /* Log into the remote system. This never returns if the login fails. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000679 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr, pw);
Damien Miller95def091999-11-25 00:26:21 +1100680
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000681 /* We no longer need the private host keys. Clear them now. */
682 if (sensitive_data.nkeys != 0) {
683 for (i = 0; i < sensitive_data.nkeys; i++) {
684 if (sensitive_data.keys[i] != NULL) {
685 /* Destroys contents safely */
686 debug3("clear hostkey %d", i);
687 key_free(sensitive_data.keys[i]);
688 sensitive_data.keys[i] = NULL;
689 }
690 }
691 xfree(sensitive_data.keys);
692 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000693 for (i = 0; i < options.num_identity_files; i++) {
694 if (options.identity_files[i]) {
695 xfree(options.identity_files[i]);
696 options.identity_files[i] = NULL;
697 }
698 if (options.identity_keys[i]) {
699 key_free(options.identity_keys[i]);
700 options.identity_keys[i] = NULL;
701 }
702 }
Damien Miller95def091999-11-25 00:26:21 +1100703
Damien Miller1383bd82000-04-06 12:32:37 +1000704 exit_status = compat20 ? ssh_session2() : ssh_session();
705 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +1000706
Damien Miller0e220db2004-06-15 10:34:08 +1000707 if (options.control_path != NULL && control_fd != -1)
708 unlink(options.control_path);
709
Damien Miller8c4e18a2002-09-19 12:05:02 +1000710 /*
Damien Millera8e06ce2003-11-21 23:48:55 +1100711 * Send SIGHUP to proxy command if used. We don't wait() in
Damien Miller8c4e18a2002-09-19 12:05:02 +1000712 * case it hangs and instead rely on init to reap the child
713 */
714 if (proxy_command_pid > 1)
715 kill(proxy_command_pid, SIGHUP);
716
Damien Miller1383bd82000-04-06 12:32:37 +1000717 return exit_status;
718}
719
Darren Tucker0a118da2003-10-15 15:54:32 +1000720#define SSH_X11_PROTO "MIT-MAGIC-COOKIE-1"
721
Ben Lindstrombba81212001-06-25 05:01:22 +0000722static void
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000723x11_get_proto(char **_proto, char **_data)
Damien Millerbd483e72000-04-30 10:00:53 +1000724{
Darren Tucker0a118da2003-10-15 15:54:32 +1000725 char cmd[1024];
Damien Millerbd483e72000-04-30 10:00:53 +1000726 char line[512];
Darren Tucker0a118da2003-10-15 15:54:32 +1000727 char xdisplay[512];
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000728 static char proto[512], data[512];
Damien Millerbd483e72000-04-30 10:00:53 +1000729 FILE *f;
Darren Tucker0a118da2003-10-15 15:54:32 +1000730 int got_data = 0, generated = 0, do_unlink = 0, i;
731 char *display, *xauthdir, *xauthfile;
Ben Lindstromee8d52d2002-07-23 21:03:02 +0000732 struct stat st;
Damien Millerbd483e72000-04-30 10:00:53 +1000733
Darren Tucker0a118da2003-10-15 15:54:32 +1000734 xauthdir = xauthfile = NULL;
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000735 *_proto = proto;
736 *_data = data;
737 proto[0] = data[0] = '\0';
Darren Tucker0a118da2003-10-15 15:54:32 +1000738
Ben Lindstromee8d52d2002-07-23 21:03:02 +0000739 if (!options.xauth_location ||
740 (stat(options.xauth_location, &st) == -1)) {
741 debug("No xauth program.");
742 } else {
743 if ((display = getenv("DISPLAY")) == NULL) {
744 debug("x11_get_proto: DISPLAY not set");
745 return;
746 }
Darren Tucker0a118da2003-10-15 15:54:32 +1000747 /*
748 * Handle FamilyLocal case where $DISPLAY does
749 * not match an authorization entry. For this we
750 * just try "xauth list unix:displaynum.screennum".
751 * XXX: "localhost" match to determine FamilyLocal
752 * is not perfect.
753 */
754 if (strncmp(display, "localhost:", 10) == 0) {
755 snprintf(xdisplay, sizeof(xdisplay), "unix:%s",
756 display + 10);
757 display = xdisplay;
758 }
759 if (options.forward_x11_trusted == 0) {
760 xauthdir = xmalloc(MAXPATHLEN);
761 xauthfile = xmalloc(MAXPATHLEN);
762 strlcpy(xauthdir, "/tmp/ssh-XXXXXXXXXX", MAXPATHLEN);
763 if (mkdtemp(xauthdir) != NULL) {
764 do_unlink = 1;
765 snprintf(xauthfile, MAXPATHLEN, "%s/xauthfile",
766 xauthdir);
767 snprintf(cmd, sizeof(cmd),
768 "%s -f %s generate %s " SSH_X11_PROTO
Damien Miller3df755e2004-03-22 09:34:26 +1100769 " untrusted timeout 1200 2>" _PATH_DEVNULL,
Darren Tucker0a118da2003-10-15 15:54:32 +1000770 options.xauth_location, xauthfile, display);
771 debug2("x11_get_proto: %s", cmd);
772 if (system(cmd) == 0)
773 generated = 1;
774 }
775 }
776 snprintf(cmd, sizeof(cmd),
777 "%s %s%s list %s . 2>" _PATH_DEVNULL,
778 options.xauth_location,
779 generated ? "-f " : "" ,
780 generated ? xauthfile : "",
781 display);
782 debug2("x11_get_proto: %s", cmd);
783 f = popen(cmd, "r");
Damien Millerd3a18572000-06-07 19:55:44 +1000784 if (f && fgets(line, sizeof(line), f) &&
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000785 sscanf(line, "%*s %511s %511s", proto, data) == 2)
Damien Millerd3a18572000-06-07 19:55:44 +1000786 got_data = 1;
787 if (f)
788 pclose(f);
789 }
Darren Tucker0a118da2003-10-15 15:54:32 +1000790
791 if (do_unlink) {
792 unlink(xauthfile);
793 rmdir(xauthdir);
794 }
795 if (xauthdir)
796 xfree(xauthdir);
797 if (xauthfile)
798 xfree(xauthfile);
799
Damien Millerbd483e72000-04-30 10:00:53 +1000800 /*
801 * If we didn't get authentication data, just make up some
802 * data. The forwarding code will check the validity of the
803 * response anyway, and substitute this data. The X11
804 * server, however, will ignore this fake data and use
805 * whatever authentication mechanisms it was using otherwise
806 * for the local connection.
807 */
808 if (!got_data) {
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000809 u_int32_t rnd = 0;
Damien Millerbd483e72000-04-30 10:00:53 +1000810
Darren Tucker0a118da2003-10-15 15:54:32 +1000811 logit("Warning: No xauth data; "
812 "using fake authentication data for X11 forwarding.");
813 strlcpy(proto, SSH_X11_PROTO, sizeof proto);
Damien Millerbd483e72000-04-30 10:00:53 +1000814 for (i = 0; i < 16; i++) {
815 if (i % 4 == 0)
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000816 rnd = arc4random();
Darren Tucker0a118da2003-10-15 15:54:32 +1000817 snprintf(data + 2 * i, sizeof data - 2 * i, "%02x",
Darren Tucker3f9fdc72004-06-22 12:56:01 +1000818 rnd & 0xff);
819 rnd >>= 8;
Damien Millerbd483e72000-04-30 10:00:53 +1000820 }
821 }
822}
823
Ben Lindstrombba81212001-06-25 05:01:22 +0000824static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100825ssh_init_forwarding(void)
826{
Kevin Steves12057502001-02-05 14:54:34 +0000827 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100828 int i;
Kevin Steves12057502001-02-05 14:54:34 +0000829
Damien Miller0bc1bd82000-11-13 22:57:25 +1100830 /* Initiate local TCP/IP port forwardings. */
831 for (i = 0; i < options.num_local_forwards; i++) {
832 debug("Connections to local port %d forwarded to remote address %.200s:%d",
833 options.local_forwards[i].port,
834 options.local_forwards[i].host,
835 options.local_forwards[i].host_port);
Damien Millerb16461c2002-01-22 23:29:22 +1100836 success += channel_setup_local_fwd_listener(
Damien Miller0bc1bd82000-11-13 22:57:25 +1100837 options.local_forwards[i].port,
838 options.local_forwards[i].host,
839 options.local_forwards[i].host_port,
840 options.gateway_ports);
841 }
Kevin Steves12057502001-02-05 14:54:34 +0000842 if (i > 0 && success == 0)
843 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100844
845 /* Initiate remote TCP/IP port forwardings. */
846 for (i = 0; i < options.num_remote_forwards; i++) {
847 debug("Connections to remote port %d forwarded to local address %.200s:%d",
848 options.remote_forwards[i].port,
849 options.remote_forwards[i].host,
850 options.remote_forwards[i].host_port);
851 channel_request_remote_forwarding(
852 options.remote_forwards[i].port,
853 options.remote_forwards[i].host,
854 options.remote_forwards[i].host_port);
855 }
856}
857
Ben Lindstrombba81212001-06-25 05:01:22 +0000858static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100859check_agent_present(void)
860{
861 if (options.forward_agent) {
862 /* Clear agent forwarding if we don\'t have an agent. */
Damien Miller789e95d2002-09-12 09:52:46 +1000863 if (!ssh_agent_present())
Damien Miller0bc1bd82000-11-13 22:57:25 +1100864 options.forward_agent = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100865 }
866}
867
Ben Lindstrombba81212001-06-25 05:01:22 +0000868static int
Damien Miller1383bd82000-04-06 12:32:37 +1000869ssh_session(void)
870{
871 int type;
Damien Miller1383bd82000-04-06 12:32:37 +1000872 int interactive = 0;
873 int have_tty = 0;
874 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +1000875 char *cp;
876
Damien Miller95def091999-11-25 00:26:21 +1100877 /* Enable compression if requested. */
878 if (options.compression) {
879 debug("Requesting compression at level %d.", options.compression_level);
880
881 if (options.compression_level < 1 || options.compression_level > 9)
882 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
883
884 /* Send the request. */
885 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
886 packet_put_int(options.compression_level);
887 packet_send();
888 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +1100889 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100890 if (type == SSH_SMSG_SUCCESS)
891 packet_start_compression(options.compression_level);
892 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +1000893 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +1100894 else
895 packet_disconnect("Protocol error waiting for compression response.");
896 }
897 /* Allocate a pseudo tty if appropriate. */
898 if (tty_flag) {
899 debug("Requesting pty.");
900
901 /* Start the packet. */
902 packet_start(SSH_CMSG_REQUEST_PTY);
903
904 /* Store TERM in the packet. There is no limit on the
905 length of the string. */
906 cp = getenv("TERM");
907 if (!cp)
908 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +0000909 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +1100910
911 /* Store window size in the packet. */
912 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
913 memset(&ws, 0, sizeof(ws));
914 packet_put_int(ws.ws_row);
915 packet_put_int(ws.ws_col);
916 packet_put_int(ws.ws_xpixel);
917 packet_put_int(ws.ws_ypixel);
918
919 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000920 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +1100921
922 /* Send the packet, and wait for it to leave. */
923 packet_send();
924 packet_write_wait();
925
926 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100927 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +1000928 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100929 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000930 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +1000931 } else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +1000932 logit("Warning: Remote host failed or refused to allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +1100933 else
934 packet_disconnect("Protocol error waiting for pty request response.");
935 }
936 /* Request X11 forwarding if enabled and DISPLAY is set. */
937 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000938 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +1000939 /* Get reasonable local authentication information. */
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000940 x11_get_proto(&proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +1000941 /* Request forwarding with authentication spoofing. */
Damien Miller95def091999-11-25 00:26:21 +1100942 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Millerbd483e72000-04-30 10:00:53 +1000943 x11_request_forwarding_with_spoofing(0, proto, data);
Damien Miller95def091999-11-25 00:26:21 +1100944
945 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100946 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100947 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100948 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000949 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +1000950 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +1000951 } else {
Damien Miller95def091999-11-25 00:26:21 +1100952 packet_disconnect("Protocol error waiting for X11 forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +1000953 }
Damien Miller95def091999-11-25 00:26:21 +1100954 }
955 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000956 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +1100957
958 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100959 check_agent_present();
960
Damien Miller95def091999-11-25 00:26:21 +1100961 if (options.forward_agent) {
962 debug("Requesting authentication agent forwarding.");
963 auth_request_forwarding();
964
965 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100966 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +1100967 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +1100968 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +1000969 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +1100970 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000971
Damien Miller0bc1bd82000-11-13 22:57:25 +1100972 /* Initiate port forwardings. */
973 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000974
Damien Miller5428f641999-11-25 11:54:57 +1100975 /* If requested, let ssh continue in the background. */
Damien Miller4af51302000-04-16 11:18:38 +1000976 if (fork_after_authentication_flag)
Damien Miller5428f641999-11-25 11:54:57 +1100977 if (daemon(1, 1) < 0)
978 fatal("daemon() failed: %.200s", strerror(errno));
979
980 /*
981 * If a command was specified on the command line, execute the
982 * command now. Otherwise request the server to start a shell.
983 */
Damien Miller95def091999-11-25 00:26:21 +1100984 if (buffer_len(&command) > 0) {
985 int len = buffer_len(&command);
986 if (len > 900)
987 len = 900;
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100988 debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +1100989 packet_start(SSH_CMSG_EXEC_CMD);
990 packet_put_string(buffer_ptr(&command), buffer_len(&command));
991 packet_send();
992 packet_write_wait();
993 } else {
994 debug("Requesting shell.");
995 packet_start(SSH_CMSG_EXEC_SHELL);
996 packet_send();
997 packet_write_wait();
998 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000999
Damien Miller95def091999-11-25 00:26:21 +11001000 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001001 return client_loop(have_tty, tty_flag ?
1002 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +10001003}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001004
Ben Lindstrombba81212001-06-25 05:01:22 +00001005static void
Damien Miller0e220db2004-06-15 10:34:08 +10001006ssh_subsystem_reply(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001007{
1008 int id, len;
1009
1010 id = packet_get_int();
1011 len = buffer_len(&command);
Ben Lindstrom4040fe12001-03-05 06:52:57 +00001012 if (len > 900)
1013 len = 900;
Damien Miller48b03fc2002-01-22 23:11:40 +11001014 packet_check_eom();
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001015 if (type == SSH2_MSG_CHANNEL_FAILURE)
1016 fatal("Request for subsystem '%.*s' failed on channel %d",
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001017 len, (u_char *)buffer_ptr(&command), id);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001018}
1019
Damien Miller2797f7f2002-04-23 21:09:44 +10001020void
Damien Miller509b0102003-12-17 16:33:10 +11001021client_global_request_reply_fwd(int type, u_int32_t seq, void *ctxt)
Damien Miller2797f7f2002-04-23 21:09:44 +10001022{
1023 int i;
1024
1025 i = client_global_request_id++;
Damien Miller509b0102003-12-17 16:33:10 +11001026 if (i >= options.num_remote_forwards)
Damien Miller2797f7f2002-04-23 21:09:44 +10001027 return;
Damien Miller2797f7f2002-04-23 21:09:44 +10001028 debug("remote forward %s for: listen %d, connect %s:%d",
1029 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
1030 options.remote_forwards[i].port,
1031 options.remote_forwards[i].host,
1032 options.remote_forwards[i].host_port);
1033 if (type == SSH2_MSG_REQUEST_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +10001034 logit("Warning: remote port forwarding failed for listen port %d",
Damien Miller2797f7f2002-04-23 21:09:44 +10001035 options.remote_forwards[i].port);
1036}
1037
Damien Miller0e220db2004-06-15 10:34:08 +10001038static void
1039ssh_control_listener(void)
1040{
1041 struct sockaddr_un addr;
1042 mode_t old_umask;
Damien Miller07b6ff12004-06-15 11:14:45 +10001043 int addr_len;
1044
Damien Miller23f07702004-06-18 01:19:03 +10001045 if (options.control_path == NULL || options.control_master <= 0)
Damien Miller0e220db2004-06-15 10:34:08 +10001046 return;
1047
1048 memset(&addr, '\0', sizeof(addr));
1049 addr.sun_family = AF_UNIX;
Damien Miller07b6ff12004-06-15 11:14:45 +10001050 addr_len = offsetof(struct sockaddr_un, sun_path) +
Damien Miller0e220db2004-06-15 10:34:08 +10001051 strlen(options.control_path) + 1;
1052
1053 if (strlcpy(addr.sun_path, options.control_path,
1054 sizeof(addr.sun_path)) >= sizeof(addr.sun_path))
1055 fatal("ControlPath too long");
1056
1057 if ((control_fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
1058 fatal("%s socket(): %s\n", __func__, strerror(errno));
1059
1060 old_umask = umask(0177);
Damien Miller07b6ff12004-06-15 11:14:45 +10001061 if (bind(control_fd, (struct sockaddr*)&addr, addr_len) == -1) {
Damien Miller0e220db2004-06-15 10:34:08 +10001062 control_fd = -1;
1063 if (errno == EINVAL)
1064 fatal("ControlSocket %s already exists",
1065 options.control_path);
1066 else
1067 fatal("%s bind(): %s\n", __func__, strerror(errno));
1068 }
1069 umask(old_umask);
1070
1071 if (listen(control_fd, 64) == -1)
1072 fatal("%s listen(): %s\n", __func__, strerror(errno));
1073
1074 set_nonblock(control_fd);
1075}
1076
Ben Lindstromf558cf62001-09-20 23:13:49 +00001077/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001078static void
Ben Lindstromf558cf62001-09-20 23:13:49 +00001079ssh_session2_setup(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001080{
Damien Miller3756dce2004-06-18 01:17:29 +10001081 extern char **environ;
1082
Damien Miller0e220db2004-06-15 10:34:08 +10001083 int interactive = tty_flag;
1084 if (options.forward_x11 && getenv("DISPLAY") != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001085 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001086 /* Get reasonable local authentication information. */
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001087 x11_get_proto(&proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001088 /* Request forwarding with authentication spoofing. */
1089 debug("Requesting X11 forwarding with authentication spoofing.");
1090 x11_request_forwarding_with_spoofing(id, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001091 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001092 /* XXX wait for reply */
1093 }
1094
Damien Miller0bc1bd82000-11-13 22:57:25 +11001095 check_agent_present();
1096 if (options.forward_agent) {
1097 debug("Requesting authentication agent forwarding.");
1098 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1099 packet_send();
1100 }
1101
Damien Miller0e220db2004-06-15 10:34:08 +10001102 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
Damien Miller3756dce2004-06-18 01:17:29 +10001103 NULL, fileno(stdin), &command, environ, &ssh_subsystem_reply);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001104
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001105 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001106}
1107
Ben Lindstromf558cf62001-09-20 23:13:49 +00001108/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001109static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001110ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001111{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001112 Channel *c;
1113 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001114
Damien Millercaf6dd62000-08-29 11:33:50 +11001115 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001116 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001117 } else {
1118 in = dup(STDIN_FILENO);
1119 }
1120 out = dup(STDOUT_FILENO);
1121 err = dup(STDERR_FILENO);
1122
1123 if (in < 0 || out < 0 || err < 0)
1124 fatal("dup() in/out/err failed");
1125
Damien Miller69b69aa2000-10-28 14:19:58 +11001126 /* enable nonblocking unless tty */
1127 if (!isatty(in))
1128 set_nonblock(in);
1129 if (!isatty(out))
1130 set_nonblock(out);
1131 if (!isatty(err))
1132 set_nonblock(err);
1133
Damien Millere4340be2000-09-16 13:29:08 +11001134 window = CHAN_SES_WINDOW_DEFAULT;
1135 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001136 if (tty_flag) {
1137 window >>= 1;
1138 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001139 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001140 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001141 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001142 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001143 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001144
Ben Lindstromf558cf62001-09-20 23:13:49 +00001145 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001146
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001147 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001148 if (!no_shell_flag)
Damien Miller0e220db2004-06-15 10:34:08 +10001149 channel_register_confirm(c->self, ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001150
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001151 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001152}
1153
Ben Lindstrombba81212001-06-25 05:01:22 +00001154static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001155ssh_session2(void)
1156{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001157 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001158
1159 /* XXX should be pre-session */
1160 ssh_init_forwarding();
Damien Miller0e220db2004-06-15 10:34:08 +10001161 ssh_control_listener();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001162
Ben Lindstromf558cf62001-09-20 23:13:49 +00001163 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1164 id = ssh_session2_open();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001165
1166 /* If requested, let ssh continue in the background. */
1167 if (fork_after_authentication_flag)
1168 if (daemon(1, 1) < 0)
1169 fatal("daemon() failed: %.200s", strerror(errno));
1170
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001171 return client_loop(tty_flag, tty_flag ?
1172 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001173}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001174
Ben Lindstrombba81212001-06-25 05:01:22 +00001175static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001176load_public_identity_files(void)
1177{
1178 char *filename;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001179 int i = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001180 Key *public;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001181#ifdef SMARTCARD
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001182 Key **keys;
1183
Ben Lindstromf7db3bb2001-08-06 21:35:51 +00001184 if (options.smartcard_device != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001185 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
1186 (keys = sc_get_keys(options.smartcard_device, NULL)) != NULL ) {
1187 int count = 0;
1188 for (i = 0; keys[i] != NULL; i++) {
1189 count++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001190 memmove(&options.identity_files[1], &options.identity_files[0],
1191 sizeof(char *) * (SSH_MAX_IDENTITY_FILES - 1));
1192 memmove(&options.identity_keys[1], &options.identity_keys[0],
1193 sizeof(Key *) * (SSH_MAX_IDENTITY_FILES - 1));
1194 options.num_identity_files++;
1195 options.identity_keys[0] = keys[i];
Damien Miller56a0bb02003-06-18 20:28:40 +10001196 options.identity_files[0] = sc_get_key_label(keys[i]);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001197 }
Ben Lindstrom4f054602002-03-26 03:23:00 +00001198 if (options.num_identity_files > SSH_MAX_IDENTITY_FILES)
1199 options.num_identity_files = SSH_MAX_IDENTITY_FILES;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001200 i = count;
1201 xfree(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001202 }
Ben Lindstromffce1472001-08-06 21:57:31 +00001203#endif /* SMARTCARD */
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001204 for (; i < options.num_identity_files; i++) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001205 filename = tilde_expand_filename(options.identity_files[i],
1206 original_real_uid);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001207 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001208 debug("identity file %s type %d", filename,
1209 public ? public->type : -1);
1210 xfree(options.identity_files[i]);
1211 options.identity_files[i] = filename;
1212 options.identity_keys[i] = public;
1213 }
1214}
Damien Miller0e220db2004-06-15 10:34:08 +10001215
1216static void
1217control_client_sighandler(int signo)
1218{
1219 control_client_terminate = signo;
1220}
1221
1222static void
1223control_client_sigrelay(int signo)
1224{
1225 if (control_server_pid > 1)
1226 kill(control_server_pid, signo);
1227}
1228
Darren Tucker365433f2004-06-22 12:29:23 +10001229static int
1230env_permitted(char *env)
1231{
1232 int i;
1233 char name[1024], *cp;
1234
1235 strlcpy(name, env, sizeof(name));
1236 if ((cp = strchr(name, '=')) == NULL)
1237 return (0);
1238
1239 *cp = '\0';
1240
1241 for (i = 0; i < options.num_send_env; i++)
1242 if (match_pattern(name, options.send_env[i]))
1243 return (1);
1244
1245 return (0);
1246}
1247
Damien Miller0e220db2004-06-15 10:34:08 +10001248static void
1249control_client(const char *path)
1250{
1251 struct sockaddr_un addr;
Darren Tucker365433f2004-06-22 12:29:23 +10001252 int i, r, sock, exitval, num_env, addr_len;
Damien Miller0e220db2004-06-15 10:34:08 +10001253 Buffer m;
1254 char *cp;
Damien Miller3756dce2004-06-18 01:17:29 +10001255 extern char **environ;
Darren Tuckerfc959702004-07-17 16:12:08 +10001256
Damien Miller0e220db2004-06-15 10:34:08 +10001257 memset(&addr, '\0', sizeof(addr));
1258 addr.sun_family = AF_UNIX;
Damien Miller07b6ff12004-06-15 11:14:45 +10001259 addr_len = offsetof(struct sockaddr_un, sun_path) +
Damien Miller0e220db2004-06-15 10:34:08 +10001260 strlen(path) + 1;
1261
1262 if (strlcpy(addr.sun_path, path,
1263 sizeof(addr.sun_path)) >= sizeof(addr.sun_path))
1264 fatal("ControlPath too long");
1265
1266 if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
1267 fatal("%s socket(): %s", __func__, strerror(errno));
1268
Damien Miller07b6ff12004-06-15 11:14:45 +10001269 if (connect(sock, (struct sockaddr*)&addr, addr_len) == -1)
Damien Miller0e220db2004-06-15 10:34:08 +10001270 fatal("Couldn't connect to %s: %s", path, strerror(errno));
1271
1272 if ((cp = getenv("TERM")) == NULL)
1273 cp = "";
1274
Damien Miller0e220db2004-06-15 10:34:08 +10001275 buffer_init(&m);
1276
1277 /* Get PID of controlee */
1278 if (ssh_msg_recv(sock, &m) == -1)
1279 fatal("%s: msg_recv", __func__);
1280 if (buffer_get_char(&m) != 0)
1281 fatal("%s: wrong version", __func__);
Damien Miller23f07702004-06-18 01:19:03 +10001282 /* Connection allowed? */
1283 if (buffer_get_int(&m) != 1)
1284 fatal("Connection to master denied");
Damien Miller0e220db2004-06-15 10:34:08 +10001285 control_server_pid = buffer_get_int(&m);
1286
Damien Miller0e220db2004-06-15 10:34:08 +10001287 buffer_clear(&m);
1288 buffer_put_int(&m, tty_flag);
1289 buffer_put_int(&m, subsystem_flag);
1290 buffer_put_cstring(&m, cp);
1291
1292 buffer_append(&command, "\0", 1);
1293 buffer_put_cstring(&m, buffer_ptr(&command));
1294
Darren Tucker365433f2004-06-22 12:29:23 +10001295 if (options.num_send_env == 0 || environ == NULL) {
1296 buffer_put_int(&m, 0);
Darren Tuckerfc959702004-07-17 16:12:08 +10001297 } else {
Darren Tucker365433f2004-06-22 12:29:23 +10001298 /* Pass environment */
1299 num_env = 0;
1300 for (i = 0; environ[i] != NULL; i++)
1301 if (env_permitted(environ[i]))
1302 num_env++; /* Count */
Darren Tuckerfc959702004-07-17 16:12:08 +10001303
Darren Tucker365433f2004-06-22 12:29:23 +10001304 buffer_put_int(&m, num_env);
1305
Darren Tuckerb5bc1a62004-06-24 00:34:53 +10001306 for (i = 0; environ[i] != NULL && num_env >= 0; i++)
1307 if (env_permitted(environ[i])) {
1308 num_env--;
Darren Tucker365433f2004-06-22 12:29:23 +10001309 buffer_put_cstring(&m, environ[i]);
Darren Tuckerb5bc1a62004-06-24 00:34:53 +10001310 }
Darren Tucker365433f2004-06-22 12:29:23 +10001311 }
Damien Miller3756dce2004-06-18 01:17:29 +10001312
Damien Miller0e220db2004-06-15 10:34:08 +10001313 if (ssh_msg_send(sock, /* version */0, &m) == -1)
1314 fatal("%s: msg_send", __func__);
1315
1316 mm_send_fd(sock, STDIN_FILENO);
1317 mm_send_fd(sock, STDOUT_FILENO);
1318 mm_send_fd(sock, STDERR_FILENO);
1319
1320 /* Wait for reply, so master has a chance to gather ttymodes */
1321 buffer_clear(&m);
1322 if (ssh_msg_recv(sock, &m) == -1)
1323 fatal("%s: msg_recv", __func__);
1324 if (buffer_get_char(&m) != 0)
1325 fatal("%s: master returned error", __func__);
1326 buffer_free(&m);
1327
Darren Tucker07336da2004-11-05 20:02:16 +11001328 signal(SIGHUP, control_client_sighandler);
Damien Miller0809e232004-06-18 22:20:57 +10001329 signal(SIGINT, control_client_sighandler);
1330 signal(SIGTERM, control_client_sighandler);
1331 signal(SIGWINCH, control_client_sigrelay);
1332
Damien Miller0e220db2004-06-15 10:34:08 +10001333 if (tty_flag)
1334 enter_raw_mode();
1335
1336 /* Stick around until the controlee closes the client_fd */
1337 exitval = 0;
1338 for (;!control_client_terminate;) {
1339 r = read(sock, &exitval, sizeof(exitval));
1340 if (r == 0) {
1341 debug2("Received EOF from master");
1342 break;
1343 }
1344 if (r > 0)
1345 debug2("Received exit status from master %d", exitval);
1346 if (r == -1 && errno != EINTR)
1347 fatal("%s: read %s", __func__, strerror(errno));
1348 }
1349
1350 if (control_client_terminate)
1351 debug2("Exiting on signal %d", control_client_terminate);
1352
1353 close(sock);
1354
1355 leave_raw_mode();
1356
1357 if (tty_flag && options.log_level != SYSLOG_LEVEL_QUIET)
1358 fprintf(stderr, "Connection to master closed.\r\n");
1359
1360 exit(exitval);
1361}