blob: e7e15cd65d2909f3d18a5665cbe702dbe2de2ab1 [file] [log] [blame]
Damien Miller295ee632011-05-29 21:42:31 +10001/* $OpenBSD: ssh.c,v 1.361 2011/05/24 07:15:47 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 Miller21771e22011-05-15 08:45:50 +1000117/* Flag indicating whether a tty should be requested */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000118int tty_flag = 0;
119
Damien Miller1383bd82000-04-06 12:32:37 +1000120/* don't exec a shell */
121int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000122
Damien Miller5428f641999-11-25 11:54:57 +1100123/*
124 * Flag indicating that nothing should be read from stdin. This can be set
125 * on the command line.
126 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000127int stdin_null_flag = 0;
128
Damien Miller5428f641999-11-25 11:54:57 +1100129/*
Damien Millere11e1ea2010-08-03 16:04:46 +1000130 * Flag indicating that the current process should be backgrounded and
131 * a new slave launched in the foreground for ControlPersist.
132 */
133int need_controlpersist_detach = 0;
134
135/* Copies of flags for ControlPersist foreground slave */
Damien Miller21771e22011-05-15 08:45:50 +1000136int ostdin_null_flag, ono_shell_flag, otty_flag, orequest_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +1000137
138/*
Damien Miller5428f641999-11-25 11:54:57 +1100139 * Flag indicating that ssh should fork after authentication. This is useful
Ben Lindstromf666fec2002-06-06 19:51:58 +0000140 * so that the passphrase can be entered manually, and then ssh goes to the
Damien Miller5428f641999-11-25 11:54:57 +1100141 * background.
142 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000143int fork_after_authentication_flag = 0;
144
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100145/* forward stdio to remote host and port */
146char *stdio_forward_host = NULL;
147int stdio_forward_port = 0;
148
Damien Miller5428f641999-11-25 11:54:57 +1100149/*
150 * General data structure for command line options and options configurable
151 * in configuration files. See readconf.h.
152 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000153Options options;
154
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000155/* optional user configfile */
156char *config = NULL;
157
Damien Miller5428f641999-11-25 11:54:57 +1100158/*
159 * Name of the host we are connecting to. This is the name given on the
160 * command line, or the HostName specified for the user-supplied name in a
161 * configuration file.
162 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000163char *host;
164
165/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100166struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000167
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000168/* Private host keys. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000169Sensitive sensitive_data;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000170
171/* Original real UID. */
172uid_t original_real_uid;
Ben Lindstromf9c48842002-06-11 16:37:51 +0000173uid_t original_effective_uid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000174
Damien Miller1383bd82000-04-06 12:32:37 +1000175/* command to be executed */
176Buffer command;
177
Damien Miller832562e2001-01-30 09:30:01 +1100178/* Should we execute a command or invoke a subsystem? */
179int subsystem_flag = 0;
180
Damien Miller2797f7f2002-04-23 21:09:44 +1000181/* # of replies received for global requests */
Darren Tucker9f407c42008-06-13 04:50:27 +1000182static int remote_forward_confirms_received = 0;
Damien Miller2797f7f2002-04-23 21:09:44 +1000183
Damien Millerb1cbfa22008-05-19 16:00:08 +1000184/* mux.c */
185extern int muxserver_sock;
186extern u_int muxclient_command;
Damien Miller0e220db2004-06-15 10:34:08 +1000187
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000188/* Prints a help message to the user. This function never returns. */
189
Ben Lindstrombba81212001-06-25 05:01:22 +0000190static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000191usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000192{
Damien Miller50955102004-03-22 09:34:58 +1100193 fprintf(stderr,
Damien Millerc13c3ee2008-11-03 19:23:28 +1100194"usage: ssh [-1246AaCfgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]\n"
Darren Tucker895d6982005-10-03 18:18:05 +1000195" [-D [bind_address:]port] [-e escape_char] [-F configfile]\n"
Damien Miller048dc932010-02-12 09:22:04 +1100196" [-I pkcs11] [-i identity_file]\n"
197" [-L [bind_address:]port:host:hostport]\n"
Damien Millerf91ee4c2005-03-01 21:24:33 +1100198" [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
Damien Miller02faece2005-03-02 12:04:32 +1100199" [-R [bind_address:]port:host:hostport] [-S ctl_path]\n"
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100200" [-W host:port] [-w local_tun[:remote_tun]]\n"
201" [user@]hostname [command]\n"
Damien Miller50955102004-03-22 09:34:58 +1100202 );
Darren Tuckere9a9b712005-12-20 16:15:51 +1100203 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000204}
205
Ben Lindstrombba81212001-06-25 05:01:22 +0000206static int ssh_session(void);
207static int ssh_session2(void);
208static void load_public_identity_files(void);
Damien Miller857b02e2010-09-24 22:02:56 +1000209static void main_sigchld_handler(int);
Damien Millerb1cbfa22008-05-19 16:00:08 +1000210
211/* from muxclient.c */
212void muxclient(const char *);
213void muxserver_listen(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000214
Damien Miller295ee632011-05-29 21:42:31 +1000215/* ~/ expand a list of paths. NB. assumes path[n] is heap-allocated. */
216static void
217tilde_expand_paths(char **paths, u_int num_paths)
218{
219 u_int i;
220 char *cp;
221
222 for (i = 0; i < num_paths; i++) {
223 cp = tilde_expand_filename(paths[i], original_real_uid);
224 xfree(paths[i]);
225 paths[i] = cp;
226 }
227}
228
Damien Miller95def091999-11-25 00:26:21 +1100229/*
230 * Main program for the ssh client.
231 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000232int
233main(int ac, char **av)
234{
Darren Tucker199b1342009-07-06 07:16:56 +1000235 int i, r, opt, exit_status, use_syslog;
Damien Miller83f8a402011-01-07 09:51:17 +1100236 char *p, *cp, *line, *argv0, buf[MAXPATHLEN], *host_arg;
Damien Millerdfc85fa2011-05-15 08:44:02 +1000237 char thishost[NI_MAXHOST], shorthost[NI_MAXHOST], portstr[NI_MAXSERV];
Damien Miller95def091999-11-25 00:26:21 +1100238 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000239 struct passwd *pw;
Damien Miller67bd0622007-09-17 12:06:57 +1000240 int dummy, timeout_ms;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000241 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000242 extern char *optarg;
Damien Miller9651fe62005-06-26 08:55:25 +1000243 struct servent *sp;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100244 Forward fwd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000245
Darren Tuckerce321d82005-10-03 18:11:24 +1000246 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
247 sanitise_stdfd();
248
Damien Miller59d3d5b2003-08-22 09:34:41 +1000249 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000250
Damien Miller5428f641999-11-25 11:54:57 +1100251 /*
Damien Miller00d9ae22010-08-17 01:59:31 +1000252 * Discard other fds that are hanging around. These can cause problem
253 * with backgrounded ssh processes started by ControlPersist.
254 */
255 closefrom(STDERR_FILENO + 1);
256
257 /*
Damien Miller5428f641999-11-25 11:54:57 +1100258 * Save the original real uid. It will be needed later (uid-swapping
259 * may clobber the real uid).
260 */
Damien Miller95def091999-11-25 00:26:21 +1100261 original_real_uid = getuid();
262 original_effective_uid = geteuid();
Damien Millera8e06ce2003-11-21 23:48:55 +1100263
Damien Miller50b9a602002-09-04 16:50:06 +1000264 /*
265 * Use uid-swapping to give up root privileges for the duration of
266 * option processing. We will re-instantiate the rights when we are
267 * ready to create the privileged port, and will permanently drop
268 * them when the port has been created (actually, when the connection
269 * has been made, as we may need to create the port several times).
270 */
271 PRIV_END;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000272
Damien Miller05dd7952000-10-01 00:42:48 +1100273#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100274 /* If we are installed setuid root be careful to not drop core. */
275 if (original_real_uid != original_effective_uid) {
276 struct rlimit rlim;
277 rlim.rlim_cur = rlim.rlim_max = 0;
278 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
279 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000280 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100281#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000282 /* Get user data. */
283 pw = getpwuid(original_real_uid);
284 if (!pw) {
Damien Miller996acd22003-04-09 20:59:48 +1000285 logit("You don't exist, go away!");
Darren Tuckere9a9b712005-12-20 16:15:51 +1100286 exit(255);
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000287 }
288 /* Take a copy of the returned structure. */
289 pw = pwcopy(pw);
290
Damien Miller5428f641999-11-25 11:54:57 +1100291 /*
Damien Miller5428f641999-11-25 11:54:57 +1100292 * Set our umask to something reasonable, as some files are created
293 * with the default umask. This will make them world-readable but
294 * writable only by the owner, which is ok for all files for which we
295 * don't set the modes explicitly.
296 */
Damien Miller95def091999-11-25 00:26:21 +1100297 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000298
Darren Tuckerd6173c02008-06-13 04:52:53 +1000299 /*
300 * Initialize option structure to indicate that no values have been
301 * set.
302 */
Damien Miller95def091999-11-25 00:26:21 +1100303 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000304
Damien Miller95def091999-11-25 00:26:21 +1100305 /* Parse command-line arguments. */
306 host = NULL;
Damien Millere272a5b2008-11-03 19:22:37 +1100307 use_syslog = 0;
Darren Tucker72efd742009-06-21 17:48:00 +1000308 argv0 = av[0];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000309
Damien Miller2ecb6bd2006-03-15 12:03:53 +1100310 again:
Darren Tuckerd6173c02008-06-13 04:52:53 +1000311 while ((opt = getopt(ac, av, "1246ab:c:e:fgi:kl:m:no:p:qstvx"
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100312 "ACD:F:I:KL:MNO:PR:S:TVw:W:XYy")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100313 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000314 case '1':
315 options.protocol = SSH_PROTO_1;
316 break;
Damien Miller4af51302000-04-16 11:18:38 +1000317 case '2':
318 options.protocol = SSH_PROTO_2;
319 break;
Damien Miller34132e52000-01-14 15:45:46 +1100320 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000321 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100322 break;
Damien Miller34132e52000-01-14 15:45:46 +1100323 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000324 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100325 break;
Damien Miller95def091999-11-25 00:26:21 +1100326 case 'n':
327 stdin_null_flag = 1;
328 break;
Damien Miller95def091999-11-25 00:26:21 +1100329 case 'f':
330 fork_after_authentication_flag = 1;
331 stdin_null_flag = 1;
332 break;
Damien Miller95def091999-11-25 00:26:21 +1100333 case 'x':
334 options.forward_x11 = 0;
335 break;
Damien Miller95def091999-11-25 00:26:21 +1100336 case 'X':
337 options.forward_x11 = 1;
338 break;
Damien Millere272a5b2008-11-03 19:22:37 +1100339 case 'y':
340 use_syslog = 1;
341 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000342 case 'Y':
343 options.forward_x11 = 1;
344 options.forward_x11_trusted = 1;
345 break;
Damien Miller95def091999-11-25 00:26:21 +1100346 case 'g':
347 options.gateway_ports = 1;
348 break;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100349 case 'O':
Damien Millere1537f92010-01-26 13:26:22 +1100350 if (stdio_forward_host != NULL)
351 fatal("Cannot specify multiplexing "
352 "command with -W");
353 else if (muxclient_command != 0)
354 fatal("Multiplexing command already specified");
Darren Tucker7ebfc102004-11-07 20:06:19 +1100355 if (strcmp(optarg, "check") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000356 muxclient_command = SSHMUX_COMMAND_ALIVE_CHECK;
Damien Miller388f6fc2010-05-21 14:57:35 +1000357 else if (strcmp(optarg, "forward") == 0)
358 muxclient_command = SSHMUX_COMMAND_FORWARD;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100359 else if (strcmp(optarg, "exit") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000360 muxclient_command = SSHMUX_COMMAND_TERMINATE;
Damien Miller6c3eec72011-05-05 14:16:22 +1000361 else if (strcmp(optarg, "stop") == 0)
362 muxclient_command = SSHMUX_COMMAND_STOP;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100363 else
364 fatal("Invalid multiplex command.");
365 break;
Damien Miller147bba32002-09-04 16:46:06 +1000366 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100367 options.use_privileged_port = 0;
368 break;
Damien Miller95def091999-11-25 00:26:21 +1100369 case 'a':
370 options.forward_agent = 0;
371 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000372 case 'A':
373 options.forward_agent = 1;
374 break;
Damien Miller95def091999-11-25 00:26:21 +1100375 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100376 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100377 break;
Darren Tucker415bddc2007-06-12 23:43:16 +1000378 case 'K':
379 options.gss_authentication = 1;
380 options.gss_deleg_creds = 1;
381 break;
Damien Miller95def091999-11-25 00:26:21 +1100382 case 'i':
383 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000384 fprintf(stderr, "Warning: Identity file %s "
Damien Miller3eb48b62005-03-01 21:15:46 +1100385 "not accessible: %s.\n", optarg,
386 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100387 break;
388 }
Damien Millerf4614452001-07-14 12:18:10 +1000389 if (options.num_identity_files >=
390 SSH_MAX_IDENTITY_FILES)
391 fatal("Too many identity files specified "
392 "(max %d)", SSH_MAX_IDENTITY_FILES);
393 options.identity_files[options.num_identity_files++] =
394 xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100395 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000396 case 'I':
Damien Miller7ea845e2010-02-12 09:21:02 +1100397#ifdef ENABLE_PKCS11
398 options.pkcs11_provider = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000399#else
Damien Miller7ea845e2010-02-12 09:21:02 +1100400 fprintf(stderr, "no support for PKCS#11.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000401#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000402 break;
Damien Miller95def091999-11-25 00:26:21 +1100403 case 't':
Damien Miller21771e22011-05-15 08:45:50 +1000404 if (options.request_tty == REQUEST_TTY_YES)
405 options.request_tty = REQUEST_TTY_FORCE;
406 else
407 options.request_tty = REQUEST_TTY_YES;
Damien Miller95def091999-11-25 00:26:21 +1100408 break;
Damien Miller95def091999-11-25 00:26:21 +1100409 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000410 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100411 debug_flag = 1;
412 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000413 } else {
414 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
415 options.log_level++;
Damien Millere4340be2000-09-16 13:29:08 +1100416 break;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000417 }
Darren Tuckere9bf9842004-11-05 20:05:32 +1100418 /* FALLTHROUGH */
Damien Miller95def091999-11-25 00:26:21 +1100419 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100420 fprintf(stderr, "%s, %s\n",
Damien Miller2aa6d3c2004-09-12 16:53:04 +1000421 SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
Damien Miller95def091999-11-25 00:26:21 +1100422 if (opt == 'V')
423 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100424 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100425 case 'w':
Damien Miller7b58e802005-12-13 19:33:19 +1100426 if (options.tun_open == -1)
427 options.tun_open = SSH_TUNMODE_DEFAULT;
Damien Millerd27b9472005-12-13 19:29:02 +1100428 options.tun_local = a2tun(optarg, &options.tun_remote);
Damien Miller7b58e802005-12-13 19:33:19 +1100429 if (options.tun_local == SSH_TUNID_ERR) {
Darren Tuckerd6173c02008-06-13 04:52:53 +1000430 fprintf(stderr,
431 "Bad tun device '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100432 exit(255);
Damien Millerd27b9472005-12-13 19:29:02 +1100433 }
434 break;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100435 case 'W':
Damien Millere1537f92010-01-26 13:26:22 +1100436 if (stdio_forward_host != NULL)
437 fatal("stdio forward already specified");
438 if (muxclient_command != 0)
439 fatal("Cannot specify stdio forward with -O");
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100440 if (parse_forward(&fwd, optarg, 1, 0)) {
441 stdio_forward_host = fwd.listen_host;
442 stdio_forward_port = fwd.listen_port;
443 xfree(fwd.connect_host);
444 } else {
445 fprintf(stderr,
446 "Bad stdio forwarding specification '%s'\n",
447 optarg);
448 exit(255);
449 }
Damien Miller21771e22011-05-15 08:45:50 +1000450 options.request_tty = REQUEST_TTY_NO;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100451 no_shell_flag = 1;
452 options.clear_forwardings = 1;
453 options.exit_on_forward_failure = 1;
454 break;
Damien Miller95def091999-11-25 00:26:21 +1100455 case 'q':
456 options.log_level = SYSLOG_LEVEL_QUIET;
457 break;
Damien Miller95def091999-11-25 00:26:21 +1100458 case 'e':
459 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000460 (u_char) optarg[1] >= 64 &&
461 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000462 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100463 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000464 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100465 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000466 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100467 else {
Damien Millerf4614452001-07-14 12:18:10 +1000468 fprintf(stderr, "Bad escape character '%s'.\n",
469 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100470 exit(255);
Damien Miller95def091999-11-25 00:26:21 +1100471 }
472 break;
Damien Miller95def091999-11-25 00:26:21 +1100473 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000474 if (ciphers_valid(optarg)) {
475 /* SSH2 only */
476 options.ciphers = xstrdup(optarg);
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000477 options.cipher = SSH_CIPHER_INVALID;
Damien Millereba71ba2000-04-29 23:57:08 +1000478 } else {
479 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100480 options.cipher = cipher_number(optarg);
481 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000482 fprintf(stderr,
483 "Unknown cipher type '%s'\n",
484 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100485 exit(255);
Damien Millereba71ba2000-04-29 23:57:08 +1000486 }
Damien Millerf4614452001-07-14 12:18:10 +1000487 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100488 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000489 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100490 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000491 else
Damien Millere39cacc2000-11-29 12:18:44 +1100492 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100493 }
494 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000495 case 'm':
496 if (mac_valid(optarg))
497 options.macs = xstrdup(optarg);
498 else {
Damien Millerf4614452001-07-14 12:18:10 +1000499 fprintf(stderr, "Unknown mac type '%s'\n",
500 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100501 exit(255);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000502 }
503 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000504 case 'M':
Damien Millerd14b1e72005-06-16 13:19:41 +1000505 if (options.control_master == SSHCTL_MASTER_YES)
506 options.control_master = SSHCTL_MASTER_ASK;
507 else
508 options.control_master = SSHCTL_MASTER_YES;
Damien Miller0e220db2004-06-15 10:34:08 +1000509 break;
Damien Miller95def091999-11-25 00:26:21 +1100510 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000511 options.port = a2port(optarg);
Damien Miller3dc71ad2009-01-28 16:31:22 +1100512 if (options.port <= 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000513 fprintf(stderr, "Bad port '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100514 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000515 }
Damien Miller95def091999-11-25 00:26:21 +1100516 break;
Damien Miller95def091999-11-25 00:26:21 +1100517 case 'l':
518 options.user = optarg;
519 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000520
Damien Miller95def091999-11-25 00:26:21 +1100521 case 'L':
Damien Miller4bf648f2009-02-14 16:28:21 +1100522 if (parse_forward(&fwd, optarg, 0, 0))
Damien Millerf91ee4c2005-03-01 21:24:33 +1100523 add_local_forward(&options, &fwd);
524 else {
Damien Millerf4614452001-07-14 12:18:10 +1000525 fprintf(stderr,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100526 "Bad local forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000527 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100528 exit(255);
Ben Lindstrom1a174712001-09-12 17:56:15 +0000529 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100530 break;
531
532 case 'R':
Damien Miller4bf648f2009-02-14 16:28:21 +1100533 if (parse_forward(&fwd, optarg, 0, 1)) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100534 add_remote_forward(&options, &fwd);
535 } else {
536 fprintf(stderr,
537 "Bad remote forwarding specification "
538 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100539 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100540 }
Damien Miller95def091999-11-25 00:26:21 +1100541 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000542
543 case 'D':
Damien Miller4bf648f2009-02-14 16:28:21 +1100544 if (parse_forward(&fwd, optarg, 1, 0)) {
Damien Millera699d952008-11-03 19:27:34 +1100545 add_local_forward(&options, &fwd);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100546 } else {
Damien Millera699d952008-11-03 19:27:34 +1100547 fprintf(stderr,
548 "Bad dynamic forwarding specification "
549 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100550 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000551 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000552 break;
553
Damien Miller95def091999-11-25 00:26:21 +1100554 case 'C':
555 options.compression = 1;
556 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000557 case 'N':
558 no_shell_flag = 1;
Damien Miller21771e22011-05-15 08:45:50 +1000559 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000560 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000561 case 'T':
Damien Miller21771e22011-05-15 08:45:50 +1000562 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000563 break;
Damien Miller95def091999-11-25 00:26:21 +1100564 case 'o':
565 dummy = 1;
Damien Miller9836cf82003-12-17 16:30:06 +1100566 line = xstrdup(optarg);
Damien Millerf4614452001-07-14 12:18:10 +1000567 if (process_config_line(&options, host ? host : "",
Damien Miller9836cf82003-12-17 16:30:06 +1100568 line, "command-line", 0, &dummy) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100569 exit(255);
Damien Miller9836cf82003-12-17 16:30:06 +1100570 xfree(line);
Damien Miller95def091999-11-25 00:26:21 +1100571 break;
Damien Miller832562e2001-01-30 09:30:01 +1100572 case 's':
573 subsystem_flag = 1;
574 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000575 case 'S':
576 if (options.control_path != NULL)
577 free(options.control_path);
578 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000579 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000580 case 'b':
581 options.bind_address = optarg;
582 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000583 case 'F':
584 config = optarg;
585 break;
Damien Miller95def091999-11-25 00:26:21 +1100586 default:
587 usage();
588 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000589 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000590
Damien Millerf4614452001-07-14 12:18:10 +1000591 ac -= optind;
592 av += optind;
593
Darren Tuckerb8c884a2010-01-08 18:53:43 +1100594 if (ac > 0 && !host) {
Ben Lindstromc276c122002-12-23 02:14:51 +0000595 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000596 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000597 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000598 if (cp == NULL || cp == p)
599 usage();
600 options.user = p;
601 *cp = '\0';
602 host = ++cp;
603 } else
604 host = *av;
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000605 if (ac > 1) {
606 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000607 goto again;
608 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000609 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000610 }
611
Damien Miller95def091999-11-25 00:26:21 +1100612 /* Check that we got a host name. */
613 if (!host)
614 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000615
Damien Miller4314c2b2010-09-10 11:12:09 +1000616 OpenSSL_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100617 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100618
Damien Miller95def091999-11-25 00:26:21 +1100619 /* Initialize the command to execute on remote host. */
620 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000621
Damien Miller21771e22011-05-15 08:45:50 +1000622 if (options.request_tty == REQUEST_TTY_YES ||
623 options.request_tty == REQUEST_TTY_FORCE)
624 tty_flag = 1;
625
Damien Miller5428f641999-11-25 11:54:57 +1100626 /*
627 * Save the command to execute on the remote host in a buffer. There
628 * is no limit on the length of the command, except by the maximum
629 * packet size. Also sets the tty flag if there is no command.
630 */
Damien Millerf4614452001-07-14 12:18:10 +1000631 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100632 /* No command specified - execute shell on a tty. */
Damien Miller21771e22011-05-15 08:45:50 +1000633 tty_flag = options.request_tty != REQUEST_TTY_NO;
Damien Miller832562e2001-01-30 09:30:01 +1100634 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000635 fprintf(stderr,
636 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100637 usage();
638 }
Damien Miller95def091999-11-25 00:26:21 +1100639 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000640 /* A command has been specified. Store it into the buffer. */
641 for (i = 0; i < ac; i++) {
642 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100643 buffer_append(&command, " ", 1);
644 buffer_append(&command, av[i], strlen(av[i]));
645 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000646 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000647
Damien Miller95def091999-11-25 00:26:21 +1100648 /* Cannot fork to background if no command. */
Darren Tuckerd6173c02008-06-13 04:52:53 +1000649 if (fork_after_authentication_flag && buffer_len(&command) == 0 &&
650 !no_shell_flag)
651 fatal("Cannot fork into background without a command "
652 "to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000653
Damien Miller95def091999-11-25 00:26:21 +1100654 /* Allocate a tty by default if no command specified. */
655 if (buffer_len(&command) == 0)
Damien Miller21771e22011-05-15 08:45:50 +1000656 tty_flag = options.request_tty != REQUEST_TTY_NO;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000657
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000658 /* Force no tty */
Damien Miller21771e22011-05-15 08:45:50 +1000659 if (options.request_tty == REQUEST_TTY_NO || muxclient_command != 0)
Ben Lindstromc72745a2000-12-02 19:03:54 +0000660 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100661 /* Do not allocate a tty if stdin is not a tty. */
Damien Miller21771e22011-05-15 08:45:50 +1000662 if ((!isatty(fileno(stdin)) || stdin_null_flag) &&
663 options.request_tty != REQUEST_TTY_FORCE) {
Damien Miller95def091999-11-25 00:26:21 +1100664 if (tty_flag)
Darren Tuckerd6173c02008-06-13 04:52:53 +1000665 logit("Pseudo-terminal will not be allocated because "
666 "stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100667 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000668 }
Damien Miller1383bd82000-04-06 12:32:37 +1000669
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000670 /*
671 * Initialize "log" output. Since we are the client all output
672 * actually goes to stderr.
673 */
Darren Tucker72efd742009-06-21 17:48:00 +1000674 log_init(argv0,
Darren Tuckerd6173c02008-06-13 04:52:53 +1000675 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
Damien Millere272a5b2008-11-03 19:22:37 +1100676 SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000677
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000678 /*
679 * Read per-user configuration file. Ignore the system wide config
680 * file if the user specifies a config file on the command line.
681 */
682 if (config != NULL) {
Damien Miller914420f2004-04-20 20:14:07 +1000683 if (!read_config_file(config, host, &options, 0))
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000684 fatal("Can't open user config file %.100s: "
685 "%.100s", config, strerror(errno));
Damien Miller80163902007-01-05 16:30:16 +1100686 } else {
Darren Tucker199b1342009-07-06 07:16:56 +1000687 r = snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir,
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000688 _PATH_SSH_USER_CONFFILE);
Darren Tucker199b1342009-07-06 07:16:56 +1000689 if (r > 0 && (size_t)r < sizeof(buf))
690 (void)read_config_file(buf, host, &options, 1);
Ben Lindstrom83f07d12001-10-03 17:22:29 +0000691
692 /* Read systemwide configuration file after use config. */
Darren Tuckerfc959702004-07-17 16:12:08 +1000693 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host,
Damien Miller57a44762004-04-20 20:11:57 +1000694 &options, 0);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000695 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000696
Damien Miller95def091999-11-25 00:26:21 +1100697 /* Fill configuration defaults. */
698 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000699
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000700 channel_set_af(options.address_family);
701
Damien Miller95def091999-11-25 00:26:21 +1100702 /* reinit */
Darren Tucker72efd742009-06-21 17:48:00 +1000703 log_init(argv0, options.log_level, SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000704
Damien Miller60bc5172001-03-19 09:38:15 +1100705 seed_rng();
706
Damien Miller95def091999-11-25 00:26:21 +1100707 if (options.user == NULL)
708 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000709
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000710 /* Get default port if port has not been set. */
711 if (options.port == 0) {
712 sp = getservbyname(SSH_SERVICE_NAME, "tcp");
713 options.port = sp ? ntohs(sp->s_port) : SSH_DEFAULT_PORT;
714 }
715
Damien Miller83f8a402011-01-07 09:51:17 +1100716 /* preserve host name given on command line for %n expansion */
717 host_arg = host;
Damien Millerd0244d42010-07-16 13:56:43 +1000718 if (options.hostname != NULL) {
719 host = percent_expand(options.hostname,
720 "h", host, (char *)NULL);
721 }
722
Damien Millerdfc85fa2011-05-15 08:44:02 +1000723 if (gethostname(thishost, sizeof(thishost)) == -1)
724 fatal("gethostname: %s", strerror(errno));
725 strlcpy(shorthost, thishost, sizeof(shorthost));
726 shorthost[strcspn(thishost, ".")] = '\0';
727 snprintf(portstr, sizeof(portstr), "%d", options.port);
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000728
Damien Millerdfc85fa2011-05-15 08:44:02 +1000729 if (options.local_command != NULL) {
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000730 debug3("expanding LocalCommand: %s", options.local_command);
731 cp = options.local_command;
732 options.local_command = percent_expand(cp, "d", pw->pw_dir,
Damien Miller83f8a402011-01-07 09:51:17 +1100733 "h", host, "l", thishost, "n", host_arg, "r", options.user,
Damien Millerdfc85fa2011-05-15 08:44:02 +1000734 "p", portstr, "u", pw->pw_name, "L", shorthost,
735 (char *)NULL);
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000736 debug3("expanded LocalCommand: %s", options.local_command);
737 xfree(cp);
738 }
739
Darren Tucker3f521e22003-07-03 16:20:42 +1000740 /* force lowercase for hostkey matching */
741 if (options.host_key_alias != NULL) {
742 for (p = options.host_key_alias; *p; p++)
743 if (isupper(*p))
Damien Miller1d2b6702006-03-26 14:09:54 +1100744 *p = (char)tolower(*p);
Darren Tucker3f521e22003-07-03 16:20:42 +1000745 }
746
Damien Miller9f1e33a2003-02-24 11:57:32 +1100747 if (options.proxy_command != NULL &&
Darren Tucker32e42c72007-12-02 23:01:03 +1100748 strcmp(options.proxy_command, "none") == 0) {
749 xfree(options.proxy_command);
Damien Miller9f1e33a2003-02-24 11:57:32 +1100750 options.proxy_command = NULL;
Darren Tucker32e42c72007-12-02 23:01:03 +1100751 }
Damien Miller8f74c8f2005-06-26 08:56:03 +1000752 if (options.control_path != NULL &&
Darren Tucker32e42c72007-12-02 23:01:03 +1100753 strcmp(options.control_path, "none") == 0) {
754 xfree(options.control_path);
Damien Miller8f74c8f2005-06-26 08:56:03 +1000755 options.control_path = NULL;
Darren Tucker32e42c72007-12-02 23:01:03 +1100756 }
Damien Miller9f1e33a2003-02-24 11:57:32 +1100757
Damien Miller0e220db2004-06-15 10:34:08 +1000758 if (options.control_path != NULL) {
Damien Miller6476cad2005-06-16 13:18:34 +1000759 cp = tilde_expand_filename(options.control_path,
760 original_real_uid);
Darren Tucker32e42c72007-12-02 23:01:03 +1100761 xfree(options.control_path);
Damien Millerdfc85fa2011-05-15 08:44:02 +1000762 options.control_path = percent_expand(cp, "h", host,
763 "l", thishost, "n", host_arg, "r", options.user,
764 "p", portstr, "u", pw->pw_name, "L", shorthost,
765 (char *)NULL);
Damien Miller6476cad2005-06-16 13:18:34 +1000766 xfree(cp);
Damien Miller0e220db2004-06-15 10:34:08 +1000767 }
Damien Millerb1cbfa22008-05-19 16:00:08 +1000768 if (muxclient_command != 0 && options.control_path == NULL)
Darren Tucker0814d312005-06-01 23:08:51 +1000769 fatal("No ControlPath specified for \"-O\" command");
Damien Millerd14b1e72005-06-16 13:19:41 +1000770 if (options.control_path != NULL)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000771 muxclient(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +1000772
Damien Miller67bd0622007-09-17 12:06:57 +1000773 timeout_ms = options.connection_timeout * 1000;
774
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000775 /* Open a connection to the remote host. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000776 if (ssh_connect(host, &hostaddr, options.port,
Damien Miller67bd0622007-09-17 12:06:57 +1000777 options.address_family, options.connection_attempts, &timeout_ms,
778 options.tcp_keep_alive,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000779#ifdef HAVE_CYGWIN
780 options.use_privileged_port,
781#else
Ben Lindstromf9c48842002-06-11 16:37:51 +0000782 original_effective_uid == 0 && options.use_privileged_port,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000783#endif
Ben Lindstromda394ca2002-06-12 16:11:12 +0000784 options.proxy_command) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100785 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000786
Damien Miller67bd0622007-09-17 12:06:57 +1000787 if (timeout_ms > 0)
788 debug3("timeout: %d ms remain after connect", timeout_ms);
789
Damien Miller5428f641999-11-25 11:54:57 +1100790 /*
791 * If we successfully made the connection, load the host private key
792 * in case we will need it later for combined rsa-rhosts
793 * authentication. This must be done before releasing extra
794 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +0000795 * If we cannot access the private keys, load the public keys
796 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +1100797 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000798 sensitive_data.nkeys = 0;
799 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000800 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +0000801 if (options.rhosts_rsa_authentication ||
802 options.hostbased_authentication) {
Damien Millereb8b60e2010-08-31 22:41:14 +1000803 sensitive_data.nkeys = 7;
Damien Millerddd63ab2006-03-31 23:10:51 +1100804 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000805 sizeof(Key));
Damien Miller6af914a2010-09-10 11:39:26 +1000806 for (i = 0; i < sensitive_data.nkeys; i++)
807 sensitive_data.keys[i] = NULL;
Ben Lindstromf9c48842002-06-11 16:37:51 +0000808
809 PRIV_START;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000810 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Darren Tucker232b76f2006-05-06 17:41:51 +1000811 _PATH_HOST_KEY_FILE, "", NULL, NULL);
Damien Millerc1583312010-08-05 13:04:50 +1000812 sensitive_data.keys[1] = key_load_private_cert(KEY_DSA,
813 _PATH_HOST_DSA_KEY_FILE, "", NULL);
Damien Miller6af914a2010-09-10 11:39:26 +1000814#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000815 sensitive_data.keys[2] = key_load_private_cert(KEY_ECDSA,
816 _PATH_HOST_ECDSA_KEY_FILE, "", NULL);
Damien Miller6af914a2010-09-10 11:39:26 +1000817#endif
Damien Millereb8b60e2010-08-31 22:41:14 +1000818 sensitive_data.keys[3] = key_load_private_cert(KEY_RSA,
Damien Millerc1583312010-08-05 13:04:50 +1000819 _PATH_HOST_RSA_KEY_FILE, "", NULL);
Damien Millereb8b60e2010-08-31 22:41:14 +1000820 sensitive_data.keys[4] = key_load_private_type(KEY_DSA,
Darren Tucker232b76f2006-05-06 17:41:51 +1000821 _PATH_HOST_DSA_KEY_FILE, "", NULL, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +1000822#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000823 sensitive_data.keys[5] = key_load_private_type(KEY_ECDSA,
824 _PATH_HOST_ECDSA_KEY_FILE, "", NULL, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +1000825#endif
Damien Millereb8b60e2010-08-31 22:41:14 +1000826 sensitive_data.keys[6] = key_load_private_type(KEY_RSA,
Darren Tucker232b76f2006-05-06 17:41:51 +1000827 _PATH_HOST_RSA_KEY_FILE, "", NULL, NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +0000828 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000829
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +0000830 if (options.hostbased_authentication == 1 &&
831 sensitive_data.keys[0] == NULL &&
Damien Millereb8b60e2010-08-31 22:41:14 +1000832 sensitive_data.keys[4] == NULL &&
833 sensitive_data.keys[5] == NULL &&
834 sensitive_data.keys[6] == NULL) {
Damien Millerc1583312010-08-05 13:04:50 +1000835 sensitive_data.keys[1] = key_load_cert(
836 _PATH_HOST_DSA_KEY_FILE);
Damien Miller6af914a2010-09-10 11:39:26 +1000837#ifdef OPENSSL_HAS_ECC
Damien Millerc1583312010-08-05 13:04:50 +1000838 sensitive_data.keys[2] = key_load_cert(
Damien Millereb8b60e2010-08-31 22:41:14 +1000839 _PATH_HOST_ECDSA_KEY_FILE);
Damien Miller6af914a2010-09-10 11:39:26 +1000840#endif
Damien Millereb8b60e2010-08-31 22:41:14 +1000841 sensitive_data.keys[3] = key_load_cert(
Damien Millerc1583312010-08-05 13:04:50 +1000842 _PATH_HOST_RSA_KEY_FILE);
Damien Millerc1583312010-08-05 13:04:50 +1000843 sensitive_data.keys[4] = key_load_public(
Damien Millereb8b60e2010-08-31 22:41:14 +1000844 _PATH_HOST_DSA_KEY_FILE, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +1000845#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000846 sensitive_data.keys[5] = key_load_public(
847 _PATH_HOST_ECDSA_KEY_FILE, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +1000848#endif
Damien Millereb8b60e2010-08-31 22:41:14 +1000849 sensitive_data.keys[6] = key_load_public(
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000850 _PATH_HOST_RSA_KEY_FILE, NULL);
851 sensitive_data.external_keysign = 1;
852 }
Damien Miller95def091999-11-25 00:26:21 +1100853 }
Damien Miller5428f641999-11-25 11:54:57 +1100854 /*
855 * Get rid of any extra privileges that we may have. We will no
856 * longer need them. Also, extra privileges could make it very hard
857 * to read identity files and other non-world-readable files from the
858 * user's home directory if it happens to be on a NFS volume where
859 * root is mapped to nobody.
860 */
Darren Tucker25f60a72004-08-15 17:23:34 +1000861 if (original_effective_uid == 0) {
862 PRIV_START;
863 permanently_set_uid(pw);
864 }
Damien Miller95def091999-11-25 00:26:21 +1100865
Damien Miller5428f641999-11-25 11:54:57 +1100866 /*
867 * Now that we are back to our own permissions, create ~/.ssh
Damien Miller788f2122005-11-05 15:14:59 +1100868 * directory if it doesn't already exist.
Damien Miller5428f641999-11-25 11:54:57 +1100869 */
Darren Tucker199b1342009-07-06 07:16:56 +1000870 r = snprintf(buf, sizeof buf, "%s%s%s", pw->pw_dir,
Darren Tuckerd6173c02008-06-13 04:52:53 +1000871 strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
Darren Tucker8ccb7392010-09-10 12:28:24 +1000872 if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) < 0) {
873#ifdef WITH_SELINUX
Damien Miller71adf122011-01-25 12:16:15 +1100874 ssh_selinux_setfscreatecon(buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +1000875#endif
Damien Millerbe484b52000-07-15 14:14:16 +1000876 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100877 error("Could not create directory '%.200s'.", buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +1000878#ifdef WITH_SELINUX
Damien Miller71adf122011-01-25 12:16:15 +1100879 ssh_selinux_setfscreatecon(NULL);
Darren Tucker8ccb7392010-09-10 12:28:24 +1000880#endif
881 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000882 /* load options.identity_files */
883 load_public_identity_files();
884
885 /* Expand ~ in known host file names. */
Damien Miller295ee632011-05-29 21:42:31 +1000886 tilde_expand_paths(options.system_hostfiles,
887 options.num_system_hostfiles);
888 tilde_expand_paths(options.user_hostfiles, options.num_user_hostfiles);
Damien Miller95def091999-11-25 00:26:21 +1100889
Damien Miller07cd5892001-11-12 10:52:03 +1100890 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
Damien Miller857b02e2010-09-24 22:02:56 +1000891 signal(SIGCHLD, main_sigchld_handler);
Damien Miller07cd5892001-11-12 10:52:03 +1100892
Darren Tuckerd6173c02008-06-13 04:52:53 +1000893 /* Log into the remote system. Never returns if the login fails. */
Damien Miller67bd0622007-09-17 12:06:57 +1000894 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr,
Damien Millerd925dcd2010-12-01 12:21:51 +1100895 options.port, pw, timeout_ms);
Damien Miller95def091999-11-25 00:26:21 +1100896
Damien Miller383ffe62010-06-26 10:02:03 +1000897 if (packet_connection_is_on_socket()) {
898 verbose("Authenticated to %s ([%s]:%d).", host,
899 get_remote_ipaddr(), get_remote_port());
900 } else {
901 verbose("Authenticated to %s (via proxy).", host);
902 }
903
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000904 /* We no longer need the private host keys. Clear them now. */
905 if (sensitive_data.nkeys != 0) {
906 for (i = 0; i < sensitive_data.nkeys; i++) {
907 if (sensitive_data.keys[i] != NULL) {
908 /* Destroys contents safely */
909 debug3("clear hostkey %d", i);
910 key_free(sensitive_data.keys[i]);
911 sensitive_data.keys[i] = NULL;
912 }
913 }
914 xfree(sensitive_data.keys);
915 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000916 for (i = 0; i < options.num_identity_files; i++) {
917 if (options.identity_files[i]) {
918 xfree(options.identity_files[i]);
919 options.identity_files[i] = NULL;
920 }
921 if (options.identity_keys[i]) {
922 key_free(options.identity_keys[i]);
923 options.identity_keys[i] = NULL;
924 }
925 }
Damien Miller95def091999-11-25 00:26:21 +1100926
Damien Miller1383bd82000-04-06 12:32:37 +1000927 exit_status = compat20 ? ssh_session2() : ssh_session();
928 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +1000929
Damien Millerb1cbfa22008-05-19 16:00:08 +1000930 if (options.control_path != NULL && muxserver_sock != -1)
Damien Miller0e220db2004-06-15 10:34:08 +1000931 unlink(options.control_path);
932
Damien Millera41ccca2010-10-07 22:07:32 +1100933 /* Kill ProxyCommand if it is running. */
934 ssh_kill_proxy_command();
Damien Miller8c4e18a2002-09-19 12:05:02 +1000935
Damien Miller1383bd82000-04-06 12:32:37 +1000936 return exit_status;
937}
938
Damien Millere11e1ea2010-08-03 16:04:46 +1000939static void
940control_persist_detach(void)
941{
942 pid_t pid;
Damien Miller00d9ae22010-08-17 01:59:31 +1000943 int devnull;
Damien Millere11e1ea2010-08-03 16:04:46 +1000944
945 debug("%s: backgrounding master process", __func__);
946
947 /*
948 * master (current process) into the background, and make the
949 * foreground process a client of the backgrounded master.
950 */
951 switch ((pid = fork())) {
952 case -1:
953 fatal("%s: fork: %s", __func__, strerror(errno));
954 case 0:
955 /* Child: master process continues mainloop */
956 break;
957 default:
958 /* Parent: set up mux slave to connect to backgrounded master */
959 debug2("%s: background process is %ld", __func__, (long)pid);
960 stdin_null_flag = ostdin_null_flag;
Damien Miller21771e22011-05-15 08:45:50 +1000961 options.request_tty = orequest_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +1000962 tty_flag = otty_flag;
963 close(muxserver_sock);
964 muxserver_sock = -1;
Damien Miller5929c522010-09-10 11:17:02 +1000965 options.control_master = SSHCTL_MASTER_NO;
Damien Millere11e1ea2010-08-03 16:04:46 +1000966 muxclient(options.control_path);
967 /* muxclient() doesn't return on success. */
968 fatal("Failed to connect to new control master");
969 }
Damien Miller00d9ae22010-08-17 01:59:31 +1000970 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
971 error("%s: open(\"/dev/null\"): %s", __func__,
972 strerror(errno));
973 } else {
974 if (dup2(devnull, STDIN_FILENO) == -1 ||
975 dup2(devnull, STDOUT_FILENO) == -1)
976 error("%s: dup2: %s", __func__, strerror(errno));
977 if (devnull > STDERR_FILENO)
978 close(devnull);
979 }
Damien Millere11e1ea2010-08-03 16:04:46 +1000980}
981
982/* Do fork() after authentication. Used by "ssh -f" */
983static void
984fork_postauth(void)
985{
986 if (need_controlpersist_detach)
987 control_persist_detach();
988 debug("forking to background");
989 fork_after_authentication_flag = 0;
990 if (daemon(1, 1) < 0)
991 fatal("daemon() failed: %.200s", strerror(errno));
992}
993
Darren Tucker9f407c42008-06-13 04:50:27 +1000994/* Callback for remote forward global requests */
995static void
996ssh_confirm_remote_forward(int type, u_int32_t seq, void *ctxt)
997{
998 Forward *rfwd = (Forward *)ctxt;
999
Damien Miller4bf648f2009-02-14 16:28:21 +11001000 /* XXX verbose() on failure? */
Darren Tucker9f407c42008-06-13 04:50:27 +10001001 debug("remote forward %s for: listen %d, connect %s:%d",
1002 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
1003 rfwd->listen_port, rfwd->connect_host, rfwd->connect_port);
Damien Miller4bf648f2009-02-14 16:28:21 +11001004 if (type == SSH2_MSG_REQUEST_SUCCESS && rfwd->listen_port == 0) {
Damien Miller388f6fc2010-05-21 14:57:35 +10001005 rfwd->allocated_port = packet_get_int();
Damien Miller4bf648f2009-02-14 16:28:21 +11001006 logit("Allocated port %u for remote forward to %s:%d",
Damien Miller388f6fc2010-05-21 14:57:35 +10001007 rfwd->allocated_port,
1008 rfwd->connect_host, rfwd->connect_port);
Damien Miller4bf648f2009-02-14 16:28:21 +11001009 }
1010
Darren Tucker9f407c42008-06-13 04:50:27 +10001011 if (type == SSH2_MSG_REQUEST_FAILURE) {
1012 if (options.exit_on_forward_failure)
1013 fatal("Error: remote port forwarding failed for "
1014 "listen port %d", rfwd->listen_port);
1015 else
1016 logit("Warning: remote port forwarding failed for "
1017 "listen port %d", rfwd->listen_port);
1018 }
Darren Tucker9a2a6092008-07-04 12:53:50 +10001019 if (++remote_forward_confirms_received == options.num_remote_forwards) {
Darren Tucker9f407c42008-06-13 04:50:27 +10001020 debug("All remote forwarding requests processed");
Damien Millere11e1ea2010-08-03 16:04:46 +10001021 if (fork_after_authentication_flag)
1022 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001023 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001024}
1025
Ben Lindstrombba81212001-06-25 05:01:22 +00001026static void
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001027client_cleanup_stdio_fwd(int id, void *arg)
1028{
1029 debug("stdio forwarding: done");
1030 cleanup_exit(0);
1031}
1032
1033static int
1034client_setup_stdio_fwd(const char *host_to_connect, u_short port_to_connect)
1035{
1036 Channel *c;
Damien Millere1537f92010-01-26 13:26:22 +11001037 int in, out;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001038
1039 debug3("client_setup_stdio_fwd %s:%d", host_to_connect,
1040 port_to_connect);
Damien Millere1537f92010-01-26 13:26:22 +11001041
1042 in = dup(STDIN_FILENO);
1043 out = dup(STDOUT_FILENO);
1044 if (in < 0 || out < 0)
1045 fatal("channel_connect_stdio_fwd: dup() in/out failed");
1046
1047 if ((c = channel_connect_stdio_fwd(host_to_connect, port_to_connect,
1048 in, out)) == NULL)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001049 return 0;
1050 channel_register_cleanup(c->self, client_cleanup_stdio_fwd, 0);
1051 return 1;
1052}
1053
1054static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001055ssh_init_forwarding(void)
1056{
Kevin Steves12057502001-02-05 14:54:34 +00001057 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001058 int i;
Kevin Steves12057502001-02-05 14:54:34 +00001059
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001060 if (stdio_forward_host != NULL) {
1061 if (!compat20) {
1062 fatal("stdio forwarding require Protocol 2");
1063 }
1064 if (!client_setup_stdio_fwd(stdio_forward_host,
1065 stdio_forward_port))
1066 fatal("Failed to connect in stdio forward mode.");
1067 }
1068
Damien Miller0bc1bd82000-11-13 22:57:25 +11001069 /* Initiate local TCP/IP port forwardings. */
1070 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001071 debug("Local connections to %.200s:%d forwarded to remote "
1072 "address %.200s:%d",
Darren Tucker47eede72005-03-14 23:08:12 +11001073 (options.local_forwards[i].listen_host == NULL) ?
1074 (options.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001075 options.local_forwards[i].listen_host,
1076 options.local_forwards[i].listen_port,
1077 options.local_forwards[i].connect_host,
1078 options.local_forwards[i].connect_port);
Damien Millerb16461c2002-01-22 23:29:22 +11001079 success += channel_setup_local_fwd_listener(
Damien Millerf91ee4c2005-03-01 21:24:33 +11001080 options.local_forwards[i].listen_host,
1081 options.local_forwards[i].listen_port,
1082 options.local_forwards[i].connect_host,
1083 options.local_forwards[i].connect_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11001084 options.gateway_ports);
1085 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10001086 if (i > 0 && success != i && options.exit_on_forward_failure)
1087 fatal("Could not request local forwarding.");
Kevin Steves12057502001-02-05 14:54:34 +00001088 if (i > 0 && success == 0)
1089 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001090
1091 /* Initiate remote TCP/IP port forwardings. */
1092 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001093 debug("Remote connections from %.200s:%d forwarded to "
1094 "local address %.200s:%d",
Damien Miller46d38de2005-07-17 17:02:09 +10001095 (options.remote_forwards[i].listen_host == NULL) ?
Damien Milleraa3bb102005-11-05 15:12:59 +11001096 "LOCALHOST" : options.remote_forwards[i].listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +11001097 options.remote_forwards[i].listen_port,
1098 options.remote_forwards[i].connect_host,
1099 options.remote_forwards[i].connect_port);
Darren Tuckere7d4b192006-07-12 22:17:10 +10001100 if (channel_request_remote_forwarding(
Damien Millerf91ee4c2005-03-01 21:24:33 +11001101 options.remote_forwards[i].listen_host,
1102 options.remote_forwards[i].listen_port,
1103 options.remote_forwards[i].connect_host,
Darren Tuckere7d4b192006-07-12 22:17:10 +10001104 options.remote_forwards[i].connect_port) < 0) {
1105 if (options.exit_on_forward_failure)
1106 fatal("Could not request remote forwarding.");
1107 else
1108 logit("Warning: Could not request remote "
1109 "forwarding.");
1110 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001111 client_register_global_confirm(ssh_confirm_remote_forward,
1112 &options.remote_forwards[i]);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001113 }
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001114
1115 /* Initiate tunnel forwarding. */
1116 if (options.tun_open != SSH_TUNMODE_NO) {
1117 if (client_request_tun_fwd(options.tun_open,
1118 options.tun_local, options.tun_remote) == -1) {
1119 if (options.exit_on_forward_failure)
1120 fatal("Could not request tunnel forwarding.");
1121 else
1122 error("Could not request tunnel forwarding.");
1123 }
1124 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001125}
1126
Ben Lindstrombba81212001-06-25 05:01:22 +00001127static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001128check_agent_present(void)
1129{
1130 if (options.forward_agent) {
Damien Miller788f2122005-11-05 15:14:59 +11001131 /* Clear agent forwarding if we don't have an agent. */
Damien Miller789e95d2002-09-12 09:52:46 +10001132 if (!ssh_agent_present())
Damien Miller0bc1bd82000-11-13 22:57:25 +11001133 options.forward_agent = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001134 }
1135}
1136
Ben Lindstrombba81212001-06-25 05:01:22 +00001137static int
Damien Miller1383bd82000-04-06 12:32:37 +10001138ssh_session(void)
1139{
1140 int type;
Damien Miller1383bd82000-04-06 12:32:37 +10001141 int interactive = 0;
1142 int have_tty = 0;
1143 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +10001144 char *cp;
Damien Miller17e7ed02005-06-17 12:54:33 +10001145 const char *display;
Damien Miller1383bd82000-04-06 12:32:37 +10001146
Damien Miller95def091999-11-25 00:26:21 +11001147 /* Enable compression if requested. */
1148 if (options.compression) {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001149 debug("Requesting compression at level %d.",
1150 options.compression_level);
Damien Miller95def091999-11-25 00:26:21 +11001151
Darren Tuckerd6173c02008-06-13 04:52:53 +10001152 if (options.compression_level < 1 ||
1153 options.compression_level > 9)
1154 fatal("Compression level must be from 1 (fast) to "
1155 "9 (slow, best).");
Damien Miller95def091999-11-25 00:26:21 +11001156
1157 /* Send the request. */
1158 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
1159 packet_put_int(options.compression_level);
1160 packet_send();
1161 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +11001162 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001163 if (type == SSH_SMSG_SUCCESS)
1164 packet_start_compression(options.compression_level);
1165 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +10001166 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +11001167 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001168 packet_disconnect("Protocol error waiting for "
1169 "compression response.");
Damien Miller95def091999-11-25 00:26:21 +11001170 }
1171 /* Allocate a pseudo tty if appropriate. */
1172 if (tty_flag) {
1173 debug("Requesting pty.");
1174
1175 /* Start the packet. */
1176 packet_start(SSH_CMSG_REQUEST_PTY);
1177
1178 /* Store TERM in the packet. There is no limit on the
1179 length of the string. */
1180 cp = getenv("TERM");
1181 if (!cp)
1182 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +00001183 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +11001184
1185 /* Store window size in the packet. */
1186 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1187 memset(&ws, 0, sizeof(ws));
Damien Miller71a73672006-03-26 14:04:36 +11001188 packet_put_int((u_int)ws.ws_row);
1189 packet_put_int((u_int)ws.ws_col);
1190 packet_put_int((u_int)ws.ws_xpixel);
1191 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller95def091999-11-25 00:26:21 +11001192
1193 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001194 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +11001195
1196 /* Send the packet, and wait for it to leave. */
1197 packet_send();
1198 packet_write_wait();
1199
1200 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001201 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +10001202 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001203 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001204 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +10001205 } else if (type == SSH_SMSG_FAILURE)
Darren Tuckerd6173c02008-06-13 04:52:53 +10001206 logit("Warning: Remote host failed or refused to "
1207 "allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +11001208 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001209 packet_disconnect("Protocol error waiting for pty "
1210 "request response.");
Damien Miller95def091999-11-25 00:26:21 +11001211 }
1212 /* Request X11 forwarding if enabled and DISPLAY is set. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001213 display = getenv("DISPLAY");
1214 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001215 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001216 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001217 client_x11_get_proto(display, options.xauth_location,
Damien Miller1ab6a512010-06-26 10:02:24 +10001218 options.forward_x11_trusted,
1219 options.forward_x11_timeout,
1220 &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001221 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001222 debug("Requesting X11 forwarding with authentication "
1223 "spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +10001224 x11_request_forwarding_with_spoofing(0, display, proto, data);
Damien Miller95def091999-11-25 00:26:21 +11001225
1226 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001227 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001228 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001229 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001230 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +10001231 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +10001232 } else {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001233 packet_disconnect("Protocol error waiting for X11 "
1234 "forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +10001235 }
Damien Miller95def091999-11-25 00:26:21 +11001236 }
1237 /* Tell the packet module whether this is an interactive session. */
Damien Miller0dac6fb2010-11-20 15:19:38 +11001238 packet_set_interactive(interactive,
1239 options.ip_qos_interactive, options.ip_qos_bulk);
Damien Miller95def091999-11-25 00:26:21 +11001240
1241 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001242 check_agent_present();
1243
Damien Miller95def091999-11-25 00:26:21 +11001244 if (options.forward_agent) {
1245 debug("Requesting authentication agent forwarding.");
1246 auth_request_forwarding();
1247
1248 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001249 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +11001250 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11001251 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +10001252 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +11001253 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001254
Damien Miller0bc1bd82000-11-13 22:57:25 +11001255 /* Initiate port forwardings. */
1256 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001257
Darren Tuckerb776c852007-12-02 23:06:35 +11001258 /* Execute a local command */
1259 if (options.local_command != NULL &&
1260 options.permit_local_command)
1261 ssh_local_cmd(options.local_command);
1262
Darren Tucker9a2a6092008-07-04 12:53:50 +10001263 /*
1264 * If requested and we are not interested in replies to remote
1265 * forwarding requests, then let ssh continue in the background.
1266 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001267 if (fork_after_authentication_flag) {
1268 if (options.exit_on_forward_failure &&
1269 options.num_remote_forwards > 0) {
1270 debug("deferring postauth fork until remote forward "
1271 "confirmation received");
1272 } else
1273 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001274 }
Damien Miller5428f641999-11-25 11:54:57 +11001275
1276 /*
1277 * If a command was specified on the command line, execute the
1278 * command now. Otherwise request the server to start a shell.
1279 */
Damien Miller95def091999-11-25 00:26:21 +11001280 if (buffer_len(&command) > 0) {
1281 int len = buffer_len(&command);
1282 if (len > 900)
1283 len = 900;
Darren Tuckerd6173c02008-06-13 04:52:53 +10001284 debug("Sending command: %.*s", len,
1285 (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +11001286 packet_start(SSH_CMSG_EXEC_CMD);
1287 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1288 packet_send();
1289 packet_write_wait();
1290 } else {
1291 debug("Requesting shell.");
1292 packet_start(SSH_CMSG_EXEC_SHELL);
1293 packet_send();
1294 packet_write_wait();
1295 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001296
Damien Miller95def091999-11-25 00:26:21 +11001297 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001298 return client_loop(have_tty, tty_flag ?
1299 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +10001300}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001301
Ben Lindstromf558cf62001-09-20 23:13:49 +00001302/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001303static void
Damien Millerd530f5f2010-05-21 14:57:10 +10001304ssh_session2_setup(int id, int success, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001305{
Damien Miller3756dce2004-06-18 01:17:29 +10001306 extern char **environ;
Damien Miller17e7ed02005-06-17 12:54:33 +10001307 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +10001308 int interactive = tty_flag;
Damien Miller17e7ed02005-06-17 12:54:33 +10001309
Damien Millerd530f5f2010-05-21 14:57:10 +10001310 if (!success)
1311 return; /* No need for error message, channels code sens one */
1312
Damien Miller46d38de2005-07-17 17:02:09 +10001313 display = getenv("DISPLAY");
Damien Miller17e7ed02005-06-17 12:54:33 +10001314 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001315 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001316 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001317 client_x11_get_proto(display, options.xauth_location,
Damien Miller1ab6a512010-06-26 10:02:24 +10001318 options.forward_x11_trusted,
1319 options.forward_x11_timeout, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001320 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001321 debug("Requesting X11 forwarding with authentication "
1322 "spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +10001323 x11_request_forwarding_with_spoofing(id, display, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001324 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001325 /* XXX wait for reply */
1326 }
1327
Damien Miller0bc1bd82000-11-13 22:57:25 +11001328 check_agent_present();
1329 if (options.forward_agent) {
1330 debug("Requesting authentication agent forwarding.");
1331 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1332 packet_send();
1333 }
1334
Damien Miller0e220db2004-06-15 10:34:08 +10001335 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
Damien Miller5771ed72008-05-19 15:35:33 +10001336 NULL, fileno(stdin), &command, environ);
Damien Miller1383bd82000-04-06 12:32:37 +10001337}
1338
Ben Lindstromf558cf62001-09-20 23:13:49 +00001339/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001340static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001341ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001342{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001343 Channel *c;
1344 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001345
Damien Millercaf6dd62000-08-29 11:33:50 +11001346 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001347 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001348 } else {
1349 in = dup(STDIN_FILENO);
1350 }
1351 out = dup(STDOUT_FILENO);
1352 err = dup(STDERR_FILENO);
1353
1354 if (in < 0 || out < 0 || err < 0)
1355 fatal("dup() in/out/err failed");
1356
Damien Miller69b69aa2000-10-28 14:19:58 +11001357 /* enable nonblocking unless tty */
1358 if (!isatty(in))
1359 set_nonblock(in);
1360 if (!isatty(out))
1361 set_nonblock(out);
1362 if (!isatty(err))
1363 set_nonblock(err);
1364
Damien Millere4340be2000-09-16 13:29:08 +11001365 window = CHAN_SES_WINDOW_DEFAULT;
1366 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001367 if (tty_flag) {
1368 window >>= 1;
1369 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001370 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001371 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001372 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001373 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001374 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001375
Ben Lindstromf558cf62001-09-20 23:13:49 +00001376 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001377
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001378 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001379 if (!no_shell_flag)
Damien Millerb84886b2008-05-19 15:05:07 +10001380 channel_register_open_confirm(c->self,
1381 ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001382
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001383 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001384}
1385
Ben Lindstrombba81212001-06-25 05:01:22 +00001386static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001387ssh_session2(void)
1388{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001389 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001390
1391 /* XXX should be pre-session */
1392 ssh_init_forwarding();
1393
Damien Millere11e1ea2010-08-03 16:04:46 +10001394 /* Start listening for multiplex clients */
1395 muxserver_listen();
1396
1397 /*
1398 * If we are in control persist mode, then prepare to background
1399 * ourselves and have a foreground client attach as a control
1400 * slave. NB. we must save copies of the flags that we override for
1401 * the backgrounding, since we defer attachment of the slave until
1402 * after the connection is fully established (in particular,
1403 * async rfwd replies have been received for ExitOnForwardFailure).
1404 */
1405 if (options.control_persist && muxserver_sock != -1) {
1406 ostdin_null_flag = stdin_null_flag;
1407 ono_shell_flag = no_shell_flag;
Damien Miller21771e22011-05-15 08:45:50 +10001408 orequest_tty = options.request_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +10001409 otty_flag = tty_flag;
1410 stdin_null_flag = 1;
1411 no_shell_flag = 1;
Damien Millere11e1ea2010-08-03 16:04:46 +10001412 tty_flag = 0;
1413 if (!fork_after_authentication_flag)
1414 need_controlpersist_detach = 1;
1415 fork_after_authentication_flag = 1;
1416 }
1417
Ben Lindstromf558cf62001-09-20 23:13:49 +00001418 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1419 id = ssh_session2_open();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001420
Darren Tucker8901fa92008-06-11 09:34:01 +10001421 /* If we don't expect to open a new session, then disallow it */
Damien Miller456e6f02008-11-03 19:20:10 +11001422 if (options.control_master == SSHCTL_MASTER_NO &&
1423 (datafellows & SSH_NEW_OPENSSH)) {
Darren Tucker8901fa92008-06-11 09:34:01 +10001424 debug("Requesting no-more-sessions@openssh.com");
1425 packet_start(SSH2_MSG_GLOBAL_REQUEST);
1426 packet_put_cstring("no-more-sessions@openssh.com");
1427 packet_put_char(0);
1428 packet_send();
1429 }
1430
Damien Millerd27b9472005-12-13 19:29:02 +11001431 /* Execute a local command */
1432 if (options.local_command != NULL &&
1433 options.permit_local_command)
1434 ssh_local_cmd(options.local_command);
1435
Damien Miller1f25ab42010-07-16 13:56:23 +10001436 /*
1437 * If requested and we are not interested in replies to remote
1438 * forwarding requests, then let ssh continue in the background.
1439 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001440 if (fork_after_authentication_flag) {
1441 if (options.exit_on_forward_failure &&
1442 options.num_remote_forwards > 0) {
1443 debug("deferring postauth fork until remote forward "
1444 "confirmation received");
1445 } else
1446 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001447 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001448
Darren Tuckerf1de4e52010-01-08 16:54:59 +11001449 if (options.use_roaming)
1450 request_roaming();
1451
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001452 return client_loop(tty_flag, tty_flag ?
1453 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001454}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001455
Ben Lindstrombba81212001-06-25 05:01:22 +00001456static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001457load_public_identity_files(void)
1458{
Damien Miller6b1d53c2006-03-31 23:13:21 +11001459 char *filename, *cp, thishost[NI_MAXHOST];
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001460 char *pwdir = NULL, *pwname = NULL;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001461 int i = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001462 Key *public;
Damien Miller6b1d53c2006-03-31 23:13:21 +11001463 struct passwd *pw;
Damien Miller0a80ca12010-02-27 07:55:05 +11001464 u_int n_ids;
1465 char *identity_files[SSH_MAX_IDENTITY_FILES];
1466 Key *identity_keys[SSH_MAX_IDENTITY_FILES];
Damien Miller7ea845e2010-02-12 09:21:02 +11001467#ifdef ENABLE_PKCS11
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001468 Key **keys;
Damien Miller7ea845e2010-02-12 09:21:02 +11001469 int nkeys;
Damien Miller0a80ca12010-02-27 07:55:05 +11001470#endif /* PKCS11 */
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001471
Damien Miller0a80ca12010-02-27 07:55:05 +11001472 n_ids = 0;
1473 bzero(identity_files, sizeof(identity_files));
1474 bzero(identity_keys, sizeof(identity_keys));
1475
1476#ifdef ENABLE_PKCS11
Damien Miller7ea845e2010-02-12 09:21:02 +11001477 if (options.pkcs11_provider != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001478 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
Damien Miller7ea845e2010-02-12 09:21:02 +11001479 (pkcs11_init(!options.batch_mode) == 0) &&
1480 (nkeys = pkcs11_add_provider(options.pkcs11_provider, NULL,
1481 &keys)) > 0) {
Damien Miller7ea845e2010-02-12 09:21:02 +11001482 for (i = 0; i < nkeys; i++) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001483 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
1484 key_free(keys[i]);
1485 continue;
1486 }
1487 identity_keys[n_ids] = keys[i];
1488 identity_files[n_ids] =
Damien Miller7ea845e2010-02-12 09:21:02 +11001489 xstrdup(options.pkcs11_provider); /* XXX */
Damien Miller0a80ca12010-02-27 07:55:05 +11001490 n_ids++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001491 }
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001492 xfree(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001493 }
Damien Miller7ea845e2010-02-12 09:21:02 +11001494#endif /* ENABLE_PKCS11 */
Damien Miller6b1d53c2006-03-31 23:13:21 +11001495 if ((pw = getpwuid(original_real_uid)) == NULL)
1496 fatal("load_public_identity_files: getpwuid failed");
Darren Tuckere143f062007-12-02 23:21:16 +11001497 pwname = xstrdup(pw->pw_name);
1498 pwdir = xstrdup(pw->pw_dir);
Damien Miller6b1d53c2006-03-31 23:13:21 +11001499 if (gethostname(thishost, sizeof(thishost)) == -1)
1500 fatal("load_public_identity_files: gethostname: %s",
1501 strerror(errno));
Damien Miller0a80ca12010-02-27 07:55:05 +11001502 for (i = 0; i < options.num_identity_files; i++) {
1503 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
1504 xfree(options.identity_files[i]);
1505 continue;
1506 }
Damien Miller6b1d53c2006-03-31 23:13:21 +11001507 cp = tilde_expand_filename(options.identity_files[i],
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001508 original_real_uid);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001509 filename = percent_expand(cp, "d", pwdir,
1510 "u", pwname, "l", thishost, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +11001511 "r", options.user, (char *)NULL);
1512 xfree(cp);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001513 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001514 debug("identity file %s type %d", filename,
1515 public ? public->type : -1);
1516 xfree(options.identity_files[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +11001517 identity_files[n_ids] = filename;
1518 identity_keys[n_ids] = public;
1519
1520 if (++n_ids >= SSH_MAX_IDENTITY_FILES)
1521 continue;
1522
1523 /* Try to add the certificate variant too */
1524 xasprintf(&cp, "%s-cert", filename);
1525 public = key_load_public(cp, NULL);
1526 debug("identity file %s type %d", cp,
1527 public ? public->type : -1);
1528 if (public == NULL) {
1529 xfree(cp);
1530 continue;
1531 }
1532 if (!key_is_cert(public)) {
1533 debug("%s: key %s type %s is not a certificate",
1534 __func__, cp, key_type(public));
1535 key_free(public);
1536 xfree(cp);
1537 continue;
1538 }
1539 identity_keys[n_ids] = public;
1540 /* point to the original path, most likely the private key */
1541 identity_files[n_ids] = xstrdup(filename);
1542 n_ids++;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001543 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001544 options.num_identity_files = n_ids;
1545 memcpy(options.identity_files, identity_files, sizeof(identity_files));
1546 memcpy(options.identity_keys, identity_keys, sizeof(identity_keys));
1547
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001548 bzero(pwname, strlen(pwname));
Darren Tuckere143f062007-12-02 23:21:16 +11001549 xfree(pwname);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001550 bzero(pwdir, strlen(pwdir));
Darren Tuckere143f062007-12-02 23:21:16 +11001551 xfree(pwdir);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001552}
Damien Miller857b02e2010-09-24 22:02:56 +10001553
1554static void
1555main_sigchld_handler(int sig)
1556{
1557 int save_errno = errno;
1558 pid_t pid;
1559 int status;
1560
1561 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
1562 (pid < 0 && errno == EINTR))
1563 ;
1564
1565 signal(sig, main_sigchld_handler);
1566 errno = save_errno;
1567}
1568