blob: 90053758122f8c62aed22c1dd9865d2e3722c934 [file] [log] [blame]
Damien Millerea2c1a42011-06-03 12:10:22 +10001/* $OpenBSD: ssh.c,v 1.362 2011/06/03 00:54:38 djm Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * Ssh client program. This program can be used to log into a remote machine.
7 * The software supports strong authentication, encryption, and forwarding
8 * of X11, TCP/IP, and authentication connections.
9 *
Damien Millere4340be2000-09-16 13:29:08 +110010 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
15 *
16 * Copyright (c) 1999 Niels Provos. All rights reserved.
Darren Tucker0a118da2003-10-15 15:54:32 +100017 * Copyright (c) 2000, 2001, 2002, 2003 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110018 *
19 * Modified to work with SSL by Niels Provos <provos@citi.umich.edu>
20 * in Canada (German citizen).
21 *
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 * 1. Redistributions of source code must retain the above copyright
26 * notice, this list of conditions and the following disclaimer.
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
29 * documentation and/or other materials provided with the distribution.
30 *
31 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
32 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
33 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
34 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
35 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
36 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
37 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
38 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
39 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
40 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110041 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100042
43#include "includes.h"
Damien Millercd4223c2006-03-15 11:22:47 +110044
Damien Millerf17883e2006-03-15 11:45:54 +110045#include <sys/types.h>
46#ifdef HAVE_SYS_STAT_H
47# include <sys/stat.h>
48#endif
Damien Millercd4223c2006-03-15 11:22:47 +110049#include <sys/resource.h>
Damien Miller17e91c02006-03-15 11:28:34 +110050#include <sys/ioctl.h>
Darren Tucker199b1342009-07-06 07:16:56 +100051#include <sys/param.h>
Damien Millere3b60b52006-07-10 21:08:03 +100052#include <sys/socket.h>
Damien 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
Damien Millerea2c1a42011-06-03 12:10:22 +1000114/* Saves a copy of argv for setproctitle emulation */
115#ifndef HAVE_SETPROCTITLE
116static char **saved_av;
117#endif
118
Darren Tuckerd6173c02008-06-13 04:52:53 +1000119/* Flag indicating whether debug mode is on. May be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000120int debug_flag = 0;
121
Damien Miller21771e22011-05-15 08:45:50 +1000122/* Flag indicating whether a tty should be requested */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000123int tty_flag = 0;
124
Damien Miller1383bd82000-04-06 12:32:37 +1000125/* don't exec a shell */
126int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000127
Damien Miller5428f641999-11-25 11:54:57 +1100128/*
129 * Flag indicating that nothing should be read from stdin. This can be set
130 * on the command line.
131 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000132int stdin_null_flag = 0;
133
Damien Miller5428f641999-11-25 11:54:57 +1100134/*
Damien Millere11e1ea2010-08-03 16:04:46 +1000135 * Flag indicating that the current process should be backgrounded and
136 * a new slave launched in the foreground for ControlPersist.
137 */
138int need_controlpersist_detach = 0;
139
140/* Copies of flags for ControlPersist foreground slave */
Damien Miller21771e22011-05-15 08:45:50 +1000141int ostdin_null_flag, ono_shell_flag, otty_flag, orequest_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +1000142
143/*
Damien Miller5428f641999-11-25 11:54:57 +1100144 * Flag indicating that ssh should fork after authentication. This is useful
Ben Lindstromf666fec2002-06-06 19:51:58 +0000145 * so that the passphrase can be entered manually, and then ssh goes to the
Damien Miller5428f641999-11-25 11:54:57 +1100146 * background.
147 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000148int fork_after_authentication_flag = 0;
149
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100150/* forward stdio to remote host and port */
151char *stdio_forward_host = NULL;
152int stdio_forward_port = 0;
153
Damien Miller5428f641999-11-25 11:54:57 +1100154/*
155 * General data structure for command line options and options configurable
156 * in configuration files. See readconf.h.
157 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000158Options options;
159
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000160/* optional user configfile */
161char *config = NULL;
162
Damien Miller5428f641999-11-25 11:54:57 +1100163/*
164 * Name of the host we are connecting to. This is the name given on the
165 * command line, or the HostName specified for the user-supplied name in a
166 * configuration file.
167 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000168char *host;
169
170/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100171struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000172
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000173/* Private host keys. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000174Sensitive sensitive_data;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000175
176/* Original real UID. */
177uid_t original_real_uid;
Ben Lindstromf9c48842002-06-11 16:37:51 +0000178uid_t original_effective_uid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000179
Damien Miller1383bd82000-04-06 12:32:37 +1000180/* command to be executed */
181Buffer command;
182
Damien Miller832562e2001-01-30 09:30:01 +1100183/* Should we execute a command or invoke a subsystem? */
184int subsystem_flag = 0;
185
Damien Miller2797f7f2002-04-23 21:09:44 +1000186/* # of replies received for global requests */
Darren Tucker9f407c42008-06-13 04:50:27 +1000187static int remote_forward_confirms_received = 0;
Damien Miller2797f7f2002-04-23 21:09:44 +1000188
Damien Millerb1cbfa22008-05-19 16:00:08 +1000189/* mux.c */
190extern int muxserver_sock;
191extern u_int muxclient_command;
Damien Miller0e220db2004-06-15 10:34:08 +1000192
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000193/* Prints a help message to the user. This function never returns. */
194
Ben Lindstrombba81212001-06-25 05:01:22 +0000195static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000196usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000197{
Damien Miller50955102004-03-22 09:34:58 +1100198 fprintf(stderr,
Damien Millerc13c3ee2008-11-03 19:23:28 +1100199"usage: ssh [-1246AaCfgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]\n"
Darren Tucker895d6982005-10-03 18:18:05 +1000200" [-D [bind_address:]port] [-e escape_char] [-F configfile]\n"
Damien Miller048dc932010-02-12 09:22:04 +1100201" [-I pkcs11] [-i identity_file]\n"
202" [-L [bind_address:]port:host:hostport]\n"
Damien Millerf91ee4c2005-03-01 21:24:33 +1100203" [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
Damien Miller02faece2005-03-02 12:04:32 +1100204" [-R [bind_address:]port:host:hostport] [-S ctl_path]\n"
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100205" [-W host:port] [-w local_tun[:remote_tun]]\n"
206" [user@]hostname [command]\n"
Damien Miller50955102004-03-22 09:34:58 +1100207 );
Darren Tuckere9a9b712005-12-20 16:15:51 +1100208 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000209}
210
Ben Lindstrombba81212001-06-25 05:01:22 +0000211static int ssh_session(void);
212static int ssh_session2(void);
213static void load_public_identity_files(void);
Damien Miller857b02e2010-09-24 22:02:56 +1000214static void main_sigchld_handler(int);
Damien Millerb1cbfa22008-05-19 16:00:08 +1000215
216/* from muxclient.c */
217void muxclient(const char *);
218void muxserver_listen(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000219
Damien Miller295ee632011-05-29 21:42:31 +1000220/* ~/ expand a list of paths. NB. assumes path[n] is heap-allocated. */
221static void
222tilde_expand_paths(char **paths, u_int num_paths)
223{
224 u_int i;
225 char *cp;
226
227 for (i = 0; i < num_paths; i++) {
228 cp = tilde_expand_filename(paths[i], original_real_uid);
229 xfree(paths[i]);
230 paths[i] = cp;
231 }
232}
233
Damien Miller95def091999-11-25 00:26:21 +1100234/*
235 * Main program for the ssh client.
236 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000237int
238main(int ac, char **av)
239{
Darren Tucker199b1342009-07-06 07:16:56 +1000240 int i, r, opt, exit_status, use_syslog;
Damien Miller83f8a402011-01-07 09:51:17 +1100241 char *p, *cp, *line, *argv0, buf[MAXPATHLEN], *host_arg;
Damien Millerdfc85fa2011-05-15 08:44:02 +1000242 char thishost[NI_MAXHOST], shorthost[NI_MAXHOST], portstr[NI_MAXSERV];
Damien Miller95def091999-11-25 00:26:21 +1100243 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000244 struct passwd *pw;
Damien Miller67bd0622007-09-17 12:06:57 +1000245 int dummy, timeout_ms;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000246 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000247 extern char *optarg;
Damien Millerea2c1a42011-06-03 12:10:22 +1000248
Damien Miller9651fe62005-06-26 08:55:25 +1000249 struct servent *sp;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100250 Forward fwd;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000251
Darren Tuckerce321d82005-10-03 18:11:24 +1000252 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
253 sanitise_stdfd();
254
Damien Miller59d3d5b2003-08-22 09:34:41 +1000255 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000256
Damien Millerea2c1a42011-06-03 12:10:22 +1000257#ifndef HAVE_SETPROCTITLE
258 /* Prepare for later setproctitle emulation */
259 /* Save argv so it isn't clobbered by setproctitle() emulation */
260 saved_av = xcalloc(ac + 1, sizeof(*saved_av));
261 for (i = 0; i < ac; i++)
262 saved_av[i] = xstrdup(av[i]);
263 saved_av[i] = NULL;
264 compat_init_setproctitle(ac, av);
265 av = saved_av;
266#endif
267
Damien Miller5428f641999-11-25 11:54:57 +1100268 /*
Damien Miller00d9ae22010-08-17 01:59:31 +1000269 * Discard other fds that are hanging around. These can cause problem
270 * with backgrounded ssh processes started by ControlPersist.
271 */
272 closefrom(STDERR_FILENO + 1);
273
274 /*
Damien Miller5428f641999-11-25 11:54:57 +1100275 * Save the original real uid. It will be needed later (uid-swapping
276 * may clobber the real uid).
277 */
Damien Miller95def091999-11-25 00:26:21 +1100278 original_real_uid = getuid();
279 original_effective_uid = geteuid();
Damien Millera8e06ce2003-11-21 23:48:55 +1100280
Damien Miller50b9a602002-09-04 16:50:06 +1000281 /*
282 * Use uid-swapping to give up root privileges for the duration of
283 * option processing. We will re-instantiate the rights when we are
284 * ready to create the privileged port, and will permanently drop
285 * them when the port has been created (actually, when the connection
286 * has been made, as we may need to create the port several times).
287 */
288 PRIV_END;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000289
Damien Miller05dd7952000-10-01 00:42:48 +1100290#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100291 /* If we are installed setuid root be careful to not drop core. */
292 if (original_real_uid != original_effective_uid) {
293 struct rlimit rlim;
294 rlim.rlim_cur = rlim.rlim_max = 0;
295 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
296 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000297 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100298#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000299 /* Get user data. */
300 pw = getpwuid(original_real_uid);
301 if (!pw) {
Damien Miller996acd22003-04-09 20:59:48 +1000302 logit("You don't exist, go away!");
Darren Tuckere9a9b712005-12-20 16:15:51 +1100303 exit(255);
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000304 }
305 /* Take a copy of the returned structure. */
306 pw = pwcopy(pw);
307
Damien Miller5428f641999-11-25 11:54:57 +1100308 /*
Damien Miller5428f641999-11-25 11:54:57 +1100309 * Set our umask to something reasonable, as some files are created
310 * with the default umask. This will make them world-readable but
311 * writable only by the owner, which is ok for all files for which we
312 * don't set the modes explicitly.
313 */
Damien Miller95def091999-11-25 00:26:21 +1100314 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000315
Darren Tuckerd6173c02008-06-13 04:52:53 +1000316 /*
317 * Initialize option structure to indicate that no values have been
318 * set.
319 */
Damien Miller95def091999-11-25 00:26:21 +1100320 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000321
Damien Miller95def091999-11-25 00:26:21 +1100322 /* Parse command-line arguments. */
323 host = NULL;
Damien Millere272a5b2008-11-03 19:22:37 +1100324 use_syslog = 0;
Darren Tucker72efd742009-06-21 17:48:00 +1000325 argv0 = av[0];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000326
Damien Miller2ecb6bd2006-03-15 12:03:53 +1100327 again:
Darren Tuckerd6173c02008-06-13 04:52:53 +1000328 while ((opt = getopt(ac, av, "1246ab:c:e:fgi:kl:m:no:p:qstvx"
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100329 "ACD:F:I:KL:MNO:PR:S:TVw:W:XYy")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100330 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000331 case '1':
332 options.protocol = SSH_PROTO_1;
333 break;
Damien Miller4af51302000-04-16 11:18:38 +1000334 case '2':
335 options.protocol = SSH_PROTO_2;
336 break;
Damien Miller34132e52000-01-14 15:45:46 +1100337 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000338 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100339 break;
Damien Miller34132e52000-01-14 15:45:46 +1100340 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000341 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100342 break;
Damien Miller95def091999-11-25 00:26:21 +1100343 case 'n':
344 stdin_null_flag = 1;
345 break;
Damien Miller95def091999-11-25 00:26:21 +1100346 case 'f':
347 fork_after_authentication_flag = 1;
348 stdin_null_flag = 1;
349 break;
Damien Miller95def091999-11-25 00:26:21 +1100350 case 'x':
351 options.forward_x11 = 0;
352 break;
Damien Miller95def091999-11-25 00:26:21 +1100353 case 'X':
354 options.forward_x11 = 1;
355 break;
Damien Millere272a5b2008-11-03 19:22:37 +1100356 case 'y':
357 use_syslog = 1;
358 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000359 case 'Y':
360 options.forward_x11 = 1;
361 options.forward_x11_trusted = 1;
362 break;
Damien Miller95def091999-11-25 00:26:21 +1100363 case 'g':
364 options.gateway_ports = 1;
365 break;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100366 case 'O':
Damien Millere1537f92010-01-26 13:26:22 +1100367 if (stdio_forward_host != NULL)
368 fatal("Cannot specify multiplexing "
369 "command with -W");
370 else if (muxclient_command != 0)
371 fatal("Multiplexing command already specified");
Darren Tucker7ebfc102004-11-07 20:06:19 +1100372 if (strcmp(optarg, "check") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000373 muxclient_command = SSHMUX_COMMAND_ALIVE_CHECK;
Damien Miller388f6fc2010-05-21 14:57:35 +1000374 else if (strcmp(optarg, "forward") == 0)
375 muxclient_command = SSHMUX_COMMAND_FORWARD;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100376 else if (strcmp(optarg, "exit") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000377 muxclient_command = SSHMUX_COMMAND_TERMINATE;
Damien Miller6c3eec72011-05-05 14:16:22 +1000378 else if (strcmp(optarg, "stop") == 0)
379 muxclient_command = SSHMUX_COMMAND_STOP;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100380 else
381 fatal("Invalid multiplex command.");
382 break;
Damien Miller147bba32002-09-04 16:46:06 +1000383 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100384 options.use_privileged_port = 0;
385 break;
Damien Miller95def091999-11-25 00:26:21 +1100386 case 'a':
387 options.forward_agent = 0;
388 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000389 case 'A':
390 options.forward_agent = 1;
391 break;
Damien Miller95def091999-11-25 00:26:21 +1100392 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100393 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100394 break;
Darren Tucker415bddc2007-06-12 23:43:16 +1000395 case 'K':
396 options.gss_authentication = 1;
397 options.gss_deleg_creds = 1;
398 break;
Damien Miller95def091999-11-25 00:26:21 +1100399 case 'i':
400 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000401 fprintf(stderr, "Warning: Identity file %s "
Damien Miller3eb48b62005-03-01 21:15:46 +1100402 "not accessible: %s.\n", optarg,
403 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100404 break;
405 }
Damien Millerf4614452001-07-14 12:18:10 +1000406 if (options.num_identity_files >=
407 SSH_MAX_IDENTITY_FILES)
408 fatal("Too many identity files specified "
409 "(max %d)", SSH_MAX_IDENTITY_FILES);
410 options.identity_files[options.num_identity_files++] =
411 xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100412 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000413 case 'I':
Damien Miller7ea845e2010-02-12 09:21:02 +1100414#ifdef ENABLE_PKCS11
415 options.pkcs11_provider = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000416#else
Damien Miller7ea845e2010-02-12 09:21:02 +1100417 fprintf(stderr, "no support for PKCS#11.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000418#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000419 break;
Damien Miller95def091999-11-25 00:26:21 +1100420 case 't':
Damien Miller21771e22011-05-15 08:45:50 +1000421 if (options.request_tty == REQUEST_TTY_YES)
422 options.request_tty = REQUEST_TTY_FORCE;
423 else
424 options.request_tty = REQUEST_TTY_YES;
Damien Miller95def091999-11-25 00:26:21 +1100425 break;
Damien Miller95def091999-11-25 00:26:21 +1100426 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000427 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100428 debug_flag = 1;
429 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000430 } else {
431 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
432 options.log_level++;
Damien Millere4340be2000-09-16 13:29:08 +1100433 break;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000434 }
Darren Tuckere9bf9842004-11-05 20:05:32 +1100435 /* FALLTHROUGH */
Damien Miller95def091999-11-25 00:26:21 +1100436 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100437 fprintf(stderr, "%s, %s\n",
Damien Miller2aa6d3c2004-09-12 16:53:04 +1000438 SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
Damien Miller95def091999-11-25 00:26:21 +1100439 if (opt == 'V')
440 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100441 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100442 case 'w':
Damien Miller7b58e802005-12-13 19:33:19 +1100443 if (options.tun_open == -1)
444 options.tun_open = SSH_TUNMODE_DEFAULT;
Damien Millerd27b9472005-12-13 19:29:02 +1100445 options.tun_local = a2tun(optarg, &options.tun_remote);
Damien Miller7b58e802005-12-13 19:33:19 +1100446 if (options.tun_local == SSH_TUNID_ERR) {
Darren Tuckerd6173c02008-06-13 04:52:53 +1000447 fprintf(stderr,
448 "Bad tun device '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100449 exit(255);
Damien Millerd27b9472005-12-13 19:29:02 +1100450 }
451 break;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100452 case 'W':
Damien Millere1537f92010-01-26 13:26:22 +1100453 if (stdio_forward_host != NULL)
454 fatal("stdio forward already specified");
455 if (muxclient_command != 0)
456 fatal("Cannot specify stdio forward with -O");
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100457 if (parse_forward(&fwd, optarg, 1, 0)) {
458 stdio_forward_host = fwd.listen_host;
459 stdio_forward_port = fwd.listen_port;
460 xfree(fwd.connect_host);
461 } else {
462 fprintf(stderr,
463 "Bad stdio forwarding specification '%s'\n",
464 optarg);
465 exit(255);
466 }
Damien Miller21771e22011-05-15 08:45:50 +1000467 options.request_tty = REQUEST_TTY_NO;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100468 no_shell_flag = 1;
469 options.clear_forwardings = 1;
470 options.exit_on_forward_failure = 1;
471 break;
Damien Miller95def091999-11-25 00:26:21 +1100472 case 'q':
473 options.log_level = SYSLOG_LEVEL_QUIET;
474 break;
Damien Miller95def091999-11-25 00:26:21 +1100475 case 'e':
476 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000477 (u_char) optarg[1] >= 64 &&
478 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000479 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100480 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000481 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100482 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000483 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100484 else {
Damien Millerf4614452001-07-14 12:18:10 +1000485 fprintf(stderr, "Bad escape character '%s'.\n",
486 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100487 exit(255);
Damien Miller95def091999-11-25 00:26:21 +1100488 }
489 break;
Damien Miller95def091999-11-25 00:26:21 +1100490 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000491 if (ciphers_valid(optarg)) {
492 /* SSH2 only */
493 options.ciphers = xstrdup(optarg);
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000494 options.cipher = SSH_CIPHER_INVALID;
Damien Millereba71ba2000-04-29 23:57:08 +1000495 } else {
496 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100497 options.cipher = cipher_number(optarg);
498 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000499 fprintf(stderr,
500 "Unknown cipher type '%s'\n",
501 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100502 exit(255);
Damien Millereba71ba2000-04-29 23:57:08 +1000503 }
Damien Millerf4614452001-07-14 12:18:10 +1000504 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100505 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000506 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100507 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000508 else
Damien Millere39cacc2000-11-29 12:18:44 +1100509 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100510 }
511 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000512 case 'm':
513 if (mac_valid(optarg))
514 options.macs = xstrdup(optarg);
515 else {
Damien Millerf4614452001-07-14 12:18:10 +1000516 fprintf(stderr, "Unknown mac type '%s'\n",
517 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100518 exit(255);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000519 }
520 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000521 case 'M':
Damien Millerd14b1e72005-06-16 13:19:41 +1000522 if (options.control_master == SSHCTL_MASTER_YES)
523 options.control_master = SSHCTL_MASTER_ASK;
524 else
525 options.control_master = SSHCTL_MASTER_YES;
Damien Miller0e220db2004-06-15 10:34:08 +1000526 break;
Damien Miller95def091999-11-25 00:26:21 +1100527 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000528 options.port = a2port(optarg);
Damien Miller3dc71ad2009-01-28 16:31:22 +1100529 if (options.port <= 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000530 fprintf(stderr, "Bad port '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100531 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000532 }
Damien Miller95def091999-11-25 00:26:21 +1100533 break;
Damien Miller95def091999-11-25 00:26:21 +1100534 case 'l':
535 options.user = optarg;
536 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000537
Damien Miller95def091999-11-25 00:26:21 +1100538 case 'L':
Damien Miller4bf648f2009-02-14 16:28:21 +1100539 if (parse_forward(&fwd, optarg, 0, 0))
Damien Millerf91ee4c2005-03-01 21:24:33 +1100540 add_local_forward(&options, &fwd);
541 else {
Damien Millerf4614452001-07-14 12:18:10 +1000542 fprintf(stderr,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100543 "Bad local forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000544 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100545 exit(255);
Ben Lindstrom1a174712001-09-12 17:56:15 +0000546 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100547 break;
548
549 case 'R':
Damien Miller4bf648f2009-02-14 16:28:21 +1100550 if (parse_forward(&fwd, optarg, 0, 1)) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100551 add_remote_forward(&options, &fwd);
552 } else {
553 fprintf(stderr,
554 "Bad remote forwarding specification "
555 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100556 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100557 }
Damien Miller95def091999-11-25 00:26:21 +1100558 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000559
560 case 'D':
Damien Miller4bf648f2009-02-14 16:28:21 +1100561 if (parse_forward(&fwd, optarg, 1, 0)) {
Damien Millera699d952008-11-03 19:27:34 +1100562 add_local_forward(&options, &fwd);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100563 } else {
Damien Millera699d952008-11-03 19:27:34 +1100564 fprintf(stderr,
565 "Bad dynamic forwarding specification "
566 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100567 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000568 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000569 break;
570
Damien Miller95def091999-11-25 00:26:21 +1100571 case 'C':
572 options.compression = 1;
573 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000574 case 'N':
575 no_shell_flag = 1;
Damien Miller21771e22011-05-15 08:45:50 +1000576 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000577 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000578 case 'T':
Damien Miller21771e22011-05-15 08:45:50 +1000579 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000580 break;
Damien Miller95def091999-11-25 00:26:21 +1100581 case 'o':
582 dummy = 1;
Damien Miller9836cf82003-12-17 16:30:06 +1100583 line = xstrdup(optarg);
Damien Millerf4614452001-07-14 12:18:10 +1000584 if (process_config_line(&options, host ? host : "",
Damien Miller9836cf82003-12-17 16:30:06 +1100585 line, "command-line", 0, &dummy) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100586 exit(255);
Damien Miller9836cf82003-12-17 16:30:06 +1100587 xfree(line);
Damien Miller95def091999-11-25 00:26:21 +1100588 break;
Damien Miller832562e2001-01-30 09:30:01 +1100589 case 's':
590 subsystem_flag = 1;
591 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000592 case 'S':
593 if (options.control_path != NULL)
594 free(options.control_path);
595 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000596 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000597 case 'b':
598 options.bind_address = optarg;
599 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000600 case 'F':
601 config = optarg;
602 break;
Damien Miller95def091999-11-25 00:26:21 +1100603 default:
604 usage();
605 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000606 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000607
Damien Millerf4614452001-07-14 12:18:10 +1000608 ac -= optind;
609 av += optind;
610
Darren Tuckerb8c884a2010-01-08 18:53:43 +1100611 if (ac > 0 && !host) {
Ben Lindstromc276c122002-12-23 02:14:51 +0000612 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000613 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000614 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000615 if (cp == NULL || cp == p)
616 usage();
617 options.user = p;
618 *cp = '\0';
619 host = ++cp;
620 } else
621 host = *av;
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000622 if (ac > 1) {
623 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000624 goto again;
625 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000626 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000627 }
628
Damien Miller95def091999-11-25 00:26:21 +1100629 /* Check that we got a host name. */
630 if (!host)
631 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000632
Damien Miller4314c2b2010-09-10 11:12:09 +1000633 OpenSSL_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100634 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100635
Damien Miller95def091999-11-25 00:26:21 +1100636 /* Initialize the command to execute on remote host. */
637 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000638
Damien Miller21771e22011-05-15 08:45:50 +1000639 if (options.request_tty == REQUEST_TTY_YES ||
640 options.request_tty == REQUEST_TTY_FORCE)
641 tty_flag = 1;
642
Damien Miller5428f641999-11-25 11:54:57 +1100643 /*
644 * Save the command to execute on the remote host in a buffer. There
645 * is no limit on the length of the command, except by the maximum
646 * packet size. Also sets the tty flag if there is no command.
647 */
Damien Millerf4614452001-07-14 12:18:10 +1000648 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100649 /* No command specified - execute shell on a tty. */
Damien Miller21771e22011-05-15 08:45:50 +1000650 tty_flag = options.request_tty != REQUEST_TTY_NO;
Damien Miller832562e2001-01-30 09:30:01 +1100651 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000652 fprintf(stderr,
653 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100654 usage();
655 }
Damien Miller95def091999-11-25 00:26:21 +1100656 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000657 /* A command has been specified. Store it into the buffer. */
658 for (i = 0; i < ac; i++) {
659 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100660 buffer_append(&command, " ", 1);
661 buffer_append(&command, av[i], strlen(av[i]));
662 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000663 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000664
Damien Miller95def091999-11-25 00:26:21 +1100665 /* Cannot fork to background if no command. */
Darren Tuckerd6173c02008-06-13 04:52:53 +1000666 if (fork_after_authentication_flag && buffer_len(&command) == 0 &&
667 !no_shell_flag)
668 fatal("Cannot fork into background without a command "
669 "to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000670
Damien Miller95def091999-11-25 00:26:21 +1100671 /* Allocate a tty by default if no command specified. */
672 if (buffer_len(&command) == 0)
Damien Miller21771e22011-05-15 08:45:50 +1000673 tty_flag = options.request_tty != REQUEST_TTY_NO;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000674
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000675 /* Force no tty */
Damien Miller21771e22011-05-15 08:45:50 +1000676 if (options.request_tty == REQUEST_TTY_NO || muxclient_command != 0)
Ben Lindstromc72745a2000-12-02 19:03:54 +0000677 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100678 /* Do not allocate a tty if stdin is not a tty. */
Damien Miller21771e22011-05-15 08:45:50 +1000679 if ((!isatty(fileno(stdin)) || stdin_null_flag) &&
680 options.request_tty != REQUEST_TTY_FORCE) {
Damien Miller95def091999-11-25 00:26:21 +1100681 if (tty_flag)
Darren Tuckerd6173c02008-06-13 04:52:53 +1000682 logit("Pseudo-terminal will not be allocated because "
683 "stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100684 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000685 }
Damien Miller1383bd82000-04-06 12:32:37 +1000686
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000687 /*
688 * Initialize "log" output. Since we are the client all output
689 * actually goes to stderr.
690 */
Darren Tucker72efd742009-06-21 17:48:00 +1000691 log_init(argv0,
Darren Tuckerd6173c02008-06-13 04:52:53 +1000692 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
Damien Millere272a5b2008-11-03 19:22:37 +1100693 SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000694
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000695 /*
696 * Read per-user configuration file. Ignore the system wide config
697 * file if the user specifies a config file on the command line.
698 */
699 if (config != NULL) {
Damien Miller914420f2004-04-20 20:14:07 +1000700 if (!read_config_file(config, host, &options, 0))
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000701 fatal("Can't open user config file %.100s: "
702 "%.100s", config, strerror(errno));
Damien Miller80163902007-01-05 16:30:16 +1100703 } else {
Darren Tucker199b1342009-07-06 07:16:56 +1000704 r = snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir,
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000705 _PATH_SSH_USER_CONFFILE);
Darren Tucker199b1342009-07-06 07:16:56 +1000706 if (r > 0 && (size_t)r < sizeof(buf))
707 (void)read_config_file(buf, host, &options, 1);
Ben Lindstrom83f07d12001-10-03 17:22:29 +0000708
709 /* Read systemwide configuration file after use config. */
Darren Tuckerfc959702004-07-17 16:12:08 +1000710 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host,
Damien Miller57a44762004-04-20 20:11:57 +1000711 &options, 0);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000712 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000713
Damien Miller95def091999-11-25 00:26:21 +1100714 /* Fill configuration defaults. */
715 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000716
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000717 channel_set_af(options.address_family);
718
Damien Miller95def091999-11-25 00:26:21 +1100719 /* reinit */
Darren Tucker72efd742009-06-21 17:48:00 +1000720 log_init(argv0, options.log_level, SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000721
Damien Miller60bc5172001-03-19 09:38:15 +1100722 seed_rng();
723
Damien Miller95def091999-11-25 00:26:21 +1100724 if (options.user == NULL)
725 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000726
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000727 /* Get default port if port has not been set. */
728 if (options.port == 0) {
729 sp = getservbyname(SSH_SERVICE_NAME, "tcp");
730 options.port = sp ? ntohs(sp->s_port) : SSH_DEFAULT_PORT;
731 }
732
Damien Miller83f8a402011-01-07 09:51:17 +1100733 /* preserve host name given on command line for %n expansion */
734 host_arg = host;
Damien Millerd0244d42010-07-16 13:56:43 +1000735 if (options.hostname != NULL) {
736 host = percent_expand(options.hostname,
737 "h", host, (char *)NULL);
738 }
739
Damien Millerdfc85fa2011-05-15 08:44:02 +1000740 if (gethostname(thishost, sizeof(thishost)) == -1)
741 fatal("gethostname: %s", strerror(errno));
742 strlcpy(shorthost, thishost, sizeof(shorthost));
743 shorthost[strcspn(thishost, ".")] = '\0';
744 snprintf(portstr, sizeof(portstr), "%d", options.port);
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000745
Damien Millerdfc85fa2011-05-15 08:44:02 +1000746 if (options.local_command != NULL) {
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000747 debug3("expanding LocalCommand: %s", options.local_command);
748 cp = options.local_command;
749 options.local_command = percent_expand(cp, "d", pw->pw_dir,
Damien Miller83f8a402011-01-07 09:51:17 +1100750 "h", host, "l", thishost, "n", host_arg, "r", options.user,
Damien Millerdfc85fa2011-05-15 08:44:02 +1000751 "p", portstr, "u", pw->pw_name, "L", shorthost,
752 (char *)NULL);
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000753 debug3("expanded LocalCommand: %s", options.local_command);
754 xfree(cp);
755 }
756
Darren Tucker3f521e22003-07-03 16:20:42 +1000757 /* force lowercase for hostkey matching */
758 if (options.host_key_alias != NULL) {
759 for (p = options.host_key_alias; *p; p++)
760 if (isupper(*p))
Damien Miller1d2b6702006-03-26 14:09:54 +1100761 *p = (char)tolower(*p);
Darren Tucker3f521e22003-07-03 16:20:42 +1000762 }
763
Damien Miller9f1e33a2003-02-24 11:57:32 +1100764 if (options.proxy_command != NULL &&
Darren Tucker32e42c72007-12-02 23:01:03 +1100765 strcmp(options.proxy_command, "none") == 0) {
766 xfree(options.proxy_command);
Damien Miller9f1e33a2003-02-24 11:57:32 +1100767 options.proxy_command = NULL;
Darren Tucker32e42c72007-12-02 23:01:03 +1100768 }
Damien Miller8f74c8f2005-06-26 08:56:03 +1000769 if (options.control_path != NULL &&
Darren Tucker32e42c72007-12-02 23:01:03 +1100770 strcmp(options.control_path, "none") == 0) {
771 xfree(options.control_path);
Damien Miller8f74c8f2005-06-26 08:56:03 +1000772 options.control_path = NULL;
Darren Tucker32e42c72007-12-02 23:01:03 +1100773 }
Damien Miller9f1e33a2003-02-24 11:57:32 +1100774
Damien Miller0e220db2004-06-15 10:34:08 +1000775 if (options.control_path != NULL) {
Damien Miller6476cad2005-06-16 13:18:34 +1000776 cp = tilde_expand_filename(options.control_path,
777 original_real_uid);
Darren Tucker32e42c72007-12-02 23:01:03 +1100778 xfree(options.control_path);
Damien Millerdfc85fa2011-05-15 08:44:02 +1000779 options.control_path = percent_expand(cp, "h", host,
780 "l", thishost, "n", host_arg, "r", options.user,
781 "p", portstr, "u", pw->pw_name, "L", shorthost,
782 (char *)NULL);
Damien Miller6476cad2005-06-16 13:18:34 +1000783 xfree(cp);
Damien Miller0e220db2004-06-15 10:34:08 +1000784 }
Damien Millerb1cbfa22008-05-19 16:00:08 +1000785 if (muxclient_command != 0 && options.control_path == NULL)
Darren Tucker0814d312005-06-01 23:08:51 +1000786 fatal("No ControlPath specified for \"-O\" command");
Damien Millerd14b1e72005-06-16 13:19:41 +1000787 if (options.control_path != NULL)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000788 muxclient(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +1000789
Damien Miller67bd0622007-09-17 12:06:57 +1000790 timeout_ms = options.connection_timeout * 1000;
791
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000792 /* Open a connection to the remote host. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000793 if (ssh_connect(host, &hostaddr, options.port,
Damien Miller67bd0622007-09-17 12:06:57 +1000794 options.address_family, options.connection_attempts, &timeout_ms,
795 options.tcp_keep_alive,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000796#ifdef HAVE_CYGWIN
797 options.use_privileged_port,
798#else
Ben Lindstromf9c48842002-06-11 16:37:51 +0000799 original_effective_uid == 0 && options.use_privileged_port,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000800#endif
Ben Lindstromda394ca2002-06-12 16:11:12 +0000801 options.proxy_command) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100802 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000803
Damien Miller67bd0622007-09-17 12:06:57 +1000804 if (timeout_ms > 0)
805 debug3("timeout: %d ms remain after connect", timeout_ms);
806
Damien Miller5428f641999-11-25 11:54:57 +1100807 /*
808 * If we successfully made the connection, load the host private key
809 * in case we will need it later for combined rsa-rhosts
810 * authentication. This must be done before releasing extra
811 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +0000812 * If we cannot access the private keys, load the public keys
813 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +1100814 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000815 sensitive_data.nkeys = 0;
816 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000817 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +0000818 if (options.rhosts_rsa_authentication ||
819 options.hostbased_authentication) {
Damien Millereb8b60e2010-08-31 22:41:14 +1000820 sensitive_data.nkeys = 7;
Damien Millerddd63ab2006-03-31 23:10:51 +1100821 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000822 sizeof(Key));
Damien Miller6af914a2010-09-10 11:39:26 +1000823 for (i = 0; i < sensitive_data.nkeys; i++)
824 sensitive_data.keys[i] = NULL;
Ben Lindstromf9c48842002-06-11 16:37:51 +0000825
826 PRIV_START;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000827 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Darren Tucker232b76f2006-05-06 17:41:51 +1000828 _PATH_HOST_KEY_FILE, "", NULL, NULL);
Damien Millerc1583312010-08-05 13:04:50 +1000829 sensitive_data.keys[1] = key_load_private_cert(KEY_DSA,
830 _PATH_HOST_DSA_KEY_FILE, "", NULL);
Damien Miller6af914a2010-09-10 11:39:26 +1000831#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000832 sensitive_data.keys[2] = key_load_private_cert(KEY_ECDSA,
833 _PATH_HOST_ECDSA_KEY_FILE, "", NULL);
Damien Miller6af914a2010-09-10 11:39:26 +1000834#endif
Damien Millereb8b60e2010-08-31 22:41:14 +1000835 sensitive_data.keys[3] = key_load_private_cert(KEY_RSA,
Damien Millerc1583312010-08-05 13:04:50 +1000836 _PATH_HOST_RSA_KEY_FILE, "", NULL);
Damien Millereb8b60e2010-08-31 22:41:14 +1000837 sensitive_data.keys[4] = key_load_private_type(KEY_DSA,
Darren Tucker232b76f2006-05-06 17:41:51 +1000838 _PATH_HOST_DSA_KEY_FILE, "", NULL, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +1000839#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000840 sensitive_data.keys[5] = key_load_private_type(KEY_ECDSA,
841 _PATH_HOST_ECDSA_KEY_FILE, "", NULL, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +1000842#endif
Damien Millereb8b60e2010-08-31 22:41:14 +1000843 sensitive_data.keys[6] = key_load_private_type(KEY_RSA,
Darren Tucker232b76f2006-05-06 17:41:51 +1000844 _PATH_HOST_RSA_KEY_FILE, "", NULL, NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +0000845 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000846
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +0000847 if (options.hostbased_authentication == 1 &&
848 sensitive_data.keys[0] == NULL &&
Damien Millereb8b60e2010-08-31 22:41:14 +1000849 sensitive_data.keys[4] == NULL &&
850 sensitive_data.keys[5] == NULL &&
851 sensitive_data.keys[6] == NULL) {
Damien Millerc1583312010-08-05 13:04:50 +1000852 sensitive_data.keys[1] = key_load_cert(
853 _PATH_HOST_DSA_KEY_FILE);
Damien Miller6af914a2010-09-10 11:39:26 +1000854#ifdef OPENSSL_HAS_ECC
Damien Millerc1583312010-08-05 13:04:50 +1000855 sensitive_data.keys[2] = key_load_cert(
Damien Millereb8b60e2010-08-31 22:41:14 +1000856 _PATH_HOST_ECDSA_KEY_FILE);
Damien Miller6af914a2010-09-10 11:39:26 +1000857#endif
Damien Millereb8b60e2010-08-31 22:41:14 +1000858 sensitive_data.keys[3] = key_load_cert(
Damien Millerc1583312010-08-05 13:04:50 +1000859 _PATH_HOST_RSA_KEY_FILE);
Damien Millerc1583312010-08-05 13:04:50 +1000860 sensitive_data.keys[4] = key_load_public(
Damien Millereb8b60e2010-08-31 22:41:14 +1000861 _PATH_HOST_DSA_KEY_FILE, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +1000862#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000863 sensitive_data.keys[5] = key_load_public(
864 _PATH_HOST_ECDSA_KEY_FILE, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +1000865#endif
Damien Millereb8b60e2010-08-31 22:41:14 +1000866 sensitive_data.keys[6] = key_load_public(
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000867 _PATH_HOST_RSA_KEY_FILE, NULL);
868 sensitive_data.external_keysign = 1;
869 }
Damien Miller95def091999-11-25 00:26:21 +1100870 }
Damien Miller5428f641999-11-25 11:54:57 +1100871 /*
872 * Get rid of any extra privileges that we may have. We will no
873 * longer need them. Also, extra privileges could make it very hard
874 * to read identity files and other non-world-readable files from the
875 * user's home directory if it happens to be on a NFS volume where
876 * root is mapped to nobody.
877 */
Darren Tucker25f60a72004-08-15 17:23:34 +1000878 if (original_effective_uid == 0) {
879 PRIV_START;
880 permanently_set_uid(pw);
881 }
Damien Miller95def091999-11-25 00:26:21 +1100882
Damien Miller5428f641999-11-25 11:54:57 +1100883 /*
884 * Now that we are back to our own permissions, create ~/.ssh
Damien Miller788f2122005-11-05 15:14:59 +1100885 * directory if it doesn't already exist.
Damien Miller5428f641999-11-25 11:54:57 +1100886 */
Darren Tucker199b1342009-07-06 07:16:56 +1000887 r = snprintf(buf, sizeof buf, "%s%s%s", pw->pw_dir,
Darren Tuckerd6173c02008-06-13 04:52:53 +1000888 strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
Darren Tucker8ccb7392010-09-10 12:28:24 +1000889 if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) < 0) {
890#ifdef WITH_SELINUX
Damien Miller71adf122011-01-25 12:16:15 +1100891 ssh_selinux_setfscreatecon(buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +1000892#endif
Damien Millerbe484b52000-07-15 14:14:16 +1000893 if (mkdir(buf, 0700) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100894 error("Could not create directory '%.200s'.", buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +1000895#ifdef WITH_SELINUX
Damien Miller71adf122011-01-25 12:16:15 +1100896 ssh_selinux_setfscreatecon(NULL);
Darren Tucker8ccb7392010-09-10 12:28:24 +1000897#endif
898 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000899 /* load options.identity_files */
900 load_public_identity_files();
901
902 /* Expand ~ in known host file names. */
Damien Miller295ee632011-05-29 21:42:31 +1000903 tilde_expand_paths(options.system_hostfiles,
904 options.num_system_hostfiles);
905 tilde_expand_paths(options.user_hostfiles, options.num_user_hostfiles);
Damien Miller95def091999-11-25 00:26:21 +1100906
Damien Miller07cd5892001-11-12 10:52:03 +1100907 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
Damien Miller857b02e2010-09-24 22:02:56 +1000908 signal(SIGCHLD, main_sigchld_handler);
Damien Miller07cd5892001-11-12 10:52:03 +1100909
Darren Tuckerd6173c02008-06-13 04:52:53 +1000910 /* Log into the remote system. Never returns if the login fails. */
Damien Miller67bd0622007-09-17 12:06:57 +1000911 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr,
Damien Millerd925dcd2010-12-01 12:21:51 +1100912 options.port, pw, timeout_ms);
Damien Miller95def091999-11-25 00:26:21 +1100913
Damien Miller383ffe62010-06-26 10:02:03 +1000914 if (packet_connection_is_on_socket()) {
915 verbose("Authenticated to %s ([%s]:%d).", host,
916 get_remote_ipaddr(), get_remote_port());
917 } else {
918 verbose("Authenticated to %s (via proxy).", host);
919 }
920
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000921 /* We no longer need the private host keys. Clear them now. */
922 if (sensitive_data.nkeys != 0) {
923 for (i = 0; i < sensitive_data.nkeys; i++) {
924 if (sensitive_data.keys[i] != NULL) {
925 /* Destroys contents safely */
926 debug3("clear hostkey %d", i);
927 key_free(sensitive_data.keys[i]);
928 sensitive_data.keys[i] = NULL;
929 }
930 }
931 xfree(sensitive_data.keys);
932 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000933 for (i = 0; i < options.num_identity_files; i++) {
934 if (options.identity_files[i]) {
935 xfree(options.identity_files[i]);
936 options.identity_files[i] = NULL;
937 }
938 if (options.identity_keys[i]) {
939 key_free(options.identity_keys[i]);
940 options.identity_keys[i] = NULL;
941 }
942 }
Damien Miller95def091999-11-25 00:26:21 +1100943
Damien Miller1383bd82000-04-06 12:32:37 +1000944 exit_status = compat20 ? ssh_session2() : ssh_session();
945 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +1000946
Damien Millerb1cbfa22008-05-19 16:00:08 +1000947 if (options.control_path != NULL && muxserver_sock != -1)
Damien Miller0e220db2004-06-15 10:34:08 +1000948 unlink(options.control_path);
949
Damien Millera41ccca2010-10-07 22:07:32 +1100950 /* Kill ProxyCommand if it is running. */
951 ssh_kill_proxy_command();
Damien Miller8c4e18a2002-09-19 12:05:02 +1000952
Damien Miller1383bd82000-04-06 12:32:37 +1000953 return exit_status;
954}
955
Damien Millere11e1ea2010-08-03 16:04:46 +1000956static void
957control_persist_detach(void)
958{
959 pid_t pid;
Damien Miller00d9ae22010-08-17 01:59:31 +1000960 int devnull;
Damien Millere11e1ea2010-08-03 16:04:46 +1000961
962 debug("%s: backgrounding master process", __func__);
963
964 /*
965 * master (current process) into the background, and make the
966 * foreground process a client of the backgrounded master.
967 */
968 switch ((pid = fork())) {
969 case -1:
970 fatal("%s: fork: %s", __func__, strerror(errno));
971 case 0:
972 /* Child: master process continues mainloop */
973 break;
974 default:
975 /* Parent: set up mux slave to connect to backgrounded master */
976 debug2("%s: background process is %ld", __func__, (long)pid);
977 stdin_null_flag = ostdin_null_flag;
Damien Miller21771e22011-05-15 08:45:50 +1000978 options.request_tty = orequest_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +1000979 tty_flag = otty_flag;
980 close(muxserver_sock);
981 muxserver_sock = -1;
Damien Miller5929c522010-09-10 11:17:02 +1000982 options.control_master = SSHCTL_MASTER_NO;
Damien Millere11e1ea2010-08-03 16:04:46 +1000983 muxclient(options.control_path);
984 /* muxclient() doesn't return on success. */
985 fatal("Failed to connect to new control master");
986 }
Damien Miller00d9ae22010-08-17 01:59:31 +1000987 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
988 error("%s: open(\"/dev/null\"): %s", __func__,
989 strerror(errno));
990 } else {
991 if (dup2(devnull, STDIN_FILENO) == -1 ||
992 dup2(devnull, STDOUT_FILENO) == -1)
993 error("%s: dup2: %s", __func__, strerror(errno));
994 if (devnull > STDERR_FILENO)
995 close(devnull);
996 }
Damien Millerea2c1a42011-06-03 12:10:22 +1000997 setproctitle("%s [mux]", options.control_path);
Damien Millere11e1ea2010-08-03 16:04:46 +1000998}
999
1000/* Do fork() after authentication. Used by "ssh -f" */
1001static void
1002fork_postauth(void)
1003{
1004 if (need_controlpersist_detach)
1005 control_persist_detach();
1006 debug("forking to background");
1007 fork_after_authentication_flag = 0;
1008 if (daemon(1, 1) < 0)
1009 fatal("daemon() failed: %.200s", strerror(errno));
1010}
1011
Darren Tucker9f407c42008-06-13 04:50:27 +10001012/* Callback for remote forward global requests */
1013static void
1014ssh_confirm_remote_forward(int type, u_int32_t seq, void *ctxt)
1015{
1016 Forward *rfwd = (Forward *)ctxt;
1017
Damien Miller4bf648f2009-02-14 16:28:21 +11001018 /* XXX verbose() on failure? */
Darren Tucker9f407c42008-06-13 04:50:27 +10001019 debug("remote forward %s for: listen %d, connect %s:%d",
1020 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
1021 rfwd->listen_port, rfwd->connect_host, rfwd->connect_port);
Damien Miller4bf648f2009-02-14 16:28:21 +11001022 if (type == SSH2_MSG_REQUEST_SUCCESS && rfwd->listen_port == 0) {
Damien Miller388f6fc2010-05-21 14:57:35 +10001023 rfwd->allocated_port = packet_get_int();
Damien Miller4bf648f2009-02-14 16:28:21 +11001024 logit("Allocated port %u for remote forward to %s:%d",
Damien Miller388f6fc2010-05-21 14:57:35 +10001025 rfwd->allocated_port,
1026 rfwd->connect_host, rfwd->connect_port);
Damien Miller4bf648f2009-02-14 16:28:21 +11001027 }
1028
Darren Tucker9f407c42008-06-13 04:50:27 +10001029 if (type == SSH2_MSG_REQUEST_FAILURE) {
1030 if (options.exit_on_forward_failure)
1031 fatal("Error: remote port forwarding failed for "
1032 "listen port %d", rfwd->listen_port);
1033 else
1034 logit("Warning: remote port forwarding failed for "
1035 "listen port %d", rfwd->listen_port);
1036 }
Darren Tucker9a2a6092008-07-04 12:53:50 +10001037 if (++remote_forward_confirms_received == options.num_remote_forwards) {
Darren Tucker9f407c42008-06-13 04:50:27 +10001038 debug("All remote forwarding requests processed");
Damien Millere11e1ea2010-08-03 16:04:46 +10001039 if (fork_after_authentication_flag)
1040 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001041 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001042}
1043
Ben Lindstrombba81212001-06-25 05:01:22 +00001044static void
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001045client_cleanup_stdio_fwd(int id, void *arg)
1046{
1047 debug("stdio forwarding: done");
1048 cleanup_exit(0);
1049}
1050
1051static int
1052client_setup_stdio_fwd(const char *host_to_connect, u_short port_to_connect)
1053{
1054 Channel *c;
Damien Millere1537f92010-01-26 13:26:22 +11001055 int in, out;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001056
1057 debug3("client_setup_stdio_fwd %s:%d", host_to_connect,
1058 port_to_connect);
Damien Millere1537f92010-01-26 13:26:22 +11001059
1060 in = dup(STDIN_FILENO);
1061 out = dup(STDOUT_FILENO);
1062 if (in < 0 || out < 0)
1063 fatal("channel_connect_stdio_fwd: dup() in/out failed");
1064
1065 if ((c = channel_connect_stdio_fwd(host_to_connect, port_to_connect,
1066 in, out)) == NULL)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001067 return 0;
1068 channel_register_cleanup(c->self, client_cleanup_stdio_fwd, 0);
1069 return 1;
1070}
1071
1072static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001073ssh_init_forwarding(void)
1074{
Kevin Steves12057502001-02-05 14:54:34 +00001075 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001076 int i;
Kevin Steves12057502001-02-05 14:54:34 +00001077
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001078 if (stdio_forward_host != NULL) {
1079 if (!compat20) {
1080 fatal("stdio forwarding require Protocol 2");
1081 }
1082 if (!client_setup_stdio_fwd(stdio_forward_host,
1083 stdio_forward_port))
1084 fatal("Failed to connect in stdio forward mode.");
1085 }
1086
Damien Miller0bc1bd82000-11-13 22:57:25 +11001087 /* Initiate local TCP/IP port forwardings. */
1088 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001089 debug("Local connections to %.200s:%d forwarded to remote "
1090 "address %.200s:%d",
Darren Tucker47eede72005-03-14 23:08:12 +11001091 (options.local_forwards[i].listen_host == NULL) ?
1092 (options.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001093 options.local_forwards[i].listen_host,
1094 options.local_forwards[i].listen_port,
1095 options.local_forwards[i].connect_host,
1096 options.local_forwards[i].connect_port);
Damien Millerb16461c2002-01-22 23:29:22 +11001097 success += channel_setup_local_fwd_listener(
Damien Millerf91ee4c2005-03-01 21:24:33 +11001098 options.local_forwards[i].listen_host,
1099 options.local_forwards[i].listen_port,
1100 options.local_forwards[i].connect_host,
1101 options.local_forwards[i].connect_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11001102 options.gateway_ports);
1103 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10001104 if (i > 0 && success != i && options.exit_on_forward_failure)
1105 fatal("Could not request local forwarding.");
Kevin Steves12057502001-02-05 14:54:34 +00001106 if (i > 0 && success == 0)
1107 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001108
1109 /* Initiate remote TCP/IP port forwardings. */
1110 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001111 debug("Remote connections from %.200s:%d forwarded to "
1112 "local address %.200s:%d",
Damien Miller46d38de2005-07-17 17:02:09 +10001113 (options.remote_forwards[i].listen_host == NULL) ?
Damien Milleraa3bb102005-11-05 15:12:59 +11001114 "LOCALHOST" : options.remote_forwards[i].listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +11001115 options.remote_forwards[i].listen_port,
1116 options.remote_forwards[i].connect_host,
1117 options.remote_forwards[i].connect_port);
Darren Tuckere7d4b192006-07-12 22:17:10 +10001118 if (channel_request_remote_forwarding(
Damien Millerf91ee4c2005-03-01 21:24:33 +11001119 options.remote_forwards[i].listen_host,
1120 options.remote_forwards[i].listen_port,
1121 options.remote_forwards[i].connect_host,
Darren Tuckere7d4b192006-07-12 22:17:10 +10001122 options.remote_forwards[i].connect_port) < 0) {
1123 if (options.exit_on_forward_failure)
1124 fatal("Could not request remote forwarding.");
1125 else
1126 logit("Warning: Could not request remote "
1127 "forwarding.");
1128 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001129 client_register_global_confirm(ssh_confirm_remote_forward,
1130 &options.remote_forwards[i]);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001131 }
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001132
1133 /* Initiate tunnel forwarding. */
1134 if (options.tun_open != SSH_TUNMODE_NO) {
1135 if (client_request_tun_fwd(options.tun_open,
1136 options.tun_local, options.tun_remote) == -1) {
1137 if (options.exit_on_forward_failure)
1138 fatal("Could not request tunnel forwarding.");
1139 else
1140 error("Could not request tunnel forwarding.");
1141 }
1142 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001143}
1144
Ben Lindstrombba81212001-06-25 05:01:22 +00001145static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001146check_agent_present(void)
1147{
1148 if (options.forward_agent) {
Damien Miller788f2122005-11-05 15:14:59 +11001149 /* Clear agent forwarding if we don't have an agent. */
Damien Miller789e95d2002-09-12 09:52:46 +10001150 if (!ssh_agent_present())
Damien Miller0bc1bd82000-11-13 22:57:25 +11001151 options.forward_agent = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001152 }
1153}
1154
Ben Lindstrombba81212001-06-25 05:01:22 +00001155static int
Damien Miller1383bd82000-04-06 12:32:37 +10001156ssh_session(void)
1157{
1158 int type;
Damien Miller1383bd82000-04-06 12:32:37 +10001159 int interactive = 0;
1160 int have_tty = 0;
1161 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +10001162 char *cp;
Damien Miller17e7ed02005-06-17 12:54:33 +10001163 const char *display;
Damien Miller1383bd82000-04-06 12:32:37 +10001164
Damien Miller95def091999-11-25 00:26:21 +11001165 /* Enable compression if requested. */
1166 if (options.compression) {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001167 debug("Requesting compression at level %d.",
1168 options.compression_level);
Damien Miller95def091999-11-25 00:26:21 +11001169
Darren Tuckerd6173c02008-06-13 04:52:53 +10001170 if (options.compression_level < 1 ||
1171 options.compression_level > 9)
1172 fatal("Compression level must be from 1 (fast) to "
1173 "9 (slow, best).");
Damien Miller95def091999-11-25 00:26:21 +11001174
1175 /* Send the request. */
1176 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
1177 packet_put_int(options.compression_level);
1178 packet_send();
1179 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +11001180 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001181 if (type == SSH_SMSG_SUCCESS)
1182 packet_start_compression(options.compression_level);
1183 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +10001184 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +11001185 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001186 packet_disconnect("Protocol error waiting for "
1187 "compression response.");
Damien Miller95def091999-11-25 00:26:21 +11001188 }
1189 /* Allocate a pseudo tty if appropriate. */
1190 if (tty_flag) {
1191 debug("Requesting pty.");
1192
1193 /* Start the packet. */
1194 packet_start(SSH_CMSG_REQUEST_PTY);
1195
1196 /* Store TERM in the packet. There is no limit on the
1197 length of the string. */
1198 cp = getenv("TERM");
1199 if (!cp)
1200 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +00001201 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +11001202
1203 /* Store window size in the packet. */
1204 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1205 memset(&ws, 0, sizeof(ws));
Damien Miller71a73672006-03-26 14:04:36 +11001206 packet_put_int((u_int)ws.ws_row);
1207 packet_put_int((u_int)ws.ws_col);
1208 packet_put_int((u_int)ws.ws_xpixel);
1209 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller95def091999-11-25 00:26:21 +11001210
1211 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001212 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +11001213
1214 /* Send the packet, and wait for it to leave. */
1215 packet_send();
1216 packet_write_wait();
1217
1218 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001219 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +10001220 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001221 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001222 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +10001223 } else if (type == SSH_SMSG_FAILURE)
Darren Tuckerd6173c02008-06-13 04:52:53 +10001224 logit("Warning: Remote host failed or refused to "
1225 "allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +11001226 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001227 packet_disconnect("Protocol error waiting for pty "
1228 "request response.");
Damien Miller95def091999-11-25 00:26:21 +11001229 }
1230 /* Request X11 forwarding if enabled and DISPLAY is set. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001231 display = getenv("DISPLAY");
1232 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001233 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001234 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001235 client_x11_get_proto(display, options.xauth_location,
Damien Miller1ab6a512010-06-26 10:02:24 +10001236 options.forward_x11_trusted,
1237 options.forward_x11_timeout,
1238 &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001239 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001240 debug("Requesting X11 forwarding with authentication "
1241 "spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +10001242 x11_request_forwarding_with_spoofing(0, display, proto, data);
Damien Miller95def091999-11-25 00:26:21 +11001243
1244 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001245 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001246 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001247 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001248 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +10001249 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +10001250 } else {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001251 packet_disconnect("Protocol error waiting for X11 "
1252 "forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +10001253 }
Damien Miller95def091999-11-25 00:26:21 +11001254 }
1255 /* Tell the packet module whether this is an interactive session. */
Damien Miller0dac6fb2010-11-20 15:19:38 +11001256 packet_set_interactive(interactive,
1257 options.ip_qos_interactive, options.ip_qos_bulk);
Damien Miller95def091999-11-25 00:26:21 +11001258
1259 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001260 check_agent_present();
1261
Damien Miller95def091999-11-25 00:26:21 +11001262 if (options.forward_agent) {
1263 debug("Requesting authentication agent forwarding.");
1264 auth_request_forwarding();
1265
1266 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001267 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +11001268 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11001269 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +10001270 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +11001271 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001272
Damien Miller0bc1bd82000-11-13 22:57:25 +11001273 /* Initiate port forwardings. */
1274 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001275
Darren Tuckerb776c852007-12-02 23:06:35 +11001276 /* Execute a local command */
1277 if (options.local_command != NULL &&
1278 options.permit_local_command)
1279 ssh_local_cmd(options.local_command);
1280
Darren Tucker9a2a6092008-07-04 12:53:50 +10001281 /*
1282 * If requested and we are not interested in replies to remote
1283 * forwarding requests, then let ssh continue in the background.
1284 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001285 if (fork_after_authentication_flag) {
1286 if (options.exit_on_forward_failure &&
1287 options.num_remote_forwards > 0) {
1288 debug("deferring postauth fork until remote forward "
1289 "confirmation received");
1290 } else
1291 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001292 }
Damien Miller5428f641999-11-25 11:54:57 +11001293
1294 /*
1295 * If a command was specified on the command line, execute the
1296 * command now. Otherwise request the server to start a shell.
1297 */
Damien Miller95def091999-11-25 00:26:21 +11001298 if (buffer_len(&command) > 0) {
1299 int len = buffer_len(&command);
1300 if (len > 900)
1301 len = 900;
Darren Tuckerd6173c02008-06-13 04:52:53 +10001302 debug("Sending command: %.*s", len,
1303 (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +11001304 packet_start(SSH_CMSG_EXEC_CMD);
1305 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1306 packet_send();
1307 packet_write_wait();
1308 } else {
1309 debug("Requesting shell.");
1310 packet_start(SSH_CMSG_EXEC_SHELL);
1311 packet_send();
1312 packet_write_wait();
1313 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001314
Damien Miller95def091999-11-25 00:26:21 +11001315 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001316 return client_loop(have_tty, tty_flag ?
1317 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +10001318}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001319
Ben Lindstromf558cf62001-09-20 23:13:49 +00001320/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001321static void
Damien Millerd530f5f2010-05-21 14:57:10 +10001322ssh_session2_setup(int id, int success, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001323{
Damien Miller3756dce2004-06-18 01:17:29 +10001324 extern char **environ;
Damien Miller17e7ed02005-06-17 12:54:33 +10001325 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +10001326 int interactive = tty_flag;
Damien Miller17e7ed02005-06-17 12:54:33 +10001327
Damien Millerd530f5f2010-05-21 14:57:10 +10001328 if (!success)
1329 return; /* No need for error message, channels code sens one */
1330
Damien Miller46d38de2005-07-17 17:02:09 +10001331 display = getenv("DISPLAY");
Damien Miller17e7ed02005-06-17 12:54:33 +10001332 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001333 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001334 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001335 client_x11_get_proto(display, options.xauth_location,
Damien Miller1ab6a512010-06-26 10:02:24 +10001336 options.forward_x11_trusted,
1337 options.forward_x11_timeout, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001338 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001339 debug("Requesting X11 forwarding with authentication "
1340 "spoofing.");
Damien Miller17e7ed02005-06-17 12:54:33 +10001341 x11_request_forwarding_with_spoofing(id, display, proto, data);
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001342 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001343 /* XXX wait for reply */
1344 }
1345
Damien Miller0bc1bd82000-11-13 22:57:25 +11001346 check_agent_present();
1347 if (options.forward_agent) {
1348 debug("Requesting authentication agent forwarding.");
1349 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1350 packet_send();
1351 }
1352
Damien Miller0e220db2004-06-15 10:34:08 +10001353 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
Damien Miller5771ed72008-05-19 15:35:33 +10001354 NULL, fileno(stdin), &command, environ);
Damien Miller1383bd82000-04-06 12:32:37 +10001355}
1356
Ben Lindstromf558cf62001-09-20 23:13:49 +00001357/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001358static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001359ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001360{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001361 Channel *c;
1362 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001363
Damien Millercaf6dd62000-08-29 11:33:50 +11001364 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001365 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001366 } else {
1367 in = dup(STDIN_FILENO);
1368 }
1369 out = dup(STDOUT_FILENO);
1370 err = dup(STDERR_FILENO);
1371
1372 if (in < 0 || out < 0 || err < 0)
1373 fatal("dup() in/out/err failed");
1374
Damien Miller69b69aa2000-10-28 14:19:58 +11001375 /* enable nonblocking unless tty */
1376 if (!isatty(in))
1377 set_nonblock(in);
1378 if (!isatty(out))
1379 set_nonblock(out);
1380 if (!isatty(err))
1381 set_nonblock(err);
1382
Damien Millere4340be2000-09-16 13:29:08 +11001383 window = CHAN_SES_WINDOW_DEFAULT;
1384 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001385 if (tty_flag) {
1386 window >>= 1;
1387 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001388 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001389 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001390 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001391 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001392 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001393
Ben Lindstromf558cf62001-09-20 23:13:49 +00001394 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001395
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001396 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001397 if (!no_shell_flag)
Damien Millerb84886b2008-05-19 15:05:07 +10001398 channel_register_open_confirm(c->self,
1399 ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001400
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001401 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001402}
1403
Ben Lindstrombba81212001-06-25 05:01:22 +00001404static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001405ssh_session2(void)
1406{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001407 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001408
1409 /* XXX should be pre-session */
1410 ssh_init_forwarding();
1411
Damien Millere11e1ea2010-08-03 16:04:46 +10001412 /* Start listening for multiplex clients */
1413 muxserver_listen();
1414
1415 /*
1416 * If we are in control persist mode, then prepare to background
1417 * ourselves and have a foreground client attach as a control
1418 * slave. NB. we must save copies of the flags that we override for
1419 * the backgrounding, since we defer attachment of the slave until
1420 * after the connection is fully established (in particular,
1421 * async rfwd replies have been received for ExitOnForwardFailure).
1422 */
1423 if (options.control_persist && muxserver_sock != -1) {
1424 ostdin_null_flag = stdin_null_flag;
1425 ono_shell_flag = no_shell_flag;
Damien Miller21771e22011-05-15 08:45:50 +10001426 orequest_tty = options.request_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +10001427 otty_flag = tty_flag;
1428 stdin_null_flag = 1;
1429 no_shell_flag = 1;
Damien Millere11e1ea2010-08-03 16:04:46 +10001430 tty_flag = 0;
1431 if (!fork_after_authentication_flag)
1432 need_controlpersist_detach = 1;
1433 fork_after_authentication_flag = 1;
1434 }
1435
Ben Lindstromf558cf62001-09-20 23:13:49 +00001436 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1437 id = ssh_session2_open();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001438
Darren Tucker8901fa92008-06-11 09:34:01 +10001439 /* If we don't expect to open a new session, then disallow it */
Damien Miller456e6f02008-11-03 19:20:10 +11001440 if (options.control_master == SSHCTL_MASTER_NO &&
1441 (datafellows & SSH_NEW_OPENSSH)) {
Darren Tucker8901fa92008-06-11 09:34:01 +10001442 debug("Requesting no-more-sessions@openssh.com");
1443 packet_start(SSH2_MSG_GLOBAL_REQUEST);
1444 packet_put_cstring("no-more-sessions@openssh.com");
1445 packet_put_char(0);
1446 packet_send();
1447 }
1448
Damien Millerd27b9472005-12-13 19:29:02 +11001449 /* Execute a local command */
1450 if (options.local_command != NULL &&
1451 options.permit_local_command)
1452 ssh_local_cmd(options.local_command);
1453
Damien Miller1f25ab42010-07-16 13:56:23 +10001454 /*
1455 * If requested and we are not interested in replies to remote
1456 * forwarding requests, then let ssh continue in the background.
1457 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001458 if (fork_after_authentication_flag) {
1459 if (options.exit_on_forward_failure &&
1460 options.num_remote_forwards > 0) {
1461 debug("deferring postauth fork until remote forward "
1462 "confirmation received");
1463 } else
1464 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001465 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001466
Darren Tuckerf1de4e52010-01-08 16:54:59 +11001467 if (options.use_roaming)
1468 request_roaming();
1469
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001470 return client_loop(tty_flag, tty_flag ?
1471 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001472}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001473
Ben Lindstrombba81212001-06-25 05:01:22 +00001474static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001475load_public_identity_files(void)
1476{
Damien Miller6b1d53c2006-03-31 23:13:21 +11001477 char *filename, *cp, thishost[NI_MAXHOST];
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001478 char *pwdir = NULL, *pwname = NULL;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001479 int i = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001480 Key *public;
Damien Miller6b1d53c2006-03-31 23:13:21 +11001481 struct passwd *pw;
Damien Miller0a80ca12010-02-27 07:55:05 +11001482 u_int n_ids;
1483 char *identity_files[SSH_MAX_IDENTITY_FILES];
1484 Key *identity_keys[SSH_MAX_IDENTITY_FILES];
Damien Miller7ea845e2010-02-12 09:21:02 +11001485#ifdef ENABLE_PKCS11
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001486 Key **keys;
Damien Miller7ea845e2010-02-12 09:21:02 +11001487 int nkeys;
Damien Miller0a80ca12010-02-27 07:55:05 +11001488#endif /* PKCS11 */
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001489
Damien Miller0a80ca12010-02-27 07:55:05 +11001490 n_ids = 0;
1491 bzero(identity_files, sizeof(identity_files));
1492 bzero(identity_keys, sizeof(identity_keys));
1493
1494#ifdef ENABLE_PKCS11
Damien Miller7ea845e2010-02-12 09:21:02 +11001495 if (options.pkcs11_provider != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001496 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
Damien Miller7ea845e2010-02-12 09:21:02 +11001497 (pkcs11_init(!options.batch_mode) == 0) &&
1498 (nkeys = pkcs11_add_provider(options.pkcs11_provider, NULL,
1499 &keys)) > 0) {
Damien Miller7ea845e2010-02-12 09:21:02 +11001500 for (i = 0; i < nkeys; i++) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001501 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
1502 key_free(keys[i]);
1503 continue;
1504 }
1505 identity_keys[n_ids] = keys[i];
1506 identity_files[n_ids] =
Damien Miller7ea845e2010-02-12 09:21:02 +11001507 xstrdup(options.pkcs11_provider); /* XXX */
Damien Miller0a80ca12010-02-27 07:55:05 +11001508 n_ids++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001509 }
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001510 xfree(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001511 }
Damien Miller7ea845e2010-02-12 09:21:02 +11001512#endif /* ENABLE_PKCS11 */
Damien Miller6b1d53c2006-03-31 23:13:21 +11001513 if ((pw = getpwuid(original_real_uid)) == NULL)
1514 fatal("load_public_identity_files: getpwuid failed");
Darren Tuckere143f062007-12-02 23:21:16 +11001515 pwname = xstrdup(pw->pw_name);
1516 pwdir = xstrdup(pw->pw_dir);
Damien Miller6b1d53c2006-03-31 23:13:21 +11001517 if (gethostname(thishost, sizeof(thishost)) == -1)
1518 fatal("load_public_identity_files: gethostname: %s",
1519 strerror(errno));
Damien Miller0a80ca12010-02-27 07:55:05 +11001520 for (i = 0; i < options.num_identity_files; i++) {
1521 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
1522 xfree(options.identity_files[i]);
1523 continue;
1524 }
Damien Miller6b1d53c2006-03-31 23:13:21 +11001525 cp = tilde_expand_filename(options.identity_files[i],
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001526 original_real_uid);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001527 filename = percent_expand(cp, "d", pwdir,
1528 "u", pwname, "l", thishost, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +11001529 "r", options.user, (char *)NULL);
1530 xfree(cp);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001531 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001532 debug("identity file %s type %d", filename,
1533 public ? public->type : -1);
1534 xfree(options.identity_files[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +11001535 identity_files[n_ids] = filename;
1536 identity_keys[n_ids] = public;
1537
1538 if (++n_ids >= SSH_MAX_IDENTITY_FILES)
1539 continue;
1540
1541 /* Try to add the certificate variant too */
1542 xasprintf(&cp, "%s-cert", filename);
1543 public = key_load_public(cp, NULL);
1544 debug("identity file %s type %d", cp,
1545 public ? public->type : -1);
1546 if (public == NULL) {
1547 xfree(cp);
1548 continue;
1549 }
1550 if (!key_is_cert(public)) {
1551 debug("%s: key %s type %s is not a certificate",
1552 __func__, cp, key_type(public));
1553 key_free(public);
1554 xfree(cp);
1555 continue;
1556 }
1557 identity_keys[n_ids] = public;
1558 /* point to the original path, most likely the private key */
1559 identity_files[n_ids] = xstrdup(filename);
1560 n_ids++;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001561 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001562 options.num_identity_files = n_ids;
1563 memcpy(options.identity_files, identity_files, sizeof(identity_files));
1564 memcpy(options.identity_keys, identity_keys, sizeof(identity_keys));
1565
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001566 bzero(pwname, strlen(pwname));
Darren Tuckere143f062007-12-02 23:21:16 +11001567 xfree(pwname);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001568 bzero(pwdir, strlen(pwdir));
Darren Tuckere143f062007-12-02 23:21:16 +11001569 xfree(pwdir);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001570}
Damien Miller857b02e2010-09-24 22:02:56 +10001571
1572static void
1573main_sigchld_handler(int sig)
1574{
1575 int save_errno = errno;
1576 pid_t pid;
1577 int status;
1578
1579 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
1580 (pid < 0 && errno == EINTR))
1581 ;
1582
1583 signal(sig, main_sigchld_handler);
1584 errno = save_errno;
1585}
1586