blob: ee4f92f9295afa5b72d2a3bc6d33e2881165b3b9 [file] [log] [blame]
Damien Millere3b60b52006-07-10 21:08:03 +10001/* $OpenBSD: ssh.c,v 1.280 2006/07/08 21:47:12 stevesk Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * Ssh client program. This program can be used to log into a remote machine.
7 * The software supports strong authentication, encryption, and forwarding
8 * of X11, TCP/IP, and authentication connections.
9 *
Damien Millere4340be2000-09-16 13:29:08 +110010 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
15 *
16 * Copyright (c) 1999 Niels Provos. All rights reserved.
Darren Tucker0a118da2003-10-15 15:54:32 +100017 * Copyright (c) 2000, 2001, 2002, 2003 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110018 *
19 * Modified to work with SSL by Niels Provos <provos@citi.umich.edu>
20 * in Canada (German citizen).
21 *
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 * 1. Redistributions of source code must retain the above copyright
26 * notice, this list of conditions and the following disclaimer.
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
29 * documentation and/or other materials provided with the distribution.
30 *
31 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
32 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
33 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
34 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
35 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
36 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
37 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
38 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
39 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
40 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110041 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100042
43#include "includes.h"
Damien Millercd4223c2006-03-15 11:22:47 +110044
Damien Millerf17883e2006-03-15 11:45:54 +110045#include <sys/types.h>
46#ifdef HAVE_SYS_STAT_H
47# include <sys/stat.h>
48#endif
Damien Millercd4223c2006-03-15 11:22:47 +110049#include <sys/resource.h>
Damien Miller17e91c02006-03-15 11:28:34 +110050#include <sys/ioctl.h>
Damien Millere3b60b52006-07-10 21:08:03 +100051#include <sys/socket.h>
Damien Miller574c41f2006-03-15 11:40:10 +110052#include <sys/un.h>
Damien Miller03e20032006-03-15 11:16:59 +110053
Damien Millerc7b06362006-03-15 11:53:45 +110054#include <ctype.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110055#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110056#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110057#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100058#include <pwd.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110059#include <signal.h>
Damien Millereba71ba2000-04-29 23:57:08 +100060
61#include <openssl/evp.h>
Damien Miller0bc1bd82000-11-13 22:57:25 +110062#include <openssl/err.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100063
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000065#include "ssh1.h"
Damien Miller1383bd82000-04-06 12:32:37 +100066#include "ssh2.h"
67#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000068#include "cipher.h"
69#include "xmalloc.h"
70#include "packet.h"
71#include "buffer.h"
Damien Miller0e220db2004-06-15 10:34:08 +100072#include "bufaux.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000073#include "channels.h"
Damien Millereba71ba2000-04-29 23:57:08 +100074#include "key.h"
Damien Miller994cf142000-07-21 10:19:44 +100075#include "authfd.h"
Damien Millereba71ba2000-04-29 23:57:08 +100076#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000077#include "pathnames.h"
Damien Miller0e220db2004-06-15 10:34:08 +100078#include "dispatch.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000079#include "clientloop.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000080#include "log.h"
81#include "readconf.h"
82#include "sshconnect.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000083#include "misc.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000084#include "kex.h"
85#include "mac.h"
Darren Tucker06f2bd82004-05-13 16:06:46 +100086#include "sshpty.h"
Darren Tucker46bc0752004-05-02 22:11:30 +100087#include "match.h"
Damien Miller0e220db2004-06-15 10:34:08 +100088#include "msg.h"
89#include "monitor_fdpass.h"
Darren Tucker25f60a72004-08-15 17:23:34 +100090#include "uidswap.h"
Damien Millerb7576772006-07-10 20:23:39 +100091#include "version.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092
Ben Lindstromc5b68002001-07-04 04:52:03 +000093#ifdef SMARTCARD
Ben Lindstromc5b68002001-07-04 04:52:03 +000094#include "scard.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +000095#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +000096
Damien Miller3f905871999-11-15 17:10:57 +110097extern char *__progname;
Damien Miller3f905871999-11-15 17:10:57 +110098
Damien Miller95def091999-11-25 00:26:21 +110099/* Flag indicating whether debug mode is on. This can be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000100int debug_flag = 0;
101
Damien Miller78928792000-04-12 20:17:38 +1000102/* Flag indicating whether a tty should be allocated */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103int tty_flag = 0;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000104int no_tty_flag = 0;
105int force_tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000106
Damien Miller1383bd82000-04-06 12:32:37 +1000107/* don't exec a shell */
108int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000109
Damien Miller5428f641999-11-25 11:54:57 +1100110/*
111 * Flag indicating that nothing should be read from stdin. This can be set
112 * on the command line.
113 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000114int stdin_null_flag = 0;
115
Damien Miller5428f641999-11-25 11:54:57 +1100116/*
117 * Flag indicating that ssh should fork after authentication. This is useful
Ben Lindstromf666fec2002-06-06 19:51:58 +0000118 * so that the passphrase can be entered manually, and then ssh goes to the
Damien Miller5428f641999-11-25 11:54:57 +1100119 * background.
120 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000121int fork_after_authentication_flag = 0;
122
Damien Miller5428f641999-11-25 11:54:57 +1100123/*
124 * General data structure for command line options and options configurable
125 * in configuration files. See readconf.h.
126 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000127Options options;
128
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000129/* optional user configfile */
130char *config = NULL;
131
Damien Miller5428f641999-11-25 11:54:57 +1100132/*
133 * Name of the host we are connecting to. This is the name given on the
134 * command line, or the HostName specified for the user-supplied name in a
135 * configuration file.
136 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000137char *host;
138
139/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100140struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000141
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000142/* Private host keys. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000143Sensitive sensitive_data;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000144
145/* Original real UID. */
146uid_t original_real_uid;
Ben Lindstromf9c48842002-06-11 16:37:51 +0000147uid_t original_effective_uid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000148
Damien Miller1383bd82000-04-06 12:32:37 +1000149/* command to be executed */
150Buffer command;
151
Damien Miller832562e2001-01-30 09:30:01 +1100152/* Should we execute a command or invoke a subsystem? */
153int subsystem_flag = 0;
154
Damien Miller2797f7f2002-04-23 21:09:44 +1000155/* # of replies received for global requests */
156static int client_global_request_id = 0;
157
Damien Miller8c4e18a2002-09-19 12:05:02 +1000158/* pid of proxycommand child process */
159pid_t proxy_command_pid = 0;
160
Damien Miller0e220db2004-06-15 10:34:08 +1000161/* fd to control socket */
162int control_fd = -1;
163
Darren Tucker7ebfc102004-11-07 20:06:19 +1100164/* Multiplexing control command */
Darren Tucker0814d312005-06-01 23:08:51 +1000165static u_int mux_command = 0;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100166
Damien Miller0e220db2004-06-15 10:34:08 +1000167/* Only used in control client mode */
168volatile sig_atomic_t control_client_terminate = 0;
169u_int control_server_pid = 0;
170
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000171/* Prints a help message to the user. This function never returns. */
172
Ben Lindstrombba81212001-06-25 05:01:22 +0000173static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000174usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000175{
Damien Miller50955102004-03-22 09:34:58 +1100176 fprintf(stderr,
Darren Tucker9c6bf322004-12-03 14:10:19 +1100177"usage: ssh [-1246AaCfgkMNnqsTtVvXxY] [-b bind_address] [-c cipher_spec]\n"
Darren Tucker895d6982005-10-03 18:18:05 +1000178" [-D [bind_address:]port] [-e escape_char] [-F configfile]\n"
Damien Miller02faece2005-03-02 12:04:32 +1100179" [-i identity_file] [-L [bind_address:]port:host:hostport]\n"
Damien Millerf91ee4c2005-03-01 21:24:33 +1100180" [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
Damien Miller02faece2005-03-02 12:04:32 +1100181" [-R [bind_address:]port:host:hostport] [-S ctl_path]\n"
Damien Miller991dba42006-07-10 20:16:27 +1000182" [-w local_tun[:remote_tun]] [user@]hostname [command]\n"
Damien Miller50955102004-03-22 09:34:58 +1100183 );
Darren Tuckere9a9b712005-12-20 16:15:51 +1100184 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000185}
186
Ben Lindstrombba81212001-06-25 05:01:22 +0000187static int ssh_session(void);
188static int ssh_session2(void);
189static void load_public_identity_files(void);
Damien Miller0e220db2004-06-15 10:34:08 +1000190static void control_client(const char *path);
Damien Miller1383bd82000-04-06 12:32:37 +1000191
Damien Miller95def091999-11-25 00:26:21 +1100192/*
193 * Main program for the ssh client.
194 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000195int
196main(int ac, char **av)
197{
Ben Lindstrom24157572002-06-12 16:09:39 +0000198 int i, opt, exit_status;
Damien Miller9836cf82003-12-17 16:30:06 +1100199 char *p, *cp, *line, buf[256];
Damien Miller95def091999-11-25 00:26:21 +1100200 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000201 struct passwd *pw;
Damien Miller1383bd82000-04-06 12:32:37 +1000202 int dummy;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000203 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000204 extern char *optarg;
Damien Miller9651fe62005-06-26 08:55:25 +1000205 struct servent *sp;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100206 Forward fwd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000207
Darren Tuckerce321d82005-10-03 18:11:24 +1000208 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
209 sanitise_stdfd();
210
Damien Miller59d3d5b2003-08-22 09:34:41 +1000211 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000212 init_rng();
213
Damien Miller5428f641999-11-25 11:54:57 +1100214 /*
215 * Save the original real uid. It will be needed later (uid-swapping
216 * may clobber the real uid).
217 */
Damien Miller95def091999-11-25 00:26:21 +1100218 original_real_uid = getuid();
219 original_effective_uid = geteuid();
Damien Millera8e06ce2003-11-21 23:48:55 +1100220
Damien Miller50b9a602002-09-04 16:50:06 +1000221 /*
222 * Use uid-swapping to give up root privileges for the duration of
223 * option processing. We will re-instantiate the rights when we are
224 * ready to create the privileged port, and will permanently drop
225 * them when the port has been created (actually, when the connection
226 * has been made, as we may need to create the port several times).
227 */
228 PRIV_END;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000229
Damien Miller05dd7952000-10-01 00:42:48 +1100230#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100231 /* If we are installed setuid root be careful to not drop core. */
232 if (original_real_uid != original_effective_uid) {
233 struct rlimit rlim;
234 rlim.rlim_cur = rlim.rlim_max = 0;
235 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
236 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000237 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100238#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000239 /* Get user data. */
240 pw = getpwuid(original_real_uid);
241 if (!pw) {
Damien Miller996acd22003-04-09 20:59:48 +1000242 logit("You don't exist, go away!");
Darren Tuckere9a9b712005-12-20 16:15:51 +1100243 exit(255);
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000244 }
245 /* Take a copy of the returned structure. */
246 pw = pwcopy(pw);
247
Damien Miller5428f641999-11-25 11:54:57 +1100248 /*
Damien Miller5428f641999-11-25 11:54:57 +1100249 * Set our umask to something reasonable, as some files are created
250 * with the default umask. This will make them world-readable but
251 * writable only by the owner, which is ok for all files for which we
252 * don't set the modes explicitly.
253 */
Damien Miller95def091999-11-25 00:26:21 +1100254 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000255
Damien Miller95def091999-11-25 00:26:21 +1100256 /* Initialize option structure to indicate that no values have been set. */
257 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000258
Damien Miller95def091999-11-25 00:26:21 +1100259 /* Parse command-line arguments. */
260 host = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000261
Damien Miller2ecb6bd2006-03-15 12:03:53 +1100262 again:
Damien Millerf4614452001-07-14 12:18:10 +1000263 while ((opt = getopt(ac, av,
Damien Millerd27b9472005-12-13 19:29:02 +1100264 "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 +1100265 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000266 case '1':
267 options.protocol = SSH_PROTO_1;
268 break;
Damien Miller4af51302000-04-16 11:18:38 +1000269 case '2':
270 options.protocol = SSH_PROTO_2;
271 break;
Damien Miller34132e52000-01-14 15:45:46 +1100272 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000273 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100274 break;
Damien Miller34132e52000-01-14 15:45:46 +1100275 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000276 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100277 break;
Damien Miller95def091999-11-25 00:26:21 +1100278 case 'n':
279 stdin_null_flag = 1;
280 break;
Damien Miller95def091999-11-25 00:26:21 +1100281 case 'f':
282 fork_after_authentication_flag = 1;
283 stdin_null_flag = 1;
284 break;
Damien Miller95def091999-11-25 00:26:21 +1100285 case 'x':
286 options.forward_x11 = 0;
287 break;
Damien Miller95def091999-11-25 00:26:21 +1100288 case 'X':
289 options.forward_x11 = 1;
290 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000291 case 'Y':
292 options.forward_x11 = 1;
293 options.forward_x11_trusted = 1;
294 break;
Damien Miller95def091999-11-25 00:26:21 +1100295 case 'g':
296 options.gateway_ports = 1;
297 break;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100298 case 'O':
299 if (strcmp(optarg, "check") == 0)
300 mux_command = SSHMUX_COMMAND_ALIVE_CHECK;
301 else if (strcmp(optarg, "exit") == 0)
302 mux_command = SSHMUX_COMMAND_TERMINATE;
303 else
304 fatal("Invalid multiplex command.");
305 break;
Damien Miller147bba32002-09-04 16:46:06 +1000306 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100307 options.use_privileged_port = 0;
308 break;
Damien Miller95def091999-11-25 00:26:21 +1100309 case 'a':
310 options.forward_agent = 0;
311 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000312 case 'A':
313 options.forward_agent = 1;
314 break;
Damien Miller95def091999-11-25 00:26:21 +1100315 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100316 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100317 break;
Damien Miller95def091999-11-25 00:26:21 +1100318 case 'i':
319 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000320 fprintf(stderr, "Warning: Identity file %s "
Damien Miller3eb48b62005-03-01 21:15:46 +1100321 "not accessible: %s.\n", optarg,
322 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100323 break;
324 }
Damien Millerf4614452001-07-14 12:18:10 +1000325 if (options.num_identity_files >=
326 SSH_MAX_IDENTITY_FILES)
327 fatal("Too many identity files specified "
328 "(max %d)", SSH_MAX_IDENTITY_FILES);
329 options.identity_files[options.num_identity_files++] =
330 xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100331 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000332 case 'I':
333#ifdef SMARTCARD
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000334 options.smartcard_device = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000335#else
Ben Lindstromc5b68002001-07-04 04:52:03 +0000336 fprintf(stderr, "no support for smartcards.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000337#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000338 break;
Damien Miller95def091999-11-25 00:26:21 +1100339 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000340 if (tty_flag)
341 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100342 tty_flag = 1;
343 break;
Damien Miller95def091999-11-25 00:26:21 +1100344 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000345 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100346 debug_flag = 1;
347 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000348 } else {
349 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
350 options.log_level++;
Damien Millere4340be2000-09-16 13:29:08 +1100351 break;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000352 }
Darren Tuckere9bf9842004-11-05 20:05:32 +1100353 /* FALLTHROUGH */
Damien Miller95def091999-11-25 00:26:21 +1100354 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100355 fprintf(stderr, "%s, %s\n",
Damien Miller2aa6d3c2004-09-12 16:53:04 +1000356 SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
Damien Miller95def091999-11-25 00:26:21 +1100357 if (opt == 'V')
358 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100359 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100360 case 'w':
Damien Miller7b58e802005-12-13 19:33:19 +1100361 if (options.tun_open == -1)
362 options.tun_open = SSH_TUNMODE_DEFAULT;
Damien Millerd27b9472005-12-13 19:29:02 +1100363 options.tun_local = a2tun(optarg, &options.tun_remote);
Damien Miller7b58e802005-12-13 19:33:19 +1100364 if (options.tun_local == SSH_TUNID_ERR) {
Damien Millerd27b9472005-12-13 19:29:02 +1100365 fprintf(stderr, "Bad tun device '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100366 exit(255);
Damien Millerd27b9472005-12-13 19:29:02 +1100367 }
368 break;
Damien Miller95def091999-11-25 00:26:21 +1100369 case 'q':
370 options.log_level = SYSLOG_LEVEL_QUIET;
371 break;
Damien Miller95def091999-11-25 00:26:21 +1100372 case 'e':
373 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000374 (u_char) optarg[1] >= 64 &&
375 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000376 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100377 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000378 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100379 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000380 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100381 else {
Damien Millerf4614452001-07-14 12:18:10 +1000382 fprintf(stderr, "Bad escape character '%s'.\n",
383 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100384 exit(255);
Damien Miller95def091999-11-25 00:26:21 +1100385 }
386 break;
Damien Miller95def091999-11-25 00:26:21 +1100387 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000388 if (ciphers_valid(optarg)) {
389 /* SSH2 only */
390 options.ciphers = xstrdup(optarg);
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000391 options.cipher = SSH_CIPHER_INVALID;
Damien Millereba71ba2000-04-29 23:57:08 +1000392 } else {
393 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100394 options.cipher = cipher_number(optarg);
395 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000396 fprintf(stderr,
397 "Unknown cipher type '%s'\n",
398 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100399 exit(255);
Damien Millereba71ba2000-04-29 23:57:08 +1000400 }
Damien Millerf4614452001-07-14 12:18:10 +1000401 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100402 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000403 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100404 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000405 else
Damien Millere39cacc2000-11-29 12:18:44 +1100406 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100407 }
408 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000409 case 'm':
410 if (mac_valid(optarg))
411 options.macs = xstrdup(optarg);
412 else {
Damien Millerf4614452001-07-14 12:18:10 +1000413 fprintf(stderr, "Unknown mac type '%s'\n",
414 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100415 exit(255);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000416 }
417 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000418 case 'M':
Damien Millerd14b1e72005-06-16 13:19:41 +1000419 if (options.control_master == SSHCTL_MASTER_YES)
420 options.control_master = SSHCTL_MASTER_ASK;
421 else
422 options.control_master = SSHCTL_MASTER_YES;
Damien Miller0e220db2004-06-15 10:34:08 +1000423 break;
Damien Miller95def091999-11-25 00:26:21 +1100424 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000425 options.port = a2port(optarg);
426 if (options.port == 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000427 fprintf(stderr, "Bad port '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100428 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000429 }
Damien Miller95def091999-11-25 00:26:21 +1100430 break;
Damien Miller95def091999-11-25 00:26:21 +1100431 case 'l':
432 options.user = optarg;
433 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000434
Damien Miller95def091999-11-25 00:26:21 +1100435 case 'L':
Damien Millerf91ee4c2005-03-01 21:24:33 +1100436 if (parse_forward(&fwd, optarg))
437 add_local_forward(&options, &fwd);
438 else {
Damien Millerf4614452001-07-14 12:18:10 +1000439 fprintf(stderr,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100440 "Bad local forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000441 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100442 exit(255);
Ben Lindstrom1a174712001-09-12 17:56:15 +0000443 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100444 break;
445
446 case 'R':
447 if (parse_forward(&fwd, optarg)) {
448 add_remote_forward(&options, &fwd);
449 } else {
450 fprintf(stderr,
451 "Bad remote forwarding specification "
452 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100453 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100454 }
Damien Miller95def091999-11-25 00:26:21 +1100455 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000456
457 case 'D':
Damien Millerf91ee4c2005-03-01 21:24:33 +1100458 cp = p = xstrdup(optarg);
459 memset(&fwd, '\0', sizeof(fwd));
460 fwd.connect_host = "socks";
461 if ((fwd.listen_host = hpdelim(&cp)) == NULL) {
462 fprintf(stderr, "Bad dynamic forwarding "
463 "specification '%.100s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100464 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100465 }
466 if (cp != NULL) {
467 fwd.listen_port = a2port(cp);
468 fwd.listen_host = cleanhostname(fwd.listen_host);
469 } else {
470 fwd.listen_port = a2port(fwd.listen_host);
Damien Millerbe1045d2005-08-12 22:10:56 +1000471 fwd.listen_host = NULL;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100472 }
473
474 if (fwd.listen_port == 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000475 fprintf(stderr, "Bad dynamic port '%s'\n",
476 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100477 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000478 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100479 add_local_forward(&options, &fwd);
480 xfree(p);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000481 break;
482
Damien Miller95def091999-11-25 00:26:21 +1100483 case 'C':
484 options.compression = 1;
485 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000486 case 'N':
487 no_shell_flag = 1;
488 no_tty_flag = 1;
489 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000490 case 'T':
491 no_tty_flag = 1;
492 break;
Damien Miller95def091999-11-25 00:26:21 +1100493 case 'o':
494 dummy = 1;
Damien Miller9836cf82003-12-17 16:30:06 +1100495 line = xstrdup(optarg);
Damien Millerf4614452001-07-14 12:18:10 +1000496 if (process_config_line(&options, host ? host : "",
Damien Miller9836cf82003-12-17 16:30:06 +1100497 line, "command-line", 0, &dummy) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100498 exit(255);
Damien Miller9836cf82003-12-17 16:30:06 +1100499 xfree(line);
Damien Miller95def091999-11-25 00:26:21 +1100500 break;
Damien Miller832562e2001-01-30 09:30:01 +1100501 case 's':
502 subsystem_flag = 1;
503 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000504 case 'S':
505 if (options.control_path != NULL)
506 free(options.control_path);
507 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000508 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000509 case 'b':
510 options.bind_address = optarg;
511 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000512 case 'F':
513 config = optarg;
514 break;
Damien Miller95def091999-11-25 00:26:21 +1100515 default:
516 usage();
517 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000518 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000519
Damien Millerf4614452001-07-14 12:18:10 +1000520 ac -= optind;
521 av += optind;
522
523 if (ac > 0 && !host && **av != '-') {
Ben Lindstromc276c122002-12-23 02:14:51 +0000524 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000525 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000526 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000527 if (cp == NULL || cp == p)
528 usage();
529 options.user = p;
530 *cp = '\0';
531 host = ++cp;
532 } else
533 host = *av;
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000534 if (ac > 1) {
535 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000536 goto again;
537 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000538 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000539 }
540
Damien Miller95def091999-11-25 00:26:21 +1100541 /* Check that we got a host name. */
542 if (!host)
543 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000544
Damien Millercb5e44a2000-09-29 12:12:36 +1100545 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100546 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100547
Damien Miller95def091999-11-25 00:26:21 +1100548 /* Initialize the command to execute on remote host. */
549 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000550
Damien Miller5428f641999-11-25 11:54:57 +1100551 /*
552 * Save the command to execute on the remote host in a buffer. There
553 * is no limit on the length of the command, except by the maximum
554 * packet size. Also sets the tty flag if there is no command.
555 */
Damien Millerf4614452001-07-14 12:18:10 +1000556 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100557 /* No command specified - execute shell on a tty. */
558 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100559 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000560 fprintf(stderr,
561 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100562 usage();
563 }
Damien Miller95def091999-11-25 00:26:21 +1100564 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000565 /* A command has been specified. Store it into the buffer. */
566 for (i = 0; i < ac; i++) {
567 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100568 buffer_append(&command, " ", 1);
569 buffer_append(&command, av[i], strlen(av[i]));
570 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000571 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000572
Damien Miller95def091999-11-25 00:26:21 +1100573 /* Cannot fork to background if no command. */
Damien Millercaf6dd62000-08-29 11:33:50 +1100574 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
Damien Miller95def091999-11-25 00:26:21 +1100575 fatal("Cannot fork into background without a command to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000576
Damien Miller95def091999-11-25 00:26:21 +1100577 /* Allocate a tty by default if no command specified. */
578 if (buffer_len(&command) == 0)
579 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000580
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000581 /* Force no tty */
Ben Lindstromc72745a2000-12-02 19:03:54 +0000582 if (no_tty_flag)
583 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100584 /* Do not allocate a tty if stdin is not a tty. */
Damien Millerddee5752005-05-26 12:05:05 +1000585 if ((!isatty(fileno(stdin)) || stdin_null_flag) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100586 if (tty_flag)
Damien Miller996acd22003-04-09 20:59:48 +1000587 logit("Pseudo-terminal will not be allocated because stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100588 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000589 }
Damien Miller1383bd82000-04-06 12:32:37 +1000590
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000591 /*
592 * Initialize "log" output. Since we are the client all output
593 * actually goes to stderr.
594 */
Ben Lindstrom2b646522001-04-12 16:16:57 +0000595 log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
596 SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000597
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000598 /*
599 * Read per-user configuration file. Ignore the system wide config
600 * file if the user specifies a config file on the command line.
601 */
602 if (config != NULL) {
Damien Miller914420f2004-04-20 20:14:07 +1000603 if (!read_config_file(config, host, &options, 0))
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000604 fatal("Can't open user config file %.100s: "
605 "%.100s", config, strerror(errno));
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000606 } else {
607 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,
608 _PATH_SSH_USER_CONFFILE);
Damien Miller57a44762004-04-20 20:11:57 +1000609 (void)read_config_file(buf, host, &options, 1);
Ben Lindstrom83f07d12001-10-03 17:22:29 +0000610
611 /* Read systemwide configuration file after use config. */
Darren Tuckerfc959702004-07-17 16:12:08 +1000612 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host,
Damien Miller57a44762004-04-20 20:11:57 +1000613 &options, 0);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000614 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000615
Damien Miller95def091999-11-25 00:26:21 +1100616 /* Fill configuration defaults. */
617 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000618
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000619 channel_set_af(options.address_family);
620
Damien Miller95def091999-11-25 00:26:21 +1100621 /* reinit */
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000622 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000623
Damien Miller60bc5172001-03-19 09:38:15 +1100624 seed_rng();
625
Damien Miller95def091999-11-25 00:26:21 +1100626 if (options.user == NULL)
627 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000628
Damien Miller95def091999-11-25 00:26:21 +1100629 if (options.hostname != NULL)
630 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000631
Darren Tucker3f521e22003-07-03 16:20:42 +1000632 /* force lowercase for hostkey matching */
633 if (options.host_key_alias != NULL) {
634 for (p = options.host_key_alias; *p; p++)
635 if (isupper(*p))
Damien Miller1d2b6702006-03-26 14:09:54 +1100636 *p = (char)tolower(*p);
Darren Tucker3f521e22003-07-03 16:20:42 +1000637 }
638
Damien Miller7c71cc72005-06-26 08:56:31 +1000639 /* Get default port if port has not been set. */
640 if (options.port == 0) {
641 sp = getservbyname(SSH_SERVICE_NAME, "tcp");
642 options.port = sp ? ntohs(sp->s_port) : SSH_DEFAULT_PORT;
643 }
644
Damien Miller9f1e33a2003-02-24 11:57:32 +1100645 if (options.proxy_command != NULL &&
646 strcmp(options.proxy_command, "none") == 0)
647 options.proxy_command = NULL;
Damien Miller8f74c8f2005-06-26 08:56:03 +1000648 if (options.control_path != NULL &&
649 strcmp(options.control_path, "none") == 0)
650 options.control_path = NULL;
Damien Miller9f1e33a2003-02-24 11:57:32 +1100651
Damien Miller0e220db2004-06-15 10:34:08 +1000652 if (options.control_path != NULL) {
Damien Miller6b1d53c2006-03-31 23:13:21 +1100653 char thishost[NI_MAXHOST];
Damien Miller3ec54c72006-03-15 11:30:13 +1100654
Damien Miller6b1d53c2006-03-31 23:13:21 +1100655 if (gethostname(thishost, sizeof(thishost)) == -1)
Damien Miller3ec54c72006-03-15 11:30:13 +1100656 fatal("gethostname: %s", strerror(errno));
Damien Miller6476cad2005-06-16 13:18:34 +1000657 snprintf(buf, sizeof(buf), "%d", options.port);
658 cp = tilde_expand_filename(options.control_path,
659 original_real_uid);
660 options.control_path = percent_expand(cp, "p", buf, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +1100661 "r", options.user, "l", thishost, (char *)NULL);
Damien Miller6476cad2005-06-16 13:18:34 +1000662 xfree(cp);
Damien Miller0e220db2004-06-15 10:34:08 +1000663 }
Darren Tucker0814d312005-06-01 23:08:51 +1000664 if (mux_command != 0 && options.control_path == NULL)
665 fatal("No ControlPath specified for \"-O\" command");
Damien Millerd14b1e72005-06-16 13:19:41 +1000666 if (options.control_path != NULL)
Damien Millerdadfd4d2005-05-26 12:07:13 +1000667 control_client(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +1000668
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000669 /* Open a connection to the remote host. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000670 if (ssh_connect(host, &hostaddr, options.port,
671 options.address_family, options.connection_attempts,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000672#ifdef HAVE_CYGWIN
673 options.use_privileged_port,
674#else
Ben Lindstromf9c48842002-06-11 16:37:51 +0000675 original_effective_uid == 0 && options.use_privileged_port,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000676#endif
Ben Lindstromda394ca2002-06-12 16:11:12 +0000677 options.proxy_command) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100678 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000679
Damien Miller5428f641999-11-25 11:54:57 +1100680 /*
681 * If we successfully made the connection, load the host private key
682 * in case we will need it later for combined rsa-rhosts
683 * authentication. This must be done before releasing extra
684 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +0000685 * If we cannot access the private keys, load the public keys
686 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +1100687 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000688 sensitive_data.nkeys = 0;
689 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000690 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +0000691 if (options.rhosts_rsa_authentication ||
692 options.hostbased_authentication) {
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000693 sensitive_data.nkeys = 3;
Damien Millerddd63ab2006-03-31 23:10:51 +1100694 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000695 sizeof(Key));
Ben Lindstromf9c48842002-06-11 16:37:51 +0000696
697 PRIV_START;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000698 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Darren Tucker232b76f2006-05-06 17:41:51 +1000699 _PATH_HOST_KEY_FILE, "", NULL, NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000700 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
Darren Tucker232b76f2006-05-06 17:41:51 +1000701 _PATH_HOST_DSA_KEY_FILE, "", NULL, NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000702 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
Darren Tucker232b76f2006-05-06 17:41:51 +1000703 _PATH_HOST_RSA_KEY_FILE, "", NULL, NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +0000704 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000705
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +0000706 if (options.hostbased_authentication == 1 &&
707 sensitive_data.keys[0] == NULL &&
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000708 sensitive_data.keys[1] == NULL &&
709 sensitive_data.keys[2] == NULL) {
710 sensitive_data.keys[1] = key_load_public(
711 _PATH_HOST_DSA_KEY_FILE, NULL);
712 sensitive_data.keys[2] = key_load_public(
713 _PATH_HOST_RSA_KEY_FILE, NULL);
714 sensitive_data.external_keysign = 1;
715 }
Damien Miller95def091999-11-25 00:26:21 +1100716 }
Damien Miller5428f641999-11-25 11:54:57 +1100717 /*
718 * Get rid of any extra privileges that we may have. We will no
719 * longer need them. Also, extra privileges could make it very hard
720 * to read identity files and other non-world-readable files from the
721 * user's home directory if it happens to be on a NFS volume where
722 * root is mapped to nobody.
723 */
Darren Tucker25f60a72004-08-15 17:23:34 +1000724 if (original_effective_uid == 0) {
725 PRIV_START;
726 permanently_set_uid(pw);
727 }
Damien Miller95def091999-11-25 00:26:21 +1100728
Damien Miller5428f641999-11-25 11:54:57 +1100729 /*
730 * Now that we are back to our own permissions, create ~/.ssh
Damien Miller788f2122005-11-05 15:14:59 +1100731 * directory if it doesn't already exist.
Damien Miller5428f641999-11-25 11:54:57 +1100732 */
Ben Lindstrom930b14a2001-08-15 23:19:21 +0000733 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 +1100734 if (stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000735 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100736 error("Could not create directory '%.200s'.", buf);
737
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000738 /* load options.identity_files */
739 load_public_identity_files();
740
741 /* Expand ~ in known host file names. */
742 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100743 options.system_hostfile =
744 tilde_expand_filename(options.system_hostfile, original_real_uid);
745 options.user_hostfile =
746 tilde_expand_filename(options.user_hostfile, original_real_uid);
747 options.system_hostfile2 =
748 tilde_expand_filename(options.system_hostfile2, original_real_uid);
749 options.user_hostfile2 =
750 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100751
Damien Miller07cd5892001-11-12 10:52:03 +1100752 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
753
Damien Miller95def091999-11-25 00:26:21 +1100754 /* Log into the remote system. This never returns if the login fails. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000755 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr, pw);
Damien Miller95def091999-11-25 00:26:21 +1100756
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000757 /* We no longer need the private host keys. Clear them now. */
758 if (sensitive_data.nkeys != 0) {
759 for (i = 0; i < sensitive_data.nkeys; i++) {
760 if (sensitive_data.keys[i] != NULL) {
761 /* Destroys contents safely */
762 debug3("clear hostkey %d", i);
763 key_free(sensitive_data.keys[i]);
764 sensitive_data.keys[i] = NULL;
765 }
766 }
767 xfree(sensitive_data.keys);
768 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000769 for (i = 0; i < options.num_identity_files; i++) {
770 if (options.identity_files[i]) {
771 xfree(options.identity_files[i]);
772 options.identity_files[i] = NULL;
773 }
774 if (options.identity_keys[i]) {
775 key_free(options.identity_keys[i]);
776 options.identity_keys[i] = NULL;
777 }
778 }
Damien Miller95def091999-11-25 00:26:21 +1100779
Damien Miller1383bd82000-04-06 12:32:37 +1000780 exit_status = compat20 ? ssh_session2() : ssh_session();
781 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +1000782
Damien Miller0e220db2004-06-15 10:34:08 +1000783 if (options.control_path != NULL && control_fd != -1)
784 unlink(options.control_path);
785
Damien Miller8c4e18a2002-09-19 12:05:02 +1000786 /*
Damien Millera8e06ce2003-11-21 23:48:55 +1100787 * Send SIGHUP to proxy command if used. We don't wait() in
Damien Miller8c4e18a2002-09-19 12:05:02 +1000788 * case it hangs and instead rely on init to reap the child
789 */
790 if (proxy_command_pid > 1)
791 kill(proxy_command_pid, SIGHUP);
792
Damien Miller1383bd82000-04-06 12:32:37 +1000793 return exit_status;
794}
795
Ben Lindstrombba81212001-06-25 05:01:22 +0000796static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100797ssh_init_forwarding(void)
798{
Kevin Steves12057502001-02-05 14:54:34 +0000799 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100800 int i;
Kevin Steves12057502001-02-05 14:54:34 +0000801
Damien Miller0bc1bd82000-11-13 22:57:25 +1100802 /* Initiate local TCP/IP port forwardings. */
803 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100804 debug("Local connections to %.200s:%d forwarded to remote "
805 "address %.200s:%d",
Darren Tucker47eede72005-03-14 23:08:12 +1100806 (options.local_forwards[i].listen_host == NULL) ?
807 (options.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +1100808 options.local_forwards[i].listen_host,
809 options.local_forwards[i].listen_port,
810 options.local_forwards[i].connect_host,
811 options.local_forwards[i].connect_port);
Damien Millerb16461c2002-01-22 23:29:22 +1100812 success += channel_setup_local_fwd_listener(
Damien Millerf91ee4c2005-03-01 21:24:33 +1100813 options.local_forwards[i].listen_host,
814 options.local_forwards[i].listen_port,
815 options.local_forwards[i].connect_host,
816 options.local_forwards[i].connect_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100817 options.gateway_ports);
818 }
Kevin Steves12057502001-02-05 14:54:34 +0000819 if (i > 0 && success == 0)
820 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100821
822 /* Initiate remote TCP/IP port forwardings. */
823 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100824 debug("Remote connections from %.200s:%d forwarded to "
825 "local address %.200s:%d",
Damien Miller46d38de2005-07-17 17:02:09 +1000826 (options.remote_forwards[i].listen_host == NULL) ?
Damien Milleraa3bb102005-11-05 15:12:59 +1100827 "LOCALHOST" : options.remote_forwards[i].listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100828 options.remote_forwards[i].listen_port,
829 options.remote_forwards[i].connect_host,
830 options.remote_forwards[i].connect_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100831 channel_request_remote_forwarding(
Damien Millerf91ee4c2005-03-01 21:24:33 +1100832 options.remote_forwards[i].listen_host,
833 options.remote_forwards[i].listen_port,
834 options.remote_forwards[i].connect_host,
835 options.remote_forwards[i].connect_port);
Damien Miller0bc1bd82000-11-13 22:57:25 +1100836 }
837}
838
Ben Lindstrombba81212001-06-25 05:01:22 +0000839static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100840check_agent_present(void)
841{
842 if (options.forward_agent) {
Damien Miller788f2122005-11-05 15:14:59 +1100843 /* Clear agent forwarding if we don't have an agent. */
Damien Miller789e95d2002-09-12 09:52:46 +1000844 if (!ssh_agent_present())
Damien Miller0bc1bd82000-11-13 22:57:25 +1100845 options.forward_agent = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100846 }
847}
848
Ben Lindstrombba81212001-06-25 05:01:22 +0000849static int
Damien Miller1383bd82000-04-06 12:32:37 +1000850ssh_session(void)
851{
852 int type;
Damien Miller1383bd82000-04-06 12:32:37 +1000853 int interactive = 0;
854 int have_tty = 0;
855 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +1000856 char *cp;
Damien Miller17e7ed02005-06-17 12:54:33 +1000857 const char *display;
Damien Miller1383bd82000-04-06 12:32:37 +1000858
Damien Miller95def091999-11-25 00:26:21 +1100859 /* Enable compression if requested. */
860 if (options.compression) {
861 debug("Requesting compression at level %d.", options.compression_level);
862
863 if (options.compression_level < 1 || options.compression_level > 9)
864 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
865
866 /* Send the request. */
867 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
868 packet_put_int(options.compression_level);
869 packet_send();
870 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +1100871 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100872 if (type == SSH_SMSG_SUCCESS)
873 packet_start_compression(options.compression_level);
874 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +1000875 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +1100876 else
877 packet_disconnect("Protocol error waiting for compression response.");
878 }
879 /* Allocate a pseudo tty if appropriate. */
880 if (tty_flag) {
881 debug("Requesting pty.");
882
883 /* Start the packet. */
884 packet_start(SSH_CMSG_REQUEST_PTY);
885
886 /* Store TERM in the packet. There is no limit on the
887 length of the string. */
888 cp = getenv("TERM");
889 if (!cp)
890 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +0000891 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +1100892
893 /* Store window size in the packet. */
894 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
895 memset(&ws, 0, sizeof(ws));
Damien Miller71a73672006-03-26 14:04:36 +1100896 packet_put_int((u_int)ws.ws_row);
897 packet_put_int((u_int)ws.ws_col);
898 packet_put_int((u_int)ws.ws_xpixel);
899 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller95def091999-11-25 00:26:21 +1100900
901 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000902 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +1100903
904 /* Send the packet, and wait for it to leave. */
905 packet_send();
906 packet_write_wait();
907
908 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100909 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +1000910 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100911 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000912 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +1000913 } else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +1000914 logit("Warning: Remote host failed or refused to allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +1100915 else
916 packet_disconnect("Protocol error waiting for pty request response.");
917 }
918 /* Request X11 forwarding if enabled and DISPLAY is set. */
Damien Miller17e7ed02005-06-17 12:54:33 +1000919 display = getenv("DISPLAY");
920 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000921 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +1000922 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +1000923 client_x11_get_proto(display, options.xauth_location,
924 options.forward_x11_trusted, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +1000925 /* Request forwarding with authentication spoofing. */
Damien Miller95def091999-11-25 00:26:21 +1100926 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +1000927 x11_request_forwarding_with_spoofing(0, display, proto, data);
Damien Miller95def091999-11-25 00:26:21 +1100928
929 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100930 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100931 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100932 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000933 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +1000934 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +1000935 } else {
Damien Miller95def091999-11-25 00:26:21 +1100936 packet_disconnect("Protocol error waiting for X11 forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +1000937 }
Damien Miller95def091999-11-25 00:26:21 +1100938 }
939 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000940 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +1100941
942 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100943 check_agent_present();
944
Damien Miller95def091999-11-25 00:26:21 +1100945 if (options.forward_agent) {
946 debug("Requesting authentication agent forwarding.");
947 auth_request_forwarding();
948
949 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100950 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +1100951 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +1100952 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +1000953 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +1100954 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000955
Damien Miller0bc1bd82000-11-13 22:57:25 +1100956 /* Initiate port forwardings. */
957 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000958
Damien Miller5428f641999-11-25 11:54:57 +1100959 /* If requested, let ssh continue in the background. */
Damien Miller4af51302000-04-16 11:18:38 +1000960 if (fork_after_authentication_flag)
Damien Miller5428f641999-11-25 11:54:57 +1100961 if (daemon(1, 1) < 0)
962 fatal("daemon() failed: %.200s", strerror(errno));
963
964 /*
965 * If a command was specified on the command line, execute the
966 * command now. Otherwise request the server to start a shell.
967 */
Damien Miller95def091999-11-25 00:26:21 +1100968 if (buffer_len(&command) > 0) {
969 int len = buffer_len(&command);
970 if (len > 900)
971 len = 900;
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100972 debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +1100973 packet_start(SSH_CMSG_EXEC_CMD);
974 packet_put_string(buffer_ptr(&command), buffer_len(&command));
975 packet_send();
976 packet_write_wait();
977 } else {
978 debug("Requesting shell.");
979 packet_start(SSH_CMSG_EXEC_SHELL);
980 packet_send();
981 packet_write_wait();
982 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000983
Damien Miller95def091999-11-25 00:26:21 +1100984 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000985 return client_loop(have_tty, tty_flag ?
986 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +1000987}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000988
Ben Lindstrombba81212001-06-25 05:01:22 +0000989static void
Damien Miller0e220db2004-06-15 10:34:08 +1000990ssh_subsystem_reply(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000991{
992 int id, len;
993
994 id = packet_get_int();
995 len = buffer_len(&command);
Ben Lindstrom4040fe12001-03-05 06:52:57 +0000996 if (len > 900)
997 len = 900;
Damien Miller48b03fc2002-01-22 23:11:40 +1100998 packet_check_eom();
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000999 if (type == SSH2_MSG_CHANNEL_FAILURE)
1000 fatal("Request for subsystem '%.*s' failed on channel %d",
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001001 len, (u_char *)buffer_ptr(&command), id);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001002}
1003
Damien Miller2797f7f2002-04-23 21:09:44 +10001004void
Damien Miller509b0102003-12-17 16:33:10 +11001005client_global_request_reply_fwd(int type, u_int32_t seq, void *ctxt)
Damien Miller2797f7f2002-04-23 21:09:44 +10001006{
1007 int i;
1008
1009 i = client_global_request_id++;
Damien Miller509b0102003-12-17 16:33:10 +11001010 if (i >= options.num_remote_forwards)
Damien Miller2797f7f2002-04-23 21:09:44 +10001011 return;
Damien Miller2797f7f2002-04-23 21:09:44 +10001012 debug("remote forward %s for: listen %d, connect %s:%d",
1013 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
Damien Millerf91ee4c2005-03-01 21:24:33 +11001014 options.remote_forwards[i].listen_port,
1015 options.remote_forwards[i].connect_host,
1016 options.remote_forwards[i].connect_port);
Damien Miller2797f7f2002-04-23 21:09:44 +10001017 if (type == SSH2_MSG_REQUEST_FAILURE)
Damien Millerf91ee4c2005-03-01 21:24:33 +11001018 logit("Warning: remote port forwarding failed for listen "
1019 "port %d", options.remote_forwards[i].listen_port);
Damien Miller2797f7f2002-04-23 21:09:44 +10001020}
1021
Damien Miller0e220db2004-06-15 10:34:08 +10001022static void
1023ssh_control_listener(void)
1024{
1025 struct sockaddr_un addr;
1026 mode_t old_umask;
Damien Miller07b6ff12004-06-15 11:14:45 +10001027 int addr_len;
1028
Damien Millerd14b1e72005-06-16 13:19:41 +10001029 if (options.control_path == NULL ||
1030 options.control_master == SSHCTL_MASTER_NO)
Damien Miller0e220db2004-06-15 10:34:08 +10001031 return;
1032
Damien Millerd14b1e72005-06-16 13:19:41 +10001033 debug("setting up multiplex master socket");
1034
Damien Miller0e220db2004-06-15 10:34:08 +10001035 memset(&addr, '\0', sizeof(addr));
1036 addr.sun_family = AF_UNIX;
Damien Miller07b6ff12004-06-15 11:14:45 +10001037 addr_len = offsetof(struct sockaddr_un, sun_path) +
Damien Miller0e220db2004-06-15 10:34:08 +10001038 strlen(options.control_path) + 1;
1039
1040 if (strlcpy(addr.sun_path, options.control_path,
1041 sizeof(addr.sun_path)) >= sizeof(addr.sun_path))
1042 fatal("ControlPath too long");
1043
1044 if ((control_fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001045 fatal("%s socket(): %s", __func__, strerror(errno));
Damien Miller0e220db2004-06-15 10:34:08 +10001046
1047 old_umask = umask(0177);
Damien Miller90967402006-03-26 14:07:26 +11001048 if (bind(control_fd, (struct sockaddr *)&addr, addr_len) == -1) {
Damien Miller0e220db2004-06-15 10:34:08 +10001049 control_fd = -1;
Damien Miller4f10e252005-05-04 15:33:09 +10001050 if (errno == EINVAL || errno == EADDRINUSE)
Damien Miller0e220db2004-06-15 10:34:08 +10001051 fatal("ControlSocket %s already exists",
1052 options.control_path);
1053 else
Damien Miller15d72a02005-11-05 15:07:33 +11001054 fatal("%s bind(): %s", __func__, strerror(errno));
Damien Miller0e220db2004-06-15 10:34:08 +10001055 }
1056 umask(old_umask);
1057
1058 if (listen(control_fd, 64) == -1)
Damien Miller15d72a02005-11-05 15:07:33 +11001059 fatal("%s listen(): %s", __func__, strerror(errno));
Damien Miller0e220db2004-06-15 10:34:08 +10001060
1061 set_nonblock(control_fd);
1062}
1063
Ben Lindstromf558cf62001-09-20 23:13:49 +00001064/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001065static void
Ben Lindstromf558cf62001-09-20 23:13:49 +00001066ssh_session2_setup(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001067{
Damien Miller3756dce2004-06-18 01:17:29 +10001068 extern char **environ;
Damien Miller17e7ed02005-06-17 12:54:33 +10001069 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +10001070 int interactive = tty_flag;
Damien Miller17e7ed02005-06-17 12:54:33 +10001071
Damien Miller46d38de2005-07-17 17:02:09 +10001072 display = getenv("DISPLAY");
Damien Miller17e7ed02005-06-17 12:54:33 +10001073 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001074 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001075 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001076 client_x11_get_proto(display, options.xauth_location,
1077 options.forward_x11_trusted, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001078 /* Request forwarding with authentication spoofing. */
1079 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +10001080 x11_request_forwarding_with_spoofing(id, display, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001081 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001082 /* XXX wait for reply */
1083 }
1084
Damien Miller0bc1bd82000-11-13 22:57:25 +11001085 check_agent_present();
1086 if (options.forward_agent) {
1087 debug("Requesting authentication agent forwarding.");
1088 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1089 packet_send();
1090 }
1091
Damien Miller7b58e802005-12-13 19:33:19 +11001092 if (options.tun_open != SSH_TUNMODE_NO) {
Damien Millerd27b9472005-12-13 19:29:02 +11001093 Channel *c;
1094 int fd;
1095
1096 debug("Requesting tun.");
Damien Miller7b58e802005-12-13 19:33:19 +11001097 if ((fd = tun_open(options.tun_local,
1098 options.tun_open)) >= 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11001099 c = channel_new("tun", SSH_CHANNEL_OPENING, fd, fd, -1,
1100 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
1101 0, "tun", 1);
1102 c->datagram = 1;
Damien Miller598bbc22005-12-31 16:33:36 +11001103#if defined(SSH_TUN_FILTER)
1104 if (options.tun_open == SSH_TUNMODE_POINTOPOINT)
1105 channel_register_filter(c->self, sys_tun_infilter,
1106 sys_tun_outfilter);
1107#endif
Damien Millerd27b9472005-12-13 19:29:02 +11001108 packet_start(SSH2_MSG_CHANNEL_OPEN);
1109 packet_put_cstring("tun@openssh.com");
1110 packet_put_int(c->self);
1111 packet_put_int(c->local_window_max);
1112 packet_put_int(c->local_maxpacket);
Damien Miller7b58e802005-12-13 19:33:19 +11001113 packet_put_int(options.tun_open);
Damien Millerd27b9472005-12-13 19:29:02 +11001114 packet_put_int(options.tun_remote);
1115 packet_send();
1116 }
1117 }
1118
Damien Miller0e220db2004-06-15 10:34:08 +10001119 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
Damien Miller3756dce2004-06-18 01:17:29 +10001120 NULL, fileno(stdin), &command, environ, &ssh_subsystem_reply);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001121
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001122 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001123}
1124
Ben Lindstromf558cf62001-09-20 23:13:49 +00001125/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001126static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001127ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001128{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001129 Channel *c;
1130 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001131
Damien Millercaf6dd62000-08-29 11:33:50 +11001132 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001133 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001134 } else {
1135 in = dup(STDIN_FILENO);
1136 }
1137 out = dup(STDOUT_FILENO);
1138 err = dup(STDERR_FILENO);
1139
1140 if (in < 0 || out < 0 || err < 0)
1141 fatal("dup() in/out/err failed");
1142
Damien Miller69b69aa2000-10-28 14:19:58 +11001143 /* enable nonblocking unless tty */
1144 if (!isatty(in))
1145 set_nonblock(in);
1146 if (!isatty(out))
1147 set_nonblock(out);
1148 if (!isatty(err))
1149 set_nonblock(err);
1150
Damien Millere4340be2000-09-16 13:29:08 +11001151 window = CHAN_SES_WINDOW_DEFAULT;
1152 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001153 if (tty_flag) {
1154 window >>= 1;
1155 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001156 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001157 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001158 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001159 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001160 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001161
Ben Lindstromf558cf62001-09-20 23:13:49 +00001162 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001163
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001164 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001165 if (!no_shell_flag)
Damien Miller0e220db2004-06-15 10:34:08 +10001166 channel_register_confirm(c->self, ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001167
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001168 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001169}
1170
Ben Lindstrombba81212001-06-25 05:01:22 +00001171static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001172ssh_session2(void)
1173{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001174 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001175
1176 /* XXX should be pre-session */
1177 ssh_init_forwarding();
Damien Miller0e220db2004-06-15 10:34:08 +10001178 ssh_control_listener();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001179
Ben Lindstromf558cf62001-09-20 23:13:49 +00001180 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1181 id = ssh_session2_open();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001182
Damien Millerd27b9472005-12-13 19:29:02 +11001183 /* Execute a local command */
1184 if (options.local_command != NULL &&
1185 options.permit_local_command)
1186 ssh_local_cmd(options.local_command);
1187
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001188 /* If requested, let ssh continue in the background. */
1189 if (fork_after_authentication_flag)
1190 if (daemon(1, 1) < 0)
1191 fatal("daemon() failed: %.200s", strerror(errno));
1192
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001193 return client_loop(tty_flag, tty_flag ?
1194 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001195}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001196
Ben Lindstrombba81212001-06-25 05:01:22 +00001197static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001198load_public_identity_files(void)
1199{
Damien Miller6b1d53c2006-03-31 23:13:21 +11001200 char *filename, *cp, thishost[NI_MAXHOST];
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001201 int i = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001202 Key *public;
Damien Miller6b1d53c2006-03-31 23:13:21 +11001203 struct passwd *pw;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001204#ifdef SMARTCARD
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001205 Key **keys;
1206
Ben Lindstromf7db3bb2001-08-06 21:35:51 +00001207 if (options.smartcard_device != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001208 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
1209 (keys = sc_get_keys(options.smartcard_device, NULL)) != NULL ) {
1210 int count = 0;
1211 for (i = 0; keys[i] != NULL; i++) {
1212 count++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001213 memmove(&options.identity_files[1], &options.identity_files[0],
1214 sizeof(char *) * (SSH_MAX_IDENTITY_FILES - 1));
1215 memmove(&options.identity_keys[1], &options.identity_keys[0],
1216 sizeof(Key *) * (SSH_MAX_IDENTITY_FILES - 1));
1217 options.num_identity_files++;
1218 options.identity_keys[0] = keys[i];
Damien Miller56a0bb02003-06-18 20:28:40 +10001219 options.identity_files[0] = sc_get_key_label(keys[i]);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001220 }
Ben Lindstrom4f054602002-03-26 03:23:00 +00001221 if (options.num_identity_files > SSH_MAX_IDENTITY_FILES)
1222 options.num_identity_files = SSH_MAX_IDENTITY_FILES;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001223 i = count;
1224 xfree(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001225 }
Ben Lindstromffce1472001-08-06 21:57:31 +00001226#endif /* SMARTCARD */
Damien Miller6b1d53c2006-03-31 23:13:21 +11001227 if ((pw = getpwuid(original_real_uid)) == NULL)
1228 fatal("load_public_identity_files: getpwuid failed");
1229 if (gethostname(thishost, sizeof(thishost)) == -1)
1230 fatal("load_public_identity_files: gethostname: %s",
1231 strerror(errno));
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001232 for (; i < options.num_identity_files; i++) {
Damien Miller6b1d53c2006-03-31 23:13:21 +11001233 cp = tilde_expand_filename(options.identity_files[i],
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001234 original_real_uid);
Damien Miller6b1d53c2006-03-31 23:13:21 +11001235 filename = percent_expand(cp, "d", pw->pw_dir,
1236 "u", pw->pw_name, "l", thishost, "h", host,
1237 "r", options.user, (char *)NULL);
1238 xfree(cp);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001239 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001240 debug("identity file %s type %d", filename,
1241 public ? public->type : -1);
1242 xfree(options.identity_files[i]);
1243 options.identity_files[i] = filename;
1244 options.identity_keys[i] = public;
1245 }
1246}
Damien Miller0e220db2004-06-15 10:34:08 +10001247
1248static void
1249control_client_sighandler(int signo)
1250{
1251 control_client_terminate = signo;
1252}
1253
1254static void
1255control_client_sigrelay(int signo)
1256{
1257 if (control_server_pid > 1)
1258 kill(control_server_pid, signo);
1259}
1260
Darren Tucker365433f2004-06-22 12:29:23 +10001261static int
1262env_permitted(char *env)
1263{
1264 int i;
1265 char name[1024], *cp;
1266
Damien Miller07d86be2006-03-26 14:19:21 +11001267 if (strlcpy(name, env, sizeof(name)) >= sizeof(name))
1268 fatal("env_permitted: name too long");
Darren Tucker365433f2004-06-22 12:29:23 +10001269 if ((cp = strchr(name, '=')) == NULL)
1270 return (0);
1271
1272 *cp = '\0';
1273
1274 for (i = 0; i < options.num_send_env; i++)
1275 if (match_pattern(name, options.send_env[i]))
1276 return (1);
1277
1278 return (0);
1279}
1280
Damien Miller0e220db2004-06-15 10:34:08 +10001281static void
1282control_client(const char *path)
1283{
1284 struct sockaddr_un addr;
Darren Tucker39207a42004-11-05 20:19:51 +11001285 int i, r, fd, sock, exitval, num_env, addr_len;
Damien Miller0e220db2004-06-15 10:34:08 +10001286 Buffer m;
Darren Tucker7ebfc102004-11-07 20:06:19 +11001287 char *term;
Damien Miller3756dce2004-06-18 01:17:29 +10001288 extern char **environ;
Darren Tucker7ebfc102004-11-07 20:06:19 +11001289 u_int flags;
Darren Tuckerfc959702004-07-17 16:12:08 +10001290
Damien Millerd14b1e72005-06-16 13:19:41 +10001291 if (mux_command == 0)
1292 mux_command = SSHMUX_COMMAND_OPEN;
1293
1294 switch (options.control_master) {
1295 case SSHCTL_MASTER_AUTO:
1296 case SSHCTL_MASTER_AUTO_ASK:
1297 debug("auto-mux: Trying existing master");
1298 /* FALLTHROUGH */
1299 case SSHCTL_MASTER_NO:
1300 break;
1301 default:
1302 return;
1303 }
1304
Damien Miller0e220db2004-06-15 10:34:08 +10001305 memset(&addr, '\0', sizeof(addr));
1306 addr.sun_family = AF_UNIX;
Damien Miller07b6ff12004-06-15 11:14:45 +10001307 addr_len = offsetof(struct sockaddr_un, sun_path) +
Damien Miller0e220db2004-06-15 10:34:08 +10001308 strlen(path) + 1;
1309
1310 if (strlcpy(addr.sun_path, path,
1311 sizeof(addr.sun_path)) >= sizeof(addr.sun_path))
1312 fatal("ControlPath too long");
1313
1314 if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
1315 fatal("%s socket(): %s", __func__, strerror(errno));
1316
Damien Miller90967402006-03-26 14:07:26 +11001317 if (connect(sock, (struct sockaddr *)&addr, addr_len) == -1) {
Darren Tucker0814d312005-06-01 23:08:51 +10001318 if (mux_command != SSHMUX_COMMAND_OPEN) {
1319 fatal("Control socket connect(%.100s): %s", path,
1320 strerror(errno));
1321 }
Damien Miller538c9b72005-05-26 12:11:28 +10001322 if (errno == ENOENT)
Damien Miller4662d342006-03-26 13:59:59 +11001323 debug("Control socket \"%.100s\" does not exist", path);
Damien Miller538c9b72005-05-26 12:11:28 +10001324 else {
Damien Miller4662d342006-03-26 13:59:59 +11001325 error("Control socket connect(%.100s): %s", path,
Damien Miller538c9b72005-05-26 12:11:28 +10001326 strerror(errno));
1327 }
Damien Miller4662d342006-03-26 13:59:59 +11001328 close(sock);
1329 return;
1330 }
Damien Miller46d38de2005-07-17 17:02:09 +10001331
Damien Miller4662d342006-03-26 13:59:59 +11001332 if (stdin_null_flag) {
1333 if ((fd = open(_PATH_DEVNULL, O_RDONLY)) == -1)
1334 fatal("open(/dev/null): %s", strerror(errno));
1335 if (dup2(fd, STDIN_FILENO) == -1)
1336 fatal("dup2: %s", strerror(errno));
1337 if (fd > STDERR_FILENO)
1338 close(fd);
1339 }
Damien Miller46d38de2005-07-17 17:02:09 +10001340
Damien Miller13390022005-07-06 09:44:19 +10001341 term = getenv("TERM");
Darren Tucker7ebfc102004-11-07 20:06:19 +11001342
1343 flags = 0;
1344 if (tty_flag)
1345 flags |= SSHMUX_FLAG_TTY;
1346 if (subsystem_flag)
1347 flags |= SSHMUX_FLAG_SUBSYS;
Damien Miller13390022005-07-06 09:44:19 +10001348 if (options.forward_x11)
1349 flags |= SSHMUX_FLAG_X11_FWD;
1350 if (options.forward_agent)
1351 flags |= SSHMUX_FLAG_AGENT_FWD;
Damien Miller0e220db2004-06-15 10:34:08 +10001352
Damien Miller0e220db2004-06-15 10:34:08 +10001353 buffer_init(&m);
1354
Darren Tucker7ebfc102004-11-07 20:06:19 +11001355 /* Send our command to server */
1356 buffer_put_int(&m, mux_command);
1357 buffer_put_int(&m, flags);
Damien Miller13390022005-07-06 09:44:19 +10001358 if (ssh_msg_send(sock, SSHMUX_VER, &m) == -1)
Darren Tucker7ebfc102004-11-07 20:06:19 +11001359 fatal("%s: msg_send", __func__);
1360 buffer_clear(&m);
1361
1362 /* Get authorisation status and PID of controlee */
Damien Miller0e220db2004-06-15 10:34:08 +10001363 if (ssh_msg_recv(sock, &m) == -1)
1364 fatal("%s: msg_recv", __func__);
Damien Miller13390022005-07-06 09:44:19 +10001365 if (buffer_get_char(&m) != SSHMUX_VER)
Damien Miller0e220db2004-06-15 10:34:08 +10001366 fatal("%s: wrong version", __func__);
Damien Miller23f07702004-06-18 01:19:03 +10001367 if (buffer_get_int(&m) != 1)
1368 fatal("Connection to master denied");
Damien Miller0e220db2004-06-15 10:34:08 +10001369 control_server_pid = buffer_get_int(&m);
1370
Damien Miller0e220db2004-06-15 10:34:08 +10001371 buffer_clear(&m);
Damien Miller0e220db2004-06-15 10:34:08 +10001372
Darren Tucker7ebfc102004-11-07 20:06:19 +11001373 switch (mux_command) {
1374 case SSHMUX_COMMAND_ALIVE_CHECK:
Darren Tucker47eede72005-03-14 23:08:12 +11001375 fprintf(stderr, "Master running (pid=%d)\r\n",
Darren Tucker7ebfc102004-11-07 20:06:19 +11001376 control_server_pid);
1377 exit(0);
1378 case SSHMUX_COMMAND_TERMINATE:
1379 fprintf(stderr, "Exit request sent.\r\n");
1380 exit(0);
1381 case SSHMUX_COMMAND_OPEN:
1382 /* continue below */
1383 break;
1384 default:
1385 fatal("silly mux_command %d", mux_command);
1386 }
1387
1388 /* SSHMUX_COMMAND_OPEN */
Damien Miller13390022005-07-06 09:44:19 +10001389 buffer_put_cstring(&m, term ? term : "");
Damien Miller0e220db2004-06-15 10:34:08 +10001390 buffer_append(&command, "\0", 1);
1391 buffer_put_cstring(&m, buffer_ptr(&command));
1392
Darren Tucker365433f2004-06-22 12:29:23 +10001393 if (options.num_send_env == 0 || environ == NULL) {
1394 buffer_put_int(&m, 0);
Darren Tuckerfc959702004-07-17 16:12:08 +10001395 } else {
Darren Tucker365433f2004-06-22 12:29:23 +10001396 /* Pass environment */
1397 num_env = 0;
1398 for (i = 0; environ[i] != NULL; i++)
1399 if (env_permitted(environ[i]))
1400 num_env++; /* Count */
Darren Tuckerfc959702004-07-17 16:12:08 +10001401
Darren Tucker365433f2004-06-22 12:29:23 +10001402 buffer_put_int(&m, num_env);
1403
Darren Tuckerb5bc1a62004-06-24 00:34:53 +10001404 for (i = 0; environ[i] != NULL && num_env >= 0; i++)
1405 if (env_permitted(environ[i])) {
1406 num_env--;
Darren Tucker365433f2004-06-22 12:29:23 +10001407 buffer_put_cstring(&m, environ[i]);
Darren Tuckerb5bc1a62004-06-24 00:34:53 +10001408 }
Darren Tucker365433f2004-06-22 12:29:23 +10001409 }
Damien Miller3756dce2004-06-18 01:17:29 +10001410
Damien Miller13390022005-07-06 09:44:19 +10001411 if (ssh_msg_send(sock, SSHMUX_VER, &m) == -1)
Damien Miller0e220db2004-06-15 10:34:08 +10001412 fatal("%s: msg_send", __func__);
1413
1414 mm_send_fd(sock, STDIN_FILENO);
1415 mm_send_fd(sock, STDOUT_FILENO);
1416 mm_send_fd(sock, STDERR_FILENO);
1417
1418 /* Wait for reply, so master has a chance to gather ttymodes */
1419 buffer_clear(&m);
1420 if (ssh_msg_recv(sock, &m) == -1)
1421 fatal("%s: msg_recv", __func__);
Damien Miller13390022005-07-06 09:44:19 +10001422 if (buffer_get_char(&m) != SSHMUX_VER)
Darren Tucker7ebfc102004-11-07 20:06:19 +11001423 fatal("%s: wrong version", __func__);
Damien Miller0e220db2004-06-15 10:34:08 +10001424 buffer_free(&m);
1425
Darren Tucker07336da2004-11-05 20:02:16 +11001426 signal(SIGHUP, control_client_sighandler);
Damien Miller0809e232004-06-18 22:20:57 +10001427 signal(SIGINT, control_client_sighandler);
1428 signal(SIGTERM, control_client_sighandler);
1429 signal(SIGWINCH, control_client_sigrelay);
1430
Damien Miller0e220db2004-06-15 10:34:08 +10001431 if (tty_flag)
1432 enter_raw_mode();
1433
1434 /* Stick around until the controlee closes the client_fd */
1435 exitval = 0;
1436 for (;!control_client_terminate;) {
1437 r = read(sock, &exitval, sizeof(exitval));
1438 if (r == 0) {
1439 debug2("Received EOF from master");
1440 break;
1441 }
1442 if (r > 0)
1443 debug2("Received exit status from master %d", exitval);
1444 if (r == -1 && errno != EINTR)
1445 fatal("%s: read %s", __func__, strerror(errno));
1446 }
1447
1448 if (control_client_terminate)
1449 debug2("Exiting on signal %d", control_client_terminate);
1450
1451 close(sock);
1452
1453 leave_raw_mode();
1454
1455 if (tty_flag && options.log_level != SYSLOG_LEVEL_QUIET)
1456 fprintf(stderr, "Connection to master closed.\r\n");
1457
1458 exit(exitval);
1459}