blob: 4736b5dd0cfc6586e580eb7909ba7e85459a40ae [file] [log] [blame]
djm@openbsd.org884416b2019-10-31 21:18:28 +00001/* $OpenBSD: ssh.c,v 1.508 2019/10/31 21:18:28 djm Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * Ssh client program. This program can be used to log into a remote machine.
7 * The software supports strong authentication, encryption, and forwarding
8 * of X11, TCP/IP, and authentication connections.
9 *
Damien Millere4340be2000-09-16 13:29:08 +110010 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
15 *
16 * Copyright (c) 1999 Niels Provos. All rights reserved.
Darren Tucker0a118da2003-10-15 15:54:32 +100017 * Copyright (c) 2000, 2001, 2002, 2003 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110018 *
19 * Modified to work with SSL by Niels Provos <provos@citi.umich.edu>
20 * in Canada (German citizen).
21 *
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 * 1. Redistributions of source code must retain the above copyright
26 * notice, this list of conditions and the following disclaimer.
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
29 * documentation and/or other materials provided with the distribution.
30 *
31 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
32 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
33 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
34 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
35 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
36 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
37 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
38 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
39 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
40 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110041 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100042
43#include "includes.h"
Damien Millercd4223c2006-03-15 11:22:47 +110044
Damien Millerf17883e2006-03-15 11:45:54 +110045#include <sys/types.h>
46#ifdef HAVE_SYS_STAT_H
47# include <sys/stat.h>
48#endif
Damien Millercd4223c2006-03-15 11:22:47 +110049#include <sys/resource.h>
Damien Miller17e91c02006-03-15 11:28:34 +110050#include <sys/ioctl.h>
Damien Millere3b60b52006-07-10 21:08:03 +100051#include <sys/socket.h>
Damien Miller857b02e2010-09-24 22:02:56 +100052#include <sys/wait.h>
Damien Miller03e20032006-03-15 11:16:59 +110053
Damien Millerc7b06362006-03-15 11:53:45 +110054#include <ctype.h>
Darren Tuckerba724052006-07-12 22:24:22 +100055#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100056#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100057#include <netdb.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110058#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110059#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110060#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100061#include <pwd.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110062#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100063#include <stdarg.h>
Damien Miller2d00e632006-07-24 13:53:19 +100064#include <stddef.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100065#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100066#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100067#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100068#include <unistd.h>
deraadt@openbsd.org087266e2015-01-20 23:14:00 +000069#include <limits.h>
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"
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +000090#include "sshbuf.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000091#include "channels.h"
markus@openbsd.org5467fbc2018-07-11 18:53:29 +000092#include "sshkey.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"
Damien Millerb7576772006-07-10 20:23:39 +1000107#include "version.h"
djm@openbsd.org141efe42015-01-14 20:05:27 +0000108#include "ssherr.h"
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000109#include "myproposal.h"
Damien Millerdda78a02016-12-12 13:57:10 +1100110#include "utf8.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111
Damien Miller7ea845e2010-02-12 09:21:02 +1100112#ifdef ENABLE_PKCS11
113#include "ssh-pkcs11.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +0000114#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000115
Damien Miller3f905871999-11-15 17:10:57 +1100116extern char *__progname;
Damien Miller3f905871999-11-15 17:10:57 +1100117
Damien Millerea2c1a42011-06-03 12:10:22 +1000118/* Saves a copy of argv for setproctitle emulation */
119#ifndef HAVE_SETPROCTITLE
120static char **saved_av;
121#endif
122
Darren Tuckerd6173c02008-06-13 04:52:53 +1000123/* Flag indicating whether debug mode is on. May be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000124int debug_flag = 0;
125
Damien Miller21771e22011-05-15 08:45:50 +1000126/* Flag indicating whether a tty should be requested */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000127int tty_flag = 0;
128
Damien Miller1383bd82000-04-06 12:32:37 +1000129/* don't exec a shell */
130int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000131
Damien Miller5428f641999-11-25 11:54:57 +1100132/*
133 * Flag indicating that nothing should be read from stdin. This can be set
134 * on the command line.
135 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000136int stdin_null_flag = 0;
137
Damien Miller5428f641999-11-25 11:54:57 +1100138/*
Damien Millere11e1ea2010-08-03 16:04:46 +1000139 * Flag indicating that the current process should be backgrounded and
140 * a new slave launched in the foreground for ControlPersist.
141 */
142int need_controlpersist_detach = 0;
143
144/* Copies of flags for ControlPersist foreground slave */
Damien Miller21771e22011-05-15 08:45:50 +1000145int ostdin_null_flag, ono_shell_flag, otty_flag, orequest_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +1000146
147/*
Damien Miller5428f641999-11-25 11:54:57 +1100148 * Flag indicating that ssh should fork after authentication. This is useful
Ben Lindstromf666fec2002-06-06 19:51:58 +0000149 * so that the passphrase can be entered manually, and then ssh goes to the
Damien Miller5428f641999-11-25 11:54:57 +1100150 * background.
151 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000152int fork_after_authentication_flag = 0;
153
Damien Miller5428f641999-11-25 11:54:57 +1100154/*
155 * General data structure for command line options and options configurable
156 * in configuration files. See readconf.h.
157 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000158Options options;
159
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000160/* optional user configfile */
161char *config = NULL;
162
Damien Miller5428f641999-11-25 11:54:57 +1100163/*
164 * Name of the host we are connecting to. This is the name given on the
jmc@openbsd.org73491492019-06-12 11:31:50 +0000165 * command line, or the Hostname specified for the user-supplied name in a
Damien Miller5428f641999-11-25 11:54:57 +1100166 * configuration file.
167 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000168char *host;
169
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000170/* Various strings used to to percent_expand() arguments */
171static char thishost[NI_MAXHOST], shorthost[NI_MAXHOST], portstr[NI_MAXSERV];
172static char uidstr[32], *host_arg, *conn_hash_hex;
173
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000174/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100175struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000176
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000177/* Private host keys. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000178Sensitive sensitive_data;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000179
Damien Miller1383bd82000-04-06 12:32:37 +1000180/* command to be executed */
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +0000181struct sshbuf *command;
Damien Miller1383bd82000-04-06 12:32:37 +1000182
Damien Miller832562e2001-01-30 09:30:01 +1100183/* Should we execute a command or invoke a subsystem? */
184int subsystem_flag = 0;
185
Damien Miller2797f7f2002-04-23 21:09:44 +1000186/* # of replies received for global requests */
Darren Tucker9f407c42008-06-13 04:50:27 +1000187static int remote_forward_confirms_received = 0;
Damien Miller2797f7f2002-04-23 21:09:44 +1000188
Damien Millerb1cbfa22008-05-19 16:00:08 +1000189/* mux.c */
190extern int muxserver_sock;
191extern u_int muxclient_command;
Damien Miller0e220db2004-06-15 10:34:08 +1000192
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000193/* Prints a help message to the user. This function never returns. */
194
Ben Lindstrombba81212001-06-25 05:01:22 +0000195static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000196usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000197{
Damien Miller50955102004-03-22 09:34:58 +1100198 fprintf(stderr,
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000199"usage: ssh [-46AaCfGgKkMNnqsTtVvXxYy] [-B bind_interface]\n"
200" [-b bind_address] [-c cipher_spec] [-D [bind_address:]port]\n"
201" [-E log_file] [-e escape_char] [-F configfile] [-I pkcs11]\n"
202" [-i identity_file] [-J [user@]host[:port]] [-L address]\n"
203" [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
204" [-Q query_option] [-R address] [-S ctl_path] [-W host:port]\n"
205" [-w local_tun[:remote_tun]] destination [command]\n"
Damien Miller50955102004-03-22 09:34:58 +1100206 );
Darren Tuckere9a9b712005-12-20 16:15:51 +1100207 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000208}
209
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000210static int ssh_session2(struct ssh *, struct passwd *);
211static void load_public_identity_files(struct passwd *);
Damien Miller857b02e2010-09-24 22:02:56 +1000212static void main_sigchld_handler(int);
Damien Millerb1cbfa22008-05-19 16:00:08 +1000213
Damien Miller295ee632011-05-29 21:42:31 +1000214/* ~/ expand a list of paths. NB. assumes path[n] is heap-allocated. */
215static void
216tilde_expand_paths(char **paths, u_int num_paths)
217{
218 u_int i;
219 char *cp;
220
221 for (i = 0; i < num_paths; i++) {
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +0000222 cp = tilde_expand_filename(paths[i], getuid());
Darren Tuckera627d422013-06-02 07:31:17 +1000223 free(paths[i]);
Damien Miller295ee632011-05-29 21:42:31 +1000224 paths[i] = cp;
225 }
226}
227
Damien Miller13f97b22014-02-24 15:57:55 +1100228/*
229 * Attempt to resolve a host name / port to a set of addresses and
230 * optionally return any CNAMEs encountered along the way.
231 * Returns NULL on failure.
232 * NB. this function must operate with a options having undefined members.
233 */
Damien Miller0faf7472013-10-17 11:47:23 +1100234static struct addrinfo *
Damien Miller13f97b22014-02-24 15:57:55 +1100235resolve_host(const char *name, int port, int logerr, char *cname, size_t clen)
Damien Miller0faf7472013-10-17 11:47:23 +1100236{
237 char strport[NI_MAXSERV];
238 struct addrinfo hints, *res;
dtucker@openbsd.org3a7db912019-04-23 11:56:41 +0000239 int gaierr;
240 LogLevel loglevel = SYSLOG_LEVEL_DEBUG1;
Damien Miller0faf7472013-10-17 11:47:23 +1100241
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
djm@openbsd.orgfc21ea92018-01-23 05:06:25 +0000270/* Returns non-zero if name can only be an address and not a hostname */
271static int
272is_addr_fast(const char *name)
273{
274 return (strchr(name, '%') != NULL || strchr(name, ':') != NULL ||
275 strspn(name, "0123456789.") == strlen(name));
276}
277
278/* Returns non-zero if name represents a valid, single address */
279static int
280is_addr(const char *name)
281{
282 char strport[NI_MAXSERV];
283 struct addrinfo hints, *res;
284
285 if (is_addr_fast(name))
286 return 1;
287
288 snprintf(strport, sizeof strport, "%u", default_ssh_port());
289 memset(&hints, 0, sizeof(hints));
290 hints.ai_family = options.address_family == -1 ?
291 AF_UNSPEC : options.address_family;
292 hints.ai_socktype = SOCK_STREAM;
293 hints.ai_flags = AI_NUMERICHOST|AI_NUMERICSERV;
294 if (getaddrinfo(name, strport, &hints, &res) != 0)
295 return 0;
296 if (res == NULL || res->ai_next != NULL) {
297 freeaddrinfo(res);
298 return 0;
299 }
300 freeaddrinfo(res);
301 return 1;
302}
303
Damien Miller0faf7472013-10-17 11:47:23 +1100304/*
djm@openbsd.org90109022015-01-16 07:19:48 +0000305 * Attempt to resolve a numeric host address / port to a single address.
306 * Returns a canonical address string.
307 * Returns NULL on failure.
308 * NB. this function must operate with a options having undefined members.
309 */
310static struct addrinfo *
311resolve_addr(const char *name, int port, char *caddr, size_t clen)
312{
313 char addr[NI_MAXHOST], strport[NI_MAXSERV];
314 struct addrinfo hints, *res;
315 int gaierr;
316
317 if (port <= 0)
318 port = default_ssh_port();
319 snprintf(strport, sizeof strport, "%u", port);
320 memset(&hints, 0, sizeof(hints));
321 hints.ai_family = options.address_family == -1 ?
322 AF_UNSPEC : options.address_family;
323 hints.ai_socktype = SOCK_STREAM;
324 hints.ai_flags = AI_NUMERICHOST|AI_NUMERICSERV;
325 if ((gaierr = getaddrinfo(name, strport, &hints, &res)) != 0) {
326 debug2("%s: could not resolve name %.100s as address: %s",
327 __func__, name, ssh_gai_strerror(gaierr));
328 return NULL;
329 }
330 if (res == NULL) {
331 debug("%s: getaddrinfo %.100s returned no addresses",
332 __func__, name);
333 return NULL;
334 }
335 if (res->ai_next != NULL) {
336 debug("%s: getaddrinfo %.100s returned multiple addresses",
337 __func__, name);
338 goto fail;
339 }
340 if ((gaierr = getnameinfo(res->ai_addr, res->ai_addrlen,
341 addr, sizeof(addr), NULL, 0, NI_NUMERICHOST)) != 0) {
342 debug("%s: Could not format address for name %.100s: %s",
343 __func__, name, ssh_gai_strerror(gaierr));
344 goto fail;
345 }
346 if (strlcpy(caddr, addr, clen) >= clen) {
347 error("%s: host \"%s\" addr \"%s\" too long (max %lu)",
348 __func__, name, addr, (u_long)clen);
349 if (clen > 0)
350 *caddr = '\0';
351 fail:
352 freeaddrinfo(res);
353 return NULL;
354 }
355 return res;
356}
357
358/*
Damien Miller0faf7472013-10-17 11:47:23 +1100359 * Check whether the cname is a permitted replacement for the hostname
360 * and perform the replacement if it is.
Damien Miller13f97b22014-02-24 15:57:55 +1100361 * NB. this function must operate with a options having undefined members.
Damien Miller0faf7472013-10-17 11:47:23 +1100362 */
363static int
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000364check_follow_cname(int direct, char **namep, const char *cname)
Damien Miller0faf7472013-10-17 11:47:23 +1100365{
366 int i;
367 struct allowed_cname *rule;
368
369 if (*cname == '\0' || options.num_permitted_cnames == 0 ||
370 strcmp(*namep, cname) == 0)
371 return 0;
Damien Miller38505592013-10-17 11:48:13 +1100372 if (options.canonicalize_hostname == SSH_CANONICALISE_NO)
Damien Miller0faf7472013-10-17 11:47:23 +1100373 return 0;
374 /*
Damien Miller38505592013-10-17 11:48:13 +1100375 * Don't attempt to canonicalize names that will be interpreted by
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000376 * a proxy or jump host unless the user specifically requests so.
Damien Miller0faf7472013-10-17 11:47:23 +1100377 */
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000378 if (!direct &&
Damien Miller38505592013-10-17 11:48:13 +1100379 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS)
Damien Miller0faf7472013-10-17 11:47:23 +1100380 return 0;
381 debug3("%s: check \"%s\" CNAME \"%s\"", __func__, *namep, cname);
382 for (i = 0; i < options.num_permitted_cnames; i++) {
383 rule = options.permitted_cnames + i;
djm@openbsd.orge661a862015-05-04 06:10:48 +0000384 if (match_pattern_list(*namep, rule->source_list, 1) != 1 ||
385 match_pattern_list(cname, rule->target_list, 1) != 1)
Damien Miller0faf7472013-10-17 11:47:23 +1100386 continue;
Damien Miller38505592013-10-17 11:48:13 +1100387 verbose("Canonicalized DNS aliased hostname "
Damien Miller0faf7472013-10-17 11:47:23 +1100388 "\"%s\" => \"%s\"", *namep, cname);
389 free(*namep);
390 *namep = xstrdup(cname);
391 return 1;
392 }
393 return 0;
394}
395
396/*
397 * Attempt to resolve the supplied hostname after applying the user's
Damien Miller51682fa2013-10-17 11:48:31 +1100398 * canonicalization rules. Returns the address list for the host or NULL
399 * if no name was found after canonicalization.
Damien Miller13f97b22014-02-24 15:57:55 +1100400 * NB. this function must operate with a options having undefined members.
Damien Miller0faf7472013-10-17 11:47:23 +1100401 */
402static struct addrinfo *
Damien Miller13f97b22014-02-24 15:57:55 +1100403resolve_canonicalize(char **hostp, int port)
Damien Miller0faf7472013-10-17 11:47:23 +1100404{
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000405 int i, direct, ndots;
djm@openbsd.org90109022015-01-16 07:19:48 +0000406 char *cp, *fullhost, newname[NI_MAXHOST];
Damien Miller0faf7472013-10-17 11:47:23 +1100407 struct addrinfo *addrs;
408
djm@openbsd.orgfc21ea92018-01-23 05:06:25 +0000409 /*
410 * Attempt to canonicalise addresses, regardless of
411 * whether hostname canonicalisation was requested
412 */
413 if ((addrs = resolve_addr(*hostp, port,
414 newname, sizeof(newname))) != NULL) {
415 debug2("%s: hostname %.100s is address", __func__, *hostp);
416 if (strcasecmp(*hostp, newname) != 0) {
417 debug2("%s: canonicalised address \"%s\" => \"%s\"",
418 __func__, *hostp, newname);
419 free(*hostp);
420 *hostp = xstrdup(newname);
421 }
422 return addrs;
423 }
424
425 /*
426 * If this looks like an address but didn't parse as one, it might
427 * be an address with an invalid interface scope. Skip further
428 * attempts at canonicalisation.
429 */
430 if (is_addr_fast(*hostp)) {
431 debug("%s: hostname %.100s is an unrecognised address",
432 __func__, *hostp);
433 return NULL;
434 }
435
Damien Miller38505592013-10-17 11:48:13 +1100436 if (options.canonicalize_hostname == SSH_CANONICALISE_NO)
Damien Miller0faf7472013-10-17 11:47:23 +1100437 return NULL;
Damien Miller13f97b22014-02-24 15:57:55 +1100438
Damien Miller0faf7472013-10-17 11:47:23 +1100439 /*
Damien Miller38505592013-10-17 11:48:13 +1100440 * Don't attempt to canonicalize names that will be interpreted by
Damien Miller0faf7472013-10-17 11:47:23 +1100441 * a proxy unless the user specifically requests so.
442 */
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000443 direct = option_clear_or_none(options.proxy_command) &&
444 options.jump_host == NULL;
445 if (!direct &&
Damien Miller38505592013-10-17 11:48:13 +1100446 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS)
Damien Miller0faf7472013-10-17 11:47:23 +1100447 return NULL;
Damien Miller13f97b22014-02-24 15:57:55 +1100448
djm@openbsd.org5ee00632015-10-16 18:40:49 +0000449 /* If domain name is anchored, then resolve it now */
450 if ((*hostp)[strlen(*hostp) - 1] == '.') {
451 debug3("%s: name is fully qualified", __func__);
452 fullhost = xstrdup(*hostp);
453 if ((addrs = resolve_host(fullhost, port, 0,
454 newname, sizeof(newname))) != NULL)
455 goto found;
456 free(fullhost);
457 goto notfound;
458 }
459
Damien Miller51682fa2013-10-17 11:48:31 +1100460 /* Don't apply canonicalization to sufficiently-qualified hostnames */
Damien Miller0faf7472013-10-17 11:47:23 +1100461 ndots = 0;
462 for (cp = *hostp; *cp != '\0'; cp++) {
463 if (*cp == '.')
464 ndots++;
465 }
Damien Miller38505592013-10-17 11:48:13 +1100466 if (ndots > options.canonicalize_max_dots) {
467 debug3("%s: not canonicalizing hostname \"%s\" (max dots %d)",
468 __func__, *hostp, options.canonicalize_max_dots);
Damien Miller0faf7472013-10-17 11:47:23 +1100469 return NULL;
470 }
471 /* Attempt each supplied suffix */
472 for (i = 0; i < options.num_canonical_domains; i++) {
djm@openbsd.org90109022015-01-16 07:19:48 +0000473 *newname = '\0';
Damien Miller0faf7472013-10-17 11:47:23 +1100474 xasprintf(&fullhost, "%s.%s.", *hostp,
475 options.canonical_domains[i]);
Damien Miller13f97b22014-02-24 15:57:55 +1100476 debug3("%s: attempting \"%s\" => \"%s\"", __func__,
477 *hostp, fullhost);
478 if ((addrs = resolve_host(fullhost, port, 0,
djm@openbsd.org90109022015-01-16 07:19:48 +0000479 newname, sizeof(newname))) == NULL) {
Damien Miller0faf7472013-10-17 11:47:23 +1100480 free(fullhost);
481 continue;
482 }
djm@openbsd.org5ee00632015-10-16 18:40:49 +0000483 found:
Damien Miller0faf7472013-10-17 11:47:23 +1100484 /* Remove trailing '.' */
485 fullhost[strlen(fullhost) - 1] = '\0';
486 /* Follow CNAME if requested */
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000487 if (!check_follow_cname(direct, &fullhost, newname)) {
Damien Miller38505592013-10-17 11:48:13 +1100488 debug("Canonicalized hostname \"%s\" => \"%s\"",
Damien Miller0faf7472013-10-17 11:47:23 +1100489 *hostp, fullhost);
490 }
491 free(*hostp);
492 *hostp = fullhost;
493 return addrs;
494 }
djm@openbsd.org5ee00632015-10-16 18:40:49 +0000495 notfound:
Damien Miller38505592013-10-17 11:48:13 +1100496 if (!options.canonicalize_fallback_local)
Damien Miller13f97b22014-02-24 15:57:55 +1100497 fatal("%s: Could not resolve host \"%s\"", __progname, *hostp);
498 debug2("%s: host %s not found in any suffix", __func__, *hostp);
Damien Miller0faf7472013-10-17 11:47:23 +1100499 return NULL;
500}
501
Damien Miller95def091999-11-25 00:26:21 +1100502/*
markus@openbsd.org5467fbc2018-07-11 18:53:29 +0000503 * Check the result of hostkey loading, ignoring some errors and
504 * fatal()ing for others.
505 */
506static void
507check_load(int r, const char *path, const char *message)
508{
509 switch (r) {
510 case 0:
511 break;
512 case SSH_ERR_INTERNAL_ERROR:
513 case SSH_ERR_ALLOC_FAIL:
514 fatal("load %s \"%s\": %s", message, path, ssh_err(r));
515 case SSH_ERR_SYSTEM_ERROR:
516 /* Ignore missing files */
517 if (errno == ENOENT)
518 break;
519 /* FALLTHROUGH */
520 default:
521 error("load %s \"%s\": %s", message, path, ssh_err(r));
522 break;
523 }
524}
525
526/*
Damien Miller13f97b22014-02-24 15:57:55 +1100527 * Read per-user configuration file. Ignore the system wide config
528 * file if the user specifies a config file on the command line.
529 */
530static void
djm@openbsd.org9e34e0c2018-11-23 05:08:07 +0000531process_config_files(const char *host_name, struct passwd *pw, int final_pass,
532 int *want_final_pass)
Damien Miller13f97b22014-02-24 15:57:55 +1100533{
deraadt@openbsd.org087266e2015-01-20 23:14:00 +0000534 char buf[PATH_MAX];
Damien Miller13f97b22014-02-24 15:57:55 +1100535 int r;
536
537 if (config != NULL) {
538 if (strcasecmp(config, "none") != 0 &&
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000539 !read_config_file(config, pw, host, host_name, &options,
djm@openbsd.org9e34e0c2018-11-23 05:08:07 +0000540 SSHCONF_USERCONF | (final_pass ? SSHCONF_FINAL : 0),
541 want_final_pass))
Damien Miller13f97b22014-02-24 15:57:55 +1100542 fatal("Can't open user config file %.100s: "
543 "%.100s", config, strerror(errno));
544 } else {
545 r = snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir,
546 _PATH_SSH_USER_CONFFILE);
547 if (r > 0 && (size_t)r < sizeof(buf))
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000548 (void)read_config_file(buf, pw, host, host_name,
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000549 &options, SSHCONF_CHECKPERM | SSHCONF_USERCONF |
djm@openbsd.org9e34e0c2018-11-23 05:08:07 +0000550 (final_pass ? SSHCONF_FINAL : 0), want_final_pass);
Damien Miller13f97b22014-02-24 15:57:55 +1100551
552 /* Read systemwide configuration file after user config. */
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000553 (void)read_config_file(_PATH_HOST_CONFIG_FILE, pw,
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000554 host, host_name, &options,
djm@openbsd.org9e34e0c2018-11-23 05:08:07 +0000555 final_pass ? SSHCONF_FINAL : 0, want_final_pass);
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000556 }
557}
558
559/* Rewrite the port number in an addrinfo list of addresses */
560static void
561set_addrinfo_port(struct addrinfo *addrs, int port)
562{
563 struct addrinfo *addr;
564
565 for (addr = addrs; addr != NULL; addr = addr->ai_next) {
566 switch (addr->ai_family) {
567 case AF_INET:
568 ((struct sockaddr_in *)addr->ai_addr)->
569 sin_port = htons(port);
570 break;
571 case AF_INET6:
572 ((struct sockaddr_in6 *)addr->ai_addr)->
573 sin6_port = htons(port);
574 break;
575 }
Damien Miller13f97b22014-02-24 15:57:55 +1100576 }
577}
578
579/*
Damien Miller95def091999-11-25 00:26:21 +1100580 * Main program for the ssh client.
581 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000582int
583main(int ac, char **av)
584{
djm@openbsd.org95767262016-03-07 19:02:43 +0000585 struct ssh *ssh = NULL;
djm@openbsd.org643c2ad2017-08-12 06:46:01 +0000586 int i, r, opt, exit_status, use_syslog, direct, timeout_ms;
djm@openbsd.org9e34e0c2018-11-23 05:08:07 +0000587 int was_addr, config_test = 0, opt_terminated = 0, want_final_pass = 0;
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000588 char *p, *cp, *line, *argv0, buf[PATH_MAX], *logfile;
589 char cname[NI_MAXHOST];
Damien Miller95def091999-11-25 00:26:21 +1100590 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000591 struct passwd *pw;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000592 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000593 extern char *optarg;
Damien Miller7acefbb2014-07-18 14:11:24 +1000594 struct Forward fwd;
Damien Miller0faf7472013-10-17 11:47:23 +1100595 struct addrinfo *addrs = NULL;
Damien Miller9c386432014-07-03 21:27:46 +1000596 struct ssh_digest_ctx *md;
597 u_char conn_hash[SSH_DIGEST_MAX_LENGTH];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000598
Darren Tuckerce321d82005-10-03 18:11:24 +1000599 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
600 sanitise_stdfd();
601
Damien Miller59d3d5b2003-08-22 09:34:41 +1000602 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000603
Damien Millerea2c1a42011-06-03 12:10:22 +1000604#ifndef HAVE_SETPROCTITLE
605 /* Prepare for later setproctitle emulation */
606 /* Save argv so it isn't clobbered by setproctitle() emulation */
607 saved_av = xcalloc(ac + 1, sizeof(*saved_av));
608 for (i = 0; i < ac; i++)
609 saved_av[i] = xstrdup(av[i]);
610 saved_av[i] = NULL;
611 compat_init_setproctitle(ac, av);
612 av = saved_av;
613#endif
614
Damien Miller42c5ec42018-11-23 10:40:06 +1100615 seed_rng();
616
Damien Miller5428f641999-11-25 11:54:57 +1100617 /*
Damien Miller00d9ae22010-08-17 01:59:31 +1000618 * Discard other fds that are hanging around. These can cause problem
619 * with backgrounded ssh processes started by ControlPersist.
620 */
621 closefrom(STDERR_FILENO + 1);
622
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000623 /* Get user data. */
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +0000624 pw = getpwuid(getuid());
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000625 if (!pw) {
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +0000626 logit("No user exists for uid %lu", (u_long)getuid());
Darren Tuckere9a9b712005-12-20 16:15:51 +1100627 exit(255);
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000628 }
629 /* Take a copy of the returned structure. */
630 pw = pwcopy(pw);
631
Damien Miller5428f641999-11-25 11:54:57 +1100632 /*
Damien Miller5428f641999-11-25 11:54:57 +1100633 * Set our umask to something reasonable, as some files are created
634 * with the default umask. This will make them world-readable but
635 * writable only by the owner, which is ok for all files for which we
636 * don't set the modes explicitly.
637 */
Damien Miller95def091999-11-25 00:26:21 +1100638 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000639
Damien Millerdda78a02016-12-12 13:57:10 +1100640 msetlocale();
djm@openbsd.org65c6c6b2016-07-17 04:20:16 +0000641
Darren Tuckerd6173c02008-06-13 04:52:53 +1000642 /*
643 * Initialize option structure to indicate that no values have been
644 * set.
645 */
Damien Miller95def091999-11-25 00:26:21 +1100646 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000647
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000648 /*
649 * Prepare main ssh transport/connection structures
650 */
651 if ((ssh = ssh_alloc_session_state()) == NULL)
652 fatal("Couldn't allocate session state");
653 channel_init_channels(ssh);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000654
Damien Miller95def091999-11-25 00:26:21 +1100655 /* Parse command-line arguments. */
656 host = NULL;
Damien Millere272a5b2008-11-03 19:22:37 +1100657 use_syslog = 0;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000658 logfile = NULL;
Darren Tucker72efd742009-06-21 17:48:00 +1000659 argv0 = av[0];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000660
Damien Miller2ecb6bd2006-03-15 12:03:53 +1100661 again:
Darren Tuckerd6173c02008-06-13 04:52:53 +1000662 while ((opt = getopt(ac, av, "1246ab:c:e:fgi:kl:m:no:p:qstvx"
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000663 "AB:CD:E:F:GI:J:KL:MNO:PQ:R:S:TVw:W:XYy")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100664 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000665 case '1':
djm@openbsd.org99f95ba2017-04-30 23:11:45 +0000666 fatal("SSH protocol v.1 is no longer supported");
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000667 break;
Damien Miller4af51302000-04-16 11:18:38 +1000668 case '2':
djm@openbsd.org99f95ba2017-04-30 23:11:45 +0000669 /* Ignored */
Damien Miller4af51302000-04-16 11:18:38 +1000670 break;
Damien Miller34132e52000-01-14 15:45:46 +1100671 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000672 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100673 break;
Damien Miller34132e52000-01-14 15:45:46 +1100674 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000675 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100676 break;
Damien Miller95def091999-11-25 00:26:21 +1100677 case 'n':
678 stdin_null_flag = 1;
679 break;
Damien Miller95def091999-11-25 00:26:21 +1100680 case 'f':
681 fork_after_authentication_flag = 1;
682 stdin_null_flag = 1;
683 break;
Damien Miller95def091999-11-25 00:26:21 +1100684 case 'x':
685 options.forward_x11 = 0;
686 break;
Damien Miller95def091999-11-25 00:26:21 +1100687 case 'X':
688 options.forward_x11 = 1;
689 break;
Damien Millere272a5b2008-11-03 19:22:37 +1100690 case 'y':
691 use_syslog = 1;
692 break;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000693 case 'E':
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000694 logfile = optarg;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000695 break;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000696 case 'G':
697 config_test = 1;
698 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000699 case 'Y':
700 options.forward_x11 = 1;
701 options.forward_x11_trusted = 1;
702 break;
Damien Miller95def091999-11-25 00:26:21 +1100703 case 'g':
Damien Miller7acefbb2014-07-18 14:11:24 +1000704 options.fwd_opts.gateway_ports = 1;
Damien Miller95def091999-11-25 00:26:21 +1100705 break;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100706 case 'O':
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +0000707 if (options.stdio_forward_host != NULL)
Damien Millere1537f92010-01-26 13:26:22 +1100708 fatal("Cannot specify multiplexing "
709 "command with -W");
710 else if (muxclient_command != 0)
711 fatal("Multiplexing command already specified");
Darren Tucker7ebfc102004-11-07 20:06:19 +1100712 if (strcmp(optarg, "check") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000713 muxclient_command = SSHMUX_COMMAND_ALIVE_CHECK;
Damien Miller388f6fc2010-05-21 14:57:35 +1000714 else if (strcmp(optarg, "forward") == 0)
715 muxclient_command = SSHMUX_COMMAND_FORWARD;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100716 else if (strcmp(optarg, "exit") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000717 muxclient_command = SSHMUX_COMMAND_TERMINATE;
Damien Miller6c3eec72011-05-05 14:16:22 +1000718 else if (strcmp(optarg, "stop") == 0)
719 muxclient_command = SSHMUX_COMMAND_STOP;
Damien Millerf6dff7c2011-09-22 21:38:52 +1000720 else if (strcmp(optarg, "cancel") == 0)
721 muxclient_command = SSHMUX_COMMAND_CANCEL_FWD;
markus@openbsd.org8d057842016-09-30 09:19:13 +0000722 else if (strcmp(optarg, "proxy") == 0)
723 muxclient_command = SSHMUX_COMMAND_PROXY;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100724 else
725 fatal("Invalid multiplex command.");
726 break;
Damien Miller147bba32002-09-04 16:46:06 +1000727 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100728 break;
Damien Millerd937dc02013-12-05 10:19:54 +1100729 case 'Q':
Damien Millerea111192013-04-23 19:24:32 +1000730 cp = NULL;
Damien Millerd937dc02013-12-05 10:19:54 +1100731 if (strcmp(optarg, "cipher") == 0)
Damien Miller0fde8ac2013-11-21 14:12:23 +1100732 cp = cipher_alg_list('\n', 0);
Damien Millerd937dc02013-12-05 10:19:54 +1100733 else if (strcmp(optarg, "cipher-auth") == 0)
Damien Miller0fde8ac2013-11-21 14:12:23 +1100734 cp = cipher_alg_list('\n', 1);
Damien Millerd937dc02013-12-05 10:19:54 +1100735 else if (strcmp(optarg, "mac") == 0)
Damien Miller690d9892013-11-08 12:16:49 +1100736 cp = mac_alg_list('\n');
Damien Millerd937dc02013-12-05 10:19:54 +1100737 else if (strcmp(optarg, "kex") == 0)
Damien Miller690d9892013-11-08 12:16:49 +1100738 cp = kex_alg_list('\n');
Damien Millerd937dc02013-12-05 10:19:54 +1100739 else if (strcmp(optarg, "key") == 0)
djm@openbsd.org183ba552017-03-10 04:07:20 +0000740 cp = sshkey_alg_list(0, 0, 0, '\n');
Damien Miller5be9d9e2013-12-07 11:24:01 +1100741 else if (strcmp(optarg, "key-cert") == 0)
djm@openbsd.org183ba552017-03-10 04:07:20 +0000742 cp = sshkey_alg_list(1, 0, 0, '\n');
Damien Miller5be9d9e2013-12-07 11:24:01 +1100743 else if (strcmp(optarg, "key-plain") == 0)
djm@openbsd.org183ba552017-03-10 04:07:20 +0000744 cp = sshkey_alg_list(0, 1, 0, '\n');
djm@openbsd.org357128a2018-09-12 01:30:10 +0000745 else if (strcmp(optarg, "sig") == 0)
djm@openbsd.orgaa083aa2018-09-20 03:31:49 +0000746 cp = sshkey_alg_list(0, 1, 1, '\n');
djm@openbsd.org357128a2018-09-12 01:30:10 +0000747 else if (strcmp(optarg, "protocol-version") == 0)
djm@openbsd.org68d2dfc2015-03-03 06:48:58 +0000748 cp = xstrdup("2");
djm@openbsd.org357128a2018-09-12 01:30:10 +0000749 else if (strcmp(optarg, "help") == 0) {
750 cp = xstrdup(
751 "cipher\ncipher-auth\nkex\nkey\n"
752 "key-cert\nkey-plain\nmac\n"
753 "protocol-version\nsig");
djm@openbsd.org68d2dfc2015-03-03 06:48:58 +0000754 }
Damien Millerea111192013-04-23 19:24:32 +1000755 if (cp == NULL)
756 fatal("Unsupported query \"%s\"", optarg);
757 printf("%s\n", cp);
758 free(cp);
759 exit(0);
760 break;
Damien Miller95def091999-11-25 00:26:21 +1100761 case 'a':
762 options.forward_agent = 0;
763 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000764 case 'A':
765 options.forward_agent = 1;
766 break;
Damien Miller95def091999-11-25 00:26:21 +1100767 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100768 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100769 break;
Darren Tucker415bddc2007-06-12 23:43:16 +1000770 case 'K':
771 options.gss_authentication = 1;
772 options.gss_deleg_creds = 1;
773 break;
Damien Miller95def091999-11-25 00:26:21 +1100774 case 'i':
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +0000775 p = tilde_expand_filename(optarg, getuid());
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000776 if (stat(p, &st) == -1)
Damien Millerf4614452001-07-14 12:18:10 +1000777 fprintf(stderr, "Warning: Identity file %s "
dtucker@openbsd.org03239c12015-10-25 23:42:00 +0000778 "not accessible: %s.\n", p,
Damien Miller3eb48b62005-03-01 21:15:46 +1100779 strerror(errno));
dtucker@openbsd.org03239c12015-10-25 23:42:00 +0000780 else
781 add_identity_file(&options, NULL, p, 1);
782 free(p);
Damien Miller95def091999-11-25 00:26:21 +1100783 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000784 case 'I':
Damien Miller7ea845e2010-02-12 09:21:02 +1100785#ifdef ENABLE_PKCS11
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000786 free(options.pkcs11_provider);
Damien Miller7ea845e2010-02-12 09:21:02 +1100787 options.pkcs11_provider = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000788#else
Damien Miller7ea845e2010-02-12 09:21:02 +1100789 fprintf(stderr, "no support for PKCS#11.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000790#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000791 break;
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000792 case 'J':
djm@openbsd.orgcb8f5652019-06-14 04:13:58 +0000793 if (options.jump_host != NULL) {
794 fatal("Only a single -J option is permitted "
795 "(use commas to separate multiple "
796 "jump hops)");
797 }
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000798 if (options.proxy_command != NULL)
799 fatal("Cannot specify -J with ProxyCommand");
800 if (parse_jump(optarg, &options, 1) == -1)
801 fatal("Invalid -J argument");
802 options.proxy_command = xstrdup("none");
803 break;
Damien Miller95def091999-11-25 00:26:21 +1100804 case 't':
Damien Miller21771e22011-05-15 08:45:50 +1000805 if (options.request_tty == REQUEST_TTY_YES)
806 options.request_tty = REQUEST_TTY_FORCE;
807 else
808 options.request_tty = REQUEST_TTY_YES;
Damien Miller95def091999-11-25 00:26:21 +1100809 break;
Damien Miller95def091999-11-25 00:26:21 +1100810 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000811 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100812 debug_flag = 1;
813 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000814 } else {
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000815 if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
816 debug_flag++;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000817 options.log_level++;
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000818 }
Darren Tuckere98dfa32003-07-19 19:54:31 +1000819 }
Damien Miller03d4d7e2013-04-23 15:21:06 +1000820 break;
Damien Miller95def091999-11-25 00:26:21 +1100821 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100822 fprintf(stderr, "%s, %s\n",
Damien Miller1f0311c2014-05-15 14:24:09 +1000823 SSH_RELEASE,
824#ifdef WITH_OPENSSL
djm@openbsd.orga65784c2018-10-23 05:56:35 +0000825 OpenSSL_version(OPENSSL_VERSION)
Damien Miller1f0311c2014-05-15 14:24:09 +1000826#else
827 "without OpenSSL"
828#endif
829 );
Damien Miller95def091999-11-25 00:26:21 +1100830 if (opt == 'V')
831 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100832 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100833 case 'w':
Damien Miller7b58e802005-12-13 19:33:19 +1100834 if (options.tun_open == -1)
835 options.tun_open = SSH_TUNMODE_DEFAULT;
Damien Millerd27b9472005-12-13 19:29:02 +1100836 options.tun_local = a2tun(optarg, &options.tun_remote);
Damien Miller7b58e802005-12-13 19:33:19 +1100837 if (options.tun_local == SSH_TUNID_ERR) {
Darren Tuckerd6173c02008-06-13 04:52:53 +1000838 fprintf(stderr,
839 "Bad tun device '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100840 exit(255);
Damien Millerd27b9472005-12-13 19:29:02 +1100841 }
842 break;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100843 case 'W':
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +0000844 if (options.stdio_forward_host != NULL)
Damien Millere1537f92010-01-26 13:26:22 +1100845 fatal("stdio forward already specified");
846 if (muxclient_command != 0)
847 fatal("Cannot specify stdio forward with -O");
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100848 if (parse_forward(&fwd, optarg, 1, 0)) {
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +0000849 options.stdio_forward_host = fwd.listen_host;
850 options.stdio_forward_port = fwd.listen_port;
Darren Tuckera627d422013-06-02 07:31:17 +1000851 free(fwd.connect_host);
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100852 } else {
853 fprintf(stderr,
854 "Bad stdio forwarding specification '%s'\n",
855 optarg);
856 exit(255);
857 }
Damien Miller21771e22011-05-15 08:45:50 +1000858 options.request_tty = REQUEST_TTY_NO;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100859 no_shell_flag = 1;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100860 break;
Damien Miller95def091999-11-25 00:26:21 +1100861 case 'q':
862 options.log_level = SYSLOG_LEVEL_QUIET;
863 break;
Damien Miller95def091999-11-25 00:26:21 +1100864 case 'e':
865 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000866 (u_char) optarg[1] >= 64 &&
867 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000868 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100869 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000870 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100871 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000872 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100873 else {
Damien Millerf4614452001-07-14 12:18:10 +1000874 fprintf(stderr, "Bad escape character '%s'.\n",
875 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100876 exit(255);
Damien Miller95def091999-11-25 00:26:21 +1100877 }
878 break;
Damien Miller95def091999-11-25 00:26:21 +1100879 case 'c':
naddy@openbsd.org91a21352019-09-06 14:45:34 +0000880 if (!ciphers_valid(*optarg == '+' || *optarg == '^' ?
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000881 optarg + 1 : optarg)) {
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000882 fprintf(stderr, "Unknown cipher type '%s'\n",
883 optarg);
884 exit(255);
885 }
djm@openbsd.orgcdccebd2017-04-30 23:15:04 +0000886 free(options.ciphers);
887 options.ciphers = xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100888 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000889 case 'm':
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000890 if (mac_valid(optarg)) {
891 free(options.macs);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000892 options.macs = xstrdup(optarg);
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000893 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000894 fprintf(stderr, "Unknown mac type '%s'\n",
895 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100896 exit(255);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000897 }
898 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000899 case 'M':
Damien Millerd14b1e72005-06-16 13:19:41 +1000900 if (options.control_master == SSHCTL_MASTER_YES)
901 options.control_master = SSHCTL_MASTER_ASK;
902 else
903 options.control_master = SSHCTL_MASTER_YES;
Damien Miller0e220db2004-06-15 10:34:08 +1000904 break;
Damien Miller95def091999-11-25 00:26:21 +1100905 case 'p':
millert@openbsd.org887669e2017-10-21 23:06:24 +0000906 if (options.port == -1) {
907 options.port = a2port(optarg);
908 if (options.port <= 0) {
909 fprintf(stderr, "Bad port '%s'\n",
910 optarg);
911 exit(255);
912 }
Ben Lindstrom146edb92001-04-11 23:06:28 +0000913 }
Damien Miller95def091999-11-25 00:26:21 +1100914 break;
Damien Miller95def091999-11-25 00:26:21 +1100915 case 'l':
millert@openbsd.org887669e2017-10-21 23:06:24 +0000916 if (options.user == NULL)
917 options.user = optarg;
Damien Miller95def091999-11-25 00:26:21 +1100918 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000919
Damien Miller95def091999-11-25 00:26:21 +1100920 case 'L':
Damien Miller4bf648f2009-02-14 16:28:21 +1100921 if (parse_forward(&fwd, optarg, 0, 0))
Damien Millerf91ee4c2005-03-01 21:24:33 +1100922 add_local_forward(&options, &fwd);
923 else {
Damien Millerf4614452001-07-14 12:18:10 +1000924 fprintf(stderr,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100925 "Bad local forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000926 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100927 exit(255);
Ben Lindstrom1a174712001-09-12 17:56:15 +0000928 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100929 break;
930
931 case 'R':
markus@openbsd.org609d7a62017-09-21 19:16:53 +0000932 if (parse_forward(&fwd, optarg, 0, 1) ||
933 parse_forward(&fwd, optarg, 1, 1)) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100934 add_remote_forward(&options, &fwd);
935 } else {
936 fprintf(stderr,
937 "Bad remote forwarding specification "
938 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100939 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100940 }
Damien Miller95def091999-11-25 00:26:21 +1100941 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000942
943 case 'D':
Damien Miller4bf648f2009-02-14 16:28:21 +1100944 if (parse_forward(&fwd, optarg, 1, 0)) {
Damien Millera699d952008-11-03 19:27:34 +1100945 add_local_forward(&options, &fwd);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100946 } else {
Damien Millera699d952008-11-03 19:27:34 +1100947 fprintf(stderr,
948 "Bad dynamic forwarding specification "
949 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100950 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000951 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000952 break;
953
Damien Miller95def091999-11-25 00:26:21 +1100954 case 'C':
955 options.compression = 1;
956 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000957 case 'N':
958 no_shell_flag = 1;
Damien Miller21771e22011-05-15 08:45:50 +1000959 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000960 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000961 case 'T':
Damien Miller21771e22011-05-15 08:45:50 +1000962 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000963 break;
Damien Miller95def091999-11-25 00:26:21 +1100964 case 'o':
Damien Miller9836cf82003-12-17 16:30:06 +1100965 line = xstrdup(optarg);
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000966 if (process_config_line(&options, pw,
967 host ? host : "", host ? host : "", line,
968 "command-line", 0, NULL, SSHCONF_USERCONF) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100969 exit(255);
Darren Tuckera627d422013-06-02 07:31:17 +1000970 free(line);
Damien Miller95def091999-11-25 00:26:21 +1100971 break;
Damien Miller832562e2001-01-30 09:30:01 +1100972 case 's':
973 subsystem_flag = 1;
974 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000975 case 'S':
mmcc@openbsd.orgd59ce082015-12-10 17:08:40 +0000976 free(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +1000977 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000978 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000979 case 'b':
980 options.bind_address = optarg;
981 break;
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000982 case 'B':
983 options.bind_interface = optarg;
984 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000985 case 'F':
986 config = optarg;
987 break;
Damien Miller95def091999-11-25 00:26:21 +1100988 default:
989 usage();
990 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000991 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000992
djm@openbsd.org643c2ad2017-08-12 06:46:01 +0000993 if (optind > 1 && strcmp(av[optind - 1], "--") == 0)
994 opt_terminated = 1;
995
Damien Millerf4614452001-07-14 12:18:10 +1000996 ac -= optind;
997 av += optind;
998
Darren Tuckerb8c884a2010-01-08 18:53:43 +1100999 if (ac > 0 && !host) {
millert@openbsd.org887669e2017-10-21 23:06:24 +00001000 int tport;
1001 char *tuser;
1002 switch (parse_ssh_uri(*av, &tuser, &host, &tport)) {
1003 case -1:
1004 usage();
1005 break;
1006 case 0:
1007 if (options.user == NULL) {
1008 options.user = tuser;
1009 tuser = NULL;
1010 }
1011 free(tuser);
1012 if (options.port == -1 && tport != -1)
1013 options.port = tport;
1014 break;
1015 default:
Damien Millerf4614452001-07-14 12:18:10 +10001016 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +00001017 cp = strrchr(p, '@');
millert@openbsd.org887669e2017-10-21 23:06:24 +00001018 if (cp != NULL) {
1019 if (cp == p)
1020 usage();
1021 if (options.user == NULL) {
1022 options.user = p;
1023 p = NULL;
1024 }
1025 *cp++ = '\0';
1026 host = xstrdup(cp);
1027 free(p);
1028 } else
1029 host = p;
1030 break;
1031 }
djm@openbsd.org643c2ad2017-08-12 06:46:01 +00001032 if (ac > 1 && !opt_terminated) {
Ben Lindstromb9fa6912002-12-23 02:24:54 +00001033 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +10001034 goto again;
1035 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +00001036 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +10001037 }
1038
Damien Miller95def091999-11-25 00:26:21 +11001039 /* Check that we got a host name. */
1040 if (!host)
1041 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001042
Damien Miller0faf7472013-10-17 11:47:23 +11001043 host_arg = xstrdup(host);
1044
Damien Miller95def091999-11-25 00:26:21 +11001045 /* Initialize the command to execute on remote host. */
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +00001046 if ((command = sshbuf_new()) == NULL)
1047 fatal("sshbuf_new failed");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001048
Damien Miller5428f641999-11-25 11:54:57 +11001049 /*
1050 * Save the command to execute on the remote host in a buffer. There
1051 * is no limit on the length of the command, except by the maximum
1052 * packet size. Also sets the tty flag if there is no command.
1053 */
Damien Millerf4614452001-07-14 12:18:10 +10001054 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +11001055 /* No command specified - execute shell on a tty. */
Damien Miller832562e2001-01-30 09:30:01 +11001056 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +10001057 fprintf(stderr,
1058 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +11001059 usage();
1060 }
Damien Miller95def091999-11-25 00:26:21 +11001061 } else {
Damien Millerf4614452001-07-14 12:18:10 +10001062 /* A command has been specified. Store it into the buffer. */
1063 for (i = 0; i < ac; i++) {
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +00001064 if ((r = sshbuf_putf(command, "%s%s",
1065 i ? " " : "", av[i])) != 0)
1066 fatal("%s: buffer error: %s",
1067 __func__, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11001068 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001069 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001070
Ben Lindstrom8a432f52001-03-05 07:24:46 +00001071 /*
1072 * Initialize "log" output. Since we are the client all output
Damien Miller03d4d7e2013-04-23 15:21:06 +10001073 * goes to stderr unless otherwise specified by -y or -E.
Ben Lindstrom8a432f52001-03-05 07:24:46 +00001074 */
Damien Miller03d4d7e2013-04-23 15:21:06 +10001075 if (use_syslog && logfile != NULL)
1076 fatal("Can't specify both -y and -E");
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +00001077 if (logfile != NULL)
Damien Miller03d4d7e2013-04-23 15:21:06 +10001078 log_redirect_stderr_to(logfile);
Darren Tucker72efd742009-06-21 17:48:00 +10001079 log_init(argv0,
djm@openbsd.org@openbsd.orgdbe06622017-10-27 01:57:06 +00001080 options.log_level == SYSLOG_LEVEL_NOT_SET ?
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +00001081 SYSLOG_LEVEL_INFO : options.log_level,
djm@openbsd.org@openbsd.orgdbe06622017-10-27 01:57:06 +00001082 options.log_facility == SYSLOG_FACILITY_NOT_SET ?
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +00001083 SYSLOG_FACILITY_USER : options.log_facility,
1084 !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001085
Damien Miller03d4d7e2013-04-23 15:21:06 +10001086 if (debug_flag)
Damien Miller1f0311c2014-05-15 14:24:09 +10001087 logit("%s, %s", SSH_RELEASE,
1088#ifdef WITH_OPENSSL
djm@openbsd.orga65784c2018-10-23 05:56:35 +00001089 OpenSSL_version(OPENSSL_VERSION)
Damien Miller1f0311c2014-05-15 14:24:09 +10001090#else
1091 "without OpenSSL"
1092#endif
1093 );
Damien Miller03d4d7e2013-04-23 15:21:06 +10001094
Damien Miller13f97b22014-02-24 15:57:55 +11001095 /* Parse the configuration files */
djm@openbsd.org9e34e0c2018-11-23 05:08:07 +00001096 process_config_files(host_arg, pw, 0, &want_final_pass);
1097 if (want_final_pass)
1098 debug("configuration requests final Match pass");
Ben Lindstrom83f07d12001-10-03 17:22:29 +00001099
Damien Miller13f97b22014-02-24 15:57:55 +11001100 /* Hostname canonicalisation needs a few options filled. */
1101 fill_default_options_for_canonicalization(&options);
1102
1103 /* If the user has replaced the hostname then take it into use now */
1104 if (options.hostname != NULL) {
1105 /* NB. Please keep in sync with readconf.c:match_cfg_line() */
1106 cp = percent_expand(options.hostname,
1107 "h", host, (char *)NULL);
1108 free(host);
1109 host = cp;
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001110 free(options.hostname);
1111 options.hostname = xstrdup(host);
Damien Miller13f97b22014-02-24 15:57:55 +11001112 }
1113
djm@openbsd.orgfc21ea92018-01-23 05:06:25 +00001114 /* Don't lowercase addresses, they will be explicitly canonicalised */
1115 if ((was_addr = is_addr(host)) == 0)
1116 lowercase(host);
1117
1118 /*
1119 * Try to canonicalize if requested by configuration or the
1120 * hostname is an address.
1121 */
1122 if (options.canonicalize_hostname != SSH_CANONICALISE_NO || was_addr)
Damien Miller13f97b22014-02-24 15:57:55 +11001123 addrs = resolve_canonicalize(&host, options.port);
1124
1125 /*
Damien Miller08b57c62014-02-27 10:17:13 +11001126 * If CanonicalizePermittedCNAMEs have been specified but
1127 * other canonicalization did not happen (by not being requested
1128 * or by failing with fallback) then the hostname may still be changed
djm@openbsd.org@openbsd.orgdbe06622017-10-27 01:57:06 +00001129 * as a result of CNAME following.
Damien Miller08b57c62014-02-27 10:17:13 +11001130 *
1131 * Try to resolve the bare hostname name using the system resolver's
1132 * usual search rules and then apply the CNAME follow rules.
1133 *
1134 * Skip the lookup if a ProxyCommand is being used unless the user
1135 * has specifically requested canonicalisation for this case via
1136 * CanonicalizeHostname=always
Damien Miller13f97b22014-02-24 15:57:55 +11001137 */
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001138 direct = option_clear_or_none(options.proxy_command) &&
1139 options.jump_host == NULL;
1140 if (addrs == NULL && options.num_permitted_cnames != 0 && (direct ||
1141 options.canonicalize_hostname == SSH_CANONICALISE_ALWAYS)) {
Damien Miller19439e92014-07-02 15:28:40 +10001142 if ((addrs = resolve_host(host, options.port,
djm@openbsd.org383a33d2018-09-21 03:11:36 +00001143 direct, cname, sizeof(cname))) == NULL) {
Damien Miller19439e92014-07-02 15:28:40 +10001144 /* Don't fatal proxied host names not in the DNS */
djm@openbsd.org383a33d2018-09-21 03:11:36 +00001145 if (direct)
Damien Miller19439e92014-07-02 15:28:40 +10001146 cleanup_exit(255); /* logged in resolve_host */
1147 } else
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001148 check_follow_cname(direct, &host, cname);
Damien Miller13f97b22014-02-24 15:57:55 +11001149 }
1150
1151 /*
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001152 * If canonicalisation is enabled then re-parse the configuration
1153 * files as new stanzas may match.
Damien Miller13f97b22014-02-24 15:57:55 +11001154 */
djm@openbsd.org9e34e0c2018-11-23 05:08:07 +00001155 if (options.canonicalize_hostname != 0 && !want_final_pass) {
1156 debug("hostname canonicalisation enabled, "
1157 "will re-parse configuration");
1158 want_final_pass = 1;
1159 }
1160
1161 if (want_final_pass) {
1162 debug("re-parsing configuration");
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001163 free(options.hostname);
1164 options.hostname = xstrdup(host);
djm@openbsd.org9e34e0c2018-11-23 05:08:07 +00001165 process_config_files(host_arg, pw, 1, NULL);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001166 /*
1167 * Address resolution happens early with canonicalisation
1168 * enabled and the port number may have changed since, so
1169 * reset it in address list
1170 */
1171 if (addrs != NULL && options.port > 0)
1172 set_addrinfo_port(addrs, options.port);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +00001173 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001174
Damien Miller95def091999-11-25 00:26:21 +11001175 /* Fill configuration defaults. */
1176 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001177
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001178 /*
1179 * If ProxyJump option specified, then construct a ProxyCommand now.
1180 */
1181 if (options.jump_host != NULL) {
1182 char port_s[8];
djm@openbsd.orgd8748b92018-06-01 03:11:49 +00001183 const char *sshbin = argv0;
1184
1185 /*
1186 * Try to use SSH indicated by argv[0], but fall back to
1187 * "ssh" if it appears unavailable.
1188 */
1189 if (strchr(argv0, '/') != NULL && access(argv0, X_OK) != 0)
1190 sshbin = "ssh";
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001191
1192 /* Consistency check */
1193 if (options.proxy_command != NULL)
1194 fatal("inconsistent options: ProxyCommand+ProxyJump");
1195 /* Never use FD passing for ProxyJump */
1196 options.proxy_use_fdpass = 0;
1197 snprintf(port_s, sizeof(port_s), "%d", options.jump_port);
1198 xasprintf(&options.proxy_command,
djm@openbsd.orgd8748b92018-06-01 03:11:49 +00001199 "%s%s%s%s%s%s%s%s%s%s%.*s -W '[%%h]:%%p' %s",
1200 sshbin,
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001201 /* Optional "-l user" argument if jump_user set */
1202 options.jump_user == NULL ? "" : " -l ",
1203 options.jump_user == NULL ? "" : options.jump_user,
1204 /* Optional "-p port" argument if jump_port set */
1205 options.jump_port <= 0 ? "" : " -p ",
1206 options.jump_port <= 0 ? "" : port_s,
1207 /* Optional additional jump hosts ",..." */
1208 options.jump_extra == NULL ? "" : " -J ",
1209 options.jump_extra == NULL ? "" : options.jump_extra,
1210 /* Optional "-F" argumment if -F specified */
1211 config == NULL ? "" : " -F ",
1212 config == NULL ? "" : config,
1213 /* Optional "-v" arguments if -v set */
1214 debug_flag ? " -" : "",
1215 debug_flag, "vvv",
1216 /* Mandatory hostname */
1217 options.jump_host);
1218 debug("Setting implicit ProxyCommand from ProxyJump: %s",
1219 options.proxy_command);
1220 }
1221
Damien Miller13f97b22014-02-24 15:57:55 +11001222 if (options.port == 0)
1223 options.port = default_ssh_port();
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001224 channel_set_af(ssh, options.address_family);
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001225
Damien Millere9fc72e2013-10-15 12:14:12 +11001226 /* Tidy and check options */
1227 if (options.host_key_alias != NULL)
1228 lowercase(options.host_key_alias);
1229 if (options.proxy_command != NULL &&
1230 strcmp(options.proxy_command, "-") == 0 &&
1231 options.proxy_use_fdpass)
1232 fatal("ProxyCommand=- and ProxyUseFDPass are incompatible");
djm@openbsd.org44732de2015-02-20 22:17:21 +00001233 if (options.control_persist &&
1234 options.update_hostkeys == SSH_UPDATE_HOSTKEYS_ASK) {
1235 debug("UpdateHostKeys=ask is incompatible with ControlPersist; "
1236 "disabling");
1237 options.update_hostkeys = 0;
1238 }
djm@openbsd.org88b6fcd2015-11-19 08:23:27 +00001239 if (options.connection_attempts <= 0)
1240 fatal("Invalid number of ConnectionAttempts");
Damien Millere9fc72e2013-10-15 12:14:12 +11001241
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +00001242 if (sshbuf_len(command) != 0 && options.remote_command != NULL)
bluhm@openbsd.org1112b532017-05-30 18:58:37 +00001243 fatal("Cannot execute command-line and remote command.");
1244
1245 /* Cannot fork to background if no command. */
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +00001246 if (fork_after_authentication_flag && sshbuf_len(command) == 0 &&
bluhm@openbsd.org1112b532017-05-30 18:58:37 +00001247 options.remote_command == NULL && !no_shell_flag)
1248 fatal("Cannot fork into background without a command "
1249 "to execute.");
1250
Damien Miller95def091999-11-25 00:26:21 +11001251 /* reinit */
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +00001252 log_init(argv0, options.log_level, options.log_facility, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001253
Damien Millerfff9f092012-07-06 13:45:01 +10001254 if (options.request_tty == REQUEST_TTY_YES ||
1255 options.request_tty == REQUEST_TTY_FORCE)
1256 tty_flag = 1;
1257
1258 /* Allocate a tty by default if no command specified. */
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +00001259 if (sshbuf_len(command) == 0 && options.remote_command == NULL)
Damien Millerfff9f092012-07-06 13:45:01 +10001260 tty_flag = options.request_tty != REQUEST_TTY_NO;
1261
1262 /* Force no tty */
markus@openbsd.org8d057842016-09-30 09:19:13 +00001263 if (options.request_tty == REQUEST_TTY_NO ||
1264 (muxclient_command && muxclient_command != SSHMUX_COMMAND_PROXY))
Damien Millerfff9f092012-07-06 13:45:01 +10001265 tty_flag = 0;
1266 /* Do not allocate a tty if stdin is not a tty. */
1267 if ((!isatty(fileno(stdin)) || stdin_null_flag) &&
1268 options.request_tty != REQUEST_TTY_FORCE) {
1269 if (tty_flag)
1270 logit("Pseudo-terminal will not be allocated because "
1271 "stdin is not a terminal.");
1272 tty_flag = 0;
1273 }
1274
Damien Miller95def091999-11-25 00:26:21 +11001275 if (options.user == NULL)
1276 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001277
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001278 /* Set up strings used to percent_expand() arguments */
Damien Millerdfc85fa2011-05-15 08:44:02 +10001279 if (gethostname(thishost, sizeof(thishost)) == -1)
1280 fatal("gethostname: %s", strerror(errno));
1281 strlcpy(shorthost, thishost, sizeof(shorthost));
1282 shorthost[strcspn(thishost, ".")] = '\0';
1283 snprintf(portstr, sizeof(portstr), "%d", options.port);
djm@openbsd.org9c935dd2018-06-01 03:33:53 +00001284 snprintf(uidstr, sizeof(uidstr), "%llu",
1285 (unsigned long long)pw->pw_uid);
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001286
Damien Miller9c386432014-07-03 21:27:46 +10001287 if ((md = ssh_digest_start(SSH_DIGEST_SHA1)) == NULL ||
1288 ssh_digest_update(md, thishost, strlen(thishost)) < 0 ||
1289 ssh_digest_update(md, host, strlen(host)) < 0 ||
1290 ssh_digest_update(md, portstr, strlen(portstr)) < 0 ||
1291 ssh_digest_update(md, options.user, strlen(options.user)) < 0 ||
1292 ssh_digest_final(md, conn_hash, sizeof(conn_hash)) < 0)
1293 fatal("%s: mux digest failed", __func__);
1294 ssh_digest_free(md);
1295 conn_hash_hex = tohex(conn_hash, ssh_digest_bytes(SSH_DIGEST_SHA1));
1296
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001297 /*
1298 * Expand tokens in arguments. NB. LocalCommand is expanded later,
1299 * after port-forwarding is set up, so it may pick up any local
1300 * tunnel interface name allocated.
1301 */
bluhm@openbsd.org1112b532017-05-30 18:58:37 +00001302 if (options.remote_command != NULL) {
1303 debug3("expanding RemoteCommand: %s", options.remote_command);
1304 cp = options.remote_command;
1305 options.remote_command = percent_expand(cp,
1306 "C", conn_hash_hex,
1307 "L", shorthost,
1308 "d", pw->pw_dir,
1309 "h", host,
djm@openbsd.org9c935dd2018-06-01 03:33:53 +00001310 "i", uidstr,
bluhm@openbsd.org1112b532017-05-30 18:58:37 +00001311 "l", thishost,
1312 "n", host_arg,
1313 "p", portstr,
1314 "r", options.user,
1315 "u", pw->pw_name,
1316 (char *)NULL);
1317 debug3("expanded RemoteCommand: %s", options.remote_command);
1318 free(cp);
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +00001319 if ((r = sshbuf_put(command, options.remote_command,
1320 strlen(options.remote_command))) != 0)
1321 fatal("%s: buffer error: %s", __func__, ssh_err(r));
bluhm@openbsd.org1112b532017-05-30 18:58:37 +00001322 }
1323
Damien Miller0e220db2004-06-15 10:34:08 +10001324 if (options.control_path != NULL) {
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +00001325 cp = tilde_expand_filename(options.control_path, getuid());
Darren Tuckera627d422013-06-02 07:31:17 +10001326 free(options.control_path);
Damien Miller9c386432014-07-03 21:27:46 +10001327 options.control_path = percent_expand(cp,
1328 "C", conn_hash_hex,
1329 "L", shorthost,
1330 "h", host,
djm@openbsd.org9c935dd2018-06-01 03:33:53 +00001331 "i", uidstr,
Damien Miller9c386432014-07-03 21:27:46 +10001332 "l", thishost,
1333 "n", host_arg,
1334 "p", portstr,
1335 "r", options.user,
1336 "u", pw->pw_name,
djm@openbsd.org674b3b62015-09-11 03:47:28 +00001337 "i", uidstr,
Damien Millerdfc85fa2011-05-15 08:44:02 +10001338 (char *)NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10001339 free(cp);
Damien Miller0e220db2004-06-15 10:34:08 +10001340 }
Damien Miller9c386432014-07-03 21:27:46 +10001341
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001342 if (config_test) {
1343 dump_client_config(&options, host);
1344 exit(0);
1345 }
1346
djm@openbsd.org884416b2019-10-31 21:18:28 +00001347 /* Expand SecurityKeyProvider if it refers to an environment variable */
1348 if (options.sk_provider != NULL && *options.sk_provider == '$' &&
1349 strlen(options.sk_provider) > 1) {
1350 if ((cp = getenv(options.sk_provider + 1)) == NULL) {
1351 debug("Security key provider %s did not resolve; "
1352 "disabling", options.sk_provider);
1353 free(options.sk_provider);
1354 options.sk_provider = NULL;
1355 } else {
1356 debug2("resolved SecurityKeyProvider %s => %s",
1357 options.sk_provider, cp);
1358 free(options.sk_provider);
1359 options.sk_provider = xstrdup(cp);
1360 }
1361 }
1362
Damien Millerb1cbfa22008-05-19 16:00:08 +10001363 if (muxclient_command != 0 && options.control_path == NULL)
Darren Tucker0814d312005-06-01 23:08:51 +10001364 fatal("No ControlPath specified for \"-O\" command");
markus@openbsd.org8d057842016-09-30 09:19:13 +00001365 if (options.control_path != NULL) {
1366 int sock;
1367 if ((sock = muxclient(options.control_path)) >= 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001368 ssh_packet_set_connection(ssh, sock, sock);
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001369 ssh_packet_set_mux(ssh);
markus@openbsd.org8d057842016-09-30 09:19:13 +00001370 goto skip_connect;
1371 }
1372 }
Damien Miller0e220db2004-06-15 10:34:08 +10001373
Damien Miller08b57c62014-02-27 10:17:13 +11001374 /*
1375 * If hostname canonicalisation was not enabled, then we may not
1376 * have yet resolved the hostname. Do so now.
1377 */
1378 if (addrs == NULL && options.proxy_command == NULL) {
djm@openbsd.orga85768a2015-09-04 04:56:09 +00001379 debug2("resolving \"%s\" port %d", host, options.port);
Damien Miller08b57c62014-02-27 10:17:13 +11001380 if ((addrs = resolve_host(host, options.port, 1,
1381 cname, sizeof(cname))) == NULL)
1382 cleanup_exit(255); /* resolve_host logs the error */
1383 }
1384
Damien Miller67bd0622007-09-17 12:06:57 +10001385 timeout_ms = options.connection_timeout * 1000;
1386
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001387 /* Open a connection to the remote host. */
djm@openbsd.orgfbe24b12019-09-13 04:27:35 +00001388 if (ssh_connect(ssh, host_arg, host, addrs, &hostaddr, options.port,
Damien Miller0faf7472013-10-17 11:47:23 +11001389 options.address_family, options.connection_attempts,
dtucker@openbsd.org95d41e92018-07-19 10:28:47 +00001390 &timeout_ms, options.tcp_keep_alive) != 0)
Damien Miller0faf7472013-10-17 11:47:23 +11001391 exit(255);
1392
Damien Miller28631ce2013-10-26 10:07:56 +11001393 if (addrs != NULL)
1394 freeaddrinfo(addrs);
1395
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001396 ssh_packet_set_timeout(ssh, options.server_alive_interval,
Damien Miller0faf7472013-10-17 11:47:23 +11001397 options.server_alive_count_max);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001398
Damien Miller67bd0622007-09-17 12:06:57 +10001399 if (timeout_ms > 0)
1400 debug3("timeout: %d ms remain after connect", timeout_ms);
1401
Damien Miller5428f641999-11-25 11:54:57 +11001402 /*
dtucker@openbsd.org26efc2f2018-07-16 11:05:41 +00001403 * If we successfully made the connection and we have hostbased auth
1404 * enabled, load the public keys so we can later use the ssh-keysign
1405 * helper to sign challenges.
Damien Miller5428f641999-11-25 11:54:57 +11001406 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001407 sensitive_data.nkeys = 0;
1408 sensitive_data.keys = NULL;
djm@openbsd.org873d3e72017-04-30 23:18:44 +00001409 if (options.hostbased_authentication) {
dtucker@openbsd.orgac590762018-07-16 22:25:01 +00001410 sensitive_data.nkeys = 10;
Damien Millerddd63ab2006-03-31 23:10:51 +11001411 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001412 sizeof(struct sshkey));
1413
1414 /* XXX check errors? */
dtucker@openbsd.orgac590762018-07-16 22:25:01 +00001415#define L_PUBKEY(p,o) do { \
1416 if ((o) >= sensitive_data.nkeys) \
1417 fatal("%s pubkey out of array bounds", __func__); \
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001418 check_load(sshkey_load_public(p, &(sensitive_data.keys[o]), NULL), \
dtucker@openbsd.orgac590762018-07-16 22:25:01 +00001419 p, "pubkey"); \
1420} while (0)
1421#define L_CERT(p,o) do { \
1422 if ((o) >= sensitive_data.nkeys) \
1423 fatal("%s cert out of array bounds", __func__); \
1424 check_load(sshkey_load_cert(p, &(sensitive_data.keys[o])), p, "cert"); \
1425} while (0)
Ben Lindstromf9c48842002-06-11 16:37:51 +00001426
dtucker@openbsd.org26efc2f2018-07-16 11:05:41 +00001427 if (options.hostbased_authentication == 1) {
dtucker@openbsd.orgac590762018-07-16 22:25:01 +00001428 L_CERT(_PATH_HOST_ECDSA_KEY_FILE, 0);
1429 L_CERT(_PATH_HOST_ED25519_KEY_FILE, 1);
1430 L_CERT(_PATH_HOST_RSA_KEY_FILE, 2);
1431 L_CERT(_PATH_HOST_DSA_KEY_FILE, 3);
1432 L_PUBKEY(_PATH_HOST_ECDSA_KEY_FILE, 4);
1433 L_PUBKEY(_PATH_HOST_ED25519_KEY_FILE, 5);
1434 L_PUBKEY(_PATH_HOST_RSA_KEY_FILE, 6);
1435 L_PUBKEY(_PATH_HOST_DSA_KEY_FILE, 7);
1436 L_CERT(_PATH_HOST_XMSS_KEY_FILE, 8);
1437 L_PUBKEY(_PATH_HOST_XMSS_KEY_FILE, 9);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001438 }
Damien Miller95def091999-11-25 00:26:21 +11001439 }
Damien Miller95def091999-11-25 00:26:21 +11001440
dtucker@openbsd.org258dc8b2018-07-18 11:34:04 +00001441 /* Create ~/.ssh * directory if it doesn't already exist. */
Darren Tucker45c66d72011-11-04 10:50:40 +11001442 if (config == NULL) {
1443 r = snprintf(buf, sizeof buf, "%s%s%s", pw->pw_dir,
1444 strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001445 if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) == -1) {
Darren Tucker8ccb7392010-09-10 12:28:24 +10001446#ifdef WITH_SELINUX
Darren Tucker45c66d72011-11-04 10:50:40 +11001447 ssh_selinux_setfscreatecon(buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001448#endif
Darren Tucker45c66d72011-11-04 10:50:40 +11001449 if (mkdir(buf, 0700) < 0)
1450 error("Could not create directory '%.200s'.",
1451 buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001452#ifdef WITH_SELINUX
Darren Tucker45c66d72011-11-04 10:50:40 +11001453 ssh_selinux_setfscreatecon(NULL);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001454#endif
Darren Tucker45c66d72011-11-04 10:50:40 +11001455 }
Darren Tucker8ccb7392010-09-10 12:28:24 +10001456 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001457 /* load options.identity_files */
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001458 load_public_identity_files(pw);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001459
djm@openbsd.org001aa552018-04-10 00:10:49 +00001460 /* optionally set the SSH_AUTHSOCKET_ENV_NAME variable */
markus@openbsd.org1a75d142016-05-04 14:29:58 +00001461 if (options.identity_agent &&
1462 strcmp(options.identity_agent, SSH_AUTHSOCKET_ENV_NAME) != 0) {
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00001463 if (strcmp(options.identity_agent, "none") == 0) {
1464 unsetenv(SSH_AUTHSOCKET_ENV_NAME);
1465 } else {
1466 p = tilde_expand_filename(options.identity_agent,
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +00001467 getuid());
djm@openbsd.org9c935dd2018-06-01 03:33:53 +00001468 cp = percent_expand(p,
1469 "d", pw->pw_dir,
1470 "h", host,
1471 "i", uidstr,
1472 "l", thishost,
1473 "r", options.user,
1474 "u", pw->pw_name,
1475 (char *)NULL);
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00001476 free(p);
djm@openbsd.org5eff5b82018-10-03 06:38:35 +00001477 /*
1478 * If identity_agent represents an environment variable
1479 * then recheck that it is valid (since processing with
1480 * percent_expand() may have changed it) and substitute
1481 * its value.
1482 */
1483 if (cp[0] == '$') {
1484 if (!valid_env_name(cp + 1)) {
1485 fatal("Invalid IdentityAgent "
1486 "environment variable name %s", cp);
1487 }
1488 if ((p = getenv(cp + 1)) == NULL)
1489 unsetenv(SSH_AUTHSOCKET_ENV_NAME);
1490 else
1491 setenv(SSH_AUTHSOCKET_ENV_NAME, p, 1);
1492 } else {
1493 /* identity_agent specifies a path directly */
1494 setenv(SSH_AUTHSOCKET_ENV_NAME, cp, 1);
1495 }
1496 free(cp);
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00001497 }
1498 }
1499
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001500 /* Expand ~ in known host file names. */
Damien Miller295ee632011-05-29 21:42:31 +10001501 tilde_expand_paths(options.system_hostfiles,
1502 options.num_system_hostfiles);
1503 tilde_expand_paths(options.user_hostfiles, options.num_user_hostfiles);
Damien Miller95def091999-11-25 00:26:21 +11001504
Damien Miller07cd5892001-11-12 10:52:03 +11001505 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
Damien Miller857b02e2010-09-24 22:02:56 +10001506 signal(SIGCHLD, main_sigchld_handler);
Damien Miller07cd5892001-11-12 10:52:03 +11001507
Darren Tuckerd6173c02008-06-13 04:52:53 +10001508 /* Log into the remote system. Never returns if the login fails. */
djm@openbsd.org0a843d92018-12-27 03:25:24 +00001509 ssh_login(ssh, &sensitive_data, host, (struct sockaddr *)&hostaddr,
Damien Millerd925dcd2010-12-01 12:21:51 +11001510 options.port, pw, timeout_ms);
Damien Miller95def091999-11-25 00:26:21 +11001511
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001512 if (ssh_packet_connection_is_on_socket(ssh)) {
Damien Miller383ffe62010-06-26 10:02:03 +10001513 verbose("Authenticated to %s ([%s]:%d).", host,
djm@openbsd.org95767262016-03-07 19:02:43 +00001514 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
Damien Miller383ffe62010-06-26 10:02:03 +10001515 } else {
1516 verbose("Authenticated to %s (via proxy).", host);
1517 }
1518
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001519 /* We no longer need the private host keys. Clear them now. */
1520 if (sensitive_data.nkeys != 0) {
1521 for (i = 0; i < sensitive_data.nkeys; i++) {
1522 if (sensitive_data.keys[i] != NULL) {
1523 /* Destroys contents safely */
1524 debug3("clear hostkey %d", i);
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001525 sshkey_free(sensitive_data.keys[i]);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001526 sensitive_data.keys[i] = NULL;
1527 }
1528 }
Darren Tuckera627d422013-06-02 07:31:17 +10001529 free(sensitive_data.keys);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001530 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +00001531 for (i = 0; i < options.num_identity_files; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +10001532 free(options.identity_files[i]);
1533 options.identity_files[i] = NULL;
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +00001534 if (options.identity_keys[i]) {
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001535 sshkey_free(options.identity_keys[i]);
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +00001536 options.identity_keys[i] = NULL;
1537 }
1538 }
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001539 for (i = 0; i < options.num_certificate_files; i++) {
1540 free(options.certificate_files[i]);
1541 options.certificate_files[i] = NULL;
1542 }
Damien Miller95def091999-11-25 00:26:21 +11001543
markus@openbsd.org8d057842016-09-30 09:19:13 +00001544 skip_connect:
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001545 exit_status = ssh_session2(ssh, pw);
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001546 ssh_packet_close(ssh);
Damien Miller8c4e18a2002-09-19 12:05:02 +10001547
Damien Millerb1cbfa22008-05-19 16:00:08 +10001548 if (options.control_path != NULL && muxserver_sock != -1)
Damien Miller0e220db2004-06-15 10:34:08 +10001549 unlink(options.control_path);
1550
Damien Millera41ccca2010-10-07 22:07:32 +11001551 /* Kill ProxyCommand if it is running. */
1552 ssh_kill_proxy_command();
Damien Miller8c4e18a2002-09-19 12:05:02 +10001553
Damien Miller1383bd82000-04-06 12:32:37 +10001554 return exit_status;
1555}
1556
Damien Millere11e1ea2010-08-03 16:04:46 +10001557static void
1558control_persist_detach(void)
1559{
1560 pid_t pid;
djm@openbsd.orgd2d6bf82016-04-29 08:07:53 +00001561 int devnull, keep_stderr;
Damien Millere11e1ea2010-08-03 16:04:46 +10001562
1563 debug("%s: backgrounding master process", __func__);
1564
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00001565 /*
1566 * master (current process) into the background, and make the
1567 * foreground process a client of the backgrounded master.
1568 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001569 switch ((pid = fork())) {
1570 case -1:
1571 fatal("%s: fork: %s", __func__, strerror(errno));
1572 case 0:
1573 /* Child: master process continues mainloop */
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00001574 break;
1575 default:
Damien Millere11e1ea2010-08-03 16:04:46 +10001576 /* Parent: set up mux slave to connect to backgrounded master */
1577 debug2("%s: background process is %ld", __func__, (long)pid);
1578 stdin_null_flag = ostdin_null_flag;
Damien Miller21771e22011-05-15 08:45:50 +10001579 options.request_tty = orequest_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +10001580 tty_flag = otty_flag;
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00001581 close(muxserver_sock);
1582 muxserver_sock = -1;
Damien Miller5929c522010-09-10 11:17:02 +10001583 options.control_master = SSHCTL_MASTER_NO;
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00001584 muxclient(options.control_path);
Damien Millere11e1ea2010-08-03 16:04:46 +10001585 /* muxclient() doesn't return on success. */
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00001586 fatal("Failed to connect to new control master");
1587 }
Damien Miller00d9ae22010-08-17 01:59:31 +10001588 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
1589 error("%s: open(\"/dev/null\"): %s", __func__,
1590 strerror(errno));
1591 } else {
djm@openbsd.orgd2d6bf82016-04-29 08:07:53 +00001592 keep_stderr = log_is_on_stderr() && debug_flag;
Damien Miller00d9ae22010-08-17 01:59:31 +10001593 if (dup2(devnull, STDIN_FILENO) == -1 ||
djm@openbsd.orgd2d6bf82016-04-29 08:07:53 +00001594 dup2(devnull, STDOUT_FILENO) == -1 ||
1595 (!keep_stderr && dup2(devnull, STDERR_FILENO) == -1))
Damien Miller00d9ae22010-08-17 01:59:31 +10001596 error("%s: dup2: %s", __func__, strerror(errno));
1597 if (devnull > STDERR_FILENO)
1598 close(devnull);
1599 }
Damien Miller98e27dc2013-07-25 11:55:52 +10001600 daemon(1, 1);
Damien Millerea2c1a42011-06-03 12:10:22 +10001601 setproctitle("%s [mux]", options.control_path);
Damien Millere11e1ea2010-08-03 16:04:46 +10001602}
1603
1604/* Do fork() after authentication. Used by "ssh -f" */
1605static void
1606fork_postauth(void)
1607{
1608 if (need_controlpersist_detach)
1609 control_persist_detach();
1610 debug("forking to background");
1611 fork_after_authentication_flag = 0;
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001612 if (daemon(1, 1) == -1)
Damien Millere11e1ea2010-08-03 16:04:46 +10001613 fatal("daemon() failed: %.200s", strerror(errno));
1614}
1615
Darren Tucker9f407c42008-06-13 04:50:27 +10001616/* Callback for remote forward global requests */
1617static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001618ssh_confirm_remote_forward(struct ssh *ssh, int type, u_int32_t seq, void *ctxt)
Darren Tucker9f407c42008-06-13 04:50:27 +10001619{
Damien Miller7acefbb2014-07-18 14:11:24 +10001620 struct Forward *rfwd = (struct Forward *)ctxt;
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001621 u_int port;
1622 int r;
Darren Tucker9f407c42008-06-13 04:50:27 +10001623
Damien Miller4bf648f2009-02-14 16:28:21 +11001624 /* XXX verbose() on failure? */
Damien Miller4b3ed642014-07-02 15:29:40 +10001625 debug("remote forward %s for: listen %s%s%d, connect %s:%d",
Darren Tucker9f407c42008-06-13 04:50:27 +10001626 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
Damien Miller7acefbb2014-07-18 14:11:24 +10001627 rfwd->listen_path ? rfwd->listen_path :
1628 rfwd->listen_host ? rfwd->listen_host : "",
1629 (rfwd->listen_path || rfwd->listen_host) ? ":" : "",
1630 rfwd->listen_port, rfwd->connect_path ? rfwd->connect_path :
1631 rfwd->connect_host, rfwd->connect_port);
1632 if (rfwd->listen_path == NULL && rfwd->listen_port == 0) {
Darren Tucker68afb8c2011-10-02 18:59:03 +11001633 if (type == SSH2_MSG_REQUEST_SUCCESS) {
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001634 if ((r = sshpkt_get_u32(ssh, &port)) != 0)
1635 fatal("%s: %s", __func__, ssh_err(r));
1636 if (port > 65535) {
1637 error("Invalid allocated port %u for remote "
1638 "forward to %s:%d", port,
1639 rfwd->connect_host, rfwd->connect_port);
1640 /* Ensure failure processing runs below */
1641 type = SSH2_MSG_REQUEST_FAILURE;
1642 channel_update_permission(ssh,
1643 rfwd->handle, -1);
1644 } else {
1645 rfwd->allocated_port = (int)port;
1646 logit("Allocated port %u for remote "
1647 "forward to %s:%d",
1648 rfwd->allocated_port, rfwd->connect_host,
1649 rfwd->connect_port);
1650 channel_update_permission(ssh,
1651 rfwd->handle, rfwd->allocated_port);
1652 }
Darren Tucker68afb8c2011-10-02 18:59:03 +11001653 } else {
djm@openbsd.org115063a2018-06-06 18:22:41 +00001654 channel_update_permission(ssh, rfwd->handle, -1);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001655 }
Damien Miller4bf648f2009-02-14 16:28:21 +11001656 }
djm@openbsd.org@openbsd.orgdbe06622017-10-27 01:57:06 +00001657
Darren Tucker9f407c42008-06-13 04:50:27 +10001658 if (type == SSH2_MSG_REQUEST_FAILURE) {
Damien Miller7acefbb2014-07-18 14:11:24 +10001659 if (options.exit_on_forward_failure) {
1660 if (rfwd->listen_path != NULL)
1661 fatal("Error: remote port forwarding failed "
1662 "for listen path %s", rfwd->listen_path);
1663 else
1664 fatal("Error: remote port forwarding failed "
1665 "for listen port %d", rfwd->listen_port);
1666 } else {
1667 if (rfwd->listen_path != NULL)
1668 logit("Warning: remote port forwarding failed "
1669 "for listen path %s", rfwd->listen_path);
1670 else
1671 logit("Warning: remote port forwarding failed "
1672 "for listen port %d", rfwd->listen_port);
1673 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001674 }
Darren Tucker9a2a6092008-07-04 12:53:50 +10001675 if (++remote_forward_confirms_received == options.num_remote_forwards) {
Darren Tucker9f407c42008-06-13 04:50:27 +10001676 debug("All remote forwarding requests processed");
Damien Millere11e1ea2010-08-03 16:04:46 +10001677 if (fork_after_authentication_flag)
1678 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001679 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001680}
1681
Ben Lindstrombba81212001-06-25 05:01:22 +00001682static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001683client_cleanup_stdio_fwd(struct ssh *ssh, int id, void *arg)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001684{
1685 debug("stdio forwarding: done");
1686 cleanup_exit(0);
1687}
1688
Darren Tucker2d6665d2011-11-04 10:54:22 +11001689static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001690ssh_stdio_confirm(struct ssh *ssh, int id, int success, void *arg)
Damien Miller357610d2014-07-18 15:04:10 +10001691{
1692 if (!success)
1693 fatal("stdio forwarding failed");
1694}
1695
1696static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001697ssh_init_stdio_forwarding(struct ssh *ssh)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001698{
1699 Channel *c;
Damien Millere1537f92010-01-26 13:26:22 +11001700 int in, out;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001701
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +00001702 if (options.stdio_forward_host == NULL)
Darren Tucker2d6665d2011-11-04 10:54:22 +11001703 return;
Damien Millere1537f92010-01-26 13:26:22 +11001704
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +00001705 debug3("%s: %s:%d", __func__, options.stdio_forward_host,
1706 options.stdio_forward_port);
Darren Tucker2d6665d2011-11-04 10:54:22 +11001707
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001708 if ((in = dup(STDIN_FILENO)) == -1 ||
1709 (out = dup(STDOUT_FILENO)) == -1)
Damien Millere1537f92010-01-26 13:26:22 +11001710 fatal("channel_connect_stdio_fwd: dup() in/out failed");
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001711 if ((c = channel_connect_stdio_fwd(ssh, options.stdio_forward_host,
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +00001712 options.stdio_forward_port, in, out)) == NULL)
Darren Tucker2d6665d2011-11-04 10:54:22 +11001713 fatal("%s: channel_connect_stdio_fwd failed", __func__);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001714 channel_register_cleanup(ssh, c->self, client_cleanup_stdio_fwd, 0);
1715 channel_register_open_confirm(ssh, c->self, ssh_stdio_confirm, NULL);
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001716}
1717
1718static void
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001719ssh_init_forwarding(struct ssh *ssh, char **ifname)
Damien Miller0bc1bd82000-11-13 22:57:25 +11001720{
Kevin Steves12057502001-02-05 14:54:34 +00001721 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001722 int i;
Kevin Steves12057502001-02-05 14:54:34 +00001723
Damien Miller0bc1bd82000-11-13 22:57:25 +11001724 /* Initiate local TCP/IP port forwardings. */
1725 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001726 debug("Local connections to %.200s:%d forwarded to remote "
1727 "address %.200s:%d",
Damien Miller7acefbb2014-07-18 14:11:24 +10001728 (options.local_forwards[i].listen_path != NULL) ?
1729 options.local_forwards[i].listen_path :
Darren Tucker47eede72005-03-14 23:08:12 +11001730 (options.local_forwards[i].listen_host == NULL) ?
Damien Miller7acefbb2014-07-18 14:11:24 +10001731 (options.fwd_opts.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001732 options.local_forwards[i].listen_host,
1733 options.local_forwards[i].listen_port,
Damien Miller7acefbb2014-07-18 14:11:24 +10001734 (options.local_forwards[i].connect_path != NULL) ?
1735 options.local_forwards[i].connect_path :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001736 options.local_forwards[i].connect_host,
1737 options.local_forwards[i].connect_port);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001738 success += channel_setup_local_fwd_listener(ssh,
Damien Miller7acefbb2014-07-18 14:11:24 +10001739 &options.local_forwards[i], &options.fwd_opts);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001740 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10001741 if (i > 0 && success != i && options.exit_on_forward_failure)
1742 fatal("Could not request local forwarding.");
Kevin Steves12057502001-02-05 14:54:34 +00001743 if (i > 0 && success == 0)
1744 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001745
1746 /* Initiate remote TCP/IP port forwardings. */
1747 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001748 debug("Remote connections from %.200s:%d forwarded to "
1749 "local address %.200s:%d",
Damien Miller7acefbb2014-07-18 14:11:24 +10001750 (options.remote_forwards[i].listen_path != NULL) ?
1751 options.remote_forwards[i].listen_path :
Damien Miller46d38de2005-07-17 17:02:09 +10001752 (options.remote_forwards[i].listen_host == NULL) ?
Damien Milleraa3bb102005-11-05 15:12:59 +11001753 "LOCALHOST" : options.remote_forwards[i].listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +11001754 options.remote_forwards[i].listen_port,
Damien Miller7acefbb2014-07-18 14:11:24 +10001755 (options.remote_forwards[i].connect_path != NULL) ?
1756 options.remote_forwards[i].connect_path :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001757 options.remote_forwards[i].connect_host,
1758 options.remote_forwards[i].connect_port);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001759 options.remote_forwards[i].handle =
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001760 channel_request_remote_forwarding(ssh,
Damien Miller7acefbb2014-07-18 14:11:24 +10001761 &options.remote_forwards[i]);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001762 if (options.remote_forwards[i].handle < 0) {
Darren Tuckere7d4b192006-07-12 22:17:10 +10001763 if (options.exit_on_forward_failure)
1764 fatal("Could not request remote forwarding.");
1765 else
1766 logit("Warning: Could not request remote "
1767 "forwarding.");
Darren Tucker68afb8c2011-10-02 18:59:03 +11001768 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001769 client_register_global_confirm(
1770 ssh_confirm_remote_forward,
Darren Tucker68afb8c2011-10-02 18:59:03 +11001771 &options.remote_forwards[i]);
Darren Tuckere7d4b192006-07-12 22:17:10 +10001772 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001773 }
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001774
1775 /* Initiate tunnel forwarding. */
1776 if (options.tun_open != SSH_TUNMODE_NO) {
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001777 if ((*ifname = client_request_tun_fwd(ssh,
1778 options.tun_open, options.tun_local,
1779 options.tun_remote)) == NULL) {
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001780 if (options.exit_on_forward_failure)
1781 fatal("Could not request tunnel forwarding.");
1782 else
1783 error("Could not request tunnel forwarding.");
1784 }
djm@openbsd.org@openbsd.orgdbe06622017-10-27 01:57:06 +00001785 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001786}
1787
Ben Lindstrombba81212001-06-25 05:01:22 +00001788static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001789check_agent_present(void)
1790{
djm@openbsd.org141efe42015-01-14 20:05:27 +00001791 int r;
1792
Damien Miller0bc1bd82000-11-13 22:57:25 +11001793 if (options.forward_agent) {
Damien Miller788f2122005-11-05 15:14:59 +11001794 /* Clear agent forwarding if we don't have an agent. */
djm@openbsd.org141efe42015-01-14 20:05:27 +00001795 if ((r = ssh_get_authentication_socket(NULL)) != 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001796 options.forward_agent = 0;
djm@openbsd.org141efe42015-01-14 20:05:27 +00001797 if (r != SSH_ERR_AGENT_NOT_PRESENT)
1798 debug("ssh_get_authentication_socket: %s",
1799 ssh_err(r));
1800 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001801 }
1802}
1803
Ben Lindstrombba81212001-06-25 05:01:22 +00001804static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001805ssh_session2_setup(struct ssh *ssh, int id, int success, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001806{
Damien Miller3756dce2004-06-18 01:17:29 +10001807 extern char **environ;
Damien Miller17e7ed02005-06-17 12:54:33 +10001808 const char *display;
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001809 int r, interactive = tty_flag;
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001810 char *proto = NULL, *data = NULL;
Damien Miller17e7ed02005-06-17 12:54:33 +10001811
Damien Millerd530f5f2010-05-21 14:57:10 +10001812 if (!success)
1813 return; /* No need for error message, channels code sens one */
1814
Damien Miller46d38de2005-07-17 17:02:09 +10001815 display = getenv("DISPLAY");
djm@openbsd.orga58be332015-04-17 13:16:48 +00001816 if (display == NULL && options.forward_x11)
1817 debug("X11 forwarding requested but DISPLAY not set");
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001818 if (options.forward_x11 && client_x11_get_proto(ssh, display,
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001819 options.xauth_location, options.forward_x11_trusted,
1820 options.forward_x11_timeout, &proto, &data) == 0) {
Damien Millerbd483e72000-04-30 10:00:53 +10001821 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001822 debug("Requesting X11 forwarding with authentication "
1823 "spoofing.");
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001824 x11_request_forwarding_with_spoofing(ssh, id, display, proto,
Damien Miller6d7b4372011-06-23 08:31:57 +10001825 data, 1);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001826 client_expect_confirm(ssh, id, "X11 forwarding", CONFIRM_WARN);
Damien Miller6d7b4372011-06-23 08:31:57 +10001827 /* XXX exit_on_forward_failure */
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001828 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001829 }
1830
Damien Miller0bc1bd82000-11-13 22:57:25 +11001831 check_agent_present();
1832 if (options.forward_agent) {
1833 debug("Requesting authentication agent forwarding.");
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001834 channel_request_start(ssh, id, "auth-agent-req@openssh.com", 0);
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001835 if ((r = sshpkt_send(ssh)) != 0)
1836 fatal("%s: %s", __func__, ssh_err(r));
Damien Miller0bc1bd82000-11-13 22:57:25 +11001837 }
1838
Darren Tucker7b305012012-07-02 18:55:09 +10001839 /* Tell the packet module whether this is an interactive session. */
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001840 ssh_packet_set_interactive(ssh, interactive,
Darren Tucker7b305012012-07-02 18:55:09 +10001841 options.ip_qos_interactive, options.ip_qos_bulk);
1842
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001843 client_session2_setup(ssh, id, tty_flag, subsystem_flag, getenv("TERM"),
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +00001844 NULL, fileno(stdin), command, environ);
Damien Miller1383bd82000-04-06 12:32:37 +10001845}
1846
Ben Lindstromf558cf62001-09-20 23:13:49 +00001847/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001848static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001849ssh_session2_open(struct ssh *ssh)
Damien Miller1383bd82000-04-06 12:32:37 +10001850{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001851 Channel *c;
1852 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001853
Damien Millercaf6dd62000-08-29 11:33:50 +11001854 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001855 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001856 } else {
1857 in = dup(STDIN_FILENO);
1858 }
1859 out = dup(STDOUT_FILENO);
1860 err = dup(STDERR_FILENO);
1861
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001862 if (in == -1 || out == -1 || err == -1)
Damien Millercaf6dd62000-08-29 11:33:50 +11001863 fatal("dup() in/out/err failed");
1864
Damien Miller69b69aa2000-10-28 14:19:58 +11001865 /* enable nonblocking unless tty */
1866 if (!isatty(in))
1867 set_nonblock(in);
1868 if (!isatty(out))
1869 set_nonblock(out);
1870 if (!isatty(err))
1871 set_nonblock(err);
1872
Damien Millere4340be2000-09-16 13:29:08 +11001873 window = CHAN_SES_WINDOW_DEFAULT;
1874 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001875 if (tty_flag) {
1876 window >>= 1;
1877 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001878 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001879 c = channel_new(ssh,
Damien Miller1383bd82000-04-06 12:32:37 +10001880 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001881 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001882 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001883
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001884 debug3("%s: channel_new: %d", __func__, c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001885
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001886 channel_send_open(ssh, c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001887 if (!no_shell_flag)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001888 channel_register_open_confirm(ssh, c->self,
Damien Millerb84886b2008-05-19 15:05:07 +10001889 ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001890
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001891 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001892}
1893
Ben Lindstrombba81212001-06-25 05:01:22 +00001894static int
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001895ssh_session2(struct ssh *ssh, struct passwd *pw)
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001896{
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001897 int r, devnull, id = -1;
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001898 char *cp, *tun_fwd_ifname = NULL;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001899
1900 /* XXX should be pre-session */
Darren Tucker2d6665d2011-11-04 10:54:22 +11001901 if (!options.control_persist)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001902 ssh_init_stdio_forwarding(ssh);
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001903
1904 ssh_init_forwarding(ssh, &tun_fwd_ifname);
1905
1906 if (options.local_command != NULL) {
1907 debug3("expanding LocalCommand: %s", options.local_command);
1908 cp = options.local_command;
1909 options.local_command = percent_expand(cp,
1910 "C", conn_hash_hex,
1911 "L", shorthost,
1912 "d", pw->pw_dir,
1913 "h", host,
djm@openbsd.org9c935dd2018-06-01 03:33:53 +00001914 "i", uidstr,
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001915 "l", thishost,
1916 "n", host_arg,
1917 "p", portstr,
1918 "r", options.user,
1919 "u", pw->pw_name,
1920 "T", tun_fwd_ifname == NULL ? "NONE" : tun_fwd_ifname,
1921 (char *)NULL);
1922 debug3("expanded LocalCommand: %s", options.local_command);
1923 free(cp);
1924 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001925
Damien Millere11e1ea2010-08-03 16:04:46 +10001926 /* Start listening for multiplex clients */
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001927 if (!ssh_packet_get_mux(ssh))
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001928 muxserver_listen(ssh);
Damien Millere11e1ea2010-08-03 16:04:46 +10001929
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00001930 /*
Darren Tucker2d6665d2011-11-04 10:54:22 +11001931 * If we are in control persist mode and have a working mux listen
1932 * socket, then prepare to background ourselves and have a foreground
1933 * client attach as a control slave.
1934 * NB. we must save copies of the flags that we override for
Damien Millere11e1ea2010-08-03 16:04:46 +10001935 * the backgrounding, since we defer attachment of the slave until
1936 * after the connection is fully established (in particular,
1937 * async rfwd replies have been received for ExitOnForwardFailure).
1938 */
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00001939 if (options.control_persist && muxserver_sock != -1) {
Damien Millere11e1ea2010-08-03 16:04:46 +10001940 ostdin_null_flag = stdin_null_flag;
1941 ono_shell_flag = no_shell_flag;
Damien Miller21771e22011-05-15 08:45:50 +10001942 orequest_tty = options.request_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +10001943 otty_flag = tty_flag;
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00001944 stdin_null_flag = 1;
1945 no_shell_flag = 1;
1946 tty_flag = 0;
Damien Millere11e1ea2010-08-03 16:04:46 +10001947 if (!fork_after_authentication_flag)
1948 need_controlpersist_detach = 1;
1949 fork_after_authentication_flag = 1;
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00001950 }
Darren Tucker2d6665d2011-11-04 10:54:22 +11001951 /*
1952 * ControlPersist mux listen socket setup failed, attempt the
1953 * stdio forward setup that we skipped earlier.
1954 */
1955 if (options.control_persist && muxserver_sock == -1)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001956 ssh_init_stdio_forwarding(ssh);
Damien Millere11e1ea2010-08-03 16:04:46 +10001957
djm@openbsd.org14b5c632018-01-23 05:27:21 +00001958 if (!no_shell_flag)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001959 id = ssh_session2_open(ssh);
Damien Miller649fe022013-07-18 16:13:55 +10001960 else {
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001961 ssh_packet_set_interactive(ssh,
Damien Miller649fe022013-07-18 16:13:55 +10001962 options.control_master == SSHCTL_MASTER_NO,
1963 options.ip_qos_interactive, options.ip_qos_bulk);
1964 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001965
Darren Tucker8901fa92008-06-11 09:34:01 +10001966 /* If we don't expect to open a new session, then disallow it */
Damien Miller456e6f02008-11-03 19:20:10 +11001967 if (options.control_master == SSHCTL_MASTER_NO &&
1968 (datafellows & SSH_NEW_OPENSSH)) {
Darren Tucker8901fa92008-06-11 09:34:01 +10001969 debug("Requesting no-more-sessions@openssh.com");
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001970 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
1971 (r = sshpkt_put_cstring(ssh,
1972 "no-more-sessions@openssh.com")) != 0 ||
1973 (r = sshpkt_put_u8(ssh, 0)) != 0 ||
1974 (r = sshpkt_send(ssh)) != 0)
1975 fatal("%s: %s", __func__, ssh_err(r));
Darren Tucker8901fa92008-06-11 09:34:01 +10001976 }
1977
Damien Millerd27b9472005-12-13 19:29:02 +11001978 /* Execute a local command */
1979 if (options.local_command != NULL &&
1980 options.permit_local_command)
1981 ssh_local_cmd(options.local_command);
1982
Damien Miller1f25ab42010-07-16 13:56:23 +10001983 /*
djm@openbsd.org4d5456c2017-10-25 00:21:37 +00001984 * stdout is now owned by the session channel; clobber it here
1985 * so future channel closes are propagated to the local fd.
1986 * NB. this can only happen after LocalCommand has completed,
1987 * as it may want to write to stdout.
1988 */
djm@openbsd.org@openbsd.org939b30b2017-11-01 00:04:15 +00001989 if (!need_controlpersist_detach) {
1990 if ((devnull = open(_PATH_DEVNULL, O_WRONLY)) == -1)
1991 error("%s: open %s: %s", __func__,
1992 _PATH_DEVNULL, strerror(errno));
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001993 if (dup2(devnull, STDOUT_FILENO) == -1)
djm@openbsd.org@openbsd.org939b30b2017-11-01 00:04:15 +00001994 fatal("%s: dup2() stdout failed", __func__);
1995 if (devnull > STDERR_FILENO)
1996 close(devnull);
1997 }
djm@openbsd.org4d5456c2017-10-25 00:21:37 +00001998
1999 /*
Damien Miller1f25ab42010-07-16 13:56:23 +10002000 * If requested and we are not interested in replies to remote
2001 * forwarding requests, then let ssh continue in the background.
2002 */
Damien Millere11e1ea2010-08-03 16:04:46 +10002003 if (fork_after_authentication_flag) {
2004 if (options.exit_on_forward_failure &&
2005 options.num_remote_forwards > 0) {
2006 debug("deferring postauth fork until remote forward "
2007 "confirmation received");
2008 } else
2009 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10002010 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00002011
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002012 return client_loop(ssh, tty_flag, tty_flag ?
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00002013 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002014}
Damien Miller0bc1bd82000-11-13 22:57:25 +11002015
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002016/* Loads all IdentityFile and CertificateFile keys */
Ben Lindstrombba81212001-06-25 05:01:22 +00002017static void
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00002018load_public_identity_files(struct passwd *pw)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002019{
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00002020 char *filename, *cp;
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00002021 struct sshkey *public;
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002022 int i;
2023 u_int n_ids, n_certs;
Damien Miller0a80ca12010-02-27 07:55:05 +11002024 char *identity_files[SSH_MAX_IDENTITY_FILES];
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00002025 struct sshkey *identity_keys[SSH_MAX_IDENTITY_FILES];
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002026 int identity_file_userprovided[SSH_MAX_IDENTITY_FILES];
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002027 char *certificate_files[SSH_MAX_CERTIFICATE_FILES];
2028 struct sshkey *certificates[SSH_MAX_CERTIFICATE_FILES];
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002029 int certificate_file_userprovided[SSH_MAX_CERTIFICATE_FILES];
Damien Miller7ea845e2010-02-12 09:21:02 +11002030#ifdef ENABLE_PKCS11
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00002031 struct sshkey **keys;
Damien Miller7ea845e2010-02-12 09:21:02 +11002032 int nkeys;
Damien Miller0a80ca12010-02-27 07:55:05 +11002033#endif /* PKCS11 */
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00002034
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002035 n_ids = n_certs = 0;
Damien Miller1d2c4562014-02-04 11:18:20 +11002036 memset(identity_files, 0, sizeof(identity_files));
2037 memset(identity_keys, 0, sizeof(identity_keys));
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002038 memset(identity_file_userprovided, 0,
2039 sizeof(identity_file_userprovided));
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002040 memset(certificate_files, 0, sizeof(certificate_files));
2041 memset(certificates, 0, sizeof(certificates));
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002042 memset(certificate_file_userprovided, 0,
2043 sizeof(certificate_file_userprovided));
Damien Miller0a80ca12010-02-27 07:55:05 +11002044
2045#ifdef ENABLE_PKCS11
Damien Miller7ea845e2010-02-12 09:21:02 +11002046 if (options.pkcs11_provider != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00002047 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
Damien Miller7ea845e2010-02-12 09:21:02 +11002048 (pkcs11_init(!options.batch_mode) == 0) &&
2049 (nkeys = pkcs11_add_provider(options.pkcs11_provider, NULL,
2050 &keys)) > 0) {
Damien Miller7ea845e2010-02-12 09:21:02 +11002051 for (i = 0; i < nkeys; i++) {
Damien Miller0a80ca12010-02-27 07:55:05 +11002052 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00002053 sshkey_free(keys[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +11002054 continue;
2055 }
2056 identity_keys[n_ids] = keys[i];
2057 identity_files[n_ids] =
Damien Miller7ea845e2010-02-12 09:21:02 +11002058 xstrdup(options.pkcs11_provider); /* XXX */
Damien Miller0a80ca12010-02-27 07:55:05 +11002059 n_ids++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00002060 }
Darren Tuckera627d422013-06-02 07:31:17 +10002061 free(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00002062 }
Damien Miller7ea845e2010-02-12 09:21:02 +11002063#endif /* ENABLE_PKCS11 */
Damien Miller0a80ca12010-02-27 07:55:05 +11002064 for (i = 0; i < options.num_identity_files; i++) {
Darren Tucker15fd19c2013-04-05 11:22:26 +11002065 if (n_ids >= SSH_MAX_IDENTITY_FILES ||
2066 strcasecmp(options.identity_files[i], "none") == 0) {
Darren Tuckera627d422013-06-02 07:31:17 +10002067 free(options.identity_files[i]);
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002068 options.identity_files[i] = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +11002069 continue;
2070 }
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +00002071 cp = tilde_expand_filename(options.identity_files[i], getuid());
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00002072 filename = percent_expand(cp, "d", pw->pw_dir,
2073 "u", pw->pw_name, "l", thishost, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +11002074 "r", options.user, (char *)NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10002075 free(cp);
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00002076 check_load(sshkey_load_public(filename, &public, NULL),
2077 filename, "pubkey");
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002078 debug("identity file %s type %d", filename,
2079 public ? public->type : -1);
Darren Tuckera627d422013-06-02 07:31:17 +10002080 free(options.identity_files[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +11002081 identity_files[n_ids] = filename;
2082 identity_keys[n_ids] = public;
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002083 identity_file_userprovided[n_ids] =
2084 options.identity_file_userprovided[i];
Damien Miller0a80ca12010-02-27 07:55:05 +11002085 if (++n_ids >= SSH_MAX_IDENTITY_FILES)
2086 continue;
2087
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002088 /*
2089 * If no certificates have been explicitly listed then try
2090 * to add the default certificate variant too.
2091 */
2092 if (options.num_certificate_files != 0)
2093 continue;
Damien Miller0a80ca12010-02-27 07:55:05 +11002094 xasprintf(&cp, "%s-cert", filename);
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00002095 check_load(sshkey_load_public(cp, &public, NULL),
2096 filename, "pubkey");
Damien Miller0a80ca12010-02-27 07:55:05 +11002097 debug("identity file %s type %d", cp,
2098 public ? public->type : -1);
2099 if (public == NULL) {
Darren Tuckera627d422013-06-02 07:31:17 +10002100 free(cp);
Damien Miller0a80ca12010-02-27 07:55:05 +11002101 continue;
2102 }
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00002103 if (!sshkey_is_cert(public)) {
Damien Miller0a80ca12010-02-27 07:55:05 +11002104 debug("%s: key %s type %s is not a certificate",
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00002105 __func__, cp, sshkey_type(public));
2106 sshkey_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +10002107 free(cp);
Damien Miller0a80ca12010-02-27 07:55:05 +11002108 continue;
2109 }
djm@openbsd.orgb4867e02016-12-06 07:48:01 +00002110 /* NB. leave filename pointing to private key */
2111 identity_files[n_ids] = xstrdup(filename);
Damien Miller0a80ca12010-02-27 07:55:05 +11002112 identity_keys[n_ids] = public;
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002113 identity_file_userprovided[n_ids] =
2114 options.identity_file_userprovided[i];
Damien Miller0a80ca12010-02-27 07:55:05 +11002115 n_ids++;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002116 }
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002117
2118 if (options.num_certificate_files > SSH_MAX_CERTIFICATE_FILES)
2119 fatal("%s: too many certificates", __func__);
2120 for (i = 0; i < options.num_certificate_files; i++) {
2121 cp = tilde_expand_filename(options.certificate_files[i],
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +00002122 getuid());
djm@openbsd.org9c935dd2018-06-01 03:33:53 +00002123 filename = percent_expand(cp,
2124 "d", pw->pw_dir,
2125 "h", host,
djm@openbsd.org03688892018-06-08 03:35:36 +00002126 "i", uidstr,
djm@openbsd.org9c935dd2018-06-01 03:33:53 +00002127 "l", thishost,
2128 "r", options.user,
2129 "u", pw->pw_name,
2130 (char *)NULL);
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002131 free(cp);
2132
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00002133 check_load(sshkey_load_public(filename, &public, NULL),
2134 filename, "certificate");
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002135 debug("certificate file %s type %d", filename,
2136 public ? public->type : -1);
2137 free(options.certificate_files[i]);
2138 options.certificate_files[i] = NULL;
2139 if (public == NULL) {
2140 free(filename);
2141 continue;
2142 }
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00002143 if (!sshkey_is_cert(public)) {
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002144 debug("%s: key %s type %s is not a certificate",
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00002145 __func__, filename, sshkey_type(public));
2146 sshkey_free(public);
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002147 free(filename);
2148 continue;
2149 }
2150 certificate_files[n_certs] = filename;
2151 certificates[n_certs] = public;
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002152 certificate_file_userprovided[n_certs] =
2153 options.certificate_file_userprovided[i];
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002154 ++n_certs;
2155 }
2156
Damien Miller0a80ca12010-02-27 07:55:05 +11002157 options.num_identity_files = n_ids;
2158 memcpy(options.identity_files, identity_files, sizeof(identity_files));
2159 memcpy(options.identity_keys, identity_keys, sizeof(identity_keys));
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002160 memcpy(options.identity_file_userprovided,
2161 identity_file_userprovided, sizeof(identity_file_userprovided));
Damien Miller0a80ca12010-02-27 07:55:05 +11002162
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002163 options.num_certificate_files = n_certs;
2164 memcpy(options.certificate_files,
2165 certificate_files, sizeof(certificate_files));
2166 memcpy(options.certificates, certificates, sizeof(certificates));
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002167 memcpy(options.certificate_file_userprovided,
2168 certificate_file_userprovided,
2169 sizeof(certificate_file_userprovided));
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002170}
Damien Miller857b02e2010-09-24 22:02:56 +10002171
2172static void
2173main_sigchld_handler(int sig)
2174{
2175 int save_errno = errno;
2176 pid_t pid;
2177 int status;
2178
2179 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00002180 (pid == -1 && errno == EINTR))
Damien Miller857b02e2010-09-24 22:02:56 +10002181 ;
Damien Miller857b02e2010-09-24 22:02:56 +10002182 errno = save_errno;
2183}