blob: 07a4ca3c86d5b526ad408be823f5644b4c4fa9fd [file] [log] [blame]
Damien Millerd7834352006-08-05 12:39:39 +10001/* $OpenBSD: ssh.c,v 1.293 2006/08/03 03:34:42 deraadt 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>
Darren Tuckerba724052006-07-12 22:24:22 +100055#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100056#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100057#include <netdb.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110058#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110059#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110060#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100061#include <pwd.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110062#include <signal.h>
Damien Miller2d00e632006-07-24 13:53:19 +100063#include <stddef.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100064#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100065#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100066#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100067#include <unistd.h>
Damien Millereba71ba2000-04-29 23:57:08 +100068
69#include <openssl/evp.h>
Damien Miller0bc1bd82000-11-13 22:57:25 +110070#include <openssl/err.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100071
Damien Millerd7834352006-08-05 12:39:39 +100072#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100073#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000074#include "ssh1.h"
Damien Miller1383bd82000-04-06 12:32:37 +100075#include "ssh2.h"
76#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000077#include "cipher.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000078#include "packet.h"
79#include "buffer.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000080#include "channels.h"
Damien Millereba71ba2000-04-29 23:57:08 +100081#include "key.h"
Damien Miller994cf142000-07-21 10:19:44 +100082#include "authfd.h"
Damien Millereba71ba2000-04-29 23:57:08 +100083#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000084#include "pathnames.h"
Damien Miller0e220db2004-06-15 10:34:08 +100085#include "dispatch.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000086#include "clientloop.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000087#include "log.h"
88#include "readconf.h"
89#include "sshconnect.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000090#include "misc.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000091#include "kex.h"
92#include "mac.h"
Darren Tucker06f2bd82004-05-13 16:06:46 +100093#include "sshpty.h"
Darren Tucker46bc0752004-05-02 22:11:30 +100094#include "match.h"
Damien Miller0e220db2004-06-15 10:34:08 +100095#include "msg.h"
96#include "monitor_fdpass.h"
Darren Tucker25f60a72004-08-15 17:23:34 +100097#include "uidswap.h"
Damien Millerb7576772006-07-10 20:23:39 +100098#include "version.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100099
Ben Lindstromc5b68002001-07-04 04:52:03 +0000100#ifdef SMARTCARD
Ben Lindstromc5b68002001-07-04 04:52:03 +0000101#include "scard.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +0000102#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000103
Damien Miller3f905871999-11-15 17:10:57 +1100104extern char *__progname;
Damien Miller3f905871999-11-15 17:10:57 +1100105
Damien Miller95def091999-11-25 00:26:21 +1100106/* Flag indicating whether debug mode is on. This can be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000107int debug_flag = 0;
108
Damien Miller78928792000-04-12 20:17:38 +1000109/* Flag indicating whether a tty should be allocated */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000110int tty_flag = 0;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000111int no_tty_flag = 0;
112int force_tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000113
Damien Miller1383bd82000-04-06 12:32:37 +1000114/* don't exec a shell */
115int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000116
Damien Miller5428f641999-11-25 11:54:57 +1100117/*
118 * Flag indicating that nothing should be read from stdin. This can be set
119 * on the command line.
120 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000121int stdin_null_flag = 0;
122
Damien Miller5428f641999-11-25 11:54:57 +1100123/*
124 * Flag indicating that ssh should fork after authentication. This is useful
Ben Lindstromf666fec2002-06-06 19:51:58 +0000125 * so that the passphrase can be entered manually, and then ssh goes to the
Damien Miller5428f641999-11-25 11:54:57 +1100126 * background.
127 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000128int fork_after_authentication_flag = 0;
129
Damien Miller5428f641999-11-25 11:54:57 +1100130/*
131 * General data structure for command line options and options configurable
132 * in configuration files. See readconf.h.
133 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000134Options options;
135
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000136/* optional user configfile */
137char *config = NULL;
138
Damien Miller5428f641999-11-25 11:54:57 +1100139/*
140 * Name of the host we are connecting to. This is the name given on the
141 * command line, or the HostName specified for the user-supplied name in a
142 * configuration file.
143 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000144char *host;
145
146/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100147struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000148
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000149/* Private host keys. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000150Sensitive sensitive_data;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000151
152/* Original real UID. */
153uid_t original_real_uid;
Ben Lindstromf9c48842002-06-11 16:37:51 +0000154uid_t original_effective_uid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000155
Damien Miller1383bd82000-04-06 12:32:37 +1000156/* command to be executed */
157Buffer command;
158
Damien Miller832562e2001-01-30 09:30:01 +1100159/* Should we execute a command or invoke a subsystem? */
160int subsystem_flag = 0;
161
Damien Miller2797f7f2002-04-23 21:09:44 +1000162/* # of replies received for global requests */
163static int client_global_request_id = 0;
164
Damien Miller8c4e18a2002-09-19 12:05:02 +1000165/* pid of proxycommand child process */
166pid_t proxy_command_pid = 0;
167
Damien Miller0e220db2004-06-15 10:34:08 +1000168/* fd to control socket */
169int control_fd = -1;
170
Darren Tucker7ebfc102004-11-07 20:06:19 +1100171/* Multiplexing control command */
Darren Tucker0814d312005-06-01 23:08:51 +1000172static u_int mux_command = 0;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100173
Damien Miller0e220db2004-06-15 10:34:08 +1000174/* Only used in control client mode */
175volatile sig_atomic_t control_client_terminate = 0;
176u_int control_server_pid = 0;
177
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000178/* Prints a help message to the user. This function never returns. */
179
Ben Lindstrombba81212001-06-25 05:01:22 +0000180static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000181usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000182{
Damien Miller50955102004-03-22 09:34:58 +1100183 fprintf(stderr,
Darren Tucker9c6bf322004-12-03 14:10:19 +1100184"usage: ssh [-1246AaCfgkMNnqsTtVvXxY] [-b bind_address] [-c cipher_spec]\n"
Darren Tucker895d6982005-10-03 18:18:05 +1000185" [-D [bind_address:]port] [-e escape_char] [-F configfile]\n"
Damien Miller02faece2005-03-02 12:04:32 +1100186" [-i identity_file] [-L [bind_address:]port:host:hostport]\n"
Damien Millerf91ee4c2005-03-01 21:24:33 +1100187" [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
Damien Miller02faece2005-03-02 12:04:32 +1100188" [-R [bind_address:]port:host:hostport] [-S ctl_path]\n"
Damien Miller991dba42006-07-10 20:16:27 +1000189" [-w local_tun[:remote_tun]] [user@]hostname [command]\n"
Damien Miller50955102004-03-22 09:34:58 +1100190 );
Darren Tuckere9a9b712005-12-20 16:15:51 +1100191 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000192}
193
Ben Lindstrombba81212001-06-25 05:01:22 +0000194static int ssh_session(void);
195static int ssh_session2(void);
196static void load_public_identity_files(void);
Damien Miller0e220db2004-06-15 10:34:08 +1000197static void control_client(const char *path);
Damien Miller1383bd82000-04-06 12:32:37 +1000198
Damien Miller95def091999-11-25 00:26:21 +1100199/*
200 * Main program for the ssh client.
201 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000202int
203main(int ac, char **av)
204{
Ben Lindstrom24157572002-06-12 16:09:39 +0000205 int i, opt, exit_status;
Damien Miller9836cf82003-12-17 16:30:06 +1100206 char *p, *cp, *line, buf[256];
Damien Miller95def091999-11-25 00:26:21 +1100207 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000208 struct passwd *pw;
Damien Miller1383bd82000-04-06 12:32:37 +1000209 int dummy;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000210 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000211 extern char *optarg;
Damien Miller9651fe62005-06-26 08:55:25 +1000212 struct servent *sp;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100213 Forward fwd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000214
Darren Tuckerce321d82005-10-03 18:11:24 +1000215 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
216 sanitise_stdfd();
217
Damien Miller59d3d5b2003-08-22 09:34:41 +1000218 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000219 init_rng();
220
Damien Miller5428f641999-11-25 11:54:57 +1100221 /*
222 * Save the original real uid. It will be needed later (uid-swapping
223 * may clobber the real uid).
224 */
Damien Miller95def091999-11-25 00:26:21 +1100225 original_real_uid = getuid();
226 original_effective_uid = geteuid();
Damien Millera8e06ce2003-11-21 23:48:55 +1100227
Damien Miller50b9a602002-09-04 16:50:06 +1000228 /*
229 * Use uid-swapping to give up root privileges for the duration of
230 * option processing. We will re-instantiate the rights when we are
231 * ready to create the privileged port, and will permanently drop
232 * them when the port has been created (actually, when the connection
233 * has been made, as we may need to create the port several times).
234 */
235 PRIV_END;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000236
Damien Miller05dd7952000-10-01 00:42:48 +1100237#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100238 /* If we are installed setuid root be careful to not drop core. */
239 if (original_real_uid != original_effective_uid) {
240 struct rlimit rlim;
241 rlim.rlim_cur = rlim.rlim_max = 0;
242 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
243 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000244 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100245#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000246 /* Get user data. */
247 pw = getpwuid(original_real_uid);
248 if (!pw) {
Damien Miller996acd22003-04-09 20:59:48 +1000249 logit("You don't exist, go away!");
Darren Tuckere9a9b712005-12-20 16:15:51 +1100250 exit(255);
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000251 }
252 /* Take a copy of the returned structure. */
253 pw = pwcopy(pw);
254
Damien Miller5428f641999-11-25 11:54:57 +1100255 /*
Damien Miller5428f641999-11-25 11:54:57 +1100256 * Set our umask to something reasonable, as some files are created
257 * with the default umask. This will make them world-readable but
258 * writable only by the owner, which is ok for all files for which we
259 * don't set the modes explicitly.
260 */
Damien Miller95def091999-11-25 00:26:21 +1100261 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000262
Damien Miller95def091999-11-25 00:26:21 +1100263 /* Initialize option structure to indicate that no values have been set. */
264 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000265
Damien Miller95def091999-11-25 00:26:21 +1100266 /* Parse command-line arguments. */
267 host = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000268
Damien Miller2ecb6bd2006-03-15 12:03:53 +1100269 again:
Damien Millerf4614452001-07-14 12:18:10 +1000270 while ((opt = getopt(ac, av,
Damien Millerd27b9472005-12-13 19:29:02 +1100271 "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 +1100272 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000273 case '1':
274 options.protocol = SSH_PROTO_1;
275 break;
Damien Miller4af51302000-04-16 11:18:38 +1000276 case '2':
277 options.protocol = SSH_PROTO_2;
278 break;
Damien Miller34132e52000-01-14 15:45:46 +1100279 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000280 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100281 break;
Damien Miller34132e52000-01-14 15:45:46 +1100282 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000283 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100284 break;
Damien Miller95def091999-11-25 00:26:21 +1100285 case 'n':
286 stdin_null_flag = 1;
287 break;
Damien Miller95def091999-11-25 00:26:21 +1100288 case 'f':
289 fork_after_authentication_flag = 1;
290 stdin_null_flag = 1;
291 break;
Damien Miller95def091999-11-25 00:26:21 +1100292 case 'x':
293 options.forward_x11 = 0;
294 break;
Damien Miller95def091999-11-25 00:26:21 +1100295 case 'X':
296 options.forward_x11 = 1;
297 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000298 case 'Y':
299 options.forward_x11 = 1;
300 options.forward_x11_trusted = 1;
301 break;
Damien Miller95def091999-11-25 00:26:21 +1100302 case 'g':
303 options.gateway_ports = 1;
304 break;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100305 case 'O':
306 if (strcmp(optarg, "check") == 0)
307 mux_command = SSHMUX_COMMAND_ALIVE_CHECK;
308 else if (strcmp(optarg, "exit") == 0)
309 mux_command = SSHMUX_COMMAND_TERMINATE;
310 else
311 fatal("Invalid multiplex command.");
312 break;
Damien Miller147bba32002-09-04 16:46:06 +1000313 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100314 options.use_privileged_port = 0;
315 break;
Damien Miller95def091999-11-25 00:26:21 +1100316 case 'a':
317 options.forward_agent = 0;
318 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000319 case 'A':
320 options.forward_agent = 1;
321 break;
Damien Miller95def091999-11-25 00:26:21 +1100322 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100323 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100324 break;
Damien Miller95def091999-11-25 00:26:21 +1100325 case 'i':
326 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000327 fprintf(stderr, "Warning: Identity file %s "
Damien Miller3eb48b62005-03-01 21:15:46 +1100328 "not accessible: %s.\n", optarg,
329 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100330 break;
331 }
Damien Millerf4614452001-07-14 12:18:10 +1000332 if (options.num_identity_files >=
333 SSH_MAX_IDENTITY_FILES)
334 fatal("Too many identity files specified "
335 "(max %d)", SSH_MAX_IDENTITY_FILES);
336 options.identity_files[options.num_identity_files++] =
337 xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100338 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000339 case 'I':
340#ifdef SMARTCARD
Ben Lindstromf7db3bb2001-08-06 21:35:51 +0000341 options.smartcard_device = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000342#else
Ben Lindstromc5b68002001-07-04 04:52:03 +0000343 fprintf(stderr, "no support for smartcards.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000344#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000345 break;
Damien Miller95def091999-11-25 00:26:21 +1100346 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000347 if (tty_flag)
348 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100349 tty_flag = 1;
350 break;
Damien Miller95def091999-11-25 00:26:21 +1100351 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000352 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100353 debug_flag = 1;
354 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000355 } else {
356 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
357 options.log_level++;
Damien Millere4340be2000-09-16 13:29:08 +1100358 break;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000359 }
Darren Tuckere9bf9842004-11-05 20:05:32 +1100360 /* FALLTHROUGH */
Damien Miller95def091999-11-25 00:26:21 +1100361 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100362 fprintf(stderr, "%s, %s\n",
Damien Miller2aa6d3c2004-09-12 16:53:04 +1000363 SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
Damien Miller95def091999-11-25 00:26:21 +1100364 if (opt == 'V')
365 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100366 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100367 case 'w':
Damien Miller7b58e802005-12-13 19:33:19 +1100368 if (options.tun_open == -1)
369 options.tun_open = SSH_TUNMODE_DEFAULT;
Damien Millerd27b9472005-12-13 19:29:02 +1100370 options.tun_local = a2tun(optarg, &options.tun_remote);
Damien Miller7b58e802005-12-13 19:33:19 +1100371 if (options.tun_local == SSH_TUNID_ERR) {
Damien Millerd27b9472005-12-13 19:29:02 +1100372 fprintf(stderr, "Bad tun device '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100373 exit(255);
Damien Millerd27b9472005-12-13 19:29:02 +1100374 }
375 break;
Damien Miller95def091999-11-25 00:26:21 +1100376 case 'q':
377 options.log_level = SYSLOG_LEVEL_QUIET;
378 break;
Damien Miller95def091999-11-25 00:26:21 +1100379 case 'e':
380 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000381 (u_char) optarg[1] >= 64 &&
382 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000383 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100384 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000385 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100386 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000387 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100388 else {
Damien Millerf4614452001-07-14 12:18:10 +1000389 fprintf(stderr, "Bad escape character '%s'.\n",
390 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100391 exit(255);
Damien Miller95def091999-11-25 00:26:21 +1100392 }
393 break;
Damien Miller95def091999-11-25 00:26:21 +1100394 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000395 if (ciphers_valid(optarg)) {
396 /* SSH2 only */
397 options.ciphers = xstrdup(optarg);
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000398 options.cipher = SSH_CIPHER_INVALID;
Damien Millereba71ba2000-04-29 23:57:08 +1000399 } else {
400 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100401 options.cipher = cipher_number(optarg);
402 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000403 fprintf(stderr,
404 "Unknown cipher type '%s'\n",
405 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100406 exit(255);
Damien Millereba71ba2000-04-29 23:57:08 +1000407 }
Damien Millerf4614452001-07-14 12:18:10 +1000408 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100409 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000410 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100411 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000412 else
Damien Millere39cacc2000-11-29 12:18:44 +1100413 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100414 }
415 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000416 case 'm':
417 if (mac_valid(optarg))
418 options.macs = xstrdup(optarg);
419 else {
Damien Millerf4614452001-07-14 12:18:10 +1000420 fprintf(stderr, "Unknown mac type '%s'\n",
421 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100422 exit(255);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000423 }
424 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000425 case 'M':
Damien Millerd14b1e72005-06-16 13:19:41 +1000426 if (options.control_master == SSHCTL_MASTER_YES)
427 options.control_master = SSHCTL_MASTER_ASK;
428 else
429 options.control_master = SSHCTL_MASTER_YES;
Damien Miller0e220db2004-06-15 10:34:08 +1000430 break;
Damien Miller95def091999-11-25 00:26:21 +1100431 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000432 options.port = a2port(optarg);
433 if (options.port == 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000434 fprintf(stderr, "Bad port '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100435 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000436 }
Damien Miller95def091999-11-25 00:26:21 +1100437 break;
Damien Miller95def091999-11-25 00:26:21 +1100438 case 'l':
439 options.user = optarg;
440 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000441
Damien Miller95def091999-11-25 00:26:21 +1100442 case 'L':
Damien Millerf91ee4c2005-03-01 21:24:33 +1100443 if (parse_forward(&fwd, optarg))
444 add_local_forward(&options, &fwd);
445 else {
Damien Millerf4614452001-07-14 12:18:10 +1000446 fprintf(stderr,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100447 "Bad local forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000448 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100449 exit(255);
Ben Lindstrom1a174712001-09-12 17:56:15 +0000450 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100451 break;
452
453 case 'R':
454 if (parse_forward(&fwd, optarg)) {
455 add_remote_forward(&options, &fwd);
456 } else {
457 fprintf(stderr,
458 "Bad remote forwarding specification "
459 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100460 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100461 }
Damien Miller95def091999-11-25 00:26:21 +1100462 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000463
464 case 'D':
Damien Millerf91ee4c2005-03-01 21:24:33 +1100465 cp = p = xstrdup(optarg);
466 memset(&fwd, '\0', sizeof(fwd));
467 fwd.connect_host = "socks";
468 if ((fwd.listen_host = hpdelim(&cp)) == NULL) {
469 fprintf(stderr, "Bad dynamic forwarding "
470 "specification '%.100s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100471 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100472 }
473 if (cp != NULL) {
474 fwd.listen_port = a2port(cp);
475 fwd.listen_host = cleanhostname(fwd.listen_host);
476 } else {
477 fwd.listen_port = a2port(fwd.listen_host);
Damien Millerbe1045d2005-08-12 22:10:56 +1000478 fwd.listen_host = NULL;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100479 }
480
481 if (fwd.listen_port == 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000482 fprintf(stderr, "Bad dynamic port '%s'\n",
483 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100484 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000485 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100486 add_local_forward(&options, &fwd);
487 xfree(p);
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000488 break;
489
Damien Miller95def091999-11-25 00:26:21 +1100490 case 'C':
491 options.compression = 1;
492 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000493 case 'N':
494 no_shell_flag = 1;
495 no_tty_flag = 1;
496 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000497 case 'T':
498 no_tty_flag = 1;
499 break;
Damien Miller95def091999-11-25 00:26:21 +1100500 case 'o':
501 dummy = 1;
Damien Miller9836cf82003-12-17 16:30:06 +1100502 line = xstrdup(optarg);
Damien Millerf4614452001-07-14 12:18:10 +1000503 if (process_config_line(&options, host ? host : "",
Damien Miller9836cf82003-12-17 16:30:06 +1100504 line, "command-line", 0, &dummy) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100505 exit(255);
Damien Miller9836cf82003-12-17 16:30:06 +1100506 xfree(line);
Damien Miller95def091999-11-25 00:26:21 +1100507 break;
Damien Miller832562e2001-01-30 09:30:01 +1100508 case 's':
509 subsystem_flag = 1;
510 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000511 case 'S':
512 if (options.control_path != NULL)
513 free(options.control_path);
514 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000515 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000516 case 'b':
517 options.bind_address = optarg;
518 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000519 case 'F':
520 config = optarg;
521 break;
Damien Miller95def091999-11-25 00:26:21 +1100522 default:
523 usage();
524 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000525 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000526
Damien Millerf4614452001-07-14 12:18:10 +1000527 ac -= optind;
528 av += optind;
529
530 if (ac > 0 && !host && **av != '-') {
Ben Lindstromc276c122002-12-23 02:14:51 +0000531 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000532 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000533 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000534 if (cp == NULL || cp == p)
535 usage();
536 options.user = p;
537 *cp = '\0';
538 host = ++cp;
539 } else
540 host = *av;
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000541 if (ac > 1) {
542 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000543 goto again;
544 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000545 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000546 }
547
Damien Miller95def091999-11-25 00:26:21 +1100548 /* Check that we got a host name. */
549 if (!host)
550 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000551
Damien Millercb5e44a2000-09-29 12:12:36 +1100552 SSLeay_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100553 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100554
Damien Miller95def091999-11-25 00:26:21 +1100555 /* Initialize the command to execute on remote host. */
556 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000557
Damien Miller5428f641999-11-25 11:54:57 +1100558 /*
559 * Save the command to execute on the remote host in a buffer. There
560 * is no limit on the length of the command, except by the maximum
561 * packet size. Also sets the tty flag if there is no command.
562 */
Damien Millerf4614452001-07-14 12:18:10 +1000563 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100564 /* No command specified - execute shell on a tty. */
565 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100566 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000567 fprintf(stderr,
568 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100569 usage();
570 }
Damien Miller95def091999-11-25 00:26:21 +1100571 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000572 /* A command has been specified. Store it into the buffer. */
573 for (i = 0; i < ac; i++) {
574 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100575 buffer_append(&command, " ", 1);
576 buffer_append(&command, av[i], strlen(av[i]));
577 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000578 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000579
Damien Miller95def091999-11-25 00:26:21 +1100580 /* Cannot fork to background if no command. */
Damien Millercaf6dd62000-08-29 11:33:50 +1100581 if (fork_after_authentication_flag && buffer_len(&command) == 0 && !no_shell_flag)
Damien Miller95def091999-11-25 00:26:21 +1100582 fatal("Cannot fork into background without a command to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000583
Damien Miller95def091999-11-25 00:26:21 +1100584 /* Allocate a tty by default if no command specified. */
585 if (buffer_len(&command) == 0)
586 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000587
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000588 /* Force no tty */
Ben Lindstromc72745a2000-12-02 19:03:54 +0000589 if (no_tty_flag)
590 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100591 /* Do not allocate a tty if stdin is not a tty. */
Damien Millerddee5752005-05-26 12:05:05 +1000592 if ((!isatty(fileno(stdin)) || stdin_null_flag) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100593 if (tty_flag)
Damien Miller996acd22003-04-09 20:59:48 +1000594 logit("Pseudo-terminal will not be allocated because stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100595 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000596 }
Damien Miller1383bd82000-04-06 12:32:37 +1000597
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000598 /*
599 * Initialize "log" output. Since we are the client all output
600 * actually goes to stderr.
601 */
Ben Lindstrom2b646522001-04-12 16:16:57 +0000602 log_init(av[0], options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
603 SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000604
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000605 /*
606 * Read per-user configuration file. Ignore the system wide config
607 * file if the user specifies a config file on the command line.
608 */
609 if (config != NULL) {
Damien Miller914420f2004-04-20 20:14:07 +1000610 if (!read_config_file(config, host, &options, 0))
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000611 fatal("Can't open user config file %.100s: "
612 "%.100s", config, strerror(errno));
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000613 } else {
614 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,
615 _PATH_SSH_USER_CONFFILE);
Damien Miller57a44762004-04-20 20:11:57 +1000616 (void)read_config_file(buf, host, &options, 1);
Ben Lindstrom83f07d12001-10-03 17:22:29 +0000617
618 /* Read systemwide configuration file after use config. */
Darren Tuckerfc959702004-07-17 16:12:08 +1000619 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host,
Damien Miller57a44762004-04-20 20:11:57 +1000620 &options, 0);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000621 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000622
Damien Miller95def091999-11-25 00:26:21 +1100623 /* Fill configuration defaults. */
624 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000625
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000626 channel_set_af(options.address_family);
627
Damien Miller95def091999-11-25 00:26:21 +1100628 /* reinit */
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000629 log_init(av[0], options.log_level, SYSLOG_FACILITY_USER, 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000630
Damien Miller60bc5172001-03-19 09:38:15 +1100631 seed_rng();
632
Damien Miller95def091999-11-25 00:26:21 +1100633 if (options.user == NULL)
634 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000635
Damien Miller95def091999-11-25 00:26:21 +1100636 if (options.hostname != NULL)
637 host = options.hostname;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000638
Darren Tucker3f521e22003-07-03 16:20:42 +1000639 /* force lowercase for hostkey matching */
640 if (options.host_key_alias != NULL) {
641 for (p = options.host_key_alias; *p; p++)
642 if (isupper(*p))
Damien Miller1d2b6702006-03-26 14:09:54 +1100643 *p = (char)tolower(*p);
Darren Tucker3f521e22003-07-03 16:20:42 +1000644 }
645
Damien Miller7c71cc72005-06-26 08:56:31 +1000646 /* Get default port if port has not been set. */
647 if (options.port == 0) {
648 sp = getservbyname(SSH_SERVICE_NAME, "tcp");
649 options.port = sp ? ntohs(sp->s_port) : SSH_DEFAULT_PORT;
650 }
651
Damien Miller9f1e33a2003-02-24 11:57:32 +1100652 if (options.proxy_command != NULL &&
653 strcmp(options.proxy_command, "none") == 0)
654 options.proxy_command = NULL;
Damien Miller8f74c8f2005-06-26 08:56:03 +1000655 if (options.control_path != NULL &&
656 strcmp(options.control_path, "none") == 0)
657 options.control_path = NULL;
Damien Miller9f1e33a2003-02-24 11:57:32 +1100658
Damien Miller0e220db2004-06-15 10:34:08 +1000659 if (options.control_path != NULL) {
Damien Miller6b1d53c2006-03-31 23:13:21 +1100660 char thishost[NI_MAXHOST];
Damien Miller3ec54c72006-03-15 11:30:13 +1100661
Damien Miller6b1d53c2006-03-31 23:13:21 +1100662 if (gethostname(thishost, sizeof(thishost)) == -1)
Damien Miller3ec54c72006-03-15 11:30:13 +1100663 fatal("gethostname: %s", strerror(errno));
Damien Miller6476cad2005-06-16 13:18:34 +1000664 snprintf(buf, sizeof(buf), "%d", options.port);
665 cp = tilde_expand_filename(options.control_path,
666 original_real_uid);
667 options.control_path = percent_expand(cp, "p", buf, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +1100668 "r", options.user, "l", thishost, (char *)NULL);
Damien Miller6476cad2005-06-16 13:18:34 +1000669 xfree(cp);
Damien Miller0e220db2004-06-15 10:34:08 +1000670 }
Darren Tucker0814d312005-06-01 23:08:51 +1000671 if (mux_command != 0 && options.control_path == NULL)
672 fatal("No ControlPath specified for \"-O\" command");
Damien Millerd14b1e72005-06-16 13:19:41 +1000673 if (options.control_path != NULL)
Damien Millerdadfd4d2005-05-26 12:07:13 +1000674 control_client(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +1000675
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000676 /* Open a connection to the remote host. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000677 if (ssh_connect(host, &hostaddr, options.port,
678 options.address_family, options.connection_attempts,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000679#ifdef HAVE_CYGWIN
680 options.use_privileged_port,
681#else
Ben Lindstromf9c48842002-06-11 16:37:51 +0000682 original_effective_uid == 0 && options.use_privileged_port,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000683#endif
Ben Lindstromda394ca2002-06-12 16:11:12 +0000684 options.proxy_command) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100685 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000686
Damien Miller5428f641999-11-25 11:54:57 +1100687 /*
688 * If we successfully made the connection, load the host private key
689 * in case we will need it later for combined rsa-rhosts
690 * authentication. This must be done before releasing extra
691 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +0000692 * If we cannot access the private keys, load the public keys
693 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +1100694 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000695 sensitive_data.nkeys = 0;
696 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000697 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +0000698 if (options.rhosts_rsa_authentication ||
699 options.hostbased_authentication) {
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000700 sensitive_data.nkeys = 3;
Damien Millerddd63ab2006-03-31 23:10:51 +1100701 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000702 sizeof(Key));
Ben Lindstromf9c48842002-06-11 16:37:51 +0000703
704 PRIV_START;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000705 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Darren Tucker232b76f2006-05-06 17:41:51 +1000706 _PATH_HOST_KEY_FILE, "", NULL, NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000707 sensitive_data.keys[1] = key_load_private_type(KEY_DSA,
Darren Tucker232b76f2006-05-06 17:41:51 +1000708 _PATH_HOST_DSA_KEY_FILE, "", NULL, NULL);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000709 sensitive_data.keys[2] = key_load_private_type(KEY_RSA,
Darren Tucker232b76f2006-05-06 17:41:51 +1000710 _PATH_HOST_RSA_KEY_FILE, "", NULL, NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +0000711 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000712
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +0000713 if (options.hostbased_authentication == 1 &&
714 sensitive_data.keys[0] == NULL &&
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000715 sensitive_data.keys[1] == NULL &&
716 sensitive_data.keys[2] == NULL) {
717 sensitive_data.keys[1] = key_load_public(
718 _PATH_HOST_DSA_KEY_FILE, NULL);
719 sensitive_data.keys[2] = key_load_public(
720 _PATH_HOST_RSA_KEY_FILE, NULL);
721 sensitive_data.external_keysign = 1;
722 }
Damien Miller95def091999-11-25 00:26:21 +1100723 }
Damien Miller5428f641999-11-25 11:54:57 +1100724 /*
725 * Get rid of any extra privileges that we may have. We will no
726 * longer need them. Also, extra privileges could make it very hard
727 * to read identity files and other non-world-readable files from the
728 * user's home directory if it happens to be on a NFS volume where
729 * root is mapped to nobody.
730 */
Darren Tucker25f60a72004-08-15 17:23:34 +1000731 if (original_effective_uid == 0) {
732 PRIV_START;
733 permanently_set_uid(pw);
734 }
Damien Miller95def091999-11-25 00:26:21 +1100735
Damien Miller5428f641999-11-25 11:54:57 +1100736 /*
737 * Now that we are back to our own permissions, create ~/.ssh
Damien Miller788f2122005-11-05 15:14:59 +1100738 * directory if it doesn't already exist.
Damien Miller5428f641999-11-25 11:54:57 +1100739 */
Ben Lindstrom930b14a2001-08-15 23:19:21 +0000740 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 +1100741 if (stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000742 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100743 error("Could not create directory '%.200s'.", buf);
744
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000745 /* load options.identity_files */
746 load_public_identity_files();
747
748 /* Expand ~ in known host file names. */
749 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100750 options.system_hostfile =
751 tilde_expand_filename(options.system_hostfile, original_real_uid);
752 options.user_hostfile =
753 tilde_expand_filename(options.user_hostfile, original_real_uid);
754 options.system_hostfile2 =
755 tilde_expand_filename(options.system_hostfile2, original_real_uid);
756 options.user_hostfile2 =
757 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100758
Damien Miller07cd5892001-11-12 10:52:03 +1100759 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
760
Damien Miller95def091999-11-25 00:26:21 +1100761 /* Log into the remote system. This never returns if the login fails. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000762 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr, pw);
Damien Miller95def091999-11-25 00:26:21 +1100763
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000764 /* We no longer need the private host keys. Clear them now. */
765 if (sensitive_data.nkeys != 0) {
766 for (i = 0; i < sensitive_data.nkeys; i++) {
767 if (sensitive_data.keys[i] != NULL) {
768 /* Destroys contents safely */
769 debug3("clear hostkey %d", i);
770 key_free(sensitive_data.keys[i]);
771 sensitive_data.keys[i] = NULL;
772 }
773 }
774 xfree(sensitive_data.keys);
775 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000776 for (i = 0; i < options.num_identity_files; i++) {
777 if (options.identity_files[i]) {
778 xfree(options.identity_files[i]);
779 options.identity_files[i] = NULL;
780 }
781 if (options.identity_keys[i]) {
782 key_free(options.identity_keys[i]);
783 options.identity_keys[i] = NULL;
784 }
785 }
Damien Miller95def091999-11-25 00:26:21 +1100786
Damien Miller1383bd82000-04-06 12:32:37 +1000787 exit_status = compat20 ? ssh_session2() : ssh_session();
788 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +1000789
Damien Miller0e220db2004-06-15 10:34:08 +1000790 if (options.control_path != NULL && control_fd != -1)
791 unlink(options.control_path);
792
Damien Miller8c4e18a2002-09-19 12:05:02 +1000793 /*
Damien Millera8e06ce2003-11-21 23:48:55 +1100794 * Send SIGHUP to proxy command if used. We don't wait() in
Damien Miller8c4e18a2002-09-19 12:05:02 +1000795 * case it hangs and instead rely on init to reap the child
796 */
797 if (proxy_command_pid > 1)
798 kill(proxy_command_pid, SIGHUP);
799
Damien Miller1383bd82000-04-06 12:32:37 +1000800 return exit_status;
801}
802
Ben Lindstrombba81212001-06-25 05:01:22 +0000803static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100804ssh_init_forwarding(void)
805{
Kevin Steves12057502001-02-05 14:54:34 +0000806 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100807 int i;
Kevin Steves12057502001-02-05 14:54:34 +0000808
Damien Miller0bc1bd82000-11-13 22:57:25 +1100809 /* Initiate local TCP/IP port forwardings. */
810 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100811 debug("Local connections to %.200s:%d forwarded to remote "
812 "address %.200s:%d",
Darren Tucker47eede72005-03-14 23:08:12 +1100813 (options.local_forwards[i].listen_host == NULL) ?
814 (options.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +1100815 options.local_forwards[i].listen_host,
816 options.local_forwards[i].listen_port,
817 options.local_forwards[i].connect_host,
818 options.local_forwards[i].connect_port);
Damien Millerb16461c2002-01-22 23:29:22 +1100819 success += channel_setup_local_fwd_listener(
Damien Millerf91ee4c2005-03-01 21:24:33 +1100820 options.local_forwards[i].listen_host,
821 options.local_forwards[i].listen_port,
822 options.local_forwards[i].connect_host,
823 options.local_forwards[i].connect_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +1100824 options.gateway_ports);
825 }
Darren Tuckere7d4b192006-07-12 22:17:10 +1000826 if (i > 0 && success != i && options.exit_on_forward_failure)
827 fatal("Could not request local forwarding.");
Kevin Steves12057502001-02-05 14:54:34 +0000828 if (i > 0 && success == 0)
829 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +1100830
831 /* Initiate remote TCP/IP port forwardings. */
832 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100833 debug("Remote connections from %.200s:%d forwarded to "
834 "local address %.200s:%d",
Damien Miller46d38de2005-07-17 17:02:09 +1000835 (options.remote_forwards[i].listen_host == NULL) ?
Damien Milleraa3bb102005-11-05 15:12:59 +1100836 "LOCALHOST" : options.remote_forwards[i].listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100837 options.remote_forwards[i].listen_port,
838 options.remote_forwards[i].connect_host,
839 options.remote_forwards[i].connect_port);
Darren Tuckere7d4b192006-07-12 22:17:10 +1000840 if (channel_request_remote_forwarding(
Damien Millerf91ee4c2005-03-01 21:24:33 +1100841 options.remote_forwards[i].listen_host,
842 options.remote_forwards[i].listen_port,
843 options.remote_forwards[i].connect_host,
Darren Tuckere7d4b192006-07-12 22:17:10 +1000844 options.remote_forwards[i].connect_port) < 0) {
845 if (options.exit_on_forward_failure)
846 fatal("Could not request remote forwarding.");
847 else
848 logit("Warning: Could not request remote "
849 "forwarding.");
850 }
Damien Miller0bc1bd82000-11-13 22:57:25 +1100851 }
852}
853
Ben Lindstrombba81212001-06-25 05:01:22 +0000854static void
Damien Miller0bc1bd82000-11-13 22:57:25 +1100855check_agent_present(void)
856{
857 if (options.forward_agent) {
Damien Miller788f2122005-11-05 15:14:59 +1100858 /* Clear agent forwarding if we don't have an agent. */
Damien Miller789e95d2002-09-12 09:52:46 +1000859 if (!ssh_agent_present())
Damien Miller0bc1bd82000-11-13 22:57:25 +1100860 options.forward_agent = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +1100861 }
862}
863
Ben Lindstrombba81212001-06-25 05:01:22 +0000864static int
Damien Miller1383bd82000-04-06 12:32:37 +1000865ssh_session(void)
866{
867 int type;
Damien Miller1383bd82000-04-06 12:32:37 +1000868 int interactive = 0;
869 int have_tty = 0;
870 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +1000871 char *cp;
Damien Miller17e7ed02005-06-17 12:54:33 +1000872 const char *display;
Damien Miller1383bd82000-04-06 12:32:37 +1000873
Damien Miller95def091999-11-25 00:26:21 +1100874 /* Enable compression if requested. */
875 if (options.compression) {
876 debug("Requesting compression at level %d.", options.compression_level);
877
878 if (options.compression_level < 1 || options.compression_level > 9)
879 fatal("Compression level must be from 1 (fast) to 9 (slow, best).");
880
881 /* Send the request. */
882 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
883 packet_put_int(options.compression_level);
884 packet_send();
885 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +1100886 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100887 if (type == SSH_SMSG_SUCCESS)
888 packet_start_compression(options.compression_level);
889 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +1000890 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +1100891 else
892 packet_disconnect("Protocol error waiting for compression response.");
893 }
894 /* Allocate a pseudo tty if appropriate. */
895 if (tty_flag) {
896 debug("Requesting pty.");
897
898 /* Start the packet. */
899 packet_start(SSH_CMSG_REQUEST_PTY);
900
901 /* Store TERM in the packet. There is no limit on the
902 length of the string. */
903 cp = getenv("TERM");
904 if (!cp)
905 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +0000906 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +1100907
908 /* Store window size in the packet. */
909 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
910 memset(&ws, 0, sizeof(ws));
Damien Miller71a73672006-03-26 14:04:36 +1100911 packet_put_int((u_int)ws.ws_row);
912 packet_put_int((u_int)ws.ws_col);
913 packet_put_int((u_int)ws.ws_xpixel);
914 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller95def091999-11-25 00:26:21 +1100915
916 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +0000917 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +1100918
919 /* Send the packet, and wait for it to leave. */
920 packet_send();
921 packet_write_wait();
922
923 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100924 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +1000925 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100926 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +1000927 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +1000928 } else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +1000929 logit("Warning: Remote host failed or refused to allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +1100930 else
931 packet_disconnect("Protocol error waiting for pty request response.");
932 }
933 /* Request X11 forwarding if enabled and DISPLAY is set. */
Damien Miller17e7ed02005-06-17 12:54:33 +1000934 display = getenv("DISPLAY");
935 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +0000936 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +1000937 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +1000938 client_x11_get_proto(display, options.xauth_location,
939 options.forward_x11_trusted, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +1000940 /* Request forwarding with authentication spoofing. */
Damien Miller95def091999-11-25 00:26:21 +1100941 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +1000942 x11_request_forwarding_with_spoofing(0, display, proto, data);
Damien Miller95def091999-11-25 00:26:21 +1100943
944 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100945 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +1100946 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +1100947 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +1000948 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +1000949 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +1000950 } else {
Damien Miller95def091999-11-25 00:26:21 +1100951 packet_disconnect("Protocol error waiting for X11 forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +1000952 }
Damien Miller95def091999-11-25 00:26:21 +1100953 }
954 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000955 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +1100956
957 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100958 check_agent_present();
959
Damien Miller95def091999-11-25 00:26:21 +1100960 if (options.forward_agent) {
961 debug("Requesting authentication agent forwarding.");
962 auth_request_forwarding();
963
964 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +1100965 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +1100966 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +1100967 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +1000968 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +1100969 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000970
Damien Miller0bc1bd82000-11-13 22:57:25 +1100971 /* Initiate port forwardings. */
972 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000973
Damien Miller5428f641999-11-25 11:54:57 +1100974 /* If requested, let ssh continue in the background. */
Damien Miller4af51302000-04-16 11:18:38 +1000975 if (fork_after_authentication_flag)
Damien Miller5428f641999-11-25 11:54:57 +1100976 if (daemon(1, 1) < 0)
977 fatal("daemon() failed: %.200s", strerror(errno));
978
979 /*
980 * If a command was specified on the command line, execute the
981 * command now. Otherwise request the server to start a shell.
982 */
Damien Miller95def091999-11-25 00:26:21 +1100983 if (buffer_len(&command) > 0) {
984 int len = buffer_len(&command);
985 if (len > 900)
986 len = 900;
Damien Miller5a6b4fe2001-12-21 14:56:54 +1100987 debug("Sending command: %.*s", len, (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +1100988 packet_start(SSH_CMSG_EXEC_CMD);
989 packet_put_string(buffer_ptr(&command), buffer_len(&command));
990 packet_send();
991 packet_write_wait();
992 } else {
993 debug("Requesting shell.");
994 packet_start(SSH_CMSG_EXEC_SHELL);
995 packet_send();
996 packet_write_wait();
997 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000998
Damien Miller95def091999-11-25 00:26:21 +1100999 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001000 return client_loop(have_tty, tty_flag ?
1001 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +10001002}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001003
Ben Lindstrombba81212001-06-25 05:01:22 +00001004static void
Damien Miller0e220db2004-06-15 10:34:08 +10001005ssh_subsystem_reply(int type, u_int32_t seq, void *ctxt)
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001006{
1007 int id, len;
1008
1009 id = packet_get_int();
1010 len = buffer_len(&command);
Ben Lindstrom4040fe12001-03-05 06:52:57 +00001011 if (len > 900)
1012 len = 900;
Damien Miller48b03fc2002-01-22 23:11:40 +11001013 packet_check_eom();
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001014 if (type == SSH2_MSG_CHANNEL_FAILURE)
1015 fatal("Request for subsystem '%.*s' failed on channel %d",
Damien Miller5a6b4fe2001-12-21 14:56:54 +11001016 len, (u_char *)buffer_ptr(&command), id);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001017}
1018
Damien Miller2797f7f2002-04-23 21:09:44 +10001019void
Damien Miller509b0102003-12-17 16:33:10 +11001020client_global_request_reply_fwd(int type, u_int32_t seq, void *ctxt)
Damien Miller2797f7f2002-04-23 21:09:44 +10001021{
1022 int i;
1023
1024 i = client_global_request_id++;
Damien Miller509b0102003-12-17 16:33:10 +11001025 if (i >= options.num_remote_forwards)
Damien Miller2797f7f2002-04-23 21:09:44 +10001026 return;
Damien Miller2797f7f2002-04-23 21:09:44 +10001027 debug("remote forward %s for: listen %d, connect %s:%d",
1028 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
Damien Millerf91ee4c2005-03-01 21:24:33 +11001029 options.remote_forwards[i].listen_port,
1030 options.remote_forwards[i].connect_host,
1031 options.remote_forwards[i].connect_port);
Darren Tuckere7d4b192006-07-12 22:17:10 +10001032 if (type == SSH2_MSG_REQUEST_FAILURE) {
1033 if (options.exit_on_forward_failure)
1034 fatal("Error: remote port forwarding failed for "
1035 "listen port %d",
1036 options.remote_forwards[i].listen_port);
1037 else
1038 logit("Warning: remote port forwarding failed for "
1039 "listen port %d",
1040 options.remote_forwards[i].listen_port);
1041 }
Damien Miller2797f7f2002-04-23 21:09:44 +10001042}
1043
Damien Miller0e220db2004-06-15 10:34:08 +10001044static void
1045ssh_control_listener(void)
1046{
1047 struct sockaddr_un addr;
1048 mode_t old_umask;
Damien Miller07b6ff12004-06-15 11:14:45 +10001049 int addr_len;
1050
Damien Millerd14b1e72005-06-16 13:19:41 +10001051 if (options.control_path == NULL ||
1052 options.control_master == SSHCTL_MASTER_NO)
Damien Miller0e220db2004-06-15 10:34:08 +10001053 return;
1054
Damien Millerd14b1e72005-06-16 13:19:41 +10001055 debug("setting up multiplex master socket");
1056
Damien Miller0e220db2004-06-15 10:34:08 +10001057 memset(&addr, '\0', sizeof(addr));
1058 addr.sun_family = AF_UNIX;
Damien Miller07b6ff12004-06-15 11:14:45 +10001059 addr_len = offsetof(struct sockaddr_un, sun_path) +
Damien Miller0e220db2004-06-15 10:34:08 +10001060 strlen(options.control_path) + 1;
1061
1062 if (strlcpy(addr.sun_path, options.control_path,
1063 sizeof(addr.sun_path)) >= sizeof(addr.sun_path))
1064 fatal("ControlPath too long");
1065
1066 if ((control_fd = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
Damien Miller15d72a02005-11-05 15:07:33 +11001067 fatal("%s socket(): %s", __func__, strerror(errno));
Damien Miller0e220db2004-06-15 10:34:08 +10001068
1069 old_umask = umask(0177);
Damien Miller90967402006-03-26 14:07:26 +11001070 if (bind(control_fd, (struct sockaddr *)&addr, addr_len) == -1) {
Damien Miller0e220db2004-06-15 10:34:08 +10001071 control_fd = -1;
Damien Miller4f10e252005-05-04 15:33:09 +10001072 if (errno == EINVAL || errno == EADDRINUSE)
Damien Miller0e220db2004-06-15 10:34:08 +10001073 fatal("ControlSocket %s already exists",
1074 options.control_path);
1075 else
Damien Miller15d72a02005-11-05 15:07:33 +11001076 fatal("%s bind(): %s", __func__, strerror(errno));
Damien Miller0e220db2004-06-15 10:34:08 +10001077 }
1078 umask(old_umask);
1079
1080 if (listen(control_fd, 64) == -1)
Damien Miller15d72a02005-11-05 15:07:33 +11001081 fatal("%s listen(): %s", __func__, strerror(errno));
Damien Miller0e220db2004-06-15 10:34:08 +10001082
1083 set_nonblock(control_fd);
1084}
1085
Ben Lindstromf558cf62001-09-20 23:13:49 +00001086/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001087static void
Ben Lindstromf558cf62001-09-20 23:13:49 +00001088ssh_session2_setup(int id, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001089{
Damien Miller3756dce2004-06-18 01:17:29 +10001090 extern char **environ;
Damien Miller17e7ed02005-06-17 12:54:33 +10001091 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +10001092 int interactive = tty_flag;
Damien Miller17e7ed02005-06-17 12:54:33 +10001093
Damien Miller46d38de2005-07-17 17:02:09 +10001094 display = getenv("DISPLAY");
Damien Miller17e7ed02005-06-17 12:54:33 +10001095 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001096 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001097 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001098 client_x11_get_proto(display, options.xauth_location,
1099 options.forward_x11_trusted, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001100 /* Request forwarding with authentication spoofing. */
1101 debug("Requesting X11 forwarding with authentication spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +10001102 x11_request_forwarding_with_spoofing(id, display, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001103 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001104 /* XXX wait for reply */
1105 }
1106
Damien Miller0bc1bd82000-11-13 22:57:25 +11001107 check_agent_present();
1108 if (options.forward_agent) {
1109 debug("Requesting authentication agent forwarding.");
1110 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1111 packet_send();
1112 }
1113
Damien Miller7b58e802005-12-13 19:33:19 +11001114 if (options.tun_open != SSH_TUNMODE_NO) {
Damien Millerd27b9472005-12-13 19:29:02 +11001115 Channel *c;
1116 int fd;
1117
1118 debug("Requesting tun.");
Damien Miller7b58e802005-12-13 19:33:19 +11001119 if ((fd = tun_open(options.tun_local,
1120 options.tun_open)) >= 0) {
Damien Millerd27b9472005-12-13 19:29:02 +11001121 c = channel_new("tun", SSH_CHANNEL_OPENING, fd, fd, -1,
1122 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT,
1123 0, "tun", 1);
1124 c->datagram = 1;
Damien Miller598bbc22005-12-31 16:33:36 +11001125#if defined(SSH_TUN_FILTER)
1126 if (options.tun_open == SSH_TUNMODE_POINTOPOINT)
1127 channel_register_filter(c->self, sys_tun_infilter,
1128 sys_tun_outfilter);
1129#endif
Damien Millerd27b9472005-12-13 19:29:02 +11001130 packet_start(SSH2_MSG_CHANNEL_OPEN);
1131 packet_put_cstring("tun@openssh.com");
1132 packet_put_int(c->self);
1133 packet_put_int(c->local_window_max);
1134 packet_put_int(c->local_maxpacket);
Damien Miller7b58e802005-12-13 19:33:19 +11001135 packet_put_int(options.tun_open);
Damien Millerd27b9472005-12-13 19:29:02 +11001136 packet_put_int(options.tun_remote);
1137 packet_send();
1138 }
1139 }
1140
Damien Miller0e220db2004-06-15 10:34:08 +10001141 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
Damien Miller3756dce2004-06-18 01:17:29 +10001142 NULL, fileno(stdin), &command, environ, &ssh_subsystem_reply);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001143
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001144 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001145}
1146
Ben Lindstromf558cf62001-09-20 23:13:49 +00001147/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001148static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001149ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001150{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001151 Channel *c;
1152 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001153
Damien Millercaf6dd62000-08-29 11:33:50 +11001154 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001155 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001156 } else {
1157 in = dup(STDIN_FILENO);
1158 }
1159 out = dup(STDOUT_FILENO);
1160 err = dup(STDERR_FILENO);
1161
1162 if (in < 0 || out < 0 || err < 0)
1163 fatal("dup() in/out/err failed");
1164
Damien Miller69b69aa2000-10-28 14:19:58 +11001165 /* enable nonblocking unless tty */
1166 if (!isatty(in))
1167 set_nonblock(in);
1168 if (!isatty(out))
1169 set_nonblock(out);
1170 if (!isatty(err))
1171 set_nonblock(err);
1172
Damien Millere4340be2000-09-16 13:29:08 +11001173 window = CHAN_SES_WINDOW_DEFAULT;
1174 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001175 if (tty_flag) {
1176 window >>= 1;
1177 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001178 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001179 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001180 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001181 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001182 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001183
Ben Lindstromf558cf62001-09-20 23:13:49 +00001184 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001185
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001186 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001187 if (!no_shell_flag)
Damien Miller0e220db2004-06-15 10:34:08 +10001188 channel_register_confirm(c->self, ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001189
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001190 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001191}
1192
Ben Lindstrombba81212001-06-25 05:01:22 +00001193static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001194ssh_session2(void)
1195{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001196 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001197
1198 /* XXX should be pre-session */
1199 ssh_init_forwarding();
Damien Miller0e220db2004-06-15 10:34:08 +10001200 ssh_control_listener();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001201
Ben Lindstromf558cf62001-09-20 23:13:49 +00001202 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1203 id = ssh_session2_open();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001204
Damien Millerd27b9472005-12-13 19:29:02 +11001205 /* Execute a local command */
1206 if (options.local_command != NULL &&
1207 options.permit_local_command)
1208 ssh_local_cmd(options.local_command);
1209
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001210 /* If requested, let ssh continue in the background. */
1211 if (fork_after_authentication_flag)
1212 if (daemon(1, 1) < 0)
1213 fatal("daemon() failed: %.200s", strerror(errno));
1214
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001215 return client_loop(tty_flag, tty_flag ?
1216 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001217}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001218
Ben Lindstrombba81212001-06-25 05:01:22 +00001219static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001220load_public_identity_files(void)
1221{
Damien Miller6b1d53c2006-03-31 23:13:21 +11001222 char *filename, *cp, thishost[NI_MAXHOST];
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001223 int i = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001224 Key *public;
Damien Miller6b1d53c2006-03-31 23:13:21 +11001225 struct passwd *pw;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001226#ifdef SMARTCARD
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001227 Key **keys;
1228
Ben Lindstromf7db3bb2001-08-06 21:35:51 +00001229 if (options.smartcard_device != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001230 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
Damien Miller4dec5d72006-08-05 11:38:40 +10001231 (keys = sc_get_keys(options.smartcard_device, NULL)) != NULL) {
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001232 int count = 0;
1233 for (i = 0; keys[i] != NULL; i++) {
1234 count++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001235 memmove(&options.identity_files[1], &options.identity_files[0],
1236 sizeof(char *) * (SSH_MAX_IDENTITY_FILES - 1));
1237 memmove(&options.identity_keys[1], &options.identity_keys[0],
1238 sizeof(Key *) * (SSH_MAX_IDENTITY_FILES - 1));
1239 options.num_identity_files++;
1240 options.identity_keys[0] = keys[i];
Damien Miller56a0bb02003-06-18 20:28:40 +10001241 options.identity_files[0] = sc_get_key_label(keys[i]);
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001242 }
Ben Lindstrom4f054602002-03-26 03:23:00 +00001243 if (options.num_identity_files > SSH_MAX_IDENTITY_FILES)
1244 options.num_identity_files = SSH_MAX_IDENTITY_FILES;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001245 i = count;
1246 xfree(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001247 }
Ben Lindstromffce1472001-08-06 21:57:31 +00001248#endif /* SMARTCARD */
Damien Miller6b1d53c2006-03-31 23:13:21 +11001249 if ((pw = getpwuid(original_real_uid)) == NULL)
1250 fatal("load_public_identity_files: getpwuid failed");
1251 if (gethostname(thishost, sizeof(thishost)) == -1)
1252 fatal("load_public_identity_files: gethostname: %s",
1253 strerror(errno));
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001254 for (; i < options.num_identity_files; i++) {
Damien Miller6b1d53c2006-03-31 23:13:21 +11001255 cp = tilde_expand_filename(options.identity_files[i],
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001256 original_real_uid);
Damien Miller6b1d53c2006-03-31 23:13:21 +11001257 filename = percent_expand(cp, "d", pw->pw_dir,
Damien Millerd7834352006-08-05 12:39:39 +10001258 "u", pw->pw_name, "l", thishost, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +11001259 "r", options.user, (char *)NULL);
1260 xfree(cp);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001261 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001262 debug("identity file %s type %d", filename,
1263 public ? public->type : -1);
1264 xfree(options.identity_files[i]);
1265 options.identity_files[i] = filename;
1266 options.identity_keys[i] = public;
1267 }
1268}
Damien Miller0e220db2004-06-15 10:34:08 +10001269
1270static void
1271control_client_sighandler(int signo)
1272{
1273 control_client_terminate = signo;
1274}
1275
1276static void
1277control_client_sigrelay(int signo)
1278{
1279 if (control_server_pid > 1)
1280 kill(control_server_pid, signo);
1281}
1282
Darren Tucker365433f2004-06-22 12:29:23 +10001283static int
1284env_permitted(char *env)
1285{
Darren Tucker284706a2006-07-12 22:16:23 +10001286 int i, ret;
Darren Tucker365433f2004-06-22 12:29:23 +10001287 char name[1024], *cp;
1288
Darren Tucker284706a2006-07-12 22:16:23 +10001289 if ((cp = strchr(env, '=')) == NULL || cp == env)
Darren Tucker365433f2004-06-22 12:29:23 +10001290 return (0);
Darren Tucker57f42242006-07-12 22:23:35 +10001291 ret = snprintf(name, sizeof(name), "%.*s", (int)(cp - env), env);
Darren Tucker284706a2006-07-12 22:16:23 +10001292 if (ret <= 0 || (size_t)ret >= sizeof(name))
1293 fatal("env_permitted: name '%.100s...' too long", env);
Darren Tucker365433f2004-06-22 12:29:23 +10001294
1295 for (i = 0; i < options.num_send_env; i++)
1296 if (match_pattern(name, options.send_env[i]))
1297 return (1);
1298
1299 return (0);
1300}
1301
Damien Miller0e220db2004-06-15 10:34:08 +10001302static void
1303control_client(const char *path)
1304{
1305 struct sockaddr_un addr;
Darren Tucker39207a42004-11-05 20:19:51 +11001306 int i, r, fd, sock, exitval, num_env, addr_len;
Damien Miller0e220db2004-06-15 10:34:08 +10001307 Buffer m;
Darren Tucker7ebfc102004-11-07 20:06:19 +11001308 char *term;
Damien Miller3756dce2004-06-18 01:17:29 +10001309 extern char **environ;
Darren Tucker7ebfc102004-11-07 20:06:19 +11001310 u_int flags;
Darren Tuckerfc959702004-07-17 16:12:08 +10001311
Damien Millerd14b1e72005-06-16 13:19:41 +10001312 if (mux_command == 0)
1313 mux_command = SSHMUX_COMMAND_OPEN;
1314
1315 switch (options.control_master) {
1316 case SSHCTL_MASTER_AUTO:
1317 case SSHCTL_MASTER_AUTO_ASK:
1318 debug("auto-mux: Trying existing master");
1319 /* FALLTHROUGH */
1320 case SSHCTL_MASTER_NO:
1321 break;
1322 default:
1323 return;
1324 }
1325
Damien Miller0e220db2004-06-15 10:34:08 +10001326 memset(&addr, '\0', sizeof(addr));
1327 addr.sun_family = AF_UNIX;
Damien Miller07b6ff12004-06-15 11:14:45 +10001328 addr_len = offsetof(struct sockaddr_un, sun_path) +
Damien Miller0e220db2004-06-15 10:34:08 +10001329 strlen(path) + 1;
1330
1331 if (strlcpy(addr.sun_path, path,
1332 sizeof(addr.sun_path)) >= sizeof(addr.sun_path))
1333 fatal("ControlPath too long");
1334
1335 if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
1336 fatal("%s socket(): %s", __func__, strerror(errno));
1337
Damien Miller90967402006-03-26 14:07:26 +11001338 if (connect(sock, (struct sockaddr *)&addr, addr_len) == -1) {
Darren Tucker0814d312005-06-01 23:08:51 +10001339 if (mux_command != SSHMUX_COMMAND_OPEN) {
1340 fatal("Control socket connect(%.100s): %s", path,
1341 strerror(errno));
1342 }
Damien Miller538c9b72005-05-26 12:11:28 +10001343 if (errno == ENOENT)
Damien Miller4662d342006-03-26 13:59:59 +11001344 debug("Control socket \"%.100s\" does not exist", path);
Damien Miller538c9b72005-05-26 12:11:28 +10001345 else {
Damien Miller4662d342006-03-26 13:59:59 +11001346 error("Control socket connect(%.100s): %s", path,
Damien Miller538c9b72005-05-26 12:11:28 +10001347 strerror(errno));
1348 }
Damien Miller4662d342006-03-26 13:59:59 +11001349 close(sock);
1350 return;
1351 }
Damien Miller46d38de2005-07-17 17:02:09 +10001352
Damien Miller4662d342006-03-26 13:59:59 +11001353 if (stdin_null_flag) {
1354 if ((fd = open(_PATH_DEVNULL, O_RDONLY)) == -1)
1355 fatal("open(/dev/null): %s", strerror(errno));
1356 if (dup2(fd, STDIN_FILENO) == -1)
1357 fatal("dup2: %s", strerror(errno));
1358 if (fd > STDERR_FILENO)
1359 close(fd);
1360 }
Damien Miller46d38de2005-07-17 17:02:09 +10001361
Damien Miller13390022005-07-06 09:44:19 +10001362 term = getenv("TERM");
Darren Tucker7ebfc102004-11-07 20:06:19 +11001363
1364 flags = 0;
1365 if (tty_flag)
1366 flags |= SSHMUX_FLAG_TTY;
1367 if (subsystem_flag)
1368 flags |= SSHMUX_FLAG_SUBSYS;
Damien Miller13390022005-07-06 09:44:19 +10001369 if (options.forward_x11)
1370 flags |= SSHMUX_FLAG_X11_FWD;
1371 if (options.forward_agent)
1372 flags |= SSHMUX_FLAG_AGENT_FWD;
Damien Miller0e220db2004-06-15 10:34:08 +10001373
Damien Miller0e220db2004-06-15 10:34:08 +10001374 buffer_init(&m);
1375
Darren Tucker7ebfc102004-11-07 20:06:19 +11001376 /* Send our command to server */
1377 buffer_put_int(&m, mux_command);
1378 buffer_put_int(&m, flags);
Damien Miller13390022005-07-06 09:44:19 +10001379 if (ssh_msg_send(sock, SSHMUX_VER, &m) == -1)
Darren Tucker7ebfc102004-11-07 20:06:19 +11001380 fatal("%s: msg_send", __func__);
1381 buffer_clear(&m);
1382
1383 /* Get authorisation status and PID of controlee */
Damien Miller0e220db2004-06-15 10:34:08 +10001384 if (ssh_msg_recv(sock, &m) == -1)
1385 fatal("%s: msg_recv", __func__);
Damien Miller13390022005-07-06 09:44:19 +10001386 if (buffer_get_char(&m) != SSHMUX_VER)
Damien Miller0e220db2004-06-15 10:34:08 +10001387 fatal("%s: wrong version", __func__);
Damien Miller23f07702004-06-18 01:19:03 +10001388 if (buffer_get_int(&m) != 1)
1389 fatal("Connection to master denied");
Damien Miller0e220db2004-06-15 10:34:08 +10001390 control_server_pid = buffer_get_int(&m);
1391
Damien Miller0e220db2004-06-15 10:34:08 +10001392 buffer_clear(&m);
Damien Miller0e220db2004-06-15 10:34:08 +10001393
Darren Tucker7ebfc102004-11-07 20:06:19 +11001394 switch (mux_command) {
1395 case SSHMUX_COMMAND_ALIVE_CHECK:
Darren Tucker47eede72005-03-14 23:08:12 +11001396 fprintf(stderr, "Master running (pid=%d)\r\n",
Darren Tucker7ebfc102004-11-07 20:06:19 +11001397 control_server_pid);
1398 exit(0);
1399 case SSHMUX_COMMAND_TERMINATE:
1400 fprintf(stderr, "Exit request sent.\r\n");
1401 exit(0);
1402 case SSHMUX_COMMAND_OPEN:
1403 /* continue below */
1404 break;
1405 default:
1406 fatal("silly mux_command %d", mux_command);
1407 }
1408
1409 /* SSHMUX_COMMAND_OPEN */
Damien Miller13390022005-07-06 09:44:19 +10001410 buffer_put_cstring(&m, term ? term : "");
Damien Miller0e220db2004-06-15 10:34:08 +10001411 buffer_append(&command, "\0", 1);
1412 buffer_put_cstring(&m, buffer_ptr(&command));
1413
Darren Tucker365433f2004-06-22 12:29:23 +10001414 if (options.num_send_env == 0 || environ == NULL) {
1415 buffer_put_int(&m, 0);
Darren Tuckerfc959702004-07-17 16:12:08 +10001416 } else {
Darren Tucker365433f2004-06-22 12:29:23 +10001417 /* Pass environment */
1418 num_env = 0;
1419 for (i = 0; environ[i] != NULL; i++)
1420 if (env_permitted(environ[i]))
1421 num_env++; /* Count */
Darren Tuckerfc959702004-07-17 16:12:08 +10001422
Darren Tucker365433f2004-06-22 12:29:23 +10001423 buffer_put_int(&m, num_env);
1424
Darren Tuckerb5bc1a62004-06-24 00:34:53 +10001425 for (i = 0; environ[i] != NULL && num_env >= 0; i++)
1426 if (env_permitted(environ[i])) {
1427 num_env--;
Darren Tucker365433f2004-06-22 12:29:23 +10001428 buffer_put_cstring(&m, environ[i]);
Darren Tuckerb5bc1a62004-06-24 00:34:53 +10001429 }
Darren Tucker365433f2004-06-22 12:29:23 +10001430 }
Damien Miller3756dce2004-06-18 01:17:29 +10001431
Damien Miller13390022005-07-06 09:44:19 +10001432 if (ssh_msg_send(sock, SSHMUX_VER, &m) == -1)
Damien Miller0e220db2004-06-15 10:34:08 +10001433 fatal("%s: msg_send", __func__);
1434
1435 mm_send_fd(sock, STDIN_FILENO);
1436 mm_send_fd(sock, STDOUT_FILENO);
1437 mm_send_fd(sock, STDERR_FILENO);
1438
1439 /* Wait for reply, so master has a chance to gather ttymodes */
1440 buffer_clear(&m);
1441 if (ssh_msg_recv(sock, &m) == -1)
1442 fatal("%s: msg_recv", __func__);
Damien Miller13390022005-07-06 09:44:19 +10001443 if (buffer_get_char(&m) != SSHMUX_VER)
Darren Tucker7ebfc102004-11-07 20:06:19 +11001444 fatal("%s: wrong version", __func__);
Damien Miller0e220db2004-06-15 10:34:08 +10001445 buffer_free(&m);
1446
Darren Tucker07336da2004-11-05 20:02:16 +11001447 signal(SIGHUP, control_client_sighandler);
Damien Miller0809e232004-06-18 22:20:57 +10001448 signal(SIGINT, control_client_sighandler);
1449 signal(SIGTERM, control_client_sighandler);
1450 signal(SIGWINCH, control_client_sigrelay);
1451
Damien Miller0e220db2004-06-15 10:34:08 +10001452 if (tty_flag)
1453 enter_raw_mode();
1454
1455 /* Stick around until the controlee closes the client_fd */
1456 exitval = 0;
1457 for (;!control_client_terminate;) {
1458 r = read(sock, &exitval, sizeof(exitval));
1459 if (r == 0) {
1460 debug2("Received EOF from master");
1461 break;
1462 }
1463 if (r > 0)
1464 debug2("Received exit status from master %d", exitval);
1465 if (r == -1 && errno != EINTR)
1466 fatal("%s: read %s", __func__, strerror(errno));
1467 }
1468
1469 if (control_client_terminate)
1470 debug2("Exiting on signal %d", control_client_terminate);
1471
1472 close(sock);
1473
1474 leave_raw_mode();
1475
1476 if (tty_flag && options.log_level != SYSLOG_LEVEL_QUIET)
1477 fprintf(stderr, "Connection to master closed.\r\n");
1478
1479 exit(exitval);
1480}