blob: d32ef78b0d150d09ca558e9ab606f0ea5939a75b [file] [log] [blame]
Damien Miller83f8a402011-01-07 09:51:17 +11001/* $OpenBSD: ssh.c,v 1.356 2011/01/06 22:23:53 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 Miller857b02e2010-09-24 22:02:56 +100053#include <sys/wait.h>
Damien Miller03e20032006-03-15 11:16:59 +110054
Damien Millerc7b06362006-03-15 11:53:45 +110055#include <ctype.h>
Darren Tuckerba724052006-07-12 22:24:22 +100056#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100057#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100058#include <netdb.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110059#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110060#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110061#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100062#include <pwd.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110063#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100064#include <stdarg.h>
Damien Miller2d00e632006-07-24 13:53:19 +100065#include <stddef.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100066#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100067#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100068#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100069#include <unistd.h>
Damien Millereba71ba2000-04-29 23:57:08 +100070
Darren Tucker46aa3e02006-09-02 15:32:40 +100071#include <netinet/in.h>
72#include <arpa/inet.h>
73
Damien Millereba71ba2000-04-29 23:57:08 +100074#include <openssl/evp.h>
Damien Miller0bc1bd82000-11-13 22:57:25 +110075#include <openssl/err.h>
Darren Tuckerbfaaf962008-02-28 19:13:52 +110076#include "openbsd-compat/openssl-compat.h"
Damien Millerb84886b2008-05-19 15:05:07 +100077#include "openbsd-compat/sys-queue.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100078
Damien Millerd7834352006-08-05 12:39:39 +100079#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000081#include "ssh1.h"
Damien Miller1383bd82000-04-06 12:32:37 +100082#include "ssh2.h"
Damien Millerb96c4412010-07-02 13:34:24 +100083#include "canohost.h"
Damien Miller1383bd82000-04-06 12:32:37 +100084#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000085#include "cipher.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000086#include "packet.h"
87#include "buffer.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000088#include "channels.h"
Damien Millereba71ba2000-04-29 23:57:08 +100089#include "key.h"
Damien Miller994cf142000-07-21 10:19:44 +100090#include "authfd.h"
Damien Millereba71ba2000-04-29 23:57:08 +100091#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000092#include "pathnames.h"
Damien Miller0e220db2004-06-15 10:34:08 +100093#include "dispatch.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000094#include "clientloop.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000095#include "log.h"
96#include "readconf.h"
97#include "sshconnect.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000098#include "misc.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +000099#include "kex.h"
100#include "mac.h"
Darren Tucker06f2bd82004-05-13 16:06:46 +1000101#include "sshpty.h"
Darren Tucker46bc0752004-05-02 22:11:30 +1000102#include "match.h"
Damien Miller0e220db2004-06-15 10:34:08 +1000103#include "msg.h"
Darren Tucker25f60a72004-08-15 17:23:34 +1000104#include "uidswap.h"
Darren Tuckerf1de4e52010-01-08 16:54:59 +1100105#include "roaming.h"
Damien Millerb7576772006-07-10 20:23:39 +1000106#include "version.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000107
Damien Miller7ea845e2010-02-12 09:21:02 +1100108#ifdef ENABLE_PKCS11
109#include "ssh-pkcs11.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +0000110#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000111
Damien Miller3f905871999-11-15 17:10:57 +1100112extern char *__progname;
Damien Miller3f905871999-11-15 17:10:57 +1100113
Darren Tuckerd6173c02008-06-13 04:52:53 +1000114/* Flag indicating whether debug mode is on. May be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000115int debug_flag = 0;
116
Damien Miller78928792000-04-12 20:17:38 +1000117/* Flag indicating whether a tty should be allocated */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000118int tty_flag = 0;
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000119int no_tty_flag = 0;
120int force_tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000121
Damien Miller1383bd82000-04-06 12:32:37 +1000122/* don't exec a shell */
123int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000124
Damien Miller5428f641999-11-25 11:54:57 +1100125/*
126 * Flag indicating that nothing should be read from stdin. This can be set
127 * on the command line.
128 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000129int stdin_null_flag = 0;
130
Damien Miller5428f641999-11-25 11:54:57 +1100131/*
Damien Millere11e1ea2010-08-03 16:04:46 +1000132 * Flag indicating that the current process should be backgrounded and
133 * a new slave launched in the foreground for ControlPersist.
134 */
135int need_controlpersist_detach = 0;
136
137/* Copies of flags for ControlPersist foreground slave */
138int ostdin_null_flag, ono_shell_flag, ono_tty_flag, otty_flag;
139
140/*
Damien Miller5428f641999-11-25 11:54:57 +1100141 * Flag indicating that ssh should fork after authentication. This is useful
Ben Lindstromf666fec2002-06-06 19:51:58 +0000142 * so that the passphrase can be entered manually, and then ssh goes to the
Damien Miller5428f641999-11-25 11:54:57 +1100143 * background.
144 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000145int fork_after_authentication_flag = 0;
146
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100147/* forward stdio to remote host and port */
148char *stdio_forward_host = NULL;
149int stdio_forward_port = 0;
150
Damien Miller5428f641999-11-25 11:54:57 +1100151/*
152 * General data structure for command line options and options configurable
153 * in configuration files. See readconf.h.
154 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000155Options options;
156
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000157/* optional user configfile */
158char *config = NULL;
159
Damien Miller5428f641999-11-25 11:54:57 +1100160/*
161 * Name of the host we are connecting to. This is the name given on the
162 * command line, or the HostName specified for the user-supplied name in a
163 * configuration file.
164 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000165char *host;
166
167/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100168struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000169
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000170/* Private host keys. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000171Sensitive sensitive_data;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000172
173/* Original real UID. */
174uid_t original_real_uid;
Ben Lindstromf9c48842002-06-11 16:37:51 +0000175uid_t original_effective_uid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000176
Damien Miller1383bd82000-04-06 12:32:37 +1000177/* command to be executed */
178Buffer command;
179
Damien Miller832562e2001-01-30 09:30:01 +1100180/* Should we execute a command or invoke a subsystem? */
181int subsystem_flag = 0;
182
Damien Miller2797f7f2002-04-23 21:09:44 +1000183/* # of replies received for global requests */
Darren Tucker9f407c42008-06-13 04:50:27 +1000184static int remote_forward_confirms_received = 0;
Damien Miller2797f7f2002-04-23 21:09:44 +1000185
Damien Millerb1cbfa22008-05-19 16:00:08 +1000186/* mux.c */
187extern int muxserver_sock;
188extern u_int muxclient_command;
Damien Miller0e220db2004-06-15 10:34:08 +1000189
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000190/* Prints a help message to the user. This function never returns. */
191
Ben Lindstrombba81212001-06-25 05:01:22 +0000192static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000193usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000194{
Damien Miller50955102004-03-22 09:34:58 +1100195 fprintf(stderr,
Damien Millerc13c3ee2008-11-03 19:23:28 +1100196"usage: ssh [-1246AaCfgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]\n"
Darren Tucker895d6982005-10-03 18:18:05 +1000197" [-D [bind_address:]port] [-e escape_char] [-F configfile]\n"
Damien Miller048dc932010-02-12 09:22:04 +1100198" [-I pkcs11] [-i identity_file]\n"
199" [-L [bind_address:]port:host:hostport]\n"
Damien Millerf91ee4c2005-03-01 21:24:33 +1100200" [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
Damien Miller02faece2005-03-02 12:04:32 +1100201" [-R [bind_address:]port:host:hostport] [-S ctl_path]\n"
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100202" [-W host:port] [-w local_tun[:remote_tun]]\n"
203" [user@]hostname [command]\n"
Damien Miller50955102004-03-22 09:34:58 +1100204 );
Darren Tuckere9a9b712005-12-20 16:15:51 +1100205 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000206}
207
Ben Lindstrombba81212001-06-25 05:01:22 +0000208static int ssh_session(void);
209static int ssh_session2(void);
210static void load_public_identity_files(void);
Damien Miller857b02e2010-09-24 22:02:56 +1000211static void main_sigchld_handler(int);
Damien Millerb1cbfa22008-05-19 16:00:08 +1000212
213/* from muxclient.c */
214void muxclient(const char *);
215void muxserver_listen(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000216
Damien Miller95def091999-11-25 00:26:21 +1100217/*
218 * Main program for the ssh client.
219 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000220int
221main(int ac, char **av)
222{
Darren Tucker199b1342009-07-06 07:16:56 +1000223 int i, r, opt, exit_status, use_syslog;
Damien Miller83f8a402011-01-07 09:51:17 +1100224 char *p, *cp, *line, *argv0, buf[MAXPATHLEN], *host_arg;
Damien Miller95def091999-11-25 00:26:21 +1100225 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000226 struct passwd *pw;
Damien Miller67bd0622007-09-17 12:06:57 +1000227 int dummy, timeout_ms;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000228 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000229 extern char *optarg;
Damien Miller9651fe62005-06-26 08:55:25 +1000230 struct servent *sp;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100231 Forward fwd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000232
Darren Tuckerce321d82005-10-03 18:11:24 +1000233 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
234 sanitise_stdfd();
235
Damien Miller59d3d5b2003-08-22 09:34:41 +1000236 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000237 init_rng();
238
Damien Miller5428f641999-11-25 11:54:57 +1100239 /*
Damien Miller00d9ae22010-08-17 01:59:31 +1000240 * Discard other fds that are hanging around. These can cause problem
241 * with backgrounded ssh processes started by ControlPersist.
242 */
243 closefrom(STDERR_FILENO + 1);
244
245 /*
Damien Miller5428f641999-11-25 11:54:57 +1100246 * Save the original real uid. It will be needed later (uid-swapping
247 * may clobber the real uid).
248 */
Damien Miller95def091999-11-25 00:26:21 +1100249 original_real_uid = getuid();
250 original_effective_uid = geteuid();
Damien Millera8e06ce2003-11-21 23:48:55 +1100251
Damien Miller50b9a602002-09-04 16:50:06 +1000252 /*
253 * Use uid-swapping to give up root privileges for the duration of
254 * option processing. We will re-instantiate the rights when we are
255 * ready to create the privileged port, and will permanently drop
256 * them when the port has been created (actually, when the connection
257 * has been made, as we may need to create the port several times).
258 */
259 PRIV_END;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000260
Damien Miller05dd7952000-10-01 00:42:48 +1100261#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100262 /* If we are installed setuid root be careful to not drop core. */
263 if (original_real_uid != original_effective_uid) {
264 struct rlimit rlim;
265 rlim.rlim_cur = rlim.rlim_max = 0;
266 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
267 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000268 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100269#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000270 /* Get user data. */
271 pw = getpwuid(original_real_uid);
272 if (!pw) {
Damien Miller996acd22003-04-09 20:59:48 +1000273 logit("You don't exist, go away!");
Darren Tuckere9a9b712005-12-20 16:15:51 +1100274 exit(255);
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000275 }
276 /* Take a copy of the returned structure. */
277 pw = pwcopy(pw);
278
Damien Miller5428f641999-11-25 11:54:57 +1100279 /*
Damien Miller5428f641999-11-25 11:54:57 +1100280 * Set our umask to something reasonable, as some files are created
281 * with the default umask. This will make them world-readable but
282 * writable only by the owner, which is ok for all files for which we
283 * don't set the modes explicitly.
284 */
Damien Miller95def091999-11-25 00:26:21 +1100285 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000286
Darren Tuckerd6173c02008-06-13 04:52:53 +1000287 /*
288 * Initialize option structure to indicate that no values have been
289 * set.
290 */
Damien Miller95def091999-11-25 00:26:21 +1100291 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000292
Damien Miller95def091999-11-25 00:26:21 +1100293 /* Parse command-line arguments. */
294 host = NULL;
Damien Millere272a5b2008-11-03 19:22:37 +1100295 use_syslog = 0;
Darren Tucker72efd742009-06-21 17:48:00 +1000296 argv0 = av[0];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000297
Damien Miller2ecb6bd2006-03-15 12:03:53 +1100298 again:
Darren Tuckerd6173c02008-06-13 04:52:53 +1000299 while ((opt = getopt(ac, av, "1246ab:c:e:fgi:kl:m:no:p:qstvx"
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100300 "ACD:F:I:KL:MNO:PR:S:TVw:W:XYy")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100301 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000302 case '1':
303 options.protocol = SSH_PROTO_1;
304 break;
Damien Miller4af51302000-04-16 11:18:38 +1000305 case '2':
306 options.protocol = SSH_PROTO_2;
307 break;
Damien Miller34132e52000-01-14 15:45:46 +1100308 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000309 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100310 break;
Damien Miller34132e52000-01-14 15:45:46 +1100311 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000312 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100313 break;
Damien Miller95def091999-11-25 00:26:21 +1100314 case 'n':
315 stdin_null_flag = 1;
316 break;
Damien Miller95def091999-11-25 00:26:21 +1100317 case 'f':
318 fork_after_authentication_flag = 1;
319 stdin_null_flag = 1;
320 break;
Damien Miller95def091999-11-25 00:26:21 +1100321 case 'x':
322 options.forward_x11 = 0;
323 break;
Damien Miller95def091999-11-25 00:26:21 +1100324 case 'X':
325 options.forward_x11 = 1;
326 break;
Damien Millere272a5b2008-11-03 19:22:37 +1100327 case 'y':
328 use_syslog = 1;
329 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000330 case 'Y':
331 options.forward_x11 = 1;
332 options.forward_x11_trusted = 1;
333 break;
Damien Miller95def091999-11-25 00:26:21 +1100334 case 'g':
335 options.gateway_ports = 1;
336 break;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100337 case 'O':
Damien Millere1537f92010-01-26 13:26:22 +1100338 if (stdio_forward_host != NULL)
339 fatal("Cannot specify multiplexing "
340 "command with -W");
341 else if (muxclient_command != 0)
342 fatal("Multiplexing command already specified");
Darren Tucker7ebfc102004-11-07 20:06:19 +1100343 if (strcmp(optarg, "check") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000344 muxclient_command = SSHMUX_COMMAND_ALIVE_CHECK;
Damien Miller388f6fc2010-05-21 14:57:35 +1000345 else if (strcmp(optarg, "forward") == 0)
346 muxclient_command = SSHMUX_COMMAND_FORWARD;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100347 else if (strcmp(optarg, "exit") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000348 muxclient_command = SSHMUX_COMMAND_TERMINATE;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100349 else
350 fatal("Invalid multiplex command.");
351 break;
Damien Miller147bba32002-09-04 16:46:06 +1000352 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100353 options.use_privileged_port = 0;
354 break;
Damien Miller95def091999-11-25 00:26:21 +1100355 case 'a':
356 options.forward_agent = 0;
357 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000358 case 'A':
359 options.forward_agent = 1;
360 break;
Damien Miller95def091999-11-25 00:26:21 +1100361 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100362 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100363 break;
Darren Tucker415bddc2007-06-12 23:43:16 +1000364 case 'K':
365 options.gss_authentication = 1;
366 options.gss_deleg_creds = 1;
367 break;
Damien Miller95def091999-11-25 00:26:21 +1100368 case 'i':
369 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000370 fprintf(stderr, "Warning: Identity file %s "
Damien Miller3eb48b62005-03-01 21:15:46 +1100371 "not accessible: %s.\n", optarg,
372 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100373 break;
374 }
Damien Millerf4614452001-07-14 12:18:10 +1000375 if (options.num_identity_files >=
376 SSH_MAX_IDENTITY_FILES)
377 fatal("Too many identity files specified "
378 "(max %d)", SSH_MAX_IDENTITY_FILES);
379 options.identity_files[options.num_identity_files++] =
380 xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100381 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000382 case 'I':
Damien Miller7ea845e2010-02-12 09:21:02 +1100383#ifdef ENABLE_PKCS11
384 options.pkcs11_provider = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000385#else
Damien Miller7ea845e2010-02-12 09:21:02 +1100386 fprintf(stderr, "no support for PKCS#11.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000387#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000388 break;
Damien Miller95def091999-11-25 00:26:21 +1100389 case 't':
Ben Lindstrom4dccfa52000-12-28 16:40:05 +0000390 if (tty_flag)
391 force_tty_flag = 1;
Damien Miller95def091999-11-25 00:26:21 +1100392 tty_flag = 1;
393 break;
Damien Miller95def091999-11-25 00:26:21 +1100394 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000395 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100396 debug_flag = 1;
397 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000398 } else {
399 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
400 options.log_level++;
Damien Millere4340be2000-09-16 13:29:08 +1100401 break;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000402 }
Darren Tuckere9bf9842004-11-05 20:05:32 +1100403 /* FALLTHROUGH */
Damien Miller95def091999-11-25 00:26:21 +1100404 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100405 fprintf(stderr, "%s, %s\n",
Damien Miller2aa6d3c2004-09-12 16:53:04 +1000406 SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
Damien Miller95def091999-11-25 00:26:21 +1100407 if (opt == 'V')
408 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100409 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100410 case 'w':
Damien Miller7b58e802005-12-13 19:33:19 +1100411 if (options.tun_open == -1)
412 options.tun_open = SSH_TUNMODE_DEFAULT;
Damien Millerd27b9472005-12-13 19:29:02 +1100413 options.tun_local = a2tun(optarg, &options.tun_remote);
Damien Miller7b58e802005-12-13 19:33:19 +1100414 if (options.tun_local == SSH_TUNID_ERR) {
Darren Tuckerd6173c02008-06-13 04:52:53 +1000415 fprintf(stderr,
416 "Bad tun device '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100417 exit(255);
Damien Millerd27b9472005-12-13 19:29:02 +1100418 }
419 break;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100420 case 'W':
Damien Millere1537f92010-01-26 13:26:22 +1100421 if (stdio_forward_host != NULL)
422 fatal("stdio forward already specified");
423 if (muxclient_command != 0)
424 fatal("Cannot specify stdio forward with -O");
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100425 if (parse_forward(&fwd, optarg, 1, 0)) {
426 stdio_forward_host = fwd.listen_host;
427 stdio_forward_port = fwd.listen_port;
428 xfree(fwd.connect_host);
429 } else {
430 fprintf(stderr,
431 "Bad stdio forwarding specification '%s'\n",
432 optarg);
433 exit(255);
434 }
435 no_tty_flag = 1;
436 no_shell_flag = 1;
437 options.clear_forwardings = 1;
438 options.exit_on_forward_failure = 1;
439 break;
Damien Miller95def091999-11-25 00:26:21 +1100440 case 'q':
441 options.log_level = SYSLOG_LEVEL_QUIET;
442 break;
Damien Miller95def091999-11-25 00:26:21 +1100443 case 'e':
444 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000445 (u_char) optarg[1] >= 64 &&
446 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000447 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100448 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000449 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100450 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000451 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100452 else {
Damien Millerf4614452001-07-14 12:18:10 +1000453 fprintf(stderr, "Bad escape character '%s'.\n",
454 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100455 exit(255);
Damien Miller95def091999-11-25 00:26:21 +1100456 }
457 break;
Damien Miller95def091999-11-25 00:26:21 +1100458 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000459 if (ciphers_valid(optarg)) {
460 /* SSH2 only */
461 options.ciphers = xstrdup(optarg);
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000462 options.cipher = SSH_CIPHER_INVALID;
Damien Millereba71ba2000-04-29 23:57:08 +1000463 } else {
464 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100465 options.cipher = cipher_number(optarg);
466 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000467 fprintf(stderr,
468 "Unknown cipher type '%s'\n",
469 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100470 exit(255);
Damien Millereba71ba2000-04-29 23:57:08 +1000471 }
Damien Millerf4614452001-07-14 12:18:10 +1000472 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100473 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000474 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100475 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000476 else
Damien Millere39cacc2000-11-29 12:18:44 +1100477 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100478 }
479 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000480 case 'm':
481 if (mac_valid(optarg))
482 options.macs = xstrdup(optarg);
483 else {
Damien Millerf4614452001-07-14 12:18:10 +1000484 fprintf(stderr, "Unknown mac type '%s'\n",
485 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100486 exit(255);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000487 }
488 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000489 case 'M':
Damien Millerd14b1e72005-06-16 13:19:41 +1000490 if (options.control_master == SSHCTL_MASTER_YES)
491 options.control_master = SSHCTL_MASTER_ASK;
492 else
493 options.control_master = SSHCTL_MASTER_YES;
Damien Miller0e220db2004-06-15 10:34:08 +1000494 break;
Damien Miller95def091999-11-25 00:26:21 +1100495 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000496 options.port = a2port(optarg);
Damien Miller3dc71ad2009-01-28 16:31:22 +1100497 if (options.port <= 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000498 fprintf(stderr, "Bad port '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100499 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000500 }
Damien Miller95def091999-11-25 00:26:21 +1100501 break;
Damien Miller95def091999-11-25 00:26:21 +1100502 case 'l':
503 options.user = optarg;
504 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000505
Damien Miller95def091999-11-25 00:26:21 +1100506 case 'L':
Damien Miller4bf648f2009-02-14 16:28:21 +1100507 if (parse_forward(&fwd, optarg, 0, 0))
Damien Millerf91ee4c2005-03-01 21:24:33 +1100508 add_local_forward(&options, &fwd);
509 else {
Damien Millerf4614452001-07-14 12:18:10 +1000510 fprintf(stderr,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100511 "Bad local forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000512 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100513 exit(255);
Ben Lindstrom1a174712001-09-12 17:56:15 +0000514 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100515 break;
516
517 case 'R':
Damien Miller4bf648f2009-02-14 16:28:21 +1100518 if (parse_forward(&fwd, optarg, 0, 1)) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100519 add_remote_forward(&options, &fwd);
520 } else {
521 fprintf(stderr,
522 "Bad remote forwarding specification "
523 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100524 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100525 }
Damien Miller95def091999-11-25 00:26:21 +1100526 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000527
528 case 'D':
Damien Miller4bf648f2009-02-14 16:28:21 +1100529 if (parse_forward(&fwd, optarg, 1, 0)) {
Damien Millera699d952008-11-03 19:27:34 +1100530 add_local_forward(&options, &fwd);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100531 } else {
Damien Millera699d952008-11-03 19:27:34 +1100532 fprintf(stderr,
533 "Bad dynamic forwarding specification "
534 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100535 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000536 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000537 break;
538
Damien Miller95def091999-11-25 00:26:21 +1100539 case 'C':
540 options.compression = 1;
541 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000542 case 'N':
543 no_shell_flag = 1;
544 no_tty_flag = 1;
545 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000546 case 'T':
547 no_tty_flag = 1;
548 break;
Damien Miller95def091999-11-25 00:26:21 +1100549 case 'o':
550 dummy = 1;
Damien Miller9836cf82003-12-17 16:30:06 +1100551 line = xstrdup(optarg);
Damien Millerf4614452001-07-14 12:18:10 +1000552 if (process_config_line(&options, host ? host : "",
Damien Miller9836cf82003-12-17 16:30:06 +1100553 line, "command-line", 0, &dummy) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100554 exit(255);
Damien Miller9836cf82003-12-17 16:30:06 +1100555 xfree(line);
Damien Miller95def091999-11-25 00:26:21 +1100556 break;
Damien Miller832562e2001-01-30 09:30:01 +1100557 case 's':
558 subsystem_flag = 1;
559 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000560 case 'S':
561 if (options.control_path != NULL)
562 free(options.control_path);
563 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000564 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000565 case 'b':
566 options.bind_address = optarg;
567 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000568 case 'F':
569 config = optarg;
570 break;
Damien Miller95def091999-11-25 00:26:21 +1100571 default:
572 usage();
573 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000574 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000575
Damien Millerf4614452001-07-14 12:18:10 +1000576 ac -= optind;
577 av += optind;
578
Darren Tuckerb8c884a2010-01-08 18:53:43 +1100579 if (ac > 0 && !host) {
Ben Lindstromc276c122002-12-23 02:14:51 +0000580 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000581 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000582 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000583 if (cp == NULL || cp == p)
584 usage();
585 options.user = p;
586 *cp = '\0';
587 host = ++cp;
588 } else
589 host = *av;
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000590 if (ac > 1) {
591 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000592 goto again;
593 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000594 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000595 }
596
Damien Miller95def091999-11-25 00:26:21 +1100597 /* Check that we got a host name. */
598 if (!host)
599 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000600
Damien Miller4314c2b2010-09-10 11:12:09 +1000601 OpenSSL_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100602 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100603
Damien Miller95def091999-11-25 00:26:21 +1100604 /* Initialize the command to execute on remote host. */
605 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000606
Damien Miller5428f641999-11-25 11:54:57 +1100607 /*
608 * Save the command to execute on the remote host in a buffer. There
609 * is no limit on the length of the command, except by the maximum
610 * packet size. Also sets the tty flag if there is no command.
611 */
Damien Millerf4614452001-07-14 12:18:10 +1000612 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100613 /* No command specified - execute shell on a tty. */
614 tty_flag = 1;
Damien Miller832562e2001-01-30 09:30:01 +1100615 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000616 fprintf(stderr,
617 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100618 usage();
619 }
Damien Miller95def091999-11-25 00:26:21 +1100620 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000621 /* A command has been specified. Store it into the buffer. */
622 for (i = 0; i < ac; i++) {
623 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100624 buffer_append(&command, " ", 1);
625 buffer_append(&command, av[i], strlen(av[i]));
626 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000627 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000628
Damien Miller95def091999-11-25 00:26:21 +1100629 /* Cannot fork to background if no command. */
Darren Tuckerd6173c02008-06-13 04:52:53 +1000630 if (fork_after_authentication_flag && buffer_len(&command) == 0 &&
631 !no_shell_flag)
632 fatal("Cannot fork into background without a command "
633 "to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000634
Damien Miller95def091999-11-25 00:26:21 +1100635 /* Allocate a tty by default if no command specified. */
636 if (buffer_len(&command) == 0)
637 tty_flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000638
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000639 /* Force no tty */
Damien Millerdeb5a142010-04-16 15:52:43 +1000640 if (no_tty_flag || muxclient_command != 0)
Ben Lindstromc72745a2000-12-02 19:03:54 +0000641 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100642 /* Do not allocate a tty if stdin is not a tty. */
Damien Millerddee5752005-05-26 12:05:05 +1000643 if ((!isatty(fileno(stdin)) || stdin_null_flag) && !force_tty_flag) {
Damien Miller95def091999-11-25 00:26:21 +1100644 if (tty_flag)
Darren Tuckerd6173c02008-06-13 04:52:53 +1000645 logit("Pseudo-terminal will not be allocated because "
646 "stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100647 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000648 }
Damien Miller1383bd82000-04-06 12:32:37 +1000649
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000650 /*
651 * Initialize "log" output. Since we are the client all output
652 * actually goes to stderr.
653 */
Darren Tucker72efd742009-06-21 17:48:00 +1000654 log_init(argv0,
Darren Tuckerd6173c02008-06-13 04:52:53 +1000655 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
Damien Millere272a5b2008-11-03 19:22:37 +1100656 SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000657
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000658 /*
659 * Read per-user configuration file. Ignore the system wide config
660 * file if the user specifies a config file on the command line.
661 */
662 if (config != NULL) {
Damien Miller914420f2004-04-20 20:14:07 +1000663 if (!read_config_file(config, host, &options, 0))
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000664 fatal("Can't open user config file %.100s: "
665 "%.100s", config, strerror(errno));
Damien Miller80163902007-01-05 16:30:16 +1100666 } else {
Darren Tucker199b1342009-07-06 07:16:56 +1000667 r = snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir,
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000668 _PATH_SSH_USER_CONFFILE);
Darren Tucker199b1342009-07-06 07:16:56 +1000669 if (r > 0 && (size_t)r < sizeof(buf))
670 (void)read_config_file(buf, host, &options, 1);
Ben Lindstrom83f07d12001-10-03 17:22:29 +0000671
672 /* Read systemwide configuration file after use config. */
Darren Tuckerfc959702004-07-17 16:12:08 +1000673 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host,
Damien Miller57a44762004-04-20 20:11:57 +1000674 &options, 0);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000675 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000676
Damien Miller95def091999-11-25 00:26:21 +1100677 /* Fill configuration defaults. */
678 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000679
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000680 channel_set_af(options.address_family);
681
Damien Miller95def091999-11-25 00:26:21 +1100682 /* reinit */
Darren Tucker72efd742009-06-21 17:48:00 +1000683 log_init(argv0, options.log_level, SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000684
Damien Miller60bc5172001-03-19 09:38:15 +1100685 seed_rng();
686
Damien Miller95def091999-11-25 00:26:21 +1100687 if (options.user == NULL)
688 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000689
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000690 /* Get default port if port has not been set. */
691 if (options.port == 0) {
692 sp = getservbyname(SSH_SERVICE_NAME, "tcp");
693 options.port = sp ? ntohs(sp->s_port) : SSH_DEFAULT_PORT;
694 }
695
Damien Miller83f8a402011-01-07 09:51:17 +1100696 /* preserve host name given on command line for %n expansion */
697 host_arg = host;
Damien Millerd0244d42010-07-16 13:56:43 +1000698 if (options.hostname != NULL) {
699 host = percent_expand(options.hostname,
700 "h", host, (char *)NULL);
701 }
702
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000703 if (options.local_command != NULL) {
704 char thishost[NI_MAXHOST];
705
706 if (gethostname(thishost, sizeof(thishost)) == -1)
707 fatal("gethostname: %s", strerror(errno));
708 snprintf(buf, sizeof(buf), "%d", options.port);
709 debug3("expanding LocalCommand: %s", options.local_command);
710 cp = options.local_command;
711 options.local_command = percent_expand(cp, "d", pw->pw_dir,
Damien Miller83f8a402011-01-07 09:51:17 +1100712 "h", host, "l", thishost, "n", host_arg, "r", options.user,
Damien Millerd0244d42010-07-16 13:56:43 +1000713 "p", buf, "u", pw->pw_name, (char *)NULL);
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000714 debug3("expanded LocalCommand: %s", options.local_command);
715 xfree(cp);
716 }
717
Darren Tucker3f521e22003-07-03 16:20:42 +1000718 /* force lowercase for hostkey matching */
719 if (options.host_key_alias != NULL) {
720 for (p = options.host_key_alias; *p; p++)
721 if (isupper(*p))
Damien Miller1d2b6702006-03-26 14:09:54 +1100722 *p = (char)tolower(*p);
Darren Tucker3f521e22003-07-03 16:20:42 +1000723 }
724
Damien Miller9f1e33a2003-02-24 11:57:32 +1100725 if (options.proxy_command != NULL &&
Darren Tucker32e42c72007-12-02 23:01:03 +1100726 strcmp(options.proxy_command, "none") == 0) {
727 xfree(options.proxy_command);
Damien Miller9f1e33a2003-02-24 11:57:32 +1100728 options.proxy_command = NULL;
Darren Tucker32e42c72007-12-02 23:01:03 +1100729 }
Damien Miller8f74c8f2005-06-26 08:56:03 +1000730 if (options.control_path != NULL &&
Darren Tucker32e42c72007-12-02 23:01:03 +1100731 strcmp(options.control_path, "none") == 0) {
732 xfree(options.control_path);
Damien Miller8f74c8f2005-06-26 08:56:03 +1000733 options.control_path = NULL;
Darren Tucker32e42c72007-12-02 23:01:03 +1100734 }
Damien Miller9f1e33a2003-02-24 11:57:32 +1100735
Damien Miller0e220db2004-06-15 10:34:08 +1000736 if (options.control_path != NULL) {
Damien Miller6b1d53c2006-03-31 23:13:21 +1100737 char thishost[NI_MAXHOST];
Damien Miller3ec54c72006-03-15 11:30:13 +1100738
Damien Miller6b1d53c2006-03-31 23:13:21 +1100739 if (gethostname(thishost, sizeof(thishost)) == -1)
Damien Miller3ec54c72006-03-15 11:30:13 +1100740 fatal("gethostname: %s", strerror(errno));
Damien Miller6476cad2005-06-16 13:18:34 +1000741 snprintf(buf, sizeof(buf), "%d", options.port);
742 cp = tilde_expand_filename(options.control_path,
743 original_real_uid);
Darren Tucker32e42c72007-12-02 23:01:03 +1100744 xfree(options.control_path);
Damien Miller6476cad2005-06-16 13:18:34 +1000745 options.control_path = percent_expand(cp, "p", buf, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +1100746 "r", options.user, "l", thishost, (char *)NULL);
Damien Miller6476cad2005-06-16 13:18:34 +1000747 xfree(cp);
Damien Miller0e220db2004-06-15 10:34:08 +1000748 }
Damien Millerb1cbfa22008-05-19 16:00:08 +1000749 if (muxclient_command != 0 && options.control_path == NULL)
Darren Tucker0814d312005-06-01 23:08:51 +1000750 fatal("No ControlPath specified for \"-O\" command");
Damien Millerd14b1e72005-06-16 13:19:41 +1000751 if (options.control_path != NULL)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000752 muxclient(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +1000753
Damien Miller67bd0622007-09-17 12:06:57 +1000754 timeout_ms = options.connection_timeout * 1000;
755
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000756 /* Open a connection to the remote host. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000757 if (ssh_connect(host, &hostaddr, options.port,
Damien Miller67bd0622007-09-17 12:06:57 +1000758 options.address_family, options.connection_attempts, &timeout_ms,
759 options.tcp_keep_alive,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000760#ifdef HAVE_CYGWIN
761 options.use_privileged_port,
762#else
Ben Lindstromf9c48842002-06-11 16:37:51 +0000763 original_effective_uid == 0 && options.use_privileged_port,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000764#endif
Ben Lindstromda394ca2002-06-12 16:11:12 +0000765 options.proxy_command) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100766 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000767
Damien Miller67bd0622007-09-17 12:06:57 +1000768 if (timeout_ms > 0)
769 debug3("timeout: %d ms remain after connect", timeout_ms);
770
Damien Miller5428f641999-11-25 11:54:57 +1100771 /*
772 * If we successfully made the connection, load the host private key
773 * in case we will need it later for combined rsa-rhosts
774 * authentication. This must be done before releasing extra
775 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +0000776 * If we cannot access the private keys, load the public keys
777 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +1100778 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000779 sensitive_data.nkeys = 0;
780 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000781 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +0000782 if (options.rhosts_rsa_authentication ||
783 options.hostbased_authentication) {
Damien Millereb8b60e2010-08-31 22:41:14 +1000784 sensitive_data.nkeys = 7;
Damien Millerddd63ab2006-03-31 23:10:51 +1100785 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000786 sizeof(Key));
Damien Miller6af914a2010-09-10 11:39:26 +1000787 for (i = 0; i < sensitive_data.nkeys; i++)
788 sensitive_data.keys[i] = NULL;
Ben Lindstromf9c48842002-06-11 16:37:51 +0000789
790 PRIV_START;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000791 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Darren Tucker232b76f2006-05-06 17:41:51 +1000792 _PATH_HOST_KEY_FILE, "", NULL, NULL);
Damien Millerc1583312010-08-05 13:04:50 +1000793 sensitive_data.keys[1] = key_load_private_cert(KEY_DSA,
794 _PATH_HOST_DSA_KEY_FILE, "", NULL);
Damien Miller6af914a2010-09-10 11:39:26 +1000795#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000796 sensitive_data.keys[2] = key_load_private_cert(KEY_ECDSA,
797 _PATH_HOST_ECDSA_KEY_FILE, "", NULL);
Damien Miller6af914a2010-09-10 11:39:26 +1000798#endif
Damien Millereb8b60e2010-08-31 22:41:14 +1000799 sensitive_data.keys[3] = key_load_private_cert(KEY_RSA,
Damien Millerc1583312010-08-05 13:04:50 +1000800 _PATH_HOST_RSA_KEY_FILE, "", NULL);
Damien Millereb8b60e2010-08-31 22:41:14 +1000801 sensitive_data.keys[4] = key_load_private_type(KEY_DSA,
Darren Tucker232b76f2006-05-06 17:41:51 +1000802 _PATH_HOST_DSA_KEY_FILE, "", NULL, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +1000803#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000804 sensitive_data.keys[5] = key_load_private_type(KEY_ECDSA,
805 _PATH_HOST_ECDSA_KEY_FILE, "", NULL, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +1000806#endif
Damien Millereb8b60e2010-08-31 22:41:14 +1000807 sensitive_data.keys[6] = key_load_private_type(KEY_RSA,
Darren Tucker232b76f2006-05-06 17:41:51 +1000808 _PATH_HOST_RSA_KEY_FILE, "", NULL, NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +0000809 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000810
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +0000811 if (options.hostbased_authentication == 1 &&
812 sensitive_data.keys[0] == NULL &&
Damien Millereb8b60e2010-08-31 22:41:14 +1000813 sensitive_data.keys[4] == NULL &&
814 sensitive_data.keys[5] == NULL &&
815 sensitive_data.keys[6] == NULL) {
Damien Millerc1583312010-08-05 13:04:50 +1000816 sensitive_data.keys[1] = key_load_cert(
817 _PATH_HOST_DSA_KEY_FILE);
Damien Miller6af914a2010-09-10 11:39:26 +1000818#ifdef OPENSSL_HAS_ECC
Damien Millerc1583312010-08-05 13:04:50 +1000819 sensitive_data.keys[2] = key_load_cert(
Damien Millereb8b60e2010-08-31 22:41:14 +1000820 _PATH_HOST_ECDSA_KEY_FILE);
Damien Miller6af914a2010-09-10 11:39:26 +1000821#endif
Damien Millereb8b60e2010-08-31 22:41:14 +1000822 sensitive_data.keys[3] = key_load_cert(
Damien Millerc1583312010-08-05 13:04:50 +1000823 _PATH_HOST_RSA_KEY_FILE);
Damien Millerc1583312010-08-05 13:04:50 +1000824 sensitive_data.keys[4] = key_load_public(
Damien Millereb8b60e2010-08-31 22:41:14 +1000825 _PATH_HOST_DSA_KEY_FILE, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +1000826#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000827 sensitive_data.keys[5] = key_load_public(
828 _PATH_HOST_ECDSA_KEY_FILE, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +1000829#endif
Damien Millereb8b60e2010-08-31 22:41:14 +1000830 sensitive_data.keys[6] = key_load_public(
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000831 _PATH_HOST_RSA_KEY_FILE, NULL);
832 sensitive_data.external_keysign = 1;
833 }
Damien Miller95def091999-11-25 00:26:21 +1100834 }
Damien Miller5428f641999-11-25 11:54:57 +1100835 /*
836 * Get rid of any extra privileges that we may have. We will no
837 * longer need them. Also, extra privileges could make it very hard
838 * to read identity files and other non-world-readable files from the
839 * user's home directory if it happens to be on a NFS volume where
840 * root is mapped to nobody.
841 */
Darren Tucker25f60a72004-08-15 17:23:34 +1000842 if (original_effective_uid == 0) {
843 PRIV_START;
844 permanently_set_uid(pw);
845 }
Damien Miller95def091999-11-25 00:26:21 +1100846
Damien Miller5428f641999-11-25 11:54:57 +1100847 /*
848 * Now that we are back to our own permissions, create ~/.ssh
Damien Miller788f2122005-11-05 15:14:59 +1100849 * directory if it doesn't already exist.
Damien Miller5428f641999-11-25 11:54:57 +1100850 */
Darren Tucker199b1342009-07-06 07:16:56 +1000851 r = snprintf(buf, sizeof buf, "%s%s%s", pw->pw_dir,
Darren Tuckerd6173c02008-06-13 04:52:53 +1000852 strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
Darren Tucker8ccb7392010-09-10 12:28:24 +1000853 if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) < 0) {
854#ifdef WITH_SELINUX
Damien Miller71adf122011-01-25 12:16:15 +1100855 ssh_selinux_setfscreatecon(buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +1000856#endif
Damien Millerbe484b52000-07-15 14:14:16 +1000857 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100858 error("Could not create directory '%.200s'.", buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +1000859#ifdef WITH_SELINUX
Damien Miller71adf122011-01-25 12:16:15 +1100860 ssh_selinux_setfscreatecon(NULL);
Darren Tucker8ccb7392010-09-10 12:28:24 +1000861#endif
862 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000863 /* load options.identity_files */
864 load_public_identity_files();
865
866 /* Expand ~ in known host file names. */
867 /* XXX mem-leaks: */
Damien Miller0bc1bd82000-11-13 22:57:25 +1100868 options.system_hostfile =
869 tilde_expand_filename(options.system_hostfile, original_real_uid);
870 options.user_hostfile =
871 tilde_expand_filename(options.user_hostfile, original_real_uid);
872 options.system_hostfile2 =
873 tilde_expand_filename(options.system_hostfile2, original_real_uid);
874 options.user_hostfile2 =
875 tilde_expand_filename(options.user_hostfile2, original_real_uid);
Damien Miller95def091999-11-25 00:26:21 +1100876
Damien Miller07cd5892001-11-12 10:52:03 +1100877 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
Damien Miller857b02e2010-09-24 22:02:56 +1000878 signal(SIGCHLD, main_sigchld_handler);
Damien Miller07cd5892001-11-12 10:52:03 +1100879
Darren Tuckerd6173c02008-06-13 04:52:53 +1000880 /* Log into the remote system. Never returns if the login fails. */
Damien Miller67bd0622007-09-17 12:06:57 +1000881 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr,
Damien Millerd925dcd2010-12-01 12:21:51 +1100882 options.port, pw, timeout_ms);
Damien Miller95def091999-11-25 00:26:21 +1100883
Damien Miller383ffe62010-06-26 10:02:03 +1000884 if (packet_connection_is_on_socket()) {
885 verbose("Authenticated to %s ([%s]:%d).", host,
886 get_remote_ipaddr(), get_remote_port());
887 } else {
888 verbose("Authenticated to %s (via proxy).", host);
889 }
890
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000891 /* We no longer need the private host keys. Clear them now. */
892 if (sensitive_data.nkeys != 0) {
893 for (i = 0; i < sensitive_data.nkeys; i++) {
894 if (sensitive_data.keys[i] != NULL) {
895 /* Destroys contents safely */
896 debug3("clear hostkey %d", i);
897 key_free(sensitive_data.keys[i]);
898 sensitive_data.keys[i] = NULL;
899 }
900 }
901 xfree(sensitive_data.keys);
902 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000903 for (i = 0; i < options.num_identity_files; i++) {
904 if (options.identity_files[i]) {
905 xfree(options.identity_files[i]);
906 options.identity_files[i] = NULL;
907 }
908 if (options.identity_keys[i]) {
909 key_free(options.identity_keys[i]);
910 options.identity_keys[i] = NULL;
911 }
912 }
Damien Miller95def091999-11-25 00:26:21 +1100913
Damien Miller1383bd82000-04-06 12:32:37 +1000914 exit_status = compat20 ? ssh_session2() : ssh_session();
915 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +1000916
Damien Millerb1cbfa22008-05-19 16:00:08 +1000917 if (options.control_path != NULL && muxserver_sock != -1)
Damien Miller0e220db2004-06-15 10:34:08 +1000918 unlink(options.control_path);
919
Damien Millera41ccca2010-10-07 22:07:32 +1100920 /* Kill ProxyCommand if it is running. */
921 ssh_kill_proxy_command();
Damien Miller8c4e18a2002-09-19 12:05:02 +1000922
Damien Miller1383bd82000-04-06 12:32:37 +1000923 return exit_status;
924}
925
Damien Millere11e1ea2010-08-03 16:04:46 +1000926static void
927control_persist_detach(void)
928{
929 pid_t pid;
Damien Miller00d9ae22010-08-17 01:59:31 +1000930 int devnull;
Damien Millere11e1ea2010-08-03 16:04:46 +1000931
932 debug("%s: backgrounding master process", __func__);
933
934 /*
935 * master (current process) into the background, and make the
936 * foreground process a client of the backgrounded master.
937 */
938 switch ((pid = fork())) {
939 case -1:
940 fatal("%s: fork: %s", __func__, strerror(errno));
941 case 0:
942 /* Child: master process continues mainloop */
943 break;
944 default:
945 /* Parent: set up mux slave to connect to backgrounded master */
946 debug2("%s: background process is %ld", __func__, (long)pid);
947 stdin_null_flag = ostdin_null_flag;
948 no_shell_flag = ono_shell_flag;
949 no_tty_flag = ono_tty_flag;
950 tty_flag = otty_flag;
951 close(muxserver_sock);
952 muxserver_sock = -1;
Damien Miller5929c522010-09-10 11:17:02 +1000953 options.control_master = SSHCTL_MASTER_NO;
Damien Millere11e1ea2010-08-03 16:04:46 +1000954 muxclient(options.control_path);
955 /* muxclient() doesn't return on success. */
956 fatal("Failed to connect to new control master");
957 }
Damien Miller00d9ae22010-08-17 01:59:31 +1000958 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
959 error("%s: open(\"/dev/null\"): %s", __func__,
960 strerror(errno));
961 } else {
962 if (dup2(devnull, STDIN_FILENO) == -1 ||
963 dup2(devnull, STDOUT_FILENO) == -1)
964 error("%s: dup2: %s", __func__, strerror(errno));
965 if (devnull > STDERR_FILENO)
966 close(devnull);
967 }
Damien Millere11e1ea2010-08-03 16:04:46 +1000968}
969
970/* Do fork() after authentication. Used by "ssh -f" */
971static void
972fork_postauth(void)
973{
974 if (need_controlpersist_detach)
975 control_persist_detach();
976 debug("forking to background");
977 fork_after_authentication_flag = 0;
978 if (daemon(1, 1) < 0)
979 fatal("daemon() failed: %.200s", strerror(errno));
980}
981
Darren Tucker9f407c42008-06-13 04:50:27 +1000982/* Callback for remote forward global requests */
983static void
984ssh_confirm_remote_forward(int type, u_int32_t seq, void *ctxt)
985{
986 Forward *rfwd = (Forward *)ctxt;
987
Damien Miller4bf648f2009-02-14 16:28:21 +1100988 /* XXX verbose() on failure? */
Darren Tucker9f407c42008-06-13 04:50:27 +1000989 debug("remote forward %s for: listen %d, connect %s:%d",
990 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
991 rfwd->listen_port, rfwd->connect_host, rfwd->connect_port);
Damien Miller4bf648f2009-02-14 16:28:21 +1100992 if (type == SSH2_MSG_REQUEST_SUCCESS && rfwd->listen_port == 0) {
Damien Miller388f6fc2010-05-21 14:57:35 +1000993 rfwd->allocated_port = packet_get_int();
Damien Miller4bf648f2009-02-14 16:28:21 +1100994 logit("Allocated port %u for remote forward to %s:%d",
Damien Miller388f6fc2010-05-21 14:57:35 +1000995 rfwd->allocated_port,
996 rfwd->connect_host, rfwd->connect_port);
Damien Miller4bf648f2009-02-14 16:28:21 +1100997 }
998
Darren Tucker9f407c42008-06-13 04:50:27 +1000999 if (type == SSH2_MSG_REQUEST_FAILURE) {
1000 if (options.exit_on_forward_failure)
1001 fatal("Error: remote port forwarding failed for "
1002 "listen port %d", rfwd->listen_port);
1003 else
1004 logit("Warning: remote port forwarding failed for "
1005 "listen port %d", rfwd->listen_port);
1006 }
Darren Tucker9a2a6092008-07-04 12:53:50 +10001007 if (++remote_forward_confirms_received == options.num_remote_forwards) {
Darren Tucker9f407c42008-06-13 04:50:27 +10001008 debug("All remote forwarding requests processed");
Damien Millere11e1ea2010-08-03 16:04:46 +10001009 if (fork_after_authentication_flag)
1010 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001011 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001012}
1013
Ben Lindstrombba81212001-06-25 05:01:22 +00001014static void
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001015client_cleanup_stdio_fwd(int id, void *arg)
1016{
1017 debug("stdio forwarding: done");
1018 cleanup_exit(0);
1019}
1020
1021static int
1022client_setup_stdio_fwd(const char *host_to_connect, u_short port_to_connect)
1023{
1024 Channel *c;
Damien Millere1537f92010-01-26 13:26:22 +11001025 int in, out;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001026
1027 debug3("client_setup_stdio_fwd %s:%d", host_to_connect,
1028 port_to_connect);
Damien Millere1537f92010-01-26 13:26:22 +11001029
1030 in = dup(STDIN_FILENO);
1031 out = dup(STDOUT_FILENO);
1032 if (in < 0 || out < 0)
1033 fatal("channel_connect_stdio_fwd: dup() in/out failed");
1034
1035 if ((c = channel_connect_stdio_fwd(host_to_connect, port_to_connect,
1036 in, out)) == NULL)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001037 return 0;
1038 channel_register_cleanup(c->self, client_cleanup_stdio_fwd, 0);
1039 return 1;
1040}
1041
1042static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001043ssh_init_forwarding(void)
1044{
Kevin Steves12057502001-02-05 14:54:34 +00001045 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001046 int i;
Kevin Steves12057502001-02-05 14:54:34 +00001047
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001048 if (stdio_forward_host != NULL) {
1049 if (!compat20) {
1050 fatal("stdio forwarding require Protocol 2");
1051 }
1052 if (!client_setup_stdio_fwd(stdio_forward_host,
1053 stdio_forward_port))
1054 fatal("Failed to connect in stdio forward mode.");
1055 }
1056
Damien Miller0bc1bd82000-11-13 22:57:25 +11001057 /* Initiate local TCP/IP port forwardings. */
1058 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001059 debug("Local connections to %.200s:%d forwarded to remote "
1060 "address %.200s:%d",
Darren Tucker47eede72005-03-14 23:08:12 +11001061 (options.local_forwards[i].listen_host == NULL) ?
1062 (options.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001063 options.local_forwards[i].listen_host,
1064 options.local_forwards[i].listen_port,
1065 options.local_forwards[i].connect_host,
1066 options.local_forwards[i].connect_port);
Damien Millerb16461c2002-01-22 23:29:22 +11001067 success += channel_setup_local_fwd_listener(
Damien Millerf91ee4c2005-03-01 21:24:33 +11001068 options.local_forwards[i].listen_host,
1069 options.local_forwards[i].listen_port,
1070 options.local_forwards[i].connect_host,
1071 options.local_forwards[i].connect_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11001072 options.gateway_ports);
1073 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10001074 if (i > 0 && success != i && options.exit_on_forward_failure)
1075 fatal("Could not request local forwarding.");
Kevin Steves12057502001-02-05 14:54:34 +00001076 if (i > 0 && success == 0)
1077 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001078
1079 /* Initiate remote TCP/IP port forwardings. */
1080 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001081 debug("Remote connections from %.200s:%d forwarded to "
1082 "local address %.200s:%d",
Damien Miller46d38de2005-07-17 17:02:09 +10001083 (options.remote_forwards[i].listen_host == NULL) ?
Damien Milleraa3bb102005-11-05 15:12:59 +11001084 "LOCALHOST" : options.remote_forwards[i].listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +11001085 options.remote_forwards[i].listen_port,
1086 options.remote_forwards[i].connect_host,
1087 options.remote_forwards[i].connect_port);
Darren Tuckere7d4b192006-07-12 22:17:10 +10001088 if (channel_request_remote_forwarding(
Damien Millerf91ee4c2005-03-01 21:24:33 +11001089 options.remote_forwards[i].listen_host,
1090 options.remote_forwards[i].listen_port,
1091 options.remote_forwards[i].connect_host,
Darren Tuckere7d4b192006-07-12 22:17:10 +10001092 options.remote_forwards[i].connect_port) < 0) {
1093 if (options.exit_on_forward_failure)
1094 fatal("Could not request remote forwarding.");
1095 else
1096 logit("Warning: Could not request remote "
1097 "forwarding.");
1098 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001099 client_register_global_confirm(ssh_confirm_remote_forward,
1100 &options.remote_forwards[i]);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001101 }
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001102
1103 /* Initiate tunnel forwarding. */
1104 if (options.tun_open != SSH_TUNMODE_NO) {
1105 if (client_request_tun_fwd(options.tun_open,
1106 options.tun_local, options.tun_remote) == -1) {
1107 if (options.exit_on_forward_failure)
1108 fatal("Could not request tunnel forwarding.");
1109 else
1110 error("Could not request tunnel forwarding.");
1111 }
1112 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001113}
1114
Ben Lindstrombba81212001-06-25 05:01:22 +00001115static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001116check_agent_present(void)
1117{
1118 if (options.forward_agent) {
Damien Miller788f2122005-11-05 15:14:59 +11001119 /* Clear agent forwarding if we don't have an agent. */
Damien Miller789e95d2002-09-12 09:52:46 +10001120 if (!ssh_agent_present())
Damien Miller0bc1bd82000-11-13 22:57:25 +11001121 options.forward_agent = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001122 }
1123}
1124
Ben Lindstrombba81212001-06-25 05:01:22 +00001125static int
Damien Miller1383bd82000-04-06 12:32:37 +10001126ssh_session(void)
1127{
1128 int type;
Damien Miller1383bd82000-04-06 12:32:37 +10001129 int interactive = 0;
1130 int have_tty = 0;
1131 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +10001132 char *cp;
Damien Miller17e7ed02005-06-17 12:54:33 +10001133 const char *display;
Damien Miller1383bd82000-04-06 12:32:37 +10001134
Damien Miller95def091999-11-25 00:26:21 +11001135 /* Enable compression if requested. */
1136 if (options.compression) {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001137 debug("Requesting compression at level %d.",
1138 options.compression_level);
Damien Miller95def091999-11-25 00:26:21 +11001139
Darren Tuckerd6173c02008-06-13 04:52:53 +10001140 if (options.compression_level < 1 ||
1141 options.compression_level > 9)
1142 fatal("Compression level must be from 1 (fast) to "
1143 "9 (slow, best).");
Damien Miller95def091999-11-25 00:26:21 +11001144
1145 /* Send the request. */
1146 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
1147 packet_put_int(options.compression_level);
1148 packet_send();
1149 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +11001150 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001151 if (type == SSH_SMSG_SUCCESS)
1152 packet_start_compression(options.compression_level);
1153 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +10001154 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +11001155 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001156 packet_disconnect("Protocol error waiting for "
1157 "compression response.");
Damien Miller95def091999-11-25 00:26:21 +11001158 }
1159 /* Allocate a pseudo tty if appropriate. */
1160 if (tty_flag) {
1161 debug("Requesting pty.");
1162
1163 /* Start the packet. */
1164 packet_start(SSH_CMSG_REQUEST_PTY);
1165
1166 /* Store TERM in the packet. There is no limit on the
1167 length of the string. */
1168 cp = getenv("TERM");
1169 if (!cp)
1170 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +00001171 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +11001172
1173 /* Store window size in the packet. */
1174 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1175 memset(&ws, 0, sizeof(ws));
Damien Miller71a73672006-03-26 14:04:36 +11001176 packet_put_int((u_int)ws.ws_row);
1177 packet_put_int((u_int)ws.ws_col);
1178 packet_put_int((u_int)ws.ws_xpixel);
1179 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller95def091999-11-25 00:26:21 +11001180
1181 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001182 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +11001183
1184 /* Send the packet, and wait for it to leave. */
1185 packet_send();
1186 packet_write_wait();
1187
1188 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001189 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +10001190 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001191 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001192 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +10001193 } else if (type == SSH_SMSG_FAILURE)
Darren Tuckerd6173c02008-06-13 04:52:53 +10001194 logit("Warning: Remote host failed or refused to "
1195 "allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +11001196 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001197 packet_disconnect("Protocol error waiting for pty "
1198 "request response.");
Damien Miller95def091999-11-25 00:26:21 +11001199 }
1200 /* Request X11 forwarding if enabled and DISPLAY is set. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001201 display = getenv("DISPLAY");
1202 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001203 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001204 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001205 client_x11_get_proto(display, options.xauth_location,
Damien Miller1ab6a512010-06-26 10:02:24 +10001206 options.forward_x11_trusted,
1207 options.forward_x11_timeout,
1208 &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001209 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001210 debug("Requesting X11 forwarding with authentication "
1211 "spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +10001212 x11_request_forwarding_with_spoofing(0, display, proto, data);
Damien Miller95def091999-11-25 00:26:21 +11001213
1214 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001215 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001216 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001217 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001218 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +10001219 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +10001220 } else {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001221 packet_disconnect("Protocol error waiting for X11 "
1222 "forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +10001223 }
Damien Miller95def091999-11-25 00:26:21 +11001224 }
1225 /* Tell the packet module whether this is an interactive session. */
Damien Miller0dac6fb2010-11-20 15:19:38 +11001226 packet_set_interactive(interactive,
1227 options.ip_qos_interactive, options.ip_qos_bulk);
Damien Miller95def091999-11-25 00:26:21 +11001228
1229 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001230 check_agent_present();
1231
Damien Miller95def091999-11-25 00:26:21 +11001232 if (options.forward_agent) {
1233 debug("Requesting authentication agent forwarding.");
1234 auth_request_forwarding();
1235
1236 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001237 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +11001238 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11001239 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +10001240 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +11001241 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001242
Damien Miller0bc1bd82000-11-13 22:57:25 +11001243 /* Initiate port forwardings. */
1244 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001245
Darren Tuckerb776c852007-12-02 23:06:35 +11001246 /* Execute a local command */
1247 if (options.local_command != NULL &&
1248 options.permit_local_command)
1249 ssh_local_cmd(options.local_command);
1250
Darren Tucker9a2a6092008-07-04 12:53:50 +10001251 /*
1252 * If requested and we are not interested in replies to remote
1253 * forwarding requests, then let ssh continue in the background.
1254 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001255 if (fork_after_authentication_flag) {
1256 if (options.exit_on_forward_failure &&
1257 options.num_remote_forwards > 0) {
1258 debug("deferring postauth fork until remote forward "
1259 "confirmation received");
1260 } else
1261 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001262 }
Damien Miller5428f641999-11-25 11:54:57 +11001263
1264 /*
1265 * If a command was specified on the command line, execute the
1266 * command now. Otherwise request the server to start a shell.
1267 */
Damien Miller95def091999-11-25 00:26:21 +11001268 if (buffer_len(&command) > 0) {
1269 int len = buffer_len(&command);
1270 if (len > 900)
1271 len = 900;
Darren Tuckerd6173c02008-06-13 04:52:53 +10001272 debug("Sending command: %.*s", len,
1273 (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +11001274 packet_start(SSH_CMSG_EXEC_CMD);
1275 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1276 packet_send();
1277 packet_write_wait();
1278 } else {
1279 debug("Requesting shell.");
1280 packet_start(SSH_CMSG_EXEC_SHELL);
1281 packet_send();
1282 packet_write_wait();
1283 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001284
Damien Miller95def091999-11-25 00:26:21 +11001285 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001286 return client_loop(have_tty, tty_flag ?
1287 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +10001288}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001289
Ben Lindstromf558cf62001-09-20 23:13:49 +00001290/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001291static void
Damien Millerd530f5f2010-05-21 14:57:10 +10001292ssh_session2_setup(int id, int success, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001293{
Damien Miller3756dce2004-06-18 01:17:29 +10001294 extern char **environ;
Damien Miller17e7ed02005-06-17 12:54:33 +10001295 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +10001296 int interactive = tty_flag;
Damien Miller17e7ed02005-06-17 12:54:33 +10001297
Damien Millerd530f5f2010-05-21 14:57:10 +10001298 if (!success)
1299 return; /* No need for error message, channels code sens one */
1300
Damien Miller46d38de2005-07-17 17:02:09 +10001301 display = getenv("DISPLAY");
Damien Miller17e7ed02005-06-17 12:54:33 +10001302 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001303 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001304 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001305 client_x11_get_proto(display, options.xauth_location,
Damien Miller1ab6a512010-06-26 10:02:24 +10001306 options.forward_x11_trusted,
1307 options.forward_x11_timeout, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001308 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001309 debug("Requesting X11 forwarding with authentication "
1310 "spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +10001311 x11_request_forwarding_with_spoofing(id, display, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001312 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001313 /* XXX wait for reply */
1314 }
1315
Damien Miller0bc1bd82000-11-13 22:57:25 +11001316 check_agent_present();
1317 if (options.forward_agent) {
1318 debug("Requesting authentication agent forwarding.");
1319 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1320 packet_send();
1321 }
1322
Damien Miller0e220db2004-06-15 10:34:08 +10001323 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
Damien Miller5771ed72008-05-19 15:35:33 +10001324 NULL, fileno(stdin), &command, environ);
Damien Miller1383bd82000-04-06 12:32:37 +10001325}
1326
Ben Lindstromf558cf62001-09-20 23:13:49 +00001327/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001328static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001329ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001330{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001331 Channel *c;
1332 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001333
Damien Millercaf6dd62000-08-29 11:33:50 +11001334 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001335 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001336 } else {
1337 in = dup(STDIN_FILENO);
1338 }
1339 out = dup(STDOUT_FILENO);
1340 err = dup(STDERR_FILENO);
1341
1342 if (in < 0 || out < 0 || err < 0)
1343 fatal("dup() in/out/err failed");
1344
Damien Miller69b69aa2000-10-28 14:19:58 +11001345 /* enable nonblocking unless tty */
1346 if (!isatty(in))
1347 set_nonblock(in);
1348 if (!isatty(out))
1349 set_nonblock(out);
1350 if (!isatty(err))
1351 set_nonblock(err);
1352
Damien Millere4340be2000-09-16 13:29:08 +11001353 window = CHAN_SES_WINDOW_DEFAULT;
1354 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001355 if (tty_flag) {
1356 window >>= 1;
1357 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001358 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001359 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001360 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001361 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001362 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001363
Ben Lindstromf558cf62001-09-20 23:13:49 +00001364 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001365
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001366 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001367 if (!no_shell_flag)
Damien Millerb84886b2008-05-19 15:05:07 +10001368 channel_register_open_confirm(c->self,
1369 ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001370
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001371 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001372}
1373
Ben Lindstrombba81212001-06-25 05:01:22 +00001374static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001375ssh_session2(void)
1376{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001377 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001378
1379 /* XXX should be pre-session */
1380 ssh_init_forwarding();
1381
Damien Millere11e1ea2010-08-03 16:04:46 +10001382 /* Start listening for multiplex clients */
1383 muxserver_listen();
1384
1385 /*
1386 * If we are in control persist mode, then prepare to background
1387 * ourselves and have a foreground client attach as a control
1388 * slave. NB. we must save copies of the flags that we override for
1389 * the backgrounding, since we defer attachment of the slave until
1390 * after the connection is fully established (in particular,
1391 * async rfwd replies have been received for ExitOnForwardFailure).
1392 */
1393 if (options.control_persist && muxserver_sock != -1) {
1394 ostdin_null_flag = stdin_null_flag;
1395 ono_shell_flag = no_shell_flag;
1396 ono_tty_flag = no_tty_flag;
1397 otty_flag = tty_flag;
1398 stdin_null_flag = 1;
1399 no_shell_flag = 1;
1400 no_tty_flag = 1;
1401 tty_flag = 0;
1402 if (!fork_after_authentication_flag)
1403 need_controlpersist_detach = 1;
1404 fork_after_authentication_flag = 1;
1405 }
1406
Ben Lindstromf558cf62001-09-20 23:13:49 +00001407 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1408 id = ssh_session2_open();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001409
Darren Tucker8901fa92008-06-11 09:34:01 +10001410 /* If we don't expect to open a new session, then disallow it */
Damien Miller456e6f02008-11-03 19:20:10 +11001411 if (options.control_master == SSHCTL_MASTER_NO &&
1412 (datafellows & SSH_NEW_OPENSSH)) {
Darren Tucker8901fa92008-06-11 09:34:01 +10001413 debug("Requesting no-more-sessions@openssh.com");
1414 packet_start(SSH2_MSG_GLOBAL_REQUEST);
1415 packet_put_cstring("no-more-sessions@openssh.com");
1416 packet_put_char(0);
1417 packet_send();
1418 }
1419
Damien Millerd27b9472005-12-13 19:29:02 +11001420 /* Execute a local command */
1421 if (options.local_command != NULL &&
1422 options.permit_local_command)
1423 ssh_local_cmd(options.local_command);
1424
Damien Miller1f25ab42010-07-16 13:56:23 +10001425 /*
1426 * If requested and we are not interested in replies to remote
1427 * forwarding requests, then let ssh continue in the background.
1428 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001429 if (fork_after_authentication_flag) {
1430 if (options.exit_on_forward_failure &&
1431 options.num_remote_forwards > 0) {
1432 debug("deferring postauth fork until remote forward "
1433 "confirmation received");
1434 } else
1435 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001436 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001437
Darren Tuckerf1de4e52010-01-08 16:54:59 +11001438 if (options.use_roaming)
1439 request_roaming();
1440
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001441 return client_loop(tty_flag, tty_flag ?
1442 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001443}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001444
Ben Lindstrombba81212001-06-25 05:01:22 +00001445static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001446load_public_identity_files(void)
1447{
Damien Miller6b1d53c2006-03-31 23:13:21 +11001448 char *filename, *cp, thishost[NI_MAXHOST];
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001449 char *pwdir = NULL, *pwname = NULL;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001450 int i = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001451 Key *public;
Damien Miller6b1d53c2006-03-31 23:13:21 +11001452 struct passwd *pw;
Damien Miller0a80ca12010-02-27 07:55:05 +11001453 u_int n_ids;
1454 char *identity_files[SSH_MAX_IDENTITY_FILES];
1455 Key *identity_keys[SSH_MAX_IDENTITY_FILES];
Damien Miller7ea845e2010-02-12 09:21:02 +11001456#ifdef ENABLE_PKCS11
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001457 Key **keys;
Damien Miller7ea845e2010-02-12 09:21:02 +11001458 int nkeys;
Damien Miller0a80ca12010-02-27 07:55:05 +11001459#endif /* PKCS11 */
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001460
Damien Miller0a80ca12010-02-27 07:55:05 +11001461 n_ids = 0;
1462 bzero(identity_files, sizeof(identity_files));
1463 bzero(identity_keys, sizeof(identity_keys));
1464
1465#ifdef ENABLE_PKCS11
Damien Miller7ea845e2010-02-12 09:21:02 +11001466 if (options.pkcs11_provider != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001467 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
Damien Miller7ea845e2010-02-12 09:21:02 +11001468 (pkcs11_init(!options.batch_mode) == 0) &&
1469 (nkeys = pkcs11_add_provider(options.pkcs11_provider, NULL,
1470 &keys)) > 0) {
Damien Miller7ea845e2010-02-12 09:21:02 +11001471 for (i = 0; i < nkeys; i++) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001472 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
1473 key_free(keys[i]);
1474 continue;
1475 }
1476 identity_keys[n_ids] = keys[i];
1477 identity_files[n_ids] =
Damien Miller7ea845e2010-02-12 09:21:02 +11001478 xstrdup(options.pkcs11_provider); /* XXX */
Damien Miller0a80ca12010-02-27 07:55:05 +11001479 n_ids++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001480 }
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001481 xfree(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001482 }
Damien Miller7ea845e2010-02-12 09:21:02 +11001483#endif /* ENABLE_PKCS11 */
Damien Miller6b1d53c2006-03-31 23:13:21 +11001484 if ((pw = getpwuid(original_real_uid)) == NULL)
1485 fatal("load_public_identity_files: getpwuid failed");
Darren Tuckere143f062007-12-02 23:21:16 +11001486 pwname = xstrdup(pw->pw_name);
1487 pwdir = xstrdup(pw->pw_dir);
Damien Miller6b1d53c2006-03-31 23:13:21 +11001488 if (gethostname(thishost, sizeof(thishost)) == -1)
1489 fatal("load_public_identity_files: gethostname: %s",
1490 strerror(errno));
Damien Miller0a80ca12010-02-27 07:55:05 +11001491 for (i = 0; i < options.num_identity_files; i++) {
1492 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
1493 xfree(options.identity_files[i]);
1494 continue;
1495 }
Damien Miller6b1d53c2006-03-31 23:13:21 +11001496 cp = tilde_expand_filename(options.identity_files[i],
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001497 original_real_uid);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001498 filename = percent_expand(cp, "d", pwdir,
1499 "u", pwname, "l", thishost, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +11001500 "r", options.user, (char *)NULL);
1501 xfree(cp);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001502 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001503 debug("identity file %s type %d", filename,
1504 public ? public->type : -1);
1505 xfree(options.identity_files[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +11001506 identity_files[n_ids] = filename;
1507 identity_keys[n_ids] = public;
1508
1509 if (++n_ids >= SSH_MAX_IDENTITY_FILES)
1510 continue;
1511
1512 /* Try to add the certificate variant too */
1513 xasprintf(&cp, "%s-cert", filename);
1514 public = key_load_public(cp, NULL);
1515 debug("identity file %s type %d", cp,
1516 public ? public->type : -1);
1517 if (public == NULL) {
1518 xfree(cp);
1519 continue;
1520 }
1521 if (!key_is_cert(public)) {
1522 debug("%s: key %s type %s is not a certificate",
1523 __func__, cp, key_type(public));
1524 key_free(public);
1525 xfree(cp);
1526 continue;
1527 }
1528 identity_keys[n_ids] = public;
1529 /* point to the original path, most likely the private key */
1530 identity_files[n_ids] = xstrdup(filename);
1531 n_ids++;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001532 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001533 options.num_identity_files = n_ids;
1534 memcpy(options.identity_files, identity_files, sizeof(identity_files));
1535 memcpy(options.identity_keys, identity_keys, sizeof(identity_keys));
1536
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001537 bzero(pwname, strlen(pwname));
Darren Tuckere143f062007-12-02 23:21:16 +11001538 xfree(pwname);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001539 bzero(pwdir, strlen(pwdir));
Darren Tuckere143f062007-12-02 23:21:16 +11001540 xfree(pwdir);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001541}
Damien Miller857b02e2010-09-24 22:02:56 +10001542
1543static void
1544main_sigchld_handler(int sig)
1545{
1546 int save_errno = errno;
1547 pid_t pid;
1548 int status;
1549
1550 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
1551 (pid < 0 && errno == EINTR))
1552 ;
1553
1554 signal(sig, main_sigchld_handler);
1555 errno = save_errno;
1556}
1557