blob: b7dbea2b6de9e4e9ab8f15ffa680eb02cee75779 [file] [log] [blame]
Damien Miller13f97b22014-02-24 15:57:55 +11001/* $OpenBSD: ssh.c,v 1.400 2014/02/23 20:11:36 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 Millerd937dc02013-12-05 10:19:54 +1100202" [-L [bind_address:]port:host:hostport] [-l login_name] [-m mac_spec]\n"
Damien Millerbdb352a2013-12-05 10:20:52 +1100203" [-O ctl_cmd] [-o option] [-p port]\n"
204" [-Q cipher | cipher-auth | mac | kex | key]\n"
205" [-R [bind_address:]port:host:hostport] [-S ctl_path] [-W host:port]\n"
206" [-w local_tun[:remote_tun]] [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 Miller13f97b22014-02-24 15:57:55 +1100234/*
235 * Attempt to resolve a host name / port to a set of addresses and
236 * optionally return any CNAMEs encountered along the way.
237 * Returns NULL on failure.
238 * NB. this function must operate with a options having undefined members.
239 */
Damien Miller0faf7472013-10-17 11:47:23 +1100240static struct addrinfo *
Damien Miller13f97b22014-02-24 15:57:55 +1100241resolve_host(const char *name, int port, int logerr, char *cname, size_t clen)
Damien Miller0faf7472013-10-17 11:47:23 +1100242{
243 char strport[NI_MAXSERV];
244 struct addrinfo hints, *res;
245 int gaierr, loglevel = SYSLOG_LEVEL_DEBUG1;
246
Damien Miller13f97b22014-02-24 15:57:55 +1100247 if (port <= 0)
248 port = default_ssh_port();
249
Damien Miller0faf7472013-10-17 11:47:23 +1100250 snprintf(strport, sizeof strport, "%u", port);
Damien Miller1d2c4562014-02-04 11:18:20 +1100251 memset(&hints, 0, sizeof(hints));
Damien Miller13f97b22014-02-24 15:57:55 +1100252 hints.ai_family = options.address_family == -1 ?
253 AF_UNSPEC : options.address_family;
Damien Miller0faf7472013-10-17 11:47:23 +1100254 hints.ai_socktype = SOCK_STREAM;
255 if (cname != NULL)
256 hints.ai_flags = AI_CANONNAME;
257 if ((gaierr = getaddrinfo(name, strport, &hints, &res)) != 0) {
258 if (logerr || (gaierr != EAI_NONAME && gaierr != EAI_NODATA))
259 loglevel = SYSLOG_LEVEL_ERROR;
260 do_log2(loglevel, "%s: Could not resolve hostname %.100s: %s",
261 __progname, name, ssh_gai_strerror(gaierr));
262 return NULL;
263 }
264 if (cname != NULL && res->ai_canonname != NULL) {
265 if (strlcpy(cname, res->ai_canonname, clen) >= clen) {
266 error("%s: host \"%s\" cname \"%s\" too long (max %lu)",
267 __func__, name, res->ai_canonname, (u_long)clen);
268 if (clen > 0)
269 *cname = '\0';
270 }
271 }
272 return res;
273}
274
275/*
276 * Check whether the cname is a permitted replacement for the hostname
277 * and perform the replacement if it is.
Damien Miller13f97b22014-02-24 15:57:55 +1100278 * NB. this function must operate with a options having undefined members.
Damien Miller0faf7472013-10-17 11:47:23 +1100279 */
280static int
281check_follow_cname(char **namep, const char *cname)
282{
283 int i;
284 struct allowed_cname *rule;
285
286 if (*cname == '\0' || options.num_permitted_cnames == 0 ||
287 strcmp(*namep, cname) == 0)
288 return 0;
Damien Miller38505592013-10-17 11:48:13 +1100289 if (options.canonicalize_hostname == SSH_CANONICALISE_NO)
Damien Miller0faf7472013-10-17 11:47:23 +1100290 return 0;
291 /*
Damien Miller38505592013-10-17 11:48:13 +1100292 * Don't attempt to canonicalize names that will be interpreted by
Damien Miller0faf7472013-10-17 11:47:23 +1100293 * a proxy unless the user specifically requests so.
294 */
Damien Miller13f97b22014-02-24 15:57:55 +1100295 if (!option_clear_or_none(options.proxy_command) &&
Damien Miller38505592013-10-17 11:48:13 +1100296 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS)
Damien Miller0faf7472013-10-17 11:47:23 +1100297 return 0;
298 debug3("%s: check \"%s\" CNAME \"%s\"", __func__, *namep, cname);
299 for (i = 0; i < options.num_permitted_cnames; i++) {
300 rule = options.permitted_cnames + i;
301 if (match_pattern_list(*namep, rule->source_list,
302 strlen(rule->source_list), 1) != 1 ||
303 match_pattern_list(cname, rule->target_list,
304 strlen(rule->target_list), 1) != 1)
305 continue;
Damien Miller38505592013-10-17 11:48:13 +1100306 verbose("Canonicalized DNS aliased hostname "
Damien Miller0faf7472013-10-17 11:47:23 +1100307 "\"%s\" => \"%s\"", *namep, cname);
308 free(*namep);
309 *namep = xstrdup(cname);
310 return 1;
311 }
312 return 0;
313}
314
315/*
316 * Attempt to resolve the supplied hostname after applying the user's
Damien Miller51682fa2013-10-17 11:48:31 +1100317 * canonicalization rules. Returns the address list for the host or NULL
318 * if no name was found after canonicalization.
Damien Miller13f97b22014-02-24 15:57:55 +1100319 * NB. this function must operate with a options having undefined members.
Damien Miller0faf7472013-10-17 11:47:23 +1100320 */
321static struct addrinfo *
Damien Miller13f97b22014-02-24 15:57:55 +1100322resolve_canonicalize(char **hostp, int port)
Damien Miller0faf7472013-10-17 11:47:23 +1100323{
324 int i, ndots;
325 char *cp, *fullhost, cname_target[NI_MAXHOST];
326 struct addrinfo *addrs;
327
Damien Miller38505592013-10-17 11:48:13 +1100328 if (options.canonicalize_hostname == SSH_CANONICALISE_NO)
Damien Miller0faf7472013-10-17 11:47:23 +1100329 return NULL;
Damien Miller13f97b22014-02-24 15:57:55 +1100330
Damien Miller0faf7472013-10-17 11:47:23 +1100331 /*
Damien Miller38505592013-10-17 11:48:13 +1100332 * Don't attempt to canonicalize names that will be interpreted by
Damien Miller0faf7472013-10-17 11:47:23 +1100333 * a proxy unless the user specifically requests so.
334 */
Damien Miller13f97b22014-02-24 15:57:55 +1100335 if (!option_clear_or_none(options.proxy_command) &&
Damien Miller38505592013-10-17 11:48:13 +1100336 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS)
Damien Miller0faf7472013-10-17 11:47:23 +1100337 return NULL;
Damien Miller13f97b22014-02-24 15:57:55 +1100338
Damien Miller51682fa2013-10-17 11:48:31 +1100339 /* Don't apply canonicalization to sufficiently-qualified hostnames */
Damien Miller0faf7472013-10-17 11:47:23 +1100340 ndots = 0;
341 for (cp = *hostp; *cp != '\0'; cp++) {
342 if (*cp == '.')
343 ndots++;
344 }
Damien Miller38505592013-10-17 11:48:13 +1100345 if (ndots > options.canonicalize_max_dots) {
346 debug3("%s: not canonicalizing hostname \"%s\" (max dots %d)",
347 __func__, *hostp, options.canonicalize_max_dots);
Damien Miller0faf7472013-10-17 11:47:23 +1100348 return NULL;
349 }
350 /* Attempt each supplied suffix */
351 for (i = 0; i < options.num_canonical_domains; i++) {
352 *cname_target = '\0';
353 xasprintf(&fullhost, "%s.%s.", *hostp,
354 options.canonical_domains[i]);
Damien Miller13f97b22014-02-24 15:57:55 +1100355 debug3("%s: attempting \"%s\" => \"%s\"", __func__,
356 *hostp, fullhost);
357 if ((addrs = resolve_host(fullhost, port, 0,
Damien Miller0faf7472013-10-17 11:47:23 +1100358 cname_target, sizeof(cname_target))) == NULL) {
359 free(fullhost);
360 continue;
361 }
362 /* Remove trailing '.' */
363 fullhost[strlen(fullhost) - 1] = '\0';
364 /* Follow CNAME if requested */
365 if (!check_follow_cname(&fullhost, cname_target)) {
Damien Miller38505592013-10-17 11:48:13 +1100366 debug("Canonicalized hostname \"%s\" => \"%s\"",
Damien Miller0faf7472013-10-17 11:47:23 +1100367 *hostp, fullhost);
368 }
369 free(*hostp);
370 *hostp = fullhost;
371 return addrs;
372 }
Damien Miller38505592013-10-17 11:48:13 +1100373 if (!options.canonicalize_fallback_local)
Damien Miller13f97b22014-02-24 15:57:55 +1100374 fatal("%s: Could not resolve host \"%s\"", __progname, *hostp);
375 debug2("%s: host %s not found in any suffix", __func__, *hostp);
Damien Miller0faf7472013-10-17 11:47:23 +1100376 return NULL;
377}
378
Damien Miller95def091999-11-25 00:26:21 +1100379/*
Damien Miller13f97b22014-02-24 15:57:55 +1100380 * Read per-user configuration file. Ignore the system wide config
381 * file if the user specifies a config file on the command line.
382 */
383static void
384process_config_files(struct passwd *pw)
385{
386 char buf[MAXPATHLEN];
387 int r;
388
389 if (config != NULL) {
390 if (strcasecmp(config, "none") != 0 &&
391 !read_config_file(config, pw, host, &options,
392 SSHCONF_USERCONF))
393 fatal("Can't open user config file %.100s: "
394 "%.100s", config, strerror(errno));
395 } else {
396 r = snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir,
397 _PATH_SSH_USER_CONFFILE);
398 if (r > 0 && (size_t)r < sizeof(buf))
399 (void)read_config_file(buf, pw, host, &options,
400 SSHCONF_CHECKPERM|SSHCONF_USERCONF);
401
402 /* Read systemwide configuration file after user config. */
403 (void)read_config_file(_PATH_HOST_CONFIG_FILE, pw, host,
404 &options, 0);
405 }
406}
407
408/*
Damien Miller95def091999-11-25 00:26:21 +1100409 * Main program for the ssh client.
410 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000411int
412main(int ac, char **av)
413{
Darren Tucker199b1342009-07-06 07:16:56 +1000414 int i, r, opt, exit_status, use_syslog;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000415 char *p, *cp, *line, *argv0, buf[MAXPATHLEN], *host_arg, *logfile;
Damien Millerdfc85fa2011-05-15 08:44:02 +1000416 char thishost[NI_MAXHOST], shorthost[NI_MAXHOST], portstr[NI_MAXSERV];
Damien Miller0faf7472013-10-17 11:47:23 +1100417 char cname[NI_MAXHOST];
Damien Miller95def091999-11-25 00:26:21 +1100418 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000419 struct passwd *pw;
Damien Miller194fd902013-10-15 12:13:05 +1100420 int timeout_ms;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000421 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000422 extern char *optarg;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100423 Forward fwd;
Damien Miller0faf7472013-10-17 11:47:23 +1100424 struct addrinfo *addrs = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000425
Darren Tuckerce321d82005-10-03 18:11:24 +1000426 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
427 sanitise_stdfd();
428
Damien Miller59d3d5b2003-08-22 09:34:41 +1000429 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000430
Damien Millerea2c1a42011-06-03 12:10:22 +1000431#ifndef HAVE_SETPROCTITLE
432 /* Prepare for later setproctitle emulation */
433 /* Save argv so it isn't clobbered by setproctitle() emulation */
434 saved_av = xcalloc(ac + 1, sizeof(*saved_av));
435 for (i = 0; i < ac; i++)
436 saved_av[i] = xstrdup(av[i]);
437 saved_av[i] = NULL;
438 compat_init_setproctitle(ac, av);
439 av = saved_av;
440#endif
441
Damien Miller5428f641999-11-25 11:54:57 +1100442 /*
Damien Miller00d9ae22010-08-17 01:59:31 +1000443 * Discard other fds that are hanging around. These can cause problem
444 * with backgrounded ssh processes started by ControlPersist.
445 */
446 closefrom(STDERR_FILENO + 1);
447
448 /*
Damien Miller5428f641999-11-25 11:54:57 +1100449 * Save the original real uid. It will be needed later (uid-swapping
450 * may clobber the real uid).
451 */
Damien Miller95def091999-11-25 00:26:21 +1100452 original_real_uid = getuid();
453 original_effective_uid = geteuid();
Damien Millera8e06ce2003-11-21 23:48:55 +1100454
Damien Miller50b9a602002-09-04 16:50:06 +1000455 /*
456 * Use uid-swapping to give up root privileges for the duration of
457 * option processing. We will re-instantiate the rights when we are
458 * ready to create the privileged port, and will permanently drop
459 * them when the port has been created (actually, when the connection
460 * has been made, as we may need to create the port several times).
461 */
462 PRIV_END;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000463
Damien Miller05dd7952000-10-01 00:42:48 +1100464#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100465 /* If we are installed setuid root be careful to not drop core. */
466 if (original_real_uid != original_effective_uid) {
467 struct rlimit rlim;
468 rlim.rlim_cur = rlim.rlim_max = 0;
469 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
470 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000471 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100472#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000473 /* Get user data. */
474 pw = getpwuid(original_real_uid);
475 if (!pw) {
Damien Miller3009d3c2013-07-20 13:22:31 +1000476 logit("No user exists for uid %lu", (u_long)original_real_uid);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100477 exit(255);
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000478 }
479 /* Take a copy of the returned structure. */
480 pw = pwcopy(pw);
481
Damien Miller5428f641999-11-25 11:54:57 +1100482 /*
Damien Miller5428f641999-11-25 11:54:57 +1100483 * Set our umask to something reasonable, as some files are created
484 * with the default umask. This will make them world-readable but
485 * writable only by the owner, which is ok for all files for which we
486 * don't set the modes explicitly.
487 */
Damien Miller95def091999-11-25 00:26:21 +1100488 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000489
Darren Tuckerd6173c02008-06-13 04:52:53 +1000490 /*
491 * Initialize option structure to indicate that no values have been
492 * set.
493 */
Damien Miller95def091999-11-25 00:26:21 +1100494 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000495
Damien Miller95def091999-11-25 00:26:21 +1100496 /* Parse command-line arguments. */
497 host = NULL;
Damien Millere272a5b2008-11-03 19:22:37 +1100498 use_syslog = 0;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000499 logfile = NULL;
Darren Tucker72efd742009-06-21 17:48:00 +1000500 argv0 = av[0];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000501
Damien Miller2ecb6bd2006-03-15 12:03:53 +1100502 again:
Darren Tuckerd6173c02008-06-13 04:52:53 +1000503 while ((opt = getopt(ac, av, "1246ab:c:e:fgi:kl:m:no:p:qstvx"
Damien Millerea111192013-04-23 19:24:32 +1000504 "ACD:E:F:I:KL:MNO:PQ:R:S:TVw:W:XYy")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100505 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000506 case '1':
507 options.protocol = SSH_PROTO_1;
508 break;
Damien Miller4af51302000-04-16 11:18:38 +1000509 case '2':
510 options.protocol = SSH_PROTO_2;
511 break;
Damien Miller34132e52000-01-14 15:45:46 +1100512 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000513 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100514 break;
Damien Miller34132e52000-01-14 15:45:46 +1100515 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000516 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100517 break;
Damien Miller95def091999-11-25 00:26:21 +1100518 case 'n':
519 stdin_null_flag = 1;
520 break;
Damien Miller95def091999-11-25 00:26:21 +1100521 case 'f':
522 fork_after_authentication_flag = 1;
523 stdin_null_flag = 1;
524 break;
Damien Miller95def091999-11-25 00:26:21 +1100525 case 'x':
526 options.forward_x11 = 0;
527 break;
Damien Miller95def091999-11-25 00:26:21 +1100528 case 'X':
529 options.forward_x11 = 1;
530 break;
Damien Millere272a5b2008-11-03 19:22:37 +1100531 case 'y':
532 use_syslog = 1;
533 break;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000534 case 'E':
535 logfile = xstrdup(optarg);
536 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000537 case 'Y':
538 options.forward_x11 = 1;
539 options.forward_x11_trusted = 1;
540 break;
Damien Miller95def091999-11-25 00:26:21 +1100541 case 'g':
542 options.gateway_ports = 1;
543 break;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100544 case 'O':
Damien Millere1537f92010-01-26 13:26:22 +1100545 if (stdio_forward_host != NULL)
546 fatal("Cannot specify multiplexing "
547 "command with -W");
548 else if (muxclient_command != 0)
549 fatal("Multiplexing command already specified");
Darren Tucker7ebfc102004-11-07 20:06:19 +1100550 if (strcmp(optarg, "check") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000551 muxclient_command = SSHMUX_COMMAND_ALIVE_CHECK;
Damien Miller388f6fc2010-05-21 14:57:35 +1000552 else if (strcmp(optarg, "forward") == 0)
553 muxclient_command = SSHMUX_COMMAND_FORWARD;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100554 else if (strcmp(optarg, "exit") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000555 muxclient_command = SSHMUX_COMMAND_TERMINATE;
Damien Miller6c3eec72011-05-05 14:16:22 +1000556 else if (strcmp(optarg, "stop") == 0)
557 muxclient_command = SSHMUX_COMMAND_STOP;
Damien Millerf6dff7c2011-09-22 21:38:52 +1000558 else if (strcmp(optarg, "cancel") == 0)
559 muxclient_command = SSHMUX_COMMAND_CANCEL_FWD;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100560 else
561 fatal("Invalid multiplex command.");
562 break;
Damien Miller147bba32002-09-04 16:46:06 +1000563 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100564 options.use_privileged_port = 0;
565 break;
Damien Millerd937dc02013-12-05 10:19:54 +1100566 case 'Q':
Damien Millerea111192013-04-23 19:24:32 +1000567 cp = NULL;
Damien Millerd937dc02013-12-05 10:19:54 +1100568 if (strcmp(optarg, "cipher") == 0)
Damien Miller0fde8ac2013-11-21 14:12:23 +1100569 cp = cipher_alg_list('\n', 0);
Damien Millerd937dc02013-12-05 10:19:54 +1100570 else if (strcmp(optarg, "cipher-auth") == 0)
Damien Miller0fde8ac2013-11-21 14:12:23 +1100571 cp = cipher_alg_list('\n', 1);
Damien Millerd937dc02013-12-05 10:19:54 +1100572 else if (strcmp(optarg, "mac") == 0)
Damien Miller690d9892013-11-08 12:16:49 +1100573 cp = mac_alg_list('\n');
Damien Millerd937dc02013-12-05 10:19:54 +1100574 else if (strcmp(optarg, "kex") == 0)
Damien Miller690d9892013-11-08 12:16:49 +1100575 cp = kex_alg_list('\n');
Damien Millerd937dc02013-12-05 10:19:54 +1100576 else if (strcmp(optarg, "key") == 0)
Damien Miller5be9d9e2013-12-07 11:24:01 +1100577 cp = key_alg_list(0, 0);
578 else if (strcmp(optarg, "key-cert") == 0)
579 cp = key_alg_list(1, 0);
580 else if (strcmp(optarg, "key-plain") == 0)
581 cp = key_alg_list(0, 1);
Damien Millerea111192013-04-23 19:24:32 +1000582 if (cp == NULL)
583 fatal("Unsupported query \"%s\"", optarg);
584 printf("%s\n", cp);
585 free(cp);
586 exit(0);
587 break;
Damien Miller95def091999-11-25 00:26:21 +1100588 case 'a':
589 options.forward_agent = 0;
590 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000591 case 'A':
592 options.forward_agent = 1;
593 break;
Damien Miller95def091999-11-25 00:26:21 +1100594 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100595 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100596 break;
Darren Tucker415bddc2007-06-12 23:43:16 +1000597 case 'K':
598 options.gss_authentication = 1;
599 options.gss_deleg_creds = 1;
600 break;
Damien Miller95def091999-11-25 00:26:21 +1100601 case 'i':
602 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000603 fprintf(stderr, "Warning: Identity file %s "
Damien Miller3eb48b62005-03-01 21:15:46 +1100604 "not accessible: %s.\n", optarg,
605 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100606 break;
607 }
Darren Tucker19104782013-04-05 11:13:08 +1100608 add_identity_file(&options, NULL, optarg, 1);
Damien Miller95def091999-11-25 00:26:21 +1100609 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000610 case 'I':
Damien Miller7ea845e2010-02-12 09:21:02 +1100611#ifdef ENABLE_PKCS11
612 options.pkcs11_provider = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000613#else
Damien Miller7ea845e2010-02-12 09:21:02 +1100614 fprintf(stderr, "no support for PKCS#11.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000615#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000616 break;
Damien Miller95def091999-11-25 00:26:21 +1100617 case 't':
Damien Miller21771e22011-05-15 08:45:50 +1000618 if (options.request_tty == REQUEST_TTY_YES)
619 options.request_tty = REQUEST_TTY_FORCE;
620 else
621 options.request_tty = REQUEST_TTY_YES;
Damien Miller95def091999-11-25 00:26:21 +1100622 break;
Damien Miller95def091999-11-25 00:26:21 +1100623 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000624 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100625 debug_flag = 1;
626 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000627 } else {
628 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
629 options.log_level++;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000630 }
Damien Miller03d4d7e2013-04-23 15:21:06 +1000631 break;
Damien Miller95def091999-11-25 00:26:21 +1100632 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100633 fprintf(stderr, "%s, %s\n",
Damien Miller2aa6d3c2004-09-12 16:53:04 +1000634 SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
Damien Miller95def091999-11-25 00:26:21 +1100635 if (opt == 'V')
636 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100637 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100638 case 'w':
Damien Miller7b58e802005-12-13 19:33:19 +1100639 if (options.tun_open == -1)
640 options.tun_open = SSH_TUNMODE_DEFAULT;
Damien Millerd27b9472005-12-13 19:29:02 +1100641 options.tun_local = a2tun(optarg, &options.tun_remote);
Damien Miller7b58e802005-12-13 19:33:19 +1100642 if (options.tun_local == SSH_TUNID_ERR) {
Darren Tuckerd6173c02008-06-13 04:52:53 +1000643 fprintf(stderr,
644 "Bad tun device '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100645 exit(255);
Damien Millerd27b9472005-12-13 19:29:02 +1100646 }
647 break;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100648 case 'W':
Damien Millere1537f92010-01-26 13:26:22 +1100649 if (stdio_forward_host != NULL)
650 fatal("stdio forward already specified");
651 if (muxclient_command != 0)
652 fatal("Cannot specify stdio forward with -O");
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100653 if (parse_forward(&fwd, optarg, 1, 0)) {
654 stdio_forward_host = fwd.listen_host;
655 stdio_forward_port = fwd.listen_port;
Darren Tuckera627d422013-06-02 07:31:17 +1000656 free(fwd.connect_host);
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100657 } else {
658 fprintf(stderr,
659 "Bad stdio forwarding specification '%s'\n",
660 optarg);
661 exit(255);
662 }
Damien Miller21771e22011-05-15 08:45:50 +1000663 options.request_tty = REQUEST_TTY_NO;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100664 no_shell_flag = 1;
665 options.clear_forwardings = 1;
666 options.exit_on_forward_failure = 1;
667 break;
Damien Miller95def091999-11-25 00:26:21 +1100668 case 'q':
669 options.log_level = SYSLOG_LEVEL_QUIET;
670 break;
Damien Miller95def091999-11-25 00:26:21 +1100671 case 'e':
672 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000673 (u_char) optarg[1] >= 64 &&
674 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000675 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100676 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000677 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100678 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000679 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100680 else {
Damien Millerf4614452001-07-14 12:18:10 +1000681 fprintf(stderr, "Bad escape character '%s'.\n",
682 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100683 exit(255);
Damien Miller95def091999-11-25 00:26:21 +1100684 }
685 break;
Damien Miller95def091999-11-25 00:26:21 +1100686 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000687 if (ciphers_valid(optarg)) {
688 /* SSH2 only */
689 options.ciphers = xstrdup(optarg);
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000690 options.cipher = SSH_CIPHER_INVALID;
Damien Millereba71ba2000-04-29 23:57:08 +1000691 } else {
692 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100693 options.cipher = cipher_number(optarg);
694 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000695 fprintf(stderr,
696 "Unknown cipher type '%s'\n",
697 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100698 exit(255);
Damien Millereba71ba2000-04-29 23:57:08 +1000699 }
Damien Millerf4614452001-07-14 12:18:10 +1000700 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100701 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000702 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100703 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000704 else
Damien Millere39cacc2000-11-29 12:18:44 +1100705 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100706 }
707 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000708 case 'm':
709 if (mac_valid(optarg))
710 options.macs = xstrdup(optarg);
711 else {
Damien Millerf4614452001-07-14 12:18:10 +1000712 fprintf(stderr, "Unknown mac type '%s'\n",
713 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100714 exit(255);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000715 }
716 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000717 case 'M':
Damien Millerd14b1e72005-06-16 13:19:41 +1000718 if (options.control_master == SSHCTL_MASTER_YES)
719 options.control_master = SSHCTL_MASTER_ASK;
720 else
721 options.control_master = SSHCTL_MASTER_YES;
Damien Miller0e220db2004-06-15 10:34:08 +1000722 break;
Damien Miller95def091999-11-25 00:26:21 +1100723 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000724 options.port = a2port(optarg);
Damien Miller3dc71ad2009-01-28 16:31:22 +1100725 if (options.port <= 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000726 fprintf(stderr, "Bad port '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100727 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000728 }
Damien Miller95def091999-11-25 00:26:21 +1100729 break;
Damien Miller95def091999-11-25 00:26:21 +1100730 case 'l':
731 options.user = optarg;
732 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000733
Damien Miller95def091999-11-25 00:26:21 +1100734 case 'L':
Damien Miller4bf648f2009-02-14 16:28:21 +1100735 if (parse_forward(&fwd, optarg, 0, 0))
Damien Millerf91ee4c2005-03-01 21:24:33 +1100736 add_local_forward(&options, &fwd);
737 else {
Damien Millerf4614452001-07-14 12:18:10 +1000738 fprintf(stderr,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100739 "Bad local forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000740 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100741 exit(255);
Ben Lindstrom1a174712001-09-12 17:56:15 +0000742 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100743 break;
744
745 case 'R':
Damien Miller4bf648f2009-02-14 16:28:21 +1100746 if (parse_forward(&fwd, optarg, 0, 1)) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100747 add_remote_forward(&options, &fwd);
748 } else {
749 fprintf(stderr,
750 "Bad remote forwarding specification "
751 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100752 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100753 }
Damien Miller95def091999-11-25 00:26:21 +1100754 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000755
756 case 'D':
Damien Miller4bf648f2009-02-14 16:28:21 +1100757 if (parse_forward(&fwd, optarg, 1, 0)) {
Damien Millera699d952008-11-03 19:27:34 +1100758 add_local_forward(&options, &fwd);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100759 } else {
Damien Millera699d952008-11-03 19:27:34 +1100760 fprintf(stderr,
761 "Bad dynamic forwarding specification "
762 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100763 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000764 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000765 break;
766
Damien Miller95def091999-11-25 00:26:21 +1100767 case 'C':
768 options.compression = 1;
769 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000770 case 'N':
771 no_shell_flag = 1;
Damien Miller21771e22011-05-15 08:45:50 +1000772 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000773 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000774 case 'T':
Damien Miller21771e22011-05-15 08:45:50 +1000775 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000776 break;
Damien Miller95def091999-11-25 00:26:21 +1100777 case 'o':
Damien Miller9836cf82003-12-17 16:30:06 +1100778 line = xstrdup(optarg);
Damien Miller194fd902013-10-15 12:13:05 +1100779 if (process_config_line(&options, pw, host ? host : "",
780 line, "command-line", 0, NULL, SSHCONF_USERCONF)
Darren Tuckeraefa3682013-04-05 11:18:35 +1100781 != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100782 exit(255);
Darren Tuckera627d422013-06-02 07:31:17 +1000783 free(line);
Damien Miller95def091999-11-25 00:26:21 +1100784 break;
Damien Miller832562e2001-01-30 09:30:01 +1100785 case 's':
786 subsystem_flag = 1;
787 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000788 case 'S':
789 if (options.control_path != NULL)
790 free(options.control_path);
791 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000792 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000793 case 'b':
794 options.bind_address = optarg;
795 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000796 case 'F':
797 config = optarg;
798 break;
Damien Miller95def091999-11-25 00:26:21 +1100799 default:
800 usage();
801 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000802 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000803
Damien Millerf4614452001-07-14 12:18:10 +1000804 ac -= optind;
805 av += optind;
806
Darren Tuckerb8c884a2010-01-08 18:53:43 +1100807 if (ac > 0 && !host) {
Ben Lindstromc276c122002-12-23 02:14:51 +0000808 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000809 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000810 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000811 if (cp == NULL || cp == p)
812 usage();
813 options.user = p;
814 *cp = '\0';
Damien Miller0faf7472013-10-17 11:47:23 +1100815 host = xstrdup(++cp);
Damien Millerf4614452001-07-14 12:18:10 +1000816 } else
Damien Miller0faf7472013-10-17 11:47:23 +1100817 host = xstrdup(*av);
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000818 if (ac > 1) {
819 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000820 goto again;
821 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000822 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000823 }
824
Damien Miller95def091999-11-25 00:26:21 +1100825 /* Check that we got a host name. */
826 if (!host)
827 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000828
Damien Miller0faf7472013-10-17 11:47:23 +1100829 host_arg = xstrdup(host);
830
Damien Miller4314c2b2010-09-10 11:12:09 +1000831 OpenSSL_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100832 ERR_load_crypto_strings();
Damien Millercb5e44a2000-09-29 12:12:36 +1100833
Damien Miller95def091999-11-25 00:26:21 +1100834 /* Initialize the command to execute on remote host. */
835 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000836
Damien Miller5428f641999-11-25 11:54:57 +1100837 /*
838 * Save the command to execute on the remote host in a buffer. There
839 * is no limit on the length of the command, except by the maximum
840 * packet size. Also sets the tty flag if there is no command.
841 */
Damien Millerf4614452001-07-14 12:18:10 +1000842 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100843 /* No command specified - execute shell on a tty. */
Damien Miller832562e2001-01-30 09:30:01 +1100844 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000845 fprintf(stderr,
846 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100847 usage();
848 }
Damien Miller95def091999-11-25 00:26:21 +1100849 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000850 /* A command has been specified. Store it into the buffer. */
851 for (i = 0; i < ac; i++) {
852 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100853 buffer_append(&command, " ", 1);
854 buffer_append(&command, av[i], strlen(av[i]));
855 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000856 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000857
Damien Miller95def091999-11-25 00:26:21 +1100858 /* Cannot fork to background if no command. */
Darren Tuckerd6173c02008-06-13 04:52:53 +1000859 if (fork_after_authentication_flag && buffer_len(&command) == 0 &&
860 !no_shell_flag)
861 fatal("Cannot fork into background without a command "
862 "to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000863
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000864 /*
865 * Initialize "log" output. Since we are the client all output
Damien Miller03d4d7e2013-04-23 15:21:06 +1000866 * goes to stderr unless otherwise specified by -y or -E.
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000867 */
Damien Miller03d4d7e2013-04-23 15:21:06 +1000868 if (use_syslog && logfile != NULL)
869 fatal("Can't specify both -y and -E");
870 if (logfile != NULL) {
871 log_redirect_stderr_to(logfile);
Darren Tuckera627d422013-06-02 07:31:17 +1000872 free(logfile);
Damien Miller03d4d7e2013-04-23 15:21:06 +1000873 }
Darren Tucker72efd742009-06-21 17:48:00 +1000874 log_init(argv0,
Darren Tuckerd6173c02008-06-13 04:52:53 +1000875 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
Damien Millere272a5b2008-11-03 19:22:37 +1100876 SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000877
Damien Miller03d4d7e2013-04-23 15:21:06 +1000878 if (debug_flag)
879 logit("%s, %s", SSH_VERSION, SSLeay_version(SSLEAY_VERSION));
880
Damien Miller13f97b22014-02-24 15:57:55 +1100881 /* Parse the configuration files */
882 process_config_files(pw);
Ben Lindstrom83f07d12001-10-03 17:22:29 +0000883
Damien Miller13f97b22014-02-24 15:57:55 +1100884 /* Hostname canonicalisation needs a few options filled. */
885 fill_default_options_for_canonicalization(&options);
886
887 /* If the user has replaced the hostname then take it into use now */
888 if (options.hostname != NULL) {
889 /* NB. Please keep in sync with readconf.c:match_cfg_line() */
890 cp = percent_expand(options.hostname,
891 "h", host, (char *)NULL);
892 free(host);
893 host = cp;
894 }
895
896 /* If canonicalization requested then try to apply it */
897 lowercase(host);
898 if (options.canonicalize_hostname != SSH_CANONICALISE_NO)
899 addrs = resolve_canonicalize(&host, options.port);
900
901 /*
902 * If canonicalization not requested, or if it failed then try to
903 * resolve the bare hostname name using the system resolver's usual
904 * search rules. Skip the lookup if a ProxyCommand is being used
905 * unless the user has specifically requested canonicalisation.
906 */
907 if (addrs == NULL && (option_clear_or_none(options.proxy_command) ||
908 options.canonicalize_hostname == SSH_CANONICALISE_ALWAYS)) {
909 if ((addrs = resolve_host(host, options.port, 1,
910 cname, sizeof(cname))) == NULL)
911 cleanup_exit(255); /* resolve_host logs the error */
912 check_follow_cname(&host, cname);
913 }
914
915 /*
916 * If the target hostname has changed as a result of canonicalisation
917 * then re-parse the configuration files as new stanzas may match.
918 */
919 if (strcasecmp(host_arg, host) != 0) {
920 debug("Hostname has changed; re-reading configuration");
921 process_config_files(pw);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000922 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000923
Damien Miller95def091999-11-25 00:26:21 +1100924 /* Fill configuration defaults. */
925 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000926
Damien Miller13f97b22014-02-24 15:57:55 +1100927 if (options.port == 0)
928 options.port = default_ssh_port();
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000929 channel_set_af(options.address_family);
930
Damien Millere9fc72e2013-10-15 12:14:12 +1100931 /* Tidy and check options */
932 if (options.host_key_alias != NULL)
933 lowercase(options.host_key_alias);
934 if (options.proxy_command != NULL &&
935 strcmp(options.proxy_command, "-") == 0 &&
936 options.proxy_use_fdpass)
937 fatal("ProxyCommand=- and ProxyUseFDPass are incompatible");
Damien Miller0faf7472013-10-17 11:47:23 +1100938#ifndef HAVE_CYGWIN
939 if (original_effective_uid != 0)
940 options.use_privileged_port = 0;
941#endif
Damien Millere9fc72e2013-10-15 12:14:12 +1100942
Damien Miller95def091999-11-25 00:26:21 +1100943 /* reinit */
Darren Tucker72efd742009-06-21 17:48:00 +1000944 log_init(argv0, options.log_level, SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000945
Damien Millerfff9f092012-07-06 13:45:01 +1000946 if (options.request_tty == REQUEST_TTY_YES ||
947 options.request_tty == REQUEST_TTY_FORCE)
948 tty_flag = 1;
949
950 /* Allocate a tty by default if no command specified. */
951 if (buffer_len(&command) == 0)
952 tty_flag = options.request_tty != REQUEST_TTY_NO;
953
954 /* Force no tty */
955 if (options.request_tty == REQUEST_TTY_NO || muxclient_command != 0)
956 tty_flag = 0;
957 /* Do not allocate a tty if stdin is not a tty. */
958 if ((!isatty(fileno(stdin)) || stdin_null_flag) &&
959 options.request_tty != REQUEST_TTY_FORCE) {
960 if (tty_flag)
961 logit("Pseudo-terminal will not be allocated because "
962 "stdin is not a terminal.");
963 tty_flag = 0;
964 }
965
Damien Miller60bc5172001-03-19 09:38:15 +1100966 seed_rng();
967
Damien Miller95def091999-11-25 00:26:21 +1100968 if (options.user == NULL)
969 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000970
Damien Millerdfc85fa2011-05-15 08:44:02 +1000971 if (gethostname(thishost, sizeof(thishost)) == -1)
972 fatal("gethostname: %s", strerror(errno));
973 strlcpy(shorthost, thishost, sizeof(shorthost));
974 shorthost[strcspn(thishost, ".")] = '\0';
975 snprintf(portstr, sizeof(portstr), "%d", options.port);
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000976
Damien Millerdfc85fa2011-05-15 08:44:02 +1000977 if (options.local_command != NULL) {
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000978 debug3("expanding LocalCommand: %s", options.local_command);
979 cp = options.local_command;
980 options.local_command = percent_expand(cp, "d", pw->pw_dir,
Damien Miller83f8a402011-01-07 09:51:17 +1100981 "h", host, "l", thishost, "n", host_arg, "r", options.user,
Damien Millerdfc85fa2011-05-15 08:44:02 +1000982 "p", portstr, "u", pw->pw_name, "L", shorthost,
983 (char *)NULL);
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000984 debug3("expanded LocalCommand: %s", options.local_command);
Darren Tuckera627d422013-06-02 07:31:17 +1000985 free(cp);
Darren Tuckerf6b01b72008-06-13 04:56:37 +1000986 }
987
Damien Miller0e220db2004-06-15 10:34:08 +1000988 if (options.control_path != NULL) {
Damien Miller6476cad2005-06-16 13:18:34 +1000989 cp = tilde_expand_filename(options.control_path,
990 original_real_uid);
Darren Tuckera627d422013-06-02 07:31:17 +1000991 free(options.control_path);
Damien Millerdfc85fa2011-05-15 08:44:02 +1000992 options.control_path = percent_expand(cp, "h", host,
993 "l", thishost, "n", host_arg, "r", options.user,
994 "p", portstr, "u", pw->pw_name, "L", shorthost,
995 (char *)NULL);
Darren Tuckera627d422013-06-02 07:31:17 +1000996 free(cp);
Damien Miller0e220db2004-06-15 10:34:08 +1000997 }
Damien Millerb1cbfa22008-05-19 16:00:08 +1000998 if (muxclient_command != 0 && options.control_path == NULL)
Darren Tucker0814d312005-06-01 23:08:51 +1000999 fatal("No ControlPath specified for \"-O\" command");
Damien Millerd14b1e72005-06-16 13:19:41 +10001000 if (options.control_path != NULL)
Damien Millerb1cbfa22008-05-19 16:00:08 +10001001 muxclient(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +10001002
Damien Miller67bd0622007-09-17 12:06:57 +10001003 timeout_ms = options.connection_timeout * 1000;
1004
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001005 /* Open a connection to the remote host. */
Damien Miller0faf7472013-10-17 11:47:23 +11001006 if (ssh_connect(host, addrs, &hostaddr, options.port,
1007 options.address_family, options.connection_attempts,
1008 &timeout_ms, options.tcp_keep_alive,
1009 options.use_privileged_port) != 0)
1010 exit(255);
1011
Damien Miller28631ce2013-10-26 10:07:56 +11001012 if (addrs != NULL)
1013 freeaddrinfo(addrs);
1014
Damien Miller0faf7472013-10-17 11:47:23 +11001015 packet_set_timeout(options.server_alive_interval,
1016 options.server_alive_count_max);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001017
Damien Miller67bd0622007-09-17 12:06:57 +10001018 if (timeout_ms > 0)
1019 debug3("timeout: %d ms remain after connect", timeout_ms);
1020
Damien Miller5428f641999-11-25 11:54:57 +11001021 /*
1022 * If we successfully made the connection, load the host private key
1023 * in case we will need it later for combined rsa-rhosts
1024 * authentication. This must be done before releasing extra
1025 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +00001026 * If we cannot access the private keys, load the public keys
1027 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +11001028 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001029 sensitive_data.nkeys = 0;
1030 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001031 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +00001032 if (options.rhosts_rsa_authentication ||
1033 options.hostbased_authentication) {
Damien Miller0fa47cf2013-12-29 17:53:39 +11001034 sensitive_data.nkeys = 9;
Damien Millerddd63ab2006-03-31 23:10:51 +11001035 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001036 sizeof(Key));
Damien Miller6af914a2010-09-10 11:39:26 +10001037 for (i = 0; i < sensitive_data.nkeys; i++)
1038 sensitive_data.keys[i] = NULL;
Ben Lindstromf9c48842002-06-11 16:37:51 +00001039
1040 PRIV_START;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001041 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Darren Tucker232b76f2006-05-06 17:41:51 +10001042 _PATH_HOST_KEY_FILE, "", NULL, NULL);
Damien Millerc1583312010-08-05 13:04:50 +10001043 sensitive_data.keys[1] = key_load_private_cert(KEY_DSA,
1044 _PATH_HOST_DSA_KEY_FILE, "", NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001045#ifdef OPENSSL_HAS_ECC
Damien Millereb8b60e2010-08-31 22:41:14 +10001046 sensitive_data.keys[2] = key_load_private_cert(KEY_ECDSA,
1047 _PATH_HOST_ECDSA_KEY_FILE, "", NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001048#endif
Damien Millereb8b60e2010-08-31 22:41:14 +10001049 sensitive_data.keys[3] = key_load_private_cert(KEY_RSA,
Damien Millerc1583312010-08-05 13:04:50 +10001050 _PATH_HOST_RSA_KEY_FILE, "", NULL);
Damien Miller0fa47cf2013-12-29 17:53:39 +11001051 sensitive_data.keys[4] = key_load_private_cert(KEY_ED25519,
1052 _PATH_HOST_ED25519_KEY_FILE, "", NULL);
1053 sensitive_data.keys[5] = key_load_private_type(KEY_DSA,
Darren Tucker232b76f2006-05-06 17:41:51 +10001054 _PATH_HOST_DSA_KEY_FILE, "", NULL, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001055#ifdef OPENSSL_HAS_ECC
Damien Miller0fa47cf2013-12-29 17:53:39 +11001056 sensitive_data.keys[6] = key_load_private_type(KEY_ECDSA,
Damien Millereb8b60e2010-08-31 22:41:14 +10001057 _PATH_HOST_ECDSA_KEY_FILE, "", NULL, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001058#endif
Damien Miller0fa47cf2013-12-29 17:53:39 +11001059 sensitive_data.keys[7] = key_load_private_type(KEY_RSA,
Darren Tucker232b76f2006-05-06 17:41:51 +10001060 _PATH_HOST_RSA_KEY_FILE, "", NULL, NULL);
Damien Miller0fa47cf2013-12-29 17:53:39 +11001061 sensitive_data.keys[8] = key_load_private_type(KEY_ED25519,
Damien Miller5be9d9e2013-12-07 11:24:01 +11001062 _PATH_HOST_ED25519_KEY_FILE, "", NULL, NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +00001063 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001064
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +00001065 if (options.hostbased_authentication == 1 &&
1066 sensitive_data.keys[0] == NULL &&
Damien Millereb8b60e2010-08-31 22:41:14 +10001067 sensitive_data.keys[5] == NULL &&
Damien Miller5be9d9e2013-12-07 11:24:01 +11001068 sensitive_data.keys[6] == NULL &&
Damien Miller0fa47cf2013-12-29 17:53:39 +11001069 sensitive_data.keys[7] == NULL &&
1070 sensitive_data.keys[8] == NULL) {
Damien Millerc1583312010-08-05 13:04:50 +10001071 sensitive_data.keys[1] = key_load_cert(
1072 _PATH_HOST_DSA_KEY_FILE);
Damien Miller6af914a2010-09-10 11:39:26 +10001073#ifdef OPENSSL_HAS_ECC
Damien Millerc1583312010-08-05 13:04:50 +10001074 sensitive_data.keys[2] = key_load_cert(
Damien Millereb8b60e2010-08-31 22:41:14 +10001075 _PATH_HOST_ECDSA_KEY_FILE);
Damien Miller6af914a2010-09-10 11:39:26 +10001076#endif
Damien Millereb8b60e2010-08-31 22:41:14 +10001077 sensitive_data.keys[3] = key_load_cert(
Damien Millerc1583312010-08-05 13:04:50 +10001078 _PATH_HOST_RSA_KEY_FILE);
Damien Miller0fa47cf2013-12-29 17:53:39 +11001079 sensitive_data.keys[4] = key_load_cert(
1080 _PATH_HOST_ED25519_KEY_FILE);
1081 sensitive_data.keys[5] = key_load_public(
Damien Millereb8b60e2010-08-31 22:41:14 +10001082 _PATH_HOST_DSA_KEY_FILE, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001083#ifdef OPENSSL_HAS_ECC
Damien Miller0fa47cf2013-12-29 17:53:39 +11001084 sensitive_data.keys[6] = key_load_public(
Damien Millereb8b60e2010-08-31 22:41:14 +10001085 _PATH_HOST_ECDSA_KEY_FILE, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001086#endif
Damien Miller5be9d9e2013-12-07 11:24:01 +11001087 sensitive_data.keys[7] = key_load_public(
Damien Miller0fa47cf2013-12-29 17:53:39 +11001088 _PATH_HOST_RSA_KEY_FILE, NULL);
1089 sensitive_data.keys[8] = key_load_public(
Damien Miller5be9d9e2013-12-07 11:24:01 +11001090 _PATH_HOST_ED25519_KEY_FILE, NULL);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001091 sensitive_data.external_keysign = 1;
1092 }
Damien Miller95def091999-11-25 00:26:21 +11001093 }
Damien Miller5428f641999-11-25 11:54:57 +11001094 /*
1095 * Get rid of any extra privileges that we may have. We will no
1096 * longer need them. Also, extra privileges could make it very hard
1097 * to read identity files and other non-world-readable files from the
1098 * user's home directory if it happens to be on a NFS volume where
1099 * root is mapped to nobody.
1100 */
Darren Tucker25f60a72004-08-15 17:23:34 +10001101 if (original_effective_uid == 0) {
1102 PRIV_START;
1103 permanently_set_uid(pw);
1104 }
Damien Miller95def091999-11-25 00:26:21 +11001105
Damien Miller5428f641999-11-25 11:54:57 +11001106 /*
1107 * Now that we are back to our own permissions, create ~/.ssh
Damien Miller788f2122005-11-05 15:14:59 +11001108 * directory if it doesn't already exist.
Damien Miller5428f641999-11-25 11:54:57 +11001109 */
Darren Tucker45c66d72011-11-04 10:50:40 +11001110 if (config == NULL) {
1111 r = snprintf(buf, sizeof buf, "%s%s%s", pw->pw_dir,
1112 strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
1113 if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) < 0) {
Darren Tucker8ccb7392010-09-10 12:28:24 +10001114#ifdef WITH_SELINUX
Darren Tucker45c66d72011-11-04 10:50:40 +11001115 ssh_selinux_setfscreatecon(buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001116#endif
Darren Tucker45c66d72011-11-04 10:50:40 +11001117 if (mkdir(buf, 0700) < 0)
1118 error("Could not create directory '%.200s'.",
1119 buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001120#ifdef WITH_SELINUX
Darren Tucker45c66d72011-11-04 10:50:40 +11001121 ssh_selinux_setfscreatecon(NULL);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001122#endif
Darren Tucker45c66d72011-11-04 10:50:40 +11001123 }
Darren Tucker8ccb7392010-09-10 12:28:24 +10001124 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001125 /* load options.identity_files */
1126 load_public_identity_files();
1127
1128 /* Expand ~ in known host file names. */
Damien Miller295ee632011-05-29 21:42:31 +10001129 tilde_expand_paths(options.system_hostfiles,
1130 options.num_system_hostfiles);
1131 tilde_expand_paths(options.user_hostfiles, options.num_user_hostfiles);
Damien Miller95def091999-11-25 00:26:21 +11001132
Damien Miller07cd5892001-11-12 10:52:03 +11001133 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
Damien Miller857b02e2010-09-24 22:02:56 +10001134 signal(SIGCHLD, main_sigchld_handler);
Damien Miller07cd5892001-11-12 10:52:03 +11001135
Darren Tuckerd6173c02008-06-13 04:52:53 +10001136 /* Log into the remote system. Never returns if the login fails. */
Damien Miller67bd0622007-09-17 12:06:57 +10001137 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr,
Damien Millerd925dcd2010-12-01 12:21:51 +11001138 options.port, pw, timeout_ms);
Damien Miller95def091999-11-25 00:26:21 +11001139
Damien Miller383ffe62010-06-26 10:02:03 +10001140 if (packet_connection_is_on_socket()) {
1141 verbose("Authenticated to %s ([%s]:%d).", host,
1142 get_remote_ipaddr(), get_remote_port());
1143 } else {
1144 verbose("Authenticated to %s (via proxy).", host);
1145 }
1146
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001147 /* We no longer need the private host keys. Clear them now. */
1148 if (sensitive_data.nkeys != 0) {
1149 for (i = 0; i < sensitive_data.nkeys; i++) {
1150 if (sensitive_data.keys[i] != NULL) {
1151 /* Destroys contents safely */
1152 debug3("clear hostkey %d", i);
1153 key_free(sensitive_data.keys[i]);
1154 sensitive_data.keys[i] = NULL;
1155 }
1156 }
Darren Tuckera627d422013-06-02 07:31:17 +10001157 free(sensitive_data.keys);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001158 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +00001159 for (i = 0; i < options.num_identity_files; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +10001160 free(options.identity_files[i]);
1161 options.identity_files[i] = NULL;
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +00001162 if (options.identity_keys[i]) {
1163 key_free(options.identity_keys[i]);
1164 options.identity_keys[i] = NULL;
1165 }
1166 }
Damien Miller95def091999-11-25 00:26:21 +11001167
Damien Miller1383bd82000-04-06 12:32:37 +10001168 exit_status = compat20 ? ssh_session2() : ssh_session();
1169 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +10001170
Damien Millerb1cbfa22008-05-19 16:00:08 +10001171 if (options.control_path != NULL && muxserver_sock != -1)
Damien Miller0e220db2004-06-15 10:34:08 +10001172 unlink(options.control_path);
1173
Damien Millera41ccca2010-10-07 22:07:32 +11001174 /* Kill ProxyCommand if it is running. */
1175 ssh_kill_proxy_command();
Damien Miller8c4e18a2002-09-19 12:05:02 +10001176
Damien Miller1383bd82000-04-06 12:32:37 +10001177 return exit_status;
1178}
1179
Damien Millere11e1ea2010-08-03 16:04:46 +10001180static void
1181control_persist_detach(void)
1182{
1183 pid_t pid;
Damien Miller00d9ae22010-08-17 01:59:31 +10001184 int devnull;
Damien Millere11e1ea2010-08-03 16:04:46 +10001185
1186 debug("%s: backgrounding master process", __func__);
1187
1188 /*
1189 * master (current process) into the background, and make the
1190 * foreground process a client of the backgrounded master.
1191 */
1192 switch ((pid = fork())) {
1193 case -1:
1194 fatal("%s: fork: %s", __func__, strerror(errno));
1195 case 0:
1196 /* Child: master process continues mainloop */
1197 break;
1198 default:
1199 /* Parent: set up mux slave to connect to backgrounded master */
1200 debug2("%s: background process is %ld", __func__, (long)pid);
1201 stdin_null_flag = ostdin_null_flag;
Damien Miller21771e22011-05-15 08:45:50 +10001202 options.request_tty = orequest_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +10001203 tty_flag = otty_flag;
1204 close(muxserver_sock);
1205 muxserver_sock = -1;
Damien Miller5929c522010-09-10 11:17:02 +10001206 options.control_master = SSHCTL_MASTER_NO;
Damien Millere11e1ea2010-08-03 16:04:46 +10001207 muxclient(options.control_path);
1208 /* muxclient() doesn't return on success. */
1209 fatal("Failed to connect to new control master");
1210 }
Damien Miller00d9ae22010-08-17 01:59:31 +10001211 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
1212 error("%s: open(\"/dev/null\"): %s", __func__,
1213 strerror(errno));
1214 } else {
1215 if (dup2(devnull, STDIN_FILENO) == -1 ||
1216 dup2(devnull, STDOUT_FILENO) == -1)
1217 error("%s: dup2: %s", __func__, strerror(errno));
1218 if (devnull > STDERR_FILENO)
1219 close(devnull);
1220 }
Damien Miller98e27dc2013-07-25 11:55:52 +10001221 daemon(1, 1);
Damien Millerea2c1a42011-06-03 12:10:22 +10001222 setproctitle("%s [mux]", options.control_path);
Damien Millere11e1ea2010-08-03 16:04:46 +10001223}
1224
1225/* Do fork() after authentication. Used by "ssh -f" */
1226static void
1227fork_postauth(void)
1228{
1229 if (need_controlpersist_detach)
1230 control_persist_detach();
1231 debug("forking to background");
1232 fork_after_authentication_flag = 0;
1233 if (daemon(1, 1) < 0)
1234 fatal("daemon() failed: %.200s", strerror(errno));
1235}
1236
Darren Tucker9f407c42008-06-13 04:50:27 +10001237/* Callback for remote forward global requests */
1238static void
1239ssh_confirm_remote_forward(int type, u_int32_t seq, void *ctxt)
1240{
1241 Forward *rfwd = (Forward *)ctxt;
1242
Damien Miller4bf648f2009-02-14 16:28:21 +11001243 /* XXX verbose() on failure? */
Darren Tucker9f407c42008-06-13 04:50:27 +10001244 debug("remote forward %s for: listen %d, connect %s:%d",
1245 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
1246 rfwd->listen_port, rfwd->connect_host, rfwd->connect_port);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001247 if (rfwd->listen_port == 0) {
1248 if (type == SSH2_MSG_REQUEST_SUCCESS) {
1249 rfwd->allocated_port = packet_get_int();
1250 logit("Allocated port %u for remote forward to %s:%d",
1251 rfwd->allocated_port,
1252 rfwd->connect_host, rfwd->connect_port);
1253 channel_update_permitted_opens(rfwd->handle,
1254 rfwd->allocated_port);
1255 } else {
1256 channel_update_permitted_opens(rfwd->handle, -1);
1257 }
Damien Miller4bf648f2009-02-14 16:28:21 +11001258 }
1259
Darren Tucker9f407c42008-06-13 04:50:27 +10001260 if (type == SSH2_MSG_REQUEST_FAILURE) {
1261 if (options.exit_on_forward_failure)
1262 fatal("Error: remote port forwarding failed for "
1263 "listen port %d", rfwd->listen_port);
1264 else
1265 logit("Warning: remote port forwarding failed for "
1266 "listen port %d", rfwd->listen_port);
1267 }
Darren Tucker9a2a6092008-07-04 12:53:50 +10001268 if (++remote_forward_confirms_received == options.num_remote_forwards) {
Darren Tucker9f407c42008-06-13 04:50:27 +10001269 debug("All remote forwarding requests processed");
Damien Millere11e1ea2010-08-03 16:04:46 +10001270 if (fork_after_authentication_flag)
1271 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001272 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001273}
1274
Ben Lindstrombba81212001-06-25 05:01:22 +00001275static void
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001276client_cleanup_stdio_fwd(int id, void *arg)
1277{
1278 debug("stdio forwarding: done");
1279 cleanup_exit(0);
1280}
1281
Darren Tucker2d6665d2011-11-04 10:54:22 +11001282static void
1283ssh_init_stdio_forwarding(void)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001284{
1285 Channel *c;
Damien Millere1537f92010-01-26 13:26:22 +11001286 int in, out;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001287
Darren Tucker2d6665d2011-11-04 10:54:22 +11001288 if (stdio_forward_host == NULL)
1289 return;
Damien Miller386feab2013-10-15 12:14:49 +11001290 if (!compat20)
Darren Tucker2d6665d2011-11-04 10:54:22 +11001291 fatal("stdio forwarding require Protocol 2");
Damien Millere1537f92010-01-26 13:26:22 +11001292
Darren Tucker2d6665d2011-11-04 10:54:22 +11001293 debug3("%s: %s:%d", __func__, stdio_forward_host, stdio_forward_port);
1294
1295 if ((in = dup(STDIN_FILENO)) < 0 ||
1296 (out = dup(STDOUT_FILENO)) < 0)
Damien Millere1537f92010-01-26 13:26:22 +11001297 fatal("channel_connect_stdio_fwd: dup() in/out failed");
Darren Tucker2d6665d2011-11-04 10:54:22 +11001298 if ((c = channel_connect_stdio_fwd(stdio_forward_host,
1299 stdio_forward_port, in, out)) == NULL)
1300 fatal("%s: channel_connect_stdio_fwd failed", __func__);
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001301 channel_register_cleanup(c->self, client_cleanup_stdio_fwd, 0);
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001302}
1303
1304static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001305ssh_init_forwarding(void)
1306{
Kevin Steves12057502001-02-05 14:54:34 +00001307 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001308 int i;
Kevin Steves12057502001-02-05 14:54:34 +00001309
Damien Miller0bc1bd82000-11-13 22:57:25 +11001310 /* Initiate local TCP/IP port forwardings. */
1311 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001312 debug("Local connections to %.200s:%d forwarded to remote "
1313 "address %.200s:%d",
Darren Tucker47eede72005-03-14 23:08:12 +11001314 (options.local_forwards[i].listen_host == NULL) ?
1315 (options.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001316 options.local_forwards[i].listen_host,
1317 options.local_forwards[i].listen_port,
1318 options.local_forwards[i].connect_host,
1319 options.local_forwards[i].connect_port);
Damien Millerb16461c2002-01-22 23:29:22 +11001320 success += channel_setup_local_fwd_listener(
Damien Millerf91ee4c2005-03-01 21:24:33 +11001321 options.local_forwards[i].listen_host,
1322 options.local_forwards[i].listen_port,
1323 options.local_forwards[i].connect_host,
1324 options.local_forwards[i].connect_port,
Damien Miller0bc1bd82000-11-13 22:57:25 +11001325 options.gateway_ports);
1326 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10001327 if (i > 0 && success != i && options.exit_on_forward_failure)
1328 fatal("Could not request local forwarding.");
Kevin Steves12057502001-02-05 14:54:34 +00001329 if (i > 0 && success == 0)
1330 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001331
1332 /* Initiate remote TCP/IP port forwardings. */
1333 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001334 debug("Remote connections from %.200s:%d forwarded to "
1335 "local address %.200s:%d",
Damien Miller46d38de2005-07-17 17:02:09 +10001336 (options.remote_forwards[i].listen_host == NULL) ?
Damien Milleraa3bb102005-11-05 15:12:59 +11001337 "LOCALHOST" : options.remote_forwards[i].listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +11001338 options.remote_forwards[i].listen_port,
1339 options.remote_forwards[i].connect_host,
1340 options.remote_forwards[i].connect_port);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001341 options.remote_forwards[i].handle =
1342 channel_request_remote_forwarding(
Damien Millerf91ee4c2005-03-01 21:24:33 +11001343 options.remote_forwards[i].listen_host,
1344 options.remote_forwards[i].listen_port,
1345 options.remote_forwards[i].connect_host,
Darren Tucker68afb8c2011-10-02 18:59:03 +11001346 options.remote_forwards[i].connect_port);
1347 if (options.remote_forwards[i].handle < 0) {
Darren Tuckere7d4b192006-07-12 22:17:10 +10001348 if (options.exit_on_forward_failure)
1349 fatal("Could not request remote forwarding.");
1350 else
1351 logit("Warning: Could not request remote "
1352 "forwarding.");
Darren Tucker68afb8c2011-10-02 18:59:03 +11001353 } else {
1354 client_register_global_confirm(ssh_confirm_remote_forward,
1355 &options.remote_forwards[i]);
Darren Tuckere7d4b192006-07-12 22:17:10 +10001356 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001357 }
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001358
1359 /* Initiate tunnel forwarding. */
1360 if (options.tun_open != SSH_TUNMODE_NO) {
1361 if (client_request_tun_fwd(options.tun_open,
1362 options.tun_local, options.tun_remote) == -1) {
1363 if (options.exit_on_forward_failure)
1364 fatal("Could not request tunnel forwarding.");
1365 else
1366 error("Could not request tunnel forwarding.");
1367 }
1368 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001369}
1370
Ben Lindstrombba81212001-06-25 05:01:22 +00001371static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001372check_agent_present(void)
1373{
1374 if (options.forward_agent) {
Damien Miller788f2122005-11-05 15:14:59 +11001375 /* Clear agent forwarding if we don't have an agent. */
Damien Miller789e95d2002-09-12 09:52:46 +10001376 if (!ssh_agent_present())
Damien Miller0bc1bd82000-11-13 22:57:25 +11001377 options.forward_agent = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001378 }
1379}
1380
Ben Lindstrombba81212001-06-25 05:01:22 +00001381static int
Damien Miller1383bd82000-04-06 12:32:37 +10001382ssh_session(void)
1383{
1384 int type;
Damien Miller1383bd82000-04-06 12:32:37 +10001385 int interactive = 0;
1386 int have_tty = 0;
1387 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +10001388 char *cp;
Damien Miller17e7ed02005-06-17 12:54:33 +10001389 const char *display;
Damien Miller1383bd82000-04-06 12:32:37 +10001390
Damien Miller95def091999-11-25 00:26:21 +11001391 /* Enable compression if requested. */
1392 if (options.compression) {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001393 debug("Requesting compression at level %d.",
1394 options.compression_level);
Damien Miller95def091999-11-25 00:26:21 +11001395
Darren Tuckerd6173c02008-06-13 04:52:53 +10001396 if (options.compression_level < 1 ||
1397 options.compression_level > 9)
1398 fatal("Compression level must be from 1 (fast) to "
1399 "9 (slow, best).");
Damien Miller95def091999-11-25 00:26:21 +11001400
1401 /* Send the request. */
1402 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
1403 packet_put_int(options.compression_level);
1404 packet_send();
1405 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +11001406 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001407 if (type == SSH_SMSG_SUCCESS)
1408 packet_start_compression(options.compression_level);
1409 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +10001410 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +11001411 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001412 packet_disconnect("Protocol error waiting for "
1413 "compression response.");
Damien Miller95def091999-11-25 00:26:21 +11001414 }
1415 /* Allocate a pseudo tty if appropriate. */
1416 if (tty_flag) {
1417 debug("Requesting pty.");
1418
1419 /* Start the packet. */
1420 packet_start(SSH_CMSG_REQUEST_PTY);
1421
1422 /* Store TERM in the packet. There is no limit on the
1423 length of the string. */
1424 cp = getenv("TERM");
1425 if (!cp)
1426 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +00001427 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +11001428
1429 /* Store window size in the packet. */
1430 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1431 memset(&ws, 0, sizeof(ws));
Damien Miller71a73672006-03-26 14:04:36 +11001432 packet_put_int((u_int)ws.ws_row);
1433 packet_put_int((u_int)ws.ws_col);
1434 packet_put_int((u_int)ws.ws_xpixel);
1435 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller95def091999-11-25 00:26:21 +11001436
1437 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001438 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +11001439
1440 /* Send the packet, and wait for it to leave. */
1441 packet_send();
1442 packet_write_wait();
1443
1444 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001445 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +10001446 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001447 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001448 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +10001449 } else if (type == SSH_SMSG_FAILURE)
Darren Tuckerd6173c02008-06-13 04:52:53 +10001450 logit("Warning: Remote host failed or refused to "
1451 "allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +11001452 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001453 packet_disconnect("Protocol error waiting for pty "
1454 "request response.");
Damien Miller95def091999-11-25 00:26:21 +11001455 }
1456 /* Request X11 forwarding if enabled and DISPLAY is set. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001457 display = getenv("DISPLAY");
1458 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001459 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001460 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001461 client_x11_get_proto(display, options.xauth_location,
Damien Miller386feab2013-10-15 12:14:49 +11001462 options.forward_x11_trusted,
Damien Miller1ab6a512010-06-26 10:02:24 +10001463 options.forward_x11_timeout,
1464 &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001465 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001466 debug("Requesting X11 forwarding with authentication "
1467 "spoofing.");
Damien Miller6d7b4372011-06-23 08:31:57 +10001468 x11_request_forwarding_with_spoofing(0, display, proto,
1469 data, 0);
Damien Miller95def091999-11-25 00:26:21 +11001470 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001471 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001472 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001473 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001474 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +10001475 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +10001476 } else {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001477 packet_disconnect("Protocol error waiting for X11 "
1478 "forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +10001479 }
Damien Miller95def091999-11-25 00:26:21 +11001480 }
1481 /* Tell the packet module whether this is an interactive session. */
Damien Miller0dac6fb2010-11-20 15:19:38 +11001482 packet_set_interactive(interactive,
1483 options.ip_qos_interactive, options.ip_qos_bulk);
Damien Miller95def091999-11-25 00:26:21 +11001484
1485 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001486 check_agent_present();
1487
Damien Miller95def091999-11-25 00:26:21 +11001488 if (options.forward_agent) {
1489 debug("Requesting authentication agent forwarding.");
1490 auth_request_forwarding();
1491
1492 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001493 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +11001494 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11001495 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +10001496 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +11001497 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001498
Damien Miller0bc1bd82000-11-13 22:57:25 +11001499 /* Initiate port forwardings. */
Darren Tucker2d6665d2011-11-04 10:54:22 +11001500 ssh_init_stdio_forwarding();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001501 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001502
Darren Tuckerb776c852007-12-02 23:06:35 +11001503 /* Execute a local command */
1504 if (options.local_command != NULL &&
1505 options.permit_local_command)
1506 ssh_local_cmd(options.local_command);
1507
Darren Tucker9a2a6092008-07-04 12:53:50 +10001508 /*
1509 * If requested and we are not interested in replies to remote
1510 * forwarding requests, then let ssh continue in the background.
1511 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001512 if (fork_after_authentication_flag) {
1513 if (options.exit_on_forward_failure &&
1514 options.num_remote_forwards > 0) {
1515 debug("deferring postauth fork until remote forward "
1516 "confirmation received");
1517 } else
1518 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001519 }
Damien Miller5428f641999-11-25 11:54:57 +11001520
1521 /*
1522 * If a command was specified on the command line, execute the
1523 * command now. Otherwise request the server to start a shell.
1524 */
Damien Miller95def091999-11-25 00:26:21 +11001525 if (buffer_len(&command) > 0) {
1526 int len = buffer_len(&command);
1527 if (len > 900)
1528 len = 900;
Darren Tuckerd6173c02008-06-13 04:52:53 +10001529 debug("Sending command: %.*s", len,
1530 (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +11001531 packet_start(SSH_CMSG_EXEC_CMD);
1532 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1533 packet_send();
1534 packet_write_wait();
1535 } else {
1536 debug("Requesting shell.");
1537 packet_start(SSH_CMSG_EXEC_SHELL);
1538 packet_send();
1539 packet_write_wait();
1540 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001541
Damien Miller95def091999-11-25 00:26:21 +11001542 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001543 return client_loop(have_tty, tty_flag ?
1544 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +10001545}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001546
Ben Lindstromf558cf62001-09-20 23:13:49 +00001547/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001548static void
Damien Millerd530f5f2010-05-21 14:57:10 +10001549ssh_session2_setup(int id, int success, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001550{
Damien Miller3756dce2004-06-18 01:17:29 +10001551 extern char **environ;
Damien Miller17e7ed02005-06-17 12:54:33 +10001552 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +10001553 int interactive = tty_flag;
Damien Miller17e7ed02005-06-17 12:54:33 +10001554
Damien Millerd530f5f2010-05-21 14:57:10 +10001555 if (!success)
1556 return; /* No need for error message, channels code sens one */
1557
Damien Miller46d38de2005-07-17 17:02:09 +10001558 display = getenv("DISPLAY");
Damien Miller17e7ed02005-06-17 12:54:33 +10001559 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001560 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001561 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001562 client_x11_get_proto(display, options.xauth_location,
Damien Miller1ab6a512010-06-26 10:02:24 +10001563 options.forward_x11_trusted,
1564 options.forward_x11_timeout, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001565 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001566 debug("Requesting X11 forwarding with authentication "
1567 "spoofing.");
Damien Miller6d7b4372011-06-23 08:31:57 +10001568 x11_request_forwarding_with_spoofing(id, display, proto,
1569 data, 1);
1570 client_expect_confirm(id, "X11 forwarding", CONFIRM_WARN);
1571 /* XXX exit_on_forward_failure */
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001572 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001573 }
1574
Damien Miller0bc1bd82000-11-13 22:57:25 +11001575 check_agent_present();
1576 if (options.forward_agent) {
1577 debug("Requesting authentication agent forwarding.");
1578 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1579 packet_send();
1580 }
1581
Darren Tucker7b305012012-07-02 18:55:09 +10001582 /* Tell the packet module whether this is an interactive session. */
1583 packet_set_interactive(interactive,
1584 options.ip_qos_interactive, options.ip_qos_bulk);
1585
Damien Miller0e220db2004-06-15 10:34:08 +10001586 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
Damien Miller5771ed72008-05-19 15:35:33 +10001587 NULL, fileno(stdin), &command, environ);
Damien Miller1383bd82000-04-06 12:32:37 +10001588}
1589
Ben Lindstromf558cf62001-09-20 23:13:49 +00001590/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001591static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001592ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001593{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001594 Channel *c;
1595 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001596
Damien Millercaf6dd62000-08-29 11:33:50 +11001597 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001598 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001599 } else {
1600 in = dup(STDIN_FILENO);
1601 }
1602 out = dup(STDOUT_FILENO);
1603 err = dup(STDERR_FILENO);
1604
1605 if (in < 0 || out < 0 || err < 0)
1606 fatal("dup() in/out/err failed");
1607
Damien Miller69b69aa2000-10-28 14:19:58 +11001608 /* enable nonblocking unless tty */
1609 if (!isatty(in))
1610 set_nonblock(in);
1611 if (!isatty(out))
1612 set_nonblock(out);
1613 if (!isatty(err))
1614 set_nonblock(err);
1615
Damien Millere4340be2000-09-16 13:29:08 +11001616 window = CHAN_SES_WINDOW_DEFAULT;
1617 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001618 if (tty_flag) {
1619 window >>= 1;
1620 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001621 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001622 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001623 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001624 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001625 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001626
Ben Lindstromf558cf62001-09-20 23:13:49 +00001627 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001628
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001629 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001630 if (!no_shell_flag)
Damien Millerb84886b2008-05-19 15:05:07 +10001631 channel_register_open_confirm(c->self,
1632 ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001633
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001634 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001635}
1636
Ben Lindstrombba81212001-06-25 05:01:22 +00001637static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001638ssh_session2(void)
1639{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001640 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001641
1642 /* XXX should be pre-session */
Darren Tucker2d6665d2011-11-04 10:54:22 +11001643 if (!options.control_persist)
1644 ssh_init_stdio_forwarding();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001645 ssh_init_forwarding();
1646
Damien Millere11e1ea2010-08-03 16:04:46 +10001647 /* Start listening for multiplex clients */
1648 muxserver_listen();
1649
1650 /*
Darren Tucker2d6665d2011-11-04 10:54:22 +11001651 * If we are in control persist mode and have a working mux listen
1652 * socket, then prepare to background ourselves and have a foreground
1653 * client attach as a control slave.
1654 * NB. we must save copies of the flags that we override for
Damien Millere11e1ea2010-08-03 16:04:46 +10001655 * the backgrounding, since we defer attachment of the slave until
1656 * after the connection is fully established (in particular,
1657 * async rfwd replies have been received for ExitOnForwardFailure).
1658 */
1659 if (options.control_persist && muxserver_sock != -1) {
1660 ostdin_null_flag = stdin_null_flag;
1661 ono_shell_flag = no_shell_flag;
Damien Miller21771e22011-05-15 08:45:50 +10001662 orequest_tty = options.request_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +10001663 otty_flag = tty_flag;
1664 stdin_null_flag = 1;
1665 no_shell_flag = 1;
Damien Millere11e1ea2010-08-03 16:04:46 +10001666 tty_flag = 0;
1667 if (!fork_after_authentication_flag)
1668 need_controlpersist_detach = 1;
1669 fork_after_authentication_flag = 1;
1670 }
Darren Tucker2d6665d2011-11-04 10:54:22 +11001671 /*
1672 * ControlPersist mux listen socket setup failed, attempt the
1673 * stdio forward setup that we skipped earlier.
1674 */
1675 if (options.control_persist && muxserver_sock == -1)
1676 ssh_init_stdio_forwarding();
Damien Millere11e1ea2010-08-03 16:04:46 +10001677
Ben Lindstromf558cf62001-09-20 23:13:49 +00001678 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1679 id = ssh_session2_open();
Damien Miller649fe022013-07-18 16:13:55 +10001680 else {
1681 packet_set_interactive(
1682 options.control_master == SSHCTL_MASTER_NO,
1683 options.ip_qos_interactive, options.ip_qos_bulk);
1684 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001685
Darren Tucker8901fa92008-06-11 09:34:01 +10001686 /* If we don't expect to open a new session, then disallow it */
Damien Miller456e6f02008-11-03 19:20:10 +11001687 if (options.control_master == SSHCTL_MASTER_NO &&
1688 (datafellows & SSH_NEW_OPENSSH)) {
Darren Tucker8901fa92008-06-11 09:34:01 +10001689 debug("Requesting no-more-sessions@openssh.com");
1690 packet_start(SSH2_MSG_GLOBAL_REQUEST);
1691 packet_put_cstring("no-more-sessions@openssh.com");
1692 packet_put_char(0);
1693 packet_send();
1694 }
1695
Damien Millerd27b9472005-12-13 19:29:02 +11001696 /* Execute a local command */
1697 if (options.local_command != NULL &&
1698 options.permit_local_command)
1699 ssh_local_cmd(options.local_command);
1700
Damien Miller1f25ab42010-07-16 13:56:23 +10001701 /*
1702 * If requested and we are not interested in replies to remote
1703 * forwarding requests, then let ssh continue in the background.
1704 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001705 if (fork_after_authentication_flag) {
1706 if (options.exit_on_forward_failure &&
1707 options.num_remote_forwards > 0) {
1708 debug("deferring postauth fork until remote forward "
1709 "confirmation received");
1710 } else
1711 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001712 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001713
Darren Tuckerf1de4e52010-01-08 16:54:59 +11001714 if (options.use_roaming)
1715 request_roaming();
1716
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001717 return client_loop(tty_flag, tty_flag ?
1718 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001719}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001720
Ben Lindstrombba81212001-06-25 05:01:22 +00001721static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001722load_public_identity_files(void)
1723{
Damien Miller6b1d53c2006-03-31 23:13:21 +11001724 char *filename, *cp, thishost[NI_MAXHOST];
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001725 char *pwdir = NULL, *pwname = NULL;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001726 int i = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001727 Key *public;
Damien Miller6b1d53c2006-03-31 23:13:21 +11001728 struct passwd *pw;
Damien Miller0a80ca12010-02-27 07:55:05 +11001729 u_int n_ids;
1730 char *identity_files[SSH_MAX_IDENTITY_FILES];
1731 Key *identity_keys[SSH_MAX_IDENTITY_FILES];
Damien Miller7ea845e2010-02-12 09:21:02 +11001732#ifdef ENABLE_PKCS11
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001733 Key **keys;
Damien Miller7ea845e2010-02-12 09:21:02 +11001734 int nkeys;
Damien Miller0a80ca12010-02-27 07:55:05 +11001735#endif /* PKCS11 */
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001736
Damien Miller0a80ca12010-02-27 07:55:05 +11001737 n_ids = 0;
Damien Miller1d2c4562014-02-04 11:18:20 +11001738 memset(identity_files, 0, sizeof(identity_files));
1739 memset(identity_keys, 0, sizeof(identity_keys));
Damien Miller0a80ca12010-02-27 07:55:05 +11001740
1741#ifdef ENABLE_PKCS11
Damien Miller7ea845e2010-02-12 09:21:02 +11001742 if (options.pkcs11_provider != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001743 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
Damien Miller7ea845e2010-02-12 09:21:02 +11001744 (pkcs11_init(!options.batch_mode) == 0) &&
1745 (nkeys = pkcs11_add_provider(options.pkcs11_provider, NULL,
1746 &keys)) > 0) {
Damien Miller7ea845e2010-02-12 09:21:02 +11001747 for (i = 0; i < nkeys; i++) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001748 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
1749 key_free(keys[i]);
1750 continue;
1751 }
1752 identity_keys[n_ids] = keys[i];
1753 identity_files[n_ids] =
Damien Miller7ea845e2010-02-12 09:21:02 +11001754 xstrdup(options.pkcs11_provider); /* XXX */
Damien Miller0a80ca12010-02-27 07:55:05 +11001755 n_ids++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001756 }
Darren Tuckera627d422013-06-02 07:31:17 +10001757 free(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001758 }
Damien Miller7ea845e2010-02-12 09:21:02 +11001759#endif /* ENABLE_PKCS11 */
Damien Miller6b1d53c2006-03-31 23:13:21 +11001760 if ((pw = getpwuid(original_real_uid)) == NULL)
1761 fatal("load_public_identity_files: getpwuid failed");
Darren Tuckere143f062007-12-02 23:21:16 +11001762 pwname = xstrdup(pw->pw_name);
1763 pwdir = xstrdup(pw->pw_dir);
Damien Miller6b1d53c2006-03-31 23:13:21 +11001764 if (gethostname(thishost, sizeof(thishost)) == -1)
1765 fatal("load_public_identity_files: gethostname: %s",
1766 strerror(errno));
Damien Miller0a80ca12010-02-27 07:55:05 +11001767 for (i = 0; i < options.num_identity_files; i++) {
Darren Tucker15fd19c2013-04-05 11:22:26 +11001768 if (n_ids >= SSH_MAX_IDENTITY_FILES ||
1769 strcasecmp(options.identity_files[i], "none") == 0) {
Darren Tuckera627d422013-06-02 07:31:17 +10001770 free(options.identity_files[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +11001771 continue;
1772 }
Damien Miller6b1d53c2006-03-31 23:13:21 +11001773 cp = tilde_expand_filename(options.identity_files[i],
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001774 original_real_uid);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001775 filename = percent_expand(cp, "d", pwdir,
1776 "u", pwname, "l", thishost, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +11001777 "r", options.user, (char *)NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10001778 free(cp);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001779 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001780 debug("identity file %s type %d", filename,
1781 public ? public->type : -1);
Darren Tuckera627d422013-06-02 07:31:17 +10001782 free(options.identity_files[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +11001783 identity_files[n_ids] = filename;
1784 identity_keys[n_ids] = public;
1785
1786 if (++n_ids >= SSH_MAX_IDENTITY_FILES)
1787 continue;
1788
1789 /* Try to add the certificate variant too */
1790 xasprintf(&cp, "%s-cert", filename);
1791 public = key_load_public(cp, NULL);
1792 debug("identity file %s type %d", cp,
1793 public ? public->type : -1);
1794 if (public == NULL) {
Darren Tuckera627d422013-06-02 07:31:17 +10001795 free(cp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001796 continue;
1797 }
1798 if (!key_is_cert(public)) {
1799 debug("%s: key %s type %s is not a certificate",
1800 __func__, cp, key_type(public));
1801 key_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +10001802 free(cp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001803 continue;
1804 }
1805 identity_keys[n_ids] = public;
1806 /* point to the original path, most likely the private key */
1807 identity_files[n_ids] = xstrdup(filename);
1808 n_ids++;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001809 }
Damien Miller0a80ca12010-02-27 07:55:05 +11001810 options.num_identity_files = n_ids;
1811 memcpy(options.identity_files, identity_files, sizeof(identity_files));
1812 memcpy(options.identity_keys, identity_keys, sizeof(identity_keys));
1813
Damien Miller1d2c4562014-02-04 11:18:20 +11001814 explicit_bzero(pwname, strlen(pwname));
Darren Tuckera627d422013-06-02 07:31:17 +10001815 free(pwname);
Damien Miller1d2c4562014-02-04 11:18:20 +11001816 explicit_bzero(pwdir, strlen(pwdir));
Darren Tuckera627d422013-06-02 07:31:17 +10001817 free(pwdir);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001818}
Damien Miller857b02e2010-09-24 22:02:56 +10001819
1820static void
1821main_sigchld_handler(int sig)
1822{
1823 int save_errno = errno;
1824 pid_t pid;
1825 int status;
1826
1827 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
1828 (pid < 0 && errno == EINTR))
1829 ;
1830
1831 signal(sig, main_sigchld_handler);
1832 errno = save_errno;
1833}