blob: a9b685349b14fa8e19d75d86468ce502f86070b9 [file] [log] [blame]
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001/* $OpenBSD: ssh.c,v 1.443 2016/07/15 00:24:30 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>
Damien Millere3b60b52006-07-10 21:08:03 +100051#include <sys/socket.h>
Damien Miller857b02e2010-09-24 22:02:56 +100052#include <sys/wait.h>
Damien Miller03e20032006-03-15 11:16:59 +110053
Damien Millerc7b06362006-03-15 11:53:45 +110054#include <ctype.h>
Darren Tuckerba724052006-07-12 22:24:22 +100055#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100056#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100057#include <netdb.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110058#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110059#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110060#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100061#include <pwd.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110062#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100063#include <stdarg.h>
Damien Miller2d00e632006-07-24 13:53:19 +100064#include <stddef.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100065#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100066#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100067#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100068#include <unistd.h>
deraadt@openbsd.org087266e2015-01-20 23:14:00 +000069#include <limits.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 Miller1f0311c2014-05-15 14:24:09 +100074#ifdef WITH_OPENSSL
Damien Millereba71ba2000-04-29 23:57:08 +100075#include <openssl/evp.h>
Damien Miller0bc1bd82000-11-13 22:57:25 +110076#include <openssl/err.h>
Damien Miller1f0311c2014-05-15 14:24:09 +100077#endif
Darren Tuckerbfaaf962008-02-28 19:13:52 +110078#include "openbsd-compat/openssl-compat.h"
Damien Millerb84886b2008-05-19 15:05:07 +100079#include "openbsd-compat/sys-queue.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080
Damien Millerd7834352006-08-05 12:39:39 +100081#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000083#include "ssh1.h"
Damien Miller1383bd82000-04-06 12:32:37 +100084#include "ssh2.h"
Damien Millerb96c4412010-07-02 13:34:24 +100085#include "canohost.h"
Damien Miller1383bd82000-04-06 12:32:37 +100086#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000087#include "cipher.h"
Damien Miller9c386432014-07-03 21:27:46 +100088#include "digest.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000089#include "packet.h"
90#include "buffer.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000091#include "channels.h"
Damien Millereba71ba2000-04-29 23:57:08 +100092#include "key.h"
Damien Miller994cf142000-07-21 10:19:44 +100093#include "authfd.h"
Damien Millereba71ba2000-04-29 23:57:08 +100094#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000095#include "pathnames.h"
Damien Miller0e220db2004-06-15 10:34:08 +100096#include "dispatch.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000097#include "clientloop.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000098#include "log.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100099#include "misc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000100#include "readconf.h"
101#include "sshconnect.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000102#include "kex.h"
103#include "mac.h"
Darren Tucker06f2bd82004-05-13 16:06:46 +1000104#include "sshpty.h"
Darren Tucker46bc0752004-05-02 22:11:30 +1000105#include "match.h"
Damien Miller0e220db2004-06-15 10:34:08 +1000106#include "msg.h"
Darren Tucker25f60a72004-08-15 17:23:34 +1000107#include "uidswap.h"
Damien Millerb7576772006-07-10 20:23:39 +1000108#include "version.h"
djm@openbsd.org141efe42015-01-14 20:05:27 +0000109#include "ssherr.h"
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000110#include "myproposal.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111
Damien Miller7ea845e2010-02-12 09:21:02 +1100112#ifdef ENABLE_PKCS11
113#include "ssh-pkcs11.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +0000114#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000115
Damien Miller3f905871999-11-15 17:10:57 +1100116extern char *__progname;
Damien Miller3f905871999-11-15 17:10:57 +1100117
Damien Millerea2c1a42011-06-03 12:10:22 +1000118/* Saves a copy of argv for setproctitle emulation */
119#ifndef HAVE_SETPROCTITLE
120static char **saved_av;
121#endif
122
Darren Tuckerd6173c02008-06-13 04:52:53 +1000123/* Flag indicating whether debug mode is on. May be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000124int debug_flag = 0;
125
Damien Miller21771e22011-05-15 08:45:50 +1000126/* Flag indicating whether a tty should be requested */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000127int tty_flag = 0;
128
Damien Miller1383bd82000-04-06 12:32:37 +1000129/* don't exec a shell */
130int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000131
Damien Miller5428f641999-11-25 11:54:57 +1100132/*
133 * Flag indicating that nothing should be read from stdin. This can be set
134 * on the command line.
135 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000136int stdin_null_flag = 0;
137
Damien Miller5428f641999-11-25 11:54:57 +1100138/*
Damien Millere11e1ea2010-08-03 16:04:46 +1000139 * Flag indicating that the current process should be backgrounded and
140 * a new slave launched in the foreground for ControlPersist.
141 */
142int need_controlpersist_detach = 0;
143
144/* Copies of flags for ControlPersist foreground slave */
Damien Miller21771e22011-05-15 08:45:50 +1000145int ostdin_null_flag, ono_shell_flag, otty_flag, orequest_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +1000146
147/*
Damien Miller5428f641999-11-25 11:54:57 +1100148 * Flag indicating that ssh should fork after authentication. This is useful
Ben Lindstromf666fec2002-06-06 19:51:58 +0000149 * so that the passphrase can be entered manually, and then ssh goes to the
Damien Miller5428f641999-11-25 11:54:57 +1100150 * background.
151 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000152int fork_after_authentication_flag = 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,
jmc@openbsd.orgb1ba15f2014-10-09 06:21:31 +0000199"usage: ssh [-1246AaCfGgKkMNnqsTtVvXxYy] [-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"
jmc@openbsd.org846f6fa2015-09-11 06:55:46 +0000201" [-F configfile] [-I pkcs11] [-i identity_file] [-L address]\n"
202" [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
203" [-Q query_option] [-R address] [-S ctl_path] [-W host:port]\n"
Damien Millerbdb352a2013-12-05 10:20:52 +1100204" [-w local_tun[:remote_tun]] [user@]hostname [command]\n"
Damien Miller50955102004-03-22 09:34:58 +1100205 );
Darren Tuckere9a9b712005-12-20 16:15:51 +1100206 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000207}
208
Ben Lindstrombba81212001-06-25 05:01:22 +0000209static int ssh_session(void);
210static int ssh_session2(void);
211static void load_public_identity_files(void);
Damien Miller857b02e2010-09-24 22:02:56 +1000212static void main_sigchld_handler(int);
Damien Millerb1cbfa22008-05-19 16:00:08 +1000213
214/* from muxclient.c */
215void muxclient(const char *);
216void muxserver_listen(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000217
Damien Miller295ee632011-05-29 21:42:31 +1000218/* ~/ expand a list of paths. NB. assumes path[n] is heap-allocated. */
219static void
220tilde_expand_paths(char **paths, u_int num_paths)
221{
222 u_int i;
223 char *cp;
224
225 for (i = 0; i < num_paths; i++) {
226 cp = tilde_expand_filename(paths[i], original_real_uid);
Darren Tuckera627d422013-06-02 07:31:17 +1000227 free(paths[i]);
Damien Miller295ee632011-05-29 21:42:31 +1000228 paths[i] = cp;
229 }
230}
231
Damien Miller13f97b22014-02-24 15:57:55 +1100232/*
233 * Attempt to resolve a host name / port to a set of addresses and
234 * optionally return any CNAMEs encountered along the way.
235 * Returns NULL on failure.
236 * NB. this function must operate with a options having undefined members.
237 */
Damien Miller0faf7472013-10-17 11:47:23 +1100238static struct addrinfo *
Damien Miller13f97b22014-02-24 15:57:55 +1100239resolve_host(const char *name, int port, int logerr, char *cname, size_t clen)
Damien Miller0faf7472013-10-17 11:47:23 +1100240{
241 char strport[NI_MAXSERV];
242 struct addrinfo hints, *res;
243 int gaierr, loglevel = SYSLOG_LEVEL_DEBUG1;
244
Damien Miller13f97b22014-02-24 15:57:55 +1100245 if (port <= 0)
246 port = default_ssh_port();
247
djm@openbsd.orgb1d38a32015-10-15 23:51:40 +0000248 snprintf(strport, sizeof strport, "%d", port);
Damien Miller1d2c4562014-02-04 11:18:20 +1100249 memset(&hints, 0, sizeof(hints));
Damien Miller13f97b22014-02-24 15:57:55 +1100250 hints.ai_family = options.address_family == -1 ?
251 AF_UNSPEC : options.address_family;
Damien Miller0faf7472013-10-17 11:47:23 +1100252 hints.ai_socktype = SOCK_STREAM;
253 if (cname != NULL)
254 hints.ai_flags = AI_CANONNAME;
255 if ((gaierr = getaddrinfo(name, strport, &hints, &res)) != 0) {
256 if (logerr || (gaierr != EAI_NONAME && gaierr != EAI_NODATA))
257 loglevel = SYSLOG_LEVEL_ERROR;
258 do_log2(loglevel, "%s: Could not resolve hostname %.100s: %s",
259 __progname, name, ssh_gai_strerror(gaierr));
260 return NULL;
261 }
262 if (cname != NULL && res->ai_canonname != NULL) {
263 if (strlcpy(cname, res->ai_canonname, clen) >= clen) {
264 error("%s: host \"%s\" cname \"%s\" too long (max %lu)",
265 __func__, name, res->ai_canonname, (u_long)clen);
266 if (clen > 0)
267 *cname = '\0';
268 }
269 }
270 return res;
271}
272
273/*
djm@openbsd.org90109022015-01-16 07:19:48 +0000274 * Attempt to resolve a numeric host address / port to a single address.
275 * Returns a canonical address string.
276 * Returns NULL on failure.
277 * NB. this function must operate with a options having undefined members.
278 */
279static struct addrinfo *
280resolve_addr(const char *name, int port, char *caddr, size_t clen)
281{
282 char addr[NI_MAXHOST], strport[NI_MAXSERV];
283 struct addrinfo hints, *res;
284 int gaierr;
285
286 if (port <= 0)
287 port = default_ssh_port();
288 snprintf(strport, sizeof strport, "%u", port);
289 memset(&hints, 0, sizeof(hints));
290 hints.ai_family = options.address_family == -1 ?
291 AF_UNSPEC : options.address_family;
292 hints.ai_socktype = SOCK_STREAM;
293 hints.ai_flags = AI_NUMERICHOST|AI_NUMERICSERV;
294 if ((gaierr = getaddrinfo(name, strport, &hints, &res)) != 0) {
295 debug2("%s: could not resolve name %.100s as address: %s",
296 __func__, name, ssh_gai_strerror(gaierr));
297 return NULL;
298 }
299 if (res == NULL) {
300 debug("%s: getaddrinfo %.100s returned no addresses",
301 __func__, name);
302 return NULL;
303 }
304 if (res->ai_next != NULL) {
305 debug("%s: getaddrinfo %.100s returned multiple addresses",
306 __func__, name);
307 goto fail;
308 }
309 if ((gaierr = getnameinfo(res->ai_addr, res->ai_addrlen,
310 addr, sizeof(addr), NULL, 0, NI_NUMERICHOST)) != 0) {
311 debug("%s: Could not format address for name %.100s: %s",
312 __func__, name, ssh_gai_strerror(gaierr));
313 goto fail;
314 }
315 if (strlcpy(caddr, addr, clen) >= clen) {
316 error("%s: host \"%s\" addr \"%s\" too long (max %lu)",
317 __func__, name, addr, (u_long)clen);
318 if (clen > 0)
319 *caddr = '\0';
320 fail:
321 freeaddrinfo(res);
322 return NULL;
323 }
324 return res;
325}
326
327/*
Damien Miller0faf7472013-10-17 11:47:23 +1100328 * Check whether the cname is a permitted replacement for the hostname
329 * and perform the replacement if it is.
Damien Miller13f97b22014-02-24 15:57:55 +1100330 * NB. this function must operate with a options having undefined members.
Damien Miller0faf7472013-10-17 11:47:23 +1100331 */
332static int
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000333check_follow_cname(int direct, char **namep, const char *cname)
Damien Miller0faf7472013-10-17 11:47:23 +1100334{
335 int i;
336 struct allowed_cname *rule;
337
338 if (*cname == '\0' || options.num_permitted_cnames == 0 ||
339 strcmp(*namep, cname) == 0)
340 return 0;
Damien Miller38505592013-10-17 11:48:13 +1100341 if (options.canonicalize_hostname == SSH_CANONICALISE_NO)
Damien Miller0faf7472013-10-17 11:47:23 +1100342 return 0;
343 /*
Damien Miller38505592013-10-17 11:48:13 +1100344 * Don't attempt to canonicalize names that will be interpreted by
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000345 * a proxy or jump host unless the user specifically requests so.
Damien Miller0faf7472013-10-17 11:47:23 +1100346 */
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000347 if (!direct &&
Damien Miller38505592013-10-17 11:48:13 +1100348 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS)
Damien Miller0faf7472013-10-17 11:47:23 +1100349 return 0;
350 debug3("%s: check \"%s\" CNAME \"%s\"", __func__, *namep, cname);
351 for (i = 0; i < options.num_permitted_cnames; i++) {
352 rule = options.permitted_cnames + i;
djm@openbsd.orge661a862015-05-04 06:10:48 +0000353 if (match_pattern_list(*namep, rule->source_list, 1) != 1 ||
354 match_pattern_list(cname, rule->target_list, 1) != 1)
Damien Miller0faf7472013-10-17 11:47:23 +1100355 continue;
Damien Miller38505592013-10-17 11:48:13 +1100356 verbose("Canonicalized DNS aliased hostname "
Damien Miller0faf7472013-10-17 11:47:23 +1100357 "\"%s\" => \"%s\"", *namep, cname);
358 free(*namep);
359 *namep = xstrdup(cname);
360 return 1;
361 }
362 return 0;
363}
364
365/*
366 * Attempt to resolve the supplied hostname after applying the user's
Damien Miller51682fa2013-10-17 11:48:31 +1100367 * canonicalization rules. Returns the address list for the host or NULL
368 * if no name was found after canonicalization.
Damien Miller13f97b22014-02-24 15:57:55 +1100369 * NB. this function must operate with a options having undefined members.
Damien Miller0faf7472013-10-17 11:47:23 +1100370 */
371static struct addrinfo *
Damien Miller13f97b22014-02-24 15:57:55 +1100372resolve_canonicalize(char **hostp, int port)
Damien Miller0faf7472013-10-17 11:47:23 +1100373{
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000374 int i, direct, ndots;
djm@openbsd.org90109022015-01-16 07:19:48 +0000375 char *cp, *fullhost, newname[NI_MAXHOST];
Damien Miller0faf7472013-10-17 11:47:23 +1100376 struct addrinfo *addrs;
377
Damien Miller38505592013-10-17 11:48:13 +1100378 if (options.canonicalize_hostname == SSH_CANONICALISE_NO)
Damien Miller0faf7472013-10-17 11:47:23 +1100379 return NULL;
Damien Miller13f97b22014-02-24 15:57:55 +1100380
Damien Miller0faf7472013-10-17 11:47:23 +1100381 /*
Damien Miller38505592013-10-17 11:48:13 +1100382 * Don't attempt to canonicalize names that will be interpreted by
Damien Miller0faf7472013-10-17 11:47:23 +1100383 * a proxy unless the user specifically requests so.
384 */
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000385 direct = option_clear_or_none(options.proxy_command) &&
386 options.jump_host == NULL;
387 if (!direct &&
Damien Miller38505592013-10-17 11:48:13 +1100388 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS)
Damien Miller0faf7472013-10-17 11:47:23 +1100389 return NULL;
Damien Miller13f97b22014-02-24 15:57:55 +1100390
djm@openbsd.org90109022015-01-16 07:19:48 +0000391 /* Try numeric hostnames first */
392 if ((addrs = resolve_addr(*hostp, port,
393 newname, sizeof(newname))) != NULL) {
394 debug2("%s: hostname %.100s is address", __func__, *hostp);
395 if (strcasecmp(*hostp, newname) != 0) {
396 debug2("%s: canonicalised address \"%s\" => \"%s\"",
397 __func__, *hostp, newname);
398 free(*hostp);
399 *hostp = xstrdup(newname);
400 }
401 return addrs;
402 }
403
djm@openbsd.org5ee00632015-10-16 18:40:49 +0000404 /* If domain name is anchored, then resolve it now */
405 if ((*hostp)[strlen(*hostp) - 1] == '.') {
406 debug3("%s: name is fully qualified", __func__);
407 fullhost = xstrdup(*hostp);
408 if ((addrs = resolve_host(fullhost, port, 0,
409 newname, sizeof(newname))) != NULL)
410 goto found;
411 free(fullhost);
412 goto notfound;
413 }
414
Damien Miller51682fa2013-10-17 11:48:31 +1100415 /* Don't apply canonicalization to sufficiently-qualified hostnames */
Damien Miller0faf7472013-10-17 11:47:23 +1100416 ndots = 0;
417 for (cp = *hostp; *cp != '\0'; cp++) {
418 if (*cp == '.')
419 ndots++;
420 }
Damien Miller38505592013-10-17 11:48:13 +1100421 if (ndots > options.canonicalize_max_dots) {
422 debug3("%s: not canonicalizing hostname \"%s\" (max dots %d)",
423 __func__, *hostp, options.canonicalize_max_dots);
Damien Miller0faf7472013-10-17 11:47:23 +1100424 return NULL;
425 }
426 /* Attempt each supplied suffix */
427 for (i = 0; i < options.num_canonical_domains; i++) {
djm@openbsd.org90109022015-01-16 07:19:48 +0000428 *newname = '\0';
Damien Miller0faf7472013-10-17 11:47:23 +1100429 xasprintf(&fullhost, "%s.%s.", *hostp,
430 options.canonical_domains[i]);
Damien Miller13f97b22014-02-24 15:57:55 +1100431 debug3("%s: attempting \"%s\" => \"%s\"", __func__,
432 *hostp, fullhost);
433 if ((addrs = resolve_host(fullhost, port, 0,
djm@openbsd.org90109022015-01-16 07:19:48 +0000434 newname, sizeof(newname))) == NULL) {
Damien Miller0faf7472013-10-17 11:47:23 +1100435 free(fullhost);
436 continue;
437 }
djm@openbsd.org5ee00632015-10-16 18:40:49 +0000438 found:
Damien Miller0faf7472013-10-17 11:47:23 +1100439 /* Remove trailing '.' */
440 fullhost[strlen(fullhost) - 1] = '\0';
441 /* Follow CNAME if requested */
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000442 if (!check_follow_cname(direct, &fullhost, newname)) {
Damien Miller38505592013-10-17 11:48:13 +1100443 debug("Canonicalized hostname \"%s\" => \"%s\"",
Damien Miller0faf7472013-10-17 11:47:23 +1100444 *hostp, fullhost);
445 }
446 free(*hostp);
447 *hostp = fullhost;
448 return addrs;
449 }
djm@openbsd.org5ee00632015-10-16 18:40:49 +0000450 notfound:
Damien Miller38505592013-10-17 11:48:13 +1100451 if (!options.canonicalize_fallback_local)
Damien Miller13f97b22014-02-24 15:57:55 +1100452 fatal("%s: Could not resolve host \"%s\"", __progname, *hostp);
453 debug2("%s: host %s not found in any suffix", __func__, *hostp);
Damien Miller0faf7472013-10-17 11:47:23 +1100454 return NULL;
455}
456
Damien Miller95def091999-11-25 00:26:21 +1100457/*
Damien Miller13f97b22014-02-24 15:57:55 +1100458 * Read per-user configuration file. Ignore the system wide config
459 * file if the user specifies a config file on the command line.
460 */
461static void
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000462process_config_files(const char *host_arg, struct passwd *pw, int post_canon)
Damien Miller13f97b22014-02-24 15:57:55 +1100463{
deraadt@openbsd.org087266e2015-01-20 23:14:00 +0000464 char buf[PATH_MAX];
Damien Miller13f97b22014-02-24 15:57:55 +1100465 int r;
466
467 if (config != NULL) {
468 if (strcasecmp(config, "none") != 0 &&
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000469 !read_config_file(config, pw, host, host_arg, &options,
470 SSHCONF_USERCONF | (post_canon ? SSHCONF_POSTCANON : 0)))
Damien Miller13f97b22014-02-24 15:57:55 +1100471 fatal("Can't open user config file %.100s: "
472 "%.100s", config, strerror(errno));
473 } else {
474 r = snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir,
475 _PATH_SSH_USER_CONFFILE);
476 if (r > 0 && (size_t)r < sizeof(buf))
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000477 (void)read_config_file(buf, pw, host, host_arg,
478 &options, SSHCONF_CHECKPERM | SSHCONF_USERCONF |
479 (post_canon ? SSHCONF_POSTCANON : 0));
Damien Miller13f97b22014-02-24 15:57:55 +1100480
481 /* Read systemwide configuration file after user config. */
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000482 (void)read_config_file(_PATH_HOST_CONFIG_FILE, pw,
483 host, host_arg, &options,
484 post_canon ? SSHCONF_POSTCANON : 0);
485 }
486}
487
488/* Rewrite the port number in an addrinfo list of addresses */
489static void
490set_addrinfo_port(struct addrinfo *addrs, int port)
491{
492 struct addrinfo *addr;
493
494 for (addr = addrs; addr != NULL; addr = addr->ai_next) {
495 switch (addr->ai_family) {
496 case AF_INET:
497 ((struct sockaddr_in *)addr->ai_addr)->
498 sin_port = htons(port);
499 break;
500 case AF_INET6:
501 ((struct sockaddr_in6 *)addr->ai_addr)->
502 sin6_port = htons(port);
503 break;
504 }
Damien Miller13f97b22014-02-24 15:57:55 +1100505 }
506}
507
508/*
Damien Miller95def091999-11-25 00:26:21 +1100509 * Main program for the ssh client.
510 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000511int
512main(int ac, char **av)
513{
djm@openbsd.org95767262016-03-07 19:02:43 +0000514 struct ssh *ssh = NULL;
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000515 int i, r, opt, exit_status, use_syslog, direct, config_test = 0;
deraadt@openbsd.org087266e2015-01-20 23:14:00 +0000516 char *p, *cp, *line, *argv0, buf[PATH_MAX], *host_arg, *logfile;
Damien Millerdfc85fa2011-05-15 08:44:02 +1000517 char thishost[NI_MAXHOST], shorthost[NI_MAXHOST], portstr[NI_MAXSERV];
djm@openbsd.org674b3b62015-09-11 03:47:28 +0000518 char cname[NI_MAXHOST], uidstr[32], *conn_hash_hex;
Damien Miller95def091999-11-25 00:26:21 +1100519 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000520 struct passwd *pw;
Damien Miller194fd902013-10-15 12:13:05 +1100521 int timeout_ms;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000522 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000523 extern char *optarg;
Damien Miller7acefbb2014-07-18 14:11:24 +1000524 struct Forward fwd;
Damien Miller0faf7472013-10-17 11:47:23 +1100525 struct addrinfo *addrs = NULL;
Damien Miller9c386432014-07-03 21:27:46 +1000526 struct ssh_digest_ctx *md;
527 u_char conn_hash[SSH_DIGEST_MAX_LENGTH];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000528
dtucker@openbsd.orgffb1e7e2016-02-15 09:47:49 +0000529 ssh_malloc_init(); /* must be called before any mallocs */
Darren Tuckerce321d82005-10-03 18:11:24 +1000530 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
531 sanitise_stdfd();
532
Damien Miller59d3d5b2003-08-22 09:34:41 +1000533 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000534
Damien Millerea2c1a42011-06-03 12:10:22 +1000535#ifndef HAVE_SETPROCTITLE
536 /* Prepare for later setproctitle emulation */
537 /* Save argv so it isn't clobbered by setproctitle() emulation */
538 saved_av = xcalloc(ac + 1, sizeof(*saved_av));
539 for (i = 0; i < ac; i++)
540 saved_av[i] = xstrdup(av[i]);
541 saved_av[i] = NULL;
542 compat_init_setproctitle(ac, av);
543 av = saved_av;
544#endif
545
Damien Miller5428f641999-11-25 11:54:57 +1100546 /*
Damien Miller00d9ae22010-08-17 01:59:31 +1000547 * Discard other fds that are hanging around. These can cause problem
548 * with backgrounded ssh processes started by ControlPersist.
549 */
550 closefrom(STDERR_FILENO + 1);
551
552 /*
Damien Miller5428f641999-11-25 11:54:57 +1100553 * Save the original real uid. It will be needed later (uid-swapping
554 * may clobber the real uid).
555 */
Damien Miller95def091999-11-25 00:26:21 +1100556 original_real_uid = getuid();
557 original_effective_uid = geteuid();
Damien Millera8e06ce2003-11-21 23:48:55 +1100558
Damien Miller50b9a602002-09-04 16:50:06 +1000559 /*
560 * Use uid-swapping to give up root privileges for the duration of
561 * option processing. We will re-instantiate the rights when we are
562 * ready to create the privileged port, and will permanently drop
563 * them when the port has been created (actually, when the connection
564 * has been made, as we may need to create the port several times).
565 */
566 PRIV_END;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000567
Damien Miller05dd7952000-10-01 00:42:48 +1100568#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100569 /* If we are installed setuid root be careful to not drop core. */
570 if (original_real_uid != original_effective_uid) {
571 struct rlimit rlim;
572 rlim.rlim_cur = rlim.rlim_max = 0;
573 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
574 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000575 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100576#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000577 /* Get user data. */
578 pw = getpwuid(original_real_uid);
579 if (!pw) {
Damien Miller3009d3c2013-07-20 13:22:31 +1000580 logit("No user exists for uid %lu", (u_long)original_real_uid);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100581 exit(255);
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000582 }
583 /* Take a copy of the returned structure. */
584 pw = pwcopy(pw);
585
Damien Miller5428f641999-11-25 11:54:57 +1100586 /*
Damien Miller5428f641999-11-25 11:54:57 +1100587 * Set our umask to something reasonable, as some files are created
588 * with the default umask. This will make them world-readable but
589 * writable only by the owner, which is ok for all files for which we
590 * don't set the modes explicitly.
591 */
Damien Miller95def091999-11-25 00:26:21 +1100592 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000593
Darren Tuckerd6173c02008-06-13 04:52:53 +1000594 /*
595 * Initialize option structure to indicate that no values have been
596 * set.
597 */
Damien Miller95def091999-11-25 00:26:21 +1100598 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000599
Damien Miller95def091999-11-25 00:26:21 +1100600 /* Parse command-line arguments. */
601 host = NULL;
Damien Millere272a5b2008-11-03 19:22:37 +1100602 use_syslog = 0;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000603 logfile = NULL;
Darren Tucker72efd742009-06-21 17:48:00 +1000604 argv0 = av[0];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000605
Damien Miller2ecb6bd2006-03-15 12:03:53 +1100606 again:
Darren Tuckerd6173c02008-06-13 04:52:53 +1000607 while ((opt = getopt(ac, av, "1246ab:c:e:fgi:kl:m:no:p:qstvx"
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000608 "ACD:E:F:GI:J:KL:MNO:PQ:R:S:TVw:W:XYy")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100609 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000610 case '1':
611 options.protocol = SSH_PROTO_1;
612 break;
Damien Miller4af51302000-04-16 11:18:38 +1000613 case '2':
614 options.protocol = SSH_PROTO_2;
615 break;
Damien Miller34132e52000-01-14 15:45:46 +1100616 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000617 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100618 break;
Damien Miller34132e52000-01-14 15:45:46 +1100619 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000620 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100621 break;
Damien Miller95def091999-11-25 00:26:21 +1100622 case 'n':
623 stdin_null_flag = 1;
624 break;
Damien Miller95def091999-11-25 00:26:21 +1100625 case 'f':
626 fork_after_authentication_flag = 1;
627 stdin_null_flag = 1;
628 break;
Damien Miller95def091999-11-25 00:26:21 +1100629 case 'x':
630 options.forward_x11 = 0;
631 break;
Damien Miller95def091999-11-25 00:26:21 +1100632 case 'X':
633 options.forward_x11 = 1;
634 break;
Damien Millere272a5b2008-11-03 19:22:37 +1100635 case 'y':
636 use_syslog = 1;
637 break;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000638 case 'E':
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000639 logfile = optarg;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000640 break;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000641 case 'G':
642 config_test = 1;
643 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000644 case 'Y':
645 options.forward_x11 = 1;
646 options.forward_x11_trusted = 1;
647 break;
Damien Miller95def091999-11-25 00:26:21 +1100648 case 'g':
Damien Miller7acefbb2014-07-18 14:11:24 +1000649 options.fwd_opts.gateway_ports = 1;
Damien Miller95def091999-11-25 00:26:21 +1100650 break;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100651 case 'O':
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +0000652 if (options.stdio_forward_host != NULL)
Damien Millere1537f92010-01-26 13:26:22 +1100653 fatal("Cannot specify multiplexing "
654 "command with -W");
655 else if (muxclient_command != 0)
656 fatal("Multiplexing command already specified");
Darren Tucker7ebfc102004-11-07 20:06:19 +1100657 if (strcmp(optarg, "check") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000658 muxclient_command = SSHMUX_COMMAND_ALIVE_CHECK;
Damien Miller388f6fc2010-05-21 14:57:35 +1000659 else if (strcmp(optarg, "forward") == 0)
660 muxclient_command = SSHMUX_COMMAND_FORWARD;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100661 else if (strcmp(optarg, "exit") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000662 muxclient_command = SSHMUX_COMMAND_TERMINATE;
Damien Miller6c3eec72011-05-05 14:16:22 +1000663 else if (strcmp(optarg, "stop") == 0)
664 muxclient_command = SSHMUX_COMMAND_STOP;
Damien Millerf6dff7c2011-09-22 21:38:52 +1000665 else if (strcmp(optarg, "cancel") == 0)
666 muxclient_command = SSHMUX_COMMAND_CANCEL_FWD;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100667 else
668 fatal("Invalid multiplex command.");
669 break;
Damien Miller147bba32002-09-04 16:46:06 +1000670 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100671 options.use_privileged_port = 0;
672 break;
Damien Millerd937dc02013-12-05 10:19:54 +1100673 case 'Q':
Damien Millerea111192013-04-23 19:24:32 +1000674 cp = NULL;
Damien Millerd937dc02013-12-05 10:19:54 +1100675 if (strcmp(optarg, "cipher") == 0)
Damien Miller0fde8ac2013-11-21 14:12:23 +1100676 cp = cipher_alg_list('\n', 0);
Damien Millerd937dc02013-12-05 10:19:54 +1100677 else if (strcmp(optarg, "cipher-auth") == 0)
Damien Miller0fde8ac2013-11-21 14:12:23 +1100678 cp = cipher_alg_list('\n', 1);
Damien Millerd937dc02013-12-05 10:19:54 +1100679 else if (strcmp(optarg, "mac") == 0)
Damien Miller690d9892013-11-08 12:16:49 +1100680 cp = mac_alg_list('\n');
Damien Millerd937dc02013-12-05 10:19:54 +1100681 else if (strcmp(optarg, "kex") == 0)
Damien Miller690d9892013-11-08 12:16:49 +1100682 cp = kex_alg_list('\n');
Damien Millerd937dc02013-12-05 10:19:54 +1100683 else if (strcmp(optarg, "key") == 0)
Damien Miller5be9d9e2013-12-07 11:24:01 +1100684 cp = key_alg_list(0, 0);
685 else if (strcmp(optarg, "key-cert") == 0)
686 cp = key_alg_list(1, 0);
687 else if (strcmp(optarg, "key-plain") == 0)
688 cp = key_alg_list(0, 1);
djm@openbsd.org68d2dfc2015-03-03 06:48:58 +0000689 else if (strcmp(optarg, "protocol-version") == 0) {
690#ifdef WITH_SSH1
691 cp = xstrdup("1\n2");
692#else
693 cp = xstrdup("2");
694#endif
695 }
Damien Millerea111192013-04-23 19:24:32 +1000696 if (cp == NULL)
697 fatal("Unsupported query \"%s\"", optarg);
698 printf("%s\n", cp);
699 free(cp);
700 exit(0);
701 break;
Damien Miller95def091999-11-25 00:26:21 +1100702 case 'a':
703 options.forward_agent = 0;
704 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000705 case 'A':
706 options.forward_agent = 1;
707 break;
Damien Miller95def091999-11-25 00:26:21 +1100708 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100709 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100710 break;
Darren Tucker415bddc2007-06-12 23:43:16 +1000711 case 'K':
712 options.gss_authentication = 1;
713 options.gss_deleg_creds = 1;
714 break;
Damien Miller95def091999-11-25 00:26:21 +1100715 case 'i':
dtucker@openbsd.org03239c12015-10-25 23:42:00 +0000716 p = tilde_expand_filename(optarg, original_real_uid);
717 if (stat(p, &st) < 0)
Damien Millerf4614452001-07-14 12:18:10 +1000718 fprintf(stderr, "Warning: Identity file %s "
dtucker@openbsd.org03239c12015-10-25 23:42:00 +0000719 "not accessible: %s.\n", p,
Damien Miller3eb48b62005-03-01 21:15:46 +1100720 strerror(errno));
dtucker@openbsd.org03239c12015-10-25 23:42:00 +0000721 else
722 add_identity_file(&options, NULL, p, 1);
723 free(p);
Damien Miller95def091999-11-25 00:26:21 +1100724 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000725 case 'I':
Damien Miller7ea845e2010-02-12 09:21:02 +1100726#ifdef ENABLE_PKCS11
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000727 free(options.pkcs11_provider);
Damien Miller7ea845e2010-02-12 09:21:02 +1100728 options.pkcs11_provider = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000729#else
Damien Miller7ea845e2010-02-12 09:21:02 +1100730 fprintf(stderr, "no support for PKCS#11.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000731#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000732 break;
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000733 case 'J':
734 if (options.jump_host != NULL)
735 fatal("Only a single -J option permitted");
736 if (options.proxy_command != NULL)
737 fatal("Cannot specify -J with ProxyCommand");
738 if (parse_jump(optarg, &options, 1) == -1)
739 fatal("Invalid -J argument");
740 options.proxy_command = xstrdup("none");
741 break;
Damien Miller95def091999-11-25 00:26:21 +1100742 case 't':
Damien Miller21771e22011-05-15 08:45:50 +1000743 if (options.request_tty == REQUEST_TTY_YES)
744 options.request_tty = REQUEST_TTY_FORCE;
745 else
746 options.request_tty = REQUEST_TTY_YES;
Damien Miller95def091999-11-25 00:26:21 +1100747 break;
Damien Miller95def091999-11-25 00:26:21 +1100748 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000749 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100750 debug_flag = 1;
751 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000752 } else {
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000753 if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
754 debug_flag++;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000755 options.log_level++;
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000756 }
Darren Tuckere98dfa32003-07-19 19:54:31 +1000757 }
Damien Miller03d4d7e2013-04-23 15:21:06 +1000758 break;
Damien Miller95def091999-11-25 00:26:21 +1100759 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100760 fprintf(stderr, "%s, %s\n",
Damien Miller1f0311c2014-05-15 14:24:09 +1000761 SSH_RELEASE,
762#ifdef WITH_OPENSSL
763 SSLeay_version(SSLEAY_VERSION)
764#else
765 "without OpenSSL"
766#endif
767 );
Damien Miller95def091999-11-25 00:26:21 +1100768 if (opt == 'V')
769 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100770 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100771 case 'w':
Damien Miller7b58e802005-12-13 19:33:19 +1100772 if (options.tun_open == -1)
773 options.tun_open = SSH_TUNMODE_DEFAULT;
Damien Millerd27b9472005-12-13 19:29:02 +1100774 options.tun_local = a2tun(optarg, &options.tun_remote);
Damien Miller7b58e802005-12-13 19:33:19 +1100775 if (options.tun_local == SSH_TUNID_ERR) {
Darren Tuckerd6173c02008-06-13 04:52:53 +1000776 fprintf(stderr,
777 "Bad tun device '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100778 exit(255);
Damien Millerd27b9472005-12-13 19:29:02 +1100779 }
780 break;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100781 case 'W':
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +0000782 if (options.stdio_forward_host != NULL)
Damien Millere1537f92010-01-26 13:26:22 +1100783 fatal("stdio forward already specified");
784 if (muxclient_command != 0)
785 fatal("Cannot specify stdio forward with -O");
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100786 if (parse_forward(&fwd, optarg, 1, 0)) {
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +0000787 options.stdio_forward_host = fwd.listen_host;
788 options.stdio_forward_port = fwd.listen_port;
Darren Tuckera627d422013-06-02 07:31:17 +1000789 free(fwd.connect_host);
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100790 } else {
791 fprintf(stderr,
792 "Bad stdio forwarding specification '%s'\n",
793 optarg);
794 exit(255);
795 }
Damien Miller21771e22011-05-15 08:45:50 +1000796 options.request_tty = REQUEST_TTY_NO;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100797 no_shell_flag = 1;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100798 break;
Damien Miller95def091999-11-25 00:26:21 +1100799 case 'q':
800 options.log_level = SYSLOG_LEVEL_QUIET;
801 break;
Damien Miller95def091999-11-25 00:26:21 +1100802 case 'e':
803 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000804 (u_char) optarg[1] >= 64 &&
805 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000806 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100807 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000808 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100809 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000810 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100811 else {
Damien Millerf4614452001-07-14 12:18:10 +1000812 fprintf(stderr, "Bad escape character '%s'.\n",
813 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100814 exit(255);
Damien Miller95def091999-11-25 00:26:21 +1100815 }
816 break;
Damien Miller95def091999-11-25 00:26:21 +1100817 case 'c':
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000818 if (ciphers_valid(*optarg == '+' ?
819 optarg + 1 : optarg)) {
Damien Millereba71ba2000-04-29 23:57:08 +1000820 /* SSH2 only */
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000821 free(options.ciphers);
Damien Millereba71ba2000-04-29 23:57:08 +1000822 options.ciphers = xstrdup(optarg);
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000823 options.cipher = SSH_CIPHER_INVALID;
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000824 break;
Damien Miller95def091999-11-25 00:26:21 +1100825 }
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000826 /* SSH1 only */
827 options.cipher = cipher_number(optarg);
828 if (options.cipher == -1) {
829 fprintf(stderr, "Unknown cipher type '%s'\n",
830 optarg);
831 exit(255);
832 }
833 if (options.cipher == SSH_CIPHER_3DES)
834 options.ciphers = xstrdup("3des-cbc");
835 else if (options.cipher == SSH_CIPHER_BLOWFISH)
836 options.ciphers = xstrdup("blowfish-cbc");
837 else
838 options.ciphers = xstrdup(KEX_CLIENT_ENCRYPT);
Damien Miller95def091999-11-25 00:26:21 +1100839 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000840 case 'm':
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000841 if (mac_valid(optarg)) {
842 free(options.macs);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000843 options.macs = xstrdup(optarg);
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000844 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000845 fprintf(stderr, "Unknown mac type '%s'\n",
846 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100847 exit(255);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000848 }
849 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000850 case 'M':
Damien Millerd14b1e72005-06-16 13:19:41 +1000851 if (options.control_master == SSHCTL_MASTER_YES)
852 options.control_master = SSHCTL_MASTER_ASK;
853 else
854 options.control_master = SSHCTL_MASTER_YES;
Damien Miller0e220db2004-06-15 10:34:08 +1000855 break;
Damien Miller95def091999-11-25 00:26:21 +1100856 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000857 options.port = a2port(optarg);
Damien Miller3dc71ad2009-01-28 16:31:22 +1100858 if (options.port <= 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000859 fprintf(stderr, "Bad port '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100860 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000861 }
Damien Miller95def091999-11-25 00:26:21 +1100862 break;
Damien Miller95def091999-11-25 00:26:21 +1100863 case 'l':
864 options.user = optarg;
865 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000866
Damien Miller95def091999-11-25 00:26:21 +1100867 case 'L':
Damien Miller4bf648f2009-02-14 16:28:21 +1100868 if (parse_forward(&fwd, optarg, 0, 0))
Damien Millerf91ee4c2005-03-01 21:24:33 +1100869 add_local_forward(&options, &fwd);
870 else {
Damien Millerf4614452001-07-14 12:18:10 +1000871 fprintf(stderr,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100872 "Bad local forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000873 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100874 exit(255);
Ben Lindstrom1a174712001-09-12 17:56:15 +0000875 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100876 break;
877
878 case 'R':
Damien Miller4bf648f2009-02-14 16:28:21 +1100879 if (parse_forward(&fwd, optarg, 0, 1)) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100880 add_remote_forward(&options, &fwd);
881 } else {
882 fprintf(stderr,
883 "Bad remote forwarding specification "
884 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100885 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100886 }
Damien Miller95def091999-11-25 00:26:21 +1100887 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000888
889 case 'D':
Damien Miller4bf648f2009-02-14 16:28:21 +1100890 if (parse_forward(&fwd, optarg, 1, 0)) {
Damien Millera699d952008-11-03 19:27:34 +1100891 add_local_forward(&options, &fwd);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100892 } else {
Damien Millera699d952008-11-03 19:27:34 +1100893 fprintf(stderr,
894 "Bad dynamic forwarding specification "
895 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100896 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000897 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000898 break;
899
Damien Miller95def091999-11-25 00:26:21 +1100900 case 'C':
901 options.compression = 1;
902 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000903 case 'N':
904 no_shell_flag = 1;
Damien Miller21771e22011-05-15 08:45:50 +1000905 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000906 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000907 case 'T':
Damien Miller21771e22011-05-15 08:45:50 +1000908 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000909 break;
Damien Miller95def091999-11-25 00:26:21 +1100910 case 'o':
Damien Miller9836cf82003-12-17 16:30:06 +1100911 line = xstrdup(optarg);
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000912 if (process_config_line(&options, pw,
913 host ? host : "", host ? host : "", line,
914 "command-line", 0, NULL, SSHCONF_USERCONF) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100915 exit(255);
Darren Tuckera627d422013-06-02 07:31:17 +1000916 free(line);
Damien Miller95def091999-11-25 00:26:21 +1100917 break;
Damien Miller832562e2001-01-30 09:30:01 +1100918 case 's':
919 subsystem_flag = 1;
920 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000921 case 'S':
mmcc@openbsd.orgd59ce082015-12-10 17:08:40 +0000922 free(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +1000923 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000924 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000925 case 'b':
926 options.bind_address = optarg;
927 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000928 case 'F':
929 config = optarg;
930 break;
Damien Miller95def091999-11-25 00:26:21 +1100931 default:
932 usage();
933 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000934 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000935
Damien Millerf4614452001-07-14 12:18:10 +1000936 ac -= optind;
937 av += optind;
938
Darren Tuckerb8c884a2010-01-08 18:53:43 +1100939 if (ac > 0 && !host) {
Ben Lindstromc276c122002-12-23 02:14:51 +0000940 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000941 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000942 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000943 if (cp == NULL || cp == p)
944 usage();
945 options.user = p;
946 *cp = '\0';
Damien Miller0faf7472013-10-17 11:47:23 +1100947 host = xstrdup(++cp);
Damien Millerf4614452001-07-14 12:18:10 +1000948 } else
Damien Miller0faf7472013-10-17 11:47:23 +1100949 host = xstrdup(*av);
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000950 if (ac > 1) {
951 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000952 goto again;
953 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000954 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000955 }
956
Damien Miller95def091999-11-25 00:26:21 +1100957 /* Check that we got a host name. */
958 if (!host)
959 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000960
Damien Miller0faf7472013-10-17 11:47:23 +1100961 host_arg = xstrdup(host);
962
Damien Miller1f0311c2014-05-15 14:24:09 +1000963#ifdef WITH_OPENSSL
Damien Miller4314c2b2010-09-10 11:12:09 +1000964 OpenSSL_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100965 ERR_load_crypto_strings();
Damien Miller1f0311c2014-05-15 14:24:09 +1000966#endif
Damien Millercb5e44a2000-09-29 12:12:36 +1100967
Damien Miller95def091999-11-25 00:26:21 +1100968 /* Initialize the command to execute on remote host. */
969 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000970
Damien Miller5428f641999-11-25 11:54:57 +1100971 /*
972 * Save the command to execute on the remote host in a buffer. There
973 * is no limit on the length of the command, except by the maximum
974 * packet size. Also sets the tty flag if there is no command.
975 */
Damien Millerf4614452001-07-14 12:18:10 +1000976 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100977 /* No command specified - execute shell on a tty. */
Damien Miller832562e2001-01-30 09:30:01 +1100978 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000979 fprintf(stderr,
980 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100981 usage();
982 }
Damien Miller95def091999-11-25 00:26:21 +1100983 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000984 /* A command has been specified. Store it into the buffer. */
985 for (i = 0; i < ac; i++) {
986 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100987 buffer_append(&command, " ", 1);
988 buffer_append(&command, av[i], strlen(av[i]));
989 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000990 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000991
Damien Miller95def091999-11-25 00:26:21 +1100992 /* Cannot fork to background if no command. */
Darren Tuckerd6173c02008-06-13 04:52:53 +1000993 if (fork_after_authentication_flag && buffer_len(&command) == 0 &&
994 !no_shell_flag)
995 fatal("Cannot fork into background without a command "
996 "to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000997
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000998 /*
999 * Initialize "log" output. Since we are the client all output
Damien Miller03d4d7e2013-04-23 15:21:06 +10001000 * goes to stderr unless otherwise specified by -y or -E.
Ben Lindstrom8a432f52001-03-05 07:24:46 +00001001 */
Damien Miller03d4d7e2013-04-23 15:21:06 +10001002 if (use_syslog && logfile != NULL)
1003 fatal("Can't specify both -y and -E");
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +00001004 if (logfile != NULL)
Damien Miller03d4d7e2013-04-23 15:21:06 +10001005 log_redirect_stderr_to(logfile);
Darren Tucker72efd742009-06-21 17:48:00 +10001006 log_init(argv0,
Darren Tuckerd6173c02008-06-13 04:52:53 +10001007 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
Damien Millere272a5b2008-11-03 19:22:37 +11001008 SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001009
Damien Miller03d4d7e2013-04-23 15:21:06 +10001010 if (debug_flag)
Damien Miller1f0311c2014-05-15 14:24:09 +10001011 logit("%s, %s", SSH_RELEASE,
1012#ifdef WITH_OPENSSL
1013 SSLeay_version(SSLEAY_VERSION)
1014#else
1015 "without OpenSSL"
1016#endif
1017 );
Damien Miller03d4d7e2013-04-23 15:21:06 +10001018
Damien Miller13f97b22014-02-24 15:57:55 +11001019 /* Parse the configuration files */
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001020 process_config_files(host_arg, pw, 0);
Ben Lindstrom83f07d12001-10-03 17:22:29 +00001021
Damien Miller13f97b22014-02-24 15:57:55 +11001022 /* Hostname canonicalisation needs a few options filled. */
1023 fill_default_options_for_canonicalization(&options);
1024
1025 /* If the user has replaced the hostname then take it into use now */
1026 if (options.hostname != NULL) {
1027 /* NB. Please keep in sync with readconf.c:match_cfg_line() */
1028 cp = percent_expand(options.hostname,
1029 "h", host, (char *)NULL);
1030 free(host);
1031 host = cp;
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001032 free(options.hostname);
1033 options.hostname = xstrdup(host);
Damien Miller13f97b22014-02-24 15:57:55 +11001034 }
1035
1036 /* If canonicalization requested then try to apply it */
1037 lowercase(host);
1038 if (options.canonicalize_hostname != SSH_CANONICALISE_NO)
1039 addrs = resolve_canonicalize(&host, options.port);
1040
1041 /*
Damien Miller08b57c62014-02-27 10:17:13 +11001042 * If CanonicalizePermittedCNAMEs have been specified but
1043 * other canonicalization did not happen (by not being requested
1044 * or by failing with fallback) then the hostname may still be changed
1045 * as a result of CNAME following.
1046 *
1047 * Try to resolve the bare hostname name using the system resolver's
1048 * usual search rules and then apply the CNAME follow rules.
1049 *
1050 * Skip the lookup if a ProxyCommand is being used unless the user
1051 * has specifically requested canonicalisation for this case via
1052 * CanonicalizeHostname=always
Damien Miller13f97b22014-02-24 15:57:55 +11001053 */
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001054 direct = option_clear_or_none(options.proxy_command) &&
1055 options.jump_host == NULL;
1056 if (addrs == NULL && options.num_permitted_cnames != 0 && (direct ||
1057 options.canonicalize_hostname == SSH_CANONICALISE_ALWAYS)) {
Damien Miller19439e92014-07-02 15:28:40 +10001058 if ((addrs = resolve_host(host, options.port,
1059 option_clear_or_none(options.proxy_command),
1060 cname, sizeof(cname))) == NULL) {
1061 /* Don't fatal proxied host names not in the DNS */
1062 if (option_clear_or_none(options.proxy_command))
1063 cleanup_exit(255); /* logged in resolve_host */
1064 } else
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001065 check_follow_cname(direct, &host, cname);
Damien Miller13f97b22014-02-24 15:57:55 +11001066 }
1067
1068 /*
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001069 * If canonicalisation is enabled then re-parse the configuration
1070 * files as new stanzas may match.
Damien Miller13f97b22014-02-24 15:57:55 +11001071 */
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001072 if (options.canonicalize_hostname != 0) {
1073 debug("Re-reading configuration after hostname "
1074 "canonicalisation");
1075 free(options.hostname);
1076 options.hostname = xstrdup(host);
1077 process_config_files(host_arg, pw, 1);
1078 /*
1079 * Address resolution happens early with canonicalisation
1080 * enabled and the port number may have changed since, so
1081 * reset it in address list
1082 */
1083 if (addrs != NULL && options.port > 0)
1084 set_addrinfo_port(addrs, options.port);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +00001085 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001086
Damien Miller95def091999-11-25 00:26:21 +11001087 /* Fill configuration defaults. */
1088 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001089
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001090 /*
1091 * If ProxyJump option specified, then construct a ProxyCommand now.
1092 */
1093 if (options.jump_host != NULL) {
1094 char port_s[8];
1095
1096 /* Consistency check */
1097 if (options.proxy_command != NULL)
1098 fatal("inconsistent options: ProxyCommand+ProxyJump");
1099 /* Never use FD passing for ProxyJump */
1100 options.proxy_use_fdpass = 0;
1101 snprintf(port_s, sizeof(port_s), "%d", options.jump_port);
1102 xasprintf(&options.proxy_command,
1103 "ssh%s%s%s%s%s%s%s%s%s%.*s -W %%h:%%p %s",
1104 /* Optional "-l user" argument if jump_user set */
1105 options.jump_user == NULL ? "" : " -l ",
1106 options.jump_user == NULL ? "" : options.jump_user,
1107 /* Optional "-p port" argument if jump_port set */
1108 options.jump_port <= 0 ? "" : " -p ",
1109 options.jump_port <= 0 ? "" : port_s,
1110 /* Optional additional jump hosts ",..." */
1111 options.jump_extra == NULL ? "" : " -J ",
1112 options.jump_extra == NULL ? "" : options.jump_extra,
1113 /* Optional "-F" argumment if -F specified */
1114 config == NULL ? "" : " -F ",
1115 config == NULL ? "" : config,
1116 /* Optional "-v" arguments if -v set */
1117 debug_flag ? " -" : "",
1118 debug_flag, "vvv",
1119 /* Mandatory hostname */
1120 options.jump_host);
1121 debug("Setting implicit ProxyCommand from ProxyJump: %s",
1122 options.proxy_command);
1123 }
1124
Damien Miller13f97b22014-02-24 15:57:55 +11001125 if (options.port == 0)
1126 options.port = default_ssh_port();
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001127 channel_set_af(options.address_family);
1128
Damien Millere9fc72e2013-10-15 12:14:12 +11001129 /* Tidy and check options */
1130 if (options.host_key_alias != NULL)
1131 lowercase(options.host_key_alias);
1132 if (options.proxy_command != NULL &&
1133 strcmp(options.proxy_command, "-") == 0 &&
1134 options.proxy_use_fdpass)
1135 fatal("ProxyCommand=- and ProxyUseFDPass are incompatible");
djm@openbsd.org44732de2015-02-20 22:17:21 +00001136 if (options.control_persist &&
1137 options.update_hostkeys == SSH_UPDATE_HOSTKEYS_ASK) {
1138 debug("UpdateHostKeys=ask is incompatible with ControlPersist; "
1139 "disabling");
1140 options.update_hostkeys = 0;
1141 }
djm@openbsd.org88b6fcd2015-11-19 08:23:27 +00001142 if (options.connection_attempts <= 0)
1143 fatal("Invalid number of ConnectionAttempts");
Damien Miller0faf7472013-10-17 11:47:23 +11001144#ifndef HAVE_CYGWIN
1145 if (original_effective_uid != 0)
1146 options.use_privileged_port = 0;
1147#endif
Damien Millere9fc72e2013-10-15 12:14:12 +11001148
Damien Miller95def091999-11-25 00:26:21 +11001149 /* reinit */
Darren Tucker72efd742009-06-21 17:48:00 +10001150 log_init(argv0, options.log_level, SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001151
Damien Millerfff9f092012-07-06 13:45:01 +10001152 if (options.request_tty == REQUEST_TTY_YES ||
1153 options.request_tty == REQUEST_TTY_FORCE)
1154 tty_flag = 1;
1155
1156 /* Allocate a tty by default if no command specified. */
1157 if (buffer_len(&command) == 0)
1158 tty_flag = options.request_tty != REQUEST_TTY_NO;
1159
1160 /* Force no tty */
1161 if (options.request_tty == REQUEST_TTY_NO || muxclient_command != 0)
1162 tty_flag = 0;
1163 /* Do not allocate a tty if stdin is not a tty. */
1164 if ((!isatty(fileno(stdin)) || stdin_null_flag) &&
1165 options.request_tty != REQUEST_TTY_FORCE) {
1166 if (tty_flag)
1167 logit("Pseudo-terminal will not be allocated because "
1168 "stdin is not a terminal.");
1169 tty_flag = 0;
1170 }
1171
Damien Miller60bc5172001-03-19 09:38:15 +11001172 seed_rng();
1173
Damien Miller95def091999-11-25 00:26:21 +11001174 if (options.user == NULL)
1175 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001176
Damien Millerdfc85fa2011-05-15 08:44:02 +10001177 if (gethostname(thishost, sizeof(thishost)) == -1)
1178 fatal("gethostname: %s", strerror(errno));
1179 strlcpy(shorthost, thishost, sizeof(shorthost));
1180 shorthost[strcspn(thishost, ".")] = '\0';
1181 snprintf(portstr, sizeof(portstr), "%d", options.port);
djm@openbsd.org674b3b62015-09-11 03:47:28 +00001182 snprintf(uidstr, sizeof(uidstr), "%d", pw->pw_uid);
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001183
Damien Miller9c386432014-07-03 21:27:46 +10001184 if ((md = ssh_digest_start(SSH_DIGEST_SHA1)) == NULL ||
1185 ssh_digest_update(md, thishost, strlen(thishost)) < 0 ||
1186 ssh_digest_update(md, host, strlen(host)) < 0 ||
1187 ssh_digest_update(md, portstr, strlen(portstr)) < 0 ||
1188 ssh_digest_update(md, options.user, strlen(options.user)) < 0 ||
1189 ssh_digest_final(md, conn_hash, sizeof(conn_hash)) < 0)
1190 fatal("%s: mux digest failed", __func__);
1191 ssh_digest_free(md);
1192 conn_hash_hex = tohex(conn_hash, ssh_digest_bytes(SSH_DIGEST_SHA1));
1193
Damien Millerdfc85fa2011-05-15 08:44:02 +10001194 if (options.local_command != NULL) {
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001195 debug3("expanding LocalCommand: %s", options.local_command);
1196 cp = options.local_command;
Damien Miller9c386432014-07-03 21:27:46 +10001197 options.local_command = percent_expand(cp,
1198 "C", conn_hash_hex,
1199 "L", shorthost,
1200 "d", pw->pw_dir,
1201 "h", host,
1202 "l", thishost,
1203 "n", host_arg,
1204 "p", portstr,
1205 "r", options.user,
1206 "u", pw->pw_name,
Damien Millerdfc85fa2011-05-15 08:44:02 +10001207 (char *)NULL);
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001208 debug3("expanded LocalCommand: %s", options.local_command);
Darren Tuckera627d422013-06-02 07:31:17 +10001209 free(cp);
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001210 }
1211
Damien Miller0e220db2004-06-15 10:34:08 +10001212 if (options.control_path != NULL) {
Damien Miller6476cad2005-06-16 13:18:34 +10001213 cp = tilde_expand_filename(options.control_path,
1214 original_real_uid);
Darren Tuckera627d422013-06-02 07:31:17 +10001215 free(options.control_path);
Damien Miller9c386432014-07-03 21:27:46 +10001216 options.control_path = percent_expand(cp,
1217 "C", conn_hash_hex,
1218 "L", shorthost,
1219 "h", host,
1220 "l", thishost,
1221 "n", host_arg,
1222 "p", portstr,
1223 "r", options.user,
1224 "u", pw->pw_name,
djm@openbsd.org674b3b62015-09-11 03:47:28 +00001225 "i", uidstr,
Damien Millerdfc85fa2011-05-15 08:44:02 +10001226 (char *)NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10001227 free(cp);
Damien Miller0e220db2004-06-15 10:34:08 +10001228 }
Damien Miller9c386432014-07-03 21:27:46 +10001229 free(conn_hash_hex);
1230
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001231 if (config_test) {
1232 dump_client_config(&options, host);
1233 exit(0);
1234 }
1235
Damien Millerb1cbfa22008-05-19 16:00:08 +10001236 if (muxclient_command != 0 && options.control_path == NULL)
Darren Tucker0814d312005-06-01 23:08:51 +10001237 fatal("No ControlPath specified for \"-O\" command");
Damien Millerd14b1e72005-06-16 13:19:41 +10001238 if (options.control_path != NULL)
Damien Millerb1cbfa22008-05-19 16:00:08 +10001239 muxclient(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +10001240
Damien Miller08b57c62014-02-27 10:17:13 +11001241 /*
1242 * If hostname canonicalisation was not enabled, then we may not
1243 * have yet resolved the hostname. Do so now.
1244 */
1245 if (addrs == NULL && options.proxy_command == NULL) {
djm@openbsd.orga85768a2015-09-04 04:56:09 +00001246 debug2("resolving \"%s\" port %d", host, options.port);
Damien Miller08b57c62014-02-27 10:17:13 +11001247 if ((addrs = resolve_host(host, options.port, 1,
1248 cname, sizeof(cname))) == NULL)
1249 cleanup_exit(255); /* resolve_host logs the error */
1250 }
1251
Damien Miller67bd0622007-09-17 12:06:57 +10001252 timeout_ms = options.connection_timeout * 1000;
1253
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001254 /* Open a connection to the remote host. */
Damien Miller0faf7472013-10-17 11:47:23 +11001255 if (ssh_connect(host, addrs, &hostaddr, options.port,
1256 options.address_family, options.connection_attempts,
1257 &timeout_ms, options.tcp_keep_alive,
1258 options.use_privileged_port) != 0)
1259 exit(255);
1260
Damien Miller28631ce2013-10-26 10:07:56 +11001261 if (addrs != NULL)
1262 freeaddrinfo(addrs);
1263
Damien Miller0faf7472013-10-17 11:47:23 +11001264 packet_set_timeout(options.server_alive_interval,
1265 options.server_alive_count_max);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001266
djm@openbsd.org95767262016-03-07 19:02:43 +00001267 ssh = active_state; /* XXX */
1268
Damien Miller67bd0622007-09-17 12:06:57 +10001269 if (timeout_ms > 0)
1270 debug3("timeout: %d ms remain after connect", timeout_ms);
1271
Damien Miller5428f641999-11-25 11:54:57 +11001272 /*
1273 * If we successfully made the connection, load the host private key
1274 * in case we will need it later for combined rsa-rhosts
1275 * authentication. This must be done before releasing extra
1276 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +00001277 * If we cannot access the private keys, load the public keys
1278 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +11001279 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001280 sensitive_data.nkeys = 0;
1281 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001282 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +00001283 if (options.rhosts_rsa_authentication ||
1284 options.hostbased_authentication) {
Damien Miller0fa47cf2013-12-29 17:53:39 +11001285 sensitive_data.nkeys = 9;
Damien Millerddd63ab2006-03-31 23:10:51 +11001286 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001287 sizeof(Key));
Damien Miller6af914a2010-09-10 11:39:26 +10001288 for (i = 0; i < sensitive_data.nkeys; i++)
1289 sensitive_data.keys[i] = NULL;
Ben Lindstromf9c48842002-06-11 16:37:51 +00001290
1291 PRIV_START;
djm@openbsd.org6091c362015-12-11 03:20:09 +00001292#if WITH_SSH1
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001293 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Darren Tucker232b76f2006-05-06 17:41:51 +10001294 _PATH_HOST_KEY_FILE, "", NULL, NULL);
djm@openbsd.org6091c362015-12-11 03:20:09 +00001295#endif
Damien Miller6af914a2010-09-10 11:39:26 +10001296#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001297 sensitive_data.keys[1] = key_load_private_cert(KEY_ECDSA,
Damien Millereb8b60e2010-08-31 22:41:14 +10001298 _PATH_HOST_ECDSA_KEY_FILE, "", NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001299#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001300 sensitive_data.keys[2] = key_load_private_cert(KEY_ED25519,
1301 _PATH_HOST_ED25519_KEY_FILE, "", NULL);
Damien Millereb8b60e2010-08-31 22:41:14 +10001302 sensitive_data.keys[3] = key_load_private_cert(KEY_RSA,
Damien Millerc1583312010-08-05 13:04:50 +10001303 _PATH_HOST_RSA_KEY_FILE, "", NULL);
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001304 sensitive_data.keys[4] = key_load_private_cert(KEY_DSA,
1305 _PATH_HOST_DSA_KEY_FILE, "", NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001306#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001307 sensitive_data.keys[5] = key_load_private_type(KEY_ECDSA,
Damien Millereb8b60e2010-08-31 22:41:14 +10001308 _PATH_HOST_ECDSA_KEY_FILE, "", NULL, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001309#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001310 sensitive_data.keys[6] = key_load_private_type(KEY_ED25519,
1311 _PATH_HOST_ED25519_KEY_FILE, "", NULL, NULL);
Damien Miller0fa47cf2013-12-29 17:53:39 +11001312 sensitive_data.keys[7] = key_load_private_type(KEY_RSA,
Darren Tucker232b76f2006-05-06 17:41:51 +10001313 _PATH_HOST_RSA_KEY_FILE, "", NULL, NULL);
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001314 sensitive_data.keys[8] = key_load_private_type(KEY_DSA,
1315 _PATH_HOST_DSA_KEY_FILE, "", NULL, NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +00001316 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001317
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +00001318 if (options.hostbased_authentication == 1 &&
1319 sensitive_data.keys[0] == NULL &&
Damien Millereb8b60e2010-08-31 22:41:14 +10001320 sensitive_data.keys[5] == NULL &&
Damien Miller5be9d9e2013-12-07 11:24:01 +11001321 sensitive_data.keys[6] == NULL &&
Damien Miller0fa47cf2013-12-29 17:53:39 +11001322 sensitive_data.keys[7] == NULL &&
1323 sensitive_data.keys[8] == NULL) {
Damien Miller6af914a2010-09-10 11:39:26 +10001324#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001325 sensitive_data.keys[1] = key_load_cert(
Damien Millereb8b60e2010-08-31 22:41:14 +10001326 _PATH_HOST_ECDSA_KEY_FILE);
Damien Miller6af914a2010-09-10 11:39:26 +10001327#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001328 sensitive_data.keys[2] = key_load_cert(
1329 _PATH_HOST_ED25519_KEY_FILE);
Damien Millereb8b60e2010-08-31 22:41:14 +10001330 sensitive_data.keys[3] = key_load_cert(
Damien Millerc1583312010-08-05 13:04:50 +10001331 _PATH_HOST_RSA_KEY_FILE);
Damien Miller0fa47cf2013-12-29 17:53:39 +11001332 sensitive_data.keys[4] = key_load_cert(
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001333 _PATH_HOST_DSA_KEY_FILE);
Damien Miller6af914a2010-09-10 11:39:26 +10001334#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001335 sensitive_data.keys[5] = key_load_public(
Damien Millereb8b60e2010-08-31 22:41:14 +10001336 _PATH_HOST_ECDSA_KEY_FILE, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001337#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001338 sensitive_data.keys[6] = key_load_public(
1339 _PATH_HOST_ED25519_KEY_FILE, NULL);
Damien Miller5be9d9e2013-12-07 11:24:01 +11001340 sensitive_data.keys[7] = key_load_public(
Damien Miller0fa47cf2013-12-29 17:53:39 +11001341 _PATH_HOST_RSA_KEY_FILE, NULL);
1342 sensitive_data.keys[8] = key_load_public(
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001343 _PATH_HOST_DSA_KEY_FILE, NULL);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001344 sensitive_data.external_keysign = 1;
1345 }
Damien Miller95def091999-11-25 00:26:21 +11001346 }
Damien Miller5428f641999-11-25 11:54:57 +11001347 /*
1348 * Get rid of any extra privileges that we may have. We will no
1349 * longer need them. Also, extra privileges could make it very hard
1350 * to read identity files and other non-world-readable files from the
1351 * user's home directory if it happens to be on a NFS volume where
1352 * root is mapped to nobody.
1353 */
Darren Tucker25f60a72004-08-15 17:23:34 +10001354 if (original_effective_uid == 0) {
1355 PRIV_START;
1356 permanently_set_uid(pw);
1357 }
Damien Miller95def091999-11-25 00:26:21 +11001358
Damien Miller5428f641999-11-25 11:54:57 +11001359 /*
1360 * Now that we are back to our own permissions, create ~/.ssh
Damien Miller788f2122005-11-05 15:14:59 +11001361 * directory if it doesn't already exist.
Damien Miller5428f641999-11-25 11:54:57 +11001362 */
Darren Tucker45c66d72011-11-04 10:50:40 +11001363 if (config == NULL) {
1364 r = snprintf(buf, sizeof buf, "%s%s%s", pw->pw_dir,
1365 strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
1366 if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) < 0) {
Darren Tucker8ccb7392010-09-10 12:28:24 +10001367#ifdef WITH_SELINUX
Darren Tucker45c66d72011-11-04 10:50:40 +11001368 ssh_selinux_setfscreatecon(buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001369#endif
Darren Tucker45c66d72011-11-04 10:50:40 +11001370 if (mkdir(buf, 0700) < 0)
1371 error("Could not create directory '%.200s'.",
1372 buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001373#ifdef WITH_SELINUX
Darren Tucker45c66d72011-11-04 10:50:40 +11001374 ssh_selinux_setfscreatecon(NULL);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001375#endif
Darren Tucker45c66d72011-11-04 10:50:40 +11001376 }
Darren Tucker8ccb7392010-09-10 12:28:24 +10001377 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001378 /* load options.identity_files */
1379 load_public_identity_files();
1380
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00001381 /* optionally set the SSH_AUTHSOCKET_ENV_NAME varibale */
markus@openbsd.org1a75d142016-05-04 14:29:58 +00001382 if (options.identity_agent &&
1383 strcmp(options.identity_agent, SSH_AUTHSOCKET_ENV_NAME) != 0) {
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00001384 if (strcmp(options.identity_agent, "none") == 0) {
1385 unsetenv(SSH_AUTHSOCKET_ENV_NAME);
1386 } else {
1387 p = tilde_expand_filename(options.identity_agent,
1388 original_real_uid);
1389 cp = percent_expand(p, "d", pw->pw_dir,
1390 "u", pw->pw_name, "l", thishost, "h", host,
1391 "r", options.user, (char *)NULL);
1392 setenv(SSH_AUTHSOCKET_ENV_NAME, cp, 1);
1393 free(cp);
1394 free(p);
1395 }
1396 }
1397
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001398 /* Expand ~ in known host file names. */
Damien Miller295ee632011-05-29 21:42:31 +10001399 tilde_expand_paths(options.system_hostfiles,
1400 options.num_system_hostfiles);
1401 tilde_expand_paths(options.user_hostfiles, options.num_user_hostfiles);
Damien Miller95def091999-11-25 00:26:21 +11001402
Damien Miller07cd5892001-11-12 10:52:03 +11001403 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
Damien Miller857b02e2010-09-24 22:02:56 +10001404 signal(SIGCHLD, main_sigchld_handler);
Damien Miller07cd5892001-11-12 10:52:03 +11001405
Darren Tuckerd6173c02008-06-13 04:52:53 +10001406 /* Log into the remote system. Never returns if the login fails. */
Damien Miller67bd0622007-09-17 12:06:57 +10001407 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr,
Damien Millerd925dcd2010-12-01 12:21:51 +11001408 options.port, pw, timeout_ms);
Damien Miller95def091999-11-25 00:26:21 +11001409
Damien Miller383ffe62010-06-26 10:02:03 +10001410 if (packet_connection_is_on_socket()) {
1411 verbose("Authenticated to %s ([%s]:%d).", host,
djm@openbsd.org95767262016-03-07 19:02:43 +00001412 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
Damien Miller383ffe62010-06-26 10:02:03 +10001413 } else {
1414 verbose("Authenticated to %s (via proxy).", host);
1415 }
1416
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001417 /* We no longer need the private host keys. Clear them now. */
1418 if (sensitive_data.nkeys != 0) {
1419 for (i = 0; i < sensitive_data.nkeys; i++) {
1420 if (sensitive_data.keys[i] != NULL) {
1421 /* Destroys contents safely */
1422 debug3("clear hostkey %d", i);
1423 key_free(sensitive_data.keys[i]);
1424 sensitive_data.keys[i] = NULL;
1425 }
1426 }
Darren Tuckera627d422013-06-02 07:31:17 +10001427 free(sensitive_data.keys);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001428 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +00001429 for (i = 0; i < options.num_identity_files; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +10001430 free(options.identity_files[i]);
1431 options.identity_files[i] = NULL;
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +00001432 if (options.identity_keys[i]) {
1433 key_free(options.identity_keys[i]);
1434 options.identity_keys[i] = NULL;
1435 }
1436 }
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001437 for (i = 0; i < options.num_certificate_files; i++) {
1438 free(options.certificate_files[i]);
1439 options.certificate_files[i] = NULL;
1440 }
Damien Miller95def091999-11-25 00:26:21 +11001441
Damien Miller1383bd82000-04-06 12:32:37 +10001442 exit_status = compat20 ? ssh_session2() : ssh_session();
1443 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +10001444
Damien Millerb1cbfa22008-05-19 16:00:08 +10001445 if (options.control_path != NULL && muxserver_sock != -1)
Damien Miller0e220db2004-06-15 10:34:08 +10001446 unlink(options.control_path);
1447
Damien Millera41ccca2010-10-07 22:07:32 +11001448 /* Kill ProxyCommand if it is running. */
1449 ssh_kill_proxy_command();
Damien Miller8c4e18a2002-09-19 12:05:02 +10001450
Damien Miller1383bd82000-04-06 12:32:37 +10001451 return exit_status;
1452}
1453
Damien Millere11e1ea2010-08-03 16:04:46 +10001454static void
1455control_persist_detach(void)
1456{
1457 pid_t pid;
djm@openbsd.orgd2d6bf82016-04-29 08:07:53 +00001458 int devnull, keep_stderr;
Damien Millere11e1ea2010-08-03 16:04:46 +10001459
1460 debug("%s: backgrounding master process", __func__);
1461
1462 /*
1463 * master (current process) into the background, and make the
1464 * foreground process a client of the backgrounded master.
1465 */
1466 switch ((pid = fork())) {
1467 case -1:
1468 fatal("%s: fork: %s", __func__, strerror(errno));
1469 case 0:
1470 /* Child: master process continues mainloop */
1471 break;
1472 default:
1473 /* Parent: set up mux slave to connect to backgrounded master */
1474 debug2("%s: background process is %ld", __func__, (long)pid);
1475 stdin_null_flag = ostdin_null_flag;
Damien Miller21771e22011-05-15 08:45:50 +10001476 options.request_tty = orequest_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +10001477 tty_flag = otty_flag;
1478 close(muxserver_sock);
1479 muxserver_sock = -1;
Damien Miller5929c522010-09-10 11:17:02 +10001480 options.control_master = SSHCTL_MASTER_NO;
Damien Millere11e1ea2010-08-03 16:04:46 +10001481 muxclient(options.control_path);
1482 /* muxclient() doesn't return on success. */
1483 fatal("Failed to connect to new control master");
1484 }
Damien Miller00d9ae22010-08-17 01:59:31 +10001485 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
1486 error("%s: open(\"/dev/null\"): %s", __func__,
1487 strerror(errno));
1488 } else {
djm@openbsd.orgd2d6bf82016-04-29 08:07:53 +00001489 keep_stderr = log_is_on_stderr() && debug_flag;
Damien Miller00d9ae22010-08-17 01:59:31 +10001490 if (dup2(devnull, STDIN_FILENO) == -1 ||
djm@openbsd.orgd2d6bf82016-04-29 08:07:53 +00001491 dup2(devnull, STDOUT_FILENO) == -1 ||
1492 (!keep_stderr && dup2(devnull, STDERR_FILENO) == -1))
Damien Miller00d9ae22010-08-17 01:59:31 +10001493 error("%s: dup2: %s", __func__, strerror(errno));
1494 if (devnull > STDERR_FILENO)
1495 close(devnull);
1496 }
Damien Miller98e27dc2013-07-25 11:55:52 +10001497 daemon(1, 1);
Damien Millerea2c1a42011-06-03 12:10:22 +10001498 setproctitle("%s [mux]", options.control_path);
Damien Millere11e1ea2010-08-03 16:04:46 +10001499}
1500
1501/* Do fork() after authentication. Used by "ssh -f" */
1502static void
1503fork_postauth(void)
1504{
1505 if (need_controlpersist_detach)
1506 control_persist_detach();
1507 debug("forking to background");
1508 fork_after_authentication_flag = 0;
1509 if (daemon(1, 1) < 0)
1510 fatal("daemon() failed: %.200s", strerror(errno));
1511}
1512
Darren Tucker9f407c42008-06-13 04:50:27 +10001513/* Callback for remote forward global requests */
1514static void
1515ssh_confirm_remote_forward(int type, u_int32_t seq, void *ctxt)
1516{
Damien Miller7acefbb2014-07-18 14:11:24 +10001517 struct Forward *rfwd = (struct Forward *)ctxt;
Darren Tucker9f407c42008-06-13 04:50:27 +10001518
Damien Miller4bf648f2009-02-14 16:28:21 +11001519 /* XXX verbose() on failure? */
Damien Miller4b3ed642014-07-02 15:29:40 +10001520 debug("remote forward %s for: listen %s%s%d, connect %s:%d",
Darren Tucker9f407c42008-06-13 04:50:27 +10001521 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
Damien Miller7acefbb2014-07-18 14:11:24 +10001522 rfwd->listen_path ? rfwd->listen_path :
1523 rfwd->listen_host ? rfwd->listen_host : "",
1524 (rfwd->listen_path || rfwd->listen_host) ? ":" : "",
1525 rfwd->listen_port, rfwd->connect_path ? rfwd->connect_path :
1526 rfwd->connect_host, rfwd->connect_port);
1527 if (rfwd->listen_path == NULL && rfwd->listen_port == 0) {
Darren Tucker68afb8c2011-10-02 18:59:03 +11001528 if (type == SSH2_MSG_REQUEST_SUCCESS) {
1529 rfwd->allocated_port = packet_get_int();
1530 logit("Allocated port %u for remote forward to %s:%d",
1531 rfwd->allocated_port,
1532 rfwd->connect_host, rfwd->connect_port);
1533 channel_update_permitted_opens(rfwd->handle,
1534 rfwd->allocated_port);
1535 } else {
1536 channel_update_permitted_opens(rfwd->handle, -1);
1537 }
Damien Miller4bf648f2009-02-14 16:28:21 +11001538 }
1539
Darren Tucker9f407c42008-06-13 04:50:27 +10001540 if (type == SSH2_MSG_REQUEST_FAILURE) {
Damien Miller7acefbb2014-07-18 14:11:24 +10001541 if (options.exit_on_forward_failure) {
1542 if (rfwd->listen_path != NULL)
1543 fatal("Error: remote port forwarding failed "
1544 "for listen path %s", rfwd->listen_path);
1545 else
1546 fatal("Error: remote port forwarding failed "
1547 "for listen port %d", rfwd->listen_port);
1548 } else {
1549 if (rfwd->listen_path != NULL)
1550 logit("Warning: remote port forwarding failed "
1551 "for listen path %s", rfwd->listen_path);
1552 else
1553 logit("Warning: remote port forwarding failed "
1554 "for listen port %d", rfwd->listen_port);
1555 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001556 }
Darren Tucker9a2a6092008-07-04 12:53:50 +10001557 if (++remote_forward_confirms_received == options.num_remote_forwards) {
Darren Tucker9f407c42008-06-13 04:50:27 +10001558 debug("All remote forwarding requests processed");
Damien Millere11e1ea2010-08-03 16:04:46 +10001559 if (fork_after_authentication_flag)
1560 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001561 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001562}
1563
Ben Lindstrombba81212001-06-25 05:01:22 +00001564static void
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001565client_cleanup_stdio_fwd(int id, void *arg)
1566{
1567 debug("stdio forwarding: done");
1568 cleanup_exit(0);
1569}
1570
Darren Tucker2d6665d2011-11-04 10:54:22 +11001571static void
Damien Miller357610d2014-07-18 15:04:10 +10001572ssh_stdio_confirm(int id, int success, void *arg)
1573{
1574 if (!success)
1575 fatal("stdio forwarding failed");
1576}
1577
1578static void
Darren Tucker2d6665d2011-11-04 10:54:22 +11001579ssh_init_stdio_forwarding(void)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001580{
1581 Channel *c;
Damien Millere1537f92010-01-26 13:26:22 +11001582 int in, out;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001583
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +00001584 if (options.stdio_forward_host == NULL)
Darren Tucker2d6665d2011-11-04 10:54:22 +11001585 return;
Damien Miller386feab2013-10-15 12:14:49 +11001586 if (!compat20)
Darren Tucker2d6665d2011-11-04 10:54:22 +11001587 fatal("stdio forwarding require Protocol 2");
Damien Millere1537f92010-01-26 13:26:22 +11001588
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +00001589 debug3("%s: %s:%d", __func__, options.stdio_forward_host,
1590 options.stdio_forward_port);
Darren Tucker2d6665d2011-11-04 10:54:22 +11001591
1592 if ((in = dup(STDIN_FILENO)) < 0 ||
1593 (out = dup(STDOUT_FILENO)) < 0)
Damien Millere1537f92010-01-26 13:26:22 +11001594 fatal("channel_connect_stdio_fwd: dup() in/out failed");
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +00001595 if ((c = channel_connect_stdio_fwd(options.stdio_forward_host,
1596 options.stdio_forward_port, in, out)) == NULL)
Darren Tucker2d6665d2011-11-04 10:54:22 +11001597 fatal("%s: channel_connect_stdio_fwd failed", __func__);
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001598 channel_register_cleanup(c->self, client_cleanup_stdio_fwd, 0);
Damien Miller357610d2014-07-18 15:04:10 +10001599 channel_register_open_confirm(c->self, ssh_stdio_confirm, NULL);
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001600}
1601
1602static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001603ssh_init_forwarding(void)
1604{
Kevin Steves12057502001-02-05 14:54:34 +00001605 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001606 int i;
Kevin Steves12057502001-02-05 14:54:34 +00001607
Damien Miller0bc1bd82000-11-13 22:57:25 +11001608 /* Initiate local TCP/IP port forwardings. */
1609 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001610 debug("Local connections to %.200s:%d forwarded to remote "
1611 "address %.200s:%d",
Damien Miller7acefbb2014-07-18 14:11:24 +10001612 (options.local_forwards[i].listen_path != NULL) ?
1613 options.local_forwards[i].listen_path :
Darren Tucker47eede72005-03-14 23:08:12 +11001614 (options.local_forwards[i].listen_host == NULL) ?
Damien Miller7acefbb2014-07-18 14:11:24 +10001615 (options.fwd_opts.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001616 options.local_forwards[i].listen_host,
1617 options.local_forwards[i].listen_port,
Damien Miller7acefbb2014-07-18 14:11:24 +10001618 (options.local_forwards[i].connect_path != NULL) ?
1619 options.local_forwards[i].connect_path :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001620 options.local_forwards[i].connect_host,
1621 options.local_forwards[i].connect_port);
Damien Millerb16461c2002-01-22 23:29:22 +11001622 success += channel_setup_local_fwd_listener(
Damien Miller7acefbb2014-07-18 14:11:24 +10001623 &options.local_forwards[i], &options.fwd_opts);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001624 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10001625 if (i > 0 && success != i && options.exit_on_forward_failure)
1626 fatal("Could not request local forwarding.");
Kevin Steves12057502001-02-05 14:54:34 +00001627 if (i > 0 && success == 0)
1628 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001629
1630 /* Initiate remote TCP/IP port forwardings. */
1631 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001632 debug("Remote connections from %.200s:%d forwarded to "
1633 "local address %.200s:%d",
Damien Miller7acefbb2014-07-18 14:11:24 +10001634 (options.remote_forwards[i].listen_path != NULL) ?
1635 options.remote_forwards[i].listen_path :
Damien Miller46d38de2005-07-17 17:02:09 +10001636 (options.remote_forwards[i].listen_host == NULL) ?
Damien Milleraa3bb102005-11-05 15:12:59 +11001637 "LOCALHOST" : options.remote_forwards[i].listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +11001638 options.remote_forwards[i].listen_port,
Damien Miller7acefbb2014-07-18 14:11:24 +10001639 (options.remote_forwards[i].connect_path != NULL) ?
1640 options.remote_forwards[i].connect_path :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001641 options.remote_forwards[i].connect_host,
1642 options.remote_forwards[i].connect_port);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001643 options.remote_forwards[i].handle =
1644 channel_request_remote_forwarding(
Damien Miller7acefbb2014-07-18 14:11:24 +10001645 &options.remote_forwards[i]);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001646 if (options.remote_forwards[i].handle < 0) {
Darren Tuckere7d4b192006-07-12 22:17:10 +10001647 if (options.exit_on_forward_failure)
1648 fatal("Could not request remote forwarding.");
1649 else
1650 logit("Warning: Could not request remote "
1651 "forwarding.");
Darren Tucker68afb8c2011-10-02 18:59:03 +11001652 } else {
1653 client_register_global_confirm(ssh_confirm_remote_forward,
1654 &options.remote_forwards[i]);
Darren Tuckere7d4b192006-07-12 22:17:10 +10001655 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001656 }
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001657
1658 /* Initiate tunnel forwarding. */
1659 if (options.tun_open != SSH_TUNMODE_NO) {
1660 if (client_request_tun_fwd(options.tun_open,
1661 options.tun_local, options.tun_remote) == -1) {
1662 if (options.exit_on_forward_failure)
1663 fatal("Could not request tunnel forwarding.");
1664 else
1665 error("Could not request tunnel forwarding.");
1666 }
1667 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001668}
1669
Ben Lindstrombba81212001-06-25 05:01:22 +00001670static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001671check_agent_present(void)
1672{
djm@openbsd.org141efe42015-01-14 20:05:27 +00001673 int r;
1674
Damien Miller0bc1bd82000-11-13 22:57:25 +11001675 if (options.forward_agent) {
Damien Miller788f2122005-11-05 15:14:59 +11001676 /* Clear agent forwarding if we don't have an agent. */
djm@openbsd.org141efe42015-01-14 20:05:27 +00001677 if ((r = ssh_get_authentication_socket(NULL)) != 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001678 options.forward_agent = 0;
djm@openbsd.org141efe42015-01-14 20:05:27 +00001679 if (r != SSH_ERR_AGENT_NOT_PRESENT)
1680 debug("ssh_get_authentication_socket: %s",
1681 ssh_err(r));
1682 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001683 }
1684}
1685
Ben Lindstrombba81212001-06-25 05:01:22 +00001686static int
Damien Miller1383bd82000-04-06 12:32:37 +10001687ssh_session(void)
1688{
1689 int type;
Damien Miller1383bd82000-04-06 12:32:37 +10001690 int interactive = 0;
1691 int have_tty = 0;
1692 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +10001693 char *cp;
Damien Miller17e7ed02005-06-17 12:54:33 +10001694 const char *display;
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001695 char *proto = NULL, *data = NULL;
Damien Miller1383bd82000-04-06 12:32:37 +10001696
Damien Miller95def091999-11-25 00:26:21 +11001697 /* Enable compression if requested. */
1698 if (options.compression) {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001699 debug("Requesting compression at level %d.",
1700 options.compression_level);
Damien Miller95def091999-11-25 00:26:21 +11001701
Darren Tuckerd6173c02008-06-13 04:52:53 +10001702 if (options.compression_level < 1 ||
1703 options.compression_level > 9)
1704 fatal("Compression level must be from 1 (fast) to "
1705 "9 (slow, best).");
Damien Miller95def091999-11-25 00:26:21 +11001706
1707 /* Send the request. */
1708 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
1709 packet_put_int(options.compression_level);
1710 packet_send();
1711 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +11001712 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001713 if (type == SSH_SMSG_SUCCESS)
1714 packet_start_compression(options.compression_level);
1715 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +10001716 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +11001717 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001718 packet_disconnect("Protocol error waiting for "
1719 "compression response.");
Damien Miller95def091999-11-25 00:26:21 +11001720 }
1721 /* Allocate a pseudo tty if appropriate. */
1722 if (tty_flag) {
1723 debug("Requesting pty.");
1724
1725 /* Start the packet. */
1726 packet_start(SSH_CMSG_REQUEST_PTY);
1727
1728 /* Store TERM in the packet. There is no limit on the
1729 length of the string. */
1730 cp = getenv("TERM");
1731 if (!cp)
1732 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +00001733 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +11001734
1735 /* Store window size in the packet. */
1736 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1737 memset(&ws, 0, sizeof(ws));
Damien Miller71a73672006-03-26 14:04:36 +11001738 packet_put_int((u_int)ws.ws_row);
1739 packet_put_int((u_int)ws.ws_col);
1740 packet_put_int((u_int)ws.ws_xpixel);
1741 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller95def091999-11-25 00:26:21 +11001742
1743 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001744 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +11001745
1746 /* Send the packet, and wait for it to leave. */
1747 packet_send();
1748 packet_write_wait();
1749
1750 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001751 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +10001752 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001753 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001754 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +10001755 } else if (type == SSH_SMSG_FAILURE)
Darren Tuckerd6173c02008-06-13 04:52:53 +10001756 logit("Warning: Remote host failed or refused to "
1757 "allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +11001758 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001759 packet_disconnect("Protocol error waiting for pty "
1760 "request response.");
Damien Miller95def091999-11-25 00:26:21 +11001761 }
1762 /* Request X11 forwarding if enabled and DISPLAY is set. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001763 display = getenv("DISPLAY");
djm@openbsd.orga58be332015-04-17 13:16:48 +00001764 if (display == NULL && options.forward_x11)
1765 debug("X11 forwarding requested but DISPLAY not set");
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001766 if (options.forward_x11 && client_x11_get_proto(display,
1767 options.xauth_location, options.forward_x11_trusted,
1768 options.forward_x11_timeout, &proto, &data) == 0) {
Damien Millerbd483e72000-04-30 10:00:53 +10001769 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001770 debug("Requesting X11 forwarding with authentication "
1771 "spoofing.");
Damien Miller6d7b4372011-06-23 08:31:57 +10001772 x11_request_forwarding_with_spoofing(0, display, proto,
1773 data, 0);
Damien Miller95def091999-11-25 00:26:21 +11001774 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001775 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001776 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001777 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001778 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +10001779 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +10001780 } else {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001781 packet_disconnect("Protocol error waiting for X11 "
1782 "forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +10001783 }
Damien Miller95def091999-11-25 00:26:21 +11001784 }
1785 /* Tell the packet module whether this is an interactive session. */
Damien Miller0dac6fb2010-11-20 15:19:38 +11001786 packet_set_interactive(interactive,
1787 options.ip_qos_interactive, options.ip_qos_bulk);
Damien Miller95def091999-11-25 00:26:21 +11001788
1789 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001790 check_agent_present();
1791
Damien Miller95def091999-11-25 00:26:21 +11001792 if (options.forward_agent) {
1793 debug("Requesting authentication agent forwarding.");
1794 auth_request_forwarding();
1795
1796 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001797 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +11001798 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11001799 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +10001800 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +11001801 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001802
Damien Miller0bc1bd82000-11-13 22:57:25 +11001803 /* Initiate port forwardings. */
Darren Tucker2d6665d2011-11-04 10:54:22 +11001804 ssh_init_stdio_forwarding();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001805 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001806
Darren Tuckerb776c852007-12-02 23:06:35 +11001807 /* Execute a local command */
1808 if (options.local_command != NULL &&
1809 options.permit_local_command)
1810 ssh_local_cmd(options.local_command);
1811
Darren Tucker9a2a6092008-07-04 12:53:50 +10001812 /*
1813 * If requested and we are not interested in replies to remote
1814 * forwarding requests, then let ssh continue in the background.
1815 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001816 if (fork_after_authentication_flag) {
1817 if (options.exit_on_forward_failure &&
1818 options.num_remote_forwards > 0) {
1819 debug("deferring postauth fork until remote forward "
1820 "confirmation received");
1821 } else
1822 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001823 }
Damien Miller5428f641999-11-25 11:54:57 +11001824
1825 /*
1826 * If a command was specified on the command line, execute the
1827 * command now. Otherwise request the server to start a shell.
1828 */
Damien Miller95def091999-11-25 00:26:21 +11001829 if (buffer_len(&command) > 0) {
1830 int len = buffer_len(&command);
1831 if (len > 900)
1832 len = 900;
Darren Tuckerd6173c02008-06-13 04:52:53 +10001833 debug("Sending command: %.*s", len,
1834 (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +11001835 packet_start(SSH_CMSG_EXEC_CMD);
1836 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1837 packet_send();
1838 packet_write_wait();
1839 } else {
1840 debug("Requesting shell.");
1841 packet_start(SSH_CMSG_EXEC_SHELL);
1842 packet_send();
1843 packet_write_wait();
1844 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001845
Damien Miller95def091999-11-25 00:26:21 +11001846 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001847 return client_loop(have_tty, tty_flag ?
1848 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +10001849}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001850
Ben Lindstromf558cf62001-09-20 23:13:49 +00001851/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001852static void
Damien Millerd530f5f2010-05-21 14:57:10 +10001853ssh_session2_setup(int id, int success, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001854{
Damien Miller3756dce2004-06-18 01:17:29 +10001855 extern char **environ;
Damien Miller17e7ed02005-06-17 12:54:33 +10001856 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +10001857 int interactive = tty_flag;
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001858 char *proto = NULL, *data = NULL;
Damien Miller17e7ed02005-06-17 12:54:33 +10001859
Damien Millerd530f5f2010-05-21 14:57:10 +10001860 if (!success)
1861 return; /* No need for error message, channels code sens one */
1862
Damien Miller46d38de2005-07-17 17:02:09 +10001863 display = getenv("DISPLAY");
djm@openbsd.orga58be332015-04-17 13:16:48 +00001864 if (display == NULL && options.forward_x11)
1865 debug("X11 forwarding requested but DISPLAY not set");
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001866 if (options.forward_x11 && client_x11_get_proto(display,
1867 options.xauth_location, options.forward_x11_trusted,
1868 options.forward_x11_timeout, &proto, &data) == 0) {
Damien Millerbd483e72000-04-30 10:00:53 +10001869 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001870 debug("Requesting X11 forwarding with authentication "
1871 "spoofing.");
Damien Miller6d7b4372011-06-23 08:31:57 +10001872 x11_request_forwarding_with_spoofing(id, display, proto,
1873 data, 1);
1874 client_expect_confirm(id, "X11 forwarding", CONFIRM_WARN);
1875 /* XXX exit_on_forward_failure */
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001876 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001877 }
1878
Damien Miller0bc1bd82000-11-13 22:57:25 +11001879 check_agent_present();
1880 if (options.forward_agent) {
1881 debug("Requesting authentication agent forwarding.");
1882 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1883 packet_send();
1884 }
1885
Darren Tucker7b305012012-07-02 18:55:09 +10001886 /* Tell the packet module whether this is an interactive session. */
1887 packet_set_interactive(interactive,
1888 options.ip_qos_interactive, options.ip_qos_bulk);
1889
Damien Miller0e220db2004-06-15 10:34:08 +10001890 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
Damien Miller5771ed72008-05-19 15:35:33 +10001891 NULL, fileno(stdin), &command, environ);
Damien Miller1383bd82000-04-06 12:32:37 +10001892}
1893
Ben Lindstromf558cf62001-09-20 23:13:49 +00001894/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001895static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001896ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001897{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001898 Channel *c;
1899 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001900
Damien Millercaf6dd62000-08-29 11:33:50 +11001901 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001902 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001903 } else {
1904 in = dup(STDIN_FILENO);
1905 }
1906 out = dup(STDOUT_FILENO);
1907 err = dup(STDERR_FILENO);
1908
1909 if (in < 0 || out < 0 || err < 0)
1910 fatal("dup() in/out/err failed");
1911
Damien Miller69b69aa2000-10-28 14:19:58 +11001912 /* enable nonblocking unless tty */
1913 if (!isatty(in))
1914 set_nonblock(in);
1915 if (!isatty(out))
1916 set_nonblock(out);
1917 if (!isatty(err))
1918 set_nonblock(err);
1919
Damien Millere4340be2000-09-16 13:29:08 +11001920 window = CHAN_SES_WINDOW_DEFAULT;
1921 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001922 if (tty_flag) {
1923 window >>= 1;
1924 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001925 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001926 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001927 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001928 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001929 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001930
Ben Lindstromf558cf62001-09-20 23:13:49 +00001931 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001932
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001933 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001934 if (!no_shell_flag)
Damien Millerb84886b2008-05-19 15:05:07 +10001935 channel_register_open_confirm(c->self,
1936 ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001937
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001938 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001939}
1940
Ben Lindstrombba81212001-06-25 05:01:22 +00001941static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001942ssh_session2(void)
1943{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001944 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001945
1946 /* XXX should be pre-session */
Darren Tucker2d6665d2011-11-04 10:54:22 +11001947 if (!options.control_persist)
1948 ssh_init_stdio_forwarding();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001949 ssh_init_forwarding();
1950
Damien Millere11e1ea2010-08-03 16:04:46 +10001951 /* Start listening for multiplex clients */
1952 muxserver_listen();
1953
1954 /*
Darren Tucker2d6665d2011-11-04 10:54:22 +11001955 * If we are in control persist mode and have a working mux listen
1956 * socket, then prepare to background ourselves and have a foreground
1957 * client attach as a control slave.
1958 * NB. we must save copies of the flags that we override for
Damien Millere11e1ea2010-08-03 16:04:46 +10001959 * the backgrounding, since we defer attachment of the slave until
1960 * after the connection is fully established (in particular,
1961 * async rfwd replies have been received for ExitOnForwardFailure).
1962 */
1963 if (options.control_persist && muxserver_sock != -1) {
1964 ostdin_null_flag = stdin_null_flag;
1965 ono_shell_flag = no_shell_flag;
Damien Miller21771e22011-05-15 08:45:50 +10001966 orequest_tty = options.request_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +10001967 otty_flag = tty_flag;
1968 stdin_null_flag = 1;
1969 no_shell_flag = 1;
Damien Millere11e1ea2010-08-03 16:04:46 +10001970 tty_flag = 0;
1971 if (!fork_after_authentication_flag)
1972 need_controlpersist_detach = 1;
1973 fork_after_authentication_flag = 1;
1974 }
Darren Tucker2d6665d2011-11-04 10:54:22 +11001975 /*
1976 * ControlPersist mux listen socket setup failed, attempt the
1977 * stdio forward setup that we skipped earlier.
1978 */
1979 if (options.control_persist && muxserver_sock == -1)
1980 ssh_init_stdio_forwarding();
Damien Millere11e1ea2010-08-03 16:04:46 +10001981
Ben Lindstromf558cf62001-09-20 23:13:49 +00001982 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1983 id = ssh_session2_open();
Damien Miller649fe022013-07-18 16:13:55 +10001984 else {
1985 packet_set_interactive(
1986 options.control_master == SSHCTL_MASTER_NO,
1987 options.ip_qos_interactive, options.ip_qos_bulk);
1988 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001989
Darren Tucker8901fa92008-06-11 09:34:01 +10001990 /* If we don't expect to open a new session, then disallow it */
Damien Miller456e6f02008-11-03 19:20:10 +11001991 if (options.control_master == SSHCTL_MASTER_NO &&
1992 (datafellows & SSH_NEW_OPENSSH)) {
Darren Tucker8901fa92008-06-11 09:34:01 +10001993 debug("Requesting no-more-sessions@openssh.com");
1994 packet_start(SSH2_MSG_GLOBAL_REQUEST);
1995 packet_put_cstring("no-more-sessions@openssh.com");
1996 packet_put_char(0);
1997 packet_send();
1998 }
1999
Damien Millerd27b9472005-12-13 19:29:02 +11002000 /* Execute a local command */
2001 if (options.local_command != NULL &&
2002 options.permit_local_command)
2003 ssh_local_cmd(options.local_command);
2004
Damien Miller1f25ab42010-07-16 13:56:23 +10002005 /*
2006 * If requested and we are not interested in replies to remote
2007 * forwarding requests, then let ssh continue in the background.
2008 */
Damien Millere11e1ea2010-08-03 16:04:46 +10002009 if (fork_after_authentication_flag) {
2010 if (options.exit_on_forward_failure &&
2011 options.num_remote_forwards > 0) {
2012 debug("deferring postauth fork until remote forward "
2013 "confirmation received");
2014 } else
2015 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10002016 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00002017
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00002018 return client_loop(tty_flag, tty_flag ?
2019 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002020}
Damien Miller0bc1bd82000-11-13 22:57:25 +11002021
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002022/* Loads all IdentityFile and CertificateFile keys */
Ben Lindstrombba81212001-06-25 05:01:22 +00002023static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002024load_public_identity_files(void)
2025{
Damien Miller6b1d53c2006-03-31 23:13:21 +11002026 char *filename, *cp, thishost[NI_MAXHOST];
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11002027 char *pwdir = NULL, *pwname = NULL;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00002028 Key *public;
Damien Miller6b1d53c2006-03-31 23:13:21 +11002029 struct passwd *pw;
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002030 int i;
2031 u_int n_ids, n_certs;
Damien Miller0a80ca12010-02-27 07:55:05 +11002032 char *identity_files[SSH_MAX_IDENTITY_FILES];
2033 Key *identity_keys[SSH_MAX_IDENTITY_FILES];
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002034 char *certificate_files[SSH_MAX_CERTIFICATE_FILES];
2035 struct sshkey *certificates[SSH_MAX_CERTIFICATE_FILES];
Damien Miller7ea845e2010-02-12 09:21:02 +11002036#ifdef ENABLE_PKCS11
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00002037 Key **keys;
Damien Miller7ea845e2010-02-12 09:21:02 +11002038 int nkeys;
Damien Miller0a80ca12010-02-27 07:55:05 +11002039#endif /* PKCS11 */
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00002040
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002041 n_ids = n_certs = 0;
Damien Miller1d2c4562014-02-04 11:18:20 +11002042 memset(identity_files, 0, sizeof(identity_files));
2043 memset(identity_keys, 0, sizeof(identity_keys));
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002044 memset(certificate_files, 0, sizeof(certificate_files));
2045 memset(certificates, 0, sizeof(certificates));
Damien Miller0a80ca12010-02-27 07:55:05 +11002046
2047#ifdef ENABLE_PKCS11
Damien Miller7ea845e2010-02-12 09:21:02 +11002048 if (options.pkcs11_provider != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00002049 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
Damien Miller7ea845e2010-02-12 09:21:02 +11002050 (pkcs11_init(!options.batch_mode) == 0) &&
2051 (nkeys = pkcs11_add_provider(options.pkcs11_provider, NULL,
2052 &keys)) > 0) {
Damien Miller7ea845e2010-02-12 09:21:02 +11002053 for (i = 0; i < nkeys; i++) {
Damien Miller0a80ca12010-02-27 07:55:05 +11002054 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
2055 key_free(keys[i]);
2056 continue;
2057 }
2058 identity_keys[n_ids] = keys[i];
2059 identity_files[n_ids] =
Damien Miller7ea845e2010-02-12 09:21:02 +11002060 xstrdup(options.pkcs11_provider); /* XXX */
Damien Miller0a80ca12010-02-27 07:55:05 +11002061 n_ids++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00002062 }
Darren Tuckera627d422013-06-02 07:31:17 +10002063 free(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00002064 }
Damien Miller7ea845e2010-02-12 09:21:02 +11002065#endif /* ENABLE_PKCS11 */
Damien Miller6b1d53c2006-03-31 23:13:21 +11002066 if ((pw = getpwuid(original_real_uid)) == NULL)
2067 fatal("load_public_identity_files: getpwuid failed");
Darren Tuckere143f062007-12-02 23:21:16 +11002068 pwname = xstrdup(pw->pw_name);
2069 pwdir = xstrdup(pw->pw_dir);
Damien Miller6b1d53c2006-03-31 23:13:21 +11002070 if (gethostname(thishost, sizeof(thishost)) == -1)
2071 fatal("load_public_identity_files: gethostname: %s",
2072 strerror(errno));
Damien Miller0a80ca12010-02-27 07:55:05 +11002073 for (i = 0; i < options.num_identity_files; i++) {
Darren Tucker15fd19c2013-04-05 11:22:26 +11002074 if (n_ids >= SSH_MAX_IDENTITY_FILES ||
2075 strcasecmp(options.identity_files[i], "none") == 0) {
Darren Tuckera627d422013-06-02 07:31:17 +10002076 free(options.identity_files[i]);
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002077 options.identity_files[i] = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +11002078 continue;
2079 }
Damien Miller6b1d53c2006-03-31 23:13:21 +11002080 cp = tilde_expand_filename(options.identity_files[i],
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002081 original_real_uid);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11002082 filename = percent_expand(cp, "d", pwdir,
2083 "u", pwname, "l", thishost, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +11002084 "r", options.user, (char *)NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10002085 free(cp);
Ben Lindstromd0fca422001-03-26 13:44:06 +00002086 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002087 debug("identity file %s type %d", filename,
2088 public ? public->type : -1);
Darren Tuckera627d422013-06-02 07:31:17 +10002089 free(options.identity_files[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +11002090 identity_files[n_ids] = filename;
2091 identity_keys[n_ids] = public;
2092
2093 if (++n_ids >= SSH_MAX_IDENTITY_FILES)
2094 continue;
2095
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002096 /*
2097 * If no certificates have been explicitly listed then try
2098 * to add the default certificate variant too.
2099 */
2100 if (options.num_certificate_files != 0)
2101 continue;
Damien Miller0a80ca12010-02-27 07:55:05 +11002102 xasprintf(&cp, "%s-cert", filename);
2103 public = key_load_public(cp, NULL);
2104 debug("identity file %s type %d", cp,
2105 public ? public->type : -1);
2106 if (public == NULL) {
Darren Tuckera627d422013-06-02 07:31:17 +10002107 free(cp);
Damien Miller0a80ca12010-02-27 07:55:05 +11002108 continue;
2109 }
2110 if (!key_is_cert(public)) {
2111 debug("%s: key %s type %s is not a certificate",
2112 __func__, cp, key_type(public));
2113 key_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +10002114 free(cp);
Damien Miller0a80ca12010-02-27 07:55:05 +11002115 continue;
2116 }
2117 identity_keys[n_ids] = public;
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002118 identity_files[n_ids] = cp;
Damien Miller0a80ca12010-02-27 07:55:05 +11002119 n_ids++;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002120 }
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002121
2122 if (options.num_certificate_files > SSH_MAX_CERTIFICATE_FILES)
2123 fatal("%s: too many certificates", __func__);
2124 for (i = 0; i < options.num_certificate_files; i++) {
2125 cp = tilde_expand_filename(options.certificate_files[i],
2126 original_real_uid);
2127 filename = percent_expand(cp, "d", pwdir,
2128 "u", pwname, "l", thishost, "h", host,
2129 "r", options.user, (char *)NULL);
2130 free(cp);
2131
2132 public = key_load_public(filename, NULL);
2133 debug("certificate file %s type %d", filename,
2134 public ? public->type : -1);
2135 free(options.certificate_files[i]);
2136 options.certificate_files[i] = NULL;
2137 if (public == NULL) {
2138 free(filename);
2139 continue;
2140 }
2141 if (!key_is_cert(public)) {
2142 debug("%s: key %s type %s is not a certificate",
2143 __func__, filename, key_type(public));
2144 key_free(public);
2145 free(filename);
2146 continue;
2147 }
2148 certificate_files[n_certs] = filename;
2149 certificates[n_certs] = public;
2150 ++n_certs;
2151 }
2152
Damien Miller0a80ca12010-02-27 07:55:05 +11002153 options.num_identity_files = n_ids;
2154 memcpy(options.identity_files, identity_files, sizeof(identity_files));
2155 memcpy(options.identity_keys, identity_keys, sizeof(identity_keys));
2156
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002157 options.num_certificate_files = n_certs;
2158 memcpy(options.certificate_files,
2159 certificate_files, sizeof(certificate_files));
2160 memcpy(options.certificates, certificates, sizeof(certificates));
2161
Damien Miller1d2c4562014-02-04 11:18:20 +11002162 explicit_bzero(pwname, strlen(pwname));
Darren Tuckera627d422013-06-02 07:31:17 +10002163 free(pwname);
Damien Miller1d2c4562014-02-04 11:18:20 +11002164 explicit_bzero(pwdir, strlen(pwdir));
Darren Tuckera627d422013-06-02 07:31:17 +10002165 free(pwdir);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002166}
Damien Miller857b02e2010-09-24 22:02:56 +10002167
2168static void
2169main_sigchld_handler(int sig)
2170{
2171 int save_errno = errno;
2172 pid_t pid;
2173 int status;
2174
2175 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
2176 (pid < 0 && errno == EINTR))
2177 ;
2178
2179 signal(sig, main_sigchld_handler);
2180 errno = save_errno;
2181}