blob: 13f384a92e9c238580d11efb4f4ef36bf5db7284 [file] [log] [blame]
Damien Miller194fd902013-10-15 12:13:05 +11001/* $OpenBSD: ssh.c,v 1.382 2013/10/14 22:22:04 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"
Damien Miller03d4d7e2013-04-23 15:21:06 +1000200" [-D [bind_address:]port] [-E log_file] [-e escape_char]\n"
201" [-F configfile] [-I pkcs11] [-i identity_file]\n"
Damien Miller34bd20a2013-04-23 19:25:00 +1000202" [-L [bind_address:]port:host:hostport] [-Q protocol_feature]\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);
Darren Tuckera627d422013-06-02 07:31:17 +1000229 free(paths[i]);
Damien Miller295ee632011-05-29 21:42:31 +1000230 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 Miller03d4d7e2013-04-23 15:21:06 +1000241 char *p, *cp, *line, *argv0, buf[MAXPATHLEN], *host_arg, *logfile;
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 Miller194fd902013-10-15 12:13:05 +1100245 int 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 Miller3009d3c2013-07-20 13:22:31 +1000302 logit("No user exists for uid %lu", (u_long)original_real_uid);
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;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000325 logfile = NULL;
Darren Tucker72efd742009-06-21 17:48:00 +1000326 argv0 = av[0];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000327
Damien Miller2ecb6bd2006-03-15 12:03:53 +1100328 again:
Darren Tuckerd6173c02008-06-13 04:52:53 +1000329 while ((opt = getopt(ac, av, "1246ab:c:e:fgi:kl:m:no:p:qstvx"
Damien Millerea111192013-04-23 19:24:32 +1000330 "ACD:E:F:I:KL:MNO:PQ:R:S:TVw:W:XYy")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100331 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000332 case '1':
333 options.protocol = SSH_PROTO_1;
334 break;
Damien Miller4af51302000-04-16 11:18:38 +1000335 case '2':
336 options.protocol = SSH_PROTO_2;
337 break;
Damien Miller34132e52000-01-14 15:45:46 +1100338 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000339 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100340 break;
Damien Miller34132e52000-01-14 15:45:46 +1100341 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000342 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100343 break;
Damien Miller95def091999-11-25 00:26:21 +1100344 case 'n':
345 stdin_null_flag = 1;
346 break;
Damien Miller95def091999-11-25 00:26:21 +1100347 case 'f':
348 fork_after_authentication_flag = 1;
349 stdin_null_flag = 1;
350 break;
Damien Miller95def091999-11-25 00:26:21 +1100351 case 'x':
352 options.forward_x11 = 0;
353 break;
Damien Miller95def091999-11-25 00:26:21 +1100354 case 'X':
355 options.forward_x11 = 1;
356 break;
Damien Millere272a5b2008-11-03 19:22:37 +1100357 case 'y':
358 use_syslog = 1;
359 break;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000360 case 'E':
361 logfile = xstrdup(optarg);
362 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000363 case 'Y':
364 options.forward_x11 = 1;
365 options.forward_x11_trusted = 1;
366 break;
Damien Miller95def091999-11-25 00:26:21 +1100367 case 'g':
368 options.gateway_ports = 1;
369 break;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100370 case 'O':
Damien Millere1537f92010-01-26 13:26:22 +1100371 if (stdio_forward_host != NULL)
372 fatal("Cannot specify multiplexing "
373 "command with -W");
374 else if (muxclient_command != 0)
375 fatal("Multiplexing command already specified");
Darren Tucker7ebfc102004-11-07 20:06:19 +1100376 if (strcmp(optarg, "check") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000377 muxclient_command = SSHMUX_COMMAND_ALIVE_CHECK;
Damien Miller388f6fc2010-05-21 14:57:35 +1000378 else if (strcmp(optarg, "forward") == 0)
379 muxclient_command = SSHMUX_COMMAND_FORWARD;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100380 else if (strcmp(optarg, "exit") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000381 muxclient_command = SSHMUX_COMMAND_TERMINATE;
Damien Miller6c3eec72011-05-05 14:16:22 +1000382 else if (strcmp(optarg, "stop") == 0)
383 muxclient_command = SSHMUX_COMMAND_STOP;
Damien Millerf6dff7c2011-09-22 21:38:52 +1000384 else if (strcmp(optarg, "cancel") == 0)
385 muxclient_command = SSHMUX_COMMAND_CANCEL_FWD;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100386 else
387 fatal("Invalid multiplex command.");
388 break;
Damien Miller147bba32002-09-04 16:46:06 +1000389 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100390 options.use_privileged_port = 0;
391 break;
Damien Millerea111192013-04-23 19:24:32 +1000392 case 'Q': /* deprecated */
393 cp = NULL;
394 if (strcasecmp(optarg, "cipher") == 0)
395 cp = cipher_alg_list();
396 else if (strcasecmp(optarg, "mac") == 0)
397 cp = mac_alg_list();
398 else if (strcasecmp(optarg, "kex") == 0)
399 cp = kex_alg_list();
400 else if (strcasecmp(optarg, "key") == 0)
401 cp = key_alg_list();
402 if (cp == NULL)
403 fatal("Unsupported query \"%s\"", optarg);
404 printf("%s\n", cp);
405 free(cp);
406 exit(0);
407 break;
Damien Miller95def091999-11-25 00:26:21 +1100408 case 'a':
409 options.forward_agent = 0;
410 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000411 case 'A':
412 options.forward_agent = 1;
413 break;
Damien Miller95def091999-11-25 00:26:21 +1100414 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100415 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100416 break;
Darren Tucker415bddc2007-06-12 23:43:16 +1000417 case 'K':
418 options.gss_authentication = 1;
419 options.gss_deleg_creds = 1;
420 break;
Damien Miller95def091999-11-25 00:26:21 +1100421 case 'i':
422 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000423 fprintf(stderr, "Warning: Identity file %s "
Damien Miller3eb48b62005-03-01 21:15:46 +1100424 "not accessible: %s.\n", optarg,
425 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100426 break;
427 }
Darren Tucker19104782013-04-05 11:13:08 +1100428 add_identity_file(&options, NULL, optarg, 1);
Damien Miller95def091999-11-25 00:26:21 +1100429 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000430 case 'I':
Damien Miller7ea845e2010-02-12 09:21:02 +1100431#ifdef ENABLE_PKCS11
432 options.pkcs11_provider = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000433#else
Damien Miller7ea845e2010-02-12 09:21:02 +1100434 fprintf(stderr, "no support for PKCS#11.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000435#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000436 break;
Damien Miller95def091999-11-25 00:26:21 +1100437 case 't':
Damien Miller21771e22011-05-15 08:45:50 +1000438 if (options.request_tty == REQUEST_TTY_YES)
439 options.request_tty = REQUEST_TTY_FORCE;
440 else
441 options.request_tty = REQUEST_TTY_YES;
Damien Miller95def091999-11-25 00:26:21 +1100442 break;
Damien Miller95def091999-11-25 00:26:21 +1100443 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000444 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100445 debug_flag = 1;
446 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000447 } else {
448 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
449 options.log_level++;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000450 }
Damien Miller03d4d7e2013-04-23 15:21:06 +1000451 break;
Damien Miller95def091999-11-25 00:26:21 +1100452 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100453 fprintf(stderr, "%s, %s\n",
Damien Miller2aa6d3c2004-09-12 16:53:04 +1000454 SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
Damien Miller95def091999-11-25 00:26:21 +1100455 if (opt == 'V')
456 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100457 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100458 case 'w':
Damien Miller7b58e802005-12-13 19:33:19 +1100459 if (options.tun_open == -1)
460 options.tun_open = SSH_TUNMODE_DEFAULT;
Damien Millerd27b9472005-12-13 19:29:02 +1100461 options.tun_local = a2tun(optarg, &options.tun_remote);
Damien Miller7b58e802005-12-13 19:33:19 +1100462 if (options.tun_local == SSH_TUNID_ERR) {
Darren Tuckerd6173c02008-06-13 04:52:53 +1000463 fprintf(stderr,
464 "Bad tun device '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100465 exit(255);
Damien Millerd27b9472005-12-13 19:29:02 +1100466 }
467 break;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100468 case 'W':
Damien Millere1537f92010-01-26 13:26:22 +1100469 if (stdio_forward_host != NULL)
470 fatal("stdio forward already specified");
471 if (muxclient_command != 0)
472 fatal("Cannot specify stdio forward with -O");
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100473 if (parse_forward(&fwd, optarg, 1, 0)) {
474 stdio_forward_host = fwd.listen_host;
475 stdio_forward_port = fwd.listen_port;
Darren Tuckera627d422013-06-02 07:31:17 +1000476 free(fwd.connect_host);
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100477 } else {
478 fprintf(stderr,
479 "Bad stdio forwarding specification '%s'\n",
480 optarg);
481 exit(255);
482 }
Damien Miller21771e22011-05-15 08:45:50 +1000483 options.request_tty = REQUEST_TTY_NO;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100484 no_shell_flag = 1;
485 options.clear_forwardings = 1;
486 options.exit_on_forward_failure = 1;
487 break;
Damien Miller95def091999-11-25 00:26:21 +1100488 case 'q':
489 options.log_level = SYSLOG_LEVEL_QUIET;
490 break;
Damien Miller95def091999-11-25 00:26:21 +1100491 case 'e':
492 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000493 (u_char) optarg[1] >= 64 &&
494 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000495 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100496 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000497 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100498 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000499 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100500 else {
Damien Millerf4614452001-07-14 12:18:10 +1000501 fprintf(stderr, "Bad escape character '%s'.\n",
502 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100503 exit(255);
Damien Miller95def091999-11-25 00:26:21 +1100504 }
505 break;
Damien Miller95def091999-11-25 00:26:21 +1100506 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000507 if (ciphers_valid(optarg)) {
508 /* SSH2 only */
509 options.ciphers = xstrdup(optarg);
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000510 options.cipher = SSH_CIPHER_INVALID;
Damien Millereba71ba2000-04-29 23:57:08 +1000511 } else {
512 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100513 options.cipher = cipher_number(optarg);
514 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000515 fprintf(stderr,
516 "Unknown cipher type '%s'\n",
517 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100518 exit(255);
Damien Millereba71ba2000-04-29 23:57:08 +1000519 }
Damien Millerf4614452001-07-14 12:18:10 +1000520 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100521 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000522 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100523 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000524 else
Damien Millere39cacc2000-11-29 12:18:44 +1100525 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100526 }
527 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000528 case 'm':
529 if (mac_valid(optarg))
530 options.macs = xstrdup(optarg);
531 else {
Damien Millerf4614452001-07-14 12:18:10 +1000532 fprintf(stderr, "Unknown mac type '%s'\n",
533 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100534 exit(255);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000535 }
536 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000537 case 'M':
Damien Millerd14b1e72005-06-16 13:19:41 +1000538 if (options.control_master == SSHCTL_MASTER_YES)
539 options.control_master = SSHCTL_MASTER_ASK;
540 else
541 options.control_master = SSHCTL_MASTER_YES;
Damien Miller0e220db2004-06-15 10:34:08 +1000542 break;
Damien Miller95def091999-11-25 00:26:21 +1100543 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000544 options.port = a2port(optarg);
Damien Miller3dc71ad2009-01-28 16:31:22 +1100545 if (options.port <= 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000546 fprintf(stderr, "Bad port '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100547 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000548 }
Damien Miller95def091999-11-25 00:26:21 +1100549 break;
Damien Miller95def091999-11-25 00:26:21 +1100550 case 'l':
551 options.user = optarg;
552 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000553
Damien Miller95def091999-11-25 00:26:21 +1100554 case 'L':
Damien Miller4bf648f2009-02-14 16:28:21 +1100555 if (parse_forward(&fwd, optarg, 0, 0))
Damien Millerf91ee4c2005-03-01 21:24:33 +1100556 add_local_forward(&options, &fwd);
557 else {
Damien Millerf4614452001-07-14 12:18:10 +1000558 fprintf(stderr,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100559 "Bad local forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000560 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100561 exit(255);
Ben Lindstrom1a174712001-09-12 17:56:15 +0000562 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100563 break;
564
565 case 'R':
Damien Miller4bf648f2009-02-14 16:28:21 +1100566 if (parse_forward(&fwd, optarg, 0, 1)) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100567 add_remote_forward(&options, &fwd);
568 } else {
569 fprintf(stderr,
570 "Bad remote forwarding specification "
571 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100572 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100573 }
Damien Miller95def091999-11-25 00:26:21 +1100574 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000575
576 case 'D':
Damien Miller4bf648f2009-02-14 16:28:21 +1100577 if (parse_forward(&fwd, optarg, 1, 0)) {
Damien Millera699d952008-11-03 19:27:34 +1100578 add_local_forward(&options, &fwd);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100579 } else {
Damien Millera699d952008-11-03 19:27:34 +1100580 fprintf(stderr,
581 "Bad dynamic forwarding specification "
582 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100583 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000584 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000585 break;
586
Damien Miller95def091999-11-25 00:26:21 +1100587 case 'C':
588 options.compression = 1;
589 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000590 case 'N':
591 no_shell_flag = 1;
Damien Miller21771e22011-05-15 08:45:50 +1000592 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000593 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000594 case 'T':
Damien Miller21771e22011-05-15 08:45:50 +1000595 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000596 break;
Damien Miller95def091999-11-25 00:26:21 +1100597 case 'o':
Damien Miller9836cf82003-12-17 16:30:06 +1100598 line = xstrdup(optarg);
Damien Miller194fd902013-10-15 12:13:05 +1100599 if (process_config_line(&options, pw, host ? host : "",
600 line, "command-line", 0, NULL, SSHCONF_USERCONF)
Darren Tuckeraefa3682013-04-05 11:18:35 +1100601 != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100602 exit(255);
Darren Tuckera627d422013-06-02 07:31:17 +1000603 free(line);
Damien Miller95def091999-11-25 00:26:21 +1100604 break;
Damien Miller832562e2001-01-30 09:30:01 +1100605 case 's':
606 subsystem_flag = 1;
607 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000608 case 'S':
609 if (options.control_path != NULL)
610 free(options.control_path);
611 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000612 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000613 case 'b':
614 options.bind_address = optarg;
615 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000616 case 'F':
617 config = optarg;
618 break;
Damien Miller95def091999-11-25 00:26:21 +1100619 default:
620 usage();
621 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000622 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000623
Damien Millerf4614452001-07-14 12:18:10 +1000624 ac -= optind;
625 av += optind;
626
Darren Tuckerb8c884a2010-01-08 18:53:43 +1100627 if (ac > 0 && !host) {
Ben Lindstromc276c122002-12-23 02:14:51 +0000628 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000629 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000630 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000631 if (cp == NULL || cp == p)
632 usage();
633 options.user = p;
634 *cp = '\0';
635 host = ++cp;
636 } else
637 host = *av;
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000638 if (ac > 1) {
639 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000640 goto again;
641 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000642 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000643 }
644
Damien Miller95def091999-11-25 00:26:21 +1100645 /* Check that we got a host name. */
646 if (!host)
647 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000648
Damien Miller4314c2b2010-09-10 11:12:09 +1000649 OpenSSL_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100650 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100651
Damien Miller95def091999-11-25 00:26:21 +1100652 /* Initialize the command to execute on remote host. */
653 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000654
Damien Miller5428f641999-11-25 11:54:57 +1100655 /*
656 * Save the command to execute on the remote host in a buffer. There
657 * is no limit on the length of the command, except by the maximum
658 * packet size. Also sets the tty flag if there is no command.
659 */
Damien Millerf4614452001-07-14 12:18:10 +1000660 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100661 /* No command specified - execute shell on a tty. */
Damien Miller832562e2001-01-30 09:30:01 +1100662 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000663 fprintf(stderr,
664 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100665 usage();
666 }
Damien Miller95def091999-11-25 00:26:21 +1100667 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000668 /* A command has been specified. Store it into the buffer. */
669 for (i = 0; i < ac; i++) {
670 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100671 buffer_append(&command, " ", 1);
672 buffer_append(&command, av[i], strlen(av[i]));
673 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000674 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000675
Damien Miller95def091999-11-25 00:26:21 +1100676 /* Cannot fork to background if no command. */
Darren Tuckerd6173c02008-06-13 04:52:53 +1000677 if (fork_after_authentication_flag && buffer_len(&command) == 0 &&
678 !no_shell_flag)
679 fatal("Cannot fork into background without a command "
680 "to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000681
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000682 /*
683 * Initialize "log" output. Since we are the client all output
Damien Miller03d4d7e2013-04-23 15:21:06 +1000684 * goes to stderr unless otherwise specified by -y or -E.
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000685 */
Damien Miller03d4d7e2013-04-23 15:21:06 +1000686 if (use_syslog && logfile != NULL)
687 fatal("Can't specify both -y and -E");
688 if (logfile != NULL) {
689 log_redirect_stderr_to(logfile);
Darren Tuckera627d422013-06-02 07:31:17 +1000690 free(logfile);
Damien Miller03d4d7e2013-04-23 15:21:06 +1000691 }
Darren Tucker72efd742009-06-21 17:48:00 +1000692 log_init(argv0,
Darren Tuckerd6173c02008-06-13 04:52:53 +1000693 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
Damien Millere272a5b2008-11-03 19:22:37 +1100694 SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000695
Damien Miller03d4d7e2013-04-23 15:21:06 +1000696 if (debug_flag)
697 logit("%s, %s", SSH_VERSION, SSLeay_version(SSLEAY_VERSION));
698
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000699 /*
700 * Read per-user configuration file. Ignore the system wide config
701 * file if the user specifies a config file on the command line.
702 */
703 if (config != NULL) {
Damien Miller508b6c32013-04-23 15:18:28 +1000704 if (strcasecmp(config, "none") != 0 &&
Damien Miller194fd902013-10-15 12:13:05 +1100705 !read_config_file(config, pw, host, &options,
706 SSHCONF_USERCONF))
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000707 fatal("Can't open user config file %.100s: "
708 "%.100s", config, strerror(errno));
Damien Miller80163902007-01-05 16:30:16 +1100709 } else {
Darren Tucker199b1342009-07-06 07:16:56 +1000710 r = snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir,
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000711 _PATH_SSH_USER_CONFFILE);
Darren Tucker199b1342009-07-06 07:16:56 +1000712 if (r > 0 && (size_t)r < sizeof(buf))
Damien Miller194fd902013-10-15 12:13:05 +1100713 (void)read_config_file(buf, pw, host, &options,
Darren Tuckeraefa3682013-04-05 11:18:35 +1100714 SSHCONF_CHECKPERM|SSHCONF_USERCONF);
Ben Lindstrom83f07d12001-10-03 17:22:29 +0000715
Damien Miller765f8c42011-08-06 06:18:16 +1000716 /* Read systemwide configuration file after user config. */
Damien Miller194fd902013-10-15 12:13:05 +1100717 (void)read_config_file(_PATH_HOST_CONFIG_FILE, pw, host,
Damien Miller57a44762004-04-20 20:11:57 +1000718 &options, 0);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000719 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000720
Damien Miller95def091999-11-25 00:26:21 +1100721 /* Fill configuration defaults. */
722 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000723
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000724 channel_set_af(options.address_family);
725
Damien Miller95def091999-11-25 00:26:21 +1100726 /* reinit */
Darren Tucker72efd742009-06-21 17:48:00 +1000727 log_init(argv0, options.log_level, SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000728
Damien Millerfff9f092012-07-06 13:45:01 +1000729 if (options.request_tty == REQUEST_TTY_YES ||
730 options.request_tty == REQUEST_TTY_FORCE)
731 tty_flag = 1;
732
733 /* Allocate a tty by default if no command specified. */
734 if (buffer_len(&command) == 0)
735 tty_flag = options.request_tty != REQUEST_TTY_NO;
736
737 /* Force no tty */
738 if (options.request_tty == REQUEST_TTY_NO || muxclient_command != 0)
739 tty_flag = 0;
740 /* Do not allocate a tty if stdin is not a tty. */
741 if ((!isatty(fileno(stdin)) || stdin_null_flag) &&
742 options.request_tty != REQUEST_TTY_FORCE) {
743 if (tty_flag)
744 logit("Pseudo-terminal will not be allocated because "
745 "stdin is not a terminal.");
746 tty_flag = 0;
747 }
748
Damien Miller60bc5172001-03-19 09:38:15 +1100749 seed_rng();
750
Damien Miller95def091999-11-25 00:26:21 +1100751 if (options.user == NULL)
752 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000753
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000754 /* Get default port if port has not been set. */
Damien Miller194fd902013-10-15 12:13:05 +1100755 if (options.port == 0)
756 options.port = default_ssh_port();
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000757
Damien Miller83f8a402011-01-07 09:51:17 +1100758 /* preserve host name given on command line for %n expansion */
759 host_arg = host;
Damien Millerd0244d42010-07-16 13:56:43 +1000760 if (options.hostname != NULL) {
761 host = percent_expand(options.hostname,
762 "h", host, (char *)NULL);
763 }
764
Damien Millerdfc85fa2011-05-15 08:44:02 +1000765 if (gethostname(thishost, sizeof(thishost)) == -1)
766 fatal("gethostname: %s", strerror(errno));
767 strlcpy(shorthost, thishost, sizeof(shorthost));
768 shorthost[strcspn(thishost, ".")] = '\0';
769 snprintf(portstr, sizeof(portstr), "%d", options.port);
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000770
Damien Millerdfc85fa2011-05-15 08:44:02 +1000771 if (options.local_command != NULL) {
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000772 debug3("expanding LocalCommand: %s", options.local_command);
773 cp = options.local_command;
774 options.local_command = percent_expand(cp, "d", pw->pw_dir,
Damien Miller83f8a402011-01-07 09:51:17 +1100775 "h", host, "l", thishost, "n", host_arg, "r", options.user,
Damien Millerdfc85fa2011-05-15 08:44:02 +1000776 "p", portstr, "u", pw->pw_name, "L", shorthost,
777 (char *)NULL);
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000778 debug3("expanded LocalCommand: %s", options.local_command);
Darren Tuckera627d422013-06-02 07:31:17 +1000779 free(cp);
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000780 }
781
Darren Tucker3f521e22003-07-03 16:20:42 +1000782 /* force lowercase for hostkey matching */
783 if (options.host_key_alias != NULL) {
784 for (p = options.host_key_alias; *p; p++)
785 if (isupper(*p))
Damien Miller1d2b6702006-03-26 14:09:54 +1100786 *p = (char)tolower(*p);
Darren Tucker3f521e22003-07-03 16:20:42 +1000787 }
788
Damien Miller9f1e33a2003-02-24 11:57:32 +1100789 if (options.proxy_command != NULL &&
Darren Tucker32e42c72007-12-02 23:01:03 +1100790 strcmp(options.proxy_command, "none") == 0) {
Darren Tuckera627d422013-06-02 07:31:17 +1000791 free(options.proxy_command);
Damien Miller9f1e33a2003-02-24 11:57:32 +1100792 options.proxy_command = NULL;
Darren Tucker32e42c72007-12-02 23:01:03 +1100793 }
Damien Miller8f74c8f2005-06-26 08:56:03 +1000794 if (options.control_path != NULL &&
Darren Tucker32e42c72007-12-02 23:01:03 +1100795 strcmp(options.control_path, "none") == 0) {
Darren Tuckera627d422013-06-02 07:31:17 +1000796 free(options.control_path);
Damien Miller8f74c8f2005-06-26 08:56:03 +1000797 options.control_path = NULL;
Darren Tucker32e42c72007-12-02 23:01:03 +1100798 }
Damien Miller9f1e33a2003-02-24 11:57:32 +1100799
Damien Miller0e220db2004-06-15 10:34:08 +1000800 if (options.control_path != NULL) {
Damien Miller6476cad2005-06-16 13:18:34 +1000801 cp = tilde_expand_filename(options.control_path,
802 original_real_uid);
Darren Tuckera627d422013-06-02 07:31:17 +1000803 free(options.control_path);
Damien Millerdfc85fa2011-05-15 08:44:02 +1000804 options.control_path = percent_expand(cp, "h", host,
805 "l", thishost, "n", host_arg, "r", options.user,
806 "p", portstr, "u", pw->pw_name, "L", shorthost,
807 (char *)NULL);
Darren Tuckera627d422013-06-02 07:31:17 +1000808 free(cp);
Damien Miller0e220db2004-06-15 10:34:08 +1000809 }
Damien Millerb1cbfa22008-05-19 16:00:08 +1000810 if (muxclient_command != 0 && options.control_path == NULL)
Darren Tucker0814d312005-06-01 23:08:51 +1000811 fatal("No ControlPath specified for \"-O\" command");
Damien Millerd14b1e72005-06-16 13:19:41 +1000812 if (options.control_path != NULL)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000813 muxclient(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +1000814
Damien Miller67bd0622007-09-17 12:06:57 +1000815 timeout_ms = options.connection_timeout * 1000;
816
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000817 /* Open a connection to the remote host. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000818 if (ssh_connect(host, &hostaddr, options.port,
Damien Miller67bd0622007-09-17 12:06:57 +1000819 options.address_family, options.connection_attempts, &timeout_ms,
820 options.tcp_keep_alive,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000821#ifdef HAVE_CYGWIN
822 options.use_privileged_port,
823#else
Ben Lindstromf9c48842002-06-11 16:37:51 +0000824 original_effective_uid == 0 && options.use_privileged_port,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000825#endif
Ben Lindstromda394ca2002-06-12 16:11:12 +0000826 options.proxy_command) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100827 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000828
Damien Miller67bd0622007-09-17 12:06:57 +1000829 if (timeout_ms > 0)
830 debug3("timeout: %d ms remain after connect", timeout_ms);
831
Damien Miller5428f641999-11-25 11:54:57 +1100832 /*
833 * If we successfully made the connection, load the host private key
834 * in case we will need it later for combined rsa-rhosts
835 * authentication. This must be done before releasing extra
836 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +0000837 * If we cannot access the private keys, load the public keys
838 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +1100839 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000840 sensitive_data.nkeys = 0;
841 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000842 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +0000843 if (options.rhosts_rsa_authentication ||
844 options.hostbased_authentication) {
Damien Millereb8b60e2010-08-31 22:41:14 +1000845 sensitive_data.nkeys = 7;
Damien Millerddd63ab2006-03-31 23:10:51 +1100846 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000847 sizeof(Key));
Damien Miller6af914a2010-09-10 11:39:26 +1000848 for (i = 0; i < sensitive_data.nkeys; i++)
849 sensitive_data.keys[i] = NULL;
Ben Lindstromf9c48842002-06-11 16:37:51 +0000850
851 PRIV_START;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000852 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Darren Tucker232b76f2006-05-06 17:41:51 +1000853 _PATH_HOST_KEY_FILE, "", NULL, NULL);
Damien Millerc1583312010-08-05 13:04:50 +1000854 sensitive_data.keys[1] = key_load_private_cert(KEY_DSA,
855 _PATH_HOST_DSA_KEY_FILE, "", NULL);
Damien Miller6af914a2010-09-10 11:39:26 +1000856#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000857 sensitive_data.keys[2] = key_load_private_cert(KEY_ECDSA,
858 _PATH_HOST_ECDSA_KEY_FILE, "", NULL);
Damien Miller6af914a2010-09-10 11:39:26 +1000859#endif
Damien Millereb8b60e2010-08-31 22:41:14 +1000860 sensitive_data.keys[3] = key_load_private_cert(KEY_RSA,
Damien Millerc1583312010-08-05 13:04:50 +1000861 _PATH_HOST_RSA_KEY_FILE, "", NULL);
Damien Millereb8b60e2010-08-31 22:41:14 +1000862 sensitive_data.keys[4] = key_load_private_type(KEY_DSA,
Darren Tucker232b76f2006-05-06 17:41:51 +1000863 _PATH_HOST_DSA_KEY_FILE, "", NULL, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +1000864#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000865 sensitive_data.keys[5] = key_load_private_type(KEY_ECDSA,
866 _PATH_HOST_ECDSA_KEY_FILE, "", NULL, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +1000867#endif
Damien Millereb8b60e2010-08-31 22:41:14 +1000868 sensitive_data.keys[6] = key_load_private_type(KEY_RSA,
Darren Tucker232b76f2006-05-06 17:41:51 +1000869 _PATH_HOST_RSA_KEY_FILE, "", NULL, NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +0000870 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000871
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +0000872 if (options.hostbased_authentication == 1 &&
873 sensitive_data.keys[0] == NULL &&
Damien Millereb8b60e2010-08-31 22:41:14 +1000874 sensitive_data.keys[4] == NULL &&
875 sensitive_data.keys[5] == NULL &&
876 sensitive_data.keys[6] == NULL) {
Damien Millerc1583312010-08-05 13:04:50 +1000877 sensitive_data.keys[1] = key_load_cert(
878 _PATH_HOST_DSA_KEY_FILE);
Damien Miller6af914a2010-09-10 11:39:26 +1000879#ifdef OPENSSL_HAS_ECC
Damien Millerc1583312010-08-05 13:04:50 +1000880 sensitive_data.keys[2] = key_load_cert(
Damien Millereb8b60e2010-08-31 22:41:14 +1000881 _PATH_HOST_ECDSA_KEY_FILE);
Damien Miller6af914a2010-09-10 11:39:26 +1000882#endif
Damien Millereb8b60e2010-08-31 22:41:14 +1000883 sensitive_data.keys[3] = key_load_cert(
Damien Millerc1583312010-08-05 13:04:50 +1000884 _PATH_HOST_RSA_KEY_FILE);
Damien Millerc1583312010-08-05 13:04:50 +1000885 sensitive_data.keys[4] = key_load_public(
Damien Millereb8b60e2010-08-31 22:41:14 +1000886 _PATH_HOST_DSA_KEY_FILE, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +1000887#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000888 sensitive_data.keys[5] = key_load_public(
889 _PATH_HOST_ECDSA_KEY_FILE, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +1000890#endif
Damien Millereb8b60e2010-08-31 22:41:14 +1000891 sensitive_data.keys[6] = key_load_public(
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000892 _PATH_HOST_RSA_KEY_FILE, NULL);
893 sensitive_data.external_keysign = 1;
894 }
Damien Miller95def091999-11-25 00:26:21 +1100895 }
Damien Miller5428f641999-11-25 11:54:57 +1100896 /*
897 * Get rid of any extra privileges that we may have. We will no
898 * longer need them. Also, extra privileges could make it very hard
899 * to read identity files and other non-world-readable files from the
900 * user's home directory if it happens to be on a NFS volume where
901 * root is mapped to nobody.
902 */
Darren Tucker25f60a72004-08-15 17:23:34 +1000903 if (original_effective_uid == 0) {
904 PRIV_START;
905 permanently_set_uid(pw);
906 }
Damien Miller95def091999-11-25 00:26:21 +1100907
Damien Miller5428f641999-11-25 11:54:57 +1100908 /*
909 * Now that we are back to our own permissions, create ~/.ssh
Damien Miller788f2122005-11-05 15:14:59 +1100910 * directory if it doesn't already exist.
Damien Miller5428f641999-11-25 11:54:57 +1100911 */
Darren Tucker45c66d72011-11-04 10:50:40 +1100912 if (config == NULL) {
913 r = snprintf(buf, sizeof buf, "%s%s%s", pw->pw_dir,
914 strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
915 if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) < 0) {
Darren Tucker8ccb7392010-09-10 12:28:24 +1000916#ifdef WITH_SELINUX
Darren Tucker45c66d72011-11-04 10:50:40 +1100917 ssh_selinux_setfscreatecon(buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +1000918#endif
Darren Tucker45c66d72011-11-04 10:50:40 +1100919 if (mkdir(buf, 0700) < 0)
920 error("Could not create directory '%.200s'.",
921 buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +1000922#ifdef WITH_SELINUX
Darren Tucker45c66d72011-11-04 10:50:40 +1100923 ssh_selinux_setfscreatecon(NULL);
Darren Tucker8ccb7392010-09-10 12:28:24 +1000924#endif
Darren Tucker45c66d72011-11-04 10:50:40 +1100925 }
Darren Tucker8ccb7392010-09-10 12:28:24 +1000926 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000927 /* load options.identity_files */
928 load_public_identity_files();
929
930 /* Expand ~ in known host file names. */
Damien Miller295ee632011-05-29 21:42:31 +1000931 tilde_expand_paths(options.system_hostfiles,
932 options.num_system_hostfiles);
933 tilde_expand_paths(options.user_hostfiles, options.num_user_hostfiles);
Damien Miller95def091999-11-25 00:26:21 +1100934
Damien Miller07cd5892001-11-12 10:52:03 +1100935 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
Damien Miller857b02e2010-09-24 22:02:56 +1000936 signal(SIGCHLD, main_sigchld_handler);
Damien Miller07cd5892001-11-12 10:52:03 +1100937
Darren Tuckerd6173c02008-06-13 04:52:53 +1000938 /* Log into the remote system. Never returns if the login fails. */
Damien Miller67bd0622007-09-17 12:06:57 +1000939 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr,
Damien Millerd925dcd2010-12-01 12:21:51 +1100940 options.port, pw, timeout_ms);
Damien Miller95def091999-11-25 00:26:21 +1100941
Damien Miller383ffe62010-06-26 10:02:03 +1000942 if (packet_connection_is_on_socket()) {
943 verbose("Authenticated to %s ([%s]:%d).", host,
944 get_remote_ipaddr(), get_remote_port());
945 } else {
946 verbose("Authenticated to %s (via proxy).", host);
947 }
948
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000949 /* We no longer need the private host keys. Clear them now. */
950 if (sensitive_data.nkeys != 0) {
951 for (i = 0; i < sensitive_data.nkeys; i++) {
952 if (sensitive_data.keys[i] != NULL) {
953 /* Destroys contents safely */
954 debug3("clear hostkey %d", i);
955 key_free(sensitive_data.keys[i]);
956 sensitive_data.keys[i] = NULL;
957 }
958 }
Darren Tuckera627d422013-06-02 07:31:17 +1000959 free(sensitive_data.keys);
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000960 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000961 for (i = 0; i < options.num_identity_files; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +1000962 free(options.identity_files[i]);
963 options.identity_files[i] = NULL;
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000964 if (options.identity_keys[i]) {
965 key_free(options.identity_keys[i]);
966 options.identity_keys[i] = NULL;
967 }
968 }
Damien Miller95def091999-11-25 00:26:21 +1100969
Damien Miller1383bd82000-04-06 12:32:37 +1000970 exit_status = compat20 ? ssh_session2() : ssh_session();
971 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +1000972
Damien Millerb1cbfa22008-05-19 16:00:08 +1000973 if (options.control_path != NULL && muxserver_sock != -1)
Damien Miller0e220db2004-06-15 10:34:08 +1000974 unlink(options.control_path);
975
Damien Millera41ccca2010-10-07 22:07:32 +1100976 /* Kill ProxyCommand if it is running. */
977 ssh_kill_proxy_command();
Damien Miller8c4e18a2002-09-19 12:05:02 +1000978
Damien Miller1383bd82000-04-06 12:32:37 +1000979 return exit_status;
980}
981
Damien Millere11e1ea2010-08-03 16:04:46 +1000982static void
983control_persist_detach(void)
984{
985 pid_t pid;
Damien Miller00d9ae22010-08-17 01:59:31 +1000986 int devnull;
Damien Millere11e1ea2010-08-03 16:04:46 +1000987
988 debug("%s: backgrounding master process", __func__);
989
990 /*
991 * master (current process) into the background, and make the
992 * foreground process a client of the backgrounded master.
993 */
994 switch ((pid = fork())) {
995 case -1:
996 fatal("%s: fork: %s", __func__, strerror(errno));
997 case 0:
998 /* Child: master process continues mainloop */
999 break;
1000 default:
1001 /* Parent: set up mux slave to connect to backgrounded master */
1002 debug2("%s: background process is %ld", __func__, (long)pid);
1003 stdin_null_flag = ostdin_null_flag;
Damien Miller21771e22011-05-15 08:45:50 +10001004 options.request_tty = orequest_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +10001005 tty_flag = otty_flag;
1006 close(muxserver_sock);
1007 muxserver_sock = -1;
Damien Miller5929c522010-09-10 11:17:02 +10001008 options.control_master = SSHCTL_MASTER_NO;
Damien Millere11e1ea2010-08-03 16:04:46 +10001009 muxclient(options.control_path);
1010 /* muxclient() doesn't return on success. */
1011 fatal("Failed to connect to new control master");
1012 }
Damien Miller00d9ae22010-08-17 01:59:31 +10001013 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
1014 error("%s: open(\"/dev/null\"): %s", __func__,
1015 strerror(errno));
1016 } else {
1017 if (dup2(devnull, STDIN_FILENO) == -1 ||
1018 dup2(devnull, STDOUT_FILENO) == -1)
1019 error("%s: dup2: %s", __func__, strerror(errno));
1020 if (devnull > STDERR_FILENO)
1021 close(devnull);
1022 }
Damien Miller98e27dc2013-07-25 11:55:52 +10001023 daemon(1, 1);
Damien Millerea2c1a42011-06-03 12:10:22 +10001024 setproctitle("%s [mux]", options.control_path);
Damien Millere11e1ea2010-08-03 16:04:46 +10001025}
1026
1027/* Do fork() after authentication. Used by "ssh -f" */
1028static void
1029fork_postauth(void)
1030{
1031 if (need_controlpersist_detach)
1032 control_persist_detach();
1033 debug("forking to background");
1034 fork_after_authentication_flag = 0;
1035 if (daemon(1, 1) < 0)
1036 fatal("daemon() failed: %.200s", strerror(errno));
1037}
1038
Darren Tucker9f407c42008-06-13 04:50:27 +10001039/* Callback for remote forward global requests */
1040static void
1041ssh_confirm_remote_forward(int type, u_int32_t seq, void *ctxt)
1042{
1043 Forward *rfwd = (Forward *)ctxt;
1044
Damien Miller4bf648f2009-02-14 16:28:21 +11001045 /* XXX verbose() on failure? */
Darren Tucker9f407c42008-06-13 04:50:27 +10001046 debug("remote forward %s for: listen %d, connect %s:%d",
1047 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
1048 rfwd->listen_port, rfwd->connect_host, rfwd->connect_port);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001049 if (rfwd->listen_port == 0) {
1050 if (type == SSH2_MSG_REQUEST_SUCCESS) {
1051 rfwd->allocated_port = packet_get_int();
1052 logit("Allocated port %u for remote forward to %s:%d",
1053 rfwd->allocated_port,
1054 rfwd->connect_host, rfwd->connect_port);
1055 channel_update_permitted_opens(rfwd->handle,
1056 rfwd->allocated_port);
1057 } else {
1058 channel_update_permitted_opens(rfwd->handle, -1);
1059 }
Damien Miller4bf648f2009-02-14 16:28:21 +11001060 }
1061
Darren Tucker9f407c42008-06-13 04:50:27 +10001062 if (type == SSH2_MSG_REQUEST_FAILURE) {
1063 if (options.exit_on_forward_failure)
1064 fatal("Error: remote port forwarding failed for "
1065 "listen port %d", rfwd->listen_port);
1066 else
1067 logit("Warning: remote port forwarding failed for "
1068 "listen port %d", rfwd->listen_port);
1069 }
Darren Tucker9a2a6092008-07-04 12:53:50 +10001070 if (++remote_forward_confirms_received == options.num_remote_forwards) {
Darren Tucker9f407c42008-06-13 04:50:27 +10001071 debug("All remote forwarding requests processed");
Damien Millere11e1ea2010-08-03 16:04:46 +10001072 if (fork_after_authentication_flag)
1073 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001074 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001075}
1076
Ben Lindstrombba81212001-06-25 05:01:22 +00001077static void
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001078client_cleanup_stdio_fwd(int id, void *arg)
1079{
1080 debug("stdio forwarding: done");
1081 cleanup_exit(0);
1082}
1083
Darren Tucker2d6665d2011-11-04 10:54:22 +11001084static void
1085ssh_init_stdio_forwarding(void)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001086{
1087 Channel *c;
Damien Millere1537f92010-01-26 13:26:22 +11001088 int in, out;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001089
Darren Tucker2d6665d2011-11-04 10:54:22 +11001090 if (stdio_forward_host == NULL)
1091 return;
1092 if (!compat20)
1093 fatal("stdio forwarding require Protocol 2");
Damien Millere1537f92010-01-26 13:26:22 +11001094
Darren Tucker2d6665d2011-11-04 10:54:22 +11001095 debug3("%s: %s:%d", __func__, stdio_forward_host, stdio_forward_port);
1096
1097 if ((in = dup(STDIN_FILENO)) < 0 ||
1098 (out = dup(STDOUT_FILENO)) < 0)
Damien Millere1537f92010-01-26 13:26:22 +11001099 fatal("channel_connect_stdio_fwd: dup() in/out failed");
Darren Tucker2d6665d2011-11-04 10:54:22 +11001100 if ((c = channel_connect_stdio_fwd(stdio_forward_host,
1101 stdio_forward_port, in, out)) == NULL)
1102 fatal("%s: channel_connect_stdio_fwd failed", __func__);
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001103 channel_register_cleanup(c->self, client_cleanup_stdio_fwd, 0);
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001104}
1105
1106static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001107ssh_init_forwarding(void)
1108{
Kevin Steves12057502001-02-05 14:54:34 +00001109 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001110 int i;
Kevin Steves12057502001-02-05 14:54:34 +00001111
Damien Miller0bc1bd82000-11-13 22:57:25 +11001112 /* Initiate local TCP/IP port forwardings. */
1113 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001114 debug("Local connections to %.200s:%d forwarded to remote "
1115 "address %.200s:%d",
Darren Tucker47eede72005-03-14 23:08:12 +11001116 (options.local_forwards[i].listen_host == NULL) ?
1117 (options.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001118 options.local_forwards[i].listen_host,
1119 options.local_forwards[i].listen_port,
1120 options.local_forwards[i].connect_host,
1121 options.local_forwards[i].connect_port);
Damien Millerb16461c2002-01-22 23:29:22 +11001122 success += channel_setup_local_fwd_listener(
Damien Millerf91ee4c2005-03-01 21:24:33 +11001123 options.local_forwards[i].listen_host,
1124 options.local_forwards[i].listen_port,
1125 options.local_forwards[i].connect_host,
1126 options.local_forwards[i].connect_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11001127 options.gateway_ports);
1128 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10001129 if (i > 0 && success != i && options.exit_on_forward_failure)
1130 fatal("Could not request local forwarding.");
Kevin Steves12057502001-02-05 14:54:34 +00001131 if (i > 0 && success == 0)
1132 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001133
1134 /* Initiate remote TCP/IP port forwardings. */
1135 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001136 debug("Remote connections from %.200s:%d forwarded to "
1137 "local address %.200s:%d",
Damien Miller46d38de2005-07-17 17:02:09 +10001138 (options.remote_forwards[i].listen_host == NULL) ?
Damien Milleraa3bb102005-11-05 15:12:59 +11001139 "LOCALHOST" : options.remote_forwards[i].listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +11001140 options.remote_forwards[i].listen_port,
1141 options.remote_forwards[i].connect_host,
1142 options.remote_forwards[i].connect_port);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001143 options.remote_forwards[i].handle =
1144 channel_request_remote_forwarding(
Damien Millerf91ee4c2005-03-01 21:24:33 +11001145 options.remote_forwards[i].listen_host,
1146 options.remote_forwards[i].listen_port,
1147 options.remote_forwards[i].connect_host,
Darren Tucker68afb8c2011-10-02 18:59:03 +11001148 options.remote_forwards[i].connect_port);
1149 if (options.remote_forwards[i].handle < 0) {
Darren Tuckere7d4b192006-07-12 22:17:10 +10001150 if (options.exit_on_forward_failure)
1151 fatal("Could not request remote forwarding.");
1152 else
1153 logit("Warning: Could not request remote "
1154 "forwarding.");
Darren Tucker68afb8c2011-10-02 18:59:03 +11001155 } else {
1156 client_register_global_confirm(ssh_confirm_remote_forward,
1157 &options.remote_forwards[i]);
Darren Tuckere7d4b192006-07-12 22:17:10 +10001158 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001159 }
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001160
1161 /* Initiate tunnel forwarding. */
1162 if (options.tun_open != SSH_TUNMODE_NO) {
1163 if (client_request_tun_fwd(options.tun_open,
1164 options.tun_local, options.tun_remote) == -1) {
1165 if (options.exit_on_forward_failure)
1166 fatal("Could not request tunnel forwarding.");
1167 else
1168 error("Could not request tunnel forwarding.");
1169 }
1170 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001171}
1172
Ben Lindstrombba81212001-06-25 05:01:22 +00001173static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001174check_agent_present(void)
1175{
1176 if (options.forward_agent) {
Damien Miller788f2122005-11-05 15:14:59 +11001177 /* Clear agent forwarding if we don't have an agent. */
Damien Miller789e95d2002-09-12 09:52:46 +10001178 if (!ssh_agent_present())
Damien Miller0bc1bd82000-11-13 22:57:25 +11001179 options.forward_agent = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001180 }
1181}
1182
Ben Lindstrombba81212001-06-25 05:01:22 +00001183static int
Damien Miller1383bd82000-04-06 12:32:37 +10001184ssh_session(void)
1185{
1186 int type;
Damien Miller1383bd82000-04-06 12:32:37 +10001187 int interactive = 0;
1188 int have_tty = 0;
1189 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +10001190 char *cp;
Damien Miller17e7ed02005-06-17 12:54:33 +10001191 const char *display;
Damien Miller1383bd82000-04-06 12:32:37 +10001192
Damien Miller95def091999-11-25 00:26:21 +11001193 /* Enable compression if requested. */
1194 if (options.compression) {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001195 debug("Requesting compression at level %d.",
1196 options.compression_level);
Damien Miller95def091999-11-25 00:26:21 +11001197
Darren Tuckerd6173c02008-06-13 04:52:53 +10001198 if (options.compression_level < 1 ||
1199 options.compression_level > 9)
1200 fatal("Compression level must be from 1 (fast) to "
1201 "9 (slow, best).");
Damien Miller95def091999-11-25 00:26:21 +11001202
1203 /* Send the request. */
1204 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
1205 packet_put_int(options.compression_level);
1206 packet_send();
1207 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +11001208 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001209 if (type == SSH_SMSG_SUCCESS)
1210 packet_start_compression(options.compression_level);
1211 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +10001212 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +11001213 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001214 packet_disconnect("Protocol error waiting for "
1215 "compression response.");
Damien Miller95def091999-11-25 00:26:21 +11001216 }
1217 /* Allocate a pseudo tty if appropriate. */
1218 if (tty_flag) {
1219 debug("Requesting pty.");
1220
1221 /* Start the packet. */
1222 packet_start(SSH_CMSG_REQUEST_PTY);
1223
1224 /* Store TERM in the packet. There is no limit on the
1225 length of the string. */
1226 cp = getenv("TERM");
1227 if (!cp)
1228 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +00001229 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +11001230
1231 /* Store window size in the packet. */
1232 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1233 memset(&ws, 0, sizeof(ws));
Damien Miller71a73672006-03-26 14:04:36 +11001234 packet_put_int((u_int)ws.ws_row);
1235 packet_put_int((u_int)ws.ws_col);
1236 packet_put_int((u_int)ws.ws_xpixel);
1237 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller95def091999-11-25 00:26:21 +11001238
1239 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001240 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +11001241
1242 /* Send the packet, and wait for it to leave. */
1243 packet_send();
1244 packet_write_wait();
1245
1246 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001247 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +10001248 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001249 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001250 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +10001251 } else if (type == SSH_SMSG_FAILURE)
Darren Tuckerd6173c02008-06-13 04:52:53 +10001252 logit("Warning: Remote host failed or refused to "
1253 "allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +11001254 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001255 packet_disconnect("Protocol error waiting for pty "
1256 "request response.");
Damien Miller95def091999-11-25 00:26:21 +11001257 }
1258 /* Request X11 forwarding if enabled and DISPLAY is set. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001259 display = getenv("DISPLAY");
1260 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001261 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001262 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001263 client_x11_get_proto(display, options.xauth_location,
Damien Miller1ab6a512010-06-26 10:02:24 +10001264 options.forward_x11_trusted,
1265 options.forward_x11_timeout,
1266 &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001267 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001268 debug("Requesting X11 forwarding with authentication "
1269 "spoofing.");
Damien Miller6d7b4372011-06-23 08:31:57 +10001270 x11_request_forwarding_with_spoofing(0, display, proto,
1271 data, 0);
Damien Miller95def091999-11-25 00:26:21 +11001272 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001273 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001274 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001275 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001276 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +10001277 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +10001278 } else {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001279 packet_disconnect("Protocol error waiting for X11 "
1280 "forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +10001281 }
Damien Miller95def091999-11-25 00:26:21 +11001282 }
1283 /* Tell the packet module whether this is an interactive session. */
Damien Miller0dac6fb2010-11-20 15:19:38 +11001284 packet_set_interactive(interactive,
1285 options.ip_qos_interactive, options.ip_qos_bulk);
Damien Miller95def091999-11-25 00:26:21 +11001286
1287 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001288 check_agent_present();
1289
Damien Miller95def091999-11-25 00:26:21 +11001290 if (options.forward_agent) {
1291 debug("Requesting authentication agent forwarding.");
1292 auth_request_forwarding();
1293
1294 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001295 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +11001296 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11001297 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +10001298 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +11001299 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001300
Damien Miller0bc1bd82000-11-13 22:57:25 +11001301 /* Initiate port forwardings. */
Darren Tucker2d6665d2011-11-04 10:54:22 +11001302 ssh_init_stdio_forwarding();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001303 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001304
Darren Tuckerb776c852007-12-02 23:06:35 +11001305 /* Execute a local command */
1306 if (options.local_command != NULL &&
1307 options.permit_local_command)
1308 ssh_local_cmd(options.local_command);
1309
Darren Tucker9a2a6092008-07-04 12:53:50 +10001310 /*
1311 * If requested and we are not interested in replies to remote
1312 * forwarding requests, then let ssh continue in the background.
1313 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001314 if (fork_after_authentication_flag) {
1315 if (options.exit_on_forward_failure &&
1316 options.num_remote_forwards > 0) {
1317 debug("deferring postauth fork until remote forward "
1318 "confirmation received");
1319 } else
1320 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001321 }
Damien Miller5428f641999-11-25 11:54:57 +11001322
1323 /*
1324 * If a command was specified on the command line, execute the
1325 * command now. Otherwise request the server to start a shell.
1326 */
Damien Miller95def091999-11-25 00:26:21 +11001327 if (buffer_len(&command) > 0) {
1328 int len = buffer_len(&command);
1329 if (len > 900)
1330 len = 900;
Darren Tuckerd6173c02008-06-13 04:52:53 +10001331 debug("Sending command: %.*s", len,
1332 (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +11001333 packet_start(SSH_CMSG_EXEC_CMD);
1334 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1335 packet_send();
1336 packet_write_wait();
1337 } else {
1338 debug("Requesting shell.");
1339 packet_start(SSH_CMSG_EXEC_SHELL);
1340 packet_send();
1341 packet_write_wait();
1342 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001343
Damien Miller95def091999-11-25 00:26:21 +11001344 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001345 return client_loop(have_tty, tty_flag ?
1346 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +10001347}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001348
Ben Lindstromf558cf62001-09-20 23:13:49 +00001349/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001350static void
Damien Millerd530f5f2010-05-21 14:57:10 +10001351ssh_session2_setup(int id, int success, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001352{
Damien Miller3756dce2004-06-18 01:17:29 +10001353 extern char **environ;
Damien Miller17e7ed02005-06-17 12:54:33 +10001354 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +10001355 int interactive = tty_flag;
Damien Miller17e7ed02005-06-17 12:54:33 +10001356
Damien Millerd530f5f2010-05-21 14:57:10 +10001357 if (!success)
1358 return; /* No need for error message, channels code sens one */
1359
Damien Miller46d38de2005-07-17 17:02:09 +10001360 display = getenv("DISPLAY");
Damien Miller17e7ed02005-06-17 12:54:33 +10001361 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001362 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001363 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001364 client_x11_get_proto(display, options.xauth_location,
Damien Miller1ab6a512010-06-26 10:02:24 +10001365 options.forward_x11_trusted,
1366 options.forward_x11_timeout, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001367 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001368 debug("Requesting X11 forwarding with authentication "
1369 "spoofing.");
Damien Miller6d7b4372011-06-23 08:31:57 +10001370 x11_request_forwarding_with_spoofing(id, display, proto,
1371 data, 1);
1372 client_expect_confirm(id, "X11 forwarding", CONFIRM_WARN);
1373 /* XXX exit_on_forward_failure */
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001374 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001375 }
1376
Damien Miller0bc1bd82000-11-13 22:57:25 +11001377 check_agent_present();
1378 if (options.forward_agent) {
1379 debug("Requesting authentication agent forwarding.");
1380 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1381 packet_send();
1382 }
1383
Darren Tucker7b305012012-07-02 18:55:09 +10001384 /* Tell the packet module whether this is an interactive session. */
1385 packet_set_interactive(interactive,
1386 options.ip_qos_interactive, options.ip_qos_bulk);
1387
Damien Miller0e220db2004-06-15 10:34:08 +10001388 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
Damien Miller5771ed72008-05-19 15:35:33 +10001389 NULL, fileno(stdin), &command, environ);
Damien Miller1383bd82000-04-06 12:32:37 +10001390}
1391
Ben Lindstromf558cf62001-09-20 23:13:49 +00001392/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001393static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001394ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001395{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001396 Channel *c;
1397 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001398
Damien Millercaf6dd62000-08-29 11:33:50 +11001399 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001400 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001401 } else {
1402 in = dup(STDIN_FILENO);
1403 }
1404 out = dup(STDOUT_FILENO);
1405 err = dup(STDERR_FILENO);
1406
1407 if (in < 0 || out < 0 || err < 0)
1408 fatal("dup() in/out/err failed");
1409
Damien Miller69b69aa2000-10-28 14:19:58 +11001410 /* enable nonblocking unless tty */
1411 if (!isatty(in))
1412 set_nonblock(in);
1413 if (!isatty(out))
1414 set_nonblock(out);
1415 if (!isatty(err))
1416 set_nonblock(err);
1417
Damien Millere4340be2000-09-16 13:29:08 +11001418 window = CHAN_SES_WINDOW_DEFAULT;
1419 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001420 if (tty_flag) {
1421 window >>= 1;
1422 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001423 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001424 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001425 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001426 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001427 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001428
Ben Lindstromf558cf62001-09-20 23:13:49 +00001429 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001430
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001431 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001432 if (!no_shell_flag)
Damien Millerb84886b2008-05-19 15:05:07 +10001433 channel_register_open_confirm(c->self,
1434 ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001435
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001436 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001437}
1438
Ben Lindstrombba81212001-06-25 05:01:22 +00001439static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001440ssh_session2(void)
1441{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001442 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001443
1444 /* XXX should be pre-session */
Darren Tucker2d6665d2011-11-04 10:54:22 +11001445 if (!options.control_persist)
1446 ssh_init_stdio_forwarding();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001447 ssh_init_forwarding();
1448
Damien Millere11e1ea2010-08-03 16:04:46 +10001449 /* Start listening for multiplex clients */
1450 muxserver_listen();
1451
1452 /*
Darren Tucker2d6665d2011-11-04 10:54:22 +11001453 * If we are in control persist mode and have a working mux listen
1454 * socket, then prepare to background ourselves and have a foreground
1455 * client attach as a control slave.
1456 * NB. we must save copies of the flags that we override for
Damien Millere11e1ea2010-08-03 16:04:46 +10001457 * the backgrounding, since we defer attachment of the slave until
1458 * after the connection is fully established (in particular,
1459 * async rfwd replies have been received for ExitOnForwardFailure).
1460 */
1461 if (options.control_persist && muxserver_sock != -1) {
1462 ostdin_null_flag = stdin_null_flag;
1463 ono_shell_flag = no_shell_flag;
Damien Miller21771e22011-05-15 08:45:50 +10001464 orequest_tty = options.request_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +10001465 otty_flag = tty_flag;
1466 stdin_null_flag = 1;
1467 no_shell_flag = 1;
Damien Millere11e1ea2010-08-03 16:04:46 +10001468 tty_flag = 0;
1469 if (!fork_after_authentication_flag)
1470 need_controlpersist_detach = 1;
1471 fork_after_authentication_flag = 1;
1472 }
Darren Tucker2d6665d2011-11-04 10:54:22 +11001473 /*
1474 * ControlPersist mux listen socket setup failed, attempt the
1475 * stdio forward setup that we skipped earlier.
1476 */
1477 if (options.control_persist && muxserver_sock == -1)
1478 ssh_init_stdio_forwarding();
Damien Millere11e1ea2010-08-03 16:04:46 +10001479
Ben Lindstromf558cf62001-09-20 23:13:49 +00001480 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1481 id = ssh_session2_open();
Damien Miller649fe022013-07-18 16:13:55 +10001482 else {
1483 packet_set_interactive(
1484 options.control_master == SSHCTL_MASTER_NO,
1485 options.ip_qos_interactive, options.ip_qos_bulk);
1486 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001487
Darren Tucker8901fa92008-06-11 09:34:01 +10001488 /* If we don't expect to open a new session, then disallow it */
Damien Miller456e6f02008-11-03 19:20:10 +11001489 if (options.control_master == SSHCTL_MASTER_NO &&
1490 (datafellows & SSH_NEW_OPENSSH)) {
Darren Tucker8901fa92008-06-11 09:34:01 +10001491 debug("Requesting no-more-sessions@openssh.com");
1492 packet_start(SSH2_MSG_GLOBAL_REQUEST);
1493 packet_put_cstring("no-more-sessions@openssh.com");
1494 packet_put_char(0);
1495 packet_send();
1496 }
1497
Damien Millerd27b9472005-12-13 19:29:02 +11001498 /* Execute a local command */
1499 if (options.local_command != NULL &&
1500 options.permit_local_command)
1501 ssh_local_cmd(options.local_command);
1502
Damien Miller1f25ab42010-07-16 13:56:23 +10001503 /*
1504 * If requested and we are not interested in replies to remote
1505 * forwarding requests, then let ssh continue in the background.
1506 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001507 if (fork_after_authentication_flag) {
1508 if (options.exit_on_forward_failure &&
1509 options.num_remote_forwards > 0) {
1510 debug("deferring postauth fork until remote forward "
1511 "confirmation received");
1512 } else
1513 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001514 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001515
Darren Tuckerf1de4e52010-01-08 16:54:59 +11001516 if (options.use_roaming)
1517 request_roaming();
1518
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001519 return client_loop(tty_flag, tty_flag ?
1520 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001521}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001522
Ben Lindstrombba81212001-06-25 05:01:22 +00001523static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001524load_public_identity_files(void)
1525{
Damien Miller6b1d53c2006-03-31 23:13:21 +11001526 char *filename, *cp, thishost[NI_MAXHOST];
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001527 char *pwdir = NULL, *pwname = NULL;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001528 int i = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001529 Key *public;
Damien Miller6b1d53c2006-03-31 23:13:21 +11001530 struct passwd *pw;
Damien Miller0a80ca12010-02-27 07:55:05 +11001531 u_int n_ids;
1532 char *identity_files[SSH_MAX_IDENTITY_FILES];
1533 Key *identity_keys[SSH_MAX_IDENTITY_FILES];
Damien Miller7ea845e2010-02-12 09:21:02 +11001534#ifdef ENABLE_PKCS11
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001535 Key **keys;
Damien Miller7ea845e2010-02-12 09:21:02 +11001536 int nkeys;
Damien Miller0a80ca12010-02-27 07:55:05 +11001537#endif /* PKCS11 */
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001538
Damien Miller0a80ca12010-02-27 07:55:05 +11001539 n_ids = 0;
1540 bzero(identity_files, sizeof(identity_files));
1541 bzero(identity_keys, sizeof(identity_keys));
1542
1543#ifdef ENABLE_PKCS11
Damien Miller7ea845e2010-02-12 09:21:02 +11001544 if (options.pkcs11_provider != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001545 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
Damien Miller7ea845e2010-02-12 09:21:02 +11001546 (pkcs11_init(!options.batch_mode) == 0) &&
1547 (nkeys = pkcs11_add_provider(options.pkcs11_provider, NULL,
1548 &keys)) > 0) {
Damien Miller7ea845e2010-02-12 09:21:02 +11001549 for (i = 0; i < nkeys; i++) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001550 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
1551 key_free(keys[i]);
1552 continue;
1553 }
1554 identity_keys[n_ids] = keys[i];
1555 identity_files[n_ids] =
Damien Miller7ea845e2010-02-12 09:21:02 +11001556 xstrdup(options.pkcs11_provider); /* XXX */
Damien Miller0a80ca12010-02-27 07:55:05 +11001557 n_ids++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001558 }
Darren Tuckera627d422013-06-02 07:31:17 +10001559 free(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001560 }
Damien Miller7ea845e2010-02-12 09:21:02 +11001561#endif /* ENABLE_PKCS11 */
Damien Miller6b1d53c2006-03-31 23:13:21 +11001562 if ((pw = getpwuid(original_real_uid)) == NULL)
1563 fatal("load_public_identity_files: getpwuid failed");
Darren Tuckere143f062007-12-02 23:21:16 +11001564 pwname = xstrdup(pw->pw_name);
1565 pwdir = xstrdup(pw->pw_dir);
Damien Miller6b1d53c2006-03-31 23:13:21 +11001566 if (gethostname(thishost, sizeof(thishost)) == -1)
1567 fatal("load_public_identity_files: gethostname: %s",
1568 strerror(errno));
Damien Miller0a80ca12010-02-27 07:55:05 +11001569 for (i = 0; i < options.num_identity_files; i++) {
Darren Tucker15fd19c2013-04-05 11:22:26 +11001570 if (n_ids >= SSH_MAX_IDENTITY_FILES ||
1571 strcasecmp(options.identity_files[i], "none") == 0) {
Darren Tuckera627d422013-06-02 07:31:17 +10001572 free(options.identity_files[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +11001573 continue;
1574 }
Damien Miller6b1d53c2006-03-31 23:13:21 +11001575 cp = tilde_expand_filename(options.identity_files[i],
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001576 original_real_uid);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001577 filename = percent_expand(cp, "d", pwdir,
1578 "u", pwname, "l", thishost, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +11001579 "r", options.user, (char *)NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10001580 free(cp);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001581 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001582 debug("identity file %s type %d", filename,
1583 public ? public->type : -1);
Darren Tuckera627d422013-06-02 07:31:17 +10001584 free(options.identity_files[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +11001585 identity_files[n_ids] = filename;
1586 identity_keys[n_ids] = public;
1587
1588 if (++n_ids >= SSH_MAX_IDENTITY_FILES)
1589 continue;
1590
1591 /* Try to add the certificate variant too */
1592 xasprintf(&cp, "%s-cert", filename);
1593 public = key_load_public(cp, NULL);
1594 debug("identity file %s type %d", cp,
1595 public ? public->type : -1);
1596 if (public == NULL) {
Darren Tuckera627d422013-06-02 07:31:17 +10001597 free(cp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001598 continue;
1599 }
1600 if (!key_is_cert(public)) {
1601 debug("%s: key %s type %s is not a certificate",
1602 __func__, cp, key_type(public));
1603 key_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +10001604 free(cp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001605 continue;
1606 }
1607 identity_keys[n_ids] = public;
1608 /* point to the original path, most likely the private key */
1609 identity_files[n_ids] = xstrdup(filename);
1610 n_ids++;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001611 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001612 options.num_identity_files = n_ids;
1613 memcpy(options.identity_files, identity_files, sizeof(identity_files));
1614 memcpy(options.identity_keys, identity_keys, sizeof(identity_keys));
1615
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001616 bzero(pwname, strlen(pwname));
Darren Tuckera627d422013-06-02 07:31:17 +10001617 free(pwname);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001618 bzero(pwdir, strlen(pwdir));
Darren Tuckera627d422013-06-02 07:31:17 +10001619 free(pwdir);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001620}
Damien Miller857b02e2010-09-24 22:02:56 +10001621
1622static void
1623main_sigchld_handler(int sig)
1624{
1625 int save_errno = errno;
1626 pid_t pid;
1627 int status;
1628
1629 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
1630 (pid < 0 && errno == EINTR))
1631 ;
1632
1633 signal(sig, main_sigchld_handler);
1634 errno = save_errno;
1635}
1636