blob: 3940dabfd716a79393ab83cf7aa79b856c4899df [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 Tuckere9a9b712005-12-20 16:15:51 +110043RCSID("$OpenBSD: ssh.c,v 1.257 2005/12/20 04:41:07 dtucker 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 */
Darren Tucker0814d312005-06-01 23:08:51 +1000148static u_int mux_command = 0;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100149
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"
Darren Tucker895d6982005-10-03 18:18:05 +1000161" [-D [bind_address:]port] [-e escape_char] [-F configfile]\n"
Damien Miller02faece2005-03-02 12:04:32 +1100162" [-i identity_file] [-L [bind_address:]port:host:hostport]\n"
Damien Millerf91ee4c2005-03-01 21:24:33 +1100163" [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
Damien Miller02faece2005-03-02 12:04:32 +1100164" [-R [bind_address:]port:host:hostport] [-S ctl_path]\n"
Damien Millerd27b9472005-12-13 19:29:02 +1100165" [-w tunnel:tunnel] [user@]hostname [command]\n"
Damien Miller50955102004-03-22 09:34:58 +1100166 );
Darren Tuckere9a9b712005-12-20 16:15:51 +1100167 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000168}
169
Ben Lindstrombba81212001-06-25 05:01:22 +0000170static int ssh_session(void);
171static int ssh_session2(void);
172static void load_public_identity_files(void);
Damien Miller0e220db2004-06-15 10:34:08 +1000173static void control_client(const char *path);
Damien Miller1383bd82000-04-06 12:32:37 +1000174
Damien Miller95def091999-11-25 00:26:21 +1100175/*
176 * Main program for the ssh client.
177 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000178int
179main(int ac, char **av)
180{
Ben Lindstrom24157572002-06-12 16:09:39 +0000181 int i, opt, exit_status;
Damien Miller9836cf82003-12-17 16:30:06 +1100182 char *p, *cp, *line, buf[256];
Damien Miller95def091999-11-25 00:26:21 +1100183 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000184 struct passwd *pw;
Damien Miller1383bd82000-04-06 12:32:37 +1000185 int dummy;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000186 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000187 extern char *optarg;
Damien Miller9651fe62005-06-26 08:55:25 +1000188 struct servent *sp;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100189 Forward fwd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000190
Darren Tuckerce321d82005-10-03 18:11:24 +1000191 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
192 sanitise_stdfd();
193
Damien Miller59d3d5b2003-08-22 09:34:41 +1000194 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000195 init_rng();
196
Damien Miller5428f641999-11-25 11:54:57 +1100197 /*
198 * Save the original real uid. It will be needed later (uid-swapping
199 * may clobber the real uid).
200 */
Damien Miller95def091999-11-25 00:26:21 +1100201 original_real_uid = getuid();
202 original_effective_uid = geteuid();
Damien Millera8e06ce2003-11-21 23:48:55 +1100203
Damien Miller50b9a602002-09-04 16:50:06 +1000204 /*
205 * Use uid-swapping to give up root privileges for the duration of
206 * option processing. We will re-instantiate the rights when we are
207 * ready to create the privileged port, and will permanently drop
208 * them when the port has been created (actually, when the connection
209 * has been made, as we may need to create the port several times).
210 */
211 PRIV_END;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000212
Damien Miller05dd7952000-10-01 00:42:48 +1100213#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100214 /* If we are installed setuid root be careful to not drop core. */
215 if (original_real_uid != original_effective_uid) {
216 struct rlimit rlim;
217 rlim.rlim_cur = rlim.rlim_max = 0;
218 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
219 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000220 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100221#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000222 /* Get user data. */
223 pw = getpwuid(original_real_uid);
224 if (!pw) {
Damien Miller996acd22003-04-09 20:59:48 +1000225 logit("You don't exist, go away!");
Darren Tuckere9a9b712005-12-20 16:15:51 +1100226 exit(255);
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000227 }
228 /* Take a copy of the returned structure. */
229 pw = pwcopy(pw);
230
Damien Miller5428f641999-11-25 11:54:57 +1100231 /*
Damien Miller5428f641999-11-25 11:54:57 +1100232 * Set our umask to something reasonable, as some files are created
233 * with the default umask. This will make them world-readable but
234 * writable only by the owner, which is ok for all files for which we
235 * don't set the modes explicitly.
236 */
Damien Miller95def091999-11-25 00:26:21 +1100237 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000238
Damien Miller95def091999-11-25 00:26:21 +1100239 /* Initialize option structure to indicate that no values have been set. */
240 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000241
Damien Miller95def091999-11-25 00:26:21 +1100242 /* Parse command-line arguments. */
243 host = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000244
Damien Millerf4614452001-07-14 12:18:10 +1000245again:
246 while ((opt = getopt(ac, av,
Damien Millerd27b9472005-12-13 19:29:02 +1100247 "1246ab:c:e:fgi:kl:m:no:p:qstvxACD:F:I:L:MNO:PR:S:TVw:XY")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100248 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000249 case '1':
250 options.protocol = SSH_PROTO_1;
251 break;
Damien Miller4af51302000-04-16 11:18:38 +1000252 case '2':
253 options.protocol = SSH_PROTO_2;
254 break;
Damien Miller34132e52000-01-14 15:45:46 +1100255 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000256 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100257 break;
Damien Miller34132e52000-01-14 15:45:46 +1100258 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000259 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100260 break;
Damien Miller95def091999-11-25 00:26:21 +1100261 case 'n':
262 stdin_null_flag = 1;
263 break;
Damien Miller95def091999-11-25 00:26:21 +1100264 case 'f':
265 fork_after_authentication_flag = 1;
266 stdin_null_flag = 1;
267 break;
Damien Miller95def091999-11-25 00:26:21 +1100268 case 'x':
269 options.forward_x11 = 0;
270 break;
Damien Miller95def091999-11-25 00:26:21 +1100271 case 'X':
272 options.forward_x11 = 1;
273 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000274 case 'Y':
275 options.forward_x11 = 1;
276 options.forward_x11_trusted = 1;
277 break;
Damien Miller95def091999-11-25 00:26:21 +1100278 case 'g':
279 options.gateway_ports = 1;
280 break;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100281 case 'O':
282 if (strcmp(optarg, "check") == 0)
283 mux_command = SSHMUX_COMMAND_ALIVE_CHECK;
284 else if (strcmp(optarg, "exit") == 0)
285 mux_command = SSHMUX_COMMAND_TERMINATE;
286 else
287 fatal("Invalid multiplex command.");
288 break;
Damien Miller147bba32002-09-04 16:46:06 +1000289 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100290 options.use_privileged_port = 0;
291 break;
Damien Miller95def091999-11-25 00:26:21 +1100292 case 'a':
293 options.forward_agent = 0;
294 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000295 case 'A':
296 options.forward_agent = 1;
297 break;
Damien Miller95def091999-11-25 00:26:21 +1100298 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100299 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100300 break;
Damien Miller95def091999-11-25 00:26:21 +1100301 case 'i':
302 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000303 fprintf(stderr, "Warning: Identity file %s "
Damien Miller3eb48b62005-03-01 21:15:46 +1100304 "not accessible: %s.\n", optarg,
305 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100306 break;
307 }
Damien Millerf4614452001-07-14 12:18:10 +1000308 if (options.num_identity_files >=
309 SSH_MAX_IDENTITY_FILES)
310 fatal("Too many identity files specified "
311 "(max %d)", SSH_MAX_IDENTITY_FILES);
312 options.identity_files[options.num_identity_files++] =
313 xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100314 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000315 case 'I':
316#ifdef SMARTCARD
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000317 options.smartcard_device = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000318#else
Ben Lindstromc5b68002001-07-04 04:52:03 +0000319 fprintf(stderr, "no support for smartcards.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000320#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000321 break;
Damien Miller95def091999-11-25 00:26:21 +1100322 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000323 if (tty_flag)
324 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100325 tty_flag = 1;
326 break;
Damien Miller95def091999-11-25 00:26:21 +1100327 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000328 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100329 debug_flag = 1;
330 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000331 } else {
332 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
333 options.log_level++;
Damien Millere4340be2000-09-16 13:29:08 +1100334 break;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000335 }
Darren Tuckere9bf9842004-11-05 20:05:32 +1100336 /* FALLTHROUGH */
Damien Miller95def091999-11-25 00:26:21 +1100337 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100338 fprintf(stderr, "%s, %s\n",
Damien Miller2aa6d3c2004-09-12 16:53:04 +1000339 SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
Damien Miller95def091999-11-25 00:26:21 +1100340 if (opt == 'V')
341 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100342 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100343 case 'w':
Damien Miller7b58e802005-12-13 19:33:19 +1100344 if (options.tun_open == -1)
345 options.tun_open = SSH_TUNMODE_DEFAULT;
Damien Millerd27b9472005-12-13 19:29:02 +1100346 options.tun_local = a2tun(optarg, &options.tun_remote);
Damien Miller7b58e802005-12-13 19:33:19 +1100347 if (options.tun_local == SSH_TUNID_ERR) {
Damien Millerd27b9472005-12-13 19:29:02 +1100348 fprintf(stderr, "Bad tun device '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100349 exit(255);
Damien Millerd27b9472005-12-13 19:29:02 +1100350 }
351 break;
Damien Miller95def091999-11-25 00:26:21 +1100352 case 'q':
353 options.log_level = SYSLOG_LEVEL_QUIET;
354 break;
Damien Miller95def091999-11-25 00:26:21 +1100355 case 'e':
356 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000357 (u_char) optarg[1] >= 64 &&
358 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000359 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100360 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000361 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100362 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000363 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100364 else {
Damien Millerf4614452001-07-14 12:18:10 +1000365 fprintf(stderr, "Bad escape character '%s'.\n",
366 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100367 exit(255);
Damien Miller95def091999-11-25 00:26:21 +1100368 }
369 break;
Damien Miller95def091999-11-25 00:26:21 +1100370 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000371 if (ciphers_valid(optarg)) {
372 /* SSH2 only */
373 options.ciphers = xstrdup(optarg);
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000374 options.cipher = SSH_CIPHER_INVALID;
Damien Millereba71ba2000-04-29 23:57:08 +1000375 } else {
376 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100377 options.cipher = cipher_number(optarg);
378 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000379 fprintf(stderr,
380 "Unknown cipher type '%s'\n",
381 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100382 exit(255);
Damien Millereba71ba2000-04-29 23:57:08 +1000383 }
Damien Millerf4614452001-07-14 12:18:10 +1000384 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100385 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000386 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100387 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000388 else
Damien Millere39cacc2000-11-29 12:18:44 +1100389 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100390 }
391 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000392 case 'm':
393 if (mac_valid(optarg))
394 options.macs = xstrdup(optarg);
395 else {
Damien Millerf4614452001-07-14 12:18:10 +1000396 fprintf(stderr, "Unknown mac type '%s'\n",
397 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100398 exit(255);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000399 }
400 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000401 case 'M':
Damien Millerd14b1e72005-06-16 13:19:41 +1000402 if (options.control_master == SSHCTL_MASTER_YES)
403 options.control_master = SSHCTL_MASTER_ASK;
404 else
405 options.control_master = SSHCTL_MASTER_YES;
Damien Miller0e220db2004-06-15 10:34:08 +1000406 break;
Damien Miller95def091999-11-25 00:26:21 +1100407 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000408 options.port = a2port(optarg);
409 if (options.port == 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000410 fprintf(stderr, "Bad port '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100411 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000412 }
Damien Miller95def091999-11-25 00:26:21 +1100413 break;
Damien Miller95def091999-11-25 00:26:21 +1100414 case 'l':
415 options.user = optarg;
416 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000417
Damien Miller95def091999-11-25 00:26:21 +1100418 case 'L':
Damien Millerf91ee4c2005-03-01 21:24:33 +1100419 if (parse_forward(&fwd, optarg))
420 add_local_forward(&options, &fwd);
421 else {
Damien Millerf4614452001-07-14 12:18:10 +1000422 fprintf(stderr,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100423 "Bad local forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000424 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100425 exit(255);
Ben Lindstrom1a174712001-09-12 17:56:15 +0000426 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100427 break;
428
429 case 'R':
430 if (parse_forward(&fwd, optarg)) {
431 add_remote_forward(&options, &fwd);
432 } else {
433 fprintf(stderr,
434 "Bad remote forwarding specification "
435 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100436 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100437 }
Damien Miller95def091999-11-25 00:26:21 +1100438 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000439
440 case 'D':
Damien Millerf91ee4c2005-03-01 21:24:33 +1100441 cp = p = xstrdup(optarg);
442 memset(&fwd, '\0', sizeof(fwd));
443 fwd.connect_host = "socks";
444 if ((fwd.listen_host = hpdelim(&cp)) == NULL) {
445 fprintf(stderr, "Bad dynamic forwarding "
446 "specification '%.100s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100447 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100448 }
449 if (cp != NULL) {
450 fwd.listen_port = a2port(cp);
451 fwd.listen_host = cleanhostname(fwd.listen_host);
452 } else {
453 fwd.listen_port = a2port(fwd.listen_host);
Damien Millerbe1045d2005-08-12 22:10:56 +1000454 fwd.listen_host = NULL;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100455 }
456
457 if (fwd.listen_port == 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000458 fprintf(stderr, "Bad dynamic port '%s'\n",
459 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100460 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000461 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100462 add_local_forward(&options, &fwd);
463 xfree(p);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000464 break;
465
Damien Miller95def091999-11-25 00:26:21 +1100466 case 'C':
467 options.compression = 1;
468 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000469 case 'N':
470 no_shell_flag = 1;
471 no_tty_flag = 1;
472 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000473 case 'T':
474 no_tty_flag = 1;
475 break;
Damien Miller95def091999-11-25 00:26:21 +1100476 case 'o':
477 dummy = 1;
Damien Miller9836cf82003-12-17 16:30:06 +1100478 line = xstrdup(optarg);
Damien Millerf4614452001-07-14 12:18:10 +1000479 if (process_config_line(&options, host ? host : "",
Damien Miller9836cf82003-12-17 16:30:06 +1100480 line, "command-line", 0, &dummy) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100481 exit(255);
Damien Miller9836cf82003-12-17 16:30:06 +1100482 xfree(line);
Damien Miller95def091999-11-25 00:26:21 +1100483 break;
Damien Miller832562e2001-01-30 09:30:01 +1100484 case 's':
485 subsystem_flag = 1;
486 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000487 case 'S':
488 if (options.control_path != NULL)
489 free(options.control_path);
490 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000491 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000492 case 'b':
493 options.bind_address = optarg;
494 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000495 case 'F':
496 config = optarg;
497 break;
Damien Miller95def091999-11-25 00:26:21 +1100498 default:
499 usage();
500 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000501 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000502
Damien Millerf4614452001-07-14 12:18:10 +1000503 ac -= optind;
504 av += optind;
505
506 if (ac > 0 && !host && **av != '-') {
Ben Lindstromc276c122002-12-23 02:14:51 +0000507 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000508 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000509 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000510 if (cp == NULL || cp == p)
511 usage();
512 options.user = p;
513 *cp = '\0';
514 host = ++cp;
515 } else
516 host = *av;
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000517 if (ac > 1) {
518 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000519 goto again;
520 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000521 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000522 }
523
Damien Miller95def091999-11-25 00:26:21 +1100524 /* Check that we got a host name. */
525 if (!host)
526 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000527
Damien Millercb5e44a2000-09-29 12:12:36 +1100528 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100529 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100530
Damien Miller95def091999-11-25 00:26:21 +1100531 /* Initialize the command to execute on remote host. */
532 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000533
Damien Miller5428f641999-11-25 11:54:57 +1100534 /*
535 * Save the command to execute on the remote host in a buffer. There
536 * is no limit on the length of the command, except by the maximum
537 * packet size. Also sets the tty flag if there is no command.
538 */
Damien Millerf4614452001-07-14 12:18:10 +1000539 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100540 /* No command specified - execute shell on a tty. */
541 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100542 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000543 fprintf(stderr,
544 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100545 usage();
546 }
Damien Miller95def091999-11-25 00:26:21 +1100547 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000548 /* A command has been specified. Store it into the buffer. */
549 for (i = 0; i < ac; i++) {
550 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100551 buffer_append(&command, " ", 1);
552 buffer_append(&command, av[i], strlen(av[i]));
553 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000554 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000555
Damien Miller95def091999-11-25 00:26:21 +1100556 /* Cannot fork to background if no command. */
Damien Millercaf6dd62000-08-29 11:33:50 +1100557 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
Damien Miller95def091999-11-25 00:26:21 +1100558 fatal("Cannot fork into background without a command to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000559
Damien Miller95def091999-11-25 00:26:21 +1100560 /* Allocate a tty by default if no command specified. */
561 if (buffer_len(&command) == 0)
562 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000563
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000564 /* Force no tty */
Ben Lindstromc72745a2000-12-02 19:03:54 +0000565 if (no_tty_flag)
566 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100567 /* Do not allocate a tty if stdin is not a tty. */
Damien Millerddee5752005-05-26 12:05:05 +1000568 if ((!isatty(fileno(stdin)) || stdin_null_flag) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100569 if (tty_flag)
Damien Miller996acd22003-04-09 20:59:48 +1000570 logit("Pseudo-terminal will not be allocated because stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100571 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000572 }
Damien Miller1383bd82000-04-06 12:32:37 +1000573
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000574 /*
575 * Initialize "log" output. Since we are the client all output
576 * actually goes to stderr.
577 */
Ben Lindstrom2b646522001-04-12 16:16:57 +0000578 log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
579 SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000580
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000581 /*
582 * Read per-user configuration file. Ignore the system wide config
583 * file if the user specifies a config file on the command line.
584 */
585 if (config != NULL) {
Damien Miller914420f2004-04-20 20:14:07 +1000586 if (!read_config_file(config, host, &options, 0))
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000587 fatal("Can't open user config file %.100s: "
588 "%.100s", config, strerror(errno));
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000589 } else {
590 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,
591 _PATH_SSH_USER_CONFFILE);
Damien Miller57a44762004-04-20 20:11:57 +1000592 (void)read_config_file(buf, host, &options, 1);
Ben Lindstrom83f07d12001-10-03 17:22:29 +0000593
594 /* Read systemwide configuration file after use config. */
Darren Tuckerfc959702004-07-17 16:12:08 +1000595 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host,
Damien Miller57a44762004-04-20 20:11:57 +1000596 &options, 0);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000597 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000598
Damien Miller95def091999-11-25 00:26:21 +1100599 /* Fill configuration defaults. */
600 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000601
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000602 channel_set_af(options.address_family);
603
Damien Miller95def091999-11-25 00:26:21 +1100604 /* reinit */
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000605 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000606
Damien Miller60bc5172001-03-19 09:38:15 +1100607 seed_rng();
608
Damien Miller95def091999-11-25 00:26:21 +1100609 if (options.user == NULL)
610 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000611
Damien Miller95def091999-11-25 00:26:21 +1100612 if (options.hostname != NULL)
613 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000614
Darren Tucker3f521e22003-07-03 16:20:42 +1000615 /* force lowercase for hostkey matching */
616 if (options.host_key_alias != NULL) {
617 for (p = options.host_key_alias; *p; p++)
618 if (isupper(*p))
619 *p = tolower(*p);
620 }
621
Damien Miller7c71cc72005-06-26 08:56:31 +1000622 /* Get default port if port has not been set. */
623 if (options.port == 0) {
624 sp = getservbyname(SSH_SERVICE_NAME, "tcp");
625 options.port = sp ? ntohs(sp->s_port) : SSH_DEFAULT_PORT;
626 }
627
Damien Miller9f1e33a2003-02-24 11:57:32 +1100628 if (options.proxy_command != NULL &&
629 strcmp(options.proxy_command, "none") == 0)
630 options.proxy_command = NULL;
Damien Miller8f74c8f2005-06-26 08:56:03 +1000631 if (options.control_path != NULL &&
632 strcmp(options.control_path, "none") == 0)
633 options.control_path = NULL;
Damien Miller9f1e33a2003-02-24 11:57:32 +1100634
Damien Miller0e220db2004-06-15 10:34:08 +1000635 if (options.control_path != NULL) {
Damien Miller6476cad2005-06-16 13:18:34 +1000636 snprintf(buf, sizeof(buf), "%d", options.port);
637 cp = tilde_expand_filename(options.control_path,
638 original_real_uid);
639 options.control_path = percent_expand(cp, "p", buf, "h", host,
640 "r", options.user, (char *)NULL);
641 xfree(cp);
Damien Miller0e220db2004-06-15 10:34:08 +1000642 }
Darren Tucker0814d312005-06-01 23:08:51 +1000643 if (mux_command != 0 && options.control_path == NULL)
644 fatal("No ControlPath specified for \"-O\" command");
Damien Millerd14b1e72005-06-16 13:19:41 +1000645 if (options.control_path != NULL)
Damien Millerdadfd4d2005-05-26 12:07:13 +1000646 control_client(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +1000647
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000648 /* Open a connection to the remote host. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000649 if (ssh_connect(host, &hostaddr, options.port,
650 options.address_family, options.connection_attempts,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000651#ifdef HAVE_CYGWIN
652 options.use_privileged_port,
653#else
Ben Lindstromf9c48842002-06-11 16:37:51 +0000654 original_effective_uid == 0 && options.use_privileged_port,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000655#endif
Ben Lindstromda394ca2002-06-12 16:11:12 +0000656 options.proxy_command) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100657 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000658
Damien Miller5428f641999-11-25 11:54:57 +1100659 /*
660 * If we successfully made the connection, load the host private key
661 * in case we will need it later for combined rsa-rhosts
662 * authentication. This must be done before releasing extra
663 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +0000664 * If we cannot access the private keys, load the public keys
665 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +1100666 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000667 sensitive_data.nkeys = 0;
668 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000669 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +0000670 if (options.rhosts_rsa_authentication ||
671 options.hostbased_authentication) {
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000672 sensitive_data.nkeys = 3;
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000673 sensitive_data.keys = xmalloc(sensitive_data.nkeys *
674 sizeof(Key));
Ben Lindstromf9c48842002-06-11 16:37:51 +0000675
676 PRIV_START;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000677 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Ben Lindstromd0fca422001-03-26 13:44:06 +0000678 _PATH_HOST_KEY_FILE, "", NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000679 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
680 _PATH_HOST_DSA_KEY_FILE, "", NULL);
681 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
682 _PATH_HOST_RSA_KEY_FILE, "", NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +0000683 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000684
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +0000685 if (options.hostbased_authentication == 1 &&
686 sensitive_data.keys[0] == NULL &&
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000687 sensitive_data.keys[1] == NULL &&
688 sensitive_data.keys[2] == NULL) {
689 sensitive_data.keys[1] = key_load_public(
690 _PATH_HOST_DSA_KEY_FILE, NULL);
691 sensitive_data.keys[2] = key_load_public(
692 _PATH_HOST_RSA_KEY_FILE, NULL);
693 sensitive_data.external_keysign = 1;
694 }
Damien Miller95def091999-11-25 00:26:21 +1100695 }
Damien Miller5428f641999-11-25 11:54:57 +1100696 /*
697 * Get rid of any extra privileges that we may have. We will no
698 * longer need them. Also, extra privileges could make it very hard
699 * to read identity files and other non-world-readable files from the
700 * user's home directory if it happens to be on a NFS volume where
701 * root is mapped to nobody.
702 */
Darren Tucker25f60a72004-08-15 17:23:34 +1000703 if (original_effective_uid == 0) {
704 PRIV_START;
705 permanently_set_uid(pw);
706 }
Damien Miller95def091999-11-25 00:26:21 +1100707
Damien Miller5428f641999-11-25 11:54:57 +1100708 /*
709 * Now that we are back to our own permissions, create ~/.ssh
Damien Miller788f2122005-11-05 15:14:59 +1100710 * directory if it doesn't already exist.
Damien Miller5428f641999-11-25 11:54:57 +1100711 */
Ben Lindstrom930b14a2001-08-15 23:19:21 +0000712 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 +1100713 if (stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000714 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100715 error("Could not create directory '%.200s'.", buf);
716
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000717 /* load options.identity_files */
718 load_public_identity_files();
719
720 /* Expand ~ in known host file names. */
721 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100722 options.system_hostfile =
723 tilde_expand_filename(options.system_hostfile, original_real_uid);
724 options.user_hostfile =
725 tilde_expand_filename(options.user_hostfile, original_real_uid);
726 options.system_hostfile2 =
727 tilde_expand_filename(options.system_hostfile2, original_real_uid);
728 options.user_hostfile2 =
729 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100730
Damien Miller07cd5892001-11-12 10:52:03 +1100731 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
732
Damien Miller95def091999-11-25 00:26:21 +1100733 /* Log into the remote system. This never returns if the login fails. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000734 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr, pw);
Damien Miller95def091999-11-25 00:26:21 +1100735
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000736 /* We no longer need the private host keys. Clear them now. */
737 if (sensitive_data.nkeys != 0) {
738 for (i = 0; i < sensitive_data.nkeys; i++) {
739 if (sensitive_data.keys[i] != NULL) {
740 /* Destroys contents safely */
741 debug3("clear hostkey %d", i);
742 key_free(sensitive_data.keys[i]);
743 sensitive_data.keys[i] = NULL;
744 }
745 }
746 xfree(sensitive_data.keys);
747 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000748 for (i = 0; i < options.num_identity_files; i++) {
749 if (options.identity_files[i]) {
750 xfree(options.identity_files[i]);
751 options.identity_files[i] = NULL;
752 }
753 if (options.identity_keys[i]) {
754 key_free(options.identity_keys[i]);
755 options.identity_keys[i] = NULL;
756 }
757 }
Damien Miller95def091999-11-25 00:26:21 +1100758
Damien Miller1383bd82000-04-06 12:32:37 +1000759 exit_status = compat20 ? ssh_session2() : ssh_session();
760 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +1000761
Damien Miller0e220db2004-06-15 10:34:08 +1000762 if (options.control_path != NULL && control_fd != -1)
763 unlink(options.control_path);
764
Damien Miller8c4e18a2002-09-19 12:05:02 +1000765 /*
Damien Millera8e06ce2003-11-21 23:48:55 +1100766 * Send SIGHUP to proxy command if used. We don't wait() in
Damien Miller8c4e18a2002-09-19 12:05:02 +1000767 * case it hangs and instead rely on init to reap the child
768 */
769 if (proxy_command_pid > 1)
770 kill(proxy_command_pid, SIGHUP);
771
Damien Miller1383bd82000-04-06 12:32:37 +1000772 return exit_status;
773}
774
Ben Lindstrombba81212001-06-25 05:01:22 +0000775static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100776ssh_init_forwarding(void)
777{
Kevin Steves12057502001-02-05 14:54:34 +0000778 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100779 int i;
Kevin Steves12057502001-02-05 14:54:34 +0000780
Damien Miller0bc1bd82000-11-13 22:57:25 +1100781 /* Initiate local TCP/IP port forwardings. */
782 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100783 debug("Local connections to %.200s:%d forwarded to remote "
784 "address %.200s:%d",
Darren Tucker47eede72005-03-14 23:08:12 +1100785 (options.local_forwards[i].listen_host == NULL) ?
786 (options.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +1100787 options.local_forwards[i].listen_host,
788 options.local_forwards[i].listen_port,
789 options.local_forwards[i].connect_host,
790 options.local_forwards[i].connect_port);
Damien Millerb16461c2002-01-22 23:29:22 +1100791 success += channel_setup_local_fwd_listener(
Damien Millerf91ee4c2005-03-01 21:24:33 +1100792 options.local_forwards[i].listen_host,
793 options.local_forwards[i].listen_port,
794 options.local_forwards[i].connect_host,
795 options.local_forwards[i].connect_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100796 options.gateway_ports);
797 }
Kevin Steves12057502001-02-05 14:54:34 +0000798 if (i > 0 && success == 0)
799 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100800
801 /* Initiate remote TCP/IP port forwardings. */
802 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100803 debug("Remote connections from %.200s:%d forwarded to "
804 "local address %.200s:%d",
Damien Miller46d38de2005-07-17 17:02:09 +1000805 (options.remote_forwards[i].listen_host == NULL) ?
Damien Milleraa3bb102005-11-05 15:12:59 +1100806 "LOCALHOST" : options.remote_forwards[i].listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100807 options.remote_forwards[i].listen_port,
808 options.remote_forwards[i].connect_host,
809 options.remote_forwards[i].connect_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100810 channel_request_remote_forwarding(
Damien Millerf91ee4c2005-03-01 21:24:33 +1100811 options.remote_forwards[i].listen_host,
812 options.remote_forwards[i].listen_port,
813 options.remote_forwards[i].connect_host,
814 options.remote_forwards[i].connect_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100815 }
816}
817
Ben Lindstrombba81212001-06-25 05:01:22 +0000818static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100819check_agent_present(void)
820{
821 if (options.forward_agent) {
Damien Miller788f2122005-11-05 15:14:59 +1100822 /* Clear agent forwarding if we don't have an agent. */
Damien Miller789e95d2002-09-12 09:52:46 +1000823 if (!ssh_agent_present())
Damien Miller0bc1bd82000-11-13 22:57:25 +1100824 options.forward_agent = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100825 }
826}
827
Ben Lindstrombba81212001-06-25 05:01:22 +0000828static int
Damien Miller1383bd82000-04-06 12:32:37 +1000829ssh_session(void)
830{
831 int type;
Damien Miller1383bd82000-04-06 12:32:37 +1000832 int interactive = 0;
833 int have_tty = 0;
834 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +1000835 char *cp;
Damien Miller17e7ed02005-06-17 12:54:33 +1000836 const char *display;
Damien Miller1383bd82000-04-06 12:32:37 +1000837
Damien Miller95def091999-11-25 00:26:21 +1100838 /* Enable compression if requested. */
839 if (options.compression) {
840 debug("Requesting compression at level %d.", options.compression_level);
841
842 if (options.compression_level < 1 || options.compression_level > 9)
843 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
844
845 /* Send the request. */
846 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
847 packet_put_int(options.compression_level);
848 packet_send();
849 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +1100850 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100851 if (type == SSH_SMSG_SUCCESS)
852 packet_start_compression(options.compression_level);
853 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +1000854 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +1100855 else
856 packet_disconnect("Protocol error waiting for compression response.");
857 }
858 /* Allocate a pseudo tty if appropriate. */
859 if (tty_flag) {
860 debug("Requesting pty.");
861
862 /* Start the packet. */
863 packet_start(SSH_CMSG_REQUEST_PTY);
864
865 /* Store TERM in the packet. There is no limit on the
866 length of the string. */
867 cp = getenv("TERM");
868 if (!cp)
869 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +0000870 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +1100871
872 /* Store window size in the packet. */
873 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
874 memset(&ws, 0, sizeof(ws));
875 packet_put_int(ws.ws_row);
876 packet_put_int(ws.ws_col);
877 packet_put_int(ws.ws_xpixel);
878 packet_put_int(ws.ws_ypixel);
879
880 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000881 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +1100882
883 /* Send the packet, and wait for it to leave. */
884 packet_send();
885 packet_write_wait();
886
887 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100888 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +1000889 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100890 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000891 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +1000892 } else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +1000893 logit("Warning: Remote host failed or refused to allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +1100894 else
895 packet_disconnect("Protocol error waiting for pty request response.");
896 }
897 /* Request X11 forwarding if enabled and DISPLAY is set. */
Damien Miller17e7ed02005-06-17 12:54:33 +1000898 display = getenv("DISPLAY");
899 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000900 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +1000901 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +1000902 client_x11_get_proto(display, options.xauth_location,
903 options.forward_x11_trusted, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +1000904 /* Request forwarding with authentication spoofing. */
Damien Miller95def091999-11-25 00:26:21 +1100905 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +1000906 x11_request_forwarding_with_spoofing(0, display, proto, data);
Damien Miller95def091999-11-25 00:26:21 +1100907
908 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100909 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100910 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100911 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000912 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +1000913 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +1000914 } else {
Damien Miller95def091999-11-25 00:26:21 +1100915 packet_disconnect("Protocol error waiting for X11 forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +1000916 }
Damien Miller95def091999-11-25 00:26:21 +1100917 }
918 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000919 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +1100920
921 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100922 check_agent_present();
923
Damien Miller95def091999-11-25 00:26:21 +1100924 if (options.forward_agent) {
925 debug("Requesting authentication agent forwarding.");
926 auth_request_forwarding();
927
928 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100929 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +1100930 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +1100931 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +1000932 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +1100933 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000934
Damien Miller0bc1bd82000-11-13 22:57:25 +1100935 /* Initiate port forwardings. */
936 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000937
Damien Miller5428f641999-11-25 11:54:57 +1100938 /* If requested, let ssh continue in the background. */
Damien Miller4af51302000-04-16 11:18:38 +1000939 if (fork_after_authentication_flag)
Damien Miller5428f641999-11-25 11:54:57 +1100940 if (daemon(1, 1) < 0)
941 fatal("daemon() failed: %.200s", strerror(errno));
942
943 /*
944 * If a command was specified on the command line, execute the
945 * command now. Otherwise request the server to start a shell.
946 */
Damien Miller95def091999-11-25 00:26:21 +1100947 if (buffer_len(&command) > 0) {
948 int len = buffer_len(&command);
949 if (len > 900)
950 len = 900;
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100951 debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +1100952 packet_start(SSH_CMSG_EXEC_CMD);
953 packet_put_string(buffer_ptr(&command), buffer_len(&command));
954 packet_send();
955 packet_write_wait();
956 } else {
957 debug("Requesting shell.");
958 packet_start(SSH_CMSG_EXEC_SHELL);
959 packet_send();
960 packet_write_wait();
961 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000962
Damien Miller95def091999-11-25 00:26:21 +1100963 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000964 return client_loop(have_tty, tty_flag ?
965 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +1000966}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000967
Ben Lindstrombba81212001-06-25 05:01:22 +0000968static void
Damien Miller0e220db2004-06-15 10:34:08 +1000969ssh_subsystem_reply(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000970{
971 int id, len;
972
973 id = packet_get_int();
974 len = buffer_len(&command);
Ben Lindstrom4040fe12001-03-05 06:52:57 +0000975 if (len > 900)
976 len = 900;
Damien Miller48b03fc2002-01-22 23:11:40 +1100977 packet_check_eom();
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000978 if (type == SSH2_MSG_CHANNEL_FAILURE)
979 fatal("Request for subsystem '%.*s' failed on channel %d",
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100980 len, (u_char *)buffer_ptr(&command), id);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000981}
982
Damien Miller2797f7f2002-04-23 21:09:44 +1000983void
Damien Miller509b0102003-12-17 16:33:10 +1100984client_global_request_reply_fwd(int type, u_int32_t seq, void *ctxt)
Damien Miller2797f7f2002-04-23 21:09:44 +1000985{
986 int i;
987
988 i = client_global_request_id++;
Damien Miller509b0102003-12-17 16:33:10 +1100989 if (i >= options.num_remote_forwards)
Damien Miller2797f7f2002-04-23 21:09:44 +1000990 return;
Damien Miller2797f7f2002-04-23 21:09:44 +1000991 debug("remote forward %s for: listen %d, connect %s:%d",
992 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
Damien Millerf91ee4c2005-03-01 21:24:33 +1100993 options.remote_forwards[i].listen_port,
994 options.remote_forwards[i].connect_host,
995 options.remote_forwards[i].connect_port);
Damien Miller2797f7f2002-04-23 21:09:44 +1000996 if (type == SSH2_MSG_REQUEST_FAILURE)
Damien Millerf91ee4c2005-03-01 21:24:33 +1100997 logit("Warning: remote port forwarding failed for listen "
998 "port %d", options.remote_forwards[i].listen_port);
Damien Miller2797f7f2002-04-23 21:09:44 +1000999}
1000
Damien Miller0e220db2004-06-15 10:34:08 +10001001static void
1002ssh_control_listener(void)
1003{
1004 struct sockaddr_un addr;
1005 mode_t old_umask;
Damien Miller07b6ff12004-06-15 11:14:45 +10001006 int addr_len;
1007
Damien Millerd14b1e72005-06-16 13:19:41 +10001008 if (options.control_path == NULL ||
1009 options.control_master == SSHCTL_MASTER_NO)
Damien Miller0e220db2004-06-15 10:34:08 +10001010 return;
1011
Damien Millerd14b1e72005-06-16 13:19:41 +10001012 debug("setting up multiplex master socket");
1013
Damien Miller0e220db2004-06-15 10:34:08 +10001014 memset(&addr, '\0', sizeof(addr));
1015 addr.sun_family = AF_UNIX;
Damien Miller07b6ff12004-06-15 11:14:45 +10001016 addr_len = offsetof(struct sockaddr_un, sun_path) +
Damien Miller0e220db2004-06-15 10:34:08 +10001017 strlen(options.control_path) + 1;
1018
1019 if (strlcpy(addr.sun_path, options.control_path,
1020 sizeof(addr.sun_path)) >= sizeof(addr.sun_path))
1021 fatal("ControlPath too long");
1022
1023 if ((control_fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001024 fatal("%s socket(): %s", __func__, strerror(errno));
Damien Miller0e220db2004-06-15 10:34:08 +10001025
1026 old_umask = umask(0177);
Damien Miller07b6ff12004-06-15 11:14:45 +10001027 if (bind(control_fd, (struct sockaddr*)&addr, addr_len) == -1) {
Damien Miller0e220db2004-06-15 10:34:08 +10001028 control_fd = -1;
Damien Miller4f10e252005-05-04 15:33:09 +10001029 if (errno == EINVAL || errno == EADDRINUSE)
Damien Miller0e220db2004-06-15 10:34:08 +10001030 fatal("ControlSocket %s already exists",
1031 options.control_path);
1032 else
Damien Miller15d72a02005-11-05 15:07:33 +11001033 fatal("%s bind(): %s", __func__, strerror(errno));
Damien Miller0e220db2004-06-15 10:34:08 +10001034 }
1035 umask(old_umask);
1036
1037 if (listen(control_fd, 64) == -1)
Damien Miller15d72a02005-11-05 15:07:33 +11001038 fatal("%s listen(): %s", __func__, strerror(errno));
Damien Miller0e220db2004-06-15 10:34:08 +10001039
1040 set_nonblock(control_fd);
1041}
1042
Ben Lindstromf558cf62001-09-20 23:13:49 +00001043/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001044static void
Ben Lindstromf558cf62001-09-20 23:13:49 +00001045ssh_session2_setup(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001046{
Damien Miller3756dce2004-06-18 01:17:29 +10001047 extern char **environ;
Damien Miller17e7ed02005-06-17 12:54:33 +10001048 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +10001049 int interactive = tty_flag;
Damien Miller17e7ed02005-06-17 12:54:33 +10001050
Damien Miller46d38de2005-07-17 17:02:09 +10001051 display = getenv("DISPLAY");
Damien Miller17e7ed02005-06-17 12:54:33 +10001052 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001053 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001054 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001055 client_x11_get_proto(display, options.xauth_location,
1056 options.forward_x11_trusted, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001057 /* Request forwarding with authentication spoofing. */
1058 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +10001059 x11_request_forwarding_with_spoofing(id, display, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001060 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001061 /* XXX wait for reply */
1062 }
1063
Damien Miller0bc1bd82000-11-13 22:57:25 +11001064 check_agent_present();
1065 if (options.forward_agent) {
1066 debug("Requesting authentication agent forwarding.");
1067 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1068 packet_send();
1069 }
1070
Damien Miller7b58e802005-12-13 19:33:19 +11001071 if (options.tun_open != SSH_TUNMODE_NO) {
Damien Millerd27b9472005-12-13 19:29:02 +11001072 Channel *c;
1073 int fd;
1074
1075 debug("Requesting tun.");
Damien Miller7b58e802005-12-13 19:33:19 +11001076 if ((fd = tun_open(options.tun_local,
1077 options.tun_open)) >= 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11001078 c = channel_new("tun", SSH_CHANNEL_OPENING, fd, fd, -1,
1079 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
1080 0, "tun", 1);
1081 c->datagram = 1;
Damien Miller598bbc22005-12-31 16:33:36 +11001082#if defined(SSH_TUN_FILTER)
1083 if (options.tun_open == SSH_TUNMODE_POINTOPOINT)
1084 channel_register_filter(c->self, sys_tun_infilter,
1085 sys_tun_outfilter);
1086#endif
Damien Millerd27b9472005-12-13 19:29:02 +11001087 packet_start(SSH2_MSG_CHANNEL_OPEN);
1088 packet_put_cstring("tun@openssh.com");
1089 packet_put_int(c->self);
1090 packet_put_int(c->local_window_max);
1091 packet_put_int(c->local_maxpacket);
Damien Miller7b58e802005-12-13 19:33:19 +11001092 packet_put_int(options.tun_open);
Damien Millerd27b9472005-12-13 19:29:02 +11001093 packet_put_int(options.tun_remote);
1094 packet_send();
1095 }
1096 }
1097
Damien Miller0e220db2004-06-15 10:34:08 +10001098 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
Damien Miller3756dce2004-06-18 01:17:29 +10001099 NULL, fileno(stdin), &command, environ, &ssh_subsystem_reply);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001100
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001101 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001102}
1103
Ben Lindstromf558cf62001-09-20 23:13:49 +00001104/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001105static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001106ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001107{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001108 Channel *c;
1109 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001110
Damien Millercaf6dd62000-08-29 11:33:50 +11001111 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001112 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001113 } else {
1114 in = dup(STDIN_FILENO);
1115 }
1116 out = dup(STDOUT_FILENO);
1117 err = dup(STDERR_FILENO);
1118
1119 if (in < 0 || out < 0 || err < 0)
1120 fatal("dup() in/out/err failed");
1121
Damien Miller69b69aa2000-10-28 14:19:58 +11001122 /* enable nonblocking unless tty */
1123 if (!isatty(in))
1124 set_nonblock(in);
1125 if (!isatty(out))
1126 set_nonblock(out);
1127 if (!isatty(err))
1128 set_nonblock(err);
1129
Damien Millere4340be2000-09-16 13:29:08 +11001130 window = CHAN_SES_WINDOW_DEFAULT;
1131 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001132 if (tty_flag) {
1133 window >>= 1;
1134 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001135 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001136 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001137 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001138 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001139 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001140
Ben Lindstromf558cf62001-09-20 23:13:49 +00001141 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001142
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001143 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001144 if (!no_shell_flag)
Damien Miller0e220db2004-06-15 10:34:08 +10001145 channel_register_confirm(c->self, ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001146
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001147 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001148}
1149
Ben Lindstrombba81212001-06-25 05:01:22 +00001150static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001151ssh_session2(void)
1152{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001153 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001154
1155 /* XXX should be pre-session */
1156 ssh_init_forwarding();
Damien Miller0e220db2004-06-15 10:34:08 +10001157 ssh_control_listener();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001158
Ben Lindstromf558cf62001-09-20 23:13:49 +00001159 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1160 id = ssh_session2_open();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001161
Damien Millerd27b9472005-12-13 19:29:02 +11001162 /* Execute a local command */
1163 if (options.local_command != NULL &&
1164 options.permit_local_command)
1165 ssh_local_cmd(options.local_command);
1166
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001167 /* If requested, let ssh continue in the background. */
1168 if (fork_after_authentication_flag)
1169 if (daemon(1, 1) < 0)
1170 fatal("daemon() failed: %.200s", strerror(errno));
1171
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001172 return client_loop(tty_flag, tty_flag ?
1173 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001174}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001175
Ben Lindstrombba81212001-06-25 05:01:22 +00001176static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001177load_public_identity_files(void)
1178{
1179 char *filename;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001180 int i = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001181 Key *public;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001182#ifdef SMARTCARD
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001183 Key **keys;
1184
Ben Lindstromf7db3bb2001-08-06 21:35:51 +00001185 if (options.smartcard_device != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001186 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
1187 (keys = sc_get_keys(options.smartcard_device, NULL)) != NULL ) {
1188 int count = 0;
1189 for (i = 0; keys[i] != NULL; i++) {
1190 count++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001191 memmove(&options.identity_files[1], &options.identity_files[0],
1192 sizeof(char *) * (SSH_MAX_IDENTITY_FILES - 1));
1193 memmove(&options.identity_keys[1], &options.identity_keys[0],
1194 sizeof(Key *) * (SSH_MAX_IDENTITY_FILES - 1));
1195 options.num_identity_files++;
1196 options.identity_keys[0] = keys[i];
Damien Miller56a0bb02003-06-18 20:28:40 +10001197 options.identity_files[0] = sc_get_key_label(keys[i]);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001198 }
Ben Lindstrom4f054602002-03-26 03:23:00 +00001199 if (options.num_identity_files > SSH_MAX_IDENTITY_FILES)
1200 options.num_identity_files = SSH_MAX_IDENTITY_FILES;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001201 i = count;
1202 xfree(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001203 }
Ben Lindstromffce1472001-08-06 21:57:31 +00001204#endif /* SMARTCARD */
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001205 for (; i < options.num_identity_files; i++) {
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001206 filename = tilde_expand_filename(options.identity_files[i],
1207 original_real_uid);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001208 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001209 debug("identity file %s type %d", filename,
1210 public ? public->type : -1);
1211 xfree(options.identity_files[i]);
1212 options.identity_files[i] = filename;
1213 options.identity_keys[i] = public;
1214 }
1215}
Damien Miller0e220db2004-06-15 10:34:08 +10001216
1217static void
1218control_client_sighandler(int signo)
1219{
1220 control_client_terminate = signo;
1221}
1222
1223static void
1224control_client_sigrelay(int signo)
1225{
1226 if (control_server_pid > 1)
1227 kill(control_server_pid, signo);
1228}
1229
Darren Tucker365433f2004-06-22 12:29:23 +10001230static int
1231env_permitted(char *env)
1232{
1233 int i;
1234 char name[1024], *cp;
1235
1236 strlcpy(name, env, sizeof(name));
1237 if ((cp = strchr(name, '=')) == NULL)
1238 return (0);
1239
1240 *cp = '\0';
1241
1242 for (i = 0; i < options.num_send_env; i++)
1243 if (match_pattern(name, options.send_env[i]))
1244 return (1);
1245
1246 return (0);
1247}
1248
Damien Miller0e220db2004-06-15 10:34:08 +10001249static void
1250control_client(const char *path)
1251{
1252 struct sockaddr_un addr;
Darren Tucker39207a42004-11-05 20:19:51 +11001253 int i, r, fd, sock, exitval, num_env, addr_len;
Damien Miller0e220db2004-06-15 10:34:08 +10001254 Buffer m;
Darren Tucker7ebfc102004-11-07 20:06:19 +11001255 char *term;
Damien Miller3756dce2004-06-18 01:17:29 +10001256 extern char **environ;
Darren Tucker7ebfc102004-11-07 20:06:19 +11001257 u_int flags;
Darren Tuckerfc959702004-07-17 16:12:08 +10001258
Damien Millerd14b1e72005-06-16 13:19:41 +10001259 if (mux_command == 0)
1260 mux_command = SSHMUX_COMMAND_OPEN;
1261
1262 switch (options.control_master) {
1263 case SSHCTL_MASTER_AUTO:
1264 case SSHCTL_MASTER_AUTO_ASK:
1265 debug("auto-mux: Trying existing master");
1266 /* FALLTHROUGH */
1267 case SSHCTL_MASTER_NO:
1268 break;
1269 default:
1270 return;
1271 }
1272
Damien Miller0e220db2004-06-15 10:34:08 +10001273 memset(&addr, '\0', sizeof(addr));
1274 addr.sun_family = AF_UNIX;
Damien Miller07b6ff12004-06-15 11:14:45 +10001275 addr_len = offsetof(struct sockaddr_un, sun_path) +
Damien Miller0e220db2004-06-15 10:34:08 +10001276 strlen(path) + 1;
1277
1278 if (strlcpy(addr.sun_path, path,
1279 sizeof(addr.sun_path)) >= sizeof(addr.sun_path))
1280 fatal("ControlPath too long");
1281
1282 if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
1283 fatal("%s socket(): %s", __func__, strerror(errno));
1284
Damien Millerdadfd4d2005-05-26 12:07:13 +10001285 if (connect(sock, (struct sockaddr*)&addr, addr_len) == -1) {
Darren Tucker0814d312005-06-01 23:08:51 +10001286 if (mux_command != SSHMUX_COMMAND_OPEN) {
1287 fatal("Control socket connect(%.100s): %s", path,
1288 strerror(errno));
1289 }
Damien Miller538c9b72005-05-26 12:11:28 +10001290 if (errno == ENOENT)
1291 debug("Control socket \"%.100s\" does not exist", path);
1292 else {
1293 error("Control socket connect(%.100s): %s", path,
1294 strerror(errno));
1295 }
Damien Miller13390022005-07-06 09:44:19 +10001296 close(sock);
1297 return;
1298 }
Damien Miller46d38de2005-07-17 17:02:09 +10001299
Damien Miller13390022005-07-06 09:44:19 +10001300 if (stdin_null_flag) {
1301 if ((fd = open(_PATH_DEVNULL, O_RDONLY)) == -1)
1302 fatal("open(/dev/null): %s", strerror(errno));
1303 if (dup2(fd, STDIN_FILENO) == -1)
1304 fatal("dup2: %s", strerror(errno));
1305 if (fd > STDERR_FILENO)
1306 close(fd);
1307 }
Damien Miller46d38de2005-07-17 17:02:09 +10001308
Damien Miller13390022005-07-06 09:44:19 +10001309 term = getenv("TERM");
Darren Tucker7ebfc102004-11-07 20:06:19 +11001310
1311 flags = 0;
1312 if (tty_flag)
1313 flags |= SSHMUX_FLAG_TTY;
1314 if (subsystem_flag)
1315 flags |= SSHMUX_FLAG_SUBSYS;
Damien Miller13390022005-07-06 09:44:19 +10001316 if (options.forward_x11)
1317 flags |= SSHMUX_FLAG_X11_FWD;
1318 if (options.forward_agent)
1319 flags |= SSHMUX_FLAG_AGENT_FWD;
Damien Miller0e220db2004-06-15 10:34:08 +10001320
Damien Miller0e220db2004-06-15 10:34:08 +10001321 buffer_init(&m);
1322
Darren Tucker7ebfc102004-11-07 20:06:19 +11001323 /* Send our command to server */
1324 buffer_put_int(&m, mux_command);
1325 buffer_put_int(&m, flags);
Damien Miller13390022005-07-06 09:44:19 +10001326 if (ssh_msg_send(sock, SSHMUX_VER, &m) == -1)
Darren Tucker7ebfc102004-11-07 20:06:19 +11001327 fatal("%s: msg_send", __func__);
1328 buffer_clear(&m);
1329
1330 /* Get authorisation status and PID of controlee */
Damien Miller0e220db2004-06-15 10:34:08 +10001331 if (ssh_msg_recv(sock, &m) == -1)
1332 fatal("%s: msg_recv", __func__);
Damien Miller13390022005-07-06 09:44:19 +10001333 if (buffer_get_char(&m) != SSHMUX_VER)
Damien Miller0e220db2004-06-15 10:34:08 +10001334 fatal("%s: wrong version", __func__);
Damien Miller23f07702004-06-18 01:19:03 +10001335 if (buffer_get_int(&m) != 1)
1336 fatal("Connection to master denied");
Damien Miller0e220db2004-06-15 10:34:08 +10001337 control_server_pid = buffer_get_int(&m);
1338
Damien Miller0e220db2004-06-15 10:34:08 +10001339 buffer_clear(&m);
Damien Miller0e220db2004-06-15 10:34:08 +10001340
Darren Tucker7ebfc102004-11-07 20:06:19 +11001341 switch (mux_command) {
1342 case SSHMUX_COMMAND_ALIVE_CHECK:
Darren Tucker47eede72005-03-14 23:08:12 +11001343 fprintf(stderr, "Master running (pid=%d)\r\n",
Darren Tucker7ebfc102004-11-07 20:06:19 +11001344 control_server_pid);
1345 exit(0);
1346 case SSHMUX_COMMAND_TERMINATE:
1347 fprintf(stderr, "Exit request sent.\r\n");
1348 exit(0);
1349 case SSHMUX_COMMAND_OPEN:
1350 /* continue below */
1351 break;
1352 default:
1353 fatal("silly mux_command %d", mux_command);
1354 }
1355
1356 /* SSHMUX_COMMAND_OPEN */
Damien Miller13390022005-07-06 09:44:19 +10001357 buffer_put_cstring(&m, term ? term : "");
Damien Miller0e220db2004-06-15 10:34:08 +10001358 buffer_append(&command, "\0", 1);
1359 buffer_put_cstring(&m, buffer_ptr(&command));
1360
Darren Tucker365433f2004-06-22 12:29:23 +10001361 if (options.num_send_env == 0 || environ == NULL) {
1362 buffer_put_int(&m, 0);
Darren Tuckerfc959702004-07-17 16:12:08 +10001363 } else {
Darren Tucker365433f2004-06-22 12:29:23 +10001364 /* Pass environment */
1365 num_env = 0;
1366 for (i = 0; environ[i] != NULL; i++)
1367 if (env_permitted(environ[i]))
1368 num_env++; /* Count */
Darren Tuckerfc959702004-07-17 16:12:08 +10001369
Darren Tucker365433f2004-06-22 12:29:23 +10001370 buffer_put_int(&m, num_env);
1371
Darren Tuckerb5bc1a62004-06-24 00:34:53 +10001372 for (i = 0; environ[i] != NULL && num_env >= 0; i++)
1373 if (env_permitted(environ[i])) {
1374 num_env--;
Darren Tucker365433f2004-06-22 12:29:23 +10001375 buffer_put_cstring(&m, environ[i]);
Darren Tuckerb5bc1a62004-06-24 00:34:53 +10001376 }
Darren Tucker365433f2004-06-22 12:29:23 +10001377 }
Damien Miller3756dce2004-06-18 01:17:29 +10001378
Damien Miller13390022005-07-06 09:44:19 +10001379 if (ssh_msg_send(sock, SSHMUX_VER, &m) == -1)
Damien Miller0e220db2004-06-15 10:34:08 +10001380 fatal("%s: msg_send", __func__);
1381
1382 mm_send_fd(sock, STDIN_FILENO);
1383 mm_send_fd(sock, STDOUT_FILENO);
1384 mm_send_fd(sock, STDERR_FILENO);
1385
1386 /* Wait for reply, so master has a chance to gather ttymodes */
1387 buffer_clear(&m);
1388 if (ssh_msg_recv(sock, &m) == -1)
1389 fatal("%s: msg_recv", __func__);
Damien Miller13390022005-07-06 09:44:19 +10001390 if (buffer_get_char(&m) != SSHMUX_VER)
Darren Tucker7ebfc102004-11-07 20:06:19 +11001391 fatal("%s: wrong version", __func__);
Damien Miller0e220db2004-06-15 10:34:08 +10001392 buffer_free(&m);
1393
Darren Tucker07336da2004-11-05 20:02:16 +11001394 signal(SIGHUP, control_client_sighandler);
Damien Miller0809e232004-06-18 22:20:57 +10001395 signal(SIGINT, control_client_sighandler);
1396 signal(SIGTERM, control_client_sighandler);
1397 signal(SIGWINCH, control_client_sigrelay);
1398
Damien Miller0e220db2004-06-15 10:34:08 +10001399 if (tty_flag)
1400 enter_raw_mode();
1401
1402 /* Stick around until the controlee closes the client_fd */
1403 exitval = 0;
1404 for (;!control_client_terminate;) {
1405 r = read(sock, &exitval, sizeof(exitval));
1406 if (r == 0) {
1407 debug2("Received EOF from master");
1408 break;
1409 }
1410 if (r > 0)
1411 debug2("Received exit status from master %d", exitval);
1412 if (r == -1 && errno != EINTR)
1413 fatal("%s: read %s", __func__, strerror(errno));
1414 }
1415
1416 if (control_client_terminate)
1417 debug2("Exiting on signal %d", control_client_terminate);
1418
1419 close(sock);
1420
1421 leave_raw_mode();
1422
1423 if (tty_flag && options.log_level != SYSLOG_LEVEL_QUIET)
1424 fprintf(stderr, "Connection to master closed.\r\n");
1425
1426 exit(exitval);
1427}