blob: e5b64325844bad91caab51e2f6cbf391345856c5 [file] [log] [blame]
Damien Miller4314c2b2010-09-10 11:12:09 +10001/* $OpenBSD: ssh.c,v 1.350 2010/08/31 12:33:38 djm 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>
Darren Tucker199b1342009-07-06 07:16:56 +100051#include <sys/param.h>
Damien Millere3b60b52006-07-10 21:08:03 +100052#include <sys/socket.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 Millerded319c2006-09-01 15:38:36 +100063#include <stdarg.h>
Damien Miller2d00e632006-07-24 13:53:19 +100064#include <stddef.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100065#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100066#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100067#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100068#include <unistd.h>
Damien Millereba71ba2000-04-29 23:57:08 +100069
Darren Tucker46aa3e02006-09-02 15:32:40 +100070#include <netinet/in.h>
71#include <arpa/inet.h>
72
Damien Millereba71ba2000-04-29 23:57:08 +100073#include <openssl/evp.h>
Damien Miller0bc1bd82000-11-13 22:57:25 +110074#include <openssl/err.h>
Darren Tuckerbfaaf962008-02-28 19:13:52 +110075#include "openbsd-compat/openssl-compat.h"
Damien Millerb84886b2008-05-19 15:05:07 +100076#include "openbsd-compat/sys-queue.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100077
Damien Millerd7834352006-08-05 12:39:39 +100078#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000080#include "ssh1.h"
Damien Miller1383bd82000-04-06 12:32:37 +100081#include "ssh2.h"
Damien Millerb96c4412010-07-02 13:34:24 +100082#include "canohost.h"
Damien Miller1383bd82000-04-06 12:32:37 +100083#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000084#include "cipher.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000085#include "packet.h"
86#include "buffer.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000087#include "channels.h"
Damien Millereba71ba2000-04-29 23:57:08 +100088#include "key.h"
Damien Miller994cf142000-07-21 10:19:44 +100089#include "authfd.h"
Damien Millereba71ba2000-04-29 23:57:08 +100090#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000091#include "pathnames.h"
Damien Miller0e220db2004-06-15 10:34:08 +100092#include "dispatch.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000093#include "clientloop.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000094#include "log.h"
95#include "readconf.h"
96#include "sshconnect.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000097#include "misc.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000098#include "kex.h"
99#include "mac.h"
Darren Tucker06f2bd82004-05-13 16:06:46 +1000100#include "sshpty.h"
Darren Tucker46bc0752004-05-02 22:11:30 +1000101#include "match.h"
Damien Miller0e220db2004-06-15 10:34:08 +1000102#include "msg.h"
Darren Tucker25f60a72004-08-15 17:23:34 +1000103#include "uidswap.h"
Darren Tuckerf1de4e52010-01-08 16:54:59 +1100104#include "roaming.h"
Damien Millerb7576772006-07-10 20:23:39 +1000105#include "version.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000106
Damien Miller7ea845e2010-02-12 09:21:02 +1100107#ifdef ENABLE_PKCS11
108#include "ssh-pkcs11.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +0000109#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000110
Damien Miller3f905871999-11-15 17:10:57 +1100111extern char *__progname;
Damien Miller3f905871999-11-15 17:10:57 +1100112
Darren Tuckerd6173c02008-06-13 04:52:53 +1000113/* Flag indicating whether debug mode is on. May be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000114int debug_flag = 0;
115
Damien Miller78928792000-04-12 20:17:38 +1000116/* Flag indicating whether a tty should be allocated */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000117int tty_flag = 0;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000118int no_tty_flag = 0;
119int force_tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000120
Damien Miller1383bd82000-04-06 12:32:37 +1000121/* don't exec a shell */
122int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000123
Damien Miller5428f641999-11-25 11:54:57 +1100124/*
125 * Flag indicating that nothing should be read from stdin. This can be set
126 * on the command line.
127 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000128int stdin_null_flag = 0;
129
Damien Miller5428f641999-11-25 11:54:57 +1100130/*
Damien Millere11e1ea2010-08-03 16:04:46 +1000131 * Flag indicating that the current process should be backgrounded and
132 * a new slave launched in the foreground for ControlPersist.
133 */
134int need_controlpersist_detach = 0;
135
136/* Copies of flags for ControlPersist foreground slave */
137int ostdin_null_flag, ono_shell_flag, ono_tty_flag, otty_flag;
138
139/*
Damien Miller5428f641999-11-25 11:54:57 +1100140 * Flag indicating that ssh should fork after authentication. This is useful
Ben Lindstromf666fec2002-06-06 19:51:58 +0000141 * so that the passphrase can be entered manually, and then ssh goes to the
Damien Miller5428f641999-11-25 11:54:57 +1100142 * background.
143 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000144int fork_after_authentication_flag = 0;
145
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100146/* forward stdio to remote host and port */
147char *stdio_forward_host = NULL;
148int stdio_forward_port = 0;
149
Damien Miller5428f641999-11-25 11:54:57 +1100150/*
151 * General data structure for command line options and options configurable
152 * in configuration files. See readconf.h.
153 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000154Options options;
155
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000156/* optional user configfile */
157char *config = NULL;
158
Damien Miller5428f641999-11-25 11:54:57 +1100159/*
160 * Name of the host we are connecting to. This is the name given on the
161 * command line, or the HostName specified for the user-supplied name in a
162 * configuration file.
163 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000164char *host;
165
166/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100167struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000168
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000169/* Private host keys. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000170Sensitive sensitive_data;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000171
172/* Original real UID. */
173uid_t original_real_uid;
Ben Lindstromf9c48842002-06-11 16:37:51 +0000174uid_t original_effective_uid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000175
Damien Miller1383bd82000-04-06 12:32:37 +1000176/* command to be executed */
177Buffer command;
178
Damien Miller832562e2001-01-30 09:30:01 +1100179/* Should we execute a command or invoke a subsystem? */
180int subsystem_flag = 0;
181
Damien Miller2797f7f2002-04-23 21:09:44 +1000182/* # of replies received for global requests */
Darren Tucker9f407c42008-06-13 04:50:27 +1000183static int remote_forward_confirms_received = 0;
Damien Miller2797f7f2002-04-23 21:09:44 +1000184
Damien Miller8c4e18a2002-09-19 12:05:02 +1000185/* pid of proxycommand child process */
186pid_t proxy_command_pid = 0;
187
Damien Millerb1cbfa22008-05-19 16:00:08 +1000188/* mux.c */
189extern int muxserver_sock;
190extern u_int muxclient_command;
Damien Miller0e220db2004-06-15 10:34:08 +1000191
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000192/* Prints a help message to the user. This function never returns. */
193
Ben Lindstrombba81212001-06-25 05:01:22 +0000194static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000195usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000196{
Damien Miller50955102004-03-22 09:34:58 +1100197 fprintf(stderr,
Damien Millerc13c3ee2008-11-03 19:23:28 +1100198"usage: ssh [-1246AaCfgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]\n"
Darren Tucker895d6982005-10-03 18:18:05 +1000199" [-D [bind_address:]port] [-e escape_char] [-F configfile]\n"
Damien Miller048dc932010-02-12 09:22:04 +1100200" [-I pkcs11] [-i identity_file]\n"
201" [-L [bind_address:]port:host:hostport]\n"
Damien Millerf91ee4c2005-03-01 21:24:33 +1100202" [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
Damien Miller02faece2005-03-02 12:04:32 +1100203" [-R [bind_address:]port:host:hostport] [-S ctl_path]\n"
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100204" [-W host:port] [-w local_tun[:remote_tun]]\n"
205" [user@]hostname [command]\n"
Damien Miller50955102004-03-22 09:34:58 +1100206 );
Darren Tuckere9a9b712005-12-20 16:15:51 +1100207 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000208}
209
Ben Lindstrombba81212001-06-25 05:01:22 +0000210static int ssh_session(void);
211static int ssh_session2(void);
212static void load_public_identity_files(void);
Damien Millerb1cbfa22008-05-19 16:00:08 +1000213
214/* from muxclient.c */
215void muxclient(const char *);
216void muxserver_listen(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000217
Damien Miller95def091999-11-25 00:26:21 +1100218/*
219 * Main program for the ssh client.
220 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000221int
222main(int ac, char **av)
223{
Darren Tucker199b1342009-07-06 07:16:56 +1000224 int i, r, opt, exit_status, use_syslog;
225 char *p, *cp, *line, *argv0, buf[MAXPATHLEN];
Damien Miller95def091999-11-25 00:26:21 +1100226 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000227 struct passwd *pw;
Damien Miller67bd0622007-09-17 12:06:57 +1000228 int dummy, timeout_ms;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000229 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000230 extern char *optarg;
Damien Miller9651fe62005-06-26 08:55:25 +1000231 struct servent *sp;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100232 Forward fwd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000233
Darren Tuckerce321d82005-10-03 18:11:24 +1000234 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
235 sanitise_stdfd();
236
Damien Miller59d3d5b2003-08-22 09:34:41 +1000237 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000238 init_rng();
239
Damien Miller5428f641999-11-25 11:54:57 +1100240 /*
Damien Miller00d9ae22010-08-17 01:59:31 +1000241 * Discard other fds that are hanging around. These can cause problem
242 * with backgrounded ssh processes started by ControlPersist.
243 */
244 closefrom(STDERR_FILENO + 1);
245
246 /*
Damien Miller5428f641999-11-25 11:54:57 +1100247 * Save the original real uid. It will be needed later (uid-swapping
248 * may clobber the real uid).
249 */
Damien Miller95def091999-11-25 00:26:21 +1100250 original_real_uid = getuid();
251 original_effective_uid = geteuid();
Damien Millera8e06ce2003-11-21 23:48:55 +1100252
Damien Miller50b9a602002-09-04 16:50:06 +1000253 /*
254 * Use uid-swapping to give up root privileges for the duration of
255 * option processing. We will re-instantiate the rights when we are
256 * ready to create the privileged port, and will permanently drop
257 * them when the port has been created (actually, when the connection
258 * has been made, as we may need to create the port several times).
259 */
260 PRIV_END;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000261
Damien Miller05dd7952000-10-01 00:42:48 +1100262#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100263 /* If we are installed setuid root be careful to not drop core. */
264 if (original_real_uid != original_effective_uid) {
265 struct rlimit rlim;
266 rlim.rlim_cur = rlim.rlim_max = 0;
267 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
268 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000269 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100270#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000271 /* Get user data. */
272 pw = getpwuid(original_real_uid);
273 if (!pw) {
Damien Miller996acd22003-04-09 20:59:48 +1000274 logit("You don't exist, go away!");
Darren Tuckere9a9b712005-12-20 16:15:51 +1100275 exit(255);
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000276 }
277 /* Take a copy of the returned structure. */
278 pw = pwcopy(pw);
279
Damien Miller5428f641999-11-25 11:54:57 +1100280 /*
Damien Miller5428f641999-11-25 11:54:57 +1100281 * Set our umask to something reasonable, as some files are created
282 * with the default umask. This will make them world-readable but
283 * writable only by the owner, which is ok for all files for which we
284 * don't set the modes explicitly.
285 */
Damien Miller95def091999-11-25 00:26:21 +1100286 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000287
Darren Tuckerd6173c02008-06-13 04:52:53 +1000288 /*
289 * Initialize option structure to indicate that no values have been
290 * set.
291 */
Damien Miller95def091999-11-25 00:26:21 +1100292 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000293
Damien Miller95def091999-11-25 00:26:21 +1100294 /* Parse command-line arguments. */
295 host = NULL;
Damien Millere272a5b2008-11-03 19:22:37 +1100296 use_syslog = 0;
Darren Tucker72efd742009-06-21 17:48:00 +1000297 argv0 = av[0];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000298
Damien Miller2ecb6bd2006-03-15 12:03:53 +1100299 again:
Darren Tuckerd6173c02008-06-13 04:52:53 +1000300 while ((opt = getopt(ac, av, "1246ab:c:e:fgi:kl:m:no:p:qstvx"
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100301 "ACD:F:I:KL:MNO:PR:S:TVw:W:XYy")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100302 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000303 case '1':
304 options.protocol = SSH_PROTO_1;
305 break;
Damien Miller4af51302000-04-16 11:18:38 +1000306 case '2':
307 options.protocol = SSH_PROTO_2;
308 break;
Damien Miller34132e52000-01-14 15:45:46 +1100309 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000310 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100311 break;
Damien Miller34132e52000-01-14 15:45:46 +1100312 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000313 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100314 break;
Damien Miller95def091999-11-25 00:26:21 +1100315 case 'n':
316 stdin_null_flag = 1;
317 break;
Damien Miller95def091999-11-25 00:26:21 +1100318 case 'f':
319 fork_after_authentication_flag = 1;
320 stdin_null_flag = 1;
321 break;
Damien Miller95def091999-11-25 00:26:21 +1100322 case 'x':
323 options.forward_x11 = 0;
324 break;
Damien Miller95def091999-11-25 00:26:21 +1100325 case 'X':
326 options.forward_x11 = 1;
327 break;
Damien Millere272a5b2008-11-03 19:22:37 +1100328 case 'y':
329 use_syslog = 1;
330 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000331 case 'Y':
332 options.forward_x11 = 1;
333 options.forward_x11_trusted = 1;
334 break;
Damien Miller95def091999-11-25 00:26:21 +1100335 case 'g':
336 options.gateway_ports = 1;
337 break;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100338 case 'O':
Damien Millere1537f92010-01-26 13:26:22 +1100339 if (stdio_forward_host != NULL)
340 fatal("Cannot specify multiplexing "
341 "command with -W");
342 else if (muxclient_command != 0)
343 fatal("Multiplexing command already specified");
Darren Tucker7ebfc102004-11-07 20:06:19 +1100344 if (strcmp(optarg, "check") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000345 muxclient_command = SSHMUX_COMMAND_ALIVE_CHECK;
Damien Miller388f6fc2010-05-21 14:57:35 +1000346 else if (strcmp(optarg, "forward") == 0)
347 muxclient_command = SSHMUX_COMMAND_FORWARD;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100348 else if (strcmp(optarg, "exit") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000349 muxclient_command = SSHMUX_COMMAND_TERMINATE;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100350 else
351 fatal("Invalid multiplex command.");
352 break;
Damien Miller147bba32002-09-04 16:46:06 +1000353 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100354 options.use_privileged_port = 0;
355 break;
Damien Miller95def091999-11-25 00:26:21 +1100356 case 'a':
357 options.forward_agent = 0;
358 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000359 case 'A':
360 options.forward_agent = 1;
361 break;
Damien Miller95def091999-11-25 00:26:21 +1100362 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100363 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100364 break;
Darren Tucker415bddc2007-06-12 23:43:16 +1000365 case 'K':
366 options.gss_authentication = 1;
367 options.gss_deleg_creds = 1;
368 break;
Damien Miller95def091999-11-25 00:26:21 +1100369 case 'i':
370 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000371 fprintf(stderr, "Warning: Identity file %s "
Damien Miller3eb48b62005-03-01 21:15:46 +1100372 "not accessible: %s.\n", optarg,
373 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100374 break;
375 }
Damien Millerf4614452001-07-14 12:18:10 +1000376 if (options.num_identity_files >=
377 SSH_MAX_IDENTITY_FILES)
378 fatal("Too many identity files specified "
379 "(max %d)", SSH_MAX_IDENTITY_FILES);
380 options.identity_files[options.num_identity_files++] =
381 xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100382 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000383 case 'I':
Damien Miller7ea845e2010-02-12 09:21:02 +1100384#ifdef ENABLE_PKCS11
385 options.pkcs11_provider = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000386#else
Damien Miller7ea845e2010-02-12 09:21:02 +1100387 fprintf(stderr, "no support for PKCS#11.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000388#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000389 break;
Damien Miller95def091999-11-25 00:26:21 +1100390 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000391 if (tty_flag)
392 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100393 tty_flag = 1;
394 break;
Damien Miller95def091999-11-25 00:26:21 +1100395 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000396 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100397 debug_flag = 1;
398 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000399 } else {
400 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
401 options.log_level++;
Damien Millere4340be2000-09-16 13:29:08 +1100402 break;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000403 }
Darren Tuckere9bf9842004-11-05 20:05:32 +1100404 /* FALLTHROUGH */
Damien Miller95def091999-11-25 00:26:21 +1100405 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100406 fprintf(stderr, "%s, %s\n",
Damien Miller2aa6d3c2004-09-12 16:53:04 +1000407 SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
Damien Miller95def091999-11-25 00:26:21 +1100408 if (opt == 'V')
409 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100410 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100411 case 'w':
Damien Miller7b58e802005-12-13 19:33:19 +1100412 if (options.tun_open == -1)
413 options.tun_open = SSH_TUNMODE_DEFAULT;
Damien Millerd27b9472005-12-13 19:29:02 +1100414 options.tun_local = a2tun(optarg, &options.tun_remote);
Damien Miller7b58e802005-12-13 19:33:19 +1100415 if (options.tun_local == SSH_TUNID_ERR) {
Darren Tuckerd6173c02008-06-13 04:52:53 +1000416 fprintf(stderr,
417 "Bad tun device '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100418 exit(255);
Damien Millerd27b9472005-12-13 19:29:02 +1100419 }
420 break;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100421 case 'W':
Damien Millere1537f92010-01-26 13:26:22 +1100422 if (stdio_forward_host != NULL)
423 fatal("stdio forward already specified");
424 if (muxclient_command != 0)
425 fatal("Cannot specify stdio forward with -O");
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100426 if (parse_forward(&fwd, optarg, 1, 0)) {
427 stdio_forward_host = fwd.listen_host;
428 stdio_forward_port = fwd.listen_port;
429 xfree(fwd.connect_host);
430 } else {
431 fprintf(stderr,
432 "Bad stdio forwarding specification '%s'\n",
433 optarg);
434 exit(255);
435 }
436 no_tty_flag = 1;
437 no_shell_flag = 1;
438 options.clear_forwardings = 1;
439 options.exit_on_forward_failure = 1;
440 break;
Damien Miller95def091999-11-25 00:26:21 +1100441 case 'q':
442 options.log_level = SYSLOG_LEVEL_QUIET;
443 break;
Damien Miller95def091999-11-25 00:26:21 +1100444 case 'e':
445 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000446 (u_char) optarg[1] >= 64 &&
447 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000448 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100449 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000450 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100451 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000452 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100453 else {
Damien Millerf4614452001-07-14 12:18:10 +1000454 fprintf(stderr, "Bad escape character '%s'.\n",
455 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100456 exit(255);
Damien Miller95def091999-11-25 00:26:21 +1100457 }
458 break;
Damien Miller95def091999-11-25 00:26:21 +1100459 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000460 if (ciphers_valid(optarg)) {
461 /* SSH2 only */
462 options.ciphers = xstrdup(optarg);
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000463 options.cipher = SSH_CIPHER_INVALID;
Damien Millereba71ba2000-04-29 23:57:08 +1000464 } else {
465 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100466 options.cipher = cipher_number(optarg);
467 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000468 fprintf(stderr,
469 "Unknown cipher type '%s'\n",
470 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100471 exit(255);
Damien Millereba71ba2000-04-29 23:57:08 +1000472 }
Damien Millerf4614452001-07-14 12:18:10 +1000473 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100474 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000475 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100476 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000477 else
Damien Millere39cacc2000-11-29 12:18:44 +1100478 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100479 }
480 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000481 case 'm':
482 if (mac_valid(optarg))
483 options.macs = xstrdup(optarg);
484 else {
Damien Millerf4614452001-07-14 12:18:10 +1000485 fprintf(stderr, "Unknown mac type '%s'\n",
486 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100487 exit(255);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000488 }
489 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000490 case 'M':
Damien Millerd14b1e72005-06-16 13:19:41 +1000491 if (options.control_master == SSHCTL_MASTER_YES)
492 options.control_master = SSHCTL_MASTER_ASK;
493 else
494 options.control_master = SSHCTL_MASTER_YES;
Damien Miller0e220db2004-06-15 10:34:08 +1000495 break;
Damien Miller95def091999-11-25 00:26:21 +1100496 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000497 options.port = a2port(optarg);
Damien Miller3dc71ad2009-01-28 16:31:22 +1100498 if (options.port <= 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000499 fprintf(stderr, "Bad port '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100500 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000501 }
Damien Miller95def091999-11-25 00:26:21 +1100502 break;
Damien Miller95def091999-11-25 00:26:21 +1100503 case 'l':
504 options.user = optarg;
505 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000506
Damien Miller95def091999-11-25 00:26:21 +1100507 case 'L':
Damien Miller4bf648f2009-02-14 16:28:21 +1100508 if (parse_forward(&fwd, optarg, 0, 0))
Damien Millerf91ee4c2005-03-01 21:24:33 +1100509 add_local_forward(&options, &fwd);
510 else {
Damien Millerf4614452001-07-14 12:18:10 +1000511 fprintf(stderr,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100512 "Bad local forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000513 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100514 exit(255);
Ben Lindstrom1a174712001-09-12 17:56:15 +0000515 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100516 break;
517
518 case 'R':
Damien Miller4bf648f2009-02-14 16:28:21 +1100519 if (parse_forward(&fwd, optarg, 0, 1)) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100520 add_remote_forward(&options, &fwd);
521 } else {
522 fprintf(stderr,
523 "Bad remote forwarding specification "
524 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100525 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100526 }
Damien Miller95def091999-11-25 00:26:21 +1100527 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000528
529 case 'D':
Damien Miller4bf648f2009-02-14 16:28:21 +1100530 if (parse_forward(&fwd, optarg, 1, 0)) {
Damien Millera699d952008-11-03 19:27:34 +1100531 add_local_forward(&options, &fwd);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100532 } else {
Damien Millera699d952008-11-03 19:27:34 +1100533 fprintf(stderr,
534 "Bad dynamic forwarding specification "
535 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100536 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000537 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000538 break;
539
Damien Miller95def091999-11-25 00:26:21 +1100540 case 'C':
541 options.compression = 1;
542 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000543 case 'N':
544 no_shell_flag = 1;
545 no_tty_flag = 1;
546 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000547 case 'T':
548 no_tty_flag = 1;
549 break;
Damien Miller95def091999-11-25 00:26:21 +1100550 case 'o':
551 dummy = 1;
Damien Miller9836cf82003-12-17 16:30:06 +1100552 line = xstrdup(optarg);
Damien Millerf4614452001-07-14 12:18:10 +1000553 if (process_config_line(&options, host ? host : "",
Damien Miller9836cf82003-12-17 16:30:06 +1100554 line, "command-line", 0, &dummy) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100555 exit(255);
Damien Miller9836cf82003-12-17 16:30:06 +1100556 xfree(line);
Damien Miller95def091999-11-25 00:26:21 +1100557 break;
Damien Miller832562e2001-01-30 09:30:01 +1100558 case 's':
559 subsystem_flag = 1;
560 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000561 case 'S':
562 if (options.control_path != NULL)
563 free(options.control_path);
564 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000565 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000566 case 'b':
567 options.bind_address = optarg;
568 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000569 case 'F':
570 config = optarg;
571 break;
Damien Miller95def091999-11-25 00:26:21 +1100572 default:
573 usage();
574 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000575 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000576
Damien Millerf4614452001-07-14 12:18:10 +1000577 ac -= optind;
578 av += optind;
579
Darren Tuckerb8c884a2010-01-08 18:53:43 +1100580 if (ac > 0 && !host) {
Ben Lindstromc276c122002-12-23 02:14:51 +0000581 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000582 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000583 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000584 if (cp == NULL || cp == p)
585 usage();
586 options.user = p;
587 *cp = '\0';
588 host = ++cp;
589 } else
590 host = *av;
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000591 if (ac > 1) {
592 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000593 goto again;
594 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000595 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000596 }
597
Damien Miller95def091999-11-25 00:26:21 +1100598 /* Check that we got a host name. */
599 if (!host)
600 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000601
Damien Miller4314c2b2010-09-10 11:12:09 +1000602 OpenSSL_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100603 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100604
Damien Miller95def091999-11-25 00:26:21 +1100605 /* Initialize the command to execute on remote host. */
606 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000607
Damien Miller5428f641999-11-25 11:54:57 +1100608 /*
609 * Save the command to execute on the remote host in a buffer. There
610 * is no limit on the length of the command, except by the maximum
611 * packet size. Also sets the tty flag if there is no command.
612 */
Damien Millerf4614452001-07-14 12:18:10 +1000613 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100614 /* No command specified - execute shell on a tty. */
615 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100616 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000617 fprintf(stderr,
618 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100619 usage();
620 }
Damien Miller95def091999-11-25 00:26:21 +1100621 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000622 /* A command has been specified. Store it into the buffer. */
623 for (i = 0; i < ac; i++) {
624 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100625 buffer_append(&command, " ", 1);
626 buffer_append(&command, av[i], strlen(av[i]));
627 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000628 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000629
Damien Miller95def091999-11-25 00:26:21 +1100630 /* Cannot fork to background if no command. */
Darren Tuckerd6173c02008-06-13 04:52:53 +1000631 if (fork_after_authentication_flag && buffer_len(&command) == 0 &&
632 !no_shell_flag)
633 fatal("Cannot fork into background without a command "
634 "to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000635
Damien Miller95def091999-11-25 00:26:21 +1100636 /* Allocate a tty by default if no command specified. */
637 if (buffer_len(&command) == 0)
638 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000639
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000640 /* Force no tty */
Damien Millerdeb5a142010-04-16 15:52:43 +1000641 if (no_tty_flag || muxclient_command != 0)
Ben Lindstromc72745a2000-12-02 19:03:54 +0000642 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100643 /* Do not allocate a tty if stdin is not a tty. */
Damien Millerddee5752005-05-26 12:05:05 +1000644 if ((!isatty(fileno(stdin)) || stdin_null_flag) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100645 if (tty_flag)
Darren Tuckerd6173c02008-06-13 04:52:53 +1000646 logit("Pseudo-terminal will not be allocated because "
647 "stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100648 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000649 }
Damien Miller1383bd82000-04-06 12:32:37 +1000650
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000651 /*
652 * Initialize "log" output. Since we are the client all output
653 * actually goes to stderr.
654 */
Darren Tucker72efd742009-06-21 17:48:00 +1000655 log_init(argv0,
Darren Tuckerd6173c02008-06-13 04:52:53 +1000656 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
Damien Millere272a5b2008-11-03 19:22:37 +1100657 SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000658
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000659 /*
660 * Read per-user configuration file. Ignore the system wide config
661 * file if the user specifies a config file on the command line.
662 */
663 if (config != NULL) {
Damien Miller914420f2004-04-20 20:14:07 +1000664 if (!read_config_file(config, host, &options, 0))
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000665 fatal("Can't open user config file %.100s: "
666 "%.100s", config, strerror(errno));
Damien Miller80163902007-01-05 16:30:16 +1100667 } else {
Darren Tucker199b1342009-07-06 07:16:56 +1000668 r = snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir,
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000669 _PATH_SSH_USER_CONFFILE);
Darren Tucker199b1342009-07-06 07:16:56 +1000670 if (r > 0 && (size_t)r < sizeof(buf))
671 (void)read_config_file(buf, host, &options, 1);
Ben Lindstrom83f07d12001-10-03 17:22:29 +0000672
673 /* Read systemwide configuration file after use config. */
Darren Tuckerfc959702004-07-17 16:12:08 +1000674 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host,
Damien Miller57a44762004-04-20 20:11:57 +1000675 &options, 0);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000676 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000677
Damien Miller95def091999-11-25 00:26:21 +1100678 /* Fill configuration defaults. */
679 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000680
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000681 channel_set_af(options.address_family);
682
Damien Miller95def091999-11-25 00:26:21 +1100683 /* reinit */
Darren Tucker72efd742009-06-21 17:48:00 +1000684 log_init(argv0, options.log_level, SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000685
Damien Miller60bc5172001-03-19 09:38:15 +1100686 seed_rng();
687
Damien Miller95def091999-11-25 00:26:21 +1100688 if (options.user == NULL)
689 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000690
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000691 /* Get default port if port has not been set. */
692 if (options.port == 0) {
693 sp = getservbyname(SSH_SERVICE_NAME, "tcp");
694 options.port = sp ? ntohs(sp->s_port) : SSH_DEFAULT_PORT;
695 }
696
Damien Millerd0244d42010-07-16 13:56:43 +1000697 if (options.hostname != NULL) {
698 host = percent_expand(options.hostname,
699 "h", host, (char *)NULL);
700 }
701
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000702 if (options.local_command != NULL) {
703 char thishost[NI_MAXHOST];
704
705 if (gethostname(thishost, sizeof(thishost)) == -1)
706 fatal("gethostname: %s", strerror(errno));
707 snprintf(buf, sizeof(buf), "%d", options.port);
708 debug3("expanding LocalCommand: %s", options.local_command);
709 cp = options.local_command;
710 options.local_command = percent_expand(cp, "d", pw->pw_dir,
Damien Millerd0244d42010-07-16 13:56:43 +1000711 "h", host, "l", thishost, "n", host, "r", options.user,
712 "p", buf, "u", pw->pw_name, (char *)NULL);
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000713 debug3("expanded LocalCommand: %s", options.local_command);
714 xfree(cp);
715 }
716
Darren Tucker3f521e22003-07-03 16:20:42 +1000717 /* force lowercase for hostkey matching */
718 if (options.host_key_alias != NULL) {
719 for (p = options.host_key_alias; *p; p++)
720 if (isupper(*p))
Damien Miller1d2b6702006-03-26 14:09:54 +1100721 *p = (char)tolower(*p);
Darren Tucker3f521e22003-07-03 16:20:42 +1000722 }
723
Damien Miller9f1e33a2003-02-24 11:57:32 +1100724 if (options.proxy_command != NULL &&
Darren Tucker32e42c72007-12-02 23:01:03 +1100725 strcmp(options.proxy_command, "none") == 0) {
726 xfree(options.proxy_command);
Damien Miller9f1e33a2003-02-24 11:57:32 +1100727 options.proxy_command = NULL;
Darren Tucker32e42c72007-12-02 23:01:03 +1100728 }
Damien Miller8f74c8f2005-06-26 08:56:03 +1000729 if (options.control_path != NULL &&
Darren Tucker32e42c72007-12-02 23:01:03 +1100730 strcmp(options.control_path, "none") == 0) {
731 xfree(options.control_path);
Damien Miller8f74c8f2005-06-26 08:56:03 +1000732 options.control_path = NULL;
Darren Tucker32e42c72007-12-02 23:01:03 +1100733 }
Damien Miller9f1e33a2003-02-24 11:57:32 +1100734
Damien Miller0e220db2004-06-15 10:34:08 +1000735 if (options.control_path != NULL) {
Damien Miller6b1d53c2006-03-31 23:13:21 +1100736 char thishost[NI_MAXHOST];
Damien Miller3ec54c72006-03-15 11:30:13 +1100737
Damien Miller6b1d53c2006-03-31 23:13:21 +1100738 if (gethostname(thishost, sizeof(thishost)) == -1)
Damien Miller3ec54c72006-03-15 11:30:13 +1100739 fatal("gethostname: %s", strerror(errno));
Damien Miller6476cad2005-06-16 13:18:34 +1000740 snprintf(buf, sizeof(buf), "%d", options.port);
741 cp = tilde_expand_filename(options.control_path,
742 original_real_uid);
Darren Tucker32e42c72007-12-02 23:01:03 +1100743 xfree(options.control_path);
Damien Miller6476cad2005-06-16 13:18:34 +1000744 options.control_path = percent_expand(cp, "p", buf, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +1100745 "r", options.user, "l", thishost, (char *)NULL);
Damien Miller6476cad2005-06-16 13:18:34 +1000746 xfree(cp);
Damien Miller0e220db2004-06-15 10:34:08 +1000747 }
Damien Millerb1cbfa22008-05-19 16:00:08 +1000748 if (muxclient_command != 0 && options.control_path == NULL)
Darren Tucker0814d312005-06-01 23:08:51 +1000749 fatal("No ControlPath specified for \"-O\" command");
Damien Millerd14b1e72005-06-16 13:19:41 +1000750 if (options.control_path != NULL)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000751 muxclient(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +1000752
Damien Miller67bd0622007-09-17 12:06:57 +1000753 timeout_ms = options.connection_timeout * 1000;
754
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000755 /* Open a connection to the remote host. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000756 if (ssh_connect(host, &hostaddr, options.port,
Damien Miller67bd0622007-09-17 12:06:57 +1000757 options.address_family, options.connection_attempts, &timeout_ms,
758 options.tcp_keep_alive,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000759#ifdef HAVE_CYGWIN
760 options.use_privileged_port,
761#else
Ben Lindstromf9c48842002-06-11 16:37:51 +0000762 original_effective_uid == 0 && options.use_privileged_port,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000763#endif
Ben Lindstromda394ca2002-06-12 16:11:12 +0000764 options.proxy_command) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100765 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000766
Damien Miller67bd0622007-09-17 12:06:57 +1000767 if (timeout_ms > 0)
768 debug3("timeout: %d ms remain after connect", timeout_ms);
769
Damien Miller5428f641999-11-25 11:54:57 +1100770 /*
771 * If we successfully made the connection, load the host private key
772 * in case we will need it later for combined rsa-rhosts
773 * authentication. This must be done before releasing extra
774 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +0000775 * If we cannot access the private keys, load the public keys
776 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +1100777 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000778 sensitive_data.nkeys = 0;
779 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000780 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +0000781 if (options.rhosts_rsa_authentication ||
782 options.hostbased_authentication) {
Damien Millereb8b60e2010-08-31 22:41:14 +1000783 sensitive_data.nkeys = 7;
Damien Millerddd63ab2006-03-31 23:10:51 +1100784 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000785 sizeof(Key));
Ben Lindstromf9c48842002-06-11 16:37:51 +0000786
787 PRIV_START;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000788 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Darren Tucker232b76f2006-05-06 17:41:51 +1000789 _PATH_HOST_KEY_FILE, "", NULL, NULL);
Damien Millerc1583312010-08-05 13:04:50 +1000790 sensitive_data.keys[1] = key_load_private_cert(KEY_DSA,
791 _PATH_HOST_DSA_KEY_FILE, "", NULL);
Damien Millereb8b60e2010-08-31 22:41:14 +1000792 sensitive_data.keys[2] = key_load_private_cert(KEY_ECDSA,
793 _PATH_HOST_ECDSA_KEY_FILE, "", NULL);
794 sensitive_data.keys[3] = key_load_private_cert(KEY_RSA,
Damien Millerc1583312010-08-05 13:04:50 +1000795 _PATH_HOST_RSA_KEY_FILE, "", NULL);
Damien Millereb8b60e2010-08-31 22:41:14 +1000796 sensitive_data.keys[4] = key_load_private_type(KEY_DSA,
Darren Tucker232b76f2006-05-06 17:41:51 +1000797 _PATH_HOST_DSA_KEY_FILE, "", NULL, NULL);
Damien Millereb8b60e2010-08-31 22:41:14 +1000798 sensitive_data.keys[5] = key_load_private_type(KEY_ECDSA,
799 _PATH_HOST_ECDSA_KEY_FILE, "", NULL, NULL);
800 sensitive_data.keys[6] = key_load_private_type(KEY_RSA,
Darren Tucker232b76f2006-05-06 17:41:51 +1000801 _PATH_HOST_RSA_KEY_FILE, "", NULL, NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +0000802 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000803
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +0000804 if (options.hostbased_authentication == 1 &&
805 sensitive_data.keys[0] == NULL &&
Damien Millereb8b60e2010-08-31 22:41:14 +1000806 sensitive_data.keys[4] == NULL &&
807 sensitive_data.keys[5] == NULL &&
808 sensitive_data.keys[6] == NULL) {
Damien Millerc1583312010-08-05 13:04:50 +1000809 sensitive_data.keys[1] = key_load_cert(
810 _PATH_HOST_DSA_KEY_FILE);
811 sensitive_data.keys[2] = key_load_cert(
Damien Millereb8b60e2010-08-31 22:41:14 +1000812 _PATH_HOST_ECDSA_KEY_FILE);
813 sensitive_data.keys[3] = key_load_cert(
Damien Millerc1583312010-08-05 13:04:50 +1000814 _PATH_HOST_RSA_KEY_FILE);
Damien Millerc1583312010-08-05 13:04:50 +1000815 sensitive_data.keys[4] = key_load_public(
Damien Millereb8b60e2010-08-31 22:41:14 +1000816 _PATH_HOST_DSA_KEY_FILE, NULL);
817 sensitive_data.keys[5] = key_load_public(
818 _PATH_HOST_ECDSA_KEY_FILE, NULL);
819 sensitive_data.keys[6] = key_load_public(
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000820 _PATH_HOST_RSA_KEY_FILE, NULL);
821 sensitive_data.external_keysign = 1;
822 }
Damien Miller95def091999-11-25 00:26:21 +1100823 }
Damien Miller5428f641999-11-25 11:54:57 +1100824 /*
825 * Get rid of any extra privileges that we may have. We will no
826 * longer need them. Also, extra privileges could make it very hard
827 * to read identity files and other non-world-readable files from the
828 * user's home directory if it happens to be on a NFS volume where
829 * root is mapped to nobody.
830 */
Darren Tucker25f60a72004-08-15 17:23:34 +1000831 if (original_effective_uid == 0) {
832 PRIV_START;
833 permanently_set_uid(pw);
834 }
Damien Miller95def091999-11-25 00:26:21 +1100835
Damien Miller5428f641999-11-25 11:54:57 +1100836 /*
837 * Now that we are back to our own permissions, create ~/.ssh
Damien Miller788f2122005-11-05 15:14:59 +1100838 * directory if it doesn't already exist.
Damien Miller5428f641999-11-25 11:54:57 +1100839 */
Darren Tucker199b1342009-07-06 07:16:56 +1000840 r = snprintf(buf, sizeof buf, "%s%s%s", pw->pw_dir,
Darren Tuckerd6173c02008-06-13 04:52:53 +1000841 strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
Darren Tucker199b1342009-07-06 07:16:56 +1000842 if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) < 0)
Damien Millerbe484b52000-07-15 14:14:16 +1000843 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100844 error("Could not create directory '%.200s'.", buf);
845
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000846 /* load options.identity_files */
847 load_public_identity_files();
848
849 /* Expand ~ in known host file names. */
850 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100851 options.system_hostfile =
852 tilde_expand_filename(options.system_hostfile, original_real_uid);
853 options.user_hostfile =
854 tilde_expand_filename(options.user_hostfile, original_real_uid);
855 options.system_hostfile2 =
856 tilde_expand_filename(options.system_hostfile2, original_real_uid);
857 options.user_hostfile2 =
858 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100859
Damien Miller07cd5892001-11-12 10:52:03 +1100860 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
861
Darren Tuckerd6173c02008-06-13 04:52:53 +1000862 /* Log into the remote system. Never returns if the login fails. */
Damien Miller67bd0622007-09-17 12:06:57 +1000863 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr,
864 pw, timeout_ms);
Damien Miller95def091999-11-25 00:26:21 +1100865
Damien Miller383ffe62010-06-26 10:02:03 +1000866 if (packet_connection_is_on_socket()) {
867 verbose("Authenticated to %s ([%s]:%d).", host,
868 get_remote_ipaddr(), get_remote_port());
869 } else {
870 verbose("Authenticated to %s (via proxy).", host);
871 }
872
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000873 /* We no longer need the private host keys. Clear them now. */
874 if (sensitive_data.nkeys != 0) {
875 for (i = 0; i < sensitive_data.nkeys; i++) {
876 if (sensitive_data.keys[i] != NULL) {
877 /* Destroys contents safely */
878 debug3("clear hostkey %d", i);
879 key_free(sensitive_data.keys[i]);
880 sensitive_data.keys[i] = NULL;
881 }
882 }
883 xfree(sensitive_data.keys);
884 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000885 for (i = 0; i < options.num_identity_files; i++) {
886 if (options.identity_files[i]) {
887 xfree(options.identity_files[i]);
888 options.identity_files[i] = NULL;
889 }
890 if (options.identity_keys[i]) {
891 key_free(options.identity_keys[i]);
892 options.identity_keys[i] = NULL;
893 }
894 }
Damien Miller95def091999-11-25 00:26:21 +1100895
Damien Miller1383bd82000-04-06 12:32:37 +1000896 exit_status = compat20 ? ssh_session2() : ssh_session();
897 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +1000898
Damien Millerb1cbfa22008-05-19 16:00:08 +1000899 if (options.control_path != NULL && muxserver_sock != -1)
Damien Miller0e220db2004-06-15 10:34:08 +1000900 unlink(options.control_path);
901
Damien Miller8c4e18a2002-09-19 12:05:02 +1000902 /*
Damien Millera8e06ce2003-11-21 23:48:55 +1100903 * Send SIGHUP to proxy command if used. We don't wait() in
Damien Miller8c4e18a2002-09-19 12:05:02 +1000904 * case it hangs and instead rely on init to reap the child
905 */
906 if (proxy_command_pid > 1)
907 kill(proxy_command_pid, SIGHUP);
908
Damien Miller1383bd82000-04-06 12:32:37 +1000909 return exit_status;
910}
911
Damien Millere11e1ea2010-08-03 16:04:46 +1000912static void
913control_persist_detach(void)
914{
915 pid_t pid;
Damien Miller00d9ae22010-08-17 01:59:31 +1000916 int devnull;
Damien Millere11e1ea2010-08-03 16:04:46 +1000917
918 debug("%s: backgrounding master process", __func__);
919
920 /*
921 * master (current process) into the background, and make the
922 * foreground process a client of the backgrounded master.
923 */
924 switch ((pid = fork())) {
925 case -1:
926 fatal("%s: fork: %s", __func__, strerror(errno));
927 case 0:
928 /* Child: master process continues mainloop */
929 break;
930 default:
931 /* Parent: set up mux slave to connect to backgrounded master */
932 debug2("%s: background process is %ld", __func__, (long)pid);
933 stdin_null_flag = ostdin_null_flag;
934 no_shell_flag = ono_shell_flag;
935 no_tty_flag = ono_tty_flag;
936 tty_flag = otty_flag;
937 close(muxserver_sock);
938 muxserver_sock = -1;
939 muxclient(options.control_path);
940 /* muxclient() doesn't return on success. */
941 fatal("Failed to connect to new control master");
942 }
Damien Miller00d9ae22010-08-17 01:59:31 +1000943 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
944 error("%s: open(\"/dev/null\"): %s", __func__,
945 strerror(errno));
946 } else {
947 if (dup2(devnull, STDIN_FILENO) == -1 ||
948 dup2(devnull, STDOUT_FILENO) == -1)
949 error("%s: dup2: %s", __func__, strerror(errno));
950 if (devnull > STDERR_FILENO)
951 close(devnull);
952 }
Damien Millere11e1ea2010-08-03 16:04:46 +1000953}
954
955/* Do fork() after authentication. Used by "ssh -f" */
956static void
957fork_postauth(void)
958{
959 if (need_controlpersist_detach)
960 control_persist_detach();
961 debug("forking to background");
962 fork_after_authentication_flag = 0;
963 if (daemon(1, 1) < 0)
964 fatal("daemon() failed: %.200s", strerror(errno));
965}
966
Darren Tucker9f407c42008-06-13 04:50:27 +1000967/* Callback for remote forward global requests */
968static void
969ssh_confirm_remote_forward(int type, u_int32_t seq, void *ctxt)
970{
971 Forward *rfwd = (Forward *)ctxt;
972
Damien Miller4bf648f2009-02-14 16:28:21 +1100973 /* XXX verbose() on failure? */
Darren Tucker9f407c42008-06-13 04:50:27 +1000974 debug("remote forward %s for: listen %d, connect %s:%d",
975 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
976 rfwd->listen_port, rfwd->connect_host, rfwd->connect_port);
Damien Miller4bf648f2009-02-14 16:28:21 +1100977 if (type == SSH2_MSG_REQUEST_SUCCESS && rfwd->listen_port == 0) {
Damien Miller388f6fc2010-05-21 14:57:35 +1000978 rfwd->allocated_port = packet_get_int();
Damien Miller4bf648f2009-02-14 16:28:21 +1100979 logit("Allocated port %u for remote forward to %s:%d",
Damien Miller388f6fc2010-05-21 14:57:35 +1000980 rfwd->allocated_port,
981 rfwd->connect_host, rfwd->connect_port);
Damien Miller4bf648f2009-02-14 16:28:21 +1100982 }
983
Darren Tucker9f407c42008-06-13 04:50:27 +1000984 if (type == SSH2_MSG_REQUEST_FAILURE) {
985 if (options.exit_on_forward_failure)
986 fatal("Error: remote port forwarding failed for "
987 "listen port %d", rfwd->listen_port);
988 else
989 logit("Warning: remote port forwarding failed for "
990 "listen port %d", rfwd->listen_port);
991 }
Darren Tucker9a2a6092008-07-04 12:53:50 +1000992 if (++remote_forward_confirms_received == options.num_remote_forwards) {
Darren Tucker9f407c42008-06-13 04:50:27 +1000993 debug("All remote forwarding requests processed");
Damien Millere11e1ea2010-08-03 16:04:46 +1000994 if (fork_after_authentication_flag)
995 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +1000996 }
Darren Tucker9f407c42008-06-13 04:50:27 +1000997}
998
Ben Lindstrombba81212001-06-25 05:01:22 +0000999static void
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001000client_cleanup_stdio_fwd(int id, void *arg)
1001{
1002 debug("stdio forwarding: done");
1003 cleanup_exit(0);
1004}
1005
1006static int
1007client_setup_stdio_fwd(const char *host_to_connect, u_short port_to_connect)
1008{
1009 Channel *c;
Damien Millere1537f92010-01-26 13:26:22 +11001010 int in, out;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001011
1012 debug3("client_setup_stdio_fwd %s:%d", host_to_connect,
1013 port_to_connect);
Damien Millere1537f92010-01-26 13:26:22 +11001014
1015 in = dup(STDIN_FILENO);
1016 out = dup(STDOUT_FILENO);
1017 if (in < 0 || out < 0)
1018 fatal("channel_connect_stdio_fwd: dup() in/out failed");
1019
1020 if ((c = channel_connect_stdio_fwd(host_to_connect, port_to_connect,
1021 in, out)) == NULL)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001022 return 0;
1023 channel_register_cleanup(c->self, client_cleanup_stdio_fwd, 0);
1024 return 1;
1025}
1026
1027static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001028ssh_init_forwarding(void)
1029{
Kevin Steves12057502001-02-05 14:54:34 +00001030 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001031 int i;
Kevin Steves12057502001-02-05 14:54:34 +00001032
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001033 if (stdio_forward_host != NULL) {
1034 if (!compat20) {
1035 fatal("stdio forwarding require Protocol 2");
1036 }
1037 if (!client_setup_stdio_fwd(stdio_forward_host,
1038 stdio_forward_port))
1039 fatal("Failed to connect in stdio forward mode.");
1040 }
1041
Damien Miller0bc1bd82000-11-13 22:57:25 +11001042 /* Initiate local TCP/IP port forwardings. */
1043 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001044 debug("Local connections to %.200s:%d forwarded to remote "
1045 "address %.200s:%d",
Darren Tucker47eede72005-03-14 23:08:12 +11001046 (options.local_forwards[i].listen_host == NULL) ?
1047 (options.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001048 options.local_forwards[i].listen_host,
1049 options.local_forwards[i].listen_port,
1050 options.local_forwards[i].connect_host,
1051 options.local_forwards[i].connect_port);
Damien Millerb16461c2002-01-22 23:29:22 +11001052 success += channel_setup_local_fwd_listener(
Damien Millerf91ee4c2005-03-01 21:24:33 +11001053 options.local_forwards[i].listen_host,
1054 options.local_forwards[i].listen_port,
1055 options.local_forwards[i].connect_host,
1056 options.local_forwards[i].connect_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11001057 options.gateway_ports);
1058 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10001059 if (i > 0 && success != i && options.exit_on_forward_failure)
1060 fatal("Could not request local forwarding.");
Kevin Steves12057502001-02-05 14:54:34 +00001061 if (i > 0 && success == 0)
1062 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001063
1064 /* Initiate remote TCP/IP port forwardings. */
1065 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001066 debug("Remote connections from %.200s:%d forwarded to "
1067 "local address %.200s:%d",
Damien Miller46d38de2005-07-17 17:02:09 +10001068 (options.remote_forwards[i].listen_host == NULL) ?
Damien Milleraa3bb102005-11-05 15:12:59 +11001069 "LOCALHOST" : options.remote_forwards[i].listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +11001070 options.remote_forwards[i].listen_port,
1071 options.remote_forwards[i].connect_host,
1072 options.remote_forwards[i].connect_port);
Darren Tuckere7d4b192006-07-12 22:17:10 +10001073 if (channel_request_remote_forwarding(
Damien Millerf91ee4c2005-03-01 21:24:33 +11001074 options.remote_forwards[i].listen_host,
1075 options.remote_forwards[i].listen_port,
1076 options.remote_forwards[i].connect_host,
Darren Tuckere7d4b192006-07-12 22:17:10 +10001077 options.remote_forwards[i].connect_port) < 0) {
1078 if (options.exit_on_forward_failure)
1079 fatal("Could not request remote forwarding.");
1080 else
1081 logit("Warning: Could not request remote "
1082 "forwarding.");
1083 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001084 client_register_global_confirm(ssh_confirm_remote_forward,
1085 &options.remote_forwards[i]);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001086 }
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001087
1088 /* Initiate tunnel forwarding. */
1089 if (options.tun_open != SSH_TUNMODE_NO) {
1090 if (client_request_tun_fwd(options.tun_open,
1091 options.tun_local, options.tun_remote) == -1) {
1092 if (options.exit_on_forward_failure)
1093 fatal("Could not request tunnel forwarding.");
1094 else
1095 error("Could not request tunnel forwarding.");
1096 }
1097 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001098}
1099
Ben Lindstrombba81212001-06-25 05:01:22 +00001100static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001101check_agent_present(void)
1102{
1103 if (options.forward_agent) {
Damien Miller788f2122005-11-05 15:14:59 +11001104 /* Clear agent forwarding if we don't have an agent. */
Damien Miller789e95d2002-09-12 09:52:46 +10001105 if (!ssh_agent_present())
Damien Miller0bc1bd82000-11-13 22:57:25 +11001106 options.forward_agent = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001107 }
1108}
1109
Ben Lindstrombba81212001-06-25 05:01:22 +00001110static int
Damien Miller1383bd82000-04-06 12:32:37 +10001111ssh_session(void)
1112{
1113 int type;
Damien Miller1383bd82000-04-06 12:32:37 +10001114 int interactive = 0;
1115 int have_tty = 0;
1116 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +10001117 char *cp;
Damien Miller17e7ed02005-06-17 12:54:33 +10001118 const char *display;
Damien Miller1383bd82000-04-06 12:32:37 +10001119
Damien Miller95def091999-11-25 00:26:21 +11001120 /* Enable compression if requested. */
1121 if (options.compression) {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001122 debug("Requesting compression at level %d.",
1123 options.compression_level);
Damien Miller95def091999-11-25 00:26:21 +11001124
Darren Tuckerd6173c02008-06-13 04:52:53 +10001125 if (options.compression_level < 1 ||
1126 options.compression_level > 9)
1127 fatal("Compression level must be from 1 (fast) to "
1128 "9 (slow, best).");
Damien Miller95def091999-11-25 00:26:21 +11001129
1130 /* Send the request. */
1131 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
1132 packet_put_int(options.compression_level);
1133 packet_send();
1134 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +11001135 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001136 if (type == SSH_SMSG_SUCCESS)
1137 packet_start_compression(options.compression_level);
1138 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +10001139 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +11001140 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001141 packet_disconnect("Protocol error waiting for "
1142 "compression response.");
Damien Miller95def091999-11-25 00:26:21 +11001143 }
1144 /* Allocate a pseudo tty if appropriate. */
1145 if (tty_flag) {
1146 debug("Requesting pty.");
1147
1148 /* Start the packet. */
1149 packet_start(SSH_CMSG_REQUEST_PTY);
1150
1151 /* Store TERM in the packet. There is no limit on the
1152 length of the string. */
1153 cp = getenv("TERM");
1154 if (!cp)
1155 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +00001156 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +11001157
1158 /* Store window size in the packet. */
1159 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1160 memset(&ws, 0, sizeof(ws));
Damien Miller71a73672006-03-26 14:04:36 +11001161 packet_put_int((u_int)ws.ws_row);
1162 packet_put_int((u_int)ws.ws_col);
1163 packet_put_int((u_int)ws.ws_xpixel);
1164 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller95def091999-11-25 00:26:21 +11001165
1166 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001167 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +11001168
1169 /* Send the packet, and wait for it to leave. */
1170 packet_send();
1171 packet_write_wait();
1172
1173 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001174 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +10001175 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001176 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001177 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +10001178 } else if (type == SSH_SMSG_FAILURE)
Darren Tuckerd6173c02008-06-13 04:52:53 +10001179 logit("Warning: Remote host failed or refused to "
1180 "allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +11001181 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001182 packet_disconnect("Protocol error waiting for pty "
1183 "request response.");
Damien Miller95def091999-11-25 00:26:21 +11001184 }
1185 /* Request X11 forwarding if enabled and DISPLAY is set. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001186 display = getenv("DISPLAY");
1187 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001188 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001189 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001190 client_x11_get_proto(display, options.xauth_location,
Damien Miller1ab6a512010-06-26 10:02:24 +10001191 options.forward_x11_trusted,
1192 options.forward_x11_timeout,
1193 &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001194 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001195 debug("Requesting X11 forwarding with authentication "
1196 "spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +10001197 x11_request_forwarding_with_spoofing(0, display, proto, data);
Damien Miller95def091999-11-25 00:26:21 +11001198
1199 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001200 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001201 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001202 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001203 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +10001204 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +10001205 } else {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001206 packet_disconnect("Protocol error waiting for X11 "
1207 "forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +10001208 }
Damien Miller95def091999-11-25 00:26:21 +11001209 }
1210 /* Tell the packet module whether this is an interactive session. */
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001211 packet_set_interactive(interactive);
Damien Miller95def091999-11-25 00:26:21 +11001212
1213 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001214 check_agent_present();
1215
Damien Miller95def091999-11-25 00:26:21 +11001216 if (options.forward_agent) {
1217 debug("Requesting authentication agent forwarding.");
1218 auth_request_forwarding();
1219
1220 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001221 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +11001222 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11001223 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +10001224 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +11001225 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001226
Damien Miller0bc1bd82000-11-13 22:57:25 +11001227 /* Initiate port forwardings. */
1228 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001229
Darren Tuckerb776c852007-12-02 23:06:35 +11001230 /* Execute a local command */
1231 if (options.local_command != NULL &&
1232 options.permit_local_command)
1233 ssh_local_cmd(options.local_command);
1234
Darren Tucker9a2a6092008-07-04 12:53:50 +10001235 /*
1236 * If requested and we are not interested in replies to remote
1237 * forwarding requests, then let ssh continue in the background.
1238 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001239 if (fork_after_authentication_flag) {
1240 if (options.exit_on_forward_failure &&
1241 options.num_remote_forwards > 0) {
1242 debug("deferring postauth fork until remote forward "
1243 "confirmation received");
1244 } else
1245 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001246 }
Damien Miller5428f641999-11-25 11:54:57 +11001247
1248 /*
1249 * If a command was specified on the command line, execute the
1250 * command now. Otherwise request the server to start a shell.
1251 */
Damien Miller95def091999-11-25 00:26:21 +11001252 if (buffer_len(&command) > 0) {
1253 int len = buffer_len(&command);
1254 if (len > 900)
1255 len = 900;
Darren Tuckerd6173c02008-06-13 04:52:53 +10001256 debug("Sending command: %.*s", len,
1257 (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +11001258 packet_start(SSH_CMSG_EXEC_CMD);
1259 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1260 packet_send();
1261 packet_write_wait();
1262 } else {
1263 debug("Requesting shell.");
1264 packet_start(SSH_CMSG_EXEC_SHELL);
1265 packet_send();
1266 packet_write_wait();
1267 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001268
Damien Miller95def091999-11-25 00:26:21 +11001269 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001270 return client_loop(have_tty, tty_flag ?
1271 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +10001272}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001273
Ben Lindstromf558cf62001-09-20 23:13:49 +00001274/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001275static void
Damien Millerd530f5f2010-05-21 14:57:10 +10001276ssh_session2_setup(int id, int success, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001277{
Damien Miller3756dce2004-06-18 01:17:29 +10001278 extern char **environ;
Damien Miller17e7ed02005-06-17 12:54:33 +10001279 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +10001280 int interactive = tty_flag;
Damien Miller17e7ed02005-06-17 12:54:33 +10001281
Damien Millerd530f5f2010-05-21 14:57:10 +10001282 if (!success)
1283 return; /* No need for error message, channels code sens one */
1284
Damien Miller46d38de2005-07-17 17:02:09 +10001285 display = getenv("DISPLAY");
Damien Miller17e7ed02005-06-17 12:54:33 +10001286 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001287 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001288 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001289 client_x11_get_proto(display, options.xauth_location,
Damien Miller1ab6a512010-06-26 10:02:24 +10001290 options.forward_x11_trusted,
1291 options.forward_x11_timeout, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001292 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001293 debug("Requesting X11 forwarding with authentication "
1294 "spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +10001295 x11_request_forwarding_with_spoofing(id, display, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001296 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001297 /* XXX wait for reply */
1298 }
1299
Damien Miller0bc1bd82000-11-13 22:57:25 +11001300 check_agent_present();
1301 if (options.forward_agent) {
1302 debug("Requesting authentication agent forwarding.");
1303 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1304 packet_send();
1305 }
1306
Damien Miller0e220db2004-06-15 10:34:08 +10001307 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
Damien Miller5771ed72008-05-19 15:35:33 +10001308 NULL, fileno(stdin), &command, environ);
Ben Lindstrom1e7d3062001-02-09 02:36:43 +00001309
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001310 packet_set_interactive(interactive);
Damien Miller1383bd82000-04-06 12:32:37 +10001311}
1312
Ben Lindstromf558cf62001-09-20 23:13:49 +00001313/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001314static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001315ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001316{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001317 Channel *c;
1318 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001319
Damien Millercaf6dd62000-08-29 11:33:50 +11001320 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001321 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001322 } else {
1323 in = dup(STDIN_FILENO);
1324 }
1325 out = dup(STDOUT_FILENO);
1326 err = dup(STDERR_FILENO);
1327
1328 if (in < 0 || out < 0 || err < 0)
1329 fatal("dup() in/out/err failed");
1330
Damien Miller69b69aa2000-10-28 14:19:58 +11001331 /* enable nonblocking unless tty */
1332 if (!isatty(in))
1333 set_nonblock(in);
1334 if (!isatty(out))
1335 set_nonblock(out);
1336 if (!isatty(err))
1337 set_nonblock(err);
1338
Damien Millere4340be2000-09-16 13:29:08 +11001339 window = CHAN_SES_WINDOW_DEFAULT;
1340 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001341 if (tty_flag) {
1342 window >>= 1;
1343 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001344 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001345 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001346 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001347 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001348 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001349
Ben Lindstromf558cf62001-09-20 23:13:49 +00001350 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001351
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001352 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001353 if (!no_shell_flag)
Damien Millerb84886b2008-05-19 15:05:07 +10001354 channel_register_open_confirm(c->self,
1355 ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001356
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001357 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001358}
1359
Ben Lindstrombba81212001-06-25 05:01:22 +00001360static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001361ssh_session2(void)
1362{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001363 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001364
1365 /* XXX should be pre-session */
1366 ssh_init_forwarding();
1367
Damien Millere11e1ea2010-08-03 16:04:46 +10001368 /* Start listening for multiplex clients */
1369 muxserver_listen();
1370
1371 /*
1372 * If we are in control persist mode, then prepare to background
1373 * ourselves and have a foreground client attach as a control
1374 * slave. NB. we must save copies of the flags that we override for
1375 * the backgrounding, since we defer attachment of the slave until
1376 * after the connection is fully established (in particular,
1377 * async rfwd replies have been received for ExitOnForwardFailure).
1378 */
1379 if (options.control_persist && muxserver_sock != -1) {
1380 ostdin_null_flag = stdin_null_flag;
1381 ono_shell_flag = no_shell_flag;
1382 ono_tty_flag = no_tty_flag;
1383 otty_flag = tty_flag;
1384 stdin_null_flag = 1;
1385 no_shell_flag = 1;
1386 no_tty_flag = 1;
1387 tty_flag = 0;
1388 if (!fork_after_authentication_flag)
1389 need_controlpersist_detach = 1;
1390 fork_after_authentication_flag = 1;
1391 }
1392
Ben Lindstromf558cf62001-09-20 23:13:49 +00001393 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1394 id = ssh_session2_open();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001395
Darren Tucker8901fa92008-06-11 09:34:01 +10001396 /* If we don't expect to open a new session, then disallow it */
Damien Miller456e6f02008-11-03 19:20:10 +11001397 if (options.control_master == SSHCTL_MASTER_NO &&
1398 (datafellows & SSH_NEW_OPENSSH)) {
Darren Tucker8901fa92008-06-11 09:34:01 +10001399 debug("Requesting no-more-sessions@openssh.com");
1400 packet_start(SSH2_MSG_GLOBAL_REQUEST);
1401 packet_put_cstring("no-more-sessions@openssh.com");
1402 packet_put_char(0);
1403 packet_send();
1404 }
1405
Damien Millerd27b9472005-12-13 19:29:02 +11001406 /* Execute a local command */
1407 if (options.local_command != NULL &&
1408 options.permit_local_command)
1409 ssh_local_cmd(options.local_command);
1410
Damien Miller1f25ab42010-07-16 13:56:23 +10001411 /*
1412 * If requested and we are not interested in replies to remote
1413 * forwarding requests, then let ssh continue in the background.
1414 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001415 if (fork_after_authentication_flag) {
1416 if (options.exit_on_forward_failure &&
1417 options.num_remote_forwards > 0) {
1418 debug("deferring postauth fork until remote forward "
1419 "confirmation received");
1420 } else
1421 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001422 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001423
Darren Tuckerf1de4e52010-01-08 16:54:59 +11001424 if (options.use_roaming)
1425 request_roaming();
1426
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001427 return client_loop(tty_flag, tty_flag ?
1428 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001429}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001430
Ben Lindstrombba81212001-06-25 05:01:22 +00001431static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001432load_public_identity_files(void)
1433{
Damien Miller6b1d53c2006-03-31 23:13:21 +11001434 char *filename, *cp, thishost[NI_MAXHOST];
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001435 char *pwdir = NULL, *pwname = NULL;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001436 int i = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001437 Key *public;
Damien Miller6b1d53c2006-03-31 23:13:21 +11001438 struct passwd *pw;
Damien Miller0a80ca12010-02-27 07:55:05 +11001439 u_int n_ids;
1440 char *identity_files[SSH_MAX_IDENTITY_FILES];
1441 Key *identity_keys[SSH_MAX_IDENTITY_FILES];
Damien Miller7ea845e2010-02-12 09:21:02 +11001442#ifdef ENABLE_PKCS11
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001443 Key **keys;
Damien Miller7ea845e2010-02-12 09:21:02 +11001444 int nkeys;
Damien Miller0a80ca12010-02-27 07:55:05 +11001445#endif /* PKCS11 */
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001446
Damien Miller0a80ca12010-02-27 07:55:05 +11001447 n_ids = 0;
1448 bzero(identity_files, sizeof(identity_files));
1449 bzero(identity_keys, sizeof(identity_keys));
1450
1451#ifdef ENABLE_PKCS11
Damien Miller7ea845e2010-02-12 09:21:02 +11001452 if (options.pkcs11_provider != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001453 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
Damien Miller7ea845e2010-02-12 09:21:02 +11001454 (pkcs11_init(!options.batch_mode) == 0) &&
1455 (nkeys = pkcs11_add_provider(options.pkcs11_provider, NULL,
1456 &keys)) > 0) {
Damien Miller7ea845e2010-02-12 09:21:02 +11001457 for (i = 0; i < nkeys; i++) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001458 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
1459 key_free(keys[i]);
1460 continue;
1461 }
1462 identity_keys[n_ids] = keys[i];
1463 identity_files[n_ids] =
Damien Miller7ea845e2010-02-12 09:21:02 +11001464 xstrdup(options.pkcs11_provider); /* XXX */
Damien Miller0a80ca12010-02-27 07:55:05 +11001465 n_ids++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001466 }
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001467 xfree(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001468 }
Damien Miller7ea845e2010-02-12 09:21:02 +11001469#endif /* ENABLE_PKCS11 */
Damien Miller6b1d53c2006-03-31 23:13:21 +11001470 if ((pw = getpwuid(original_real_uid)) == NULL)
1471 fatal("load_public_identity_files: getpwuid failed");
Darren Tuckere143f062007-12-02 23:21:16 +11001472 pwname = xstrdup(pw->pw_name);
1473 pwdir = xstrdup(pw->pw_dir);
Damien Miller6b1d53c2006-03-31 23:13:21 +11001474 if (gethostname(thishost, sizeof(thishost)) == -1)
1475 fatal("load_public_identity_files: gethostname: %s",
1476 strerror(errno));
Damien Miller0a80ca12010-02-27 07:55:05 +11001477 for (i = 0; i < options.num_identity_files; i++) {
1478 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
1479 xfree(options.identity_files[i]);
1480 continue;
1481 }
Damien Miller6b1d53c2006-03-31 23:13:21 +11001482 cp = tilde_expand_filename(options.identity_files[i],
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001483 original_real_uid);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001484 filename = percent_expand(cp, "d", pwdir,
1485 "u", pwname, "l", thishost, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +11001486 "r", options.user, (char *)NULL);
1487 xfree(cp);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001488 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001489 debug("identity file %s type %d", filename,
1490 public ? public->type : -1);
1491 xfree(options.identity_files[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +11001492 identity_files[n_ids] = filename;
1493 identity_keys[n_ids] = public;
1494
1495 if (++n_ids >= SSH_MAX_IDENTITY_FILES)
1496 continue;
1497
1498 /* Try to add the certificate variant too */
1499 xasprintf(&cp, "%s-cert", filename);
1500 public = key_load_public(cp, NULL);
1501 debug("identity file %s type %d", cp,
1502 public ? public->type : -1);
1503 if (public == NULL) {
1504 xfree(cp);
1505 continue;
1506 }
1507 if (!key_is_cert(public)) {
1508 debug("%s: key %s type %s is not a certificate",
1509 __func__, cp, key_type(public));
1510 key_free(public);
1511 xfree(cp);
1512 continue;
1513 }
1514 identity_keys[n_ids] = public;
1515 /* point to the original path, most likely the private key */
1516 identity_files[n_ids] = xstrdup(filename);
1517 n_ids++;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001518 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001519 options.num_identity_files = n_ids;
1520 memcpy(options.identity_files, identity_files, sizeof(identity_files));
1521 memcpy(options.identity_keys, identity_keys, sizeof(identity_keys));
1522
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001523 bzero(pwname, strlen(pwname));
Darren Tuckere143f062007-12-02 23:21:16 +11001524 xfree(pwname);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001525 bzero(pwdir, strlen(pwdir));
Darren Tuckere143f062007-12-02 23:21:16 +11001526 xfree(pwdir);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001527}