blob: 2e0ef2f9fde4c87a8f67cce520848085cae945af [file] [log] [blame]
Darren Tuckere7d4b192006-07-12 22:17:10 +10001/* $OpenBSD: ssh.c,v 1.283 2006/07/11 18:50:48 markus 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 Miller57cf6382006-07-10 21:13:46 +100055#include <fcntl.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110056#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110057#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110058#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100059#include <pwd.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110060#include <signal.h>
Damien Millereba71ba2000-04-29 23:57:08 +100061
62#include <openssl/evp.h>
Damien Miller0bc1bd82000-11-13 22:57:25 +110063#include <openssl/err.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100064
Damien Millerd4a8b7e1999-10-27 13:42:43 +100065#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000066#include "ssh1.h"
Damien Miller1383bd82000-04-06 12:32:37 +100067#include "ssh2.h"
68#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000069#include "cipher.h"
70#include "xmalloc.h"
71#include "packet.h"
72#include "buffer.h"
Damien Miller0e220db2004-06-15 10:34:08 +100073#include "bufaux.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000074#include "channels.h"
Damien Millereba71ba2000-04-29 23:57:08 +100075#include "key.h"
Damien Miller994cf142000-07-21 10:19:44 +100076#include "authfd.h"
Damien Millereba71ba2000-04-29 23:57:08 +100077#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000078#include "pathnames.h"
Damien Miller0e220db2004-06-15 10:34:08 +100079#include "dispatch.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000080#include "clientloop.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000081#include "log.h"
82#include "readconf.h"
83#include "sshconnect.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000084#include "misc.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000085#include "kex.h"
86#include "mac.h"
Darren Tucker06f2bd82004-05-13 16:06:46 +100087#include "sshpty.h"
Darren Tucker46bc0752004-05-02 22:11:30 +100088#include "match.h"
Damien Miller0e220db2004-06-15 10:34:08 +100089#include "msg.h"
90#include "monitor_fdpass.h"
Darren Tucker25f60a72004-08-15 17:23:34 +100091#include "uidswap.h"
Damien Millerb7576772006-07-10 20:23:39 +100092#include "version.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100093
Ben Lindstromc5b68002001-07-04 04:52:03 +000094#ifdef SMARTCARD
Ben Lindstromc5b68002001-07-04 04:52:03 +000095#include "scard.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +000096#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +000097
Damien Miller3f905871999-11-15 17:10:57 +110098extern char *__progname;
Damien Miller3f905871999-11-15 17:10:57 +110099
Damien Miller95def091999-11-25 00:26:21 +1100100/* Flag indicating whether debug mode is on. This can be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000101int debug_flag = 0;
102
Damien Miller78928792000-04-12 20:17:38 +1000103/* Flag indicating whether a tty should be allocated */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000104int tty_flag = 0;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000105int no_tty_flag = 0;
106int force_tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000107
Damien Miller1383bd82000-04-06 12:32:37 +1000108/* don't exec a shell */
109int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000110
Damien Miller5428f641999-11-25 11:54:57 +1100111/*
112 * Flag indicating that nothing should be read from stdin. This can be set
113 * on the command line.
114 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000115int stdin_null_flag = 0;
116
Damien Miller5428f641999-11-25 11:54:57 +1100117/*
118 * Flag indicating that ssh should fork after authentication. This is useful
Ben Lindstromf666fec2002-06-06 19:51:58 +0000119 * so that the passphrase can be entered manually, and then ssh goes to the
Damien Miller5428f641999-11-25 11:54:57 +1100120 * background.
121 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000122int fork_after_authentication_flag = 0;
123
Damien Miller5428f641999-11-25 11:54:57 +1100124/*
125 * General data structure for command line options and options configurable
126 * in configuration files. See readconf.h.
127 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000128Options options;
129
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000130/* optional user configfile */
131char *config = NULL;
132
Damien Miller5428f641999-11-25 11:54:57 +1100133/*
134 * Name of the host we are connecting to. This is the name given on the
135 * command line, or the HostName specified for the user-supplied name in a
136 * configuration file.
137 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000138char *host;
139
140/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100141struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000142
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000143/* Private host keys. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000144Sensitive sensitive_data;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000145
146/* Original real UID. */
147uid_t original_real_uid;
Ben Lindstromf9c48842002-06-11 16:37:51 +0000148uid_t original_effective_uid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000149
Damien Miller1383bd82000-04-06 12:32:37 +1000150/* command to be executed */
151Buffer command;
152
Damien Miller832562e2001-01-30 09:30:01 +1100153/* Should we execute a command or invoke a subsystem? */
154int subsystem_flag = 0;
155
Damien Miller2797f7f2002-04-23 21:09:44 +1000156/* # of replies received for global requests */
157static int client_global_request_id = 0;
158
Damien Miller8c4e18a2002-09-19 12:05:02 +1000159/* pid of proxycommand child process */
160pid_t proxy_command_pid = 0;
161
Damien Miller0e220db2004-06-15 10:34:08 +1000162/* fd to control socket */
163int control_fd = -1;
164
Darren Tucker7ebfc102004-11-07 20:06:19 +1100165/* Multiplexing control command */
Darren Tucker0814d312005-06-01 23:08:51 +1000166static u_int mux_command = 0;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100167
Damien Miller0e220db2004-06-15 10:34:08 +1000168/* Only used in control client mode */
169volatile sig_atomic_t control_client_terminate = 0;
170u_int control_server_pid = 0;
171
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000172/* Prints a help message to the user. This function never returns. */
173
Ben Lindstrombba81212001-06-25 05:01:22 +0000174static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000175usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000176{
Damien Miller50955102004-03-22 09:34:58 +1100177 fprintf(stderr,
Darren Tucker9c6bf322004-12-03 14:10:19 +1100178"usage: ssh [-1246AaCfgkMNnqsTtVvXxY] [-b bind_address] [-c cipher_spec]\n"
Darren Tucker895d6982005-10-03 18:18:05 +1000179" [-D [bind_address:]port] [-e escape_char] [-F configfile]\n"
Damien Miller02faece2005-03-02 12:04:32 +1100180" [-i identity_file] [-L [bind_address:]port:host:hostport]\n"
Damien Millerf91ee4c2005-03-01 21:24:33 +1100181" [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
Damien Miller02faece2005-03-02 12:04:32 +1100182" [-R [bind_address:]port:host:hostport] [-S ctl_path]\n"
Damien Miller991dba42006-07-10 20:16:27 +1000183" [-w local_tun[:remote_tun]] [user@]hostname [command]\n"
Damien Miller50955102004-03-22 09:34:58 +1100184 );
Darren Tuckere9a9b712005-12-20 16:15:51 +1100185 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000186}
187
Ben Lindstrombba81212001-06-25 05:01:22 +0000188static int ssh_session(void);
189static int ssh_session2(void);
190static void load_public_identity_files(void);
Damien Miller0e220db2004-06-15 10:34:08 +1000191static void control_client(const char *path);
Damien Miller1383bd82000-04-06 12:32:37 +1000192
Damien Miller95def091999-11-25 00:26:21 +1100193/*
194 * Main program for the ssh client.
195 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000196int
197main(int ac, char **av)
198{
Ben Lindstrom24157572002-06-12 16:09:39 +0000199 int i, opt, exit_status;
Damien Miller9836cf82003-12-17 16:30:06 +1100200 char *p, *cp, *line, buf[256];
Damien Miller95def091999-11-25 00:26:21 +1100201 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000202 struct passwd *pw;
Damien Miller1383bd82000-04-06 12:32:37 +1000203 int dummy;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000204 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000205 extern char *optarg;
Damien Miller9651fe62005-06-26 08:55:25 +1000206 struct servent *sp;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100207 Forward fwd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000208
Darren Tuckerce321d82005-10-03 18:11:24 +1000209 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
210 sanitise_stdfd();
211
Damien Miller59d3d5b2003-08-22 09:34:41 +1000212 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000213 init_rng();
214
Damien Miller5428f641999-11-25 11:54:57 +1100215 /*
216 * Save the original real uid. It will be needed later (uid-swapping
217 * may clobber the real uid).
218 */
Damien Miller95def091999-11-25 00:26:21 +1100219 original_real_uid = getuid();
220 original_effective_uid = geteuid();
Damien Millera8e06ce2003-11-21 23:48:55 +1100221
Damien Miller50b9a602002-09-04 16:50:06 +1000222 /*
223 * Use uid-swapping to give up root privileges for the duration of
224 * option processing. We will re-instantiate the rights when we are
225 * ready to create the privileged port, and will permanently drop
226 * them when the port has been created (actually, when the connection
227 * has been made, as we may need to create the port several times).
228 */
229 PRIV_END;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000230
Damien Miller05dd7952000-10-01 00:42:48 +1100231#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100232 /* If we are installed setuid root be careful to not drop core. */
233 if (original_real_uid != original_effective_uid) {
234 struct rlimit rlim;
235 rlim.rlim_cur = rlim.rlim_max = 0;
236 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
237 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000238 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100239#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000240 /* Get user data. */
241 pw = getpwuid(original_real_uid);
242 if (!pw) {
Damien Miller996acd22003-04-09 20:59:48 +1000243 logit("You don't exist, go away!");
Darren Tuckere9a9b712005-12-20 16:15:51 +1100244 exit(255);
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000245 }
246 /* Take a copy of the returned structure. */
247 pw = pwcopy(pw);
248
Damien Miller5428f641999-11-25 11:54:57 +1100249 /*
Damien Miller5428f641999-11-25 11:54:57 +1100250 * Set our umask to something reasonable, as some files are created
251 * with the default umask. This will make them world-readable but
252 * writable only by the owner, which is ok for all files for which we
253 * don't set the modes explicitly.
254 */
Damien Miller95def091999-11-25 00:26:21 +1100255 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000256
Damien Miller95def091999-11-25 00:26:21 +1100257 /* Initialize option structure to indicate that no values have been set. */
258 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000259
Damien Miller95def091999-11-25 00:26:21 +1100260 /* Parse command-line arguments. */
261 host = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000262
Damien Miller2ecb6bd2006-03-15 12:03:53 +1100263 again:
Damien Millerf4614452001-07-14 12:18:10 +1000264 while ((opt = getopt(ac, av,
Damien Millerd27b9472005-12-13 19:29:02 +1100265 "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 +1100266 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000267 case '1':
268 options.protocol = SSH_PROTO_1;
269 break;
Damien Miller4af51302000-04-16 11:18:38 +1000270 case '2':
271 options.protocol = SSH_PROTO_2;
272 break;
Damien Miller34132e52000-01-14 15:45:46 +1100273 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000274 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100275 break;
Damien Miller34132e52000-01-14 15:45:46 +1100276 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000277 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100278 break;
Damien Miller95def091999-11-25 00:26:21 +1100279 case 'n':
280 stdin_null_flag = 1;
281 break;
Damien Miller95def091999-11-25 00:26:21 +1100282 case 'f':
283 fork_after_authentication_flag = 1;
284 stdin_null_flag = 1;
285 break;
Damien Miller95def091999-11-25 00:26:21 +1100286 case 'x':
287 options.forward_x11 = 0;
288 break;
Damien Miller95def091999-11-25 00:26:21 +1100289 case 'X':
290 options.forward_x11 = 1;
291 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000292 case 'Y':
293 options.forward_x11 = 1;
294 options.forward_x11_trusted = 1;
295 break;
Damien Miller95def091999-11-25 00:26:21 +1100296 case 'g':
297 options.gateway_ports = 1;
298 break;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100299 case 'O':
300 if (strcmp(optarg, "check") == 0)
301 mux_command = SSHMUX_COMMAND_ALIVE_CHECK;
302 else if (strcmp(optarg, "exit") == 0)
303 mux_command = SSHMUX_COMMAND_TERMINATE;
304 else
305 fatal("Invalid multiplex command.");
306 break;
Damien Miller147bba32002-09-04 16:46:06 +1000307 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100308 options.use_privileged_port = 0;
309 break;
Damien Miller95def091999-11-25 00:26:21 +1100310 case 'a':
311 options.forward_agent = 0;
312 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000313 case 'A':
314 options.forward_agent = 1;
315 break;
Damien Miller95def091999-11-25 00:26:21 +1100316 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100317 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100318 break;
Damien Miller95def091999-11-25 00:26:21 +1100319 case 'i':
320 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000321 fprintf(stderr, "Warning: Identity file %s "
Damien Miller3eb48b62005-03-01 21:15:46 +1100322 "not accessible: %s.\n", optarg,
323 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100324 break;
325 }
Damien Millerf4614452001-07-14 12:18:10 +1000326 if (options.num_identity_files >=
327 SSH_MAX_IDENTITY_FILES)
328 fatal("Too many identity files specified "
329 "(max %d)", SSH_MAX_IDENTITY_FILES);
330 options.identity_files[options.num_identity_files++] =
331 xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100332 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000333 case 'I':
334#ifdef SMARTCARD
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000335 options.smartcard_device = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000336#else
Ben Lindstromc5b68002001-07-04 04:52:03 +0000337 fprintf(stderr, "no support for smartcards.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000338#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000339 break;
Damien Miller95def091999-11-25 00:26:21 +1100340 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000341 if (tty_flag)
342 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100343 tty_flag = 1;
344 break;
Damien Miller95def091999-11-25 00:26:21 +1100345 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000346 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100347 debug_flag = 1;
348 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000349 } else {
350 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
351 options.log_level++;
Damien Millere4340be2000-09-16 13:29:08 +1100352 break;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000353 }
Darren Tuckere9bf9842004-11-05 20:05:32 +1100354 /* FALLTHROUGH */
Damien Miller95def091999-11-25 00:26:21 +1100355 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100356 fprintf(stderr, "%s, %s\n",
Damien Miller2aa6d3c2004-09-12 16:53:04 +1000357 SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
Damien Miller95def091999-11-25 00:26:21 +1100358 if (opt == 'V')
359 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100360 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100361 case 'w':
Damien Miller7b58e802005-12-13 19:33:19 +1100362 if (options.tun_open == -1)
363 options.tun_open = SSH_TUNMODE_DEFAULT;
Damien Millerd27b9472005-12-13 19:29:02 +1100364 options.tun_local = a2tun(optarg, &options.tun_remote);
Damien Miller7b58e802005-12-13 19:33:19 +1100365 if (options.tun_local == SSH_TUNID_ERR) {
Damien Millerd27b9472005-12-13 19:29:02 +1100366 fprintf(stderr, "Bad tun device '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100367 exit(255);
Damien Millerd27b9472005-12-13 19:29:02 +1100368 }
369 break;
Damien Miller95def091999-11-25 00:26:21 +1100370 case 'q':
371 options.log_level = SYSLOG_LEVEL_QUIET;
372 break;
Damien Miller95def091999-11-25 00:26:21 +1100373 case 'e':
374 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000375 (u_char) optarg[1] >= 64 &&
376 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000377 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100378 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000379 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100380 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000381 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100382 else {
Damien Millerf4614452001-07-14 12:18:10 +1000383 fprintf(stderr, "Bad escape character '%s'.\n",
384 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100385 exit(255);
Damien Miller95def091999-11-25 00:26:21 +1100386 }
387 break;
Damien Miller95def091999-11-25 00:26:21 +1100388 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000389 if (ciphers_valid(optarg)) {
390 /* SSH2 only */
391 options.ciphers = xstrdup(optarg);
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000392 options.cipher = SSH_CIPHER_INVALID;
Damien Millereba71ba2000-04-29 23:57:08 +1000393 } else {
394 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100395 options.cipher = cipher_number(optarg);
396 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000397 fprintf(stderr,
398 "Unknown cipher type '%s'\n",
399 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100400 exit(255);
Damien Millereba71ba2000-04-29 23:57:08 +1000401 }
Damien Millerf4614452001-07-14 12:18:10 +1000402 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100403 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000404 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100405 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000406 else
Damien Millere39cacc2000-11-29 12:18:44 +1100407 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100408 }
409 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000410 case 'm':
411 if (mac_valid(optarg))
412 options.macs = xstrdup(optarg);
413 else {
Damien Millerf4614452001-07-14 12:18:10 +1000414 fprintf(stderr, "Unknown mac type '%s'\n",
415 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100416 exit(255);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000417 }
418 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000419 case 'M':
Damien Millerd14b1e72005-06-16 13:19:41 +1000420 if (options.control_master == SSHCTL_MASTER_YES)
421 options.control_master = SSHCTL_MASTER_ASK;
422 else
423 options.control_master = SSHCTL_MASTER_YES;
Damien Miller0e220db2004-06-15 10:34:08 +1000424 break;
Damien Miller95def091999-11-25 00:26:21 +1100425 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000426 options.port = a2port(optarg);
427 if (options.port == 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000428 fprintf(stderr, "Bad port '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100429 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000430 }
Damien Miller95def091999-11-25 00:26:21 +1100431 break;
Damien Miller95def091999-11-25 00:26:21 +1100432 case 'l':
433 options.user = optarg;
434 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000435
Damien Miller95def091999-11-25 00:26:21 +1100436 case 'L':
Damien Millerf91ee4c2005-03-01 21:24:33 +1100437 if (parse_forward(&fwd, optarg))
438 add_local_forward(&options, &fwd);
439 else {
Damien Millerf4614452001-07-14 12:18:10 +1000440 fprintf(stderr,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100441 "Bad local forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000442 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100443 exit(255);
Ben Lindstrom1a174712001-09-12 17:56:15 +0000444 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100445 break;
446
447 case 'R':
448 if (parse_forward(&fwd, optarg)) {
449 add_remote_forward(&options, &fwd);
450 } else {
451 fprintf(stderr,
452 "Bad remote forwarding specification "
453 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100454 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100455 }
Damien Miller95def091999-11-25 00:26:21 +1100456 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000457
458 case 'D':
Damien Millerf91ee4c2005-03-01 21:24:33 +1100459 cp = p = xstrdup(optarg);
460 memset(&fwd, '\0', sizeof(fwd));
461 fwd.connect_host = "socks";
462 if ((fwd.listen_host = hpdelim(&cp)) == NULL) {
463 fprintf(stderr, "Bad dynamic forwarding "
464 "specification '%.100s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100465 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100466 }
467 if (cp != NULL) {
468 fwd.listen_port = a2port(cp);
469 fwd.listen_host = cleanhostname(fwd.listen_host);
470 } else {
471 fwd.listen_port = a2port(fwd.listen_host);
Damien Millerbe1045d2005-08-12 22:10:56 +1000472 fwd.listen_host = NULL;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100473 }
474
475 if (fwd.listen_port == 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000476 fprintf(stderr, "Bad dynamic port '%s'\n",
477 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100478 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000479 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100480 add_local_forward(&options, &fwd);
481 xfree(p);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000482 break;
483
Damien Miller95def091999-11-25 00:26:21 +1100484 case 'C':
485 options.compression = 1;
486 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000487 case 'N':
488 no_shell_flag = 1;
489 no_tty_flag = 1;
490 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000491 case 'T':
492 no_tty_flag = 1;
493 break;
Damien Miller95def091999-11-25 00:26:21 +1100494 case 'o':
495 dummy = 1;
Damien Miller9836cf82003-12-17 16:30:06 +1100496 line = xstrdup(optarg);
Damien Millerf4614452001-07-14 12:18:10 +1000497 if (process_config_line(&options, host ? host : "",
Damien Miller9836cf82003-12-17 16:30:06 +1100498 line, "command-line", 0, &dummy) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100499 exit(255);
Damien Miller9836cf82003-12-17 16:30:06 +1100500 xfree(line);
Damien Miller95def091999-11-25 00:26:21 +1100501 break;
Damien Miller832562e2001-01-30 09:30:01 +1100502 case 's':
503 subsystem_flag = 1;
504 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000505 case 'S':
506 if (options.control_path != NULL)
507 free(options.control_path);
508 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000509 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000510 case 'b':
511 options.bind_address = optarg;
512 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000513 case 'F':
514 config = optarg;
515 break;
Damien Miller95def091999-11-25 00:26:21 +1100516 default:
517 usage();
518 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000519 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000520
Damien Millerf4614452001-07-14 12:18:10 +1000521 ac -= optind;
522 av += optind;
523
524 if (ac > 0 && !host && **av != '-') {
Ben Lindstromc276c122002-12-23 02:14:51 +0000525 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000526 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000527 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000528 if (cp == NULL || cp == p)
529 usage();
530 options.user = p;
531 *cp = '\0';
532 host = ++cp;
533 } else
534 host = *av;
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000535 if (ac > 1) {
536 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000537 goto again;
538 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000539 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000540 }
541
Damien Miller95def091999-11-25 00:26:21 +1100542 /* Check that we got a host name. */
543 if (!host)
544 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000545
Damien Millercb5e44a2000-09-29 12:12:36 +1100546 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100547 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100548
Damien Miller95def091999-11-25 00:26:21 +1100549 /* Initialize the command to execute on remote host. */
550 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000551
Damien Miller5428f641999-11-25 11:54:57 +1100552 /*
553 * Save the command to execute on the remote host in a buffer. There
554 * is no limit on the length of the command, except by the maximum
555 * packet size. Also sets the tty flag if there is no command.
556 */
Damien Millerf4614452001-07-14 12:18:10 +1000557 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100558 /* No command specified - execute shell on a tty. */
559 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100560 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000561 fprintf(stderr,
562 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100563 usage();
564 }
Damien Miller95def091999-11-25 00:26:21 +1100565 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000566 /* A command has been specified. Store it into the buffer. */
567 for (i = 0; i < ac; i++) {
568 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100569 buffer_append(&command, " ", 1);
570 buffer_append(&command, av[i], strlen(av[i]));
571 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000572 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000573
Damien Miller95def091999-11-25 00:26:21 +1100574 /* Cannot fork to background if no command. */
Damien Millercaf6dd62000-08-29 11:33:50 +1100575 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
Damien Miller95def091999-11-25 00:26:21 +1100576 fatal("Cannot fork into background without a command to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000577
Damien Miller95def091999-11-25 00:26:21 +1100578 /* Allocate a tty by default if no command specified. */
579 if (buffer_len(&command) == 0)
580 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000581
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000582 /* Force no tty */
Ben Lindstromc72745a2000-12-02 19:03:54 +0000583 if (no_tty_flag)
584 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100585 /* Do not allocate a tty if stdin is not a tty. */
Damien Millerddee5752005-05-26 12:05:05 +1000586 if ((!isatty(fileno(stdin)) || stdin_null_flag) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100587 if (tty_flag)
Damien Miller996acd22003-04-09 20:59:48 +1000588 logit("Pseudo-terminal will not be allocated because stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100589 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000590 }
Damien Miller1383bd82000-04-06 12:32:37 +1000591
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000592 /*
593 * Initialize "log" output. Since we are the client all output
594 * actually goes to stderr.
595 */
Ben Lindstrom2b646522001-04-12 16:16:57 +0000596 log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
597 SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000598
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000599 /*
600 * Read per-user configuration file. Ignore the system wide config
601 * file if the user specifies a config file on the command line.
602 */
603 if (config != NULL) {
Damien Miller914420f2004-04-20 20:14:07 +1000604 if (!read_config_file(config, host, &options, 0))
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000605 fatal("Can't open user config file %.100s: "
606 "%.100s", config, strerror(errno));
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000607 } else {
608 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,
609 _PATH_SSH_USER_CONFFILE);
Damien Miller57a44762004-04-20 20:11:57 +1000610 (void)read_config_file(buf, host, &options, 1);
Ben Lindstrom83f07d12001-10-03 17:22:29 +0000611
612 /* Read systemwide configuration file after use config. */
Darren Tuckerfc959702004-07-17 16:12:08 +1000613 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host,
Damien Miller57a44762004-04-20 20:11:57 +1000614 &options, 0);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000615 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000616
Damien Miller95def091999-11-25 00:26:21 +1100617 /* Fill configuration defaults. */
618 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000619
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000620 channel_set_af(options.address_family);
621
Damien Miller95def091999-11-25 00:26:21 +1100622 /* reinit */
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000623 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000624
Damien Miller60bc5172001-03-19 09:38:15 +1100625 seed_rng();
626
Damien Miller95def091999-11-25 00:26:21 +1100627 if (options.user == NULL)
628 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000629
Damien Miller95def091999-11-25 00:26:21 +1100630 if (options.hostname != NULL)
631 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000632
Darren Tucker3f521e22003-07-03 16:20:42 +1000633 /* force lowercase for hostkey matching */
634 if (options.host_key_alias != NULL) {
635 for (p = options.host_key_alias; *p; p++)
636 if (isupper(*p))
Damien Miller1d2b6702006-03-26 14:09:54 +1100637 *p = (char)tolower(*p);
Darren Tucker3f521e22003-07-03 16:20:42 +1000638 }
639
Damien Miller7c71cc72005-06-26 08:56:31 +1000640 /* Get default port if port has not been set. */
641 if (options.port == 0) {
642 sp = getservbyname(SSH_SERVICE_NAME, "tcp");
643 options.port = sp ? ntohs(sp->s_port) : SSH_DEFAULT_PORT;
644 }
645
Damien Miller9f1e33a2003-02-24 11:57:32 +1100646 if (options.proxy_command != NULL &&
647 strcmp(options.proxy_command, "none") == 0)
648 options.proxy_command = NULL;
Damien Miller8f74c8f2005-06-26 08:56:03 +1000649 if (options.control_path != NULL &&
650 strcmp(options.control_path, "none") == 0)
651 options.control_path = NULL;
Damien Miller9f1e33a2003-02-24 11:57:32 +1100652
Damien Miller0e220db2004-06-15 10:34:08 +1000653 if (options.control_path != NULL) {
Damien Miller6b1d53c2006-03-31 23:13:21 +1100654 char thishost[NI_MAXHOST];
Damien Miller3ec54c72006-03-15 11:30:13 +1100655
Damien Miller6b1d53c2006-03-31 23:13:21 +1100656 if (gethostname(thishost, sizeof(thishost)) == -1)
Damien Miller3ec54c72006-03-15 11:30:13 +1100657 fatal("gethostname: %s", strerror(errno));
Damien Miller6476cad2005-06-16 13:18:34 +1000658 snprintf(buf, sizeof(buf), "%d", options.port);
659 cp = tilde_expand_filename(options.control_path,
660 original_real_uid);
661 options.control_path = percent_expand(cp, "p", buf, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +1100662 "r", options.user, "l", thishost, (char *)NULL);
Damien Miller6476cad2005-06-16 13:18:34 +1000663 xfree(cp);
Damien Miller0e220db2004-06-15 10:34:08 +1000664 }
Darren Tucker0814d312005-06-01 23:08:51 +1000665 if (mux_command != 0 && options.control_path == NULL)
666 fatal("No ControlPath specified for \"-O\" command");
Damien Millerd14b1e72005-06-16 13:19:41 +1000667 if (options.control_path != NULL)
Damien Millerdadfd4d2005-05-26 12:07:13 +1000668 control_client(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +1000669
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000670 /* Open a connection to the remote host. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000671 if (ssh_connect(host, &hostaddr, options.port,
672 options.address_family, options.connection_attempts,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000673#ifdef HAVE_CYGWIN
674 options.use_privileged_port,
675#else
Ben Lindstromf9c48842002-06-11 16:37:51 +0000676 original_effective_uid == 0 && options.use_privileged_port,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000677#endif
Ben Lindstromda394ca2002-06-12 16:11:12 +0000678 options.proxy_command) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100679 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000680
Damien Miller5428f641999-11-25 11:54:57 +1100681 /*
682 * If we successfully made the connection, load the host private key
683 * in case we will need it later for combined rsa-rhosts
684 * authentication. This must be done before releasing extra
685 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +0000686 * If we cannot access the private keys, load the public keys
687 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +1100688 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000689 sensitive_data.nkeys = 0;
690 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000691 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +0000692 if (options.rhosts_rsa_authentication ||
693 options.hostbased_authentication) {
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000694 sensitive_data.nkeys = 3;
Damien Millerddd63ab2006-03-31 23:10:51 +1100695 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000696 sizeof(Key));
Ben Lindstromf9c48842002-06-11 16:37:51 +0000697
698 PRIV_START;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000699 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Darren Tucker232b76f2006-05-06 17:41:51 +1000700 _PATH_HOST_KEY_FILE, "", NULL, NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000701 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
Darren Tucker232b76f2006-05-06 17:41:51 +1000702 _PATH_HOST_DSA_KEY_FILE, "", NULL, NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000703 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
Darren Tucker232b76f2006-05-06 17:41:51 +1000704 _PATH_HOST_RSA_KEY_FILE, "", NULL, NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +0000705 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000706
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +0000707 if (options.hostbased_authentication == 1 &&
708 sensitive_data.keys[0] == NULL &&
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000709 sensitive_data.keys[1] == NULL &&
710 sensitive_data.keys[2] == NULL) {
711 sensitive_data.keys[1] = key_load_public(
712 _PATH_HOST_DSA_KEY_FILE, NULL);
713 sensitive_data.keys[2] = key_load_public(
714 _PATH_HOST_RSA_KEY_FILE, NULL);
715 sensitive_data.external_keysign = 1;
716 }
Damien Miller95def091999-11-25 00:26:21 +1100717 }
Damien Miller5428f641999-11-25 11:54:57 +1100718 /*
719 * Get rid of any extra privileges that we may have. We will no
720 * longer need them. Also, extra privileges could make it very hard
721 * to read identity files and other non-world-readable files from the
722 * user's home directory if it happens to be on a NFS volume where
723 * root is mapped to nobody.
724 */
Darren Tucker25f60a72004-08-15 17:23:34 +1000725 if (original_effective_uid == 0) {
726 PRIV_START;
727 permanently_set_uid(pw);
728 }
Damien Miller95def091999-11-25 00:26:21 +1100729
Damien Miller5428f641999-11-25 11:54:57 +1100730 /*
731 * Now that we are back to our own permissions, create ~/.ssh
Damien Miller788f2122005-11-05 15:14:59 +1100732 * directory if it doesn't already exist.
Damien Miller5428f641999-11-25 11:54:57 +1100733 */
Ben Lindstrom930b14a2001-08-15 23:19:21 +0000734 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 +1100735 if (stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000736 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100737 error("Could not create directory '%.200s'.", buf);
738
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000739 /* load options.identity_files */
740 load_public_identity_files();
741
742 /* Expand ~ in known host file names. */
743 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100744 options.system_hostfile =
745 tilde_expand_filename(options.system_hostfile, original_real_uid);
746 options.user_hostfile =
747 tilde_expand_filename(options.user_hostfile, original_real_uid);
748 options.system_hostfile2 =
749 tilde_expand_filename(options.system_hostfile2, original_real_uid);
750 options.user_hostfile2 =
751 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100752
Damien Miller07cd5892001-11-12 10:52:03 +1100753 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
754
Damien Miller95def091999-11-25 00:26:21 +1100755 /* Log into the remote system. This never returns if the login fails. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000756 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr, pw);
Damien Miller95def091999-11-25 00:26:21 +1100757
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000758 /* We no longer need the private host keys. Clear them now. */
759 if (sensitive_data.nkeys != 0) {
760 for (i = 0; i < sensitive_data.nkeys; i++) {
761 if (sensitive_data.keys[i] != NULL) {
762 /* Destroys contents safely */
763 debug3("clear hostkey %d", i);
764 key_free(sensitive_data.keys[i]);
765 sensitive_data.keys[i] = NULL;
766 }
767 }
768 xfree(sensitive_data.keys);
769 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000770 for (i = 0; i < options.num_identity_files; i++) {
771 if (options.identity_files[i]) {
772 xfree(options.identity_files[i]);
773 options.identity_files[i] = NULL;
774 }
775 if (options.identity_keys[i]) {
776 key_free(options.identity_keys[i]);
777 options.identity_keys[i] = NULL;
778 }
779 }
Damien Miller95def091999-11-25 00:26:21 +1100780
Damien Miller1383bd82000-04-06 12:32:37 +1000781 exit_status = compat20 ? ssh_session2() : ssh_session();
782 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +1000783
Damien Miller0e220db2004-06-15 10:34:08 +1000784 if (options.control_path != NULL && control_fd != -1)
785 unlink(options.control_path);
786
Damien Miller8c4e18a2002-09-19 12:05:02 +1000787 /*
Damien Millera8e06ce2003-11-21 23:48:55 +1100788 * Send SIGHUP to proxy command if used. We don't wait() in
Damien Miller8c4e18a2002-09-19 12:05:02 +1000789 * case it hangs and instead rely on init to reap the child
790 */
791 if (proxy_command_pid > 1)
792 kill(proxy_command_pid, SIGHUP);
793
Damien Miller1383bd82000-04-06 12:32:37 +1000794 return exit_status;
795}
796
Ben Lindstrombba81212001-06-25 05:01:22 +0000797static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100798ssh_init_forwarding(void)
799{
Kevin Steves12057502001-02-05 14:54:34 +0000800 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100801 int i;
Kevin Steves12057502001-02-05 14:54:34 +0000802
Damien Miller0bc1bd82000-11-13 22:57:25 +1100803 /* Initiate local TCP/IP port forwardings. */
804 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100805 debug("Local connections to %.200s:%d forwarded to remote "
806 "address %.200s:%d",
Darren Tucker47eede72005-03-14 23:08:12 +1100807 (options.local_forwards[i].listen_host == NULL) ?
808 (options.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +1100809 options.local_forwards[i].listen_host,
810 options.local_forwards[i].listen_port,
811 options.local_forwards[i].connect_host,
812 options.local_forwards[i].connect_port);
Damien Millerb16461c2002-01-22 23:29:22 +1100813 success += channel_setup_local_fwd_listener(
Damien Millerf91ee4c2005-03-01 21:24:33 +1100814 options.local_forwards[i].listen_host,
815 options.local_forwards[i].listen_port,
816 options.local_forwards[i].connect_host,
817 options.local_forwards[i].connect_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100818 options.gateway_ports);
819 }
Darren Tuckere7d4b192006-07-12 22:17:10 +1000820 if (i > 0 && success != i && options.exit_on_forward_failure)
821 fatal("Could not request local forwarding.");
Kevin Steves12057502001-02-05 14:54:34 +0000822 if (i > 0 && success == 0)
823 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100824
825 /* Initiate remote TCP/IP port forwardings. */
826 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100827 debug("Remote connections from %.200s:%d forwarded to "
828 "local address %.200s:%d",
Damien Miller46d38de2005-07-17 17:02:09 +1000829 (options.remote_forwards[i].listen_host == NULL) ?
Damien Milleraa3bb102005-11-05 15:12:59 +1100830 "LOCALHOST" : options.remote_forwards[i].listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100831 options.remote_forwards[i].listen_port,
832 options.remote_forwards[i].connect_host,
833 options.remote_forwards[i].connect_port);
Darren Tuckere7d4b192006-07-12 22:17:10 +1000834 if (channel_request_remote_forwarding(
Damien Millerf91ee4c2005-03-01 21:24:33 +1100835 options.remote_forwards[i].listen_host,
836 options.remote_forwards[i].listen_port,
837 options.remote_forwards[i].connect_host,
Darren Tuckere7d4b192006-07-12 22:17:10 +1000838 options.remote_forwards[i].connect_port) < 0) {
839 if (options.exit_on_forward_failure)
840 fatal("Could not request remote forwarding.");
841 else
842 logit("Warning: Could not request remote "
843 "forwarding.");
844 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100845 }
846}
847
Ben Lindstrombba81212001-06-25 05:01:22 +0000848static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100849check_agent_present(void)
850{
851 if (options.forward_agent) {
Damien Miller788f2122005-11-05 15:14:59 +1100852 /* Clear agent forwarding if we don't have an agent. */
Damien Miller789e95d2002-09-12 09:52:46 +1000853 if (!ssh_agent_present())
Damien Miller0bc1bd82000-11-13 22:57:25 +1100854 options.forward_agent = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100855 }
856}
857
Ben Lindstrombba81212001-06-25 05:01:22 +0000858static int
Damien Miller1383bd82000-04-06 12:32:37 +1000859ssh_session(void)
860{
861 int type;
Damien Miller1383bd82000-04-06 12:32:37 +1000862 int interactive = 0;
863 int have_tty = 0;
864 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +1000865 char *cp;
Damien Miller17e7ed02005-06-17 12:54:33 +1000866 const char *display;
Damien Miller1383bd82000-04-06 12:32:37 +1000867
Damien Miller95def091999-11-25 00:26:21 +1100868 /* Enable compression if requested. */
869 if (options.compression) {
870 debug("Requesting compression at level %d.", options.compression_level);
871
872 if (options.compression_level < 1 || options.compression_level > 9)
873 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
874
875 /* Send the request. */
876 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
877 packet_put_int(options.compression_level);
878 packet_send();
879 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +1100880 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100881 if (type == SSH_SMSG_SUCCESS)
882 packet_start_compression(options.compression_level);
883 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +1000884 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +1100885 else
886 packet_disconnect("Protocol error waiting for compression response.");
887 }
888 /* Allocate a pseudo tty if appropriate. */
889 if (tty_flag) {
890 debug("Requesting pty.");
891
892 /* Start the packet. */
893 packet_start(SSH_CMSG_REQUEST_PTY);
894
895 /* Store TERM in the packet. There is no limit on the
896 length of the string. */
897 cp = getenv("TERM");
898 if (!cp)
899 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +0000900 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +1100901
902 /* Store window size in the packet. */
903 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
904 memset(&ws, 0, sizeof(ws));
Damien Miller71a73672006-03-26 14:04:36 +1100905 packet_put_int((u_int)ws.ws_row);
906 packet_put_int((u_int)ws.ws_col);
907 packet_put_int((u_int)ws.ws_xpixel);
908 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller95def091999-11-25 00:26:21 +1100909
910 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000911 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +1100912
913 /* Send the packet, and wait for it to leave. */
914 packet_send();
915 packet_write_wait();
916
917 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100918 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +1000919 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100920 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000921 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +1000922 } else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +1000923 logit("Warning: Remote host failed or refused to allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +1100924 else
925 packet_disconnect("Protocol error waiting for pty request response.");
926 }
927 /* Request X11 forwarding if enabled and DISPLAY is set. */
Damien Miller17e7ed02005-06-17 12:54:33 +1000928 display = getenv("DISPLAY");
929 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000930 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +1000931 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +1000932 client_x11_get_proto(display, options.xauth_location,
933 options.forward_x11_trusted, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +1000934 /* Request forwarding with authentication spoofing. */
Damien Miller95def091999-11-25 00:26:21 +1100935 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +1000936 x11_request_forwarding_with_spoofing(0, display, proto, data);
Damien Miller95def091999-11-25 00:26:21 +1100937
938 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100939 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100940 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100941 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000942 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +1000943 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +1000944 } else {
Damien Miller95def091999-11-25 00:26:21 +1100945 packet_disconnect("Protocol error waiting for X11 forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +1000946 }
Damien Miller95def091999-11-25 00:26:21 +1100947 }
948 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000949 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +1100950
951 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100952 check_agent_present();
953
Damien Miller95def091999-11-25 00:26:21 +1100954 if (options.forward_agent) {
955 debug("Requesting authentication agent forwarding.");
956 auth_request_forwarding();
957
958 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100959 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +1100960 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +1100961 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +1000962 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +1100963 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000964
Damien Miller0bc1bd82000-11-13 22:57:25 +1100965 /* Initiate port forwardings. */
966 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000967
Damien Miller5428f641999-11-25 11:54:57 +1100968 /* If requested, let ssh continue in the background. */
Damien Miller4af51302000-04-16 11:18:38 +1000969 if (fork_after_authentication_flag)
Damien Miller5428f641999-11-25 11:54:57 +1100970 if (daemon(1, 1) < 0)
971 fatal("daemon() failed: %.200s", strerror(errno));
972
973 /*
974 * If a command was specified on the command line, execute the
975 * command now. Otherwise request the server to start a shell.
976 */
Damien Miller95def091999-11-25 00:26:21 +1100977 if (buffer_len(&command) > 0) {
978 int len = buffer_len(&command);
979 if (len > 900)
980 len = 900;
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100981 debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +1100982 packet_start(SSH_CMSG_EXEC_CMD);
983 packet_put_string(buffer_ptr(&command), buffer_len(&command));
984 packet_send();
985 packet_write_wait();
986 } else {
987 debug("Requesting shell.");
988 packet_start(SSH_CMSG_EXEC_SHELL);
989 packet_send();
990 packet_write_wait();
991 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000992
Damien Miller95def091999-11-25 00:26:21 +1100993 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000994 return client_loop(have_tty, tty_flag ?
995 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +1000996}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000997
Ben Lindstrombba81212001-06-25 05:01:22 +0000998static void
Damien Miller0e220db2004-06-15 10:34:08 +1000999ssh_subsystem_reply(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001000{
1001 int id, len;
1002
1003 id = packet_get_int();
1004 len = buffer_len(&command);
Ben Lindstrom4040fe12001-03-05 06:52:57 +00001005 if (len > 900)
1006 len = 900;
Damien Miller48b03fc2002-01-22 23:11:40 +11001007 packet_check_eom();
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001008 if (type == SSH2_MSG_CHANNEL_FAILURE)
1009 fatal("Request for subsystem '%.*s' failed on channel %d",
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001010 len, (u_char *)buffer_ptr(&command), id);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001011}
1012
Damien Miller2797f7f2002-04-23 21:09:44 +10001013void
Damien Miller509b0102003-12-17 16:33:10 +11001014client_global_request_reply_fwd(int type, u_int32_t seq, void *ctxt)
Damien Miller2797f7f2002-04-23 21:09:44 +10001015{
1016 int i;
1017
1018 i = client_global_request_id++;
Damien Miller509b0102003-12-17 16:33:10 +11001019 if (i >= options.num_remote_forwards)
Damien Miller2797f7f2002-04-23 21:09:44 +10001020 return;
Damien Miller2797f7f2002-04-23 21:09:44 +10001021 debug("remote forward %s for: listen %d, connect %s:%d",
1022 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
Damien Millerf91ee4c2005-03-01 21:24:33 +11001023 options.remote_forwards[i].listen_port,
1024 options.remote_forwards[i].connect_host,
1025 options.remote_forwards[i].connect_port);
Darren Tuckere7d4b192006-07-12 22:17:10 +10001026 if (type == SSH2_MSG_REQUEST_FAILURE) {
1027 if (options.exit_on_forward_failure)
1028 fatal("Error: remote port forwarding failed for "
1029 "listen port %d",
1030 options.remote_forwards[i].listen_port);
1031 else
1032 logit("Warning: remote port forwarding failed for "
1033 "listen port %d",
1034 options.remote_forwards[i].listen_port);
1035 }
Damien Miller2797f7f2002-04-23 21:09:44 +10001036}
1037
Damien Miller0e220db2004-06-15 10:34:08 +10001038static void
1039ssh_control_listener(void)
1040{
1041 struct sockaddr_un addr;
1042 mode_t old_umask;
Damien Miller07b6ff12004-06-15 11:14:45 +10001043 int addr_len;
1044
Damien Millerd14b1e72005-06-16 13:19:41 +10001045 if (options.control_path == NULL ||
1046 options.control_master == SSHCTL_MASTER_NO)
Damien Miller0e220db2004-06-15 10:34:08 +10001047 return;
1048
Damien Millerd14b1e72005-06-16 13:19:41 +10001049 debug("setting up multiplex master socket");
1050
Damien Miller0e220db2004-06-15 10:34:08 +10001051 memset(&addr, '\0', sizeof(addr));
1052 addr.sun_family = AF_UNIX;
Damien Miller07b6ff12004-06-15 11:14:45 +10001053 addr_len = offsetof(struct sockaddr_un, sun_path) +
Damien Miller0e220db2004-06-15 10:34:08 +10001054 strlen(options.control_path) + 1;
1055
1056 if (strlcpy(addr.sun_path, options.control_path,
1057 sizeof(addr.sun_path)) >= sizeof(addr.sun_path))
1058 fatal("ControlPath too long");
1059
1060 if ((control_fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001061 fatal("%s socket(): %s", __func__, strerror(errno));
Damien Miller0e220db2004-06-15 10:34:08 +10001062
1063 old_umask = umask(0177);
Damien Miller90967402006-03-26 14:07:26 +11001064 if (bind(control_fd, (struct sockaddr *)&addr, addr_len) == -1) {
Damien Miller0e220db2004-06-15 10:34:08 +10001065 control_fd = -1;
Damien Miller4f10e252005-05-04 15:33:09 +10001066 if (errno == EINVAL || errno == EADDRINUSE)
Damien Miller0e220db2004-06-15 10:34:08 +10001067 fatal("ControlSocket %s already exists",
1068 options.control_path);
1069 else
Damien Miller15d72a02005-11-05 15:07:33 +11001070 fatal("%s bind(): %s", __func__, strerror(errno));
Damien Miller0e220db2004-06-15 10:34:08 +10001071 }
1072 umask(old_umask);
1073
1074 if (listen(control_fd, 64) == -1)
Damien Miller15d72a02005-11-05 15:07:33 +11001075 fatal("%s listen(): %s", __func__, strerror(errno));
Damien Miller0e220db2004-06-15 10:34:08 +10001076
1077 set_nonblock(control_fd);
1078}
1079
Ben Lindstromf558cf62001-09-20 23:13:49 +00001080/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001081static void
Ben Lindstromf558cf62001-09-20 23:13:49 +00001082ssh_session2_setup(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001083{
Damien Miller3756dce2004-06-18 01:17:29 +10001084 extern char **environ;
Damien Miller17e7ed02005-06-17 12:54:33 +10001085 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +10001086 int interactive = tty_flag;
Damien Miller17e7ed02005-06-17 12:54:33 +10001087
Damien Miller46d38de2005-07-17 17:02:09 +10001088 display = getenv("DISPLAY");
Damien Miller17e7ed02005-06-17 12:54:33 +10001089 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001090 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001091 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001092 client_x11_get_proto(display, options.xauth_location,
1093 options.forward_x11_trusted, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001094 /* Request forwarding with authentication spoofing. */
1095 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +10001096 x11_request_forwarding_with_spoofing(id, display, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001097 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001098 /* XXX wait for reply */
1099 }
1100
Damien Miller0bc1bd82000-11-13 22:57:25 +11001101 check_agent_present();
1102 if (options.forward_agent) {
1103 debug("Requesting authentication agent forwarding.");
1104 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1105 packet_send();
1106 }
1107
Damien Miller7b58e802005-12-13 19:33:19 +11001108 if (options.tun_open != SSH_TUNMODE_NO) {
Damien Millerd27b9472005-12-13 19:29:02 +11001109 Channel *c;
1110 int fd;
1111
1112 debug("Requesting tun.");
Damien Miller7b58e802005-12-13 19:33:19 +11001113 if ((fd = tun_open(options.tun_local,
1114 options.tun_open)) >= 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11001115 c = channel_new("tun", SSH_CHANNEL_OPENING, fd, fd, -1,
1116 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
1117 0, "tun", 1);
1118 c->datagram = 1;
Damien Miller598bbc22005-12-31 16:33:36 +11001119#if defined(SSH_TUN_FILTER)
1120 if (options.tun_open == SSH_TUNMODE_POINTOPOINT)
1121 channel_register_filter(c->self, sys_tun_infilter,
1122 sys_tun_outfilter);
1123#endif
Damien Millerd27b9472005-12-13 19:29:02 +11001124 packet_start(SSH2_MSG_CHANNEL_OPEN);
1125 packet_put_cstring("tun@openssh.com");
1126 packet_put_int(c->self);
1127 packet_put_int(c->local_window_max);
1128 packet_put_int(c->local_maxpacket);
Damien Miller7b58e802005-12-13 19:33:19 +11001129 packet_put_int(options.tun_open);
Damien Millerd27b9472005-12-13 19:29:02 +11001130 packet_put_int(options.tun_remote);
1131 packet_send();
1132 }
1133 }
1134
Damien Miller0e220db2004-06-15 10:34:08 +10001135 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
Damien Miller3756dce2004-06-18 01:17:29 +10001136 NULL, fileno(stdin), &command, environ, &ssh_subsystem_reply);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001137
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001138 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001139}
1140
Ben Lindstromf558cf62001-09-20 23:13:49 +00001141/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001142static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001143ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001144{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001145 Channel *c;
1146 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001147
Damien Millercaf6dd62000-08-29 11:33:50 +11001148 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001149 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001150 } else {
1151 in = dup(STDIN_FILENO);
1152 }
1153 out = dup(STDOUT_FILENO);
1154 err = dup(STDERR_FILENO);
1155
1156 if (in < 0 || out < 0 || err < 0)
1157 fatal("dup() in/out/err failed");
1158
Damien Miller69b69aa2000-10-28 14:19:58 +11001159 /* enable nonblocking unless tty */
1160 if (!isatty(in))
1161 set_nonblock(in);
1162 if (!isatty(out))
1163 set_nonblock(out);
1164 if (!isatty(err))
1165 set_nonblock(err);
1166
Damien Millere4340be2000-09-16 13:29:08 +11001167 window = CHAN_SES_WINDOW_DEFAULT;
1168 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001169 if (tty_flag) {
1170 window >>= 1;
1171 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001172 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001173 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001174 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001175 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001176 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001177
Ben Lindstromf558cf62001-09-20 23:13:49 +00001178 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001179
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001180 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001181 if (!no_shell_flag)
Damien Miller0e220db2004-06-15 10:34:08 +10001182 channel_register_confirm(c->self, ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001183
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001184 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001185}
1186
Ben Lindstrombba81212001-06-25 05:01:22 +00001187static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001188ssh_session2(void)
1189{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001190 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001191
1192 /* XXX should be pre-session */
1193 ssh_init_forwarding();
Damien Miller0e220db2004-06-15 10:34:08 +10001194 ssh_control_listener();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001195
Ben Lindstromf558cf62001-09-20 23:13:49 +00001196 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1197 id = ssh_session2_open();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001198
Damien Millerd27b9472005-12-13 19:29:02 +11001199 /* Execute a local command */
1200 if (options.local_command != NULL &&
1201 options.permit_local_command)
1202 ssh_local_cmd(options.local_command);
1203
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001204 /* If requested, let ssh continue in the background. */
1205 if (fork_after_authentication_flag)
1206 if (daemon(1, 1) < 0)
1207 fatal("daemon() failed: %.200s", strerror(errno));
1208
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001209 return client_loop(tty_flag, tty_flag ?
1210 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001211}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001212
Ben Lindstrombba81212001-06-25 05:01:22 +00001213static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001214load_public_identity_files(void)
1215{
Damien Miller6b1d53c2006-03-31 23:13:21 +11001216 char *filename, *cp, thishost[NI_MAXHOST];
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001217 int i = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001218 Key *public;
Damien Miller6b1d53c2006-03-31 23:13:21 +11001219 struct passwd *pw;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001220#ifdef SMARTCARD
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001221 Key **keys;
1222
Ben Lindstromf7db3bb2001-08-06 21:35:51 +00001223 if (options.smartcard_device != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001224 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
1225 (keys = sc_get_keys(options.smartcard_device, NULL)) != NULL ) {
1226 int count = 0;
1227 for (i = 0; keys[i] != NULL; i++) {
1228 count++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001229 memmove(&options.identity_files[1], &options.identity_files[0],
1230 sizeof(char *) * (SSH_MAX_IDENTITY_FILES - 1));
1231 memmove(&options.identity_keys[1], &options.identity_keys[0],
1232 sizeof(Key *) * (SSH_MAX_IDENTITY_FILES - 1));
1233 options.num_identity_files++;
1234 options.identity_keys[0] = keys[i];
Damien Miller56a0bb02003-06-18 20:28:40 +10001235 options.identity_files[0] = sc_get_key_label(keys[i]);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001236 }
Ben Lindstrom4f054602002-03-26 03:23:00 +00001237 if (options.num_identity_files > SSH_MAX_IDENTITY_FILES)
1238 options.num_identity_files = SSH_MAX_IDENTITY_FILES;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001239 i = count;
1240 xfree(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001241 }
Ben Lindstromffce1472001-08-06 21:57:31 +00001242#endif /* SMARTCARD */
Damien Miller6b1d53c2006-03-31 23:13:21 +11001243 if ((pw = getpwuid(original_real_uid)) == NULL)
1244 fatal("load_public_identity_files: getpwuid failed");
1245 if (gethostname(thishost, sizeof(thishost)) == -1)
1246 fatal("load_public_identity_files: gethostname: %s",
1247 strerror(errno));
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001248 for (; i < options.num_identity_files; i++) {
Damien Miller6b1d53c2006-03-31 23:13:21 +11001249 cp = tilde_expand_filename(options.identity_files[i],
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001250 original_real_uid);
Damien Miller6b1d53c2006-03-31 23:13:21 +11001251 filename = percent_expand(cp, "d", pw->pw_dir,
1252 "u", pw->pw_name, "l", thishost, "h", host,
1253 "r", options.user, (char *)NULL);
1254 xfree(cp);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001255 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001256 debug("identity file %s type %d", filename,
1257 public ? public->type : -1);
1258 xfree(options.identity_files[i]);
1259 options.identity_files[i] = filename;
1260 options.identity_keys[i] = public;
1261 }
1262}
Damien Miller0e220db2004-06-15 10:34:08 +10001263
1264static void
1265control_client_sighandler(int signo)
1266{
1267 control_client_terminate = signo;
1268}
1269
1270static void
1271control_client_sigrelay(int signo)
1272{
1273 if (control_server_pid > 1)
1274 kill(control_server_pid, signo);
1275}
1276
Darren Tucker365433f2004-06-22 12:29:23 +10001277static int
1278env_permitted(char *env)
1279{
Darren Tucker284706a2006-07-12 22:16:23 +10001280 int i, ret;
Darren Tucker365433f2004-06-22 12:29:23 +10001281 char name[1024], *cp;
1282
Darren Tucker284706a2006-07-12 22:16:23 +10001283 if ((cp = strchr(env, '=')) == NULL || cp == env)
Darren Tucker365433f2004-06-22 12:29:23 +10001284 return (0);
Darren Tucker284706a2006-07-12 22:16:23 +10001285 ret = snprintf(name, sizeof(name), "%.*s", (cp - env), env);
1286 if (ret <= 0 || (size_t)ret >= sizeof(name))
1287 fatal("env_permitted: name '%.100s...' too long", env);
Darren Tucker365433f2004-06-22 12:29:23 +10001288
1289 for (i = 0; i < options.num_send_env; i++)
1290 if (match_pattern(name, options.send_env[i]))
1291 return (1);
1292
1293 return (0);
1294}
1295
Damien Miller0e220db2004-06-15 10:34:08 +10001296static void
1297control_client(const char *path)
1298{
1299 struct sockaddr_un addr;
Darren Tucker39207a42004-11-05 20:19:51 +11001300 int i, r, fd, sock, exitval, num_env, addr_len;
Damien Miller0e220db2004-06-15 10:34:08 +10001301 Buffer m;
Darren Tucker7ebfc102004-11-07 20:06:19 +11001302 char *term;
Damien Miller3756dce2004-06-18 01:17:29 +10001303 extern char **environ;
Darren Tucker7ebfc102004-11-07 20:06:19 +11001304 u_int flags;
Darren Tuckerfc959702004-07-17 16:12:08 +10001305
Damien Millerd14b1e72005-06-16 13:19:41 +10001306 if (mux_command == 0)
1307 mux_command = SSHMUX_COMMAND_OPEN;
1308
1309 switch (options.control_master) {
1310 case SSHCTL_MASTER_AUTO:
1311 case SSHCTL_MASTER_AUTO_ASK:
1312 debug("auto-mux: Trying existing master");
1313 /* FALLTHROUGH */
1314 case SSHCTL_MASTER_NO:
1315 break;
1316 default:
1317 return;
1318 }
1319
Damien Miller0e220db2004-06-15 10:34:08 +10001320 memset(&addr, '\0', sizeof(addr));
1321 addr.sun_family = AF_UNIX;
Damien Miller07b6ff12004-06-15 11:14:45 +10001322 addr_len = offsetof(struct sockaddr_un, sun_path) +
Damien Miller0e220db2004-06-15 10:34:08 +10001323 strlen(path) + 1;
1324
1325 if (strlcpy(addr.sun_path, path,
1326 sizeof(addr.sun_path)) >= sizeof(addr.sun_path))
1327 fatal("ControlPath too long");
1328
1329 if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
1330 fatal("%s socket(): %s", __func__, strerror(errno));
1331
Damien Miller90967402006-03-26 14:07:26 +11001332 if (connect(sock, (struct sockaddr *)&addr, addr_len) == -1) {
Darren Tucker0814d312005-06-01 23:08:51 +10001333 if (mux_command != SSHMUX_COMMAND_OPEN) {
1334 fatal("Control socket connect(%.100s): %s", path,
1335 strerror(errno));
1336 }
Damien Miller538c9b72005-05-26 12:11:28 +10001337 if (errno == ENOENT)
Damien Miller4662d342006-03-26 13:59:59 +11001338 debug("Control socket \"%.100s\" does not exist", path);
Damien Miller538c9b72005-05-26 12:11:28 +10001339 else {
Damien Miller4662d342006-03-26 13:59:59 +11001340 error("Control socket connect(%.100s): %s", path,
Damien Miller538c9b72005-05-26 12:11:28 +10001341 strerror(errno));
1342 }
Damien Miller4662d342006-03-26 13:59:59 +11001343 close(sock);
1344 return;
1345 }
Damien Miller46d38de2005-07-17 17:02:09 +10001346
Damien Miller4662d342006-03-26 13:59:59 +11001347 if (stdin_null_flag) {
1348 if ((fd = open(_PATH_DEVNULL, O_RDONLY)) == -1)
1349 fatal("open(/dev/null): %s", strerror(errno));
1350 if (dup2(fd, STDIN_FILENO) == -1)
1351 fatal("dup2: %s", strerror(errno));
1352 if (fd > STDERR_FILENO)
1353 close(fd);
1354 }
Damien Miller46d38de2005-07-17 17:02:09 +10001355
Damien Miller13390022005-07-06 09:44:19 +10001356 term = getenv("TERM");
Darren Tucker7ebfc102004-11-07 20:06:19 +11001357
1358 flags = 0;
1359 if (tty_flag)
1360 flags |= SSHMUX_FLAG_TTY;
1361 if (subsystem_flag)
1362 flags |= SSHMUX_FLAG_SUBSYS;
Damien Miller13390022005-07-06 09:44:19 +10001363 if (options.forward_x11)
1364 flags |= SSHMUX_FLAG_X11_FWD;
1365 if (options.forward_agent)
1366 flags |= SSHMUX_FLAG_AGENT_FWD;
Damien Miller0e220db2004-06-15 10:34:08 +10001367
Damien Miller0e220db2004-06-15 10:34:08 +10001368 buffer_init(&m);
1369
Darren Tucker7ebfc102004-11-07 20:06:19 +11001370 /* Send our command to server */
1371 buffer_put_int(&m, mux_command);
1372 buffer_put_int(&m, flags);
Damien Miller13390022005-07-06 09:44:19 +10001373 if (ssh_msg_send(sock, SSHMUX_VER, &m) == -1)
Darren Tucker7ebfc102004-11-07 20:06:19 +11001374 fatal("%s: msg_send", __func__);
1375 buffer_clear(&m);
1376
1377 /* Get authorisation status and PID of controlee */
Damien Miller0e220db2004-06-15 10:34:08 +10001378 if (ssh_msg_recv(sock, &m) == -1)
1379 fatal("%s: msg_recv", __func__);
Damien Miller13390022005-07-06 09:44:19 +10001380 if (buffer_get_char(&m) != SSHMUX_VER)
Damien Miller0e220db2004-06-15 10:34:08 +10001381 fatal("%s: wrong version", __func__);
Damien Miller23f07702004-06-18 01:19:03 +10001382 if (buffer_get_int(&m) != 1)
1383 fatal("Connection to master denied");
Damien Miller0e220db2004-06-15 10:34:08 +10001384 control_server_pid = buffer_get_int(&m);
1385
Damien Miller0e220db2004-06-15 10:34:08 +10001386 buffer_clear(&m);
Damien Miller0e220db2004-06-15 10:34:08 +10001387
Darren Tucker7ebfc102004-11-07 20:06:19 +11001388 switch (mux_command) {
1389 case SSHMUX_COMMAND_ALIVE_CHECK:
Darren Tucker47eede72005-03-14 23:08:12 +11001390 fprintf(stderr, "Master running (pid=%d)\r\n",
Darren Tucker7ebfc102004-11-07 20:06:19 +11001391 control_server_pid);
1392 exit(0);
1393 case SSHMUX_COMMAND_TERMINATE:
1394 fprintf(stderr, "Exit request sent.\r\n");
1395 exit(0);
1396 case SSHMUX_COMMAND_OPEN:
1397 /* continue below */
1398 break;
1399 default:
1400 fatal("silly mux_command %d", mux_command);
1401 }
1402
1403 /* SSHMUX_COMMAND_OPEN */
Damien Miller13390022005-07-06 09:44:19 +10001404 buffer_put_cstring(&m, term ? term : "");
Damien Miller0e220db2004-06-15 10:34:08 +10001405 buffer_append(&command, "\0", 1);
1406 buffer_put_cstring(&m, buffer_ptr(&command));
1407
Darren Tucker365433f2004-06-22 12:29:23 +10001408 if (options.num_send_env == 0 || environ == NULL) {
1409 buffer_put_int(&m, 0);
Darren Tuckerfc959702004-07-17 16:12:08 +10001410 } else {
Darren Tucker365433f2004-06-22 12:29:23 +10001411 /* Pass environment */
1412 num_env = 0;
1413 for (i = 0; environ[i] != NULL; i++)
1414 if (env_permitted(environ[i]))
1415 num_env++; /* Count */
Darren Tuckerfc959702004-07-17 16:12:08 +10001416
Darren Tucker365433f2004-06-22 12:29:23 +10001417 buffer_put_int(&m, num_env);
1418
Darren Tuckerb5bc1a62004-06-24 00:34:53 +10001419 for (i = 0; environ[i] != NULL && num_env >= 0; i++)
1420 if (env_permitted(environ[i])) {
1421 num_env--;
Darren Tucker365433f2004-06-22 12:29:23 +10001422 buffer_put_cstring(&m, environ[i]);
Darren Tuckerb5bc1a62004-06-24 00:34:53 +10001423 }
Darren Tucker365433f2004-06-22 12:29:23 +10001424 }
Damien Miller3756dce2004-06-18 01:17:29 +10001425
Damien Miller13390022005-07-06 09:44:19 +10001426 if (ssh_msg_send(sock, SSHMUX_VER, &m) == -1)
Damien Miller0e220db2004-06-15 10:34:08 +10001427 fatal("%s: msg_send", __func__);
1428
1429 mm_send_fd(sock, STDIN_FILENO);
1430 mm_send_fd(sock, STDOUT_FILENO);
1431 mm_send_fd(sock, STDERR_FILENO);
1432
1433 /* Wait for reply, so master has a chance to gather ttymodes */
1434 buffer_clear(&m);
1435 if (ssh_msg_recv(sock, &m) == -1)
1436 fatal("%s: msg_recv", __func__);
Damien Miller13390022005-07-06 09:44:19 +10001437 if (buffer_get_char(&m) != SSHMUX_VER)
Darren Tucker7ebfc102004-11-07 20:06:19 +11001438 fatal("%s: wrong version", __func__);
Damien Miller0e220db2004-06-15 10:34:08 +10001439 buffer_free(&m);
1440
Darren Tucker07336da2004-11-05 20:02:16 +11001441 signal(SIGHUP, control_client_sighandler);
Damien Miller0809e232004-06-18 22:20:57 +10001442 signal(SIGINT, control_client_sighandler);
1443 signal(SIGTERM, control_client_sighandler);
1444 signal(SIGWINCH, control_client_sigrelay);
1445
Damien Miller0e220db2004-06-15 10:34:08 +10001446 if (tty_flag)
1447 enter_raw_mode();
1448
1449 /* Stick around until the controlee closes the client_fd */
1450 exitval = 0;
1451 for (;!control_client_terminate;) {
1452 r = read(sock, &exitval, sizeof(exitval));
1453 if (r == 0) {
1454 debug2("Received EOF from master");
1455 break;
1456 }
1457 if (r > 0)
1458 debug2("Received exit status from master %d", exitval);
1459 if (r == -1 && errno != EINTR)
1460 fatal("%s: read %s", __func__, strerror(errno));
1461 }
1462
1463 if (control_client_terminate)
1464 debug2("Exiting on signal %d", control_client_terminate);
1465
1466 close(sock);
1467
1468 leave_raw_mode();
1469
1470 if (tty_flag && options.log_level != SYSLOG_LEVEL_QUIET)
1471 fprintf(stderr, "Connection to master closed.\r\n");
1472
1473 exit(exitval);
1474}