blob: 6137fd7daf344b3ef38f36f1547ad5bc6c18e931 [file] [log] [blame]
bluhm@openbsd.org1112b532017-05-30 18:58:37 +00001/* $OpenBSD: ssh.c,v 1.461 2017/05/30 18:58:37 bluhm 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>
djm@openbsd.org65c6c6b2016-07-17 04:20:16 +000070#include <locale.h>
Damien Millereba71ba2000-04-29 23:57:08 +100071
Darren Tucker46aa3e02006-09-02 15:32:40 +100072#include <netinet/in.h>
73#include <arpa/inet.h>
74
Damien Miller1f0311c2014-05-15 14:24:09 +100075#ifdef WITH_OPENSSL
Damien Millereba71ba2000-04-29 23:57:08 +100076#include <openssl/evp.h>
Damien Miller0bc1bd82000-11-13 22:57:25 +110077#include <openssl/err.h>
Damien Miller1f0311c2014-05-15 14:24:09 +100078#endif
Darren Tuckerbfaaf962008-02-28 19:13:52 +110079#include "openbsd-compat/openssl-compat.h"
Damien Millerb84886b2008-05-19 15:05:07 +100080#include "openbsd-compat/sys-queue.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100081
Damien Millerd7834352006-08-05 12:39:39 +100082#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100083#include "ssh.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 Millerdda78a02016-12-12 13:57:10 +1100111#include "utf8.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000112
Damien Miller7ea845e2010-02-12 09:21:02 +1100113#ifdef ENABLE_PKCS11
114#include "ssh-pkcs11.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +0000115#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000116
Damien Miller3f905871999-11-15 17:10:57 +1100117extern char *__progname;
Damien Miller3f905871999-11-15 17:10:57 +1100118
Damien Millerea2c1a42011-06-03 12:10:22 +1000119/* Saves a copy of argv for setproctitle emulation */
120#ifndef HAVE_SETPROCTITLE
121static char **saved_av;
122#endif
123
Darren Tuckerd6173c02008-06-13 04:52:53 +1000124/* Flag indicating whether debug mode is on. May be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000125int debug_flag = 0;
126
Damien Miller21771e22011-05-15 08:45:50 +1000127/* Flag indicating whether a tty should be requested */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000128int tty_flag = 0;
129
Damien Miller1383bd82000-04-06 12:32:37 +1000130/* don't exec a shell */
131int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000132
Damien Miller5428f641999-11-25 11:54:57 +1100133/*
134 * Flag indicating that nothing should be read from stdin. This can be set
135 * on the command line.
136 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000137int stdin_null_flag = 0;
138
Damien Miller5428f641999-11-25 11:54:57 +1100139/*
Damien Millere11e1ea2010-08-03 16:04:46 +1000140 * Flag indicating that the current process should be backgrounded and
141 * a new slave launched in the foreground for ControlPersist.
142 */
143int need_controlpersist_detach = 0;
144
145/* Copies of flags for ControlPersist foreground slave */
Damien Miller21771e22011-05-15 08:45:50 +1000146int ostdin_null_flag, ono_shell_flag, otty_flag, orequest_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +1000147
148/*
Damien Miller5428f641999-11-25 11:54:57 +1100149 * Flag indicating that ssh should fork after authentication. This is useful
Ben Lindstromf666fec2002-06-06 19:51:58 +0000150 * so that the passphrase can be entered manually, and then ssh goes to the
Damien Miller5428f641999-11-25 11:54:57 +1100151 * background.
152 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000153int fork_after_authentication_flag = 0;
154
Damien Miller5428f641999-11-25 11:54:57 +1100155/*
156 * General data structure for command line options and options configurable
157 * in configuration files. See readconf.h.
158 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000159Options options;
160
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000161/* optional user configfile */
162char *config = NULL;
163
Damien Miller5428f641999-11-25 11:54:57 +1100164/*
165 * Name of the host we are connecting to. This is the name given on the
166 * command line, or the HostName specified for the user-supplied name in a
167 * configuration file.
168 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000169char *host;
170
171/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100172struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000173
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000174/* Private host keys. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000175Sensitive sensitive_data;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000176
177/* Original real UID. */
178uid_t original_real_uid;
Ben Lindstromf9c48842002-06-11 16:37:51 +0000179uid_t original_effective_uid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000180
Damien Miller1383bd82000-04-06 12:32:37 +1000181/* command to be executed */
182Buffer command;
183
Damien Miller832562e2001-01-30 09:30:01 +1100184/* Should we execute a command or invoke a subsystem? */
185int subsystem_flag = 0;
186
Damien Miller2797f7f2002-04-23 21:09:44 +1000187/* # of replies received for global requests */
Darren Tucker9f407c42008-06-13 04:50:27 +1000188static int remote_forward_confirms_received = 0;
Damien Miller2797f7f2002-04-23 21:09:44 +1000189
Damien Millerb1cbfa22008-05-19 16:00:08 +1000190/* mux.c */
191extern int muxserver_sock;
192extern u_int muxclient_command;
Damien Miller0e220db2004-06-15 10:34:08 +1000193
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000194/* Prints a help message to the user. This function never returns. */
195
Ben Lindstrombba81212001-06-25 05:01:22 +0000196static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000197usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000198{
Damien Miller50955102004-03-22 09:34:58 +1100199 fprintf(stderr,
jmc@openbsd.org4f1ca822017-05-02 08:06:33 +0000200"usage: ssh [-46AaCfGgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]\n"
Damien Miller03d4d7e2013-04-23 15:21:06 +1000201" [-D [bind_address:]port] [-E log_file] [-e escape_char]\n"
jmc@openbsd.orge4eb7d92016-07-16 06:57:55 +0000202" [-F configfile] [-I pkcs11] [-i identity_file]\n"
203" [-J [user@]host[:port]] [-L address] [-l login_name] [-m mac_spec]\n"
204" [-O ctl_cmd] [-o option] [-p port] [-Q query_option] [-R address]\n"
205" [-S ctl_path] [-W host:port] [-w local_tun[:remote_tun]]\n"
206" [user@]hostname [command]\n"
Damien Miller50955102004-03-22 09:34:58 +1100207 );
Darren Tuckere9a9b712005-12-20 16:15:51 +1100208 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000209}
210
Ben Lindstrombba81212001-06-25 05:01:22 +0000211static int ssh_session2(void);
212static void load_public_identity_files(void);
Damien Miller857b02e2010-09-24 22:02:56 +1000213static void main_sigchld_handler(int);
Damien Millerb1cbfa22008-05-19 16:00:08 +1000214
Damien Miller295ee632011-05-29 21:42:31 +1000215/* ~/ expand a list of paths. NB. assumes path[n] is heap-allocated. */
216static void
217tilde_expand_paths(char **paths, u_int num_paths)
218{
219 u_int i;
220 char *cp;
221
222 for (i = 0; i < num_paths; i++) {
223 cp = tilde_expand_filename(paths[i], original_real_uid);
Darren Tuckera627d422013-06-02 07:31:17 +1000224 free(paths[i]);
Damien Miller295ee632011-05-29 21:42:31 +1000225 paths[i] = cp;
226 }
227}
228
Damien Miller13f97b22014-02-24 15:57:55 +1100229/*
230 * Attempt to resolve a host name / port to a set of addresses and
231 * optionally return any CNAMEs encountered along the way.
232 * Returns NULL on failure.
233 * NB. this function must operate with a options having undefined members.
234 */
Damien Miller0faf7472013-10-17 11:47:23 +1100235static struct addrinfo *
Damien Miller13f97b22014-02-24 15:57:55 +1100236resolve_host(const char *name, int port, int logerr, char *cname, size_t clen)
Damien Miller0faf7472013-10-17 11:47:23 +1100237{
238 char strport[NI_MAXSERV];
239 struct addrinfo hints, *res;
240 int gaierr, loglevel = SYSLOG_LEVEL_DEBUG1;
241
Damien Miller13f97b22014-02-24 15:57:55 +1100242 if (port <= 0)
243 port = default_ssh_port();
244
djm@openbsd.orgb1d38a32015-10-15 23:51:40 +0000245 snprintf(strport, sizeof strport, "%d", port);
Damien Miller1d2c4562014-02-04 11:18:20 +1100246 memset(&hints, 0, sizeof(hints));
Damien Miller13f97b22014-02-24 15:57:55 +1100247 hints.ai_family = options.address_family == -1 ?
248 AF_UNSPEC : options.address_family;
Damien Miller0faf7472013-10-17 11:47:23 +1100249 hints.ai_socktype = SOCK_STREAM;
250 if (cname != NULL)
251 hints.ai_flags = AI_CANONNAME;
252 if ((gaierr = getaddrinfo(name, strport, &hints, &res)) != 0) {
253 if (logerr || (gaierr != EAI_NONAME && gaierr != EAI_NODATA))
254 loglevel = SYSLOG_LEVEL_ERROR;
255 do_log2(loglevel, "%s: Could not resolve hostname %.100s: %s",
256 __progname, name, ssh_gai_strerror(gaierr));
257 return NULL;
258 }
259 if (cname != NULL && res->ai_canonname != NULL) {
260 if (strlcpy(cname, res->ai_canonname, clen) >= clen) {
261 error("%s: host \"%s\" cname \"%s\" too long (max %lu)",
262 __func__, name, res->ai_canonname, (u_long)clen);
263 if (clen > 0)
264 *cname = '\0';
265 }
266 }
267 return res;
268}
269
270/*
djm@openbsd.org90109022015-01-16 07:19:48 +0000271 * Attempt to resolve a numeric host address / port to a single address.
272 * Returns a canonical address string.
273 * Returns NULL on failure.
274 * NB. this function must operate with a options having undefined members.
275 */
276static struct addrinfo *
277resolve_addr(const char *name, int port, char *caddr, size_t clen)
278{
279 char addr[NI_MAXHOST], strport[NI_MAXSERV];
280 struct addrinfo hints, *res;
281 int gaierr;
282
283 if (port <= 0)
284 port = default_ssh_port();
285 snprintf(strport, sizeof strport, "%u", port);
286 memset(&hints, 0, sizeof(hints));
287 hints.ai_family = options.address_family == -1 ?
288 AF_UNSPEC : options.address_family;
289 hints.ai_socktype = SOCK_STREAM;
290 hints.ai_flags = AI_NUMERICHOST|AI_NUMERICSERV;
291 if ((gaierr = getaddrinfo(name, strport, &hints, &res)) != 0) {
292 debug2("%s: could not resolve name %.100s as address: %s",
293 __func__, name, ssh_gai_strerror(gaierr));
294 return NULL;
295 }
296 if (res == NULL) {
297 debug("%s: getaddrinfo %.100s returned no addresses",
298 __func__, name);
299 return NULL;
300 }
301 if (res->ai_next != NULL) {
302 debug("%s: getaddrinfo %.100s returned multiple addresses",
303 __func__, name);
304 goto fail;
305 }
306 if ((gaierr = getnameinfo(res->ai_addr, res->ai_addrlen,
307 addr, sizeof(addr), NULL, 0, NI_NUMERICHOST)) != 0) {
308 debug("%s: Could not format address for name %.100s: %s",
309 __func__, name, ssh_gai_strerror(gaierr));
310 goto fail;
311 }
312 if (strlcpy(caddr, addr, clen) >= clen) {
313 error("%s: host \"%s\" addr \"%s\" too long (max %lu)",
314 __func__, name, addr, (u_long)clen);
315 if (clen > 0)
316 *caddr = '\0';
317 fail:
318 freeaddrinfo(res);
319 return NULL;
320 }
321 return res;
322}
323
324/*
Damien Miller0faf7472013-10-17 11:47:23 +1100325 * Check whether the cname is a permitted replacement for the hostname
326 * and perform the replacement if it is.
Damien Miller13f97b22014-02-24 15:57:55 +1100327 * NB. this function must operate with a options having undefined members.
Damien Miller0faf7472013-10-17 11:47:23 +1100328 */
329static int
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000330check_follow_cname(int direct, char **namep, const char *cname)
Damien Miller0faf7472013-10-17 11:47:23 +1100331{
332 int i;
333 struct allowed_cname *rule;
334
335 if (*cname == '\0' || options.num_permitted_cnames == 0 ||
336 strcmp(*namep, cname) == 0)
337 return 0;
Damien Miller38505592013-10-17 11:48:13 +1100338 if (options.canonicalize_hostname == SSH_CANONICALISE_NO)
Damien Miller0faf7472013-10-17 11:47:23 +1100339 return 0;
340 /*
Damien Miller38505592013-10-17 11:48:13 +1100341 * Don't attempt to canonicalize names that will be interpreted by
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000342 * a proxy or jump host unless the user specifically requests so.
Damien Miller0faf7472013-10-17 11:47:23 +1100343 */
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000344 if (!direct &&
Damien Miller38505592013-10-17 11:48:13 +1100345 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS)
Damien Miller0faf7472013-10-17 11:47:23 +1100346 return 0;
347 debug3("%s: check \"%s\" CNAME \"%s\"", __func__, *namep, cname);
348 for (i = 0; i < options.num_permitted_cnames; i++) {
349 rule = options.permitted_cnames + i;
djm@openbsd.orge661a862015-05-04 06:10:48 +0000350 if (match_pattern_list(*namep, rule->source_list, 1) != 1 ||
351 match_pattern_list(cname, rule->target_list, 1) != 1)
Damien Miller0faf7472013-10-17 11:47:23 +1100352 continue;
Damien Miller38505592013-10-17 11:48:13 +1100353 verbose("Canonicalized DNS aliased hostname "
Damien Miller0faf7472013-10-17 11:47:23 +1100354 "\"%s\" => \"%s\"", *namep, cname);
355 free(*namep);
356 *namep = xstrdup(cname);
357 return 1;
358 }
359 return 0;
360}
361
362/*
363 * Attempt to resolve the supplied hostname after applying the user's
Damien Miller51682fa2013-10-17 11:48:31 +1100364 * canonicalization rules. Returns the address list for the host or NULL
365 * if no name was found after canonicalization.
Damien Miller13f97b22014-02-24 15:57:55 +1100366 * NB. this function must operate with a options having undefined members.
Damien Miller0faf7472013-10-17 11:47:23 +1100367 */
368static struct addrinfo *
Damien Miller13f97b22014-02-24 15:57:55 +1100369resolve_canonicalize(char **hostp, int port)
Damien Miller0faf7472013-10-17 11:47:23 +1100370{
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000371 int i, direct, ndots;
djm@openbsd.org90109022015-01-16 07:19:48 +0000372 char *cp, *fullhost, newname[NI_MAXHOST];
Damien Miller0faf7472013-10-17 11:47:23 +1100373 struct addrinfo *addrs;
374
Damien Miller38505592013-10-17 11:48:13 +1100375 if (options.canonicalize_hostname == SSH_CANONICALISE_NO)
Damien Miller0faf7472013-10-17 11:47:23 +1100376 return NULL;
Damien Miller13f97b22014-02-24 15:57:55 +1100377
Damien Miller0faf7472013-10-17 11:47:23 +1100378 /*
Damien Miller38505592013-10-17 11:48:13 +1100379 * Don't attempt to canonicalize names that will be interpreted by
Damien Miller0faf7472013-10-17 11:47:23 +1100380 * a proxy unless the user specifically requests so.
381 */
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000382 direct = option_clear_or_none(options.proxy_command) &&
383 options.jump_host == NULL;
384 if (!direct &&
Damien Miller38505592013-10-17 11:48:13 +1100385 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS)
Damien Miller0faf7472013-10-17 11:47:23 +1100386 return NULL;
Damien Miller13f97b22014-02-24 15:57:55 +1100387
djm@openbsd.org90109022015-01-16 07:19:48 +0000388 /* Try numeric hostnames first */
389 if ((addrs = resolve_addr(*hostp, port,
390 newname, sizeof(newname))) != NULL) {
391 debug2("%s: hostname %.100s is address", __func__, *hostp);
392 if (strcasecmp(*hostp, newname) != 0) {
393 debug2("%s: canonicalised address \"%s\" => \"%s\"",
394 __func__, *hostp, newname);
395 free(*hostp);
396 *hostp = xstrdup(newname);
397 }
398 return addrs;
399 }
400
djm@openbsd.org5ee00632015-10-16 18:40:49 +0000401 /* If domain name is anchored, then resolve it now */
402 if ((*hostp)[strlen(*hostp) - 1] == '.') {
403 debug3("%s: name is fully qualified", __func__);
404 fullhost = xstrdup(*hostp);
405 if ((addrs = resolve_host(fullhost, port, 0,
406 newname, sizeof(newname))) != NULL)
407 goto found;
408 free(fullhost);
409 goto notfound;
410 }
411
Damien Miller51682fa2013-10-17 11:48:31 +1100412 /* Don't apply canonicalization to sufficiently-qualified hostnames */
Damien Miller0faf7472013-10-17 11:47:23 +1100413 ndots = 0;
414 for (cp = *hostp; *cp != '\0'; cp++) {
415 if (*cp == '.')
416 ndots++;
417 }
Damien Miller38505592013-10-17 11:48:13 +1100418 if (ndots > options.canonicalize_max_dots) {
419 debug3("%s: not canonicalizing hostname \"%s\" (max dots %d)",
420 __func__, *hostp, options.canonicalize_max_dots);
Damien Miller0faf7472013-10-17 11:47:23 +1100421 return NULL;
422 }
423 /* Attempt each supplied suffix */
424 for (i = 0; i < options.num_canonical_domains; i++) {
djm@openbsd.org90109022015-01-16 07:19:48 +0000425 *newname = '\0';
Damien Miller0faf7472013-10-17 11:47:23 +1100426 xasprintf(&fullhost, "%s.%s.", *hostp,
427 options.canonical_domains[i]);
Damien Miller13f97b22014-02-24 15:57:55 +1100428 debug3("%s: attempting \"%s\" => \"%s\"", __func__,
429 *hostp, fullhost);
430 if ((addrs = resolve_host(fullhost, port, 0,
djm@openbsd.org90109022015-01-16 07:19:48 +0000431 newname, sizeof(newname))) == NULL) {
Damien Miller0faf7472013-10-17 11:47:23 +1100432 free(fullhost);
433 continue;
434 }
djm@openbsd.org5ee00632015-10-16 18:40:49 +0000435 found:
Damien Miller0faf7472013-10-17 11:47:23 +1100436 /* Remove trailing '.' */
437 fullhost[strlen(fullhost) - 1] = '\0';
438 /* Follow CNAME if requested */
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000439 if (!check_follow_cname(direct, &fullhost, newname)) {
Damien Miller38505592013-10-17 11:48:13 +1100440 debug("Canonicalized hostname \"%s\" => \"%s\"",
Damien Miller0faf7472013-10-17 11:47:23 +1100441 *hostp, fullhost);
442 }
443 free(*hostp);
444 *hostp = fullhost;
445 return addrs;
446 }
djm@openbsd.org5ee00632015-10-16 18:40:49 +0000447 notfound:
Damien Miller38505592013-10-17 11:48:13 +1100448 if (!options.canonicalize_fallback_local)
Damien Miller13f97b22014-02-24 15:57:55 +1100449 fatal("%s: Could not resolve host \"%s\"", __progname, *hostp);
450 debug2("%s: host %s not found in any suffix", __func__, *hostp);
Damien Miller0faf7472013-10-17 11:47:23 +1100451 return NULL;
452}
453
Damien Miller95def091999-11-25 00:26:21 +1100454/*
Damien Miller13f97b22014-02-24 15:57:55 +1100455 * Read per-user configuration file. Ignore the system wide config
456 * file if the user specifies a config file on the command line.
457 */
458static void
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000459process_config_files(const char *host_arg, struct passwd *pw, int post_canon)
Damien Miller13f97b22014-02-24 15:57:55 +1100460{
deraadt@openbsd.org087266e2015-01-20 23:14:00 +0000461 char buf[PATH_MAX];
Damien Miller13f97b22014-02-24 15:57:55 +1100462 int r;
463
464 if (config != NULL) {
465 if (strcasecmp(config, "none") != 0 &&
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000466 !read_config_file(config, pw, host, host_arg, &options,
467 SSHCONF_USERCONF | (post_canon ? SSHCONF_POSTCANON : 0)))
Damien Miller13f97b22014-02-24 15:57:55 +1100468 fatal("Can't open user config file %.100s: "
469 "%.100s", config, strerror(errno));
470 } else {
471 r = snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir,
472 _PATH_SSH_USER_CONFFILE);
473 if (r > 0 && (size_t)r < sizeof(buf))
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000474 (void)read_config_file(buf, pw, host, host_arg,
475 &options, SSHCONF_CHECKPERM | SSHCONF_USERCONF |
476 (post_canon ? SSHCONF_POSTCANON : 0));
Damien Miller13f97b22014-02-24 15:57:55 +1100477
478 /* Read systemwide configuration file after user config. */
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000479 (void)read_config_file(_PATH_HOST_CONFIG_FILE, pw,
480 host, host_arg, &options,
481 post_canon ? SSHCONF_POSTCANON : 0);
482 }
483}
484
485/* Rewrite the port number in an addrinfo list of addresses */
486static void
487set_addrinfo_port(struct addrinfo *addrs, int port)
488{
489 struct addrinfo *addr;
490
491 for (addr = addrs; addr != NULL; addr = addr->ai_next) {
492 switch (addr->ai_family) {
493 case AF_INET:
494 ((struct sockaddr_in *)addr->ai_addr)->
495 sin_port = htons(port);
496 break;
497 case AF_INET6:
498 ((struct sockaddr_in6 *)addr->ai_addr)->
499 sin6_port = htons(port);
500 break;
501 }
Damien Miller13f97b22014-02-24 15:57:55 +1100502 }
503}
504
505/*
Damien Miller95def091999-11-25 00:26:21 +1100506 * Main program for the ssh client.
507 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000508int
509main(int ac, char **av)
510{
djm@openbsd.org95767262016-03-07 19:02:43 +0000511 struct ssh *ssh = NULL;
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000512 int i, r, opt, exit_status, use_syslog, direct, config_test = 0;
deraadt@openbsd.org087266e2015-01-20 23:14:00 +0000513 char *p, *cp, *line, *argv0, buf[PATH_MAX], *host_arg, *logfile;
Damien Millerdfc85fa2011-05-15 08:44:02 +1000514 char thishost[NI_MAXHOST], shorthost[NI_MAXHOST], portstr[NI_MAXSERV];
djm@openbsd.org674b3b62015-09-11 03:47:28 +0000515 char cname[NI_MAXHOST], uidstr[32], *conn_hash_hex;
Damien Miller95def091999-11-25 00:26:21 +1100516 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000517 struct passwd *pw;
Damien Miller194fd902013-10-15 12:13:05 +1100518 int timeout_ms;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000519 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000520 extern char *optarg;
Damien Miller7acefbb2014-07-18 14:11:24 +1000521 struct Forward fwd;
Damien Miller0faf7472013-10-17 11:47:23 +1100522 struct addrinfo *addrs = NULL;
Damien Miller9c386432014-07-03 21:27:46 +1000523 struct ssh_digest_ctx *md;
524 u_char conn_hash[SSH_DIGEST_MAX_LENGTH];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000525
dtucker@openbsd.orgffb1e7e2016-02-15 09:47:49 +0000526 ssh_malloc_init(); /* must be called before any mallocs */
Darren Tuckerce321d82005-10-03 18:11:24 +1000527 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
528 sanitise_stdfd();
529
Damien Miller59d3d5b2003-08-22 09:34:41 +1000530 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000531
Damien Millerea2c1a42011-06-03 12:10:22 +1000532#ifndef HAVE_SETPROCTITLE
533 /* Prepare for later setproctitle emulation */
534 /* Save argv so it isn't clobbered by setproctitle() emulation */
535 saved_av = xcalloc(ac + 1, sizeof(*saved_av));
536 for (i = 0; i < ac; i++)
537 saved_av[i] = xstrdup(av[i]);
538 saved_av[i] = NULL;
539 compat_init_setproctitle(ac, av);
540 av = saved_av;
541#endif
542
Damien Miller5428f641999-11-25 11:54:57 +1100543 /*
Damien Miller00d9ae22010-08-17 01:59:31 +1000544 * Discard other fds that are hanging around. These can cause problem
545 * with backgrounded ssh processes started by ControlPersist.
546 */
547 closefrom(STDERR_FILENO + 1);
548
549 /*
Damien Miller5428f641999-11-25 11:54:57 +1100550 * Save the original real uid. It will be needed later (uid-swapping
551 * may clobber the real uid).
552 */
Damien Miller95def091999-11-25 00:26:21 +1100553 original_real_uid = getuid();
554 original_effective_uid = geteuid();
Damien Millera8e06ce2003-11-21 23:48:55 +1100555
Damien Miller50b9a602002-09-04 16:50:06 +1000556 /*
557 * Use uid-swapping to give up root privileges for the duration of
558 * option processing. We will re-instantiate the rights when we are
559 * ready to create the privileged port, and will permanently drop
560 * them when the port has been created (actually, when the connection
561 * has been made, as we may need to create the port several times).
562 */
563 PRIV_END;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000564
Damien Miller05dd7952000-10-01 00:42:48 +1100565#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100566 /* If we are installed setuid root be careful to not drop core. */
567 if (original_real_uid != original_effective_uid) {
568 struct rlimit rlim;
569 rlim.rlim_cur = rlim.rlim_max = 0;
570 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
571 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000572 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100573#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000574 /* Get user data. */
575 pw = getpwuid(original_real_uid);
576 if (!pw) {
Damien Miller3009d3c2013-07-20 13:22:31 +1000577 logit("No user exists for uid %lu", (u_long)original_real_uid);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100578 exit(255);
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000579 }
580 /* Take a copy of the returned structure. */
581 pw = pwcopy(pw);
582
Damien Miller5428f641999-11-25 11:54:57 +1100583 /*
Damien Miller5428f641999-11-25 11:54:57 +1100584 * Set our umask to something reasonable, as some files are created
585 * with the default umask. This will make them world-readable but
586 * writable only by the owner, which is ok for all files for which we
587 * don't set the modes explicitly.
588 */
Damien Miller95def091999-11-25 00:26:21 +1100589 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000590
Damien Millerdda78a02016-12-12 13:57:10 +1100591 msetlocale();
djm@openbsd.org65c6c6b2016-07-17 04:20:16 +0000592
Darren Tuckerd6173c02008-06-13 04:52:53 +1000593 /*
594 * Initialize option structure to indicate that no values have been
595 * set.
596 */
Damien Miller95def091999-11-25 00:26:21 +1100597 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000598
Damien Miller95def091999-11-25 00:26:21 +1100599 /* Parse command-line arguments. */
600 host = NULL;
Damien Millere272a5b2008-11-03 19:22:37 +1100601 use_syslog = 0;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000602 logfile = NULL;
Darren Tucker72efd742009-06-21 17:48:00 +1000603 argv0 = av[0];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000604
Damien Miller2ecb6bd2006-03-15 12:03:53 +1100605 again:
Darren Tuckerd6173c02008-06-13 04:52:53 +1000606 while ((opt = getopt(ac, av, "1246ab:c:e:fgi:kl:m:no:p:qstvx"
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000607 "ACD:E:F:GI:J:KL:MNO:PQ:R:S:TVw:W:XYy")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100608 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000609 case '1':
djm@openbsd.org99f95ba2017-04-30 23:11:45 +0000610 fatal("SSH protocol v.1 is no longer supported");
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000611 break;
Damien Miller4af51302000-04-16 11:18:38 +1000612 case '2':
djm@openbsd.org99f95ba2017-04-30 23:11:45 +0000613 /* Ignored */
Damien Miller4af51302000-04-16 11:18:38 +1000614 break;
Damien Miller34132e52000-01-14 15:45:46 +1100615 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000616 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100617 break;
Damien Miller34132e52000-01-14 15:45:46 +1100618 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000619 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100620 break;
Damien Miller95def091999-11-25 00:26:21 +1100621 case 'n':
622 stdin_null_flag = 1;
623 break;
Damien Miller95def091999-11-25 00:26:21 +1100624 case 'f':
625 fork_after_authentication_flag = 1;
626 stdin_null_flag = 1;
627 break;
Damien Miller95def091999-11-25 00:26:21 +1100628 case 'x':
629 options.forward_x11 = 0;
630 break;
Damien Miller95def091999-11-25 00:26:21 +1100631 case 'X':
632 options.forward_x11 = 1;
633 break;
Damien Millere272a5b2008-11-03 19:22:37 +1100634 case 'y':
635 use_syslog = 1;
636 break;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000637 case 'E':
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000638 logfile = optarg;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000639 break;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000640 case 'G':
641 config_test = 1;
642 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000643 case 'Y':
644 options.forward_x11 = 1;
645 options.forward_x11_trusted = 1;
646 break;
Damien Miller95def091999-11-25 00:26:21 +1100647 case 'g':
Damien Miller7acefbb2014-07-18 14:11:24 +1000648 options.fwd_opts.gateway_ports = 1;
Damien Miller95def091999-11-25 00:26:21 +1100649 break;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100650 case 'O':
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +0000651 if (options.stdio_forward_host != NULL)
Damien Millere1537f92010-01-26 13:26:22 +1100652 fatal("Cannot specify multiplexing "
653 "command with -W");
654 else if (muxclient_command != 0)
655 fatal("Multiplexing command already specified");
Darren Tucker7ebfc102004-11-07 20:06:19 +1100656 if (strcmp(optarg, "check") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000657 muxclient_command = SSHMUX_COMMAND_ALIVE_CHECK;
Damien Miller388f6fc2010-05-21 14:57:35 +1000658 else if (strcmp(optarg, "forward") == 0)
659 muxclient_command = SSHMUX_COMMAND_FORWARD;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100660 else if (strcmp(optarg, "exit") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000661 muxclient_command = SSHMUX_COMMAND_TERMINATE;
Damien Miller6c3eec72011-05-05 14:16:22 +1000662 else if (strcmp(optarg, "stop") == 0)
663 muxclient_command = SSHMUX_COMMAND_STOP;
Damien Millerf6dff7c2011-09-22 21:38:52 +1000664 else if (strcmp(optarg, "cancel") == 0)
665 muxclient_command = SSHMUX_COMMAND_CANCEL_FWD;
markus@openbsd.org8d057842016-09-30 09:19:13 +0000666 else if (strcmp(optarg, "proxy") == 0)
667 muxclient_command = SSHMUX_COMMAND_PROXY;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100668 else
669 fatal("Invalid multiplex command.");
670 break;
Damien Miller147bba32002-09-04 16:46:06 +1000671 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100672 options.use_privileged_port = 0;
673 break;
Damien Millerd937dc02013-12-05 10:19:54 +1100674 case 'Q':
Damien Millerea111192013-04-23 19:24:32 +1000675 cp = NULL;
Damien Millerd937dc02013-12-05 10:19:54 +1100676 if (strcmp(optarg, "cipher") == 0)
Damien Miller0fde8ac2013-11-21 14:12:23 +1100677 cp = cipher_alg_list('\n', 0);
Damien Millerd937dc02013-12-05 10:19:54 +1100678 else if (strcmp(optarg, "cipher-auth") == 0)
Damien Miller0fde8ac2013-11-21 14:12:23 +1100679 cp = cipher_alg_list('\n', 1);
Damien Millerd937dc02013-12-05 10:19:54 +1100680 else if (strcmp(optarg, "mac") == 0)
Damien Miller690d9892013-11-08 12:16:49 +1100681 cp = mac_alg_list('\n');
Damien Millerd937dc02013-12-05 10:19:54 +1100682 else if (strcmp(optarg, "kex") == 0)
Damien Miller690d9892013-11-08 12:16:49 +1100683 cp = kex_alg_list('\n');
Damien Millerd937dc02013-12-05 10:19:54 +1100684 else if (strcmp(optarg, "key") == 0)
djm@openbsd.org183ba552017-03-10 04:07:20 +0000685 cp = sshkey_alg_list(0, 0, 0, '\n');
Damien Miller5be9d9e2013-12-07 11:24:01 +1100686 else if (strcmp(optarg, "key-cert") == 0)
djm@openbsd.org183ba552017-03-10 04:07:20 +0000687 cp = sshkey_alg_list(1, 0, 0, '\n');
Damien Miller5be9d9e2013-12-07 11:24:01 +1100688 else if (strcmp(optarg, "key-plain") == 0)
djm@openbsd.org183ba552017-03-10 04:07:20 +0000689 cp = sshkey_alg_list(0, 1, 0, '\n');
djm@openbsd.org68d2dfc2015-03-03 06:48:58 +0000690 else if (strcmp(optarg, "protocol-version") == 0) {
djm@openbsd.org68d2dfc2015-03-03 06:48:58 +0000691 cp = xstrdup("2");
djm@openbsd.org68d2dfc2015-03-03 06:48:58 +0000692 }
Damien Millerea111192013-04-23 19:24:32 +1000693 if (cp == NULL)
694 fatal("Unsupported query \"%s\"", optarg);
695 printf("%s\n", cp);
696 free(cp);
697 exit(0);
698 break;
Damien Miller95def091999-11-25 00:26:21 +1100699 case 'a':
700 options.forward_agent = 0;
701 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000702 case 'A':
703 options.forward_agent = 1;
704 break;
Damien Miller95def091999-11-25 00:26:21 +1100705 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100706 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100707 break;
Darren Tucker415bddc2007-06-12 23:43:16 +1000708 case 'K':
709 options.gss_authentication = 1;
710 options.gss_deleg_creds = 1;
711 break;
Damien Miller95def091999-11-25 00:26:21 +1100712 case 'i':
dtucker@openbsd.org03239c12015-10-25 23:42:00 +0000713 p = tilde_expand_filename(optarg, original_real_uid);
714 if (stat(p, &st) < 0)
Damien Millerf4614452001-07-14 12:18:10 +1000715 fprintf(stderr, "Warning: Identity file %s "
dtucker@openbsd.org03239c12015-10-25 23:42:00 +0000716 "not accessible: %s.\n", p,
Damien Miller3eb48b62005-03-01 21:15:46 +1100717 strerror(errno));
dtucker@openbsd.org03239c12015-10-25 23:42:00 +0000718 else
719 add_identity_file(&options, NULL, p, 1);
720 free(p);
Damien Miller95def091999-11-25 00:26:21 +1100721 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000722 case 'I':
Damien Miller7ea845e2010-02-12 09:21:02 +1100723#ifdef ENABLE_PKCS11
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000724 free(options.pkcs11_provider);
Damien Miller7ea845e2010-02-12 09:21:02 +1100725 options.pkcs11_provider = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000726#else
Damien Miller7ea845e2010-02-12 09:21:02 +1100727 fprintf(stderr, "no support for PKCS#11.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000728#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000729 break;
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000730 case 'J':
731 if (options.jump_host != NULL)
732 fatal("Only a single -J option permitted");
733 if (options.proxy_command != NULL)
734 fatal("Cannot specify -J with ProxyCommand");
735 if (parse_jump(optarg, &options, 1) == -1)
736 fatal("Invalid -J argument");
737 options.proxy_command = xstrdup("none");
738 break;
Damien Miller95def091999-11-25 00:26:21 +1100739 case 't':
Damien Miller21771e22011-05-15 08:45:50 +1000740 if (options.request_tty == REQUEST_TTY_YES)
741 options.request_tty = REQUEST_TTY_FORCE;
742 else
743 options.request_tty = REQUEST_TTY_YES;
Damien Miller95def091999-11-25 00:26:21 +1100744 break;
Damien Miller95def091999-11-25 00:26:21 +1100745 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000746 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100747 debug_flag = 1;
748 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000749 } else {
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000750 if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
751 debug_flag++;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000752 options.log_level++;
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000753 }
Darren Tuckere98dfa32003-07-19 19:54:31 +1000754 }
Damien Miller03d4d7e2013-04-23 15:21:06 +1000755 break;
Damien Miller95def091999-11-25 00:26:21 +1100756 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100757 fprintf(stderr, "%s, %s\n",
Damien Miller1f0311c2014-05-15 14:24:09 +1000758 SSH_RELEASE,
759#ifdef WITH_OPENSSL
760 SSLeay_version(SSLEAY_VERSION)
761#else
762 "without OpenSSL"
763#endif
764 );
Damien Miller95def091999-11-25 00:26:21 +1100765 if (opt == 'V')
766 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100767 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100768 case 'w':
Damien Miller7b58e802005-12-13 19:33:19 +1100769 if (options.tun_open == -1)
770 options.tun_open = SSH_TUNMODE_DEFAULT;
Damien Millerd27b9472005-12-13 19:29:02 +1100771 options.tun_local = a2tun(optarg, &options.tun_remote);
Damien Miller7b58e802005-12-13 19:33:19 +1100772 if (options.tun_local == SSH_TUNID_ERR) {
Darren Tuckerd6173c02008-06-13 04:52:53 +1000773 fprintf(stderr,
774 "Bad tun device '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100775 exit(255);
Damien Millerd27b9472005-12-13 19:29:02 +1100776 }
777 break;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100778 case 'W':
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +0000779 if (options.stdio_forward_host != NULL)
Damien Millere1537f92010-01-26 13:26:22 +1100780 fatal("stdio forward already specified");
781 if (muxclient_command != 0)
782 fatal("Cannot specify stdio forward with -O");
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100783 if (parse_forward(&fwd, optarg, 1, 0)) {
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +0000784 options.stdio_forward_host = fwd.listen_host;
785 options.stdio_forward_port = fwd.listen_port;
Darren Tuckera627d422013-06-02 07:31:17 +1000786 free(fwd.connect_host);
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100787 } else {
788 fprintf(stderr,
789 "Bad stdio forwarding specification '%s'\n",
790 optarg);
791 exit(255);
792 }
Damien Miller21771e22011-05-15 08:45:50 +1000793 options.request_tty = REQUEST_TTY_NO;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100794 no_shell_flag = 1;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100795 break;
Damien Miller95def091999-11-25 00:26:21 +1100796 case 'q':
797 options.log_level = SYSLOG_LEVEL_QUIET;
798 break;
Damien Miller95def091999-11-25 00:26:21 +1100799 case 'e':
800 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000801 (u_char) optarg[1] >= 64 &&
802 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000803 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100804 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000805 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100806 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000807 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100808 else {
Damien Millerf4614452001-07-14 12:18:10 +1000809 fprintf(stderr, "Bad escape character '%s'.\n",
810 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100811 exit(255);
Damien Miller95def091999-11-25 00:26:21 +1100812 }
813 break;
Damien Miller95def091999-11-25 00:26:21 +1100814 case 'c':
djm@openbsd.orgcdccebd2017-04-30 23:15:04 +0000815 if (!ciphers_valid(*optarg == '+' ?
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000816 optarg + 1 : optarg)) {
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000817 fprintf(stderr, "Unknown cipher type '%s'\n",
818 optarg);
819 exit(255);
820 }
djm@openbsd.orgcdccebd2017-04-30 23:15:04 +0000821 free(options.ciphers);
822 options.ciphers = xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100823 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000824 case 'm':
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000825 if (mac_valid(optarg)) {
826 free(options.macs);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000827 options.macs = xstrdup(optarg);
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000828 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000829 fprintf(stderr, "Unknown mac type '%s'\n",
830 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100831 exit(255);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000832 }
833 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000834 case 'M':
Damien Millerd14b1e72005-06-16 13:19:41 +1000835 if (options.control_master == SSHCTL_MASTER_YES)
836 options.control_master = SSHCTL_MASTER_ASK;
837 else
838 options.control_master = SSHCTL_MASTER_YES;
Damien Miller0e220db2004-06-15 10:34:08 +1000839 break;
Damien Miller95def091999-11-25 00:26:21 +1100840 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000841 options.port = a2port(optarg);
Damien Miller3dc71ad2009-01-28 16:31:22 +1100842 if (options.port <= 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000843 fprintf(stderr, "Bad port '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100844 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000845 }
Damien Miller95def091999-11-25 00:26:21 +1100846 break;
Damien Miller95def091999-11-25 00:26:21 +1100847 case 'l':
848 options.user = optarg;
849 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000850
Damien Miller95def091999-11-25 00:26:21 +1100851 case 'L':
Damien Miller4bf648f2009-02-14 16:28:21 +1100852 if (parse_forward(&fwd, optarg, 0, 0))
Damien Millerf91ee4c2005-03-01 21:24:33 +1100853 add_local_forward(&options, &fwd);
854 else {
Damien Millerf4614452001-07-14 12:18:10 +1000855 fprintf(stderr,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100856 "Bad local forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000857 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100858 exit(255);
Ben Lindstrom1a174712001-09-12 17:56:15 +0000859 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100860 break;
861
862 case 'R':
Damien Miller4bf648f2009-02-14 16:28:21 +1100863 if (parse_forward(&fwd, optarg, 0, 1)) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100864 add_remote_forward(&options, &fwd);
865 } else {
866 fprintf(stderr,
867 "Bad remote forwarding specification "
868 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100869 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100870 }
Damien Miller95def091999-11-25 00:26:21 +1100871 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000872
873 case 'D':
Damien Miller4bf648f2009-02-14 16:28:21 +1100874 if (parse_forward(&fwd, optarg, 1, 0)) {
Damien Millera699d952008-11-03 19:27:34 +1100875 add_local_forward(&options, &fwd);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100876 } else {
Damien Millera699d952008-11-03 19:27:34 +1100877 fprintf(stderr,
878 "Bad dynamic forwarding specification "
879 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100880 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000881 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000882 break;
883
Damien Miller95def091999-11-25 00:26:21 +1100884 case 'C':
885 options.compression = 1;
886 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000887 case 'N':
888 no_shell_flag = 1;
Damien Miller21771e22011-05-15 08:45:50 +1000889 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000890 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000891 case 'T':
Damien Miller21771e22011-05-15 08:45:50 +1000892 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000893 break;
Damien Miller95def091999-11-25 00:26:21 +1100894 case 'o':
Damien Miller9836cf82003-12-17 16:30:06 +1100895 line = xstrdup(optarg);
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000896 if (process_config_line(&options, pw,
897 host ? host : "", host ? host : "", line,
898 "command-line", 0, NULL, SSHCONF_USERCONF) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100899 exit(255);
Darren Tuckera627d422013-06-02 07:31:17 +1000900 free(line);
Damien Miller95def091999-11-25 00:26:21 +1100901 break;
Damien Miller832562e2001-01-30 09:30:01 +1100902 case 's':
903 subsystem_flag = 1;
904 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000905 case 'S':
mmcc@openbsd.orgd59ce082015-12-10 17:08:40 +0000906 free(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +1000907 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000908 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000909 case 'b':
910 options.bind_address = optarg;
911 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000912 case 'F':
913 config = optarg;
914 break;
Damien Miller95def091999-11-25 00:26:21 +1100915 default:
916 usage();
917 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000918 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000919
Damien Millerf4614452001-07-14 12:18:10 +1000920 ac -= optind;
921 av += optind;
922
Darren Tuckerb8c884a2010-01-08 18:53:43 +1100923 if (ac > 0 && !host) {
Ben Lindstromc276c122002-12-23 02:14:51 +0000924 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000925 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000926 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000927 if (cp == NULL || cp == p)
928 usage();
929 options.user = p;
930 *cp = '\0';
Damien Miller0faf7472013-10-17 11:47:23 +1100931 host = xstrdup(++cp);
Damien Millerf4614452001-07-14 12:18:10 +1000932 } else
Damien Miller0faf7472013-10-17 11:47:23 +1100933 host = xstrdup(*av);
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000934 if (ac > 1) {
935 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000936 goto again;
937 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000938 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000939 }
940
Damien Miller95def091999-11-25 00:26:21 +1100941 /* Check that we got a host name. */
942 if (!host)
943 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000944
Damien Miller0faf7472013-10-17 11:47:23 +1100945 host_arg = xstrdup(host);
946
Damien Miller1f0311c2014-05-15 14:24:09 +1000947#ifdef WITH_OPENSSL
Damien Miller4314c2b2010-09-10 11:12:09 +1000948 OpenSSL_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100949 ERR_load_crypto_strings();
Damien Miller1f0311c2014-05-15 14:24:09 +1000950#endif
Damien Millercb5e44a2000-09-29 12:12:36 +1100951
Damien Miller95def091999-11-25 00:26:21 +1100952 /* Initialize the command to execute on remote host. */
953 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000954
Damien Miller5428f641999-11-25 11:54:57 +1100955 /*
956 * Save the command to execute on the remote host in a buffer. There
957 * is no limit on the length of the command, except by the maximum
958 * packet size. Also sets the tty flag if there is no command.
959 */
Damien Millerf4614452001-07-14 12:18:10 +1000960 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100961 /* No command specified - execute shell on a tty. */
Damien Miller832562e2001-01-30 09:30:01 +1100962 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000963 fprintf(stderr,
964 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100965 usage();
966 }
Damien Miller95def091999-11-25 00:26:21 +1100967 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000968 /* A command has been specified. Store it into the buffer. */
969 for (i = 0; i < ac; i++) {
970 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100971 buffer_append(&command, " ", 1);
972 buffer_append(&command, av[i], strlen(av[i]));
973 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000974 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000975
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000976 /*
977 * Initialize "log" output. Since we are the client all output
Damien Miller03d4d7e2013-04-23 15:21:06 +1000978 * goes to stderr unless otherwise specified by -y or -E.
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000979 */
Damien Miller03d4d7e2013-04-23 15:21:06 +1000980 if (use_syslog && logfile != NULL)
981 fatal("Can't specify both -y and -E");
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000982 if (logfile != NULL)
Damien Miller03d4d7e2013-04-23 15:21:06 +1000983 log_redirect_stderr_to(logfile);
Darren Tucker72efd742009-06-21 17:48:00 +1000984 log_init(argv0,
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +0000985 options.log_level == SYSLOG_LEVEL_NOT_SET ?
986 SYSLOG_LEVEL_INFO : options.log_level,
987 options.log_facility == SYSLOG_FACILITY_NOT_SET ?
988 SYSLOG_FACILITY_USER : options.log_facility,
989 !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000990
Damien Miller03d4d7e2013-04-23 15:21:06 +1000991 if (debug_flag)
Damien Miller1f0311c2014-05-15 14:24:09 +1000992 logit("%s, %s", SSH_RELEASE,
993#ifdef WITH_OPENSSL
994 SSLeay_version(SSLEAY_VERSION)
995#else
996 "without OpenSSL"
997#endif
998 );
Damien Miller03d4d7e2013-04-23 15:21:06 +1000999
Damien Miller13f97b22014-02-24 15:57:55 +11001000 /* Parse the configuration files */
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001001 process_config_files(host_arg, pw, 0);
Ben Lindstrom83f07d12001-10-03 17:22:29 +00001002
Damien Miller13f97b22014-02-24 15:57:55 +11001003 /* Hostname canonicalisation needs a few options filled. */
1004 fill_default_options_for_canonicalization(&options);
1005
1006 /* If the user has replaced the hostname then take it into use now */
1007 if (options.hostname != NULL) {
1008 /* NB. Please keep in sync with readconf.c:match_cfg_line() */
1009 cp = percent_expand(options.hostname,
1010 "h", host, (char *)NULL);
1011 free(host);
1012 host = cp;
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001013 free(options.hostname);
1014 options.hostname = xstrdup(host);
Damien Miller13f97b22014-02-24 15:57:55 +11001015 }
1016
1017 /* If canonicalization requested then try to apply it */
1018 lowercase(host);
1019 if (options.canonicalize_hostname != SSH_CANONICALISE_NO)
1020 addrs = resolve_canonicalize(&host, options.port);
1021
1022 /*
Damien Miller08b57c62014-02-27 10:17:13 +11001023 * If CanonicalizePermittedCNAMEs have been specified but
1024 * other canonicalization did not happen (by not being requested
1025 * or by failing with fallback) then the hostname may still be changed
1026 * as a result of CNAME following.
1027 *
1028 * Try to resolve the bare hostname name using the system resolver's
1029 * usual search rules and then apply the CNAME follow rules.
1030 *
1031 * Skip the lookup if a ProxyCommand is being used unless the user
1032 * has specifically requested canonicalisation for this case via
1033 * CanonicalizeHostname=always
Damien Miller13f97b22014-02-24 15:57:55 +11001034 */
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001035 direct = option_clear_or_none(options.proxy_command) &&
1036 options.jump_host == NULL;
1037 if (addrs == NULL && options.num_permitted_cnames != 0 && (direct ||
1038 options.canonicalize_hostname == SSH_CANONICALISE_ALWAYS)) {
Damien Miller19439e92014-07-02 15:28:40 +10001039 if ((addrs = resolve_host(host, options.port,
1040 option_clear_or_none(options.proxy_command),
1041 cname, sizeof(cname))) == NULL) {
1042 /* Don't fatal proxied host names not in the DNS */
1043 if (option_clear_or_none(options.proxy_command))
1044 cleanup_exit(255); /* logged in resolve_host */
1045 } else
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001046 check_follow_cname(direct, &host, cname);
Damien Miller13f97b22014-02-24 15:57:55 +11001047 }
1048
1049 /*
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001050 * If canonicalisation is enabled then re-parse the configuration
1051 * files as new stanzas may match.
Damien Miller13f97b22014-02-24 15:57:55 +11001052 */
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001053 if (options.canonicalize_hostname != 0) {
1054 debug("Re-reading configuration after hostname "
1055 "canonicalisation");
1056 free(options.hostname);
1057 options.hostname = xstrdup(host);
1058 process_config_files(host_arg, pw, 1);
1059 /*
1060 * Address resolution happens early with canonicalisation
1061 * enabled and the port number may have changed since, so
1062 * reset it in address list
1063 */
1064 if (addrs != NULL && options.port > 0)
1065 set_addrinfo_port(addrs, options.port);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +00001066 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001067
Damien Miller95def091999-11-25 00:26:21 +11001068 /* Fill configuration defaults. */
1069 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001070
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001071 /*
1072 * If ProxyJump option specified, then construct a ProxyCommand now.
1073 */
1074 if (options.jump_host != NULL) {
1075 char port_s[8];
1076
1077 /* Consistency check */
1078 if (options.proxy_command != NULL)
1079 fatal("inconsistent options: ProxyCommand+ProxyJump");
1080 /* Never use FD passing for ProxyJump */
1081 options.proxy_use_fdpass = 0;
1082 snprintf(port_s, sizeof(port_s), "%d", options.jump_port);
1083 xasprintf(&options.proxy_command,
djm@openbsd.org8fb15312017-03-08 12:07:47 +00001084 "ssh%s%s%s%s%s%s%s%s%s%.*s -W '[%%h]:%%p' %s",
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001085 /* Optional "-l user" argument if jump_user set */
1086 options.jump_user == NULL ? "" : " -l ",
1087 options.jump_user == NULL ? "" : options.jump_user,
1088 /* Optional "-p port" argument if jump_port set */
1089 options.jump_port <= 0 ? "" : " -p ",
1090 options.jump_port <= 0 ? "" : port_s,
1091 /* Optional additional jump hosts ",..." */
1092 options.jump_extra == NULL ? "" : " -J ",
1093 options.jump_extra == NULL ? "" : options.jump_extra,
1094 /* Optional "-F" argumment if -F specified */
1095 config == NULL ? "" : " -F ",
1096 config == NULL ? "" : config,
1097 /* Optional "-v" arguments if -v set */
1098 debug_flag ? " -" : "",
1099 debug_flag, "vvv",
1100 /* Mandatory hostname */
1101 options.jump_host);
1102 debug("Setting implicit ProxyCommand from ProxyJump: %s",
1103 options.proxy_command);
1104 }
1105
Damien Miller13f97b22014-02-24 15:57:55 +11001106 if (options.port == 0)
1107 options.port = default_ssh_port();
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001108 channel_set_af(options.address_family);
1109
Damien Millere9fc72e2013-10-15 12:14:12 +11001110 /* Tidy and check options */
1111 if (options.host_key_alias != NULL)
1112 lowercase(options.host_key_alias);
1113 if (options.proxy_command != NULL &&
1114 strcmp(options.proxy_command, "-") == 0 &&
1115 options.proxy_use_fdpass)
1116 fatal("ProxyCommand=- and ProxyUseFDPass are incompatible");
djm@openbsd.org44732de2015-02-20 22:17:21 +00001117 if (options.control_persist &&
1118 options.update_hostkeys == SSH_UPDATE_HOSTKEYS_ASK) {
1119 debug("UpdateHostKeys=ask is incompatible with ControlPersist; "
1120 "disabling");
1121 options.update_hostkeys = 0;
1122 }
djm@openbsd.org88b6fcd2015-11-19 08:23:27 +00001123 if (options.connection_attempts <= 0)
1124 fatal("Invalid number of ConnectionAttempts");
Damien Miller0faf7472013-10-17 11:47:23 +11001125#ifndef HAVE_CYGWIN
1126 if (original_effective_uid != 0)
1127 options.use_privileged_port = 0;
1128#endif
Damien Millere9fc72e2013-10-15 12:14:12 +11001129
bluhm@openbsd.org1112b532017-05-30 18:58:37 +00001130 if (buffer_len(&command) != 0 && options.remote_command != NULL)
1131 fatal("Cannot execute command-line and remote command.");
1132
1133 /* Cannot fork to background if no command. */
1134 if (fork_after_authentication_flag && buffer_len(&command) == 0 &&
1135 options.remote_command == NULL && !no_shell_flag)
1136 fatal("Cannot fork into background without a command "
1137 "to execute.");
1138
Damien Miller95def091999-11-25 00:26:21 +11001139 /* reinit */
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +00001140 log_init(argv0, options.log_level, options.log_facility, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001141
Damien Millerfff9f092012-07-06 13:45:01 +10001142 if (options.request_tty == REQUEST_TTY_YES ||
1143 options.request_tty == REQUEST_TTY_FORCE)
1144 tty_flag = 1;
1145
1146 /* Allocate a tty by default if no command specified. */
bluhm@openbsd.org1112b532017-05-30 18:58:37 +00001147 if (buffer_len(&command) == 0 && options.remote_command == NULL)
Damien Millerfff9f092012-07-06 13:45:01 +10001148 tty_flag = options.request_tty != REQUEST_TTY_NO;
1149
1150 /* Force no tty */
markus@openbsd.org8d057842016-09-30 09:19:13 +00001151 if (options.request_tty == REQUEST_TTY_NO ||
1152 (muxclient_command && muxclient_command != SSHMUX_COMMAND_PROXY))
Damien Millerfff9f092012-07-06 13:45:01 +10001153 tty_flag = 0;
1154 /* Do not allocate a tty if stdin is not a tty. */
1155 if ((!isatty(fileno(stdin)) || stdin_null_flag) &&
1156 options.request_tty != REQUEST_TTY_FORCE) {
1157 if (tty_flag)
1158 logit("Pseudo-terminal will not be allocated because "
1159 "stdin is not a terminal.");
1160 tty_flag = 0;
1161 }
1162
Damien Miller60bc5172001-03-19 09:38:15 +11001163 seed_rng();
1164
Damien Miller95def091999-11-25 00:26:21 +11001165 if (options.user == NULL)
1166 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001167
Damien Millerdfc85fa2011-05-15 08:44:02 +10001168 if (gethostname(thishost, sizeof(thishost)) == -1)
1169 fatal("gethostname: %s", strerror(errno));
1170 strlcpy(shorthost, thishost, sizeof(shorthost));
1171 shorthost[strcspn(thishost, ".")] = '\0';
1172 snprintf(portstr, sizeof(portstr), "%d", options.port);
djm@openbsd.org674b3b62015-09-11 03:47:28 +00001173 snprintf(uidstr, sizeof(uidstr), "%d", pw->pw_uid);
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001174
Damien Miller9c386432014-07-03 21:27:46 +10001175 if ((md = ssh_digest_start(SSH_DIGEST_SHA1)) == NULL ||
1176 ssh_digest_update(md, thishost, strlen(thishost)) < 0 ||
1177 ssh_digest_update(md, host, strlen(host)) < 0 ||
1178 ssh_digest_update(md, portstr, strlen(portstr)) < 0 ||
1179 ssh_digest_update(md, options.user, strlen(options.user)) < 0 ||
1180 ssh_digest_final(md, conn_hash, sizeof(conn_hash)) < 0)
1181 fatal("%s: mux digest failed", __func__);
1182 ssh_digest_free(md);
1183 conn_hash_hex = tohex(conn_hash, ssh_digest_bytes(SSH_DIGEST_SHA1));
1184
Damien Millerdfc85fa2011-05-15 08:44:02 +10001185 if (options.local_command != NULL) {
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001186 debug3("expanding LocalCommand: %s", options.local_command);
1187 cp = options.local_command;
Damien Miller9c386432014-07-03 21:27:46 +10001188 options.local_command = percent_expand(cp,
1189 "C", conn_hash_hex,
1190 "L", shorthost,
1191 "d", pw->pw_dir,
1192 "h", host,
1193 "l", thishost,
1194 "n", host_arg,
1195 "p", portstr,
1196 "r", options.user,
1197 "u", pw->pw_name,
Damien Millerdfc85fa2011-05-15 08:44:02 +10001198 (char *)NULL);
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001199 debug3("expanded LocalCommand: %s", options.local_command);
Darren Tuckera627d422013-06-02 07:31:17 +10001200 free(cp);
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001201 }
1202
bluhm@openbsd.org1112b532017-05-30 18:58:37 +00001203 if (options.remote_command != NULL) {
1204 debug3("expanding RemoteCommand: %s", options.remote_command);
1205 cp = options.remote_command;
1206 options.remote_command = percent_expand(cp,
1207 "C", conn_hash_hex,
1208 "L", shorthost,
1209 "d", pw->pw_dir,
1210 "h", host,
1211 "l", thishost,
1212 "n", host_arg,
1213 "p", portstr,
1214 "r", options.user,
1215 "u", pw->pw_name,
1216 (char *)NULL);
1217 debug3("expanded RemoteCommand: %s", options.remote_command);
1218 free(cp);
1219 buffer_append(&command, options.remote_command,
1220 strlen(options.remote_command));
1221
1222 }
1223
Damien Miller0e220db2004-06-15 10:34:08 +10001224 if (options.control_path != NULL) {
Damien Miller6476cad2005-06-16 13:18:34 +10001225 cp = tilde_expand_filename(options.control_path,
1226 original_real_uid);
Darren Tuckera627d422013-06-02 07:31:17 +10001227 free(options.control_path);
Damien Miller9c386432014-07-03 21:27:46 +10001228 options.control_path = percent_expand(cp,
1229 "C", conn_hash_hex,
1230 "L", shorthost,
1231 "h", host,
1232 "l", thishost,
1233 "n", host_arg,
1234 "p", portstr,
1235 "r", options.user,
1236 "u", pw->pw_name,
djm@openbsd.org674b3b62015-09-11 03:47:28 +00001237 "i", uidstr,
Damien Millerdfc85fa2011-05-15 08:44:02 +10001238 (char *)NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10001239 free(cp);
Damien Miller0e220db2004-06-15 10:34:08 +10001240 }
Damien Miller9c386432014-07-03 21:27:46 +10001241 free(conn_hash_hex);
1242
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001243 if (config_test) {
1244 dump_client_config(&options, host);
1245 exit(0);
1246 }
1247
Damien Millerb1cbfa22008-05-19 16:00:08 +10001248 if (muxclient_command != 0 && options.control_path == NULL)
Darren Tucker0814d312005-06-01 23:08:51 +10001249 fatal("No ControlPath specified for \"-O\" command");
markus@openbsd.org8d057842016-09-30 09:19:13 +00001250 if (options.control_path != NULL) {
1251 int sock;
1252 if ((sock = muxclient(options.control_path)) >= 0) {
1253 packet_set_connection(sock, sock);
1254 ssh = active_state; /* XXX */
markus@openbsd.org8d057842016-09-30 09:19:13 +00001255 packet_set_mux();
1256 goto skip_connect;
1257 }
1258 }
Damien Miller0e220db2004-06-15 10:34:08 +10001259
Damien Miller08b57c62014-02-27 10:17:13 +11001260 /*
1261 * If hostname canonicalisation was not enabled, then we may not
1262 * have yet resolved the hostname. Do so now.
1263 */
1264 if (addrs == NULL && options.proxy_command == NULL) {
djm@openbsd.orga85768a2015-09-04 04:56:09 +00001265 debug2("resolving \"%s\" port %d", host, options.port);
Damien Miller08b57c62014-02-27 10:17:13 +11001266 if ((addrs = resolve_host(host, options.port, 1,
1267 cname, sizeof(cname))) == NULL)
1268 cleanup_exit(255); /* resolve_host logs the error */
1269 }
1270
Damien Miller67bd0622007-09-17 12:06:57 +10001271 timeout_ms = options.connection_timeout * 1000;
1272
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001273 /* Open a connection to the remote host. */
Damien Miller0faf7472013-10-17 11:47:23 +11001274 if (ssh_connect(host, addrs, &hostaddr, options.port,
1275 options.address_family, options.connection_attempts,
1276 &timeout_ms, options.tcp_keep_alive,
1277 options.use_privileged_port) != 0)
1278 exit(255);
1279
Damien Miller28631ce2013-10-26 10:07:56 +11001280 if (addrs != NULL)
1281 freeaddrinfo(addrs);
1282
Damien Miller0faf7472013-10-17 11:47:23 +11001283 packet_set_timeout(options.server_alive_interval,
1284 options.server_alive_count_max);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001285
djm@openbsd.org95767262016-03-07 19:02:43 +00001286 ssh = active_state; /* XXX */
1287
Damien Miller67bd0622007-09-17 12:06:57 +10001288 if (timeout_ms > 0)
1289 debug3("timeout: %d ms remain after connect", timeout_ms);
1290
Damien Miller5428f641999-11-25 11:54:57 +11001291 /*
1292 * If we successfully made the connection, load the host private key
1293 * in case we will need it later for combined rsa-rhosts
1294 * authentication. This must be done before releasing extra
1295 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +00001296 * If we cannot access the private keys, load the public keys
1297 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +11001298 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001299 sensitive_data.nkeys = 0;
1300 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001301 sensitive_data.external_keysign = 0;
djm@openbsd.org873d3e72017-04-30 23:18:44 +00001302 if (options.hostbased_authentication) {
Damien Miller0fa47cf2013-12-29 17:53:39 +11001303 sensitive_data.nkeys = 9;
Damien Millerddd63ab2006-03-31 23:10:51 +11001304 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001305 sizeof(struct sshkey)); /* XXX */
Damien Miller6af914a2010-09-10 11:39:26 +10001306 for (i = 0; i < sensitive_data.nkeys; i++)
1307 sensitive_data.keys[i] = NULL;
Ben Lindstromf9c48842002-06-11 16:37:51 +00001308
1309 PRIV_START;
Damien Miller6af914a2010-09-10 11:39:26 +10001310#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001311 sensitive_data.keys[1] = key_load_private_cert(KEY_ECDSA,
Damien Millereb8b60e2010-08-31 22:41:14 +10001312 _PATH_HOST_ECDSA_KEY_FILE, "", NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001313#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001314 sensitive_data.keys[2] = key_load_private_cert(KEY_ED25519,
1315 _PATH_HOST_ED25519_KEY_FILE, "", NULL);
Damien Millereb8b60e2010-08-31 22:41:14 +10001316 sensitive_data.keys[3] = key_load_private_cert(KEY_RSA,
Damien Millerc1583312010-08-05 13:04:50 +10001317 _PATH_HOST_RSA_KEY_FILE, "", NULL);
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001318 sensitive_data.keys[4] = key_load_private_cert(KEY_DSA,
1319 _PATH_HOST_DSA_KEY_FILE, "", NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001320#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001321 sensitive_data.keys[5] = key_load_private_type(KEY_ECDSA,
Damien Millereb8b60e2010-08-31 22:41:14 +10001322 _PATH_HOST_ECDSA_KEY_FILE, "", NULL, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001323#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001324 sensitive_data.keys[6] = key_load_private_type(KEY_ED25519,
1325 _PATH_HOST_ED25519_KEY_FILE, "", NULL, NULL);
Damien Miller0fa47cf2013-12-29 17:53:39 +11001326 sensitive_data.keys[7] = key_load_private_type(KEY_RSA,
Darren Tucker232b76f2006-05-06 17:41:51 +10001327 _PATH_HOST_RSA_KEY_FILE, "", NULL, NULL);
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001328 sensitive_data.keys[8] = key_load_private_type(KEY_DSA,
1329 _PATH_HOST_DSA_KEY_FILE, "", NULL, NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +00001330 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001331
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +00001332 if (options.hostbased_authentication == 1 &&
1333 sensitive_data.keys[0] == NULL &&
Damien Millereb8b60e2010-08-31 22:41:14 +10001334 sensitive_data.keys[5] == NULL &&
Damien Miller5be9d9e2013-12-07 11:24:01 +11001335 sensitive_data.keys[6] == NULL &&
Damien Miller0fa47cf2013-12-29 17:53:39 +11001336 sensitive_data.keys[7] == NULL &&
1337 sensitive_data.keys[8] == NULL) {
Damien Miller6af914a2010-09-10 11:39:26 +10001338#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001339 sensitive_data.keys[1] = key_load_cert(
Damien Millereb8b60e2010-08-31 22:41:14 +10001340 _PATH_HOST_ECDSA_KEY_FILE);
Damien Miller6af914a2010-09-10 11:39:26 +10001341#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001342 sensitive_data.keys[2] = key_load_cert(
1343 _PATH_HOST_ED25519_KEY_FILE);
Damien Millereb8b60e2010-08-31 22:41:14 +10001344 sensitive_data.keys[3] = key_load_cert(
Damien Millerc1583312010-08-05 13:04:50 +10001345 _PATH_HOST_RSA_KEY_FILE);
Damien Miller0fa47cf2013-12-29 17:53:39 +11001346 sensitive_data.keys[4] = key_load_cert(
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001347 _PATH_HOST_DSA_KEY_FILE);
Damien Miller6af914a2010-09-10 11:39:26 +10001348#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001349 sensitive_data.keys[5] = key_load_public(
Damien Millereb8b60e2010-08-31 22:41:14 +10001350 _PATH_HOST_ECDSA_KEY_FILE, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001351#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001352 sensitive_data.keys[6] = key_load_public(
1353 _PATH_HOST_ED25519_KEY_FILE, NULL);
Damien Miller5be9d9e2013-12-07 11:24:01 +11001354 sensitive_data.keys[7] = key_load_public(
Damien Miller0fa47cf2013-12-29 17:53:39 +11001355 _PATH_HOST_RSA_KEY_FILE, NULL);
1356 sensitive_data.keys[8] = key_load_public(
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001357 _PATH_HOST_DSA_KEY_FILE, NULL);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001358 sensitive_data.external_keysign = 1;
1359 }
Damien Miller95def091999-11-25 00:26:21 +11001360 }
Damien Miller5428f641999-11-25 11:54:57 +11001361 /*
1362 * Get rid of any extra privileges that we may have. We will no
1363 * longer need them. Also, extra privileges could make it very hard
1364 * to read identity files and other non-world-readable files from the
1365 * user's home directory if it happens to be on a NFS volume where
1366 * root is mapped to nobody.
1367 */
Darren Tucker25f60a72004-08-15 17:23:34 +10001368 if (original_effective_uid == 0) {
1369 PRIV_START;
1370 permanently_set_uid(pw);
1371 }
Damien Miller95def091999-11-25 00:26:21 +11001372
Damien Miller5428f641999-11-25 11:54:57 +11001373 /*
1374 * Now that we are back to our own permissions, create ~/.ssh
Damien Miller788f2122005-11-05 15:14:59 +11001375 * directory if it doesn't already exist.
Damien Miller5428f641999-11-25 11:54:57 +11001376 */
Darren Tucker45c66d72011-11-04 10:50:40 +11001377 if (config == NULL) {
1378 r = snprintf(buf, sizeof buf, "%s%s%s", pw->pw_dir,
1379 strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
1380 if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) < 0) {
Darren Tucker8ccb7392010-09-10 12:28:24 +10001381#ifdef WITH_SELINUX
Darren Tucker45c66d72011-11-04 10:50:40 +11001382 ssh_selinux_setfscreatecon(buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001383#endif
Darren Tucker45c66d72011-11-04 10:50:40 +11001384 if (mkdir(buf, 0700) < 0)
1385 error("Could not create directory '%.200s'.",
1386 buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001387#ifdef WITH_SELINUX
Darren Tucker45c66d72011-11-04 10:50:40 +11001388 ssh_selinux_setfscreatecon(NULL);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001389#endif
Darren Tucker45c66d72011-11-04 10:50:40 +11001390 }
Darren Tucker8ccb7392010-09-10 12:28:24 +10001391 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001392 /* load options.identity_files */
1393 load_public_identity_files();
1394
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00001395 /* optionally set the SSH_AUTHSOCKET_ENV_NAME varibale */
markus@openbsd.org1a75d142016-05-04 14:29:58 +00001396 if (options.identity_agent &&
1397 strcmp(options.identity_agent, SSH_AUTHSOCKET_ENV_NAME) != 0) {
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00001398 if (strcmp(options.identity_agent, "none") == 0) {
1399 unsetenv(SSH_AUTHSOCKET_ENV_NAME);
1400 } else {
1401 p = tilde_expand_filename(options.identity_agent,
1402 original_real_uid);
1403 cp = percent_expand(p, "d", pw->pw_dir,
1404 "u", pw->pw_name, "l", thishost, "h", host,
1405 "r", options.user, (char *)NULL);
1406 setenv(SSH_AUTHSOCKET_ENV_NAME, cp, 1);
1407 free(cp);
1408 free(p);
1409 }
1410 }
1411
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001412 /* Expand ~ in known host file names. */
Damien Miller295ee632011-05-29 21:42:31 +10001413 tilde_expand_paths(options.system_hostfiles,
1414 options.num_system_hostfiles);
1415 tilde_expand_paths(options.user_hostfiles, options.num_user_hostfiles);
Damien Miller95def091999-11-25 00:26:21 +11001416
Damien Miller07cd5892001-11-12 10:52:03 +11001417 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
Damien Miller857b02e2010-09-24 22:02:56 +10001418 signal(SIGCHLD, main_sigchld_handler);
Damien Miller07cd5892001-11-12 10:52:03 +11001419
Darren Tuckerd6173c02008-06-13 04:52:53 +10001420 /* Log into the remote system. Never returns if the login fails. */
Damien Miller67bd0622007-09-17 12:06:57 +10001421 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr,
Damien Millerd925dcd2010-12-01 12:21:51 +11001422 options.port, pw, timeout_ms);
Damien Miller95def091999-11-25 00:26:21 +11001423
Damien Miller383ffe62010-06-26 10:02:03 +10001424 if (packet_connection_is_on_socket()) {
1425 verbose("Authenticated to %s ([%s]:%d).", host,
djm@openbsd.org95767262016-03-07 19:02:43 +00001426 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
Damien Miller383ffe62010-06-26 10:02:03 +10001427 } else {
1428 verbose("Authenticated to %s (via proxy).", host);
1429 }
1430
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001431 /* We no longer need the private host keys. Clear them now. */
1432 if (sensitive_data.nkeys != 0) {
1433 for (i = 0; i < sensitive_data.nkeys; i++) {
1434 if (sensitive_data.keys[i] != NULL) {
1435 /* Destroys contents safely */
1436 debug3("clear hostkey %d", i);
1437 key_free(sensitive_data.keys[i]);
1438 sensitive_data.keys[i] = NULL;
1439 }
1440 }
Darren Tuckera627d422013-06-02 07:31:17 +10001441 free(sensitive_data.keys);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001442 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +00001443 for (i = 0; i < options.num_identity_files; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +10001444 free(options.identity_files[i]);
1445 options.identity_files[i] = NULL;
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +00001446 if (options.identity_keys[i]) {
1447 key_free(options.identity_keys[i]);
1448 options.identity_keys[i] = NULL;
1449 }
1450 }
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001451 for (i = 0; i < options.num_certificate_files; i++) {
1452 free(options.certificate_files[i]);
1453 options.certificate_files[i] = NULL;
1454 }
Damien Miller95def091999-11-25 00:26:21 +11001455
markus@openbsd.org8d057842016-09-30 09:19:13 +00001456 skip_connect:
djm@openbsd.org97f4d302017-04-30 23:13:25 +00001457 exit_status = ssh_session2();
Damien Miller1383bd82000-04-06 12:32:37 +10001458 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +10001459
Damien Millerb1cbfa22008-05-19 16:00:08 +10001460 if (options.control_path != NULL && muxserver_sock != -1)
Damien Miller0e220db2004-06-15 10:34:08 +10001461 unlink(options.control_path);
1462
Damien Millera41ccca2010-10-07 22:07:32 +11001463 /* Kill ProxyCommand if it is running. */
1464 ssh_kill_proxy_command();
Damien Miller8c4e18a2002-09-19 12:05:02 +10001465
Damien Miller1383bd82000-04-06 12:32:37 +10001466 return exit_status;
1467}
1468
Damien Millere11e1ea2010-08-03 16:04:46 +10001469static void
1470control_persist_detach(void)
1471{
1472 pid_t pid;
djm@openbsd.orgd2d6bf82016-04-29 08:07:53 +00001473 int devnull, keep_stderr;
Damien Millere11e1ea2010-08-03 16:04:46 +10001474
1475 debug("%s: backgrounding master process", __func__);
1476
1477 /*
1478 * master (current process) into the background, and make the
1479 * foreground process a client of the backgrounded master.
1480 */
1481 switch ((pid = fork())) {
1482 case -1:
1483 fatal("%s: fork: %s", __func__, strerror(errno));
1484 case 0:
1485 /* Child: master process continues mainloop */
1486 break;
1487 default:
1488 /* Parent: set up mux slave to connect to backgrounded master */
1489 debug2("%s: background process is %ld", __func__, (long)pid);
1490 stdin_null_flag = ostdin_null_flag;
Damien Miller21771e22011-05-15 08:45:50 +10001491 options.request_tty = orequest_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +10001492 tty_flag = otty_flag;
1493 close(muxserver_sock);
1494 muxserver_sock = -1;
Damien Miller5929c522010-09-10 11:17:02 +10001495 options.control_master = SSHCTL_MASTER_NO;
Damien Millere11e1ea2010-08-03 16:04:46 +10001496 muxclient(options.control_path);
1497 /* muxclient() doesn't return on success. */
1498 fatal("Failed to connect to new control master");
1499 }
Damien Miller00d9ae22010-08-17 01:59:31 +10001500 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
1501 error("%s: open(\"/dev/null\"): %s", __func__,
1502 strerror(errno));
1503 } else {
djm@openbsd.orgd2d6bf82016-04-29 08:07:53 +00001504 keep_stderr = log_is_on_stderr() && debug_flag;
Damien Miller00d9ae22010-08-17 01:59:31 +10001505 if (dup2(devnull, STDIN_FILENO) == -1 ||
djm@openbsd.orgd2d6bf82016-04-29 08:07:53 +00001506 dup2(devnull, STDOUT_FILENO) == -1 ||
1507 (!keep_stderr && dup2(devnull, STDERR_FILENO) == -1))
Damien Miller00d9ae22010-08-17 01:59:31 +10001508 error("%s: dup2: %s", __func__, strerror(errno));
1509 if (devnull > STDERR_FILENO)
1510 close(devnull);
1511 }
Damien Miller98e27dc2013-07-25 11:55:52 +10001512 daemon(1, 1);
Damien Millerea2c1a42011-06-03 12:10:22 +10001513 setproctitle("%s [mux]", options.control_path);
Damien Millere11e1ea2010-08-03 16:04:46 +10001514}
1515
1516/* Do fork() after authentication. Used by "ssh -f" */
1517static void
1518fork_postauth(void)
1519{
1520 if (need_controlpersist_detach)
1521 control_persist_detach();
1522 debug("forking to background");
1523 fork_after_authentication_flag = 0;
1524 if (daemon(1, 1) < 0)
1525 fatal("daemon() failed: %.200s", strerror(errno));
1526}
1527
Darren Tucker9f407c42008-06-13 04:50:27 +10001528/* Callback for remote forward global requests */
1529static void
1530ssh_confirm_remote_forward(int type, u_int32_t seq, void *ctxt)
1531{
Damien Miller7acefbb2014-07-18 14:11:24 +10001532 struct Forward *rfwd = (struct Forward *)ctxt;
Darren Tucker9f407c42008-06-13 04:50:27 +10001533
Damien Miller4bf648f2009-02-14 16:28:21 +11001534 /* XXX verbose() on failure? */
Damien Miller4b3ed642014-07-02 15:29:40 +10001535 debug("remote forward %s for: listen %s%s%d, connect %s:%d",
Darren Tucker9f407c42008-06-13 04:50:27 +10001536 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
Damien Miller7acefbb2014-07-18 14:11:24 +10001537 rfwd->listen_path ? rfwd->listen_path :
1538 rfwd->listen_host ? rfwd->listen_host : "",
1539 (rfwd->listen_path || rfwd->listen_host) ? ":" : "",
1540 rfwd->listen_port, rfwd->connect_path ? rfwd->connect_path :
1541 rfwd->connect_host, rfwd->connect_port);
1542 if (rfwd->listen_path == NULL && rfwd->listen_port == 0) {
Darren Tucker68afb8c2011-10-02 18:59:03 +11001543 if (type == SSH2_MSG_REQUEST_SUCCESS) {
1544 rfwd->allocated_port = packet_get_int();
1545 logit("Allocated port %u for remote forward to %s:%d",
1546 rfwd->allocated_port,
1547 rfwd->connect_host, rfwd->connect_port);
1548 channel_update_permitted_opens(rfwd->handle,
1549 rfwd->allocated_port);
1550 } else {
1551 channel_update_permitted_opens(rfwd->handle, -1);
1552 }
Damien Miller4bf648f2009-02-14 16:28:21 +11001553 }
1554
Darren Tucker9f407c42008-06-13 04:50:27 +10001555 if (type == SSH2_MSG_REQUEST_FAILURE) {
Damien Miller7acefbb2014-07-18 14:11:24 +10001556 if (options.exit_on_forward_failure) {
1557 if (rfwd->listen_path != NULL)
1558 fatal("Error: remote port forwarding failed "
1559 "for listen path %s", rfwd->listen_path);
1560 else
1561 fatal("Error: remote port forwarding failed "
1562 "for listen port %d", rfwd->listen_port);
1563 } else {
1564 if (rfwd->listen_path != NULL)
1565 logit("Warning: remote port forwarding failed "
1566 "for listen path %s", rfwd->listen_path);
1567 else
1568 logit("Warning: remote port forwarding failed "
1569 "for listen port %d", rfwd->listen_port);
1570 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001571 }
Darren Tucker9a2a6092008-07-04 12:53:50 +10001572 if (++remote_forward_confirms_received == options.num_remote_forwards) {
Darren Tucker9f407c42008-06-13 04:50:27 +10001573 debug("All remote forwarding requests processed");
Damien Millere11e1ea2010-08-03 16:04:46 +10001574 if (fork_after_authentication_flag)
1575 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001576 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001577}
1578
Ben Lindstrombba81212001-06-25 05:01:22 +00001579static void
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001580client_cleanup_stdio_fwd(int id, void *arg)
1581{
1582 debug("stdio forwarding: done");
1583 cleanup_exit(0);
1584}
1585
Darren Tucker2d6665d2011-11-04 10:54:22 +11001586static void
Damien Miller357610d2014-07-18 15:04:10 +10001587ssh_stdio_confirm(int id, int success, void *arg)
1588{
1589 if (!success)
1590 fatal("stdio forwarding failed");
1591}
1592
1593static void
Darren Tucker2d6665d2011-11-04 10:54:22 +11001594ssh_init_stdio_forwarding(void)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001595{
1596 Channel *c;
Damien Millere1537f92010-01-26 13:26:22 +11001597 int in, out;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001598
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +00001599 if (options.stdio_forward_host == NULL)
Darren Tucker2d6665d2011-11-04 10:54:22 +11001600 return;
Damien Millere1537f92010-01-26 13:26:22 +11001601
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +00001602 debug3("%s: %s:%d", __func__, options.stdio_forward_host,
1603 options.stdio_forward_port);
Darren Tucker2d6665d2011-11-04 10:54:22 +11001604
1605 if ((in = dup(STDIN_FILENO)) < 0 ||
1606 (out = dup(STDOUT_FILENO)) < 0)
Damien Millere1537f92010-01-26 13:26:22 +11001607 fatal("channel_connect_stdio_fwd: dup() in/out failed");
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +00001608 if ((c = channel_connect_stdio_fwd(options.stdio_forward_host,
1609 options.stdio_forward_port, in, out)) == NULL)
Darren Tucker2d6665d2011-11-04 10:54:22 +11001610 fatal("%s: channel_connect_stdio_fwd failed", __func__);
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001611 channel_register_cleanup(c->self, client_cleanup_stdio_fwd, 0);
Damien Miller357610d2014-07-18 15:04:10 +10001612 channel_register_open_confirm(c->self, ssh_stdio_confirm, NULL);
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001613}
1614
1615static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001616ssh_init_forwarding(void)
1617{
Kevin Steves12057502001-02-05 14:54:34 +00001618 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001619 int i;
Kevin Steves12057502001-02-05 14:54:34 +00001620
Damien Miller0bc1bd82000-11-13 22:57:25 +11001621 /* Initiate local TCP/IP port forwardings. */
1622 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001623 debug("Local connections to %.200s:%d forwarded to remote "
1624 "address %.200s:%d",
Damien Miller7acefbb2014-07-18 14:11:24 +10001625 (options.local_forwards[i].listen_path != NULL) ?
1626 options.local_forwards[i].listen_path :
Darren Tucker47eede72005-03-14 23:08:12 +11001627 (options.local_forwards[i].listen_host == NULL) ?
Damien Miller7acefbb2014-07-18 14:11:24 +10001628 (options.fwd_opts.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001629 options.local_forwards[i].listen_host,
1630 options.local_forwards[i].listen_port,
Damien Miller7acefbb2014-07-18 14:11:24 +10001631 (options.local_forwards[i].connect_path != NULL) ?
1632 options.local_forwards[i].connect_path :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001633 options.local_forwards[i].connect_host,
1634 options.local_forwards[i].connect_port);
Damien Millerb16461c2002-01-22 23:29:22 +11001635 success += channel_setup_local_fwd_listener(
Damien Miller7acefbb2014-07-18 14:11:24 +10001636 &options.local_forwards[i], &options.fwd_opts);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001637 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10001638 if (i > 0 && success != i && options.exit_on_forward_failure)
1639 fatal("Could not request local forwarding.");
Kevin Steves12057502001-02-05 14:54:34 +00001640 if (i > 0 && success == 0)
1641 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001642
1643 /* Initiate remote TCP/IP port forwardings. */
1644 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001645 debug("Remote connections from %.200s:%d forwarded to "
1646 "local address %.200s:%d",
Damien Miller7acefbb2014-07-18 14:11:24 +10001647 (options.remote_forwards[i].listen_path != NULL) ?
1648 options.remote_forwards[i].listen_path :
Damien Miller46d38de2005-07-17 17:02:09 +10001649 (options.remote_forwards[i].listen_host == NULL) ?
Damien Milleraa3bb102005-11-05 15:12:59 +11001650 "LOCALHOST" : options.remote_forwards[i].listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +11001651 options.remote_forwards[i].listen_port,
Damien Miller7acefbb2014-07-18 14:11:24 +10001652 (options.remote_forwards[i].connect_path != NULL) ?
1653 options.remote_forwards[i].connect_path :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001654 options.remote_forwards[i].connect_host,
1655 options.remote_forwards[i].connect_port);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001656 options.remote_forwards[i].handle =
1657 channel_request_remote_forwarding(
Damien Miller7acefbb2014-07-18 14:11:24 +10001658 &options.remote_forwards[i]);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001659 if (options.remote_forwards[i].handle < 0) {
Darren Tuckere7d4b192006-07-12 22:17:10 +10001660 if (options.exit_on_forward_failure)
1661 fatal("Could not request remote forwarding.");
1662 else
1663 logit("Warning: Could not request remote "
1664 "forwarding.");
Darren Tucker68afb8c2011-10-02 18:59:03 +11001665 } else {
1666 client_register_global_confirm(ssh_confirm_remote_forward,
1667 &options.remote_forwards[i]);
Darren Tuckere7d4b192006-07-12 22:17:10 +10001668 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001669 }
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001670
1671 /* Initiate tunnel forwarding. */
1672 if (options.tun_open != SSH_TUNMODE_NO) {
1673 if (client_request_tun_fwd(options.tun_open,
1674 options.tun_local, options.tun_remote) == -1) {
1675 if (options.exit_on_forward_failure)
1676 fatal("Could not request tunnel forwarding.");
1677 else
1678 error("Could not request tunnel forwarding.");
1679 }
1680 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001681}
1682
Ben Lindstrombba81212001-06-25 05:01:22 +00001683static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001684check_agent_present(void)
1685{
djm@openbsd.org141efe42015-01-14 20:05:27 +00001686 int r;
1687
Damien Miller0bc1bd82000-11-13 22:57:25 +11001688 if (options.forward_agent) {
Damien Miller788f2122005-11-05 15:14:59 +11001689 /* Clear agent forwarding if we don't have an agent. */
djm@openbsd.org141efe42015-01-14 20:05:27 +00001690 if ((r = ssh_get_authentication_socket(NULL)) != 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001691 options.forward_agent = 0;
djm@openbsd.org141efe42015-01-14 20:05:27 +00001692 if (r != SSH_ERR_AGENT_NOT_PRESENT)
1693 debug("ssh_get_authentication_socket: %s",
1694 ssh_err(r));
1695 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001696 }
1697}
1698
Ben Lindstrombba81212001-06-25 05:01:22 +00001699static void
Damien Millerd530f5f2010-05-21 14:57:10 +10001700ssh_session2_setup(int id, int success, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001701{
Damien Miller3756dce2004-06-18 01:17:29 +10001702 extern char **environ;
Damien Miller17e7ed02005-06-17 12:54:33 +10001703 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +10001704 int interactive = tty_flag;
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001705 char *proto = NULL, *data = NULL;
Damien Miller17e7ed02005-06-17 12:54:33 +10001706
Damien Millerd530f5f2010-05-21 14:57:10 +10001707 if (!success)
1708 return; /* No need for error message, channels code sens one */
1709
Damien Miller46d38de2005-07-17 17:02:09 +10001710 display = getenv("DISPLAY");
djm@openbsd.orga58be332015-04-17 13:16:48 +00001711 if (display == NULL && options.forward_x11)
1712 debug("X11 forwarding requested but DISPLAY not set");
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001713 if (options.forward_x11 && client_x11_get_proto(display,
1714 options.xauth_location, options.forward_x11_trusted,
1715 options.forward_x11_timeout, &proto, &data) == 0) {
Damien Millerbd483e72000-04-30 10:00:53 +10001716 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001717 debug("Requesting X11 forwarding with authentication "
1718 "spoofing.");
Damien Miller6d7b4372011-06-23 08:31:57 +10001719 x11_request_forwarding_with_spoofing(id, display, proto,
1720 data, 1);
1721 client_expect_confirm(id, "X11 forwarding", CONFIRM_WARN);
1722 /* XXX exit_on_forward_failure */
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001723 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001724 }
1725
Damien Miller0bc1bd82000-11-13 22:57:25 +11001726 check_agent_present();
1727 if (options.forward_agent) {
1728 debug("Requesting authentication agent forwarding.");
1729 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1730 packet_send();
1731 }
1732
Darren Tucker7b305012012-07-02 18:55:09 +10001733 /* Tell the packet module whether this is an interactive session. */
1734 packet_set_interactive(interactive,
1735 options.ip_qos_interactive, options.ip_qos_bulk);
1736
Damien Miller0e220db2004-06-15 10:34:08 +10001737 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
Damien Miller5771ed72008-05-19 15:35:33 +10001738 NULL, fileno(stdin), &command, environ);
Damien Miller1383bd82000-04-06 12:32:37 +10001739}
1740
Ben Lindstromf558cf62001-09-20 23:13:49 +00001741/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001742static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001743ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001744{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001745 Channel *c;
1746 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001747
Damien Millercaf6dd62000-08-29 11:33:50 +11001748 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001749 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001750 } else {
1751 in = dup(STDIN_FILENO);
1752 }
1753 out = dup(STDOUT_FILENO);
1754 err = dup(STDERR_FILENO);
1755
1756 if (in < 0 || out < 0 || err < 0)
1757 fatal("dup() in/out/err failed");
1758
Damien Miller69b69aa2000-10-28 14:19:58 +11001759 /* enable nonblocking unless tty */
1760 if (!isatty(in))
1761 set_nonblock(in);
1762 if (!isatty(out))
1763 set_nonblock(out);
1764 if (!isatty(err))
1765 set_nonblock(err);
1766
Damien Millere4340be2000-09-16 13:29:08 +11001767 window = CHAN_SES_WINDOW_DEFAULT;
1768 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001769 if (tty_flag) {
1770 window >>= 1;
1771 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001772 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001773 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001774 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001775 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001776 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001777
Ben Lindstromf558cf62001-09-20 23:13:49 +00001778 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001779
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001780 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001781 if (!no_shell_flag)
Damien Millerb84886b2008-05-19 15:05:07 +10001782 channel_register_open_confirm(c->self,
1783 ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001784
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001785 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001786}
1787
Ben Lindstrombba81212001-06-25 05:01:22 +00001788static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001789ssh_session2(void)
1790{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001791 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001792
1793 /* XXX should be pre-session */
Darren Tucker2d6665d2011-11-04 10:54:22 +11001794 if (!options.control_persist)
1795 ssh_init_stdio_forwarding();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001796 ssh_init_forwarding();
1797
Damien Millere11e1ea2010-08-03 16:04:46 +10001798 /* Start listening for multiplex clients */
markus@openbsd.org8d057842016-09-30 09:19:13 +00001799 if (!packet_get_mux())
1800 muxserver_listen();
Damien Millere11e1ea2010-08-03 16:04:46 +10001801
1802 /*
Darren Tucker2d6665d2011-11-04 10:54:22 +11001803 * If we are in control persist mode and have a working mux listen
1804 * socket, then prepare to background ourselves and have a foreground
1805 * client attach as a control slave.
1806 * NB. we must save copies of the flags that we override for
Damien Millere11e1ea2010-08-03 16:04:46 +10001807 * the backgrounding, since we defer attachment of the slave until
1808 * after the connection is fully established (in particular,
1809 * async rfwd replies have been received for ExitOnForwardFailure).
1810 */
1811 if (options.control_persist && muxserver_sock != -1) {
1812 ostdin_null_flag = stdin_null_flag;
1813 ono_shell_flag = no_shell_flag;
Damien Miller21771e22011-05-15 08:45:50 +10001814 orequest_tty = options.request_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +10001815 otty_flag = tty_flag;
1816 stdin_null_flag = 1;
1817 no_shell_flag = 1;
Damien Millere11e1ea2010-08-03 16:04:46 +10001818 tty_flag = 0;
1819 if (!fork_after_authentication_flag)
1820 need_controlpersist_detach = 1;
1821 fork_after_authentication_flag = 1;
1822 }
Darren Tucker2d6665d2011-11-04 10:54:22 +11001823 /*
1824 * ControlPersist mux listen socket setup failed, attempt the
1825 * stdio forward setup that we skipped earlier.
1826 */
1827 if (options.control_persist && muxserver_sock == -1)
1828 ssh_init_stdio_forwarding();
Damien Millere11e1ea2010-08-03 16:04:46 +10001829
Ben Lindstromf558cf62001-09-20 23:13:49 +00001830 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1831 id = ssh_session2_open();
Damien Miller649fe022013-07-18 16:13:55 +10001832 else {
1833 packet_set_interactive(
1834 options.control_master == SSHCTL_MASTER_NO,
1835 options.ip_qos_interactive, options.ip_qos_bulk);
1836 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001837
Darren Tucker8901fa92008-06-11 09:34:01 +10001838 /* If we don't expect to open a new session, then disallow it */
Damien Miller456e6f02008-11-03 19:20:10 +11001839 if (options.control_master == SSHCTL_MASTER_NO &&
1840 (datafellows & SSH_NEW_OPENSSH)) {
Darren Tucker8901fa92008-06-11 09:34:01 +10001841 debug("Requesting no-more-sessions@openssh.com");
1842 packet_start(SSH2_MSG_GLOBAL_REQUEST);
1843 packet_put_cstring("no-more-sessions@openssh.com");
1844 packet_put_char(0);
1845 packet_send();
1846 }
1847
Damien Millerd27b9472005-12-13 19:29:02 +11001848 /* Execute a local command */
1849 if (options.local_command != NULL &&
1850 options.permit_local_command)
1851 ssh_local_cmd(options.local_command);
1852
Damien Miller1f25ab42010-07-16 13:56:23 +10001853 /*
1854 * If requested and we are not interested in replies to remote
1855 * forwarding requests, then let ssh continue in the background.
1856 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001857 if (fork_after_authentication_flag) {
1858 if (options.exit_on_forward_failure &&
1859 options.num_remote_forwards > 0) {
1860 debug("deferring postauth fork until remote forward "
1861 "confirmation received");
1862 } else
1863 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001864 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001865
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001866 return client_loop(tty_flag, tty_flag ?
1867 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001868}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001869
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001870/* Loads all IdentityFile and CertificateFile keys */
Ben Lindstrombba81212001-06-25 05:01:22 +00001871static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001872load_public_identity_files(void)
1873{
Damien Miller6b1d53c2006-03-31 23:13:21 +11001874 char *filename, *cp, thishost[NI_MAXHOST];
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001875 char *pwdir = NULL, *pwname = NULL;
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001876 struct sshkey *public;
Damien Miller6b1d53c2006-03-31 23:13:21 +11001877 struct passwd *pw;
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001878 int i;
1879 u_int n_ids, n_certs;
Damien Miller0a80ca12010-02-27 07:55:05 +11001880 char *identity_files[SSH_MAX_IDENTITY_FILES];
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001881 struct sshkey *identity_keys[SSH_MAX_IDENTITY_FILES];
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001882 char *certificate_files[SSH_MAX_CERTIFICATE_FILES];
1883 struct sshkey *certificates[SSH_MAX_CERTIFICATE_FILES];
Damien Miller7ea845e2010-02-12 09:21:02 +11001884#ifdef ENABLE_PKCS11
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001885 struct sshkey **keys;
Damien Miller7ea845e2010-02-12 09:21:02 +11001886 int nkeys;
Damien Miller0a80ca12010-02-27 07:55:05 +11001887#endif /* PKCS11 */
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001888
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001889 n_ids = n_certs = 0;
Damien Miller1d2c4562014-02-04 11:18:20 +11001890 memset(identity_files, 0, sizeof(identity_files));
1891 memset(identity_keys, 0, sizeof(identity_keys));
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001892 memset(certificate_files, 0, sizeof(certificate_files));
1893 memset(certificates, 0, sizeof(certificates));
Damien Miller0a80ca12010-02-27 07:55:05 +11001894
1895#ifdef ENABLE_PKCS11
Damien Miller7ea845e2010-02-12 09:21:02 +11001896 if (options.pkcs11_provider != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001897 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
Damien Miller7ea845e2010-02-12 09:21:02 +11001898 (pkcs11_init(!options.batch_mode) == 0) &&
1899 (nkeys = pkcs11_add_provider(options.pkcs11_provider, NULL,
1900 &keys)) > 0) {
Damien Miller7ea845e2010-02-12 09:21:02 +11001901 for (i = 0; i < nkeys; i++) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001902 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
1903 key_free(keys[i]);
1904 continue;
1905 }
1906 identity_keys[n_ids] = keys[i];
1907 identity_files[n_ids] =
Damien Miller7ea845e2010-02-12 09:21:02 +11001908 xstrdup(options.pkcs11_provider); /* XXX */
Damien Miller0a80ca12010-02-27 07:55:05 +11001909 n_ids++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001910 }
Darren Tuckera627d422013-06-02 07:31:17 +10001911 free(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001912 }
Damien Miller7ea845e2010-02-12 09:21:02 +11001913#endif /* ENABLE_PKCS11 */
Damien Miller6b1d53c2006-03-31 23:13:21 +11001914 if ((pw = getpwuid(original_real_uid)) == NULL)
1915 fatal("load_public_identity_files: getpwuid failed");
Darren Tuckere143f062007-12-02 23:21:16 +11001916 pwname = xstrdup(pw->pw_name);
1917 pwdir = xstrdup(pw->pw_dir);
Damien Miller6b1d53c2006-03-31 23:13:21 +11001918 if (gethostname(thishost, sizeof(thishost)) == -1)
1919 fatal("load_public_identity_files: gethostname: %s",
1920 strerror(errno));
Damien Miller0a80ca12010-02-27 07:55:05 +11001921 for (i = 0; i < options.num_identity_files; i++) {
Darren Tucker15fd19c2013-04-05 11:22:26 +11001922 if (n_ids >= SSH_MAX_IDENTITY_FILES ||
1923 strcasecmp(options.identity_files[i], "none") == 0) {
Darren Tuckera627d422013-06-02 07:31:17 +10001924 free(options.identity_files[i]);
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001925 options.identity_files[i] = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +11001926 continue;
1927 }
Damien Miller6b1d53c2006-03-31 23:13:21 +11001928 cp = tilde_expand_filename(options.identity_files[i],
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001929 original_real_uid);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001930 filename = percent_expand(cp, "d", pwdir,
1931 "u", pwname, "l", thishost, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +11001932 "r", options.user, (char *)NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10001933 free(cp);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001934 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001935 debug("identity file %s type %d", filename,
1936 public ? public->type : -1);
Darren Tuckera627d422013-06-02 07:31:17 +10001937 free(options.identity_files[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +11001938 identity_files[n_ids] = filename;
1939 identity_keys[n_ids] = public;
1940
1941 if (++n_ids >= SSH_MAX_IDENTITY_FILES)
1942 continue;
1943
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001944 /*
1945 * If no certificates have been explicitly listed then try
1946 * to add the default certificate variant too.
1947 */
1948 if (options.num_certificate_files != 0)
1949 continue;
Damien Miller0a80ca12010-02-27 07:55:05 +11001950 xasprintf(&cp, "%s-cert", filename);
1951 public = key_load_public(cp, NULL);
1952 debug("identity file %s type %d", cp,
1953 public ? public->type : -1);
1954 if (public == NULL) {
Darren Tuckera627d422013-06-02 07:31:17 +10001955 free(cp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001956 continue;
1957 }
1958 if (!key_is_cert(public)) {
1959 debug("%s: key %s type %s is not a certificate",
1960 __func__, cp, key_type(public));
1961 key_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +10001962 free(cp);
Damien Miller0a80ca12010-02-27 07:55:05 +11001963 continue;
1964 }
djm@openbsd.orgb4867e02016-12-06 07:48:01 +00001965 /* NB. leave filename pointing to private key */
1966 identity_files[n_ids] = xstrdup(filename);
Damien Miller0a80ca12010-02-27 07:55:05 +11001967 identity_keys[n_ids] = public;
Damien Miller0a80ca12010-02-27 07:55:05 +11001968 n_ids++;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001969 }
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001970
1971 if (options.num_certificate_files > SSH_MAX_CERTIFICATE_FILES)
1972 fatal("%s: too many certificates", __func__);
1973 for (i = 0; i < options.num_certificate_files; i++) {
1974 cp = tilde_expand_filename(options.certificate_files[i],
1975 original_real_uid);
1976 filename = percent_expand(cp, "d", pwdir,
1977 "u", pwname, "l", thishost, "h", host,
1978 "r", options.user, (char *)NULL);
1979 free(cp);
1980
1981 public = key_load_public(filename, NULL);
1982 debug("certificate file %s type %d", filename,
1983 public ? public->type : -1);
1984 free(options.certificate_files[i]);
1985 options.certificate_files[i] = NULL;
1986 if (public == NULL) {
1987 free(filename);
1988 continue;
1989 }
1990 if (!key_is_cert(public)) {
1991 debug("%s: key %s type %s is not a certificate",
1992 __func__, filename, key_type(public));
1993 key_free(public);
1994 free(filename);
1995 continue;
1996 }
1997 certificate_files[n_certs] = filename;
1998 certificates[n_certs] = public;
1999 ++n_certs;
2000 }
2001
Damien Miller0a80ca12010-02-27 07:55:05 +11002002 options.num_identity_files = n_ids;
2003 memcpy(options.identity_files, identity_files, sizeof(identity_files));
2004 memcpy(options.identity_keys, identity_keys, sizeof(identity_keys));
2005
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002006 options.num_certificate_files = n_certs;
2007 memcpy(options.certificate_files,
2008 certificate_files, sizeof(certificate_files));
2009 memcpy(options.certificates, certificates, sizeof(certificates));
2010
Damien Miller1d2c4562014-02-04 11:18:20 +11002011 explicit_bzero(pwname, strlen(pwname));
Darren Tuckera627d422013-06-02 07:31:17 +10002012 free(pwname);
Damien Miller1d2c4562014-02-04 11:18:20 +11002013 explicit_bzero(pwdir, strlen(pwdir));
Darren Tuckera627d422013-06-02 07:31:17 +10002014 free(pwdir);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002015}
Damien Miller857b02e2010-09-24 22:02:56 +10002016
2017static void
2018main_sigchld_handler(int sig)
2019{
2020 int save_errno = errno;
2021 pid_t pid;
2022 int status;
2023
2024 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
2025 (pid < 0 && errno == EINTR))
2026 ;
2027
2028 signal(sig, main_sigchld_handler);
2029 errno = save_errno;
2030}