blob: 68e131527d979c0f83718c64878a0d30f31219cb [file] [log] [blame]
Darren Tucker2d6665d2011-11-04 10:54:22 +11001/* $OpenBSD: ssh.c,v 1.368 2011/10/24 02:10:46 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;
Damien Millerf6dff7c2011-09-22 21:38:52 +1000380 else if (strcmp(optarg, "cancel") == 0)
381 muxclient_command = SSHMUX_COMMAND_CANCEL_FWD;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100382 else
383 fatal("Invalid multiplex command.");
384 break;
Damien Miller147bba32002-09-04 16:46:06 +1000385 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100386 options.use_privileged_port = 0;
387 break;
Damien Miller95def091999-11-25 00:26:21 +1100388 case 'a':
389 options.forward_agent = 0;
390 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000391 case 'A':
392 options.forward_agent = 1;
393 break;
Damien Miller95def091999-11-25 00:26:21 +1100394 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100395 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100396 break;
Darren Tucker415bddc2007-06-12 23:43:16 +1000397 case 'K':
398 options.gss_authentication = 1;
399 options.gss_deleg_creds = 1;
400 break;
Damien Miller95def091999-11-25 00:26:21 +1100401 case 'i':
402 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000403 fprintf(stderr, "Warning: Identity file %s "
Damien Miller3eb48b62005-03-01 21:15:46 +1100404 "not accessible: %s.\n", optarg,
405 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100406 break;
407 }
Damien Millerf4614452001-07-14 12:18:10 +1000408 if (options.num_identity_files >=
409 SSH_MAX_IDENTITY_FILES)
410 fatal("Too many identity files specified "
411 "(max %d)", SSH_MAX_IDENTITY_FILES);
412 options.identity_files[options.num_identity_files++] =
413 xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100414 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000415 case 'I':
Damien Miller7ea845e2010-02-12 09:21:02 +1100416#ifdef ENABLE_PKCS11
417 options.pkcs11_provider = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000418#else
Damien Miller7ea845e2010-02-12 09:21:02 +1100419 fprintf(stderr, "no support for PKCS#11.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000420#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000421 break;
Damien Miller95def091999-11-25 00:26:21 +1100422 case 't':
Damien Miller21771e22011-05-15 08:45:50 +1000423 if (options.request_tty == REQUEST_TTY_YES)
424 options.request_tty = REQUEST_TTY_FORCE;
425 else
426 options.request_tty = REQUEST_TTY_YES;
Damien Miller95def091999-11-25 00:26:21 +1100427 break;
Damien Miller95def091999-11-25 00:26:21 +1100428 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000429 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100430 debug_flag = 1;
431 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000432 } else {
433 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
434 options.log_level++;
Damien Millere4340be2000-09-16 13:29:08 +1100435 break;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000436 }
Darren Tuckere9bf9842004-11-05 20:05:32 +1100437 /* FALLTHROUGH */
Damien Miller95def091999-11-25 00:26:21 +1100438 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100439 fprintf(stderr, "%s, %s\n",
Damien Miller2aa6d3c2004-09-12 16:53:04 +1000440 SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
Damien Miller95def091999-11-25 00:26:21 +1100441 if (opt == 'V')
442 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100443 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100444 case 'w':
Damien Miller7b58e802005-12-13 19:33:19 +1100445 if (options.tun_open == -1)
446 options.tun_open = SSH_TUNMODE_DEFAULT;
Damien Millerd27b9472005-12-13 19:29:02 +1100447 options.tun_local = a2tun(optarg, &options.tun_remote);
Damien Miller7b58e802005-12-13 19:33:19 +1100448 if (options.tun_local == SSH_TUNID_ERR) {
Darren Tuckerd6173c02008-06-13 04:52:53 +1000449 fprintf(stderr,
450 "Bad tun device '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100451 exit(255);
Damien Millerd27b9472005-12-13 19:29:02 +1100452 }
453 break;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100454 case 'W':
Damien Millere1537f92010-01-26 13:26:22 +1100455 if (stdio_forward_host != NULL)
456 fatal("stdio forward already specified");
457 if (muxclient_command != 0)
458 fatal("Cannot specify stdio forward with -O");
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100459 if (parse_forward(&fwd, optarg, 1, 0)) {
460 stdio_forward_host = fwd.listen_host;
461 stdio_forward_port = fwd.listen_port;
462 xfree(fwd.connect_host);
463 } else {
464 fprintf(stderr,
465 "Bad stdio forwarding specification '%s'\n",
466 optarg);
467 exit(255);
468 }
Damien Miller21771e22011-05-15 08:45:50 +1000469 options.request_tty = REQUEST_TTY_NO;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100470 no_shell_flag = 1;
471 options.clear_forwardings = 1;
472 options.exit_on_forward_failure = 1;
473 break;
Damien Miller95def091999-11-25 00:26:21 +1100474 case 'q':
475 options.log_level = SYSLOG_LEVEL_QUIET;
476 break;
Damien Miller95def091999-11-25 00:26:21 +1100477 case 'e':
478 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000479 (u_char) optarg[1] >= 64 &&
480 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000481 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100482 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000483 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100484 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000485 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100486 else {
Damien Millerf4614452001-07-14 12:18:10 +1000487 fprintf(stderr, "Bad escape character '%s'.\n",
488 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100489 exit(255);
Damien Miller95def091999-11-25 00:26:21 +1100490 }
491 break;
Damien Miller95def091999-11-25 00:26:21 +1100492 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000493 if (ciphers_valid(optarg)) {
494 /* SSH2 only */
495 options.ciphers = xstrdup(optarg);
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000496 options.cipher = SSH_CIPHER_INVALID;
Damien Millereba71ba2000-04-29 23:57:08 +1000497 } else {
498 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100499 options.cipher = cipher_number(optarg);
500 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000501 fprintf(stderr,
502 "Unknown cipher type '%s'\n",
503 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100504 exit(255);
Damien Millereba71ba2000-04-29 23:57:08 +1000505 }
Damien Millerf4614452001-07-14 12:18:10 +1000506 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100507 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000508 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100509 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000510 else
Damien Millere39cacc2000-11-29 12:18:44 +1100511 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100512 }
513 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000514 case 'm':
515 if (mac_valid(optarg))
516 options.macs = xstrdup(optarg);
517 else {
Damien Millerf4614452001-07-14 12:18:10 +1000518 fprintf(stderr, "Unknown mac type '%s'\n",
519 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100520 exit(255);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000521 }
522 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000523 case 'M':
Damien Millerd14b1e72005-06-16 13:19:41 +1000524 if (options.control_master == SSHCTL_MASTER_YES)
525 options.control_master = SSHCTL_MASTER_ASK;
526 else
527 options.control_master = SSHCTL_MASTER_YES;
Damien Miller0e220db2004-06-15 10:34:08 +1000528 break;
Damien Miller95def091999-11-25 00:26:21 +1100529 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000530 options.port = a2port(optarg);
Damien Miller3dc71ad2009-01-28 16:31:22 +1100531 if (options.port <= 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000532 fprintf(stderr, "Bad port '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100533 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000534 }
Damien Miller95def091999-11-25 00:26:21 +1100535 break;
Damien Miller95def091999-11-25 00:26:21 +1100536 case 'l':
537 options.user = optarg;
538 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000539
Damien Miller95def091999-11-25 00:26:21 +1100540 case 'L':
Damien Miller4bf648f2009-02-14 16:28:21 +1100541 if (parse_forward(&fwd, optarg, 0, 0))
Damien Millerf91ee4c2005-03-01 21:24:33 +1100542 add_local_forward(&options, &fwd);
543 else {
Damien Millerf4614452001-07-14 12:18:10 +1000544 fprintf(stderr,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100545 "Bad local forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000546 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100547 exit(255);
Ben Lindstrom1a174712001-09-12 17:56:15 +0000548 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100549 break;
550
551 case 'R':
Damien Miller4bf648f2009-02-14 16:28:21 +1100552 if (parse_forward(&fwd, optarg, 0, 1)) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100553 add_remote_forward(&options, &fwd);
554 } else {
555 fprintf(stderr,
556 "Bad remote forwarding specification "
557 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100558 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100559 }
Damien Miller95def091999-11-25 00:26:21 +1100560 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000561
562 case 'D':
Damien Miller4bf648f2009-02-14 16:28:21 +1100563 if (parse_forward(&fwd, optarg, 1, 0)) {
Damien Millera699d952008-11-03 19:27:34 +1100564 add_local_forward(&options, &fwd);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100565 } else {
Damien Millera699d952008-11-03 19:27:34 +1100566 fprintf(stderr,
567 "Bad dynamic forwarding specification "
568 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100569 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000570 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000571 break;
572
Damien Miller95def091999-11-25 00:26:21 +1100573 case 'C':
574 options.compression = 1;
575 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000576 case 'N':
577 no_shell_flag = 1;
Damien Miller21771e22011-05-15 08:45:50 +1000578 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000579 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000580 case 'T':
Damien Miller21771e22011-05-15 08:45:50 +1000581 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000582 break;
Damien Miller95def091999-11-25 00:26:21 +1100583 case 'o':
584 dummy = 1;
Damien Miller9836cf82003-12-17 16:30:06 +1100585 line = xstrdup(optarg);
Damien Millerf4614452001-07-14 12:18:10 +1000586 if (process_config_line(&options, host ? host : "",
Damien Miller9836cf82003-12-17 16:30:06 +1100587 line, "command-line", 0, &dummy) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100588 exit(255);
Damien Miller9836cf82003-12-17 16:30:06 +1100589 xfree(line);
Damien Miller95def091999-11-25 00:26:21 +1100590 break;
Damien Miller832562e2001-01-30 09:30:01 +1100591 case 's':
592 subsystem_flag = 1;
593 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000594 case 'S':
595 if (options.control_path != NULL)
596 free(options.control_path);
597 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000598 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000599 case 'b':
600 options.bind_address = optarg;
601 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000602 case 'F':
603 config = optarg;
604 break;
Damien Miller95def091999-11-25 00:26:21 +1100605 default:
606 usage();
607 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000608 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000609
Damien Millerf4614452001-07-14 12:18:10 +1000610 ac -= optind;
611 av += optind;
612
Darren Tuckerb8c884a2010-01-08 18:53:43 +1100613 if (ac > 0 && !host) {
Ben Lindstromc276c122002-12-23 02:14:51 +0000614 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000615 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000616 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000617 if (cp == NULL || cp == p)
618 usage();
619 options.user = p;
620 *cp = '\0';
621 host = ++cp;
622 } else
623 host = *av;
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000624 if (ac > 1) {
625 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000626 goto again;
627 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000628 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000629 }
630
Damien Miller95def091999-11-25 00:26:21 +1100631 /* Check that we got a host name. */
632 if (!host)
633 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000634
Damien Miller4314c2b2010-09-10 11:12:09 +1000635 OpenSSL_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100636 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100637
Damien Miller95def091999-11-25 00:26:21 +1100638 /* Initialize the command to execute on remote host. */
639 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000640
Damien Miller21771e22011-05-15 08:45:50 +1000641 if (options.request_tty == REQUEST_TTY_YES ||
642 options.request_tty == REQUEST_TTY_FORCE)
643 tty_flag = 1;
644
Damien Miller5428f641999-11-25 11:54:57 +1100645 /*
646 * Save the command to execute on the remote host in a buffer. There
647 * is no limit on the length of the command, except by the maximum
648 * packet size. Also sets the tty flag if there is no command.
649 */
Damien Millerf4614452001-07-14 12:18:10 +1000650 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100651 /* No command specified - execute shell on a tty. */
Damien Miller21771e22011-05-15 08:45:50 +1000652 tty_flag = options.request_tty != REQUEST_TTY_NO;
Damien Miller832562e2001-01-30 09:30:01 +1100653 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000654 fprintf(stderr,
655 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100656 usage();
657 }
Damien Miller95def091999-11-25 00:26:21 +1100658 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000659 /* A command has been specified. Store it into the buffer. */
660 for (i = 0; i < ac; i++) {
661 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100662 buffer_append(&command, " ", 1);
663 buffer_append(&command, av[i], strlen(av[i]));
664 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000665 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000666
Damien Miller95def091999-11-25 00:26:21 +1100667 /* Cannot fork to background if no command. */
Darren Tuckerd6173c02008-06-13 04:52:53 +1000668 if (fork_after_authentication_flag && buffer_len(&command) == 0 &&
669 !no_shell_flag)
670 fatal("Cannot fork into background without a command "
671 "to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000672
Damien Miller95def091999-11-25 00:26:21 +1100673 /* Allocate a tty by default if no command specified. */
674 if (buffer_len(&command) == 0)
Damien Miller21771e22011-05-15 08:45:50 +1000675 tty_flag = options.request_tty != REQUEST_TTY_NO;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000676
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000677 /* Force no tty */
Damien Miller21771e22011-05-15 08:45:50 +1000678 if (options.request_tty == REQUEST_TTY_NO || muxclient_command != 0)
Ben Lindstromc72745a2000-12-02 19:03:54 +0000679 tty_flag = 0;
Damien Miller95def091999-11-25 00:26:21 +1100680 /* Do not allocate a tty if stdin is not a tty. */
Damien Miller21771e22011-05-15 08:45:50 +1000681 if ((!isatty(fileno(stdin)) || stdin_null_flag) &&
682 options.request_tty != REQUEST_TTY_FORCE) {
Damien Miller95def091999-11-25 00:26:21 +1100683 if (tty_flag)
Darren Tuckerd6173c02008-06-13 04:52:53 +1000684 logit("Pseudo-terminal will not be allocated because "
685 "stdin is not a terminal.");
Damien Miller95def091999-11-25 00:26:21 +1100686 tty_flag = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000687 }
Damien Miller1383bd82000-04-06 12:32:37 +1000688
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000689 /*
690 * Initialize "log" output. Since we are the client all output
691 * actually goes to stderr.
692 */
Darren Tucker72efd742009-06-21 17:48:00 +1000693 log_init(argv0,
Darren Tuckerd6173c02008-06-13 04:52:53 +1000694 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
Damien Millere272a5b2008-11-03 19:22:37 +1100695 SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000696
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000697 /*
698 * Read per-user configuration file. Ignore the system wide config
699 * file if the user specifies a config file on the command line.
700 */
701 if (config != NULL) {
Damien Miller914420f2004-04-20 20:14:07 +1000702 if (!read_config_file(config, host, &options, 0))
Ben Lindstromedc0cf22001-09-12 18:32:20 +0000703 fatal("Can't open user config file %.100s: "
704 "%.100s", config, strerror(errno));
Damien Miller80163902007-01-05 16:30:16 +1100705 } else {
Darren Tucker199b1342009-07-06 07:16:56 +1000706 r = snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir,
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000707 _PATH_SSH_USER_CONFFILE);
Darren Tucker199b1342009-07-06 07:16:56 +1000708 if (r > 0 && (size_t)r < sizeof(buf))
709 (void)read_config_file(buf, host, &options, 1);
Ben Lindstrom83f07d12001-10-03 17:22:29 +0000710
Damien Miller765f8c42011-08-06 06:18:16 +1000711 /* Read systemwide configuration file after user config. */
Darren Tuckerfc959702004-07-17 16:12:08 +1000712 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host,
Damien Miller57a44762004-04-20 20:11:57 +1000713 &options, 0);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000714 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000715
Damien Miller95def091999-11-25 00:26:21 +1100716 /* Fill configuration defaults. */
717 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000718
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000719 channel_set_af(options.address_family);
720
Damien Miller95def091999-11-25 00:26:21 +1100721 /* reinit */
Darren Tucker72efd742009-06-21 17:48:00 +1000722 log_init(argv0, options.log_level, SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000723
Damien Miller60bc5172001-03-19 09:38:15 +1100724 seed_rng();
725
Damien Miller95def091999-11-25 00:26:21 +1100726 if (options.user == NULL)
727 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000728
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000729 /* Get default port if port has not been set. */
730 if (options.port == 0) {
731 sp = getservbyname(SSH_SERVICE_NAME, "tcp");
732 options.port = sp ? ntohs(sp->s_port) : SSH_DEFAULT_PORT;
733 }
734
Damien Miller83f8a402011-01-07 09:51:17 +1100735 /* preserve host name given on command line for %n expansion */
736 host_arg = host;
Damien Millerd0244d42010-07-16 13:56:43 +1000737 if (options.hostname != NULL) {
738 host = percent_expand(options.hostname,
739 "h", host, (char *)NULL);
740 }
741
Damien Millerdfc85fa2011-05-15 08:44:02 +1000742 if (gethostname(thishost, sizeof(thishost)) == -1)
743 fatal("gethostname: %s", strerror(errno));
744 strlcpy(shorthost, thishost, sizeof(shorthost));
745 shorthost[strcspn(thishost, ".")] = '\0';
746 snprintf(portstr, sizeof(portstr), "%d", options.port);
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000747
Damien Millerdfc85fa2011-05-15 08:44:02 +1000748 if (options.local_command != NULL) {
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000749 debug3("expanding LocalCommand: %s", options.local_command);
750 cp = options.local_command;
751 options.local_command = percent_expand(cp, "d", pw->pw_dir,
Damien Miller83f8a402011-01-07 09:51:17 +1100752 "h", host, "l", thishost, "n", host_arg, "r", options.user,
Damien Millerdfc85fa2011-05-15 08:44:02 +1000753 "p", portstr, "u", pw->pw_name, "L", shorthost,
754 (char *)NULL);
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000755 debug3("expanded LocalCommand: %s", options.local_command);
756 xfree(cp);
757 }
758
Darren Tucker3f521e22003-07-03 16:20:42 +1000759 /* force lowercase for hostkey matching */
760 if (options.host_key_alias != NULL) {
761 for (p = options.host_key_alias; *p; p++)
762 if (isupper(*p))
Damien Miller1d2b6702006-03-26 14:09:54 +1100763 *p = (char)tolower(*p);
Darren Tucker3f521e22003-07-03 16:20:42 +1000764 }
765
Damien Miller9f1e33a2003-02-24 11:57:32 +1100766 if (options.proxy_command != NULL &&
Darren Tucker32e42c72007-12-02 23:01:03 +1100767 strcmp(options.proxy_command, "none") == 0) {
768 xfree(options.proxy_command);
Damien Miller9f1e33a2003-02-24 11:57:32 +1100769 options.proxy_command = NULL;
Darren Tucker32e42c72007-12-02 23:01:03 +1100770 }
Damien Miller8f74c8f2005-06-26 08:56:03 +1000771 if (options.control_path != NULL &&
Darren Tucker32e42c72007-12-02 23:01:03 +1100772 strcmp(options.control_path, "none") == 0) {
773 xfree(options.control_path);
Damien Miller8f74c8f2005-06-26 08:56:03 +1000774 options.control_path = NULL;
Darren Tucker32e42c72007-12-02 23:01:03 +1100775 }
Damien Miller9f1e33a2003-02-24 11:57:32 +1100776
Damien Miller0e220db2004-06-15 10:34:08 +1000777 if (options.control_path != NULL) {
Damien Miller6476cad2005-06-16 13:18:34 +1000778 cp = tilde_expand_filename(options.control_path,
779 original_real_uid);
Darren Tucker32e42c72007-12-02 23:01:03 +1100780 xfree(options.control_path);
Damien Millerdfc85fa2011-05-15 08:44:02 +1000781 options.control_path = percent_expand(cp, "h", host,
782 "l", thishost, "n", host_arg, "r", options.user,
783 "p", portstr, "u", pw->pw_name, "L", shorthost,
784 (char *)NULL);
Damien Miller6476cad2005-06-16 13:18:34 +1000785 xfree(cp);
Damien Miller0e220db2004-06-15 10:34:08 +1000786 }
Damien Millerb1cbfa22008-05-19 16:00:08 +1000787 if (muxclient_command != 0 && options.control_path == NULL)
Darren Tucker0814d312005-06-01 23:08:51 +1000788 fatal("No ControlPath specified for \"-O\" command");
Damien Millerd14b1e72005-06-16 13:19:41 +1000789 if (options.control_path != NULL)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000790 muxclient(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +1000791
Damien Miller67bd0622007-09-17 12:06:57 +1000792 timeout_ms = options.connection_timeout * 1000;
793
Kevin Stevesfcec7f82000-12-15 19:55:48 +0000794 /* Open a connection to the remote host. */
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000795 if (ssh_connect(host, &hostaddr, options.port,
Damien Miller67bd0622007-09-17 12:06:57 +1000796 options.address_family, options.connection_attempts, &timeout_ms,
797 options.tcp_keep_alive,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000798#ifdef HAVE_CYGWIN
799 options.use_privileged_port,
800#else
Ben Lindstromf9c48842002-06-11 16:37:51 +0000801 original_effective_uid == 0 && options.use_privileged_port,
Ben Lindstrom1aa64272002-06-11 20:28:05 +0000802#endif
Ben Lindstromda394ca2002-06-12 16:11:12 +0000803 options.proxy_command) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100804 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000805
Damien Miller67bd0622007-09-17 12:06:57 +1000806 if (timeout_ms > 0)
807 debug3("timeout: %d ms remain after connect", timeout_ms);
808
Damien Miller5428f641999-11-25 11:54:57 +1100809 /*
810 * If we successfully made the connection, load the host private key
811 * in case we will need it later for combined rsa-rhosts
812 * authentication. This must be done before releasing extra
813 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +0000814 * If we cannot access the private keys, load the public keys
815 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +1100816 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000817 sensitive_data.nkeys = 0;
818 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000819 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +0000820 if (options.rhosts_rsa_authentication ||
821 options.hostbased_authentication) {
Damien Millereb8b60e2010-08-31 22:41:14 +1000822 sensitive_data.nkeys = 7;
Damien Millerddd63ab2006-03-31 23:10:51 +1100823 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000824 sizeof(Key));
Damien Miller6af914a2010-09-10 11:39:26 +1000825 for (i = 0; i < sensitive_data.nkeys; i++)
826 sensitive_data.keys[i] = NULL;
Ben Lindstromf9c48842002-06-11 16:37:51 +0000827
828 PRIV_START;
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000829 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Darren Tucker232b76f2006-05-06 17:41:51 +1000830 _PATH_HOST_KEY_FILE, "", NULL, NULL);
Damien Millerc1583312010-08-05 13:04:50 +1000831 sensitive_data.keys[1] = key_load_private_cert(KEY_DSA,
832 _PATH_HOST_DSA_KEY_FILE, "", NULL);
Damien Miller6af914a2010-09-10 11:39:26 +1000833#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000834 sensitive_data.keys[2] = key_load_private_cert(KEY_ECDSA,
835 _PATH_HOST_ECDSA_KEY_FILE, "", NULL);
Damien Miller6af914a2010-09-10 11:39:26 +1000836#endif
Damien Millereb8b60e2010-08-31 22:41:14 +1000837 sensitive_data.keys[3] = key_load_private_cert(KEY_RSA,
Damien Millerc1583312010-08-05 13:04:50 +1000838 _PATH_HOST_RSA_KEY_FILE, "", NULL);
Damien Millereb8b60e2010-08-31 22:41:14 +1000839 sensitive_data.keys[4] = key_load_private_type(KEY_DSA,
Darren Tucker232b76f2006-05-06 17:41:51 +1000840 _PATH_HOST_DSA_KEY_FILE, "", NULL, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +1000841#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +1000842 sensitive_data.keys[5] = key_load_private_type(KEY_ECDSA,
843 _PATH_HOST_ECDSA_KEY_FILE, "", NULL, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +1000844#endif
Damien Millereb8b60e2010-08-31 22:41:14 +1000845 sensitive_data.keys[6] = key_load_private_type(KEY_RSA,
Darren Tucker232b76f2006-05-06 17:41:51 +1000846 _PATH_HOST_RSA_KEY_FILE, "", NULL, NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +0000847 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000848
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +0000849 if (options.hostbased_authentication == 1 &&
850 sensitive_data.keys[0] == NULL &&
Damien Millereb8b60e2010-08-31 22:41:14 +1000851 sensitive_data.keys[4] == NULL &&
852 sensitive_data.keys[5] == NULL &&
853 sensitive_data.keys[6] == NULL) {
Damien Millerc1583312010-08-05 13:04:50 +1000854 sensitive_data.keys[1] = key_load_cert(
855 _PATH_HOST_DSA_KEY_FILE);
Damien Miller6af914a2010-09-10 11:39:26 +1000856#ifdef OPENSSL_HAS_ECC
Damien Millerc1583312010-08-05 13:04:50 +1000857 sensitive_data.keys[2] = key_load_cert(
Damien Millereb8b60e2010-08-31 22:41:14 +1000858 _PATH_HOST_ECDSA_KEY_FILE);
Damien Miller6af914a2010-09-10 11:39:26 +1000859#endif
Damien Millereb8b60e2010-08-31 22:41:14 +1000860 sensitive_data.keys[3] = key_load_cert(
Damien Millerc1583312010-08-05 13:04:50 +1000861 _PATH_HOST_RSA_KEY_FILE);
Damien Millerc1583312010-08-05 13:04:50 +1000862 sensitive_data.keys[4] = key_load_public(
Damien Millereb8b60e2010-08-31 22:41:14 +1000863 _PATH_HOST_DSA_KEY_FILE, 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_public(
866 _PATH_HOST_ECDSA_KEY_FILE, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +1000867#endif
Damien Millereb8b60e2010-08-31 22:41:14 +1000868 sensitive_data.keys[6] = key_load_public(
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000869 _PATH_HOST_RSA_KEY_FILE, NULL);
870 sensitive_data.external_keysign = 1;
871 }
Damien Miller95def091999-11-25 00:26:21 +1100872 }
Damien Miller5428f641999-11-25 11:54:57 +1100873 /*
874 * Get rid of any extra privileges that we may have. We will no
875 * longer need them. Also, extra privileges could make it very hard
876 * to read identity files and other non-world-readable files from the
877 * user's home directory if it happens to be on a NFS volume where
878 * root is mapped to nobody.
879 */
Darren Tucker25f60a72004-08-15 17:23:34 +1000880 if (original_effective_uid == 0) {
881 PRIV_START;
882 permanently_set_uid(pw);
883 }
Damien Miller95def091999-11-25 00:26:21 +1100884
Damien Miller5428f641999-11-25 11:54:57 +1100885 /*
886 * Now that we are back to our own permissions, create ~/.ssh
Damien Miller788f2122005-11-05 15:14:59 +1100887 * directory if it doesn't already exist.
Damien Miller5428f641999-11-25 11:54:57 +1100888 */
Darren Tucker45c66d72011-11-04 10:50:40 +1100889 if (config == NULL) {
890 r = snprintf(buf, sizeof buf, "%s%s%s", pw->pw_dir,
891 strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
892 if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) < 0) {
Darren Tucker8ccb7392010-09-10 12:28:24 +1000893#ifdef WITH_SELINUX
Darren Tucker45c66d72011-11-04 10:50:40 +1100894 ssh_selinux_setfscreatecon(buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +1000895#endif
Darren Tucker45c66d72011-11-04 10:50:40 +1100896 if (mkdir(buf, 0700) < 0)
897 error("Could not create directory '%.200s'.",
898 buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +1000899#ifdef WITH_SELINUX
Darren Tucker45c66d72011-11-04 10:50:40 +1100900 ssh_selinux_setfscreatecon(NULL);
Darren Tucker8ccb7392010-09-10 12:28:24 +1000901#endif
Darren Tucker45c66d72011-11-04 10:50:40 +1100902 }
Darren Tucker8ccb7392010-09-10 12:28:24 +1000903 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +0000904 /* load options.identity_files */
905 load_public_identity_files();
906
907 /* Expand ~ in known host file names. */
Damien Miller295ee632011-05-29 21:42:31 +1000908 tilde_expand_paths(options.system_hostfiles,
909 options.num_system_hostfiles);
910 tilde_expand_paths(options.user_hostfiles, options.num_user_hostfiles);
Damien Miller95def091999-11-25 00:26:21 +1100911
Damien Miller07cd5892001-11-12 10:52:03 +1100912 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
Damien Miller857b02e2010-09-24 22:02:56 +1000913 signal(SIGCHLD, main_sigchld_handler);
Damien Miller07cd5892001-11-12 10:52:03 +1100914
Darren Tuckerd6173c02008-06-13 04:52:53 +1000915 /* Log into the remote system. Never returns if the login fails. */
Damien Miller67bd0622007-09-17 12:06:57 +1000916 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr,
Damien Millerd925dcd2010-12-01 12:21:51 +1100917 options.port, pw, timeout_ms);
Damien Miller95def091999-11-25 00:26:21 +1100918
Damien Miller383ffe62010-06-26 10:02:03 +1000919 if (packet_connection_is_on_socket()) {
920 verbose("Authenticated to %s ([%s]:%d).", host,
921 get_remote_ipaddr(), get_remote_port());
922 } else {
923 verbose("Authenticated to %s (via proxy).", host);
924 }
925
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000926 /* We no longer need the private host keys. Clear them now. */
927 if (sensitive_data.nkeys != 0) {
928 for (i = 0; i < sensitive_data.nkeys; i++) {
929 if (sensitive_data.keys[i] != NULL) {
930 /* Destroys contents safely */
931 debug3("clear hostkey %d", i);
932 key_free(sensitive_data.keys[i]);
933 sensitive_data.keys[i] = NULL;
934 }
935 }
936 xfree(sensitive_data.keys);
937 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +0000938 for (i = 0; i < options.num_identity_files; i++) {
939 if (options.identity_files[i]) {
940 xfree(options.identity_files[i]);
941 options.identity_files[i] = NULL;
942 }
943 if (options.identity_keys[i]) {
944 key_free(options.identity_keys[i]);
945 options.identity_keys[i] = NULL;
946 }
947 }
Damien Miller95def091999-11-25 00:26:21 +1100948
Damien Miller1383bd82000-04-06 12:32:37 +1000949 exit_status = compat20 ? ssh_session2() : ssh_session();
950 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +1000951
Damien Millerb1cbfa22008-05-19 16:00:08 +1000952 if (options.control_path != NULL && muxserver_sock != -1)
Damien Miller0e220db2004-06-15 10:34:08 +1000953 unlink(options.control_path);
954
Damien Millera41ccca2010-10-07 22:07:32 +1100955 /* Kill ProxyCommand if it is running. */
956 ssh_kill_proxy_command();
Damien Miller8c4e18a2002-09-19 12:05:02 +1000957
Damien Miller1383bd82000-04-06 12:32:37 +1000958 return exit_status;
959}
960
Damien Millere11e1ea2010-08-03 16:04:46 +1000961static void
962control_persist_detach(void)
963{
964 pid_t pid;
Damien Miller00d9ae22010-08-17 01:59:31 +1000965 int devnull;
Damien Millere11e1ea2010-08-03 16:04:46 +1000966
967 debug("%s: backgrounding master process", __func__);
968
969 /*
970 * master (current process) into the background, and make the
971 * foreground process a client of the backgrounded master.
972 */
973 switch ((pid = fork())) {
974 case -1:
975 fatal("%s: fork: %s", __func__, strerror(errno));
976 case 0:
977 /* Child: master process continues mainloop */
978 break;
979 default:
980 /* Parent: set up mux slave to connect to backgrounded master */
981 debug2("%s: background process is %ld", __func__, (long)pid);
982 stdin_null_flag = ostdin_null_flag;
Damien Miller21771e22011-05-15 08:45:50 +1000983 options.request_tty = orequest_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +1000984 tty_flag = otty_flag;
985 close(muxserver_sock);
986 muxserver_sock = -1;
Damien Miller5929c522010-09-10 11:17:02 +1000987 options.control_master = SSHCTL_MASTER_NO;
Damien Millere11e1ea2010-08-03 16:04:46 +1000988 muxclient(options.control_path);
989 /* muxclient() doesn't return on success. */
990 fatal("Failed to connect to new control master");
991 }
Damien Miller00d9ae22010-08-17 01:59:31 +1000992 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
993 error("%s: open(\"/dev/null\"): %s", __func__,
994 strerror(errno));
995 } else {
996 if (dup2(devnull, STDIN_FILENO) == -1 ||
997 dup2(devnull, STDOUT_FILENO) == -1)
998 error("%s: dup2: %s", __func__, strerror(errno));
999 if (devnull > STDERR_FILENO)
1000 close(devnull);
1001 }
Damien Millerea2c1a42011-06-03 12:10:22 +10001002 setproctitle("%s [mux]", options.control_path);
Damien Millere11e1ea2010-08-03 16:04:46 +10001003}
1004
1005/* Do fork() after authentication. Used by "ssh -f" */
1006static void
1007fork_postauth(void)
1008{
1009 if (need_controlpersist_detach)
1010 control_persist_detach();
1011 debug("forking to background");
1012 fork_after_authentication_flag = 0;
1013 if (daemon(1, 1) < 0)
1014 fatal("daemon() failed: %.200s", strerror(errno));
1015}
1016
Darren Tucker9f407c42008-06-13 04:50:27 +10001017/* Callback for remote forward global requests */
1018static void
1019ssh_confirm_remote_forward(int type, u_int32_t seq, void *ctxt)
1020{
1021 Forward *rfwd = (Forward *)ctxt;
1022
Damien Miller4bf648f2009-02-14 16:28:21 +11001023 /* XXX verbose() on failure? */
Darren Tucker9f407c42008-06-13 04:50:27 +10001024 debug("remote forward %s for: listen %d, connect %s:%d",
1025 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
1026 rfwd->listen_port, rfwd->connect_host, rfwd->connect_port);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001027 if (rfwd->listen_port == 0) {
1028 if (type == SSH2_MSG_REQUEST_SUCCESS) {
1029 rfwd->allocated_port = packet_get_int();
1030 logit("Allocated port %u for remote forward to %s:%d",
1031 rfwd->allocated_port,
1032 rfwd->connect_host, rfwd->connect_port);
1033 channel_update_permitted_opens(rfwd->handle,
1034 rfwd->allocated_port);
1035 } else {
1036 channel_update_permitted_opens(rfwd->handle, -1);
1037 }
Damien Miller4bf648f2009-02-14 16:28:21 +11001038 }
1039
Darren Tucker9f407c42008-06-13 04:50:27 +10001040 if (type == SSH2_MSG_REQUEST_FAILURE) {
1041 if (options.exit_on_forward_failure)
1042 fatal("Error: remote port forwarding failed for "
1043 "listen port %d", rfwd->listen_port);
1044 else
1045 logit("Warning: remote port forwarding failed for "
1046 "listen port %d", rfwd->listen_port);
1047 }
Darren Tucker9a2a6092008-07-04 12:53:50 +10001048 if (++remote_forward_confirms_received == options.num_remote_forwards) {
Darren Tucker9f407c42008-06-13 04:50:27 +10001049 debug("All remote forwarding requests processed");
Damien Millere11e1ea2010-08-03 16:04:46 +10001050 if (fork_after_authentication_flag)
1051 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001052 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001053}
1054
Ben Lindstrombba81212001-06-25 05:01:22 +00001055static void
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001056client_cleanup_stdio_fwd(int id, void *arg)
1057{
1058 debug("stdio forwarding: done");
1059 cleanup_exit(0);
1060}
1061
Darren Tucker2d6665d2011-11-04 10:54:22 +11001062static void
1063ssh_init_stdio_forwarding(void)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001064{
1065 Channel *c;
Damien Millere1537f92010-01-26 13:26:22 +11001066 int in, out;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001067
Darren Tucker2d6665d2011-11-04 10:54:22 +11001068 if (stdio_forward_host == NULL)
1069 return;
1070 if (!compat20)
1071 fatal("stdio forwarding require Protocol 2");
Damien Millere1537f92010-01-26 13:26:22 +11001072
Darren Tucker2d6665d2011-11-04 10:54:22 +11001073 debug3("%s: %s:%d", __func__, stdio_forward_host, stdio_forward_port);
1074
1075 if ((in = dup(STDIN_FILENO)) < 0 ||
1076 (out = dup(STDOUT_FILENO)) < 0)
Damien Millere1537f92010-01-26 13:26:22 +11001077 fatal("channel_connect_stdio_fwd: dup() in/out failed");
Darren Tucker2d6665d2011-11-04 10:54:22 +11001078 if ((c = channel_connect_stdio_fwd(stdio_forward_host,
1079 stdio_forward_port, in, out)) == NULL)
1080 fatal("%s: channel_connect_stdio_fwd failed", __func__);
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001081 channel_register_cleanup(c->self, client_cleanup_stdio_fwd, 0);
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001082}
1083
1084static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001085ssh_init_forwarding(void)
1086{
Kevin Steves12057502001-02-05 14:54:34 +00001087 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001088 int i;
Kevin Steves12057502001-02-05 14:54:34 +00001089
Damien Miller0bc1bd82000-11-13 22:57:25 +11001090 /* Initiate local TCP/IP port forwardings. */
1091 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001092 debug("Local connections to %.200s:%d forwarded to remote "
1093 "address %.200s:%d",
Darren Tucker47eede72005-03-14 23:08:12 +11001094 (options.local_forwards[i].listen_host == NULL) ?
1095 (options.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001096 options.local_forwards[i].listen_host,
1097 options.local_forwards[i].listen_port,
1098 options.local_forwards[i].connect_host,
1099 options.local_forwards[i].connect_port);
Damien Millerb16461c2002-01-22 23:29:22 +11001100 success += channel_setup_local_fwd_listener(
Damien Millerf91ee4c2005-03-01 21:24:33 +11001101 options.local_forwards[i].listen_host,
1102 options.local_forwards[i].listen_port,
1103 options.local_forwards[i].connect_host,
1104 options.local_forwards[i].connect_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11001105 options.gateway_ports);
1106 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10001107 if (i > 0 && success != i && options.exit_on_forward_failure)
1108 fatal("Could not request local forwarding.");
Kevin Steves12057502001-02-05 14:54:34 +00001109 if (i > 0 && success == 0)
1110 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001111
1112 /* Initiate remote TCP/IP port forwardings. */
1113 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001114 debug("Remote connections from %.200s:%d forwarded to "
1115 "local address %.200s:%d",
Damien Miller46d38de2005-07-17 17:02:09 +10001116 (options.remote_forwards[i].listen_host == NULL) ?
Damien Milleraa3bb102005-11-05 15:12:59 +11001117 "LOCALHOST" : options.remote_forwards[i].listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +11001118 options.remote_forwards[i].listen_port,
1119 options.remote_forwards[i].connect_host,
1120 options.remote_forwards[i].connect_port);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001121 options.remote_forwards[i].handle =
1122 channel_request_remote_forwarding(
Damien Millerf91ee4c2005-03-01 21:24:33 +11001123 options.remote_forwards[i].listen_host,
1124 options.remote_forwards[i].listen_port,
1125 options.remote_forwards[i].connect_host,
Darren Tucker68afb8c2011-10-02 18:59:03 +11001126 options.remote_forwards[i].connect_port);
1127 if (options.remote_forwards[i].handle < 0) {
Darren Tuckere7d4b192006-07-12 22:17:10 +10001128 if (options.exit_on_forward_failure)
1129 fatal("Could not request remote forwarding.");
1130 else
1131 logit("Warning: Could not request remote "
1132 "forwarding.");
Darren Tucker68afb8c2011-10-02 18:59:03 +11001133 } else {
1134 client_register_global_confirm(ssh_confirm_remote_forward,
1135 &options.remote_forwards[i]);
Darren Tuckere7d4b192006-07-12 22:17:10 +10001136 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001137 }
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001138
1139 /* Initiate tunnel forwarding. */
1140 if (options.tun_open != SSH_TUNMODE_NO) {
1141 if (client_request_tun_fwd(options.tun_open,
1142 options.tun_local, options.tun_remote) == -1) {
1143 if (options.exit_on_forward_failure)
1144 fatal("Could not request tunnel forwarding.");
1145 else
1146 error("Could not request tunnel forwarding.");
1147 }
1148 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001149}
1150
Ben Lindstrombba81212001-06-25 05:01:22 +00001151static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001152check_agent_present(void)
1153{
1154 if (options.forward_agent) {
Damien Miller788f2122005-11-05 15:14:59 +11001155 /* Clear agent forwarding if we don't have an agent. */
Damien Miller789e95d2002-09-12 09:52:46 +10001156 if (!ssh_agent_present())
Damien Miller0bc1bd82000-11-13 22:57:25 +11001157 options.forward_agent = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001158 }
1159}
1160
Ben Lindstrombba81212001-06-25 05:01:22 +00001161static int
Damien Miller1383bd82000-04-06 12:32:37 +10001162ssh_session(void)
1163{
1164 int type;
Damien Miller1383bd82000-04-06 12:32:37 +10001165 int interactive = 0;
1166 int have_tty = 0;
1167 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +10001168 char *cp;
Damien Miller17e7ed02005-06-17 12:54:33 +10001169 const char *display;
Damien Miller1383bd82000-04-06 12:32:37 +10001170
Damien Miller95def091999-11-25 00:26:21 +11001171 /* Enable compression if requested. */
1172 if (options.compression) {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001173 debug("Requesting compression at level %d.",
1174 options.compression_level);
Damien Miller95def091999-11-25 00:26:21 +11001175
Darren Tuckerd6173c02008-06-13 04:52:53 +10001176 if (options.compression_level < 1 ||
1177 options.compression_level > 9)
1178 fatal("Compression level must be from 1 (fast) to "
1179 "9 (slow, best).");
Damien Miller95def091999-11-25 00:26:21 +11001180
1181 /* Send the request. */
1182 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
1183 packet_put_int(options.compression_level);
1184 packet_send();
1185 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +11001186 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001187 if (type == SSH_SMSG_SUCCESS)
1188 packet_start_compression(options.compression_level);
1189 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +10001190 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +11001191 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001192 packet_disconnect("Protocol error waiting for "
1193 "compression response.");
Damien Miller95def091999-11-25 00:26:21 +11001194 }
1195 /* Allocate a pseudo tty if appropriate. */
1196 if (tty_flag) {
1197 debug("Requesting pty.");
1198
1199 /* Start the packet. */
1200 packet_start(SSH_CMSG_REQUEST_PTY);
1201
1202 /* Store TERM in the packet. There is no limit on the
1203 length of the string. */
1204 cp = getenv("TERM");
1205 if (!cp)
1206 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +00001207 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +11001208
1209 /* Store window size in the packet. */
1210 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1211 memset(&ws, 0, sizeof(ws));
Damien Miller71a73672006-03-26 14:04:36 +11001212 packet_put_int((u_int)ws.ws_row);
1213 packet_put_int((u_int)ws.ws_col);
1214 packet_put_int((u_int)ws.ws_xpixel);
1215 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller95def091999-11-25 00:26:21 +11001216
1217 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001218 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +11001219
1220 /* Send the packet, and wait for it to leave. */
1221 packet_send();
1222 packet_write_wait();
1223
1224 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001225 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +10001226 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001227 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001228 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +10001229 } else if (type == SSH_SMSG_FAILURE)
Darren Tuckerd6173c02008-06-13 04:52:53 +10001230 logit("Warning: Remote host failed or refused to "
1231 "allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +11001232 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001233 packet_disconnect("Protocol error waiting for pty "
1234 "request response.");
Damien Miller95def091999-11-25 00:26:21 +11001235 }
1236 /* Request X11 forwarding if enabled and DISPLAY is set. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001237 display = getenv("DISPLAY");
1238 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001239 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001240 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001241 client_x11_get_proto(display, options.xauth_location,
Damien Miller1ab6a512010-06-26 10:02:24 +10001242 options.forward_x11_trusted,
1243 options.forward_x11_timeout,
1244 &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001245 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001246 debug("Requesting X11 forwarding with authentication "
1247 "spoofing.");
Damien Miller6d7b4372011-06-23 08:31:57 +10001248 x11_request_forwarding_with_spoofing(0, display, proto,
1249 data, 0);
Damien Miller95def091999-11-25 00:26:21 +11001250 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001251 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001252 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001253 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001254 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +10001255 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +10001256 } else {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001257 packet_disconnect("Protocol error waiting for X11 "
1258 "forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +10001259 }
Damien Miller95def091999-11-25 00:26:21 +11001260 }
1261 /* Tell the packet module whether this is an interactive session. */
Damien Miller0dac6fb2010-11-20 15:19:38 +11001262 packet_set_interactive(interactive,
1263 options.ip_qos_interactive, options.ip_qos_bulk);
Damien Miller95def091999-11-25 00:26:21 +11001264
1265 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001266 check_agent_present();
1267
Damien Miller95def091999-11-25 00:26:21 +11001268 if (options.forward_agent) {
1269 debug("Requesting authentication agent forwarding.");
1270 auth_request_forwarding();
1271
1272 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001273 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +11001274 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11001275 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +10001276 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +11001277 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001278
Damien Miller0bc1bd82000-11-13 22:57:25 +11001279 /* Initiate port forwardings. */
Darren Tucker2d6665d2011-11-04 10:54:22 +11001280 ssh_init_stdio_forwarding();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001281 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001282
Darren Tuckerb776c852007-12-02 23:06:35 +11001283 /* Execute a local command */
1284 if (options.local_command != NULL &&
1285 options.permit_local_command)
1286 ssh_local_cmd(options.local_command);
1287
Darren Tucker9a2a6092008-07-04 12:53:50 +10001288 /*
1289 * If requested and we are not interested in replies to remote
1290 * forwarding requests, then let ssh continue in the background.
1291 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001292 if (fork_after_authentication_flag) {
1293 if (options.exit_on_forward_failure &&
1294 options.num_remote_forwards > 0) {
1295 debug("deferring postauth fork until remote forward "
1296 "confirmation received");
1297 } else
1298 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001299 }
Damien Miller5428f641999-11-25 11:54:57 +11001300
1301 /*
1302 * If a command was specified on the command line, execute the
1303 * command now. Otherwise request the server to start a shell.
1304 */
Damien Miller95def091999-11-25 00:26:21 +11001305 if (buffer_len(&command) > 0) {
1306 int len = buffer_len(&command);
1307 if (len > 900)
1308 len = 900;
Darren Tuckerd6173c02008-06-13 04:52:53 +10001309 debug("Sending command: %.*s", len,
1310 (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +11001311 packet_start(SSH_CMSG_EXEC_CMD);
1312 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1313 packet_send();
1314 packet_write_wait();
1315 } else {
1316 debug("Requesting shell.");
1317 packet_start(SSH_CMSG_EXEC_SHELL);
1318 packet_send();
1319 packet_write_wait();
1320 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001321
Damien Miller95def091999-11-25 00:26:21 +11001322 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001323 return client_loop(have_tty, tty_flag ?
1324 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +10001325}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001326
Ben Lindstromf558cf62001-09-20 23:13:49 +00001327/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001328static void
Damien Millerd530f5f2010-05-21 14:57:10 +10001329ssh_session2_setup(int id, int success, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001330{
Damien Miller3756dce2004-06-18 01:17:29 +10001331 extern char **environ;
Damien Miller17e7ed02005-06-17 12:54:33 +10001332 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +10001333 int interactive = tty_flag;
Damien Miller17e7ed02005-06-17 12:54:33 +10001334
Damien Millerd530f5f2010-05-21 14:57:10 +10001335 if (!success)
1336 return; /* No need for error message, channels code sens one */
1337
Damien Miller46d38de2005-07-17 17:02:09 +10001338 display = getenv("DISPLAY");
Damien Miller17e7ed02005-06-17 12:54:33 +10001339 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001340 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001341 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001342 client_x11_get_proto(display, options.xauth_location,
Damien Miller1ab6a512010-06-26 10:02:24 +10001343 options.forward_x11_trusted,
1344 options.forward_x11_timeout, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001345 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001346 debug("Requesting X11 forwarding with authentication "
1347 "spoofing.");
Damien Miller6d7b4372011-06-23 08:31:57 +10001348 x11_request_forwarding_with_spoofing(id, display, proto,
1349 data, 1);
1350 client_expect_confirm(id, "X11 forwarding", CONFIRM_WARN);
1351 /* XXX exit_on_forward_failure */
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001352 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001353 }
1354
Damien Miller0bc1bd82000-11-13 22:57:25 +11001355 check_agent_present();
1356 if (options.forward_agent) {
1357 debug("Requesting authentication agent forwarding.");
1358 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1359 packet_send();
1360 }
1361
Damien Miller0e220db2004-06-15 10:34:08 +10001362 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
Damien Miller5771ed72008-05-19 15:35:33 +10001363 NULL, fileno(stdin), &command, environ);
Damien Miller1383bd82000-04-06 12:32:37 +10001364}
1365
Ben Lindstromf558cf62001-09-20 23:13:49 +00001366/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001367static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001368ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001369{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001370 Channel *c;
1371 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001372
Damien Millercaf6dd62000-08-29 11:33:50 +11001373 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001374 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001375 } else {
1376 in = dup(STDIN_FILENO);
1377 }
1378 out = dup(STDOUT_FILENO);
1379 err = dup(STDERR_FILENO);
1380
1381 if (in < 0 || out < 0 || err < 0)
1382 fatal("dup() in/out/err failed");
1383
Damien Miller69b69aa2000-10-28 14:19:58 +11001384 /* enable nonblocking unless tty */
1385 if (!isatty(in))
1386 set_nonblock(in);
1387 if (!isatty(out))
1388 set_nonblock(out);
1389 if (!isatty(err))
1390 set_nonblock(err);
1391
Damien Millere4340be2000-09-16 13:29:08 +11001392 window = CHAN_SES_WINDOW_DEFAULT;
1393 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001394 if (tty_flag) {
1395 window >>= 1;
1396 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001397 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001398 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001399 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001400 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001401 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001402
Ben Lindstromf558cf62001-09-20 23:13:49 +00001403 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001404
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001405 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001406 if (!no_shell_flag)
Damien Millerb84886b2008-05-19 15:05:07 +10001407 channel_register_open_confirm(c->self,
1408 ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001409
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001410 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001411}
1412
Ben Lindstrombba81212001-06-25 05:01:22 +00001413static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001414ssh_session2(void)
1415{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001416 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001417
1418 /* XXX should be pre-session */
Darren Tucker2d6665d2011-11-04 10:54:22 +11001419 if (!options.control_persist)
1420 ssh_init_stdio_forwarding();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001421 ssh_init_forwarding();
1422
Damien Millere11e1ea2010-08-03 16:04:46 +10001423 /* Start listening for multiplex clients */
1424 muxserver_listen();
1425
1426 /*
Darren Tucker2d6665d2011-11-04 10:54:22 +11001427 * If we are in control persist mode and have a working mux listen
1428 * socket, then prepare to background ourselves and have a foreground
1429 * client attach as a control slave.
1430 * NB. we must save copies of the flags that we override for
Damien Millere11e1ea2010-08-03 16:04:46 +10001431 * the backgrounding, since we defer attachment of the slave until
1432 * after the connection is fully established (in particular,
1433 * async rfwd replies have been received for ExitOnForwardFailure).
1434 */
1435 if (options.control_persist && muxserver_sock != -1) {
1436 ostdin_null_flag = stdin_null_flag;
1437 ono_shell_flag = no_shell_flag;
Damien Miller21771e22011-05-15 08:45:50 +10001438 orequest_tty = options.request_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +10001439 otty_flag = tty_flag;
1440 stdin_null_flag = 1;
1441 no_shell_flag = 1;
Damien Millere11e1ea2010-08-03 16:04:46 +10001442 tty_flag = 0;
1443 if (!fork_after_authentication_flag)
1444 need_controlpersist_detach = 1;
1445 fork_after_authentication_flag = 1;
1446 }
Darren Tucker2d6665d2011-11-04 10:54:22 +11001447 /*
1448 * ControlPersist mux listen socket setup failed, attempt the
1449 * stdio forward setup that we skipped earlier.
1450 */
1451 if (options.control_persist && muxserver_sock == -1)
1452 ssh_init_stdio_forwarding();
Damien Millere11e1ea2010-08-03 16:04:46 +10001453
Ben Lindstromf558cf62001-09-20 23:13:49 +00001454 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1455 id = ssh_session2_open();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001456
Darren Tucker8901fa92008-06-11 09:34:01 +10001457 /* If we don't expect to open a new session, then disallow it */
Damien Miller456e6f02008-11-03 19:20:10 +11001458 if (options.control_master == SSHCTL_MASTER_NO &&
1459 (datafellows & SSH_NEW_OPENSSH)) {
Darren Tucker8901fa92008-06-11 09:34:01 +10001460 debug("Requesting no-more-sessions@openssh.com");
1461 packet_start(SSH2_MSG_GLOBAL_REQUEST);
1462 packet_put_cstring("no-more-sessions@openssh.com");
1463 packet_put_char(0);
1464 packet_send();
1465 }
1466
Damien Millerd27b9472005-12-13 19:29:02 +11001467 /* Execute a local command */
1468 if (options.local_command != NULL &&
1469 options.permit_local_command)
1470 ssh_local_cmd(options.local_command);
1471
Damien Miller1f25ab42010-07-16 13:56:23 +10001472 /*
1473 * If requested and we are not interested in replies to remote
1474 * forwarding requests, then let ssh continue in the background.
1475 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001476 if (fork_after_authentication_flag) {
1477 if (options.exit_on_forward_failure &&
1478 options.num_remote_forwards > 0) {
1479 debug("deferring postauth fork until remote forward "
1480 "confirmation received");
1481 } else
1482 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001483 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001484
Darren Tuckerf1de4e52010-01-08 16:54:59 +11001485 if (options.use_roaming)
1486 request_roaming();
1487
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001488 return client_loop(tty_flag, tty_flag ?
1489 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001490}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001491
Ben Lindstrombba81212001-06-25 05:01:22 +00001492static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001493load_public_identity_files(void)
1494{
Damien Miller6b1d53c2006-03-31 23:13:21 +11001495 char *filename, *cp, thishost[NI_MAXHOST];
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001496 char *pwdir = NULL, *pwname = NULL;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001497 int i = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001498 Key *public;
Damien Miller6b1d53c2006-03-31 23:13:21 +11001499 struct passwd *pw;
Damien Miller0a80ca12010-02-27 07:55:05 +11001500 u_int n_ids;
1501 char *identity_files[SSH_MAX_IDENTITY_FILES];
1502 Key *identity_keys[SSH_MAX_IDENTITY_FILES];
Damien Miller7ea845e2010-02-12 09:21:02 +11001503#ifdef ENABLE_PKCS11
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001504 Key **keys;
Damien Miller7ea845e2010-02-12 09:21:02 +11001505 int nkeys;
Damien Miller0a80ca12010-02-27 07:55:05 +11001506#endif /* PKCS11 */
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001507
Damien Miller0a80ca12010-02-27 07:55:05 +11001508 n_ids = 0;
1509 bzero(identity_files, sizeof(identity_files));
1510 bzero(identity_keys, sizeof(identity_keys));
1511
1512#ifdef ENABLE_PKCS11
Damien Miller7ea845e2010-02-12 09:21:02 +11001513 if (options.pkcs11_provider != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001514 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
Damien Miller7ea845e2010-02-12 09:21:02 +11001515 (pkcs11_init(!options.batch_mode) == 0) &&
1516 (nkeys = pkcs11_add_provider(options.pkcs11_provider, NULL,
1517 &keys)) > 0) {
Damien Miller7ea845e2010-02-12 09:21:02 +11001518 for (i = 0; i < nkeys; i++) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001519 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
1520 key_free(keys[i]);
1521 continue;
1522 }
1523 identity_keys[n_ids] = keys[i];
1524 identity_files[n_ids] =
Damien Miller7ea845e2010-02-12 09:21:02 +11001525 xstrdup(options.pkcs11_provider); /* XXX */
Damien Miller0a80ca12010-02-27 07:55:05 +11001526 n_ids++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001527 }
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001528 xfree(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001529 }
Damien Miller7ea845e2010-02-12 09:21:02 +11001530#endif /* ENABLE_PKCS11 */
Damien Miller6b1d53c2006-03-31 23:13:21 +11001531 if ((pw = getpwuid(original_real_uid)) == NULL)
1532 fatal("load_public_identity_files: getpwuid failed");
Darren Tuckere143f062007-12-02 23:21:16 +11001533 pwname = xstrdup(pw->pw_name);
1534 pwdir = xstrdup(pw->pw_dir);
Damien Miller6b1d53c2006-03-31 23:13:21 +11001535 if (gethostname(thishost, sizeof(thishost)) == -1)
1536 fatal("load_public_identity_files: gethostname: %s",
1537 strerror(errno));
Damien Miller0a80ca12010-02-27 07:55:05 +11001538 for (i = 0; i < options.num_identity_files; i++) {
1539 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
1540 xfree(options.identity_files[i]);
1541 continue;
1542 }
Damien Miller6b1d53c2006-03-31 23:13:21 +11001543 cp = tilde_expand_filename(options.identity_files[i],
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001544 original_real_uid);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001545 filename = percent_expand(cp, "d", pwdir,
1546 "u", pwname, "l", thishost, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +11001547 "r", options.user, (char *)NULL);
1548 xfree(cp);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001549 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001550 debug("identity file %s type %d", filename,
1551 public ? public->type : -1);
1552 xfree(options.identity_files[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +11001553 identity_files[n_ids] = filename;
1554 identity_keys[n_ids] = public;
1555
1556 if (++n_ids >= SSH_MAX_IDENTITY_FILES)
1557 continue;
1558
1559 /* Try to add the certificate variant too */
1560 xasprintf(&cp, "%s-cert", filename);
1561 public = key_load_public(cp, NULL);
1562 debug("identity file %s type %d", cp,
1563 public ? public->type : -1);
1564 if (public == NULL) {
1565 xfree(cp);
1566 continue;
1567 }
1568 if (!key_is_cert(public)) {
1569 debug("%s: key %s type %s is not a certificate",
1570 __func__, cp, key_type(public));
1571 key_free(public);
1572 xfree(cp);
1573 continue;
1574 }
1575 identity_keys[n_ids] = public;
1576 /* point to the original path, most likely the private key */
1577 identity_files[n_ids] = xstrdup(filename);
1578 n_ids++;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001579 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001580 options.num_identity_files = n_ids;
1581 memcpy(options.identity_files, identity_files, sizeof(identity_files));
1582 memcpy(options.identity_keys, identity_keys, sizeof(identity_keys));
1583
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001584 bzero(pwname, strlen(pwname));
Darren Tuckere143f062007-12-02 23:21:16 +11001585 xfree(pwname);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001586 bzero(pwdir, strlen(pwdir));
Darren Tuckere143f062007-12-02 23:21:16 +11001587 xfree(pwdir);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001588}
Damien Miller857b02e2010-09-24 22:02:56 +10001589
1590static void
1591main_sigchld_handler(int sig)
1592{
1593 int save_errno = errno;
1594 pid_t pid;
1595 int status;
1596
1597 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
1598 (pid < 0 && errno == EINTR))
1599 ;
1600
1601 signal(sig, main_sigchld_handler);
1602 errno = save_errno;
1603}
1604