blob: a983a108b43a88ab7acfc58788db4bb43702229f [file] [log] [blame]
dtucker@openbsd.orgde1f3562020-02-18 08:49:49 +00001/* $OpenBSD: ssh.c,v 1.520 2020/02/18 08:49:49 dtucker 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>
naddy@openbsd.org189550f2019-11-18 16:10:05 +000068#include <stdarg.h>
Damien Millere6b3b612006-07-24 14:01:23 +100069#include <unistd.h>
deraadt@openbsd.org087266e2015-01-20 23:14:00 +000070#include <limits.h>
djm@openbsd.org65c6c6b2016-07-17 04:20:16 +000071#include <locale.h>
Damien Millereba71ba2000-04-29 23:57:08 +100072
Darren Tucker46aa3e02006-09-02 15:32:40 +100073#include <netinet/in.h>
74#include <arpa/inet.h>
75
Damien Miller1f0311c2014-05-15 14:24:09 +100076#ifdef WITH_OPENSSL
Damien Millereba71ba2000-04-29 23:57:08 +100077#include <openssl/evp.h>
Damien Miller0bc1bd82000-11-13 22:57:25 +110078#include <openssl/err.h>
Damien Miller1f0311c2014-05-15 14:24:09 +100079#endif
Darren Tuckerbfaaf962008-02-28 19:13:52 +110080#include "openbsd-compat/openssl-compat.h"
Damien Millerb84886b2008-05-19 15:05:07 +100081#include "openbsd-compat/sys-queue.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082
Damien Millerd7834352006-08-05 12:39:39 +100083#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100084#include "ssh.h"
Damien Miller1383bd82000-04-06 12:32:37 +100085#include "ssh2.h"
Damien Millerb96c4412010-07-02 13:34:24 +100086#include "canohost.h"
Damien Miller1383bd82000-04-06 12:32:37 +100087#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000088#include "cipher.h"
Damien Miller9c386432014-07-03 21:27:46 +100089#include "digest.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000090#include "packet.h"
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +000091#include "sshbuf.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000092#include "channels.h"
markus@openbsd.org5467fbc2018-07-11 18:53:29 +000093#include "sshkey.h"
Damien Miller994cf142000-07-21 10:19:44 +100094#include "authfd.h"
Damien Millereba71ba2000-04-29 23:57:08 +100095#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000096#include "pathnames.h"
Damien Miller0e220db2004-06-15 10:34:08 +100097#include "dispatch.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000098#include "clientloop.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000099#include "log.h"
Damien Miller7acefbb2014-07-18 14:11:24 +1000100#include "misc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000101#include "readconf.h"
102#include "sshconnect.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000103#include "kex.h"
104#include "mac.h"
Darren Tucker06f2bd82004-05-13 16:06:46 +1000105#include "sshpty.h"
Darren Tucker46bc0752004-05-02 22:11:30 +1000106#include "match.h"
Damien Miller0e220db2004-06-15 10:34:08 +1000107#include "msg.h"
Damien Millerb7576772006-07-10 20:23:39 +1000108#include "version.h"
djm@openbsd.org141efe42015-01-14 20:05:27 +0000109#include "ssherr.h"
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000110#include "myproposal.h"
Damien Millerdda78a02016-12-12 13:57:10 +1100111#include "utf8.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000112
Damien Miller7ea845e2010-02-12 09:21:02 +1100113#ifdef ENABLE_PKCS11
114#include "ssh-pkcs11.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +0000115#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000116
Damien Miller3f905871999-11-15 17:10:57 +1100117extern char *__progname;
Damien Miller3f905871999-11-15 17:10:57 +1100118
Damien Millerea2c1a42011-06-03 12:10:22 +1000119/* Saves a copy of argv for setproctitle emulation */
120#ifndef HAVE_SETPROCTITLE
121static char **saved_av;
122#endif
123
Darren Tuckerd6173c02008-06-13 04:52:53 +1000124/* Flag indicating whether debug mode is on. May be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000125int debug_flag = 0;
126
Damien Miller21771e22011-05-15 08:45:50 +1000127/* Flag indicating whether a tty should be requested */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000128int tty_flag = 0;
129
Damien Miller1383bd82000-04-06 12:32:37 +1000130/* don't exec a shell */
131int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000132
Damien Miller5428f641999-11-25 11:54:57 +1100133/*
134 * Flag indicating that nothing should be read from stdin. This can be set
135 * on the command line.
136 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000137int stdin_null_flag = 0;
138
Damien Miller5428f641999-11-25 11:54:57 +1100139/*
Damien Millere11e1ea2010-08-03 16:04:46 +1000140 * Flag indicating that the current process should be backgrounded and
141 * a new slave launched in the foreground for ControlPersist.
142 */
143int need_controlpersist_detach = 0;
144
145/* Copies of flags for ControlPersist foreground slave */
Damien Miller21771e22011-05-15 08:45:50 +1000146int ostdin_null_flag, ono_shell_flag, otty_flag, orequest_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +1000147
148/*
Damien Miller5428f641999-11-25 11:54:57 +1100149 * Flag indicating that ssh should fork after authentication. This is useful
Ben Lindstromf666fec2002-06-06 19:51:58 +0000150 * so that the passphrase can be entered manually, and then ssh goes to the
Damien Miller5428f641999-11-25 11:54:57 +1100151 * background.
152 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000153int fork_after_authentication_flag = 0;
154
Damien Miller5428f641999-11-25 11:54:57 +1100155/*
156 * General data structure for command line options and options configurable
157 * in configuration files. See readconf.h.
158 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000159Options options;
160
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000161/* optional user configfile */
162char *config = NULL;
163
Damien Miller5428f641999-11-25 11:54:57 +1100164/*
165 * Name of the host we are connecting to. This is the name given on the
jmc@openbsd.org73491492019-06-12 11:31:50 +0000166 * command line, or the Hostname specified for the user-supplied name in a
Damien Miller5428f641999-11-25 11:54:57 +1100167 * configuration file.
168 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000169char *host;
170
djm@openbsd.org40be78f2019-12-21 02:19:13 +0000171/*
172 * A config can specify a path to forward, overriding SSH_AUTH_SOCK. If this is
173 * not NULL, forward the socket at this path instead.
174 */
175char *forward_agent_sock_path = NULL;
176
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000177/* Various strings used to to percent_expand() arguments */
178static char thishost[NI_MAXHOST], shorthost[NI_MAXHOST], portstr[NI_MAXSERV];
179static char uidstr[32], *host_arg, *conn_hash_hex;
180
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000181/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100182struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000183
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000184/* Private host keys. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000185Sensitive sensitive_data;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000186
Damien Miller1383bd82000-04-06 12:32:37 +1000187/* command to be executed */
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +0000188struct sshbuf *command;
Damien Miller1383bd82000-04-06 12:32:37 +1000189
Damien Miller832562e2001-01-30 09:30:01 +1100190/* Should we execute a command or invoke a subsystem? */
191int subsystem_flag = 0;
192
Damien Miller2797f7f2002-04-23 21:09:44 +1000193/* # of replies received for global requests */
Darren Tucker9f407c42008-06-13 04:50:27 +1000194static int remote_forward_confirms_received = 0;
Damien Miller2797f7f2002-04-23 21:09:44 +1000195
Damien Millerb1cbfa22008-05-19 16:00:08 +1000196/* mux.c */
197extern int muxserver_sock;
198extern u_int muxclient_command;
Damien Miller0e220db2004-06-15 10:34:08 +1000199
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000200/* Prints a help message to the user. This function never returns. */
201
Ben Lindstrombba81212001-06-25 05:01:22 +0000202static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000203usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000204{
Damien Miller50955102004-03-22 09:34:58 +1100205 fprintf(stderr,
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000206"usage: ssh [-46AaCfGgKkMNnqsTtVvXxYy] [-B bind_interface]\n"
207" [-b bind_address] [-c cipher_spec] [-D [bind_address:]port]\n"
208" [-E log_file] [-e escape_char] [-F configfile] [-I pkcs11]\n"
209" [-i identity_file] [-J [user@]host[:port]] [-L address]\n"
210" [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
211" [-Q query_option] [-R address] [-S ctl_path] [-W host:port]\n"
212" [-w local_tun[:remote_tun]] destination [command]\n"
Damien Miller50955102004-03-22 09:34:58 +1100213 );
Darren Tuckere9a9b712005-12-20 16:15:51 +1100214 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000215}
216
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000217static int ssh_session2(struct ssh *, struct passwd *);
218static void load_public_identity_files(struct passwd *);
Damien Miller857b02e2010-09-24 22:02:56 +1000219static void main_sigchld_handler(int);
Damien Millerb1cbfa22008-05-19 16:00:08 +1000220
Damien Miller295ee632011-05-29 21:42:31 +1000221/* ~/ expand a list of paths. NB. assumes path[n] is heap-allocated. */
222static void
223tilde_expand_paths(char **paths, u_int num_paths)
224{
225 u_int i;
226 char *cp;
227
228 for (i = 0; i < num_paths; i++) {
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +0000229 cp = tilde_expand_filename(paths[i], getuid());
Darren Tuckera627d422013-06-02 07:31:17 +1000230 free(paths[i]);
Damien Miller295ee632011-05-29 21:42:31 +1000231 paths[i] = cp;
232 }
233}
234
Damien Miller13f97b22014-02-24 15:57:55 +1100235/*
236 * Attempt to resolve a host name / port to a set of addresses and
237 * optionally return any CNAMEs encountered along the way.
238 * Returns NULL on failure.
239 * NB. this function must operate with a options having undefined members.
240 */
Damien Miller0faf7472013-10-17 11:47:23 +1100241static struct addrinfo *
Damien Miller13f97b22014-02-24 15:57:55 +1100242resolve_host(const char *name, int port, int logerr, char *cname, size_t clen)
Damien Miller0faf7472013-10-17 11:47:23 +1100243{
244 char strport[NI_MAXSERV];
245 struct addrinfo hints, *res;
dtucker@openbsd.org3a7db912019-04-23 11:56:41 +0000246 int gaierr;
247 LogLevel loglevel = SYSLOG_LEVEL_DEBUG1;
Damien Miller0faf7472013-10-17 11:47:23 +1100248
Damien Miller13f97b22014-02-24 15:57:55 +1100249 if (port <= 0)
250 port = default_ssh_port();
251
djm@openbsd.orgb1d38a32015-10-15 23:51:40 +0000252 snprintf(strport, sizeof strport, "%d", port);
Damien Miller1d2c4562014-02-04 11:18:20 +1100253 memset(&hints, 0, sizeof(hints));
Damien Miller13f97b22014-02-24 15:57:55 +1100254 hints.ai_family = options.address_family == -1 ?
255 AF_UNSPEC : options.address_family;
Damien Miller0faf7472013-10-17 11:47:23 +1100256 hints.ai_socktype = SOCK_STREAM;
257 if (cname != NULL)
258 hints.ai_flags = AI_CANONNAME;
259 if ((gaierr = getaddrinfo(name, strport, &hints, &res)) != 0) {
260 if (logerr || (gaierr != EAI_NONAME && gaierr != EAI_NODATA))
261 loglevel = SYSLOG_LEVEL_ERROR;
262 do_log2(loglevel, "%s: Could not resolve hostname %.100s: %s",
263 __progname, name, ssh_gai_strerror(gaierr));
264 return NULL;
265 }
266 if (cname != NULL && res->ai_canonname != NULL) {
267 if (strlcpy(cname, res->ai_canonname, clen) >= clen) {
268 error("%s: host \"%s\" cname \"%s\" too long (max %lu)",
269 __func__, name, res->ai_canonname, (u_long)clen);
270 if (clen > 0)
271 *cname = '\0';
272 }
273 }
274 return res;
275}
276
djm@openbsd.orgfc21ea92018-01-23 05:06:25 +0000277/* Returns non-zero if name can only be an address and not a hostname */
278static int
279is_addr_fast(const char *name)
280{
281 return (strchr(name, '%') != NULL || strchr(name, ':') != NULL ||
282 strspn(name, "0123456789.") == strlen(name));
283}
284
285/* Returns non-zero if name represents a valid, single address */
286static int
287is_addr(const char *name)
288{
289 char strport[NI_MAXSERV];
290 struct addrinfo hints, *res;
291
292 if (is_addr_fast(name))
293 return 1;
294
295 snprintf(strport, sizeof strport, "%u", default_ssh_port());
296 memset(&hints, 0, sizeof(hints));
297 hints.ai_family = options.address_family == -1 ?
298 AF_UNSPEC : options.address_family;
299 hints.ai_socktype = SOCK_STREAM;
300 hints.ai_flags = AI_NUMERICHOST|AI_NUMERICSERV;
301 if (getaddrinfo(name, strport, &hints, &res) != 0)
302 return 0;
303 if (res == NULL || res->ai_next != NULL) {
304 freeaddrinfo(res);
305 return 0;
306 }
307 freeaddrinfo(res);
308 return 1;
309}
310
Damien Miller0faf7472013-10-17 11:47:23 +1100311/*
djm@openbsd.org90109022015-01-16 07:19:48 +0000312 * Attempt to resolve a numeric host address / port to a single address.
313 * Returns a canonical address string.
314 * Returns NULL on failure.
315 * NB. this function must operate with a options having undefined members.
316 */
317static struct addrinfo *
318resolve_addr(const char *name, int port, char *caddr, size_t clen)
319{
320 char addr[NI_MAXHOST], strport[NI_MAXSERV];
321 struct addrinfo hints, *res;
322 int gaierr;
323
324 if (port <= 0)
325 port = default_ssh_port();
326 snprintf(strport, sizeof strport, "%u", port);
327 memset(&hints, 0, sizeof(hints));
328 hints.ai_family = options.address_family == -1 ?
329 AF_UNSPEC : options.address_family;
330 hints.ai_socktype = SOCK_STREAM;
331 hints.ai_flags = AI_NUMERICHOST|AI_NUMERICSERV;
332 if ((gaierr = getaddrinfo(name, strport, &hints, &res)) != 0) {
333 debug2("%s: could not resolve name %.100s as address: %s",
334 __func__, name, ssh_gai_strerror(gaierr));
335 return NULL;
336 }
337 if (res == NULL) {
338 debug("%s: getaddrinfo %.100s returned no addresses",
339 __func__, name);
340 return NULL;
341 }
342 if (res->ai_next != NULL) {
343 debug("%s: getaddrinfo %.100s returned multiple addresses",
344 __func__, name);
345 goto fail;
346 }
347 if ((gaierr = getnameinfo(res->ai_addr, res->ai_addrlen,
348 addr, sizeof(addr), NULL, 0, NI_NUMERICHOST)) != 0) {
349 debug("%s: Could not format address for name %.100s: %s",
350 __func__, name, ssh_gai_strerror(gaierr));
351 goto fail;
352 }
353 if (strlcpy(caddr, addr, clen) >= clen) {
354 error("%s: host \"%s\" addr \"%s\" too long (max %lu)",
355 __func__, name, addr, (u_long)clen);
356 if (clen > 0)
357 *caddr = '\0';
358 fail:
359 freeaddrinfo(res);
360 return NULL;
361 }
362 return res;
363}
364
365/*
Damien Miller0faf7472013-10-17 11:47:23 +1100366 * Check whether the cname is a permitted replacement for the hostname
367 * and perform the replacement if it is.
Damien Miller13f97b22014-02-24 15:57:55 +1100368 * NB. this function must operate with a options having undefined members.
Damien Miller0faf7472013-10-17 11:47:23 +1100369 */
370static int
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000371check_follow_cname(int direct, char **namep, const char *cname)
Damien Miller0faf7472013-10-17 11:47:23 +1100372{
373 int i;
374 struct allowed_cname *rule;
375
376 if (*cname == '\0' || options.num_permitted_cnames == 0 ||
377 strcmp(*namep, cname) == 0)
378 return 0;
Damien Miller38505592013-10-17 11:48:13 +1100379 if (options.canonicalize_hostname == SSH_CANONICALISE_NO)
Damien Miller0faf7472013-10-17 11:47:23 +1100380 return 0;
381 /*
Damien Miller38505592013-10-17 11:48:13 +1100382 * Don't attempt to canonicalize names that will be interpreted by
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000383 * a proxy or jump host unless the user specifically requests so.
Damien Miller0faf7472013-10-17 11:47:23 +1100384 */
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000385 if (!direct &&
Damien Miller38505592013-10-17 11:48:13 +1100386 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS)
Damien Miller0faf7472013-10-17 11:47:23 +1100387 return 0;
388 debug3("%s: check \"%s\" CNAME \"%s\"", __func__, *namep, cname);
389 for (i = 0; i < options.num_permitted_cnames; i++) {
390 rule = options.permitted_cnames + i;
djm@openbsd.orge661a862015-05-04 06:10:48 +0000391 if (match_pattern_list(*namep, rule->source_list, 1) != 1 ||
392 match_pattern_list(cname, rule->target_list, 1) != 1)
Damien Miller0faf7472013-10-17 11:47:23 +1100393 continue;
Damien Miller38505592013-10-17 11:48:13 +1100394 verbose("Canonicalized DNS aliased hostname "
Damien Miller0faf7472013-10-17 11:47:23 +1100395 "\"%s\" => \"%s\"", *namep, cname);
396 free(*namep);
397 *namep = xstrdup(cname);
398 return 1;
399 }
400 return 0;
401}
402
403/*
404 * Attempt to resolve the supplied hostname after applying the user's
Damien Miller51682fa2013-10-17 11:48:31 +1100405 * canonicalization rules. Returns the address list for the host or NULL
406 * if no name was found after canonicalization.
Damien Miller13f97b22014-02-24 15:57:55 +1100407 * NB. this function must operate with a options having undefined members.
Damien Miller0faf7472013-10-17 11:47:23 +1100408 */
409static struct addrinfo *
Damien Miller13f97b22014-02-24 15:57:55 +1100410resolve_canonicalize(char **hostp, int port)
Damien Miller0faf7472013-10-17 11:47:23 +1100411{
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000412 int i, direct, ndots;
djm@openbsd.org90109022015-01-16 07:19:48 +0000413 char *cp, *fullhost, newname[NI_MAXHOST];
Damien Miller0faf7472013-10-17 11:47:23 +1100414 struct addrinfo *addrs;
415
djm@openbsd.orgfc21ea92018-01-23 05:06:25 +0000416 /*
417 * Attempt to canonicalise addresses, regardless of
418 * whether hostname canonicalisation was requested
419 */
420 if ((addrs = resolve_addr(*hostp, port,
421 newname, sizeof(newname))) != NULL) {
422 debug2("%s: hostname %.100s is address", __func__, *hostp);
423 if (strcasecmp(*hostp, newname) != 0) {
424 debug2("%s: canonicalised address \"%s\" => \"%s\"",
425 __func__, *hostp, newname);
426 free(*hostp);
427 *hostp = xstrdup(newname);
428 }
429 return addrs;
430 }
431
432 /*
433 * If this looks like an address but didn't parse as one, it might
434 * be an address with an invalid interface scope. Skip further
435 * attempts at canonicalisation.
436 */
437 if (is_addr_fast(*hostp)) {
438 debug("%s: hostname %.100s is an unrecognised address",
439 __func__, *hostp);
440 return NULL;
441 }
442
Damien Miller38505592013-10-17 11:48:13 +1100443 if (options.canonicalize_hostname == SSH_CANONICALISE_NO)
Damien Miller0faf7472013-10-17 11:47:23 +1100444 return NULL;
Damien Miller13f97b22014-02-24 15:57:55 +1100445
Damien Miller0faf7472013-10-17 11:47:23 +1100446 /*
Damien Miller38505592013-10-17 11:48:13 +1100447 * Don't attempt to canonicalize names that will be interpreted by
Damien Miller0faf7472013-10-17 11:47:23 +1100448 * a proxy unless the user specifically requests so.
449 */
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000450 direct = option_clear_or_none(options.proxy_command) &&
451 options.jump_host == NULL;
452 if (!direct &&
Damien Miller38505592013-10-17 11:48:13 +1100453 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS)
Damien Miller0faf7472013-10-17 11:47:23 +1100454 return NULL;
Damien Miller13f97b22014-02-24 15:57:55 +1100455
djm@openbsd.org5ee00632015-10-16 18:40:49 +0000456 /* If domain name is anchored, then resolve it now */
457 if ((*hostp)[strlen(*hostp) - 1] == '.') {
458 debug3("%s: name is fully qualified", __func__);
459 fullhost = xstrdup(*hostp);
460 if ((addrs = resolve_host(fullhost, port, 0,
461 newname, sizeof(newname))) != NULL)
462 goto found;
463 free(fullhost);
464 goto notfound;
465 }
466
Damien Miller51682fa2013-10-17 11:48:31 +1100467 /* Don't apply canonicalization to sufficiently-qualified hostnames */
Damien Miller0faf7472013-10-17 11:47:23 +1100468 ndots = 0;
469 for (cp = *hostp; *cp != '\0'; cp++) {
470 if (*cp == '.')
471 ndots++;
472 }
Damien Miller38505592013-10-17 11:48:13 +1100473 if (ndots > options.canonicalize_max_dots) {
474 debug3("%s: not canonicalizing hostname \"%s\" (max dots %d)",
475 __func__, *hostp, options.canonicalize_max_dots);
Damien Miller0faf7472013-10-17 11:47:23 +1100476 return NULL;
477 }
478 /* Attempt each supplied suffix */
479 for (i = 0; i < options.num_canonical_domains; i++) {
djm@openbsd.org90109022015-01-16 07:19:48 +0000480 *newname = '\0';
Damien Miller0faf7472013-10-17 11:47:23 +1100481 xasprintf(&fullhost, "%s.%s.", *hostp,
482 options.canonical_domains[i]);
Damien Miller13f97b22014-02-24 15:57:55 +1100483 debug3("%s: attempting \"%s\" => \"%s\"", __func__,
484 *hostp, fullhost);
485 if ((addrs = resolve_host(fullhost, port, 0,
djm@openbsd.org90109022015-01-16 07:19:48 +0000486 newname, sizeof(newname))) == NULL) {
Damien Miller0faf7472013-10-17 11:47:23 +1100487 free(fullhost);
488 continue;
489 }
djm@openbsd.org5ee00632015-10-16 18:40:49 +0000490 found:
Damien Miller0faf7472013-10-17 11:47:23 +1100491 /* Remove trailing '.' */
492 fullhost[strlen(fullhost) - 1] = '\0';
493 /* Follow CNAME if requested */
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000494 if (!check_follow_cname(direct, &fullhost, newname)) {
Damien Miller38505592013-10-17 11:48:13 +1100495 debug("Canonicalized hostname \"%s\" => \"%s\"",
Damien Miller0faf7472013-10-17 11:47:23 +1100496 *hostp, fullhost);
497 }
498 free(*hostp);
499 *hostp = fullhost;
500 return addrs;
501 }
djm@openbsd.org5ee00632015-10-16 18:40:49 +0000502 notfound:
Damien Miller38505592013-10-17 11:48:13 +1100503 if (!options.canonicalize_fallback_local)
Damien Miller13f97b22014-02-24 15:57:55 +1100504 fatal("%s: Could not resolve host \"%s\"", __progname, *hostp);
505 debug2("%s: host %s not found in any suffix", __func__, *hostp);
Damien Miller0faf7472013-10-17 11:47:23 +1100506 return NULL;
507}
508
Damien Miller95def091999-11-25 00:26:21 +1100509/*
markus@openbsd.org5467fbc2018-07-11 18:53:29 +0000510 * Check the result of hostkey loading, ignoring some errors and
511 * fatal()ing for others.
512 */
513static void
514check_load(int r, const char *path, const char *message)
515{
516 switch (r) {
517 case 0:
518 break;
519 case SSH_ERR_INTERNAL_ERROR:
520 case SSH_ERR_ALLOC_FAIL:
521 fatal("load %s \"%s\": %s", message, path, ssh_err(r));
522 case SSH_ERR_SYSTEM_ERROR:
523 /* Ignore missing files */
524 if (errno == ENOENT)
525 break;
526 /* FALLTHROUGH */
527 default:
528 error("load %s \"%s\": %s", message, path, ssh_err(r));
529 break;
530 }
531}
532
533/*
Damien Miller13f97b22014-02-24 15:57:55 +1100534 * Read per-user configuration file. Ignore the system wide config
535 * file if the user specifies a config file on the command line.
536 */
537static void
djm@openbsd.org9e34e0c2018-11-23 05:08:07 +0000538process_config_files(const char *host_name, struct passwd *pw, int final_pass,
539 int *want_final_pass)
Damien Miller13f97b22014-02-24 15:57:55 +1100540{
deraadt@openbsd.org087266e2015-01-20 23:14:00 +0000541 char buf[PATH_MAX];
Damien Miller13f97b22014-02-24 15:57:55 +1100542 int r;
543
544 if (config != NULL) {
545 if (strcasecmp(config, "none") != 0 &&
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000546 !read_config_file(config, pw, host, host_name, &options,
djm@openbsd.org9e34e0c2018-11-23 05:08:07 +0000547 SSHCONF_USERCONF | (final_pass ? SSHCONF_FINAL : 0),
548 want_final_pass))
Damien Miller13f97b22014-02-24 15:57:55 +1100549 fatal("Can't open user config file %.100s: "
550 "%.100s", config, strerror(errno));
551 } else {
552 r = snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir,
553 _PATH_SSH_USER_CONFFILE);
554 if (r > 0 && (size_t)r < sizeof(buf))
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000555 (void)read_config_file(buf, pw, host, host_name,
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000556 &options, SSHCONF_CHECKPERM | SSHCONF_USERCONF |
djm@openbsd.org9e34e0c2018-11-23 05:08:07 +0000557 (final_pass ? SSHCONF_FINAL : 0), want_final_pass);
Damien Miller13f97b22014-02-24 15:57:55 +1100558
559 /* Read systemwide configuration file after user config. */
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000560 (void)read_config_file(_PATH_HOST_CONFIG_FILE, pw,
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000561 host, host_name, &options,
djm@openbsd.org9e34e0c2018-11-23 05:08:07 +0000562 final_pass ? SSHCONF_FINAL : 0, want_final_pass);
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000563 }
564}
565
566/* Rewrite the port number in an addrinfo list of addresses */
567static void
568set_addrinfo_port(struct addrinfo *addrs, int port)
569{
570 struct addrinfo *addr;
571
572 for (addr = addrs; addr != NULL; addr = addr->ai_next) {
573 switch (addr->ai_family) {
574 case AF_INET:
575 ((struct sockaddr_in *)addr->ai_addr)->
576 sin_port = htons(port);
577 break;
578 case AF_INET6:
579 ((struct sockaddr_in6 *)addr->ai_addr)->
580 sin6_port = htons(port);
581 break;
582 }
Damien Miller13f97b22014-02-24 15:57:55 +1100583 }
584}
585
586/*
Damien Miller95def091999-11-25 00:26:21 +1100587 * Main program for the ssh client.
588 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000589int
590main(int ac, char **av)
591{
djm@openbsd.org95767262016-03-07 19:02:43 +0000592 struct ssh *ssh = NULL;
djm@openbsd.org643c2ad2017-08-12 06:46:01 +0000593 int i, r, opt, exit_status, use_syslog, direct, timeout_ms;
djm@openbsd.org9e34e0c2018-11-23 05:08:07 +0000594 int was_addr, config_test = 0, opt_terminated = 0, want_final_pass = 0;
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000595 char *p, *cp, *line, *argv0, buf[PATH_MAX], *logfile;
596 char cname[NI_MAXHOST];
Damien Miller95def091999-11-25 00:26:21 +1100597 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000598 struct passwd *pw;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000599 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000600 extern char *optarg;
Damien Miller7acefbb2014-07-18 14:11:24 +1000601 struct Forward fwd;
Damien Miller0faf7472013-10-17 11:47:23 +1100602 struct addrinfo *addrs = NULL;
Damien Miller9c386432014-07-03 21:27:46 +1000603 struct ssh_digest_ctx *md;
604 u_char conn_hash[SSH_DIGEST_MAX_LENGTH];
dtucker@openbsd.org7f8e66f2020-01-23 10:24:29 +0000605 size_t n, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000606
Darren Tuckerce321d82005-10-03 18:11:24 +1000607 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
608 sanitise_stdfd();
609
Damien Miller59d3d5b2003-08-22 09:34:41 +1000610 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000611
Damien Millerea2c1a42011-06-03 12:10:22 +1000612#ifndef HAVE_SETPROCTITLE
613 /* Prepare for later setproctitle emulation */
614 /* Save argv so it isn't clobbered by setproctitle() emulation */
615 saved_av = xcalloc(ac + 1, sizeof(*saved_av));
616 for (i = 0; i < ac; i++)
617 saved_av[i] = xstrdup(av[i]);
618 saved_av[i] = NULL;
619 compat_init_setproctitle(ac, av);
620 av = saved_av;
621#endif
622
Damien Miller42c5ec42018-11-23 10:40:06 +1100623 seed_rng();
624
Damien Miller5428f641999-11-25 11:54:57 +1100625 /*
Damien Miller00d9ae22010-08-17 01:59:31 +1000626 * Discard other fds that are hanging around. These can cause problem
627 * with backgrounded ssh processes started by ControlPersist.
628 */
629 closefrom(STDERR_FILENO + 1);
630
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000631 /* Get user data. */
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +0000632 pw = getpwuid(getuid());
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000633 if (!pw) {
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +0000634 logit("No user exists for uid %lu", (u_long)getuid());
Darren Tuckere9a9b712005-12-20 16:15:51 +1100635 exit(255);
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000636 }
637 /* Take a copy of the returned structure. */
638 pw = pwcopy(pw);
639
Damien Miller5428f641999-11-25 11:54:57 +1100640 /*
Damien Miller5428f641999-11-25 11:54:57 +1100641 * Set our umask to something reasonable, as some files are created
642 * with the default umask. This will make them world-readable but
643 * writable only by the owner, which is ok for all files for which we
644 * don't set the modes explicitly.
645 */
Damien Miller95def091999-11-25 00:26:21 +1100646 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000647
Damien Millerdda78a02016-12-12 13:57:10 +1100648 msetlocale();
djm@openbsd.org65c6c6b2016-07-17 04:20:16 +0000649
Darren Tuckerd6173c02008-06-13 04:52:53 +1000650 /*
651 * Initialize option structure to indicate that no values have been
652 * set.
653 */
Damien Miller95def091999-11-25 00:26:21 +1100654 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000655
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000656 /*
657 * Prepare main ssh transport/connection structures
658 */
659 if ((ssh = ssh_alloc_session_state()) == NULL)
660 fatal("Couldn't allocate session state");
661 channel_init_channels(ssh);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000662
Damien Miller95def091999-11-25 00:26:21 +1100663 /* Parse command-line arguments. */
664 host = NULL;
Damien Millere272a5b2008-11-03 19:22:37 +1100665 use_syslog = 0;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000666 logfile = NULL;
Darren Tucker72efd742009-06-21 17:48:00 +1000667 argv0 = av[0];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000668
Damien Miller2ecb6bd2006-03-15 12:03:53 +1100669 again:
Darren Tuckerd6173c02008-06-13 04:52:53 +1000670 while ((opt = getopt(ac, av, "1246ab:c:e:fgi:kl:m:no:p:qstvx"
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000671 "AB:CD:E:F:GI:J:KL:MNO:PQ:R:S:TVw:W:XYy")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100672 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000673 case '1':
djm@openbsd.org99f95ba2017-04-30 23:11:45 +0000674 fatal("SSH protocol v.1 is no longer supported");
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000675 break;
Damien Miller4af51302000-04-16 11:18:38 +1000676 case '2':
djm@openbsd.org99f95ba2017-04-30 23:11:45 +0000677 /* Ignored */
Damien Miller4af51302000-04-16 11:18:38 +1000678 break;
Damien Miller34132e52000-01-14 15:45:46 +1100679 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000680 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100681 break;
Damien Miller34132e52000-01-14 15:45:46 +1100682 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000683 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100684 break;
Damien Miller95def091999-11-25 00:26:21 +1100685 case 'n':
686 stdin_null_flag = 1;
687 break;
Damien Miller95def091999-11-25 00:26:21 +1100688 case 'f':
689 fork_after_authentication_flag = 1;
690 stdin_null_flag = 1;
691 break;
Damien Miller95def091999-11-25 00:26:21 +1100692 case 'x':
693 options.forward_x11 = 0;
694 break;
Damien Miller95def091999-11-25 00:26:21 +1100695 case 'X':
696 options.forward_x11 = 1;
697 break;
Damien Millere272a5b2008-11-03 19:22:37 +1100698 case 'y':
699 use_syslog = 1;
700 break;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000701 case 'E':
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000702 logfile = optarg;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000703 break;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000704 case 'G':
705 config_test = 1;
706 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000707 case 'Y':
708 options.forward_x11 = 1;
709 options.forward_x11_trusted = 1;
710 break;
Damien Miller95def091999-11-25 00:26:21 +1100711 case 'g':
Damien Miller7acefbb2014-07-18 14:11:24 +1000712 options.fwd_opts.gateway_ports = 1;
Damien Miller95def091999-11-25 00:26:21 +1100713 break;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100714 case 'O':
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +0000715 if (options.stdio_forward_host != NULL)
Damien Millere1537f92010-01-26 13:26:22 +1100716 fatal("Cannot specify multiplexing "
717 "command with -W");
718 else if (muxclient_command != 0)
719 fatal("Multiplexing command already specified");
Darren Tucker7ebfc102004-11-07 20:06:19 +1100720 if (strcmp(optarg, "check") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000721 muxclient_command = SSHMUX_COMMAND_ALIVE_CHECK;
Damien Miller388f6fc2010-05-21 14:57:35 +1000722 else if (strcmp(optarg, "forward") == 0)
723 muxclient_command = SSHMUX_COMMAND_FORWARD;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100724 else if (strcmp(optarg, "exit") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000725 muxclient_command = SSHMUX_COMMAND_TERMINATE;
Damien Miller6c3eec72011-05-05 14:16:22 +1000726 else if (strcmp(optarg, "stop") == 0)
727 muxclient_command = SSHMUX_COMMAND_STOP;
Damien Millerf6dff7c2011-09-22 21:38:52 +1000728 else if (strcmp(optarg, "cancel") == 0)
729 muxclient_command = SSHMUX_COMMAND_CANCEL_FWD;
markus@openbsd.org8d057842016-09-30 09:19:13 +0000730 else if (strcmp(optarg, "proxy") == 0)
731 muxclient_command = SSHMUX_COMMAND_PROXY;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100732 else
733 fatal("Invalid multiplex command.");
734 break;
Damien Miller147bba32002-09-04 16:46:06 +1000735 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100736 break;
Damien Millerd937dc02013-12-05 10:19:54 +1100737 case 'Q':
Damien Millerea111192013-04-23 19:24:32 +1000738 cp = NULL;
dtucker@openbsd.orgd4d9e1d2020-02-07 03:54:44 +0000739 if (strcmp(optarg, "cipher") == 0 ||
740 strcasecmp(optarg, "Ciphers") == 0)
Damien Miller0fde8ac2013-11-21 14:12:23 +1100741 cp = cipher_alg_list('\n', 0);
Damien Millerd937dc02013-12-05 10:19:54 +1100742 else if (strcmp(optarg, "cipher-auth") == 0)
Damien Miller0fde8ac2013-11-21 14:12:23 +1100743 cp = cipher_alg_list('\n', 1);
dtucker@openbsd.orgd4d9e1d2020-02-07 03:54:44 +0000744 else if (strcmp(optarg, "mac") == 0 ||
745 strcasecmp(optarg, "MACs") == 0)
Damien Miller690d9892013-11-08 12:16:49 +1100746 cp = mac_alg_list('\n');
dtucker@openbsd.orgd4d9e1d2020-02-07 03:54:44 +0000747 else if (strcmp(optarg, "kex") == 0 ||
748 strcasecmp(optarg, "KexAlgorithms") == 0)
Damien Miller690d9892013-11-08 12:16:49 +1100749 cp = kex_alg_list('\n');
Damien Millerd937dc02013-12-05 10:19:54 +1100750 else if (strcmp(optarg, "key") == 0)
djm@openbsd.org183ba552017-03-10 04:07:20 +0000751 cp = sshkey_alg_list(0, 0, 0, '\n');
Damien Miller5be9d9e2013-12-07 11:24:01 +1100752 else if (strcmp(optarg, "key-cert") == 0)
djm@openbsd.org183ba552017-03-10 04:07:20 +0000753 cp = sshkey_alg_list(1, 0, 0, '\n');
Damien Miller5be9d9e2013-12-07 11:24:01 +1100754 else if (strcmp(optarg, "key-plain") == 0)
djm@openbsd.org183ba552017-03-10 04:07:20 +0000755 cp = sshkey_alg_list(0, 1, 0, '\n');
dtucker@openbsd.orgd4d9e1d2020-02-07 03:54:44 +0000756 else if (strcmp(optarg, "key-sig") == 0 ||
757 strcasecmp(optarg, "PubkeyAcceptedKeyTypes") == 0 ||
758 strcasecmp(optarg, "HostKeyAlgorithms") == 0 ||
759 strcasecmp(optarg, "HostbasedKeyTypes") == 0 ||
760 strcasecmp(optarg, "HostbasedAcceptedKeyTypes") == 0)
761 cp = sshkey_alg_list(0, 0, 1, '\n');
djm@openbsd.org357128a2018-09-12 01:30:10 +0000762 else if (strcmp(optarg, "sig") == 0)
djm@openbsd.orgaa083aa2018-09-20 03:31:49 +0000763 cp = sshkey_alg_list(0, 1, 1, '\n');
djm@openbsd.org357128a2018-09-12 01:30:10 +0000764 else if (strcmp(optarg, "protocol-version") == 0)
djm@openbsd.org68d2dfc2015-03-03 06:48:58 +0000765 cp = xstrdup("2");
dtucker@openbsd.org7f8e66f2020-01-23 10:24:29 +0000766 else if (strcmp(optarg, "compression") == 0) {
767 cp = xstrdup(compression_alg_list(0));
768 len = strlen(cp);
769 for (n = 0; n < len; n++)
770 if (cp[n] == ',')
771 cp[n] = '\n';
772 } else if (strcmp(optarg, "help") == 0) {
djm@openbsd.org357128a2018-09-12 01:30:10 +0000773 cp = xstrdup(
dtucker@openbsd.org7f8e66f2020-01-23 10:24:29 +0000774 "cipher\ncipher-auth\ncompression\nkex\n"
dtucker@openbsd.orgd4d9e1d2020-02-07 03:54:44 +0000775 "key\nkey-cert\nkey-plain\nkey-sig\nmac\n"
djm@openbsd.org357128a2018-09-12 01:30:10 +0000776 "protocol-version\nsig");
djm@openbsd.org68d2dfc2015-03-03 06:48:58 +0000777 }
Damien Millerea111192013-04-23 19:24:32 +1000778 if (cp == NULL)
779 fatal("Unsupported query \"%s\"", optarg);
780 printf("%s\n", cp);
781 free(cp);
782 exit(0);
783 break;
Damien Miller95def091999-11-25 00:26:21 +1100784 case 'a':
785 options.forward_agent = 0;
786 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000787 case 'A':
788 options.forward_agent = 1;
789 break;
Damien Miller95def091999-11-25 00:26:21 +1100790 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100791 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100792 break;
Darren Tucker415bddc2007-06-12 23:43:16 +1000793 case 'K':
794 options.gss_authentication = 1;
795 options.gss_deleg_creds = 1;
796 break;
Damien Miller95def091999-11-25 00:26:21 +1100797 case 'i':
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +0000798 p = tilde_expand_filename(optarg, getuid());
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000799 if (stat(p, &st) == -1)
Damien Millerf4614452001-07-14 12:18:10 +1000800 fprintf(stderr, "Warning: Identity file %s "
dtucker@openbsd.org03239c12015-10-25 23:42:00 +0000801 "not accessible: %s.\n", p,
Damien Miller3eb48b62005-03-01 21:15:46 +1100802 strerror(errno));
dtucker@openbsd.org03239c12015-10-25 23:42:00 +0000803 else
804 add_identity_file(&options, NULL, p, 1);
805 free(p);
Damien Miller95def091999-11-25 00:26:21 +1100806 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000807 case 'I':
Damien Miller7ea845e2010-02-12 09:21:02 +1100808#ifdef ENABLE_PKCS11
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000809 free(options.pkcs11_provider);
Damien Miller7ea845e2010-02-12 09:21:02 +1100810 options.pkcs11_provider = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000811#else
Damien Miller7ea845e2010-02-12 09:21:02 +1100812 fprintf(stderr, "no support for PKCS#11.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000813#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000814 break;
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000815 case 'J':
djm@openbsd.orgcb8f5652019-06-14 04:13:58 +0000816 if (options.jump_host != NULL) {
817 fatal("Only a single -J option is permitted "
818 "(use commas to separate multiple "
819 "jump hops)");
820 }
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000821 if (options.proxy_command != NULL)
822 fatal("Cannot specify -J with ProxyCommand");
823 if (parse_jump(optarg, &options, 1) == -1)
824 fatal("Invalid -J argument");
825 options.proxy_command = xstrdup("none");
826 break;
Damien Miller95def091999-11-25 00:26:21 +1100827 case 't':
Damien Miller21771e22011-05-15 08:45:50 +1000828 if (options.request_tty == REQUEST_TTY_YES)
829 options.request_tty = REQUEST_TTY_FORCE;
830 else
831 options.request_tty = REQUEST_TTY_YES;
Damien Miller95def091999-11-25 00:26:21 +1100832 break;
Damien Miller95def091999-11-25 00:26:21 +1100833 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000834 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100835 debug_flag = 1;
836 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000837 } else {
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000838 if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
839 debug_flag++;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000840 options.log_level++;
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000841 }
Darren Tuckere98dfa32003-07-19 19:54:31 +1000842 }
Damien Miller03d4d7e2013-04-23 15:21:06 +1000843 break;
Damien Miller95def091999-11-25 00:26:21 +1100844 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100845 fprintf(stderr, "%s, %s\n",
Damien Miller1f0311c2014-05-15 14:24:09 +1000846 SSH_RELEASE,
847#ifdef WITH_OPENSSL
djm@openbsd.orga65784c2018-10-23 05:56:35 +0000848 OpenSSL_version(OPENSSL_VERSION)
Damien Miller1f0311c2014-05-15 14:24:09 +1000849#else
850 "without OpenSSL"
851#endif
852 );
Damien Miller95def091999-11-25 00:26:21 +1100853 if (opt == 'V')
854 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100855 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100856 case 'w':
Damien Miller7b58e802005-12-13 19:33:19 +1100857 if (options.tun_open == -1)
858 options.tun_open = SSH_TUNMODE_DEFAULT;
Damien Millerd27b9472005-12-13 19:29:02 +1100859 options.tun_local = a2tun(optarg, &options.tun_remote);
Damien Miller7b58e802005-12-13 19:33:19 +1100860 if (options.tun_local == SSH_TUNID_ERR) {
Darren Tuckerd6173c02008-06-13 04:52:53 +1000861 fprintf(stderr,
862 "Bad tun device '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100863 exit(255);
Damien Millerd27b9472005-12-13 19:29:02 +1100864 }
865 break;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100866 case 'W':
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +0000867 if (options.stdio_forward_host != NULL)
Damien Millere1537f92010-01-26 13:26:22 +1100868 fatal("stdio forward already specified");
869 if (muxclient_command != 0)
870 fatal("Cannot specify stdio forward with -O");
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100871 if (parse_forward(&fwd, optarg, 1, 0)) {
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +0000872 options.stdio_forward_host = fwd.listen_host;
873 options.stdio_forward_port = fwd.listen_port;
Darren Tuckera627d422013-06-02 07:31:17 +1000874 free(fwd.connect_host);
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100875 } else {
876 fprintf(stderr,
877 "Bad stdio forwarding specification '%s'\n",
878 optarg);
879 exit(255);
880 }
Damien Miller21771e22011-05-15 08:45:50 +1000881 options.request_tty = REQUEST_TTY_NO;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100882 no_shell_flag = 1;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100883 break;
Damien Miller95def091999-11-25 00:26:21 +1100884 case 'q':
885 options.log_level = SYSLOG_LEVEL_QUIET;
886 break;
Damien Miller95def091999-11-25 00:26:21 +1100887 case 'e':
888 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000889 (u_char) optarg[1] >= 64 &&
890 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000891 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100892 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000893 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100894 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000895 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100896 else {
Damien Millerf4614452001-07-14 12:18:10 +1000897 fprintf(stderr, "Bad escape character '%s'.\n",
898 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100899 exit(255);
Damien Miller95def091999-11-25 00:26:21 +1100900 }
901 break;
Damien Miller95def091999-11-25 00:26:21 +1100902 case 'c':
naddy@openbsd.org91a21352019-09-06 14:45:34 +0000903 if (!ciphers_valid(*optarg == '+' || *optarg == '^' ?
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000904 optarg + 1 : optarg)) {
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000905 fprintf(stderr, "Unknown cipher type '%s'\n",
906 optarg);
907 exit(255);
908 }
djm@openbsd.orgcdccebd2017-04-30 23:15:04 +0000909 free(options.ciphers);
910 options.ciphers = xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100911 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000912 case 'm':
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000913 if (mac_valid(optarg)) {
914 free(options.macs);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000915 options.macs = xstrdup(optarg);
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000916 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000917 fprintf(stderr, "Unknown mac type '%s'\n",
918 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100919 exit(255);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000920 }
921 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000922 case 'M':
Damien Millerd14b1e72005-06-16 13:19:41 +1000923 if (options.control_master == SSHCTL_MASTER_YES)
924 options.control_master = SSHCTL_MASTER_ASK;
925 else
926 options.control_master = SSHCTL_MASTER_YES;
Damien Miller0e220db2004-06-15 10:34:08 +1000927 break;
Damien Miller95def091999-11-25 00:26:21 +1100928 case 'p':
millert@openbsd.org887669e2017-10-21 23:06:24 +0000929 if (options.port == -1) {
930 options.port = a2port(optarg);
931 if (options.port <= 0) {
932 fprintf(stderr, "Bad port '%s'\n",
933 optarg);
934 exit(255);
935 }
Ben Lindstrom146edb92001-04-11 23:06:28 +0000936 }
Damien Miller95def091999-11-25 00:26:21 +1100937 break;
Damien Miller95def091999-11-25 00:26:21 +1100938 case 'l':
millert@openbsd.org887669e2017-10-21 23:06:24 +0000939 if (options.user == NULL)
940 options.user = optarg;
Damien Miller95def091999-11-25 00:26:21 +1100941 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000942
Damien Miller95def091999-11-25 00:26:21 +1100943 case 'L':
Damien Miller4bf648f2009-02-14 16:28:21 +1100944 if (parse_forward(&fwd, optarg, 0, 0))
Damien Millerf91ee4c2005-03-01 21:24:33 +1100945 add_local_forward(&options, &fwd);
946 else {
Damien Millerf4614452001-07-14 12:18:10 +1000947 fprintf(stderr,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100948 "Bad local forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000949 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100950 exit(255);
Ben Lindstrom1a174712001-09-12 17:56:15 +0000951 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100952 break;
953
954 case 'R':
markus@openbsd.org609d7a62017-09-21 19:16:53 +0000955 if (parse_forward(&fwd, optarg, 0, 1) ||
956 parse_forward(&fwd, optarg, 1, 1)) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100957 add_remote_forward(&options, &fwd);
958 } else {
959 fprintf(stderr,
960 "Bad remote forwarding specification "
961 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100962 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100963 }
Damien Miller95def091999-11-25 00:26:21 +1100964 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000965
966 case 'D':
Damien Miller4bf648f2009-02-14 16:28:21 +1100967 if (parse_forward(&fwd, optarg, 1, 0)) {
Damien Millera699d952008-11-03 19:27:34 +1100968 add_local_forward(&options, &fwd);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100969 } else {
Damien Millera699d952008-11-03 19:27:34 +1100970 fprintf(stderr,
971 "Bad dynamic forwarding specification "
972 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100973 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000974 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000975 break;
976
Damien Miller95def091999-11-25 00:26:21 +1100977 case 'C':
dtucker@openbsd.org7f8e66f2020-01-23 10:24:29 +0000978#ifdef WITH_ZLIB
Damien Miller95def091999-11-25 00:26:21 +1100979 options.compression = 1;
dtucker@openbsd.org7f8e66f2020-01-23 10:24:29 +0000980#else
981 error("Compression not supported, disabling.");
982#endif
Damien Miller95def091999-11-25 00:26:21 +1100983 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000984 case 'N':
985 no_shell_flag = 1;
Damien Miller21771e22011-05-15 08:45:50 +1000986 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000987 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000988 case 'T':
Damien Miller21771e22011-05-15 08:45:50 +1000989 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000990 break;
Damien Miller95def091999-11-25 00:26:21 +1100991 case 'o':
Damien Miller9836cf82003-12-17 16:30:06 +1100992 line = xstrdup(optarg);
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000993 if (process_config_line(&options, pw,
994 host ? host : "", host ? host : "", line,
995 "command-line", 0, NULL, SSHCONF_USERCONF) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100996 exit(255);
Darren Tuckera627d422013-06-02 07:31:17 +1000997 free(line);
Damien Miller95def091999-11-25 00:26:21 +1100998 break;
Damien Miller832562e2001-01-30 09:30:01 +1100999 case 's':
1000 subsystem_flag = 1;
1001 break;
Damien Miller0e220db2004-06-15 10:34:08 +10001002 case 'S':
mmcc@openbsd.orgd59ce082015-12-10 17:08:40 +00001003 free(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +10001004 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +10001005 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +00001006 case 'b':
1007 options.bind_address = optarg;
1008 break;
djm@openbsd.orgac2e3022018-02-23 02:34:33 +00001009 case 'B':
1010 options.bind_interface = optarg;
1011 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +00001012 case 'F':
1013 config = optarg;
1014 break;
Damien Miller95def091999-11-25 00:26:21 +11001015 default:
1016 usage();
1017 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001018 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001019
djm@openbsd.org643c2ad2017-08-12 06:46:01 +00001020 if (optind > 1 && strcmp(av[optind - 1], "--") == 0)
1021 opt_terminated = 1;
1022
Damien Millerf4614452001-07-14 12:18:10 +10001023 ac -= optind;
1024 av += optind;
1025
Darren Tuckerb8c884a2010-01-08 18:53:43 +11001026 if (ac > 0 && !host) {
millert@openbsd.org887669e2017-10-21 23:06:24 +00001027 int tport;
1028 char *tuser;
1029 switch (parse_ssh_uri(*av, &tuser, &host, &tport)) {
1030 case -1:
1031 usage();
1032 break;
1033 case 0:
1034 if (options.user == NULL) {
1035 options.user = tuser;
1036 tuser = NULL;
1037 }
1038 free(tuser);
1039 if (options.port == -1 && tport != -1)
1040 options.port = tport;
1041 break;
1042 default:
Damien Millerf4614452001-07-14 12:18:10 +10001043 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +00001044 cp = strrchr(p, '@');
millert@openbsd.org887669e2017-10-21 23:06:24 +00001045 if (cp != NULL) {
1046 if (cp == p)
1047 usage();
1048 if (options.user == NULL) {
1049 options.user = p;
1050 p = NULL;
1051 }
1052 *cp++ = '\0';
1053 host = xstrdup(cp);
1054 free(p);
1055 } else
1056 host = p;
1057 break;
1058 }
djm@openbsd.org643c2ad2017-08-12 06:46:01 +00001059 if (ac > 1 && !opt_terminated) {
Ben Lindstromb9fa6912002-12-23 02:24:54 +00001060 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +10001061 goto again;
1062 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +00001063 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +10001064 }
1065
Damien Miller95def091999-11-25 00:26:21 +11001066 /* Check that we got a host name. */
1067 if (!host)
1068 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001069
Damien Miller0faf7472013-10-17 11:47:23 +11001070 host_arg = xstrdup(host);
1071
Damien Miller95def091999-11-25 00:26:21 +11001072 /* Initialize the command to execute on remote host. */
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +00001073 if ((command = sshbuf_new()) == NULL)
1074 fatal("sshbuf_new failed");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001075
Damien Miller5428f641999-11-25 11:54:57 +11001076 /*
1077 * Save the command to execute on the remote host in a buffer. There
1078 * is no limit on the length of the command, except by the maximum
1079 * packet size. Also sets the tty flag if there is no command.
1080 */
Damien Millerf4614452001-07-14 12:18:10 +10001081 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +11001082 /* No command specified - execute shell on a tty. */
Damien Miller832562e2001-01-30 09:30:01 +11001083 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +10001084 fprintf(stderr,
1085 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +11001086 usage();
1087 }
Damien Miller95def091999-11-25 00:26:21 +11001088 } else {
Damien Millerf4614452001-07-14 12:18:10 +10001089 /* A command has been specified. Store it into the buffer. */
1090 for (i = 0; i < ac; i++) {
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +00001091 if ((r = sshbuf_putf(command, "%s%s",
1092 i ? " " : "", av[i])) != 0)
1093 fatal("%s: buffer error: %s",
1094 __func__, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11001095 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001096 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001097
Ben Lindstrom8a432f52001-03-05 07:24:46 +00001098 /*
1099 * Initialize "log" output. Since we are the client all output
Damien Miller03d4d7e2013-04-23 15:21:06 +10001100 * goes to stderr unless otherwise specified by -y or -E.
Ben Lindstrom8a432f52001-03-05 07:24:46 +00001101 */
Damien Miller03d4d7e2013-04-23 15:21:06 +10001102 if (use_syslog && logfile != NULL)
1103 fatal("Can't specify both -y and -E");
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +00001104 if (logfile != NULL)
Damien Miller03d4d7e2013-04-23 15:21:06 +10001105 log_redirect_stderr_to(logfile);
Darren Tucker72efd742009-06-21 17:48:00 +10001106 log_init(argv0,
djm@openbsd.org@openbsd.orgdbe06622017-10-27 01:57:06 +00001107 options.log_level == SYSLOG_LEVEL_NOT_SET ?
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +00001108 SYSLOG_LEVEL_INFO : options.log_level,
djm@openbsd.org@openbsd.orgdbe06622017-10-27 01:57:06 +00001109 options.log_facility == SYSLOG_FACILITY_NOT_SET ?
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +00001110 SYSLOG_FACILITY_USER : options.log_facility,
1111 !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001112
Damien Miller03d4d7e2013-04-23 15:21:06 +10001113 if (debug_flag)
Damien Miller1f0311c2014-05-15 14:24:09 +10001114 logit("%s, %s", SSH_RELEASE,
1115#ifdef WITH_OPENSSL
djm@openbsd.orga65784c2018-10-23 05:56:35 +00001116 OpenSSL_version(OPENSSL_VERSION)
Damien Miller1f0311c2014-05-15 14:24:09 +10001117#else
1118 "without OpenSSL"
1119#endif
1120 );
Damien Miller03d4d7e2013-04-23 15:21:06 +10001121
Damien Miller13f97b22014-02-24 15:57:55 +11001122 /* Parse the configuration files */
djm@openbsd.org9e34e0c2018-11-23 05:08:07 +00001123 process_config_files(host_arg, pw, 0, &want_final_pass);
1124 if (want_final_pass)
1125 debug("configuration requests final Match pass");
Ben Lindstrom83f07d12001-10-03 17:22:29 +00001126
Damien Miller13f97b22014-02-24 15:57:55 +11001127 /* Hostname canonicalisation needs a few options filled. */
1128 fill_default_options_for_canonicalization(&options);
1129
1130 /* If the user has replaced the hostname then take it into use now */
1131 if (options.hostname != NULL) {
1132 /* NB. Please keep in sync with readconf.c:match_cfg_line() */
1133 cp = percent_expand(options.hostname,
1134 "h", host, (char *)NULL);
1135 free(host);
1136 host = cp;
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001137 free(options.hostname);
1138 options.hostname = xstrdup(host);
Damien Miller13f97b22014-02-24 15:57:55 +11001139 }
1140
djm@openbsd.orgfc21ea92018-01-23 05:06:25 +00001141 /* Don't lowercase addresses, they will be explicitly canonicalised */
1142 if ((was_addr = is_addr(host)) == 0)
1143 lowercase(host);
1144
1145 /*
1146 * Try to canonicalize if requested by configuration or the
1147 * hostname is an address.
1148 */
1149 if (options.canonicalize_hostname != SSH_CANONICALISE_NO || was_addr)
Damien Miller13f97b22014-02-24 15:57:55 +11001150 addrs = resolve_canonicalize(&host, options.port);
1151
1152 /*
Damien Miller08b57c62014-02-27 10:17:13 +11001153 * If CanonicalizePermittedCNAMEs have been specified but
1154 * other canonicalization did not happen (by not being requested
1155 * or by failing with fallback) then the hostname may still be changed
djm@openbsd.org@openbsd.orgdbe06622017-10-27 01:57:06 +00001156 * as a result of CNAME following.
Damien Miller08b57c62014-02-27 10:17:13 +11001157 *
1158 * Try to resolve the bare hostname name using the system resolver's
1159 * usual search rules and then apply the CNAME follow rules.
1160 *
1161 * Skip the lookup if a ProxyCommand is being used unless the user
1162 * has specifically requested canonicalisation for this case via
1163 * CanonicalizeHostname=always
Damien Miller13f97b22014-02-24 15:57:55 +11001164 */
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001165 direct = option_clear_or_none(options.proxy_command) &&
1166 options.jump_host == NULL;
1167 if (addrs == NULL && options.num_permitted_cnames != 0 && (direct ||
1168 options.canonicalize_hostname == SSH_CANONICALISE_ALWAYS)) {
Damien Miller19439e92014-07-02 15:28:40 +10001169 if ((addrs = resolve_host(host, options.port,
djm@openbsd.org383a33d2018-09-21 03:11:36 +00001170 direct, cname, sizeof(cname))) == NULL) {
Damien Miller19439e92014-07-02 15:28:40 +10001171 /* Don't fatal proxied host names not in the DNS */
djm@openbsd.org383a33d2018-09-21 03:11:36 +00001172 if (direct)
Damien Miller19439e92014-07-02 15:28:40 +10001173 cleanup_exit(255); /* logged in resolve_host */
1174 } else
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001175 check_follow_cname(direct, &host, cname);
Damien Miller13f97b22014-02-24 15:57:55 +11001176 }
1177
1178 /*
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001179 * If canonicalisation is enabled then re-parse the configuration
1180 * files as new stanzas may match.
Damien Miller13f97b22014-02-24 15:57:55 +11001181 */
djm@openbsd.org9e34e0c2018-11-23 05:08:07 +00001182 if (options.canonicalize_hostname != 0 && !want_final_pass) {
1183 debug("hostname canonicalisation enabled, "
1184 "will re-parse configuration");
1185 want_final_pass = 1;
1186 }
1187
1188 if (want_final_pass) {
1189 debug("re-parsing configuration");
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001190 free(options.hostname);
1191 options.hostname = xstrdup(host);
djm@openbsd.org9e34e0c2018-11-23 05:08:07 +00001192 process_config_files(host_arg, pw, 1, NULL);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001193 /*
1194 * Address resolution happens early with canonicalisation
1195 * enabled and the port number may have changed since, so
1196 * reset it in address list
1197 */
1198 if (addrs != NULL && options.port > 0)
1199 set_addrinfo_port(addrs, options.port);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +00001200 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001201
Damien Miller95def091999-11-25 00:26:21 +11001202 /* Fill configuration defaults. */
1203 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001204
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001205 /*
1206 * If ProxyJump option specified, then construct a ProxyCommand now.
1207 */
1208 if (options.jump_host != NULL) {
1209 char port_s[8];
djm@openbsd.orgd8748b92018-06-01 03:11:49 +00001210 const char *sshbin = argv0;
dtucker@openbsd.orgde1f3562020-02-18 08:49:49 +00001211 int port = options.port, jumpport = options.jump_port;
1212
1213 if (port <= 0)
1214 port = default_ssh_port();
1215 if (jumpport <= 0)
1216 jumpport = default_ssh_port();
1217 if (strcmp(options.jump_host, host) == 0 && port == jumpport)
1218 fatal("jumphost loop via %s", options.jump_host);
djm@openbsd.orgd8748b92018-06-01 03:11:49 +00001219
1220 /*
1221 * Try to use SSH indicated by argv[0], but fall back to
1222 * "ssh" if it appears unavailable.
1223 */
1224 if (strchr(argv0, '/') != NULL && access(argv0, X_OK) != 0)
1225 sshbin = "ssh";
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001226
1227 /* Consistency check */
1228 if (options.proxy_command != NULL)
1229 fatal("inconsistent options: ProxyCommand+ProxyJump");
1230 /* Never use FD passing for ProxyJump */
1231 options.proxy_use_fdpass = 0;
1232 snprintf(port_s, sizeof(port_s), "%d", options.jump_port);
1233 xasprintf(&options.proxy_command,
djm@openbsd.orgd8748b92018-06-01 03:11:49 +00001234 "%s%s%s%s%s%s%s%s%s%s%.*s -W '[%%h]:%%p' %s",
1235 sshbin,
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001236 /* Optional "-l user" argument if jump_user set */
1237 options.jump_user == NULL ? "" : " -l ",
1238 options.jump_user == NULL ? "" : options.jump_user,
1239 /* Optional "-p port" argument if jump_port set */
1240 options.jump_port <= 0 ? "" : " -p ",
1241 options.jump_port <= 0 ? "" : port_s,
1242 /* Optional additional jump hosts ",..." */
1243 options.jump_extra == NULL ? "" : " -J ",
1244 options.jump_extra == NULL ? "" : options.jump_extra,
1245 /* Optional "-F" argumment if -F specified */
1246 config == NULL ? "" : " -F ",
1247 config == NULL ? "" : config,
1248 /* Optional "-v" arguments if -v set */
1249 debug_flag ? " -" : "",
1250 debug_flag, "vvv",
1251 /* Mandatory hostname */
1252 options.jump_host);
1253 debug("Setting implicit ProxyCommand from ProxyJump: %s",
1254 options.proxy_command);
1255 }
1256
Damien Miller13f97b22014-02-24 15:57:55 +11001257 if (options.port == 0)
1258 options.port = default_ssh_port();
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001259 channel_set_af(ssh, options.address_family);
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001260
Damien Millere9fc72e2013-10-15 12:14:12 +11001261 /* Tidy and check options */
1262 if (options.host_key_alias != NULL)
1263 lowercase(options.host_key_alias);
1264 if (options.proxy_command != NULL &&
1265 strcmp(options.proxy_command, "-") == 0 &&
1266 options.proxy_use_fdpass)
1267 fatal("ProxyCommand=- and ProxyUseFDPass are incompatible");
markus@openbsd.orgda222162020-01-27 20:51:32 +00001268 if (options.update_hostkeys == SSH_UPDATE_HOSTKEYS_ASK) {
1269 if (options.control_persist && options.control_path != NULL) {
1270 debug("UpdateHostKeys=ask is incompatible with "
1271 "ControlPersist; disabling");
1272 options.update_hostkeys = 0;
1273 } else if (sshbuf_len(command) != 0 ||
1274 options.remote_command != NULL ||
1275 options.request_tty == REQUEST_TTY_NO) {
1276 debug("UpdateHostKeys=ask is incompatible with "
1277 "remote command execution; disabling");
1278 options.update_hostkeys = 0;
djm@openbsd.org156bef32020-01-28 07:24:15 +00001279 } else if (options.log_level < SYSLOG_LEVEL_INFO) {
1280 /* no point logging anything; user won't see it */
1281 options.update_hostkeys = 0;
markus@openbsd.orgda222162020-01-27 20:51:32 +00001282 }
djm@openbsd.org44732de2015-02-20 22:17:21 +00001283 }
djm@openbsd.org88b6fcd2015-11-19 08:23:27 +00001284 if (options.connection_attempts <= 0)
1285 fatal("Invalid number of ConnectionAttempts");
Damien Millere9fc72e2013-10-15 12:14:12 +11001286
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +00001287 if (sshbuf_len(command) != 0 && options.remote_command != NULL)
bluhm@openbsd.org1112b532017-05-30 18:58:37 +00001288 fatal("Cannot execute command-line and remote command.");
1289
1290 /* Cannot fork to background if no command. */
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +00001291 if (fork_after_authentication_flag && sshbuf_len(command) == 0 &&
bluhm@openbsd.org1112b532017-05-30 18:58:37 +00001292 options.remote_command == NULL && !no_shell_flag)
1293 fatal("Cannot fork into background without a command "
1294 "to execute.");
1295
Damien Miller95def091999-11-25 00:26:21 +11001296 /* reinit */
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +00001297 log_init(argv0, options.log_level, options.log_facility, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001298
Damien Millerfff9f092012-07-06 13:45:01 +10001299 if (options.request_tty == REQUEST_TTY_YES ||
1300 options.request_tty == REQUEST_TTY_FORCE)
1301 tty_flag = 1;
1302
1303 /* Allocate a tty by default if no command specified. */
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +00001304 if (sshbuf_len(command) == 0 && options.remote_command == NULL)
Damien Millerfff9f092012-07-06 13:45:01 +10001305 tty_flag = options.request_tty != REQUEST_TTY_NO;
1306
1307 /* Force no tty */
markus@openbsd.org8d057842016-09-30 09:19:13 +00001308 if (options.request_tty == REQUEST_TTY_NO ||
1309 (muxclient_command && muxclient_command != SSHMUX_COMMAND_PROXY))
Damien Millerfff9f092012-07-06 13:45:01 +10001310 tty_flag = 0;
1311 /* Do not allocate a tty if stdin is not a tty. */
1312 if ((!isatty(fileno(stdin)) || stdin_null_flag) &&
1313 options.request_tty != REQUEST_TTY_FORCE) {
1314 if (tty_flag)
1315 logit("Pseudo-terminal will not be allocated because "
1316 "stdin is not a terminal.");
1317 tty_flag = 0;
1318 }
1319
Damien Miller95def091999-11-25 00:26:21 +11001320 if (options.user == NULL)
1321 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001322
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001323 /* Set up strings used to percent_expand() arguments */
Damien Millerdfc85fa2011-05-15 08:44:02 +10001324 if (gethostname(thishost, sizeof(thishost)) == -1)
1325 fatal("gethostname: %s", strerror(errno));
1326 strlcpy(shorthost, thishost, sizeof(shorthost));
1327 shorthost[strcspn(thishost, ".")] = '\0';
1328 snprintf(portstr, sizeof(portstr), "%d", options.port);
djm@openbsd.org9c935dd2018-06-01 03:33:53 +00001329 snprintf(uidstr, sizeof(uidstr), "%llu",
1330 (unsigned long long)pw->pw_uid);
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001331
Damien Miller9c386432014-07-03 21:27:46 +10001332 if ((md = ssh_digest_start(SSH_DIGEST_SHA1)) == NULL ||
1333 ssh_digest_update(md, thishost, strlen(thishost)) < 0 ||
1334 ssh_digest_update(md, host, strlen(host)) < 0 ||
1335 ssh_digest_update(md, portstr, strlen(portstr)) < 0 ||
1336 ssh_digest_update(md, options.user, strlen(options.user)) < 0 ||
1337 ssh_digest_final(md, conn_hash, sizeof(conn_hash)) < 0)
1338 fatal("%s: mux digest failed", __func__);
1339 ssh_digest_free(md);
1340 conn_hash_hex = tohex(conn_hash, ssh_digest_bytes(SSH_DIGEST_SHA1));
1341
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001342 /*
1343 * Expand tokens in arguments. NB. LocalCommand is expanded later,
1344 * after port-forwarding is set up, so it may pick up any local
1345 * tunnel interface name allocated.
1346 */
bluhm@openbsd.org1112b532017-05-30 18:58:37 +00001347 if (options.remote_command != NULL) {
1348 debug3("expanding RemoteCommand: %s", options.remote_command);
1349 cp = options.remote_command;
1350 options.remote_command = percent_expand(cp,
1351 "C", conn_hash_hex,
1352 "L", shorthost,
1353 "d", pw->pw_dir,
1354 "h", host,
djm@openbsd.org9c935dd2018-06-01 03:33:53 +00001355 "i", uidstr,
bluhm@openbsd.org1112b532017-05-30 18:58:37 +00001356 "l", thishost,
1357 "n", host_arg,
1358 "p", portstr,
1359 "r", options.user,
1360 "u", pw->pw_name,
1361 (char *)NULL);
1362 debug3("expanded RemoteCommand: %s", options.remote_command);
1363 free(cp);
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +00001364 if ((r = sshbuf_put(command, options.remote_command,
1365 strlen(options.remote_command))) != 0)
1366 fatal("%s: buffer error: %s", __func__, ssh_err(r));
bluhm@openbsd.org1112b532017-05-30 18:58:37 +00001367 }
1368
Damien Miller0e220db2004-06-15 10:34:08 +10001369 if (options.control_path != NULL) {
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +00001370 cp = tilde_expand_filename(options.control_path, getuid());
Darren Tuckera627d422013-06-02 07:31:17 +10001371 free(options.control_path);
Damien Miller9c386432014-07-03 21:27:46 +10001372 options.control_path = percent_expand(cp,
1373 "C", conn_hash_hex,
1374 "L", shorthost,
1375 "h", host,
djm@openbsd.org9c935dd2018-06-01 03:33:53 +00001376 "i", uidstr,
Damien Miller9c386432014-07-03 21:27:46 +10001377 "l", thishost,
1378 "n", host_arg,
1379 "p", portstr,
1380 "r", options.user,
1381 "u", pw->pw_name,
djm@openbsd.org674b3b62015-09-11 03:47:28 +00001382 "i", uidstr,
Damien Millerdfc85fa2011-05-15 08:44:02 +10001383 (char *)NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10001384 free(cp);
Damien Miller0e220db2004-06-15 10:34:08 +10001385 }
Damien Miller9c386432014-07-03 21:27:46 +10001386
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001387 if (config_test) {
1388 dump_client_config(&options, host);
1389 exit(0);
1390 }
1391
djm@openbsd.org884416b2019-10-31 21:18:28 +00001392 /* Expand SecurityKeyProvider if it refers to an environment variable */
1393 if (options.sk_provider != NULL && *options.sk_provider == '$' &&
1394 strlen(options.sk_provider) > 1) {
1395 if ((cp = getenv(options.sk_provider + 1)) == NULL) {
naddy@openbsd.orga47f6a62020-02-06 22:30:54 +00001396 debug("Authenticator provider %s did not resolve; "
djm@openbsd.org884416b2019-10-31 21:18:28 +00001397 "disabling", options.sk_provider);
1398 free(options.sk_provider);
1399 options.sk_provider = NULL;
1400 } else {
1401 debug2("resolved SecurityKeyProvider %s => %s",
1402 options.sk_provider, cp);
1403 free(options.sk_provider);
1404 options.sk_provider = xstrdup(cp);
1405 }
1406 }
1407
Damien Millerb1cbfa22008-05-19 16:00:08 +10001408 if (muxclient_command != 0 && options.control_path == NULL)
Darren Tucker0814d312005-06-01 23:08:51 +10001409 fatal("No ControlPath specified for \"-O\" command");
markus@openbsd.org8d057842016-09-30 09:19:13 +00001410 if (options.control_path != NULL) {
1411 int sock;
1412 if ((sock = muxclient(options.control_path)) >= 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001413 ssh_packet_set_connection(ssh, sock, sock);
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001414 ssh_packet_set_mux(ssh);
markus@openbsd.org8d057842016-09-30 09:19:13 +00001415 goto skip_connect;
1416 }
1417 }
Damien Miller0e220db2004-06-15 10:34:08 +10001418
Damien Miller08b57c62014-02-27 10:17:13 +11001419 /*
1420 * If hostname canonicalisation was not enabled, then we may not
1421 * have yet resolved the hostname. Do so now.
1422 */
1423 if (addrs == NULL && options.proxy_command == NULL) {
djm@openbsd.orga85768a2015-09-04 04:56:09 +00001424 debug2("resolving \"%s\" port %d", host, options.port);
Damien Miller08b57c62014-02-27 10:17:13 +11001425 if ((addrs = resolve_host(host, options.port, 1,
1426 cname, sizeof(cname))) == NULL)
1427 cleanup_exit(255); /* resolve_host logs the error */
1428 }
1429
Damien Miller67bd0622007-09-17 12:06:57 +10001430 timeout_ms = options.connection_timeout * 1000;
1431
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001432 /* Open a connection to the remote host. */
beck@openbsd.org2ab33572020-01-05 16:28:22 +00001433 if (ssh_connect(ssh, host, host_arg, addrs, &hostaddr, options.port,
Damien Miller0faf7472013-10-17 11:47:23 +11001434 options.address_family, options.connection_attempts,
dtucker@openbsd.org95d41e92018-07-19 10:28:47 +00001435 &timeout_ms, options.tcp_keep_alive) != 0)
Damien Miller0faf7472013-10-17 11:47:23 +11001436 exit(255);
1437
Damien Miller28631ce2013-10-26 10:07:56 +11001438 if (addrs != NULL)
1439 freeaddrinfo(addrs);
1440
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001441 ssh_packet_set_timeout(ssh, options.server_alive_interval,
Damien Miller0faf7472013-10-17 11:47:23 +11001442 options.server_alive_count_max);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001443
Damien Miller67bd0622007-09-17 12:06:57 +10001444 if (timeout_ms > 0)
1445 debug3("timeout: %d ms remain after connect", timeout_ms);
1446
Damien Miller5428f641999-11-25 11:54:57 +11001447 /*
dtucker@openbsd.org26efc2f2018-07-16 11:05:41 +00001448 * If we successfully made the connection and we have hostbased auth
1449 * enabled, load the public keys so we can later use the ssh-keysign
1450 * helper to sign challenges.
Damien Miller5428f641999-11-25 11:54:57 +11001451 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001452 sensitive_data.nkeys = 0;
1453 sensitive_data.keys = NULL;
djm@openbsd.org873d3e72017-04-30 23:18:44 +00001454 if (options.hostbased_authentication) {
dtucker@openbsd.orgac590762018-07-16 22:25:01 +00001455 sensitive_data.nkeys = 10;
Damien Millerddd63ab2006-03-31 23:10:51 +11001456 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001457 sizeof(struct sshkey));
1458
1459 /* XXX check errors? */
dtucker@openbsd.orgac590762018-07-16 22:25:01 +00001460#define L_PUBKEY(p,o) do { \
1461 if ((o) >= sensitive_data.nkeys) \
1462 fatal("%s pubkey out of array bounds", __func__); \
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001463 check_load(sshkey_load_public(p, &(sensitive_data.keys[o]), NULL), \
dtucker@openbsd.orgac590762018-07-16 22:25:01 +00001464 p, "pubkey"); \
1465} while (0)
1466#define L_CERT(p,o) do { \
1467 if ((o) >= sensitive_data.nkeys) \
1468 fatal("%s cert out of array bounds", __func__); \
1469 check_load(sshkey_load_cert(p, &(sensitive_data.keys[o])), p, "cert"); \
1470} while (0)
Ben Lindstromf9c48842002-06-11 16:37:51 +00001471
dtucker@openbsd.org26efc2f2018-07-16 11:05:41 +00001472 if (options.hostbased_authentication == 1) {
dtucker@openbsd.orgac590762018-07-16 22:25:01 +00001473 L_CERT(_PATH_HOST_ECDSA_KEY_FILE, 0);
1474 L_CERT(_PATH_HOST_ED25519_KEY_FILE, 1);
1475 L_CERT(_PATH_HOST_RSA_KEY_FILE, 2);
1476 L_CERT(_PATH_HOST_DSA_KEY_FILE, 3);
1477 L_PUBKEY(_PATH_HOST_ECDSA_KEY_FILE, 4);
1478 L_PUBKEY(_PATH_HOST_ED25519_KEY_FILE, 5);
1479 L_PUBKEY(_PATH_HOST_RSA_KEY_FILE, 6);
1480 L_PUBKEY(_PATH_HOST_DSA_KEY_FILE, 7);
1481 L_CERT(_PATH_HOST_XMSS_KEY_FILE, 8);
1482 L_PUBKEY(_PATH_HOST_XMSS_KEY_FILE, 9);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001483 }
Damien Miller95def091999-11-25 00:26:21 +11001484 }
Damien Miller95def091999-11-25 00:26:21 +11001485
dtucker@openbsd.org258dc8b2018-07-18 11:34:04 +00001486 /* Create ~/.ssh * directory if it doesn't already exist. */
Darren Tucker45c66d72011-11-04 10:50:40 +11001487 if (config == NULL) {
1488 r = snprintf(buf, sizeof buf, "%s%s%s", pw->pw_dir,
1489 strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001490 if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) == -1) {
Darren Tucker8ccb7392010-09-10 12:28:24 +10001491#ifdef WITH_SELINUX
Darren Tucker45c66d72011-11-04 10:50:40 +11001492 ssh_selinux_setfscreatecon(buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001493#endif
Darren Tucker45c66d72011-11-04 10:50:40 +11001494 if (mkdir(buf, 0700) < 0)
1495 error("Could not create directory '%.200s'.",
1496 buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001497#ifdef WITH_SELINUX
Darren Tucker45c66d72011-11-04 10:50:40 +11001498 ssh_selinux_setfscreatecon(NULL);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001499#endif
Darren Tucker45c66d72011-11-04 10:50:40 +11001500 }
Darren Tucker8ccb7392010-09-10 12:28:24 +10001501 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001502 /* load options.identity_files */
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001503 load_public_identity_files(pw);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001504
djm@openbsd.org001aa552018-04-10 00:10:49 +00001505 /* optionally set the SSH_AUTHSOCKET_ENV_NAME variable */
markus@openbsd.org1a75d142016-05-04 14:29:58 +00001506 if (options.identity_agent &&
1507 strcmp(options.identity_agent, SSH_AUTHSOCKET_ENV_NAME) != 0) {
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00001508 if (strcmp(options.identity_agent, "none") == 0) {
1509 unsetenv(SSH_AUTHSOCKET_ENV_NAME);
1510 } else {
1511 p = tilde_expand_filename(options.identity_agent,
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +00001512 getuid());
djm@openbsd.org9c935dd2018-06-01 03:33:53 +00001513 cp = percent_expand(p,
1514 "d", pw->pw_dir,
1515 "h", host,
1516 "i", uidstr,
1517 "l", thishost,
1518 "r", options.user,
1519 "u", pw->pw_name,
1520 (char *)NULL);
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00001521 free(p);
djm@openbsd.org5eff5b82018-10-03 06:38:35 +00001522 /*
1523 * If identity_agent represents an environment variable
1524 * then recheck that it is valid (since processing with
1525 * percent_expand() may have changed it) and substitute
1526 * its value.
1527 */
1528 if (cp[0] == '$') {
1529 if (!valid_env_name(cp + 1)) {
1530 fatal("Invalid IdentityAgent "
1531 "environment variable name %s", cp);
1532 }
1533 if ((p = getenv(cp + 1)) == NULL)
1534 unsetenv(SSH_AUTHSOCKET_ENV_NAME);
1535 else
1536 setenv(SSH_AUTHSOCKET_ENV_NAME, p, 1);
1537 } else {
1538 /* identity_agent specifies a path directly */
1539 setenv(SSH_AUTHSOCKET_ENV_NAME, cp, 1);
1540 }
1541 free(cp);
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00001542 }
1543 }
1544
djm@openbsd.org40be78f2019-12-21 02:19:13 +00001545 if (options.forward_agent && (options.forward_agent_sock_path != NULL)) {
1546 p = tilde_expand_filename(options.forward_agent_sock_path, getuid());
1547 cp = percent_expand(p,
1548 "d", pw->pw_dir,
1549 "h", host,
1550 "i", uidstr,
1551 "l", thishost,
1552 "r", options.user,
1553 "u", pw->pw_name,
1554 (char *)NULL);
1555 free(p);
1556
1557 if (cp[0] == '$') {
1558 if (!valid_env_name(cp + 1)) {
1559 fatal("Invalid ForwardAgent environment variable name %s", cp);
1560 }
1561 if ((p = getenv(cp + 1)) != NULL)
1562 forward_agent_sock_path = p;
1563 else
1564 options.forward_agent = 0;
1565 free(cp);
1566 } else {
1567 forward_agent_sock_path = cp;
1568 }
1569 }
1570
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001571 /* Expand ~ in known host file names. */
Damien Miller295ee632011-05-29 21:42:31 +10001572 tilde_expand_paths(options.system_hostfiles,
1573 options.num_system_hostfiles);
1574 tilde_expand_paths(options.user_hostfiles, options.num_user_hostfiles);
Damien Miller95def091999-11-25 00:26:21 +11001575
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +00001576 ssh_signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
1577 ssh_signal(SIGCHLD, main_sigchld_handler);
Damien Miller07cd5892001-11-12 10:52:03 +11001578
Darren Tuckerd6173c02008-06-13 04:52:53 +10001579 /* Log into the remote system. Never returns if the login fails. */
djm@openbsd.org0a843d92018-12-27 03:25:24 +00001580 ssh_login(ssh, &sensitive_data, host, (struct sockaddr *)&hostaddr,
Damien Millerd925dcd2010-12-01 12:21:51 +11001581 options.port, pw, timeout_ms);
Damien Miller95def091999-11-25 00:26:21 +11001582
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001583 if (ssh_packet_connection_is_on_socket(ssh)) {
Damien Miller383ffe62010-06-26 10:02:03 +10001584 verbose("Authenticated to %s ([%s]:%d).", host,
djm@openbsd.org95767262016-03-07 19:02:43 +00001585 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
Damien Miller383ffe62010-06-26 10:02:03 +10001586 } else {
1587 verbose("Authenticated to %s (via proxy).", host);
1588 }
1589
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001590 /* We no longer need the private host keys. Clear them now. */
1591 if (sensitive_data.nkeys != 0) {
1592 for (i = 0; i < sensitive_data.nkeys; i++) {
1593 if (sensitive_data.keys[i] != NULL) {
1594 /* Destroys contents safely */
1595 debug3("clear hostkey %d", i);
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001596 sshkey_free(sensitive_data.keys[i]);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001597 sensitive_data.keys[i] = NULL;
1598 }
1599 }
Darren Tuckera627d422013-06-02 07:31:17 +10001600 free(sensitive_data.keys);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001601 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +00001602 for (i = 0; i < options.num_identity_files; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +10001603 free(options.identity_files[i]);
1604 options.identity_files[i] = NULL;
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +00001605 if (options.identity_keys[i]) {
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001606 sshkey_free(options.identity_keys[i]);
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +00001607 options.identity_keys[i] = NULL;
1608 }
1609 }
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001610 for (i = 0; i < options.num_certificate_files; i++) {
1611 free(options.certificate_files[i]);
1612 options.certificate_files[i] = NULL;
1613 }
Damien Miller95def091999-11-25 00:26:21 +11001614
markus@openbsd.org8d057842016-09-30 09:19:13 +00001615 skip_connect:
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001616 exit_status = ssh_session2(ssh, pw);
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001617 ssh_packet_close(ssh);
Damien Miller8c4e18a2002-09-19 12:05:02 +10001618
Damien Millerb1cbfa22008-05-19 16:00:08 +10001619 if (options.control_path != NULL && muxserver_sock != -1)
Damien Miller0e220db2004-06-15 10:34:08 +10001620 unlink(options.control_path);
1621
Damien Millera41ccca2010-10-07 22:07:32 +11001622 /* Kill ProxyCommand if it is running. */
1623 ssh_kill_proxy_command();
Damien Miller8c4e18a2002-09-19 12:05:02 +10001624
Damien Miller1383bd82000-04-06 12:32:37 +10001625 return exit_status;
1626}
1627
Damien Millere11e1ea2010-08-03 16:04:46 +10001628static void
1629control_persist_detach(void)
1630{
1631 pid_t pid;
djm@openbsd.orgd2d6bf82016-04-29 08:07:53 +00001632 int devnull, keep_stderr;
Damien Millere11e1ea2010-08-03 16:04:46 +10001633
1634 debug("%s: backgrounding master process", __func__);
1635
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00001636 /*
1637 * master (current process) into the background, and make the
1638 * foreground process a client of the backgrounded master.
1639 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001640 switch ((pid = fork())) {
1641 case -1:
1642 fatal("%s: fork: %s", __func__, strerror(errno));
1643 case 0:
1644 /* Child: master process continues mainloop */
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00001645 break;
1646 default:
Damien Millere11e1ea2010-08-03 16:04:46 +10001647 /* Parent: set up mux slave to connect to backgrounded master */
1648 debug2("%s: background process is %ld", __func__, (long)pid);
1649 stdin_null_flag = ostdin_null_flag;
Damien Miller21771e22011-05-15 08:45:50 +10001650 options.request_tty = orequest_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +10001651 tty_flag = otty_flag;
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00001652 close(muxserver_sock);
1653 muxserver_sock = -1;
Damien Miller5929c522010-09-10 11:17:02 +10001654 options.control_master = SSHCTL_MASTER_NO;
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00001655 muxclient(options.control_path);
Damien Millere11e1ea2010-08-03 16:04:46 +10001656 /* muxclient() doesn't return on success. */
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00001657 fatal("Failed to connect to new control master");
1658 }
Damien Miller00d9ae22010-08-17 01:59:31 +10001659 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
1660 error("%s: open(\"/dev/null\"): %s", __func__,
1661 strerror(errno));
1662 } else {
djm@openbsd.orgd2d6bf82016-04-29 08:07:53 +00001663 keep_stderr = log_is_on_stderr() && debug_flag;
Damien Miller00d9ae22010-08-17 01:59:31 +10001664 if (dup2(devnull, STDIN_FILENO) == -1 ||
djm@openbsd.orgd2d6bf82016-04-29 08:07:53 +00001665 dup2(devnull, STDOUT_FILENO) == -1 ||
1666 (!keep_stderr && dup2(devnull, STDERR_FILENO) == -1))
Damien Miller00d9ae22010-08-17 01:59:31 +10001667 error("%s: dup2: %s", __func__, strerror(errno));
1668 if (devnull > STDERR_FILENO)
1669 close(devnull);
1670 }
Damien Miller98e27dc2013-07-25 11:55:52 +10001671 daemon(1, 1);
Damien Millerea2c1a42011-06-03 12:10:22 +10001672 setproctitle("%s [mux]", options.control_path);
Damien Millere11e1ea2010-08-03 16:04:46 +10001673}
1674
1675/* Do fork() after authentication. Used by "ssh -f" */
1676static void
1677fork_postauth(void)
1678{
1679 if (need_controlpersist_detach)
1680 control_persist_detach();
1681 debug("forking to background");
1682 fork_after_authentication_flag = 0;
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001683 if (daemon(1, 1) == -1)
Damien Millere11e1ea2010-08-03 16:04:46 +10001684 fatal("daemon() failed: %.200s", strerror(errno));
1685}
1686
Darren Tucker9f407c42008-06-13 04:50:27 +10001687/* Callback for remote forward global requests */
1688static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001689ssh_confirm_remote_forward(struct ssh *ssh, int type, u_int32_t seq, void *ctxt)
Darren Tucker9f407c42008-06-13 04:50:27 +10001690{
Damien Miller7acefbb2014-07-18 14:11:24 +10001691 struct Forward *rfwd = (struct Forward *)ctxt;
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001692 u_int port;
1693 int r;
Darren Tucker9f407c42008-06-13 04:50:27 +10001694
Damien Miller4bf648f2009-02-14 16:28:21 +11001695 /* XXX verbose() on failure? */
Damien Miller4b3ed642014-07-02 15:29:40 +10001696 debug("remote forward %s for: listen %s%s%d, connect %s:%d",
Darren Tucker9f407c42008-06-13 04:50:27 +10001697 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
Damien Miller7acefbb2014-07-18 14:11:24 +10001698 rfwd->listen_path ? rfwd->listen_path :
1699 rfwd->listen_host ? rfwd->listen_host : "",
1700 (rfwd->listen_path || rfwd->listen_host) ? ":" : "",
1701 rfwd->listen_port, rfwd->connect_path ? rfwd->connect_path :
1702 rfwd->connect_host, rfwd->connect_port);
1703 if (rfwd->listen_path == NULL && rfwd->listen_port == 0) {
Darren Tucker68afb8c2011-10-02 18:59:03 +11001704 if (type == SSH2_MSG_REQUEST_SUCCESS) {
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001705 if ((r = sshpkt_get_u32(ssh, &port)) != 0)
1706 fatal("%s: %s", __func__, ssh_err(r));
1707 if (port > 65535) {
1708 error("Invalid allocated port %u for remote "
1709 "forward to %s:%d", port,
1710 rfwd->connect_host, rfwd->connect_port);
1711 /* Ensure failure processing runs below */
1712 type = SSH2_MSG_REQUEST_FAILURE;
1713 channel_update_permission(ssh,
1714 rfwd->handle, -1);
1715 } else {
1716 rfwd->allocated_port = (int)port;
1717 logit("Allocated port %u for remote "
1718 "forward to %s:%d",
1719 rfwd->allocated_port, rfwd->connect_host,
1720 rfwd->connect_port);
1721 channel_update_permission(ssh,
1722 rfwd->handle, rfwd->allocated_port);
1723 }
Darren Tucker68afb8c2011-10-02 18:59:03 +11001724 } else {
djm@openbsd.org115063a2018-06-06 18:22:41 +00001725 channel_update_permission(ssh, rfwd->handle, -1);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001726 }
Damien Miller4bf648f2009-02-14 16:28:21 +11001727 }
djm@openbsd.org@openbsd.orgdbe06622017-10-27 01:57:06 +00001728
Darren Tucker9f407c42008-06-13 04:50:27 +10001729 if (type == SSH2_MSG_REQUEST_FAILURE) {
Damien Miller7acefbb2014-07-18 14:11:24 +10001730 if (options.exit_on_forward_failure) {
1731 if (rfwd->listen_path != NULL)
1732 fatal("Error: remote port forwarding failed "
1733 "for listen path %s", rfwd->listen_path);
1734 else
1735 fatal("Error: remote port forwarding failed "
1736 "for listen port %d", rfwd->listen_port);
1737 } else {
1738 if (rfwd->listen_path != NULL)
1739 logit("Warning: remote port forwarding failed "
1740 "for listen path %s", rfwd->listen_path);
1741 else
1742 logit("Warning: remote port forwarding failed "
1743 "for listen port %d", rfwd->listen_port);
1744 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001745 }
Darren Tucker9a2a6092008-07-04 12:53:50 +10001746 if (++remote_forward_confirms_received == options.num_remote_forwards) {
Darren Tucker9f407c42008-06-13 04:50:27 +10001747 debug("All remote forwarding requests processed");
Damien Millere11e1ea2010-08-03 16:04:46 +10001748 if (fork_after_authentication_flag)
1749 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001750 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001751}
1752
Ben Lindstrombba81212001-06-25 05:01:22 +00001753static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001754client_cleanup_stdio_fwd(struct ssh *ssh, int id, void *arg)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001755{
1756 debug("stdio forwarding: done");
1757 cleanup_exit(0);
1758}
1759
Darren Tucker2d6665d2011-11-04 10:54:22 +11001760static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001761ssh_stdio_confirm(struct ssh *ssh, int id, int success, void *arg)
Damien Miller357610d2014-07-18 15:04:10 +10001762{
1763 if (!success)
1764 fatal("stdio forwarding failed");
1765}
1766
1767static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001768ssh_init_stdio_forwarding(struct ssh *ssh)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001769{
1770 Channel *c;
Damien Millere1537f92010-01-26 13:26:22 +11001771 int in, out;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001772
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +00001773 if (options.stdio_forward_host == NULL)
Darren Tucker2d6665d2011-11-04 10:54:22 +11001774 return;
Damien Millere1537f92010-01-26 13:26:22 +11001775
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +00001776 debug3("%s: %s:%d", __func__, options.stdio_forward_host,
1777 options.stdio_forward_port);
Darren Tucker2d6665d2011-11-04 10:54:22 +11001778
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001779 if ((in = dup(STDIN_FILENO)) == -1 ||
1780 (out = dup(STDOUT_FILENO)) == -1)
Damien Millere1537f92010-01-26 13:26:22 +11001781 fatal("channel_connect_stdio_fwd: dup() in/out failed");
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001782 if ((c = channel_connect_stdio_fwd(ssh, options.stdio_forward_host,
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +00001783 options.stdio_forward_port, in, out)) == NULL)
Darren Tucker2d6665d2011-11-04 10:54:22 +11001784 fatal("%s: channel_connect_stdio_fwd failed", __func__);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001785 channel_register_cleanup(ssh, c->self, client_cleanup_stdio_fwd, 0);
1786 channel_register_open_confirm(ssh, c->self, ssh_stdio_confirm, NULL);
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001787}
1788
1789static void
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001790ssh_init_forwarding(struct ssh *ssh, char **ifname)
Damien Miller0bc1bd82000-11-13 22:57:25 +11001791{
Kevin Steves12057502001-02-05 14:54:34 +00001792 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001793 int i;
Kevin Steves12057502001-02-05 14:54:34 +00001794
Damien Miller0bc1bd82000-11-13 22:57:25 +11001795 /* Initiate local TCP/IP port forwardings. */
1796 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001797 debug("Local connections to %.200s:%d forwarded to remote "
1798 "address %.200s:%d",
Damien Miller7acefbb2014-07-18 14:11:24 +10001799 (options.local_forwards[i].listen_path != NULL) ?
1800 options.local_forwards[i].listen_path :
Darren Tucker47eede72005-03-14 23:08:12 +11001801 (options.local_forwards[i].listen_host == NULL) ?
Damien Miller7acefbb2014-07-18 14:11:24 +10001802 (options.fwd_opts.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001803 options.local_forwards[i].listen_host,
1804 options.local_forwards[i].listen_port,
Damien Miller7acefbb2014-07-18 14:11:24 +10001805 (options.local_forwards[i].connect_path != NULL) ?
1806 options.local_forwards[i].connect_path :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001807 options.local_forwards[i].connect_host,
1808 options.local_forwards[i].connect_port);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001809 success += channel_setup_local_fwd_listener(ssh,
Damien Miller7acefbb2014-07-18 14:11:24 +10001810 &options.local_forwards[i], &options.fwd_opts);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001811 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10001812 if (i > 0 && success != i && options.exit_on_forward_failure)
1813 fatal("Could not request local forwarding.");
Kevin Steves12057502001-02-05 14:54:34 +00001814 if (i > 0 && success == 0)
1815 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001816
1817 /* Initiate remote TCP/IP port forwardings. */
1818 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001819 debug("Remote connections from %.200s:%d forwarded to "
1820 "local address %.200s:%d",
Damien Miller7acefbb2014-07-18 14:11:24 +10001821 (options.remote_forwards[i].listen_path != NULL) ?
1822 options.remote_forwards[i].listen_path :
Damien Miller46d38de2005-07-17 17:02:09 +10001823 (options.remote_forwards[i].listen_host == NULL) ?
Damien Milleraa3bb102005-11-05 15:12:59 +11001824 "LOCALHOST" : options.remote_forwards[i].listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +11001825 options.remote_forwards[i].listen_port,
Damien Miller7acefbb2014-07-18 14:11:24 +10001826 (options.remote_forwards[i].connect_path != NULL) ?
1827 options.remote_forwards[i].connect_path :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001828 options.remote_forwards[i].connect_host,
1829 options.remote_forwards[i].connect_port);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001830 options.remote_forwards[i].handle =
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001831 channel_request_remote_forwarding(ssh,
Damien Miller7acefbb2014-07-18 14:11:24 +10001832 &options.remote_forwards[i]);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001833 if (options.remote_forwards[i].handle < 0) {
Darren Tuckere7d4b192006-07-12 22:17:10 +10001834 if (options.exit_on_forward_failure)
1835 fatal("Could not request remote forwarding.");
1836 else
1837 logit("Warning: Could not request remote "
1838 "forwarding.");
Darren Tucker68afb8c2011-10-02 18:59:03 +11001839 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001840 client_register_global_confirm(
1841 ssh_confirm_remote_forward,
Darren Tucker68afb8c2011-10-02 18:59:03 +11001842 &options.remote_forwards[i]);
Darren Tuckere7d4b192006-07-12 22:17:10 +10001843 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001844 }
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001845
1846 /* Initiate tunnel forwarding. */
1847 if (options.tun_open != SSH_TUNMODE_NO) {
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001848 if ((*ifname = client_request_tun_fwd(ssh,
1849 options.tun_open, options.tun_local,
1850 options.tun_remote)) == NULL) {
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001851 if (options.exit_on_forward_failure)
1852 fatal("Could not request tunnel forwarding.");
1853 else
1854 error("Could not request tunnel forwarding.");
1855 }
djm@openbsd.org@openbsd.orgdbe06622017-10-27 01:57:06 +00001856 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001857}
1858
Ben Lindstrombba81212001-06-25 05:01:22 +00001859static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001860check_agent_present(void)
1861{
djm@openbsd.org141efe42015-01-14 20:05:27 +00001862 int r;
1863
Damien Miller0bc1bd82000-11-13 22:57:25 +11001864 if (options.forward_agent) {
Damien Miller788f2122005-11-05 15:14:59 +11001865 /* Clear agent forwarding if we don't have an agent. */
djm@openbsd.org141efe42015-01-14 20:05:27 +00001866 if ((r = ssh_get_authentication_socket(NULL)) != 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001867 options.forward_agent = 0;
djm@openbsd.org141efe42015-01-14 20:05:27 +00001868 if (r != SSH_ERR_AGENT_NOT_PRESENT)
1869 debug("ssh_get_authentication_socket: %s",
1870 ssh_err(r));
1871 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001872 }
1873}
1874
Ben Lindstrombba81212001-06-25 05:01:22 +00001875static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001876ssh_session2_setup(struct ssh *ssh, int id, int success, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001877{
Damien Miller3756dce2004-06-18 01:17:29 +10001878 extern char **environ;
Damien Miller17e7ed02005-06-17 12:54:33 +10001879 const char *display;
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001880 int r, interactive = tty_flag;
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001881 char *proto = NULL, *data = NULL;
Damien Miller17e7ed02005-06-17 12:54:33 +10001882
Damien Millerd530f5f2010-05-21 14:57:10 +10001883 if (!success)
1884 return; /* No need for error message, channels code sens one */
1885
Damien Miller46d38de2005-07-17 17:02:09 +10001886 display = getenv("DISPLAY");
djm@openbsd.orga58be332015-04-17 13:16:48 +00001887 if (display == NULL && options.forward_x11)
1888 debug("X11 forwarding requested but DISPLAY not set");
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001889 if (options.forward_x11 && client_x11_get_proto(ssh, display,
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001890 options.xauth_location, options.forward_x11_trusted,
1891 options.forward_x11_timeout, &proto, &data) == 0) {
Damien Millerbd483e72000-04-30 10:00:53 +10001892 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001893 debug("Requesting X11 forwarding with authentication "
1894 "spoofing.");
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001895 x11_request_forwarding_with_spoofing(ssh, id, display, proto,
Damien Miller6d7b4372011-06-23 08:31:57 +10001896 data, 1);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001897 client_expect_confirm(ssh, id, "X11 forwarding", CONFIRM_WARN);
Damien Miller6d7b4372011-06-23 08:31:57 +10001898 /* XXX exit_on_forward_failure */
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001899 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001900 }
1901
Damien Miller0bc1bd82000-11-13 22:57:25 +11001902 check_agent_present();
1903 if (options.forward_agent) {
1904 debug("Requesting authentication agent forwarding.");
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001905 channel_request_start(ssh, id, "auth-agent-req@openssh.com", 0);
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001906 if ((r = sshpkt_send(ssh)) != 0)
1907 fatal("%s: %s", __func__, ssh_err(r));
Damien Miller0bc1bd82000-11-13 22:57:25 +11001908 }
1909
Darren Tucker7b305012012-07-02 18:55:09 +10001910 /* Tell the packet module whether this is an interactive session. */
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001911 ssh_packet_set_interactive(ssh, interactive,
Darren Tucker7b305012012-07-02 18:55:09 +10001912 options.ip_qos_interactive, options.ip_qos_bulk);
1913
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001914 client_session2_setup(ssh, id, tty_flag, subsystem_flag, getenv("TERM"),
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +00001915 NULL, fileno(stdin), command, environ);
Damien Miller1383bd82000-04-06 12:32:37 +10001916}
1917
Ben Lindstromf558cf62001-09-20 23:13:49 +00001918/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001919static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001920ssh_session2_open(struct ssh *ssh)
Damien Miller1383bd82000-04-06 12:32:37 +10001921{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001922 Channel *c;
1923 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001924
Damien Millercaf6dd62000-08-29 11:33:50 +11001925 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001926 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001927 } else {
1928 in = dup(STDIN_FILENO);
1929 }
1930 out = dup(STDOUT_FILENO);
1931 err = dup(STDERR_FILENO);
1932
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001933 if (in == -1 || out == -1 || err == -1)
Damien Millercaf6dd62000-08-29 11:33:50 +11001934 fatal("dup() in/out/err failed");
1935
Damien Miller69b69aa2000-10-28 14:19:58 +11001936 /* enable nonblocking unless tty */
1937 if (!isatty(in))
1938 set_nonblock(in);
1939 if (!isatty(out))
1940 set_nonblock(out);
1941 if (!isatty(err))
1942 set_nonblock(err);
1943
Damien Millere4340be2000-09-16 13:29:08 +11001944 window = CHAN_SES_WINDOW_DEFAULT;
1945 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001946 if (tty_flag) {
1947 window >>= 1;
1948 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001949 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001950 c = channel_new(ssh,
Damien Miller1383bd82000-04-06 12:32:37 +10001951 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001952 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001953 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001954
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001955 debug3("%s: channel_new: %d", __func__, c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001956
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001957 channel_send_open(ssh, c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001958 if (!no_shell_flag)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001959 channel_register_open_confirm(ssh, c->self,
Damien Millerb84886b2008-05-19 15:05:07 +10001960 ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001961
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001962 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001963}
1964
Ben Lindstrombba81212001-06-25 05:01:22 +00001965static int
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001966ssh_session2(struct ssh *ssh, struct passwd *pw)
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001967{
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001968 int r, devnull, id = -1;
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001969 char *cp, *tun_fwd_ifname = NULL;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001970
1971 /* XXX should be pre-session */
Darren Tucker2d6665d2011-11-04 10:54:22 +11001972 if (!options.control_persist)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001973 ssh_init_stdio_forwarding(ssh);
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001974
1975 ssh_init_forwarding(ssh, &tun_fwd_ifname);
1976
1977 if (options.local_command != NULL) {
1978 debug3("expanding LocalCommand: %s", options.local_command);
1979 cp = options.local_command;
1980 options.local_command = percent_expand(cp,
1981 "C", conn_hash_hex,
1982 "L", shorthost,
1983 "d", pw->pw_dir,
1984 "h", host,
djm@openbsd.org9c935dd2018-06-01 03:33:53 +00001985 "i", uidstr,
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001986 "l", thishost,
1987 "n", host_arg,
1988 "p", portstr,
1989 "r", options.user,
1990 "u", pw->pw_name,
1991 "T", tun_fwd_ifname == NULL ? "NONE" : tun_fwd_ifname,
1992 (char *)NULL);
1993 debug3("expanded LocalCommand: %s", options.local_command);
1994 free(cp);
1995 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001996
Damien Millere11e1ea2010-08-03 16:04:46 +10001997 /* Start listening for multiplex clients */
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001998 if (!ssh_packet_get_mux(ssh))
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001999 muxserver_listen(ssh);
Damien Millere11e1ea2010-08-03 16:04:46 +10002000
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00002001 /*
Darren Tucker2d6665d2011-11-04 10:54:22 +11002002 * If we are in control persist mode and have a working mux listen
2003 * socket, then prepare to background ourselves and have a foreground
2004 * client attach as a control slave.
2005 * NB. we must save copies of the flags that we override for
Damien Millere11e1ea2010-08-03 16:04:46 +10002006 * the backgrounding, since we defer attachment of the slave until
2007 * after the connection is fully established (in particular,
2008 * async rfwd replies have been received for ExitOnForwardFailure).
2009 */
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00002010 if (options.control_persist && muxserver_sock != -1) {
Damien Millere11e1ea2010-08-03 16:04:46 +10002011 ostdin_null_flag = stdin_null_flag;
2012 ono_shell_flag = no_shell_flag;
Damien Miller21771e22011-05-15 08:45:50 +10002013 orequest_tty = options.request_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +10002014 otty_flag = tty_flag;
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00002015 stdin_null_flag = 1;
2016 no_shell_flag = 1;
2017 tty_flag = 0;
Damien Millere11e1ea2010-08-03 16:04:46 +10002018 if (!fork_after_authentication_flag)
2019 need_controlpersist_detach = 1;
2020 fork_after_authentication_flag = 1;
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00002021 }
Darren Tucker2d6665d2011-11-04 10:54:22 +11002022 /*
2023 * ControlPersist mux listen socket setup failed, attempt the
2024 * stdio forward setup that we skipped earlier.
2025 */
2026 if (options.control_persist && muxserver_sock == -1)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002027 ssh_init_stdio_forwarding(ssh);
Damien Millere11e1ea2010-08-03 16:04:46 +10002028
djm@openbsd.org14b5c632018-01-23 05:27:21 +00002029 if (!no_shell_flag)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002030 id = ssh_session2_open(ssh);
Damien Miller649fe022013-07-18 16:13:55 +10002031 else {
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00002032 ssh_packet_set_interactive(ssh,
Damien Miller649fe022013-07-18 16:13:55 +10002033 options.control_master == SSHCTL_MASTER_NO,
2034 options.ip_qos_interactive, options.ip_qos_bulk);
2035 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00002036
Darren Tucker8901fa92008-06-11 09:34:01 +10002037 /* If we don't expect to open a new session, then disallow it */
Damien Miller456e6f02008-11-03 19:20:10 +11002038 if (options.control_master == SSHCTL_MASTER_NO &&
2039 (datafellows & SSH_NEW_OPENSSH)) {
Darren Tucker8901fa92008-06-11 09:34:01 +10002040 debug("Requesting no-more-sessions@openssh.com");
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00002041 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
2042 (r = sshpkt_put_cstring(ssh,
2043 "no-more-sessions@openssh.com")) != 0 ||
2044 (r = sshpkt_put_u8(ssh, 0)) != 0 ||
2045 (r = sshpkt_send(ssh)) != 0)
2046 fatal("%s: %s", __func__, ssh_err(r));
Darren Tucker8901fa92008-06-11 09:34:01 +10002047 }
2048
Damien Millerd27b9472005-12-13 19:29:02 +11002049 /* Execute a local command */
2050 if (options.local_command != NULL &&
2051 options.permit_local_command)
2052 ssh_local_cmd(options.local_command);
2053
Damien Miller1f25ab42010-07-16 13:56:23 +10002054 /*
djm@openbsd.org4d5456c2017-10-25 00:21:37 +00002055 * stdout is now owned by the session channel; clobber it here
2056 * so future channel closes are propagated to the local fd.
2057 * NB. this can only happen after LocalCommand has completed,
2058 * as it may want to write to stdout.
2059 */
djm@openbsd.org@openbsd.org939b30b2017-11-01 00:04:15 +00002060 if (!need_controlpersist_detach) {
2061 if ((devnull = open(_PATH_DEVNULL, O_WRONLY)) == -1)
2062 error("%s: open %s: %s", __func__,
2063 _PATH_DEVNULL, strerror(errno));
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00002064 if (dup2(devnull, STDOUT_FILENO) == -1)
djm@openbsd.org@openbsd.org939b30b2017-11-01 00:04:15 +00002065 fatal("%s: dup2() stdout failed", __func__);
2066 if (devnull > STDERR_FILENO)
2067 close(devnull);
2068 }
djm@openbsd.org4d5456c2017-10-25 00:21:37 +00002069
2070 /*
Damien Miller1f25ab42010-07-16 13:56:23 +10002071 * If requested and we are not interested in replies to remote
2072 * forwarding requests, then let ssh continue in the background.
2073 */
Damien Millere11e1ea2010-08-03 16:04:46 +10002074 if (fork_after_authentication_flag) {
2075 if (options.exit_on_forward_failure &&
2076 options.num_remote_forwards > 0) {
2077 debug("deferring postauth fork until remote forward "
2078 "confirmation received");
2079 } else
2080 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10002081 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00002082
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002083 return client_loop(ssh, tty_flag, tty_flag ?
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00002084 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002085}
Damien Miller0bc1bd82000-11-13 22:57:25 +11002086
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002087/* Loads all IdentityFile and CertificateFile keys */
Ben Lindstrombba81212001-06-25 05:01:22 +00002088static void
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00002089load_public_identity_files(struct passwd *pw)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002090{
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00002091 char *filename, *cp;
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00002092 struct sshkey *public;
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002093 int i;
2094 u_int n_ids, n_certs;
Damien Miller0a80ca12010-02-27 07:55:05 +11002095 char *identity_files[SSH_MAX_IDENTITY_FILES];
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00002096 struct sshkey *identity_keys[SSH_MAX_IDENTITY_FILES];
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002097 int identity_file_userprovided[SSH_MAX_IDENTITY_FILES];
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002098 char *certificate_files[SSH_MAX_CERTIFICATE_FILES];
2099 struct sshkey *certificates[SSH_MAX_CERTIFICATE_FILES];
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002100 int certificate_file_userprovided[SSH_MAX_CERTIFICATE_FILES];
Damien Miller7ea845e2010-02-12 09:21:02 +11002101#ifdef ENABLE_PKCS11
djm@openbsd.org89a8d452020-01-25 00:03:36 +00002102 struct sshkey **keys = NULL;
2103 char **comments = NULL;
Damien Miller7ea845e2010-02-12 09:21:02 +11002104 int nkeys;
Damien Miller0a80ca12010-02-27 07:55:05 +11002105#endif /* PKCS11 */
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00002106
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002107 n_ids = n_certs = 0;
Damien Miller1d2c4562014-02-04 11:18:20 +11002108 memset(identity_files, 0, sizeof(identity_files));
2109 memset(identity_keys, 0, sizeof(identity_keys));
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002110 memset(identity_file_userprovided, 0,
2111 sizeof(identity_file_userprovided));
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002112 memset(certificate_files, 0, sizeof(certificate_files));
2113 memset(certificates, 0, sizeof(certificates));
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002114 memset(certificate_file_userprovided, 0,
2115 sizeof(certificate_file_userprovided));
Damien Miller0a80ca12010-02-27 07:55:05 +11002116
2117#ifdef ENABLE_PKCS11
Damien Miller7ea845e2010-02-12 09:21:02 +11002118 if (options.pkcs11_provider != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00002119 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
Damien Miller7ea845e2010-02-12 09:21:02 +11002120 (pkcs11_init(!options.batch_mode) == 0) &&
2121 (nkeys = pkcs11_add_provider(options.pkcs11_provider, NULL,
djm@openbsd.org89a8d452020-01-25 00:03:36 +00002122 &keys, &comments)) > 0) {
Damien Miller7ea845e2010-02-12 09:21:02 +11002123 for (i = 0; i < nkeys; i++) {
Damien Miller0a80ca12010-02-27 07:55:05 +11002124 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00002125 sshkey_free(keys[i]);
djm@openbsd.org89a8d452020-01-25 00:03:36 +00002126 free(comments[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +11002127 continue;
2128 }
2129 identity_keys[n_ids] = keys[i];
djm@openbsd.org89a8d452020-01-25 00:03:36 +00002130 identity_files[n_ids] = comments[i]; /* transferred */
Damien Miller0a80ca12010-02-27 07:55:05 +11002131 n_ids++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00002132 }
Darren Tuckera627d422013-06-02 07:31:17 +10002133 free(keys);
djm@openbsd.org89a8d452020-01-25 00:03:36 +00002134 free(comments);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00002135 }
Damien Miller7ea845e2010-02-12 09:21:02 +11002136#endif /* ENABLE_PKCS11 */
Damien Miller0a80ca12010-02-27 07:55:05 +11002137 for (i = 0; i < options.num_identity_files; i++) {
Darren Tucker15fd19c2013-04-05 11:22:26 +11002138 if (n_ids >= SSH_MAX_IDENTITY_FILES ||
2139 strcasecmp(options.identity_files[i], "none") == 0) {
Darren Tuckera627d422013-06-02 07:31:17 +10002140 free(options.identity_files[i]);
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002141 options.identity_files[i] = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +11002142 continue;
2143 }
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +00002144 cp = tilde_expand_filename(options.identity_files[i], getuid());
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00002145 filename = percent_expand(cp, "d", pw->pw_dir,
2146 "u", pw->pw_name, "l", thishost, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +11002147 "r", options.user, (char *)NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10002148 free(cp);
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00002149 check_load(sshkey_load_public(filename, &public, NULL),
2150 filename, "pubkey");
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002151 debug("identity file %s type %d", filename,
2152 public ? public->type : -1);
Darren Tuckera627d422013-06-02 07:31:17 +10002153 free(options.identity_files[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +11002154 identity_files[n_ids] = filename;
2155 identity_keys[n_ids] = public;
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002156 identity_file_userprovided[n_ids] =
2157 options.identity_file_userprovided[i];
Damien Miller0a80ca12010-02-27 07:55:05 +11002158 if (++n_ids >= SSH_MAX_IDENTITY_FILES)
2159 continue;
2160
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002161 /*
2162 * If no certificates have been explicitly listed then try
2163 * to add the default certificate variant too.
2164 */
2165 if (options.num_certificate_files != 0)
2166 continue;
Damien Miller0a80ca12010-02-27 07:55:05 +11002167 xasprintf(&cp, "%s-cert", filename);
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00002168 check_load(sshkey_load_public(cp, &public, NULL),
2169 filename, "pubkey");
Damien Miller0a80ca12010-02-27 07:55:05 +11002170 debug("identity file %s type %d", cp,
2171 public ? public->type : -1);
2172 if (public == NULL) {
Darren Tuckera627d422013-06-02 07:31:17 +10002173 free(cp);
Damien Miller0a80ca12010-02-27 07:55:05 +11002174 continue;
2175 }
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00002176 if (!sshkey_is_cert(public)) {
Damien Miller0a80ca12010-02-27 07:55:05 +11002177 debug("%s: key %s type %s is not a certificate",
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00002178 __func__, cp, sshkey_type(public));
2179 sshkey_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +10002180 free(cp);
Damien Miller0a80ca12010-02-27 07:55:05 +11002181 continue;
2182 }
djm@openbsd.orgb4867e02016-12-06 07:48:01 +00002183 /* NB. leave filename pointing to private key */
2184 identity_files[n_ids] = xstrdup(filename);
Damien Miller0a80ca12010-02-27 07:55:05 +11002185 identity_keys[n_ids] = public;
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002186 identity_file_userprovided[n_ids] =
2187 options.identity_file_userprovided[i];
Damien Miller0a80ca12010-02-27 07:55:05 +11002188 n_ids++;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002189 }
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002190
2191 if (options.num_certificate_files > SSH_MAX_CERTIFICATE_FILES)
2192 fatal("%s: too many certificates", __func__);
2193 for (i = 0; i < options.num_certificate_files; i++) {
2194 cp = tilde_expand_filename(options.certificate_files[i],
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +00002195 getuid());
djm@openbsd.org9c935dd2018-06-01 03:33:53 +00002196 filename = percent_expand(cp,
2197 "d", pw->pw_dir,
2198 "h", host,
djm@openbsd.org03688892018-06-08 03:35:36 +00002199 "i", uidstr,
djm@openbsd.org9c935dd2018-06-01 03:33:53 +00002200 "l", thishost,
2201 "r", options.user,
2202 "u", pw->pw_name,
2203 (char *)NULL);
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002204 free(cp);
2205
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00002206 check_load(sshkey_load_public(filename, &public, NULL),
2207 filename, "certificate");
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002208 debug("certificate file %s type %d", filename,
2209 public ? public->type : -1);
2210 free(options.certificate_files[i]);
2211 options.certificate_files[i] = NULL;
2212 if (public == NULL) {
2213 free(filename);
2214 continue;
2215 }
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00002216 if (!sshkey_is_cert(public)) {
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002217 debug("%s: key %s type %s is not a certificate",
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00002218 __func__, filename, sshkey_type(public));
2219 sshkey_free(public);
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002220 free(filename);
2221 continue;
2222 }
2223 certificate_files[n_certs] = filename;
2224 certificates[n_certs] = public;
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002225 certificate_file_userprovided[n_certs] =
2226 options.certificate_file_userprovided[i];
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002227 ++n_certs;
2228 }
2229
Damien Miller0a80ca12010-02-27 07:55:05 +11002230 options.num_identity_files = n_ids;
2231 memcpy(options.identity_files, identity_files, sizeof(identity_files));
2232 memcpy(options.identity_keys, identity_keys, sizeof(identity_keys));
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002233 memcpy(options.identity_file_userprovided,
2234 identity_file_userprovided, sizeof(identity_file_userprovided));
Damien Miller0a80ca12010-02-27 07:55:05 +11002235
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002236 options.num_certificate_files = n_certs;
2237 memcpy(options.certificate_files,
2238 certificate_files, sizeof(certificate_files));
2239 memcpy(options.certificates, certificates, sizeof(certificates));
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002240 memcpy(options.certificate_file_userprovided,
2241 certificate_file_userprovided,
2242 sizeof(certificate_file_userprovided));
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002243}
Damien Miller857b02e2010-09-24 22:02:56 +10002244
2245static void
2246main_sigchld_handler(int sig)
2247{
2248 int save_errno = errno;
2249 pid_t pid;
2250 int status;
2251
2252 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00002253 (pid == -1 && errno == EINTR))
Damien Miller857b02e2010-09-24 22:02:56 +10002254 ;
Damien Miller857b02e2010-09-24 22:02:56 +10002255 errno = save_errno;
2256}