blob: 470d9b7e6bbf763a2197df51cd1e2b9484e67005 [file] [log] [blame]
dtucker@openbsd.orged833da2020-04-03 02:27:12 +00001/* $OpenBSD: ssh.c,v 1.522 2020/04/03 02:27:12 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"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000089#include "packet.h"
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +000090#include "sshbuf.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000091#include "channels.h"
markus@openbsd.org5467fbc2018-07-11 18:53:29 +000092#include "sshkey.h"
Damien Miller994cf142000-07-21 10:19:44 +100093#include "authfd.h"
Damien Millereba71ba2000-04-29 23:57:08 +100094#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000095#include "pathnames.h"
Damien Miller0e220db2004-06-15 10:34:08 +100096#include "dispatch.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000097#include "clientloop.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000098#include "log.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100099#include "misc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000100#include "readconf.h"
101#include "sshconnect.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000102#include "kex.h"
103#include "mac.h"
Darren Tucker06f2bd82004-05-13 16:06:46 +1000104#include "sshpty.h"
Darren Tucker46bc0752004-05-02 22:11:30 +1000105#include "match.h"
Damien Miller0e220db2004-06-15 10:34:08 +1000106#include "msg.h"
Damien Millerb7576772006-07-10 20:23:39 +1000107#include "version.h"
djm@openbsd.org141efe42015-01-14 20:05:27 +0000108#include "ssherr.h"
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000109#include "myproposal.h"
Damien Millerdda78a02016-12-12 13:57:10 +1100110#include "utf8.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111
Damien Miller7ea845e2010-02-12 09:21:02 +1100112#ifdef ENABLE_PKCS11
113#include "ssh-pkcs11.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +0000114#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000115
Damien Miller3f905871999-11-15 17:10:57 +1100116extern char *__progname;
Damien Miller3f905871999-11-15 17:10:57 +1100117
Damien Millerea2c1a42011-06-03 12:10:22 +1000118/* Saves a copy of argv for setproctitle emulation */
119#ifndef HAVE_SETPROCTITLE
120static char **saved_av;
121#endif
122
Darren Tuckerd6173c02008-06-13 04:52:53 +1000123/* Flag indicating whether debug mode is on. May be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000124int debug_flag = 0;
125
Damien Miller21771e22011-05-15 08:45:50 +1000126/* Flag indicating whether a tty should be requested */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000127int tty_flag = 0;
128
Damien Miller1383bd82000-04-06 12:32:37 +1000129/* don't exec a shell */
130int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000131
Damien Miller5428f641999-11-25 11:54:57 +1100132/*
133 * Flag indicating that nothing should be read from stdin. This can be set
134 * on the command line.
135 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000136int stdin_null_flag = 0;
137
Damien Miller5428f641999-11-25 11:54:57 +1100138/*
Damien Millere11e1ea2010-08-03 16:04:46 +1000139 * Flag indicating that the current process should be backgrounded and
140 * a new slave launched in the foreground for ControlPersist.
141 */
142int need_controlpersist_detach = 0;
143
144/* Copies of flags for ControlPersist foreground slave */
Damien Miller21771e22011-05-15 08:45:50 +1000145int ostdin_null_flag, ono_shell_flag, otty_flag, orequest_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +1000146
147/*
Damien Miller5428f641999-11-25 11:54:57 +1100148 * Flag indicating that ssh should fork after authentication. This is useful
Ben Lindstromf666fec2002-06-06 19:51:58 +0000149 * so that the passphrase can be entered manually, and then ssh goes to the
Damien Miller5428f641999-11-25 11:54:57 +1100150 * background.
151 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000152int fork_after_authentication_flag = 0;
153
Damien Miller5428f641999-11-25 11:54:57 +1100154/*
155 * General data structure for command line options and options configurable
156 * in configuration files. See readconf.h.
157 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000158Options options;
159
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000160/* optional user configfile */
161char *config = NULL;
162
Damien Miller5428f641999-11-25 11:54:57 +1100163/*
164 * Name of the host we are connecting to. This is the name given on the
jmc@openbsd.org73491492019-06-12 11:31:50 +0000165 * command line, or the Hostname specified for the user-supplied name in a
Damien Miller5428f641999-11-25 11:54:57 +1100166 * configuration file.
167 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000168char *host;
169
djm@openbsd.org40be78f2019-12-21 02:19:13 +0000170/*
171 * A config can specify a path to forward, overriding SSH_AUTH_SOCK. If this is
172 * not NULL, forward the socket at this path instead.
173 */
174char *forward_agent_sock_path = NULL;
175
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000176/* Various strings used to to percent_expand() arguments */
177static char thishost[NI_MAXHOST], shorthost[NI_MAXHOST], portstr[NI_MAXSERV];
178static char uidstr[32], *host_arg, *conn_hash_hex;
dtucker@openbsd.orged833da2020-04-03 02:27:12 +0000179#define DEFAULT_CLIENT_PERCENT_EXPAND_ARGS \
180 "C", conn_hash_hex, \
181 "L", shorthost, \
182 "i", uidstr, \
183 "l", thishost, \
184 "n", host_arg, \
185 "p", portstr
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000186
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000187/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100188struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000189
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000190/* Private host keys. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000191Sensitive sensitive_data;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000192
Damien Miller1383bd82000-04-06 12:32:37 +1000193/* command to be executed */
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +0000194struct sshbuf *command;
Damien Miller1383bd82000-04-06 12:32:37 +1000195
Damien Miller832562e2001-01-30 09:30:01 +1100196/* Should we execute a command or invoke a subsystem? */
197int subsystem_flag = 0;
198
Damien Miller2797f7f2002-04-23 21:09:44 +1000199/* # of replies received for global requests */
Darren Tucker9f407c42008-06-13 04:50:27 +1000200static int remote_forward_confirms_received = 0;
Damien Miller2797f7f2002-04-23 21:09:44 +1000201
Damien Millerb1cbfa22008-05-19 16:00:08 +1000202/* mux.c */
203extern int muxserver_sock;
204extern u_int muxclient_command;
Damien Miller0e220db2004-06-15 10:34:08 +1000205
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000206/* Prints a help message to the user. This function never returns. */
207
Ben Lindstrombba81212001-06-25 05:01:22 +0000208static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000209usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000210{
Damien Miller50955102004-03-22 09:34:58 +1100211 fprintf(stderr,
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000212"usage: ssh [-46AaCfGgKkMNnqsTtVvXxYy] [-B bind_interface]\n"
213" [-b bind_address] [-c cipher_spec] [-D [bind_address:]port]\n"
214" [-E log_file] [-e escape_char] [-F configfile] [-I pkcs11]\n"
215" [-i identity_file] [-J [user@]host[:port]] [-L address]\n"
216" [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
217" [-Q query_option] [-R address] [-S ctl_path] [-W host:port]\n"
218" [-w local_tun[:remote_tun]] destination [command]\n"
Damien Miller50955102004-03-22 09:34:58 +1100219 );
Darren Tuckere9a9b712005-12-20 16:15:51 +1100220 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000221}
222
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000223static int ssh_session2(struct ssh *, struct passwd *);
224static void load_public_identity_files(struct passwd *);
Damien Miller857b02e2010-09-24 22:02:56 +1000225static void main_sigchld_handler(int);
Damien Millerb1cbfa22008-05-19 16:00:08 +1000226
Damien Miller295ee632011-05-29 21:42:31 +1000227/* ~/ expand a list of paths. NB. assumes path[n] is heap-allocated. */
228static void
229tilde_expand_paths(char **paths, u_int num_paths)
230{
231 u_int i;
232 char *cp;
233
234 for (i = 0; i < num_paths; i++) {
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +0000235 cp = tilde_expand_filename(paths[i], getuid());
Darren Tuckera627d422013-06-02 07:31:17 +1000236 free(paths[i]);
Damien Miller295ee632011-05-29 21:42:31 +1000237 paths[i] = cp;
238 }
239}
240
Damien Miller13f97b22014-02-24 15:57:55 +1100241/*
242 * Attempt to resolve a host name / port to a set of addresses and
243 * optionally return any CNAMEs encountered along the way.
244 * Returns NULL on failure.
245 * NB. this function must operate with a options having undefined members.
246 */
Damien Miller0faf7472013-10-17 11:47:23 +1100247static struct addrinfo *
Damien Miller13f97b22014-02-24 15:57:55 +1100248resolve_host(const char *name, int port, int logerr, char *cname, size_t clen)
Damien Miller0faf7472013-10-17 11:47:23 +1100249{
250 char strport[NI_MAXSERV];
251 struct addrinfo hints, *res;
dtucker@openbsd.org3a7db912019-04-23 11:56:41 +0000252 int gaierr;
253 LogLevel loglevel = SYSLOG_LEVEL_DEBUG1;
Damien Miller0faf7472013-10-17 11:47:23 +1100254
Damien Miller13f97b22014-02-24 15:57:55 +1100255 if (port <= 0)
256 port = default_ssh_port();
markus@openbsd.org31f1ee52020-03-06 18:20:02 +0000257 if (cname != NULL)
258 *cname = '\0';
Damien Miller13f97b22014-02-24 15:57:55 +1100259
djm@openbsd.orgb1d38a32015-10-15 23:51:40 +0000260 snprintf(strport, sizeof strport, "%d", port);
Damien Miller1d2c4562014-02-04 11:18:20 +1100261 memset(&hints, 0, sizeof(hints));
Damien Miller13f97b22014-02-24 15:57:55 +1100262 hints.ai_family = options.address_family == -1 ?
263 AF_UNSPEC : options.address_family;
Damien Miller0faf7472013-10-17 11:47:23 +1100264 hints.ai_socktype = SOCK_STREAM;
265 if (cname != NULL)
266 hints.ai_flags = AI_CANONNAME;
267 if ((gaierr = getaddrinfo(name, strport, &hints, &res)) != 0) {
268 if (logerr || (gaierr != EAI_NONAME && gaierr != EAI_NODATA))
269 loglevel = SYSLOG_LEVEL_ERROR;
270 do_log2(loglevel, "%s: Could not resolve hostname %.100s: %s",
271 __progname, name, ssh_gai_strerror(gaierr));
272 return NULL;
273 }
274 if (cname != NULL && res->ai_canonname != NULL) {
275 if (strlcpy(cname, res->ai_canonname, clen) >= clen) {
276 error("%s: host \"%s\" cname \"%s\" too long (max %lu)",
277 __func__, name, res->ai_canonname, (u_long)clen);
278 if (clen > 0)
279 *cname = '\0';
280 }
281 }
282 return res;
283}
284
djm@openbsd.orgfc21ea92018-01-23 05:06:25 +0000285/* Returns non-zero if name can only be an address and not a hostname */
286static int
287is_addr_fast(const char *name)
288{
289 return (strchr(name, '%') != NULL || strchr(name, ':') != NULL ||
290 strspn(name, "0123456789.") == strlen(name));
291}
292
293/* Returns non-zero if name represents a valid, single address */
294static int
295is_addr(const char *name)
296{
297 char strport[NI_MAXSERV];
298 struct addrinfo hints, *res;
299
300 if (is_addr_fast(name))
301 return 1;
302
303 snprintf(strport, sizeof strport, "%u", default_ssh_port());
304 memset(&hints, 0, sizeof(hints));
305 hints.ai_family = options.address_family == -1 ?
306 AF_UNSPEC : options.address_family;
307 hints.ai_socktype = SOCK_STREAM;
308 hints.ai_flags = AI_NUMERICHOST|AI_NUMERICSERV;
309 if (getaddrinfo(name, strport, &hints, &res) != 0)
310 return 0;
311 if (res == NULL || res->ai_next != NULL) {
312 freeaddrinfo(res);
313 return 0;
314 }
315 freeaddrinfo(res);
316 return 1;
317}
318
Damien Miller0faf7472013-10-17 11:47:23 +1100319/*
djm@openbsd.org90109022015-01-16 07:19:48 +0000320 * Attempt to resolve a numeric host address / port to a single address.
321 * Returns a canonical address string.
322 * Returns NULL on failure.
323 * NB. this function must operate with a options having undefined members.
324 */
325static struct addrinfo *
326resolve_addr(const char *name, int port, char *caddr, size_t clen)
327{
328 char addr[NI_MAXHOST], strport[NI_MAXSERV];
329 struct addrinfo hints, *res;
330 int gaierr;
331
332 if (port <= 0)
333 port = default_ssh_port();
334 snprintf(strport, sizeof strport, "%u", port);
335 memset(&hints, 0, sizeof(hints));
336 hints.ai_family = options.address_family == -1 ?
337 AF_UNSPEC : options.address_family;
338 hints.ai_socktype = SOCK_STREAM;
339 hints.ai_flags = AI_NUMERICHOST|AI_NUMERICSERV;
340 if ((gaierr = getaddrinfo(name, strport, &hints, &res)) != 0) {
341 debug2("%s: could not resolve name %.100s as address: %s",
342 __func__, name, ssh_gai_strerror(gaierr));
343 return NULL;
344 }
345 if (res == NULL) {
346 debug("%s: getaddrinfo %.100s returned no addresses",
347 __func__, name);
348 return NULL;
349 }
350 if (res->ai_next != NULL) {
351 debug("%s: getaddrinfo %.100s returned multiple addresses",
352 __func__, name);
353 goto fail;
354 }
355 if ((gaierr = getnameinfo(res->ai_addr, res->ai_addrlen,
356 addr, sizeof(addr), NULL, 0, NI_NUMERICHOST)) != 0) {
357 debug("%s: Could not format address for name %.100s: %s",
358 __func__, name, ssh_gai_strerror(gaierr));
359 goto fail;
360 }
361 if (strlcpy(caddr, addr, clen) >= clen) {
362 error("%s: host \"%s\" addr \"%s\" too long (max %lu)",
363 __func__, name, addr, (u_long)clen);
364 if (clen > 0)
365 *caddr = '\0';
366 fail:
367 freeaddrinfo(res);
368 return NULL;
369 }
370 return res;
371}
372
373/*
Damien Miller0faf7472013-10-17 11:47:23 +1100374 * Check whether the cname is a permitted replacement for the hostname
375 * and perform the replacement if it is.
Damien Miller13f97b22014-02-24 15:57:55 +1100376 * NB. this function must operate with a options having undefined members.
Damien Miller0faf7472013-10-17 11:47:23 +1100377 */
378static int
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000379check_follow_cname(int direct, char **namep, const char *cname)
Damien Miller0faf7472013-10-17 11:47:23 +1100380{
381 int i;
382 struct allowed_cname *rule;
383
384 if (*cname == '\0' || options.num_permitted_cnames == 0 ||
385 strcmp(*namep, cname) == 0)
386 return 0;
Damien Miller38505592013-10-17 11:48:13 +1100387 if (options.canonicalize_hostname == SSH_CANONICALISE_NO)
Damien Miller0faf7472013-10-17 11:47:23 +1100388 return 0;
389 /*
Damien Miller38505592013-10-17 11:48:13 +1100390 * Don't attempt to canonicalize names that will be interpreted by
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000391 * a proxy or jump host unless the user specifically requests so.
Damien Miller0faf7472013-10-17 11:47:23 +1100392 */
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000393 if (!direct &&
Damien Miller38505592013-10-17 11:48:13 +1100394 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS)
Damien Miller0faf7472013-10-17 11:47:23 +1100395 return 0;
396 debug3("%s: check \"%s\" CNAME \"%s\"", __func__, *namep, cname);
397 for (i = 0; i < options.num_permitted_cnames; i++) {
398 rule = options.permitted_cnames + i;
djm@openbsd.orge661a862015-05-04 06:10:48 +0000399 if (match_pattern_list(*namep, rule->source_list, 1) != 1 ||
400 match_pattern_list(cname, rule->target_list, 1) != 1)
Damien Miller0faf7472013-10-17 11:47:23 +1100401 continue;
Damien Miller38505592013-10-17 11:48:13 +1100402 verbose("Canonicalized DNS aliased hostname "
Damien Miller0faf7472013-10-17 11:47:23 +1100403 "\"%s\" => \"%s\"", *namep, cname);
404 free(*namep);
405 *namep = xstrdup(cname);
406 return 1;
407 }
408 return 0;
409}
410
411/*
412 * Attempt to resolve the supplied hostname after applying the user's
Damien Miller51682fa2013-10-17 11:48:31 +1100413 * canonicalization rules. Returns the address list for the host or NULL
414 * if no name was found after canonicalization.
Damien Miller13f97b22014-02-24 15:57:55 +1100415 * NB. this function must operate with a options having undefined members.
Damien Miller0faf7472013-10-17 11:47:23 +1100416 */
417static struct addrinfo *
Damien Miller13f97b22014-02-24 15:57:55 +1100418resolve_canonicalize(char **hostp, int port)
Damien Miller0faf7472013-10-17 11:47:23 +1100419{
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000420 int i, direct, ndots;
djm@openbsd.org90109022015-01-16 07:19:48 +0000421 char *cp, *fullhost, newname[NI_MAXHOST];
Damien Miller0faf7472013-10-17 11:47:23 +1100422 struct addrinfo *addrs;
423
djm@openbsd.orgfc21ea92018-01-23 05:06:25 +0000424 /*
425 * Attempt to canonicalise addresses, regardless of
426 * whether hostname canonicalisation was requested
427 */
428 if ((addrs = resolve_addr(*hostp, port,
429 newname, sizeof(newname))) != NULL) {
430 debug2("%s: hostname %.100s is address", __func__, *hostp);
431 if (strcasecmp(*hostp, newname) != 0) {
432 debug2("%s: canonicalised address \"%s\" => \"%s\"",
433 __func__, *hostp, newname);
434 free(*hostp);
435 *hostp = xstrdup(newname);
436 }
437 return addrs;
438 }
439
440 /*
441 * If this looks like an address but didn't parse as one, it might
442 * be an address with an invalid interface scope. Skip further
443 * attempts at canonicalisation.
444 */
445 if (is_addr_fast(*hostp)) {
446 debug("%s: hostname %.100s is an unrecognised address",
447 __func__, *hostp);
448 return NULL;
449 }
450
Damien Miller38505592013-10-17 11:48:13 +1100451 if (options.canonicalize_hostname == SSH_CANONICALISE_NO)
Damien Miller0faf7472013-10-17 11:47:23 +1100452 return NULL;
Damien Miller13f97b22014-02-24 15:57:55 +1100453
Damien Miller0faf7472013-10-17 11:47:23 +1100454 /*
Damien Miller38505592013-10-17 11:48:13 +1100455 * Don't attempt to canonicalize names that will be interpreted by
Damien Miller0faf7472013-10-17 11:47:23 +1100456 * a proxy unless the user specifically requests so.
457 */
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000458 direct = option_clear_or_none(options.proxy_command) &&
459 options.jump_host == NULL;
460 if (!direct &&
Damien Miller38505592013-10-17 11:48:13 +1100461 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS)
Damien Miller0faf7472013-10-17 11:47:23 +1100462 return NULL;
Damien Miller13f97b22014-02-24 15:57:55 +1100463
djm@openbsd.org5ee00632015-10-16 18:40:49 +0000464 /* If domain name is anchored, then resolve it now */
465 if ((*hostp)[strlen(*hostp) - 1] == '.') {
466 debug3("%s: name is fully qualified", __func__);
467 fullhost = xstrdup(*hostp);
468 if ((addrs = resolve_host(fullhost, port, 0,
469 newname, sizeof(newname))) != NULL)
470 goto found;
471 free(fullhost);
472 goto notfound;
473 }
474
Damien Miller51682fa2013-10-17 11:48:31 +1100475 /* Don't apply canonicalization to sufficiently-qualified hostnames */
Damien Miller0faf7472013-10-17 11:47:23 +1100476 ndots = 0;
477 for (cp = *hostp; *cp != '\0'; cp++) {
478 if (*cp == '.')
479 ndots++;
480 }
Damien Miller38505592013-10-17 11:48:13 +1100481 if (ndots > options.canonicalize_max_dots) {
482 debug3("%s: not canonicalizing hostname \"%s\" (max dots %d)",
483 __func__, *hostp, options.canonicalize_max_dots);
Damien Miller0faf7472013-10-17 11:47:23 +1100484 return NULL;
485 }
486 /* Attempt each supplied suffix */
487 for (i = 0; i < options.num_canonical_domains; i++) {
Damien Miller0faf7472013-10-17 11:47:23 +1100488 xasprintf(&fullhost, "%s.%s.", *hostp,
489 options.canonical_domains[i]);
Damien Miller13f97b22014-02-24 15:57:55 +1100490 debug3("%s: attempting \"%s\" => \"%s\"", __func__,
491 *hostp, fullhost);
492 if ((addrs = resolve_host(fullhost, port, 0,
djm@openbsd.org90109022015-01-16 07:19:48 +0000493 newname, sizeof(newname))) == NULL) {
Damien Miller0faf7472013-10-17 11:47:23 +1100494 free(fullhost);
495 continue;
496 }
djm@openbsd.org5ee00632015-10-16 18:40:49 +0000497 found:
Damien Miller0faf7472013-10-17 11:47:23 +1100498 /* Remove trailing '.' */
499 fullhost[strlen(fullhost) - 1] = '\0';
500 /* Follow CNAME if requested */
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000501 if (!check_follow_cname(direct, &fullhost, newname)) {
Damien Miller38505592013-10-17 11:48:13 +1100502 debug("Canonicalized hostname \"%s\" => \"%s\"",
Damien Miller0faf7472013-10-17 11:47:23 +1100503 *hostp, fullhost);
504 }
505 free(*hostp);
506 *hostp = fullhost;
507 return addrs;
508 }
djm@openbsd.org5ee00632015-10-16 18:40:49 +0000509 notfound:
Damien Miller38505592013-10-17 11:48:13 +1100510 if (!options.canonicalize_fallback_local)
Damien Miller13f97b22014-02-24 15:57:55 +1100511 fatal("%s: Could not resolve host \"%s\"", __progname, *hostp);
512 debug2("%s: host %s not found in any suffix", __func__, *hostp);
Damien Miller0faf7472013-10-17 11:47:23 +1100513 return NULL;
514}
515
Damien Miller95def091999-11-25 00:26:21 +1100516/*
markus@openbsd.org5467fbc2018-07-11 18:53:29 +0000517 * Check the result of hostkey loading, ignoring some errors and
518 * fatal()ing for others.
519 */
520static void
521check_load(int r, const char *path, const char *message)
522{
523 switch (r) {
524 case 0:
525 break;
526 case SSH_ERR_INTERNAL_ERROR:
527 case SSH_ERR_ALLOC_FAIL:
528 fatal("load %s \"%s\": %s", message, path, ssh_err(r));
529 case SSH_ERR_SYSTEM_ERROR:
530 /* Ignore missing files */
531 if (errno == ENOENT)
532 break;
533 /* FALLTHROUGH */
534 default:
535 error("load %s \"%s\": %s", message, path, ssh_err(r));
536 break;
537 }
538}
539
540/*
Damien Miller13f97b22014-02-24 15:57:55 +1100541 * Read per-user configuration file. Ignore the system wide config
542 * file if the user specifies a config file on the command line.
543 */
544static void
djm@openbsd.org9e34e0c2018-11-23 05:08:07 +0000545process_config_files(const char *host_name, struct passwd *pw, int final_pass,
546 int *want_final_pass)
Damien Miller13f97b22014-02-24 15:57:55 +1100547{
deraadt@openbsd.org087266e2015-01-20 23:14:00 +0000548 char buf[PATH_MAX];
Damien Miller13f97b22014-02-24 15:57:55 +1100549 int r;
550
551 if (config != NULL) {
552 if (strcasecmp(config, "none") != 0 &&
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000553 !read_config_file(config, pw, host, host_name, &options,
djm@openbsd.org9e34e0c2018-11-23 05:08:07 +0000554 SSHCONF_USERCONF | (final_pass ? SSHCONF_FINAL : 0),
555 want_final_pass))
Damien Miller13f97b22014-02-24 15:57:55 +1100556 fatal("Can't open user config file %.100s: "
557 "%.100s", config, strerror(errno));
558 } else {
559 r = snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir,
560 _PATH_SSH_USER_CONFFILE);
561 if (r > 0 && (size_t)r < sizeof(buf))
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000562 (void)read_config_file(buf, pw, host, host_name,
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000563 &options, SSHCONF_CHECKPERM | SSHCONF_USERCONF |
djm@openbsd.org9e34e0c2018-11-23 05:08:07 +0000564 (final_pass ? SSHCONF_FINAL : 0), want_final_pass);
Damien Miller13f97b22014-02-24 15:57:55 +1100565
566 /* Read systemwide configuration file after user config. */
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000567 (void)read_config_file(_PATH_HOST_CONFIG_FILE, pw,
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000568 host, host_name, &options,
djm@openbsd.org9e34e0c2018-11-23 05:08:07 +0000569 final_pass ? SSHCONF_FINAL : 0, want_final_pass);
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000570 }
571}
572
573/* Rewrite the port number in an addrinfo list of addresses */
574static void
575set_addrinfo_port(struct addrinfo *addrs, int port)
576{
577 struct addrinfo *addr;
578
579 for (addr = addrs; addr != NULL; addr = addr->ai_next) {
580 switch (addr->ai_family) {
581 case AF_INET:
582 ((struct sockaddr_in *)addr->ai_addr)->
583 sin_port = htons(port);
584 break;
585 case AF_INET6:
586 ((struct sockaddr_in6 *)addr->ai_addr)->
587 sin6_port = htons(port);
588 break;
589 }
Damien Miller13f97b22014-02-24 15:57:55 +1100590 }
591}
592
593/*
Damien Miller95def091999-11-25 00:26:21 +1100594 * Main program for the ssh client.
595 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000596int
597main(int ac, char **av)
598{
djm@openbsd.org95767262016-03-07 19:02:43 +0000599 struct ssh *ssh = NULL;
djm@openbsd.org643c2ad2017-08-12 06:46:01 +0000600 int i, r, opt, exit_status, use_syslog, direct, timeout_ms;
djm@openbsd.org9e34e0c2018-11-23 05:08:07 +0000601 int was_addr, config_test = 0, opt_terminated = 0, want_final_pass = 0;
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000602 char *p, *cp, *line, *argv0, buf[PATH_MAX], *logfile;
603 char cname[NI_MAXHOST];
Damien Miller95def091999-11-25 00:26:21 +1100604 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000605 struct passwd *pw;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000606 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000607 extern char *optarg;
Damien Miller7acefbb2014-07-18 14:11:24 +1000608 struct Forward fwd;
Damien Miller0faf7472013-10-17 11:47:23 +1100609 struct addrinfo *addrs = NULL;
dtucker@openbsd.org7f8e66f2020-01-23 10:24:29 +0000610 size_t n, len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000611
Darren Tuckerce321d82005-10-03 18:11:24 +1000612 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
613 sanitise_stdfd();
614
Damien Miller59d3d5b2003-08-22 09:34:41 +1000615 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000616
Damien Millerea2c1a42011-06-03 12:10:22 +1000617#ifndef HAVE_SETPROCTITLE
618 /* Prepare for later setproctitle emulation */
619 /* Save argv so it isn't clobbered by setproctitle() emulation */
620 saved_av = xcalloc(ac + 1, sizeof(*saved_av));
621 for (i = 0; i < ac; i++)
622 saved_av[i] = xstrdup(av[i]);
623 saved_av[i] = NULL;
624 compat_init_setproctitle(ac, av);
625 av = saved_av;
626#endif
627
Damien Miller42c5ec42018-11-23 10:40:06 +1100628 seed_rng();
629
Damien Miller5428f641999-11-25 11:54:57 +1100630 /*
Damien Miller00d9ae22010-08-17 01:59:31 +1000631 * Discard other fds that are hanging around. These can cause problem
632 * with backgrounded ssh processes started by ControlPersist.
633 */
634 closefrom(STDERR_FILENO + 1);
635
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000636 /* Get user data. */
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +0000637 pw = getpwuid(getuid());
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000638 if (!pw) {
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +0000639 logit("No user exists for uid %lu", (u_long)getuid());
Darren Tuckere9a9b712005-12-20 16:15:51 +1100640 exit(255);
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000641 }
642 /* Take a copy of the returned structure. */
643 pw = pwcopy(pw);
644
Damien Miller5428f641999-11-25 11:54:57 +1100645 /*
Damien Miller5428f641999-11-25 11:54:57 +1100646 * Set our umask to something reasonable, as some files are created
647 * with the default umask. This will make them world-readable but
648 * writable only by the owner, which is ok for all files for which we
649 * don't set the modes explicitly.
650 */
Damien Miller95def091999-11-25 00:26:21 +1100651 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000652
Damien Millerdda78a02016-12-12 13:57:10 +1100653 msetlocale();
djm@openbsd.org65c6c6b2016-07-17 04:20:16 +0000654
Darren Tuckerd6173c02008-06-13 04:52:53 +1000655 /*
656 * Initialize option structure to indicate that no values have been
657 * set.
658 */
Damien Miller95def091999-11-25 00:26:21 +1100659 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000660
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000661 /*
662 * Prepare main ssh transport/connection structures
663 */
664 if ((ssh = ssh_alloc_session_state()) == NULL)
665 fatal("Couldn't allocate session state");
666 channel_init_channels(ssh);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000667
Damien Miller95def091999-11-25 00:26:21 +1100668 /* Parse command-line arguments. */
669 host = NULL;
Damien Millere272a5b2008-11-03 19:22:37 +1100670 use_syslog = 0;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000671 logfile = NULL;
Darren Tucker72efd742009-06-21 17:48:00 +1000672 argv0 = av[0];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000673
Damien Miller2ecb6bd2006-03-15 12:03:53 +1100674 again:
Darren Tuckerd6173c02008-06-13 04:52:53 +1000675 while ((opt = getopt(ac, av, "1246ab:c:e:fgi:kl:m:no:p:qstvx"
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000676 "AB:CD:E:F:GI:J:KL:MNO:PQ:R:S:TVw:W:XYy")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100677 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000678 case '1':
djm@openbsd.org99f95ba2017-04-30 23:11:45 +0000679 fatal("SSH protocol v.1 is no longer supported");
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000680 break;
Damien Miller4af51302000-04-16 11:18:38 +1000681 case '2':
djm@openbsd.org99f95ba2017-04-30 23:11:45 +0000682 /* Ignored */
Damien Miller4af51302000-04-16 11:18:38 +1000683 break;
Damien Miller34132e52000-01-14 15:45:46 +1100684 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000685 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100686 break;
Damien Miller34132e52000-01-14 15:45:46 +1100687 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000688 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100689 break;
Damien Miller95def091999-11-25 00:26:21 +1100690 case 'n':
691 stdin_null_flag = 1;
692 break;
Damien Miller95def091999-11-25 00:26:21 +1100693 case 'f':
694 fork_after_authentication_flag = 1;
695 stdin_null_flag = 1;
696 break;
Damien Miller95def091999-11-25 00:26:21 +1100697 case 'x':
698 options.forward_x11 = 0;
699 break;
Damien Miller95def091999-11-25 00:26:21 +1100700 case 'X':
701 options.forward_x11 = 1;
702 break;
Damien Millere272a5b2008-11-03 19:22:37 +1100703 case 'y':
704 use_syslog = 1;
705 break;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000706 case 'E':
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000707 logfile = optarg;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000708 break;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000709 case 'G':
710 config_test = 1;
711 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000712 case 'Y':
713 options.forward_x11 = 1;
714 options.forward_x11_trusted = 1;
715 break;
Damien Miller95def091999-11-25 00:26:21 +1100716 case 'g':
Damien Miller7acefbb2014-07-18 14:11:24 +1000717 options.fwd_opts.gateway_ports = 1;
Damien Miller95def091999-11-25 00:26:21 +1100718 break;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100719 case 'O':
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +0000720 if (options.stdio_forward_host != NULL)
Damien Millere1537f92010-01-26 13:26:22 +1100721 fatal("Cannot specify multiplexing "
722 "command with -W");
723 else if (muxclient_command != 0)
724 fatal("Multiplexing command already specified");
Darren Tucker7ebfc102004-11-07 20:06:19 +1100725 if (strcmp(optarg, "check") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000726 muxclient_command = SSHMUX_COMMAND_ALIVE_CHECK;
Damien Miller388f6fc2010-05-21 14:57:35 +1000727 else if (strcmp(optarg, "forward") == 0)
728 muxclient_command = SSHMUX_COMMAND_FORWARD;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100729 else if (strcmp(optarg, "exit") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000730 muxclient_command = SSHMUX_COMMAND_TERMINATE;
Damien Miller6c3eec72011-05-05 14:16:22 +1000731 else if (strcmp(optarg, "stop") == 0)
732 muxclient_command = SSHMUX_COMMAND_STOP;
Damien Millerf6dff7c2011-09-22 21:38:52 +1000733 else if (strcmp(optarg, "cancel") == 0)
734 muxclient_command = SSHMUX_COMMAND_CANCEL_FWD;
markus@openbsd.org8d057842016-09-30 09:19:13 +0000735 else if (strcmp(optarg, "proxy") == 0)
736 muxclient_command = SSHMUX_COMMAND_PROXY;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100737 else
738 fatal("Invalid multiplex command.");
739 break;
Damien Miller147bba32002-09-04 16:46:06 +1000740 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100741 break;
Damien Millerd937dc02013-12-05 10:19:54 +1100742 case 'Q':
Damien Millerea111192013-04-23 19:24:32 +1000743 cp = NULL;
dtucker@openbsd.orgd4d9e1d2020-02-07 03:54:44 +0000744 if (strcmp(optarg, "cipher") == 0 ||
745 strcasecmp(optarg, "Ciphers") == 0)
Damien Miller0fde8ac2013-11-21 14:12:23 +1100746 cp = cipher_alg_list('\n', 0);
Damien Millerd937dc02013-12-05 10:19:54 +1100747 else if (strcmp(optarg, "cipher-auth") == 0)
Damien Miller0fde8ac2013-11-21 14:12:23 +1100748 cp = cipher_alg_list('\n', 1);
dtucker@openbsd.orgd4d9e1d2020-02-07 03:54:44 +0000749 else if (strcmp(optarg, "mac") == 0 ||
750 strcasecmp(optarg, "MACs") == 0)
Damien Miller690d9892013-11-08 12:16:49 +1100751 cp = mac_alg_list('\n');
dtucker@openbsd.orgd4d9e1d2020-02-07 03:54:44 +0000752 else if (strcmp(optarg, "kex") == 0 ||
753 strcasecmp(optarg, "KexAlgorithms") == 0)
Damien Miller690d9892013-11-08 12:16:49 +1100754 cp = kex_alg_list('\n');
Damien Millerd937dc02013-12-05 10:19:54 +1100755 else if (strcmp(optarg, "key") == 0)
djm@openbsd.org183ba552017-03-10 04:07:20 +0000756 cp = sshkey_alg_list(0, 0, 0, '\n');
Damien Miller5be9d9e2013-12-07 11:24:01 +1100757 else if (strcmp(optarg, "key-cert") == 0)
djm@openbsd.org183ba552017-03-10 04:07:20 +0000758 cp = sshkey_alg_list(1, 0, 0, '\n');
Damien Miller5be9d9e2013-12-07 11:24:01 +1100759 else if (strcmp(optarg, "key-plain") == 0)
djm@openbsd.org183ba552017-03-10 04:07:20 +0000760 cp = sshkey_alg_list(0, 1, 0, '\n');
dtucker@openbsd.orgd4d9e1d2020-02-07 03:54:44 +0000761 else if (strcmp(optarg, "key-sig") == 0 ||
762 strcasecmp(optarg, "PubkeyAcceptedKeyTypes") == 0 ||
763 strcasecmp(optarg, "HostKeyAlgorithms") == 0 ||
764 strcasecmp(optarg, "HostbasedKeyTypes") == 0 ||
765 strcasecmp(optarg, "HostbasedAcceptedKeyTypes") == 0)
766 cp = sshkey_alg_list(0, 0, 1, '\n');
djm@openbsd.org357128a2018-09-12 01:30:10 +0000767 else if (strcmp(optarg, "sig") == 0)
djm@openbsd.orgaa083aa2018-09-20 03:31:49 +0000768 cp = sshkey_alg_list(0, 1, 1, '\n');
djm@openbsd.org357128a2018-09-12 01:30:10 +0000769 else if (strcmp(optarg, "protocol-version") == 0)
djm@openbsd.org68d2dfc2015-03-03 06:48:58 +0000770 cp = xstrdup("2");
dtucker@openbsd.org7f8e66f2020-01-23 10:24:29 +0000771 else if (strcmp(optarg, "compression") == 0) {
772 cp = xstrdup(compression_alg_list(0));
773 len = strlen(cp);
774 for (n = 0; n < len; n++)
775 if (cp[n] == ',')
776 cp[n] = '\n';
777 } else if (strcmp(optarg, "help") == 0) {
djm@openbsd.org357128a2018-09-12 01:30:10 +0000778 cp = xstrdup(
dtucker@openbsd.org7f8e66f2020-01-23 10:24:29 +0000779 "cipher\ncipher-auth\ncompression\nkex\n"
dtucker@openbsd.orgd4d9e1d2020-02-07 03:54:44 +0000780 "key\nkey-cert\nkey-plain\nkey-sig\nmac\n"
djm@openbsd.org357128a2018-09-12 01:30:10 +0000781 "protocol-version\nsig");
djm@openbsd.org68d2dfc2015-03-03 06:48:58 +0000782 }
Damien Millerea111192013-04-23 19:24:32 +1000783 if (cp == NULL)
784 fatal("Unsupported query \"%s\"", optarg);
785 printf("%s\n", cp);
786 free(cp);
787 exit(0);
788 break;
Damien Miller95def091999-11-25 00:26:21 +1100789 case 'a':
790 options.forward_agent = 0;
791 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000792 case 'A':
793 options.forward_agent = 1;
794 break;
Damien Miller95def091999-11-25 00:26:21 +1100795 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100796 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100797 break;
Darren Tucker415bddc2007-06-12 23:43:16 +1000798 case 'K':
799 options.gss_authentication = 1;
800 options.gss_deleg_creds = 1;
801 break;
Damien Miller95def091999-11-25 00:26:21 +1100802 case 'i':
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +0000803 p = tilde_expand_filename(optarg, getuid());
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +0000804 if (stat(p, &st) == -1)
Damien Millerf4614452001-07-14 12:18:10 +1000805 fprintf(stderr, "Warning: Identity file %s "
dtucker@openbsd.org03239c12015-10-25 23:42:00 +0000806 "not accessible: %s.\n", p,
Damien Miller3eb48b62005-03-01 21:15:46 +1100807 strerror(errno));
dtucker@openbsd.org03239c12015-10-25 23:42:00 +0000808 else
809 add_identity_file(&options, NULL, p, 1);
810 free(p);
Damien Miller95def091999-11-25 00:26:21 +1100811 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000812 case 'I':
Damien Miller7ea845e2010-02-12 09:21:02 +1100813#ifdef ENABLE_PKCS11
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000814 free(options.pkcs11_provider);
Damien Miller7ea845e2010-02-12 09:21:02 +1100815 options.pkcs11_provider = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000816#else
Damien Miller7ea845e2010-02-12 09:21:02 +1100817 fprintf(stderr, "no support for PKCS#11.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000818#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000819 break;
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000820 case 'J':
djm@openbsd.orgcb8f5652019-06-14 04:13:58 +0000821 if (options.jump_host != NULL) {
822 fatal("Only a single -J option is permitted "
823 "(use commas to separate multiple "
824 "jump hops)");
825 }
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000826 if (options.proxy_command != NULL)
827 fatal("Cannot specify -J with ProxyCommand");
828 if (parse_jump(optarg, &options, 1) == -1)
829 fatal("Invalid -J argument");
830 options.proxy_command = xstrdup("none");
831 break;
Damien Miller95def091999-11-25 00:26:21 +1100832 case 't':
Damien Miller21771e22011-05-15 08:45:50 +1000833 if (options.request_tty == REQUEST_TTY_YES)
834 options.request_tty = REQUEST_TTY_FORCE;
835 else
836 options.request_tty = REQUEST_TTY_YES;
Damien Miller95def091999-11-25 00:26:21 +1100837 break;
Damien Miller95def091999-11-25 00:26:21 +1100838 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000839 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100840 debug_flag = 1;
841 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000842 } else {
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000843 if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
844 debug_flag++;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000845 options.log_level++;
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000846 }
Darren Tuckere98dfa32003-07-19 19:54:31 +1000847 }
Damien Miller03d4d7e2013-04-23 15:21:06 +1000848 break;
Damien Miller95def091999-11-25 00:26:21 +1100849 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100850 fprintf(stderr, "%s, %s\n",
Damien Miller1f0311c2014-05-15 14:24:09 +1000851 SSH_RELEASE,
852#ifdef WITH_OPENSSL
djm@openbsd.orga65784c2018-10-23 05:56:35 +0000853 OpenSSL_version(OPENSSL_VERSION)
Damien Miller1f0311c2014-05-15 14:24:09 +1000854#else
855 "without OpenSSL"
856#endif
857 );
Damien Miller95def091999-11-25 00:26:21 +1100858 if (opt == 'V')
859 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100860 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100861 case 'w':
Damien Miller7b58e802005-12-13 19:33:19 +1100862 if (options.tun_open == -1)
863 options.tun_open = SSH_TUNMODE_DEFAULT;
Damien Millerd27b9472005-12-13 19:29:02 +1100864 options.tun_local = a2tun(optarg, &options.tun_remote);
Damien Miller7b58e802005-12-13 19:33:19 +1100865 if (options.tun_local == SSH_TUNID_ERR) {
Darren Tuckerd6173c02008-06-13 04:52:53 +1000866 fprintf(stderr,
867 "Bad tun device '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100868 exit(255);
Damien Millerd27b9472005-12-13 19:29:02 +1100869 }
870 break;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100871 case 'W':
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +0000872 if (options.stdio_forward_host != NULL)
Damien Millere1537f92010-01-26 13:26:22 +1100873 fatal("stdio forward already specified");
874 if (muxclient_command != 0)
875 fatal("Cannot specify stdio forward with -O");
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100876 if (parse_forward(&fwd, optarg, 1, 0)) {
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +0000877 options.stdio_forward_host = fwd.listen_host;
878 options.stdio_forward_port = fwd.listen_port;
Darren Tuckera627d422013-06-02 07:31:17 +1000879 free(fwd.connect_host);
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100880 } else {
881 fprintf(stderr,
882 "Bad stdio forwarding specification '%s'\n",
883 optarg);
884 exit(255);
885 }
Damien Miller21771e22011-05-15 08:45:50 +1000886 options.request_tty = REQUEST_TTY_NO;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100887 no_shell_flag = 1;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100888 break;
Damien Miller95def091999-11-25 00:26:21 +1100889 case 'q':
890 options.log_level = SYSLOG_LEVEL_QUIET;
891 break;
Damien Miller95def091999-11-25 00:26:21 +1100892 case 'e':
893 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000894 (u_char) optarg[1] >= 64 &&
895 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000896 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100897 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000898 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100899 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000900 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100901 else {
Damien Millerf4614452001-07-14 12:18:10 +1000902 fprintf(stderr, "Bad escape character '%s'.\n",
903 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100904 exit(255);
Damien Miller95def091999-11-25 00:26:21 +1100905 }
906 break;
Damien Miller95def091999-11-25 00:26:21 +1100907 case 'c':
naddy@openbsd.org91a21352019-09-06 14:45:34 +0000908 if (!ciphers_valid(*optarg == '+' || *optarg == '^' ?
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000909 optarg + 1 : optarg)) {
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000910 fprintf(stderr, "Unknown cipher type '%s'\n",
911 optarg);
912 exit(255);
913 }
djm@openbsd.orgcdccebd2017-04-30 23:15:04 +0000914 free(options.ciphers);
915 options.ciphers = xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100916 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000917 case 'm':
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000918 if (mac_valid(optarg)) {
919 free(options.macs);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000920 options.macs = xstrdup(optarg);
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000921 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000922 fprintf(stderr, "Unknown mac type '%s'\n",
923 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100924 exit(255);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000925 }
926 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000927 case 'M':
Damien Millerd14b1e72005-06-16 13:19:41 +1000928 if (options.control_master == SSHCTL_MASTER_YES)
929 options.control_master = SSHCTL_MASTER_ASK;
930 else
931 options.control_master = SSHCTL_MASTER_YES;
Damien Miller0e220db2004-06-15 10:34:08 +1000932 break;
Damien Miller95def091999-11-25 00:26:21 +1100933 case 'p':
millert@openbsd.org887669e2017-10-21 23:06:24 +0000934 if (options.port == -1) {
935 options.port = a2port(optarg);
936 if (options.port <= 0) {
937 fprintf(stderr, "Bad port '%s'\n",
938 optarg);
939 exit(255);
940 }
Ben Lindstrom146edb92001-04-11 23:06:28 +0000941 }
Damien Miller95def091999-11-25 00:26:21 +1100942 break;
Damien Miller95def091999-11-25 00:26:21 +1100943 case 'l':
millert@openbsd.org887669e2017-10-21 23:06:24 +0000944 if (options.user == NULL)
945 options.user = optarg;
Damien Miller95def091999-11-25 00:26:21 +1100946 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000947
Damien Miller95def091999-11-25 00:26:21 +1100948 case 'L':
Damien Miller4bf648f2009-02-14 16:28:21 +1100949 if (parse_forward(&fwd, optarg, 0, 0))
Damien Millerf91ee4c2005-03-01 21:24:33 +1100950 add_local_forward(&options, &fwd);
951 else {
Damien Millerf4614452001-07-14 12:18:10 +1000952 fprintf(stderr,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100953 "Bad local forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000954 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100955 exit(255);
Ben Lindstrom1a174712001-09-12 17:56:15 +0000956 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100957 break;
958
959 case 'R':
markus@openbsd.org609d7a62017-09-21 19:16:53 +0000960 if (parse_forward(&fwd, optarg, 0, 1) ||
961 parse_forward(&fwd, optarg, 1, 1)) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100962 add_remote_forward(&options, &fwd);
963 } else {
964 fprintf(stderr,
965 "Bad remote forwarding specification "
966 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100967 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100968 }
Damien Miller95def091999-11-25 00:26:21 +1100969 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000970
971 case 'D':
Damien Miller4bf648f2009-02-14 16:28:21 +1100972 if (parse_forward(&fwd, optarg, 1, 0)) {
Damien Millera699d952008-11-03 19:27:34 +1100973 add_local_forward(&options, &fwd);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100974 } else {
Damien Millera699d952008-11-03 19:27:34 +1100975 fprintf(stderr,
976 "Bad dynamic forwarding specification "
977 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100978 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000979 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000980 break;
981
Damien Miller95def091999-11-25 00:26:21 +1100982 case 'C':
dtucker@openbsd.org7f8e66f2020-01-23 10:24:29 +0000983#ifdef WITH_ZLIB
Damien Miller95def091999-11-25 00:26:21 +1100984 options.compression = 1;
dtucker@openbsd.org7f8e66f2020-01-23 10:24:29 +0000985#else
986 error("Compression not supported, disabling.");
987#endif
Damien Miller95def091999-11-25 00:26:21 +1100988 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000989 case 'N':
990 no_shell_flag = 1;
Damien Miller21771e22011-05-15 08:45:50 +1000991 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000992 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000993 case 'T':
Damien Miller21771e22011-05-15 08:45:50 +1000994 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000995 break;
Damien Miller95def091999-11-25 00:26:21 +1100996 case 'o':
Damien Miller9836cf82003-12-17 16:30:06 +1100997 line = xstrdup(optarg);
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000998 if (process_config_line(&options, pw,
999 host ? host : "", host ? host : "", line,
1000 "command-line", 0, NULL, SSHCONF_USERCONF) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +11001001 exit(255);
Darren Tuckera627d422013-06-02 07:31:17 +10001002 free(line);
Damien Miller95def091999-11-25 00:26:21 +11001003 break;
Damien Miller832562e2001-01-30 09:30:01 +11001004 case 's':
1005 subsystem_flag = 1;
1006 break;
Damien Miller0e220db2004-06-15 10:34:08 +10001007 case 'S':
mmcc@openbsd.orgd59ce082015-12-10 17:08:40 +00001008 free(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +10001009 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +10001010 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +00001011 case 'b':
1012 options.bind_address = optarg;
1013 break;
djm@openbsd.orgac2e3022018-02-23 02:34:33 +00001014 case 'B':
1015 options.bind_interface = optarg;
1016 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +00001017 case 'F':
1018 config = optarg;
1019 break;
Damien Miller95def091999-11-25 00:26:21 +11001020 default:
1021 usage();
1022 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001023 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001024
djm@openbsd.org643c2ad2017-08-12 06:46:01 +00001025 if (optind > 1 && strcmp(av[optind - 1], "--") == 0)
1026 opt_terminated = 1;
1027
Damien Millerf4614452001-07-14 12:18:10 +10001028 ac -= optind;
1029 av += optind;
1030
Darren Tuckerb8c884a2010-01-08 18:53:43 +11001031 if (ac > 0 && !host) {
millert@openbsd.org887669e2017-10-21 23:06:24 +00001032 int tport;
1033 char *tuser;
1034 switch (parse_ssh_uri(*av, &tuser, &host, &tport)) {
1035 case -1:
1036 usage();
1037 break;
1038 case 0:
1039 if (options.user == NULL) {
1040 options.user = tuser;
1041 tuser = NULL;
1042 }
1043 free(tuser);
1044 if (options.port == -1 && tport != -1)
1045 options.port = tport;
1046 break;
1047 default:
Damien Millerf4614452001-07-14 12:18:10 +10001048 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +00001049 cp = strrchr(p, '@');
millert@openbsd.org887669e2017-10-21 23:06:24 +00001050 if (cp != NULL) {
1051 if (cp == p)
1052 usage();
1053 if (options.user == NULL) {
1054 options.user = p;
1055 p = NULL;
1056 }
1057 *cp++ = '\0';
1058 host = xstrdup(cp);
1059 free(p);
1060 } else
1061 host = p;
1062 break;
1063 }
djm@openbsd.org643c2ad2017-08-12 06:46:01 +00001064 if (ac > 1 && !opt_terminated) {
Ben Lindstromb9fa6912002-12-23 02:24:54 +00001065 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +10001066 goto again;
1067 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +00001068 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +10001069 }
1070
Damien Miller95def091999-11-25 00:26:21 +11001071 /* Check that we got a host name. */
1072 if (!host)
1073 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001074
Damien Miller0faf7472013-10-17 11:47:23 +11001075 host_arg = xstrdup(host);
1076
Damien Miller95def091999-11-25 00:26:21 +11001077 /* Initialize the command to execute on remote host. */
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +00001078 if ((command = sshbuf_new()) == NULL)
1079 fatal("sshbuf_new failed");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001080
Damien Miller5428f641999-11-25 11:54:57 +11001081 /*
1082 * Save the command to execute on the remote host in a buffer. There
1083 * is no limit on the length of the command, except by the maximum
1084 * packet size. Also sets the tty flag if there is no command.
1085 */
Damien Millerf4614452001-07-14 12:18:10 +10001086 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +11001087 /* No command specified - execute shell on a tty. */
Damien Miller832562e2001-01-30 09:30:01 +11001088 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +10001089 fprintf(stderr,
1090 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +11001091 usage();
1092 }
Damien Miller95def091999-11-25 00:26:21 +11001093 } else {
Damien Millerf4614452001-07-14 12:18:10 +10001094 /* A command has been specified. Store it into the buffer. */
1095 for (i = 0; i < ac; i++) {
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +00001096 if ((r = sshbuf_putf(command, "%s%s",
1097 i ? " " : "", av[i])) != 0)
1098 fatal("%s: buffer error: %s",
1099 __func__, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11001100 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001101 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001102
Ben Lindstrom8a432f52001-03-05 07:24:46 +00001103 /*
1104 * Initialize "log" output. Since we are the client all output
Damien Miller03d4d7e2013-04-23 15:21:06 +10001105 * goes to stderr unless otherwise specified by -y or -E.
Ben Lindstrom8a432f52001-03-05 07:24:46 +00001106 */
Damien Miller03d4d7e2013-04-23 15:21:06 +10001107 if (use_syslog && logfile != NULL)
1108 fatal("Can't specify both -y and -E");
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +00001109 if (logfile != NULL)
Damien Miller03d4d7e2013-04-23 15:21:06 +10001110 log_redirect_stderr_to(logfile);
Darren Tucker72efd742009-06-21 17:48:00 +10001111 log_init(argv0,
djm@openbsd.org@openbsd.orgdbe06622017-10-27 01:57:06 +00001112 options.log_level == SYSLOG_LEVEL_NOT_SET ?
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +00001113 SYSLOG_LEVEL_INFO : options.log_level,
djm@openbsd.org@openbsd.orgdbe06622017-10-27 01:57:06 +00001114 options.log_facility == SYSLOG_FACILITY_NOT_SET ?
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +00001115 SYSLOG_FACILITY_USER : options.log_facility,
1116 !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001117
Damien Miller03d4d7e2013-04-23 15:21:06 +10001118 if (debug_flag)
Damien Miller1f0311c2014-05-15 14:24:09 +10001119 logit("%s, %s", SSH_RELEASE,
1120#ifdef WITH_OPENSSL
djm@openbsd.orga65784c2018-10-23 05:56:35 +00001121 OpenSSL_version(OPENSSL_VERSION)
Damien Miller1f0311c2014-05-15 14:24:09 +10001122#else
1123 "without OpenSSL"
1124#endif
1125 );
Damien Miller03d4d7e2013-04-23 15:21:06 +10001126
Damien Miller13f97b22014-02-24 15:57:55 +11001127 /* Parse the configuration files */
djm@openbsd.org9e34e0c2018-11-23 05:08:07 +00001128 process_config_files(host_arg, pw, 0, &want_final_pass);
1129 if (want_final_pass)
1130 debug("configuration requests final Match pass");
Ben Lindstrom83f07d12001-10-03 17:22:29 +00001131
Damien Miller13f97b22014-02-24 15:57:55 +11001132 /* Hostname canonicalisation needs a few options filled. */
1133 fill_default_options_for_canonicalization(&options);
1134
1135 /* If the user has replaced the hostname then take it into use now */
1136 if (options.hostname != NULL) {
1137 /* NB. Please keep in sync with readconf.c:match_cfg_line() */
1138 cp = percent_expand(options.hostname,
1139 "h", host, (char *)NULL);
1140 free(host);
1141 host = cp;
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001142 free(options.hostname);
1143 options.hostname = xstrdup(host);
Damien Miller13f97b22014-02-24 15:57:55 +11001144 }
1145
djm@openbsd.orgfc21ea92018-01-23 05:06:25 +00001146 /* Don't lowercase addresses, they will be explicitly canonicalised */
1147 if ((was_addr = is_addr(host)) == 0)
1148 lowercase(host);
1149
1150 /*
1151 * Try to canonicalize if requested by configuration or the
1152 * hostname is an address.
1153 */
1154 if (options.canonicalize_hostname != SSH_CANONICALISE_NO || was_addr)
Damien Miller13f97b22014-02-24 15:57:55 +11001155 addrs = resolve_canonicalize(&host, options.port);
1156
1157 /*
Damien Miller08b57c62014-02-27 10:17:13 +11001158 * If CanonicalizePermittedCNAMEs have been specified but
1159 * other canonicalization did not happen (by not being requested
1160 * or by failing with fallback) then the hostname may still be changed
djm@openbsd.org@openbsd.orgdbe06622017-10-27 01:57:06 +00001161 * as a result of CNAME following.
Damien Miller08b57c62014-02-27 10:17:13 +11001162 *
1163 * Try to resolve the bare hostname name using the system resolver's
1164 * usual search rules and then apply the CNAME follow rules.
1165 *
1166 * Skip the lookup if a ProxyCommand is being used unless the user
1167 * has specifically requested canonicalisation for this case via
1168 * CanonicalizeHostname=always
Damien Miller13f97b22014-02-24 15:57:55 +11001169 */
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001170 direct = option_clear_or_none(options.proxy_command) &&
1171 options.jump_host == NULL;
1172 if (addrs == NULL && options.num_permitted_cnames != 0 && (direct ||
1173 options.canonicalize_hostname == SSH_CANONICALISE_ALWAYS)) {
Damien Miller19439e92014-07-02 15:28:40 +10001174 if ((addrs = resolve_host(host, options.port,
djm@openbsd.org383a33d2018-09-21 03:11:36 +00001175 direct, cname, sizeof(cname))) == NULL) {
Damien Miller19439e92014-07-02 15:28:40 +10001176 /* Don't fatal proxied host names not in the DNS */
djm@openbsd.org383a33d2018-09-21 03:11:36 +00001177 if (direct)
Damien Miller19439e92014-07-02 15:28:40 +10001178 cleanup_exit(255); /* logged in resolve_host */
1179 } else
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001180 check_follow_cname(direct, &host, cname);
Damien Miller13f97b22014-02-24 15:57:55 +11001181 }
1182
1183 /*
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001184 * If canonicalisation is enabled then re-parse the configuration
1185 * files as new stanzas may match.
Damien Miller13f97b22014-02-24 15:57:55 +11001186 */
djm@openbsd.org9e34e0c2018-11-23 05:08:07 +00001187 if (options.canonicalize_hostname != 0 && !want_final_pass) {
1188 debug("hostname canonicalisation enabled, "
1189 "will re-parse configuration");
1190 want_final_pass = 1;
1191 }
1192
1193 if (want_final_pass) {
1194 debug("re-parsing configuration");
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001195 free(options.hostname);
1196 options.hostname = xstrdup(host);
djm@openbsd.org9e34e0c2018-11-23 05:08:07 +00001197 process_config_files(host_arg, pw, 1, NULL);
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001198 /*
1199 * Address resolution happens early with canonicalisation
1200 * enabled and the port number may have changed since, so
1201 * reset it in address list
1202 */
1203 if (addrs != NULL && options.port > 0)
1204 set_addrinfo_port(addrs, options.port);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +00001205 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001206
Damien Miller95def091999-11-25 00:26:21 +11001207 /* Fill configuration defaults. */
1208 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001209
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001210 /*
1211 * If ProxyJump option specified, then construct a ProxyCommand now.
1212 */
1213 if (options.jump_host != NULL) {
1214 char port_s[8];
djm@openbsd.orgd8748b92018-06-01 03:11:49 +00001215 const char *sshbin = argv0;
dtucker@openbsd.orgde1f3562020-02-18 08:49:49 +00001216 int port = options.port, jumpport = options.jump_port;
1217
1218 if (port <= 0)
1219 port = default_ssh_port();
1220 if (jumpport <= 0)
1221 jumpport = default_ssh_port();
1222 if (strcmp(options.jump_host, host) == 0 && port == jumpport)
1223 fatal("jumphost loop via %s", options.jump_host);
djm@openbsd.orgd8748b92018-06-01 03:11:49 +00001224
1225 /*
1226 * Try to use SSH indicated by argv[0], but fall back to
1227 * "ssh" if it appears unavailable.
1228 */
1229 if (strchr(argv0, '/') != NULL && access(argv0, X_OK) != 0)
1230 sshbin = "ssh";
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001231
1232 /* Consistency check */
1233 if (options.proxy_command != NULL)
1234 fatal("inconsistent options: ProxyCommand+ProxyJump");
1235 /* Never use FD passing for ProxyJump */
1236 options.proxy_use_fdpass = 0;
1237 snprintf(port_s, sizeof(port_s), "%d", options.jump_port);
1238 xasprintf(&options.proxy_command,
djm@openbsd.orgd8748b92018-06-01 03:11:49 +00001239 "%s%s%s%s%s%s%s%s%s%s%.*s -W '[%%h]:%%p' %s",
1240 sshbin,
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001241 /* Optional "-l user" argument if jump_user set */
1242 options.jump_user == NULL ? "" : " -l ",
1243 options.jump_user == NULL ? "" : options.jump_user,
1244 /* Optional "-p port" argument if jump_port set */
1245 options.jump_port <= 0 ? "" : " -p ",
1246 options.jump_port <= 0 ? "" : port_s,
1247 /* Optional additional jump hosts ",..." */
1248 options.jump_extra == NULL ? "" : " -J ",
1249 options.jump_extra == NULL ? "" : options.jump_extra,
1250 /* Optional "-F" argumment if -F specified */
1251 config == NULL ? "" : " -F ",
1252 config == NULL ? "" : config,
1253 /* Optional "-v" arguments if -v set */
1254 debug_flag ? " -" : "",
1255 debug_flag, "vvv",
1256 /* Mandatory hostname */
1257 options.jump_host);
1258 debug("Setting implicit ProxyCommand from ProxyJump: %s",
1259 options.proxy_command);
1260 }
1261
Damien Miller13f97b22014-02-24 15:57:55 +11001262 if (options.port == 0)
1263 options.port = default_ssh_port();
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001264 channel_set_af(ssh, options.address_family);
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001265
Damien Millere9fc72e2013-10-15 12:14:12 +11001266 /* Tidy and check options */
1267 if (options.host_key_alias != NULL)
1268 lowercase(options.host_key_alias);
1269 if (options.proxy_command != NULL &&
1270 strcmp(options.proxy_command, "-") == 0 &&
1271 options.proxy_use_fdpass)
1272 fatal("ProxyCommand=- and ProxyUseFDPass are incompatible");
markus@openbsd.orgda222162020-01-27 20:51:32 +00001273 if (options.update_hostkeys == SSH_UPDATE_HOSTKEYS_ASK) {
1274 if (options.control_persist && options.control_path != NULL) {
1275 debug("UpdateHostKeys=ask is incompatible with "
1276 "ControlPersist; disabling");
1277 options.update_hostkeys = 0;
1278 } else if (sshbuf_len(command) != 0 ||
1279 options.remote_command != NULL ||
1280 options.request_tty == REQUEST_TTY_NO) {
1281 debug("UpdateHostKeys=ask is incompatible with "
1282 "remote command execution; disabling");
1283 options.update_hostkeys = 0;
djm@openbsd.org156bef32020-01-28 07:24:15 +00001284 } else if (options.log_level < SYSLOG_LEVEL_INFO) {
1285 /* no point logging anything; user won't see it */
1286 options.update_hostkeys = 0;
markus@openbsd.orgda222162020-01-27 20:51:32 +00001287 }
djm@openbsd.org44732de2015-02-20 22:17:21 +00001288 }
djm@openbsd.org88b6fcd2015-11-19 08:23:27 +00001289 if (options.connection_attempts <= 0)
1290 fatal("Invalid number of ConnectionAttempts");
Damien Millere9fc72e2013-10-15 12:14:12 +11001291
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +00001292 if (sshbuf_len(command) != 0 && options.remote_command != NULL)
bluhm@openbsd.org1112b532017-05-30 18:58:37 +00001293 fatal("Cannot execute command-line and remote command.");
1294
1295 /* Cannot fork to background if no command. */
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +00001296 if (fork_after_authentication_flag && sshbuf_len(command) == 0 &&
bluhm@openbsd.org1112b532017-05-30 18:58:37 +00001297 options.remote_command == NULL && !no_shell_flag)
1298 fatal("Cannot fork into background without a command "
1299 "to execute.");
1300
Damien Miller95def091999-11-25 00:26:21 +11001301 /* reinit */
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +00001302 log_init(argv0, options.log_level, options.log_facility, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001303
Damien Millerfff9f092012-07-06 13:45:01 +10001304 if (options.request_tty == REQUEST_TTY_YES ||
1305 options.request_tty == REQUEST_TTY_FORCE)
1306 tty_flag = 1;
1307
1308 /* Allocate a tty by default if no command specified. */
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +00001309 if (sshbuf_len(command) == 0 && options.remote_command == NULL)
Damien Millerfff9f092012-07-06 13:45:01 +10001310 tty_flag = options.request_tty != REQUEST_TTY_NO;
1311
1312 /* Force no tty */
markus@openbsd.org8d057842016-09-30 09:19:13 +00001313 if (options.request_tty == REQUEST_TTY_NO ||
1314 (muxclient_command && muxclient_command != SSHMUX_COMMAND_PROXY))
Damien Millerfff9f092012-07-06 13:45:01 +10001315 tty_flag = 0;
1316 /* Do not allocate a tty if stdin is not a tty. */
1317 if ((!isatty(fileno(stdin)) || stdin_null_flag) &&
1318 options.request_tty != REQUEST_TTY_FORCE) {
1319 if (tty_flag)
1320 logit("Pseudo-terminal will not be allocated because "
1321 "stdin is not a terminal.");
1322 tty_flag = 0;
1323 }
1324
Damien Miller95def091999-11-25 00:26:21 +11001325 if (options.user == NULL)
1326 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001327
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001328 /* Set up strings used to percent_expand() arguments */
Damien Millerdfc85fa2011-05-15 08:44:02 +10001329 if (gethostname(thishost, sizeof(thishost)) == -1)
1330 fatal("gethostname: %s", strerror(errno));
1331 strlcpy(shorthost, thishost, sizeof(shorthost));
1332 shorthost[strcspn(thishost, ".")] = '\0';
1333 snprintf(portstr, sizeof(portstr), "%d", options.port);
djm@openbsd.org9c935dd2018-06-01 03:33:53 +00001334 snprintf(uidstr, sizeof(uidstr), "%llu",
1335 (unsigned long long)pw->pw_uid);
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001336
dtucker@openbsd.orged833da2020-04-03 02:27:12 +00001337 conn_hash_hex = ssh_connection_hash(thishost, host, portstr,
1338 options.user);
Damien Miller9c386432014-07-03 21:27:46 +10001339
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001340 /*
1341 * Expand tokens in arguments. NB. LocalCommand is expanded later,
1342 * after port-forwarding is set up, so it may pick up any local
1343 * tunnel interface name allocated.
1344 */
bluhm@openbsd.org1112b532017-05-30 18:58:37 +00001345 if (options.remote_command != NULL) {
1346 debug3("expanding RemoteCommand: %s", options.remote_command);
1347 cp = options.remote_command;
1348 options.remote_command = percent_expand(cp,
dtucker@openbsd.orged833da2020-04-03 02:27:12 +00001349 DEFAULT_CLIENT_PERCENT_EXPAND_ARGS,
bluhm@openbsd.org1112b532017-05-30 18:58:37 +00001350 "d", pw->pw_dir,
1351 "h", host,
bluhm@openbsd.org1112b532017-05-30 18:58:37 +00001352 "r", options.user,
1353 "u", pw->pw_name,
1354 (char *)NULL);
1355 debug3("expanded RemoteCommand: %s", options.remote_command);
1356 free(cp);
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +00001357 if ((r = sshbuf_put(command, options.remote_command,
1358 strlen(options.remote_command))) != 0)
1359 fatal("%s: buffer error: %s", __func__, ssh_err(r));
bluhm@openbsd.org1112b532017-05-30 18:58:37 +00001360 }
1361
Damien Miller0e220db2004-06-15 10:34:08 +10001362 if (options.control_path != NULL) {
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +00001363 cp = tilde_expand_filename(options.control_path, getuid());
Darren Tuckera627d422013-06-02 07:31:17 +10001364 free(options.control_path);
Damien Miller9c386432014-07-03 21:27:46 +10001365 options.control_path = percent_expand(cp,
dtucker@openbsd.orged833da2020-04-03 02:27:12 +00001366 DEFAULT_CLIENT_PERCENT_EXPAND_ARGS,
1367 "d", pw->pw_dir,
Damien Miller9c386432014-07-03 21:27:46 +10001368 "h", host,
Damien Miller9c386432014-07-03 21:27:46 +10001369 "r", options.user,
1370 "u", pw->pw_name,
Damien Millerdfc85fa2011-05-15 08:44:02 +10001371 (char *)NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10001372 free(cp);
Damien Miller0e220db2004-06-15 10:34:08 +10001373 }
Damien Miller9c386432014-07-03 21:27:46 +10001374
dtucker@openbsd.orged833da2020-04-03 02:27:12 +00001375 if (options.identity_agent != NULL) {
1376 p = tilde_expand_filename(options.identity_agent, getuid());
1377 cp = percent_expand(p,
1378 DEFAULT_CLIENT_PERCENT_EXPAND_ARGS,
1379 "d", pw->pw_dir,
1380 "h", host,
1381 "r", options.user,
1382 "u", pw->pw_name,
1383 (char *)NULL);
1384 free(p);
1385 free(options.identity_agent);
1386 options.identity_agent = cp;
1387 }
1388
1389 if (options.forward_agent_sock_path != NULL) {
1390 p = tilde_expand_filename(options.forward_agent_sock_path,
1391 getuid());
1392 cp = percent_expand(p,
1393 DEFAULT_CLIENT_PERCENT_EXPAND_ARGS,
1394 "d", pw->pw_dir,
1395 "h", host,
1396 "r", options.user,
1397 "u", pw->pw_name,
1398 (char *)NULL);
1399 free(p);
1400 free(options.forward_agent_sock_path);
1401 options.forward_agent_sock_path = cp;
1402 }
1403
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001404 if (config_test) {
1405 dump_client_config(&options, host);
1406 exit(0);
1407 }
1408
djm@openbsd.org884416b2019-10-31 21:18:28 +00001409 /* Expand SecurityKeyProvider if it refers to an environment variable */
1410 if (options.sk_provider != NULL && *options.sk_provider == '$' &&
1411 strlen(options.sk_provider) > 1) {
1412 if ((cp = getenv(options.sk_provider + 1)) == NULL) {
naddy@openbsd.orga47f6a62020-02-06 22:30:54 +00001413 debug("Authenticator provider %s did not resolve; "
djm@openbsd.org884416b2019-10-31 21:18:28 +00001414 "disabling", options.sk_provider);
1415 free(options.sk_provider);
1416 options.sk_provider = NULL;
1417 } else {
1418 debug2("resolved SecurityKeyProvider %s => %s",
1419 options.sk_provider, cp);
1420 free(options.sk_provider);
1421 options.sk_provider = xstrdup(cp);
1422 }
1423 }
1424
Damien Millerb1cbfa22008-05-19 16:00:08 +10001425 if (muxclient_command != 0 && options.control_path == NULL)
Darren Tucker0814d312005-06-01 23:08:51 +10001426 fatal("No ControlPath specified for \"-O\" command");
markus@openbsd.org8d057842016-09-30 09:19:13 +00001427 if (options.control_path != NULL) {
1428 int sock;
1429 if ((sock = muxclient(options.control_path)) >= 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001430 ssh_packet_set_connection(ssh, sock, sock);
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001431 ssh_packet_set_mux(ssh);
markus@openbsd.org8d057842016-09-30 09:19:13 +00001432 goto skip_connect;
1433 }
1434 }
Damien Miller0e220db2004-06-15 10:34:08 +10001435
Damien Miller08b57c62014-02-27 10:17:13 +11001436 /*
1437 * If hostname canonicalisation was not enabled, then we may not
1438 * have yet resolved the hostname. Do so now.
1439 */
1440 if (addrs == NULL && options.proxy_command == NULL) {
djm@openbsd.orga85768a2015-09-04 04:56:09 +00001441 debug2("resolving \"%s\" port %d", host, options.port);
Damien Miller08b57c62014-02-27 10:17:13 +11001442 if ((addrs = resolve_host(host, options.port, 1,
1443 cname, sizeof(cname))) == NULL)
1444 cleanup_exit(255); /* resolve_host logs the error */
1445 }
1446
Damien Miller67bd0622007-09-17 12:06:57 +10001447 timeout_ms = options.connection_timeout * 1000;
1448
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001449 /* Open a connection to the remote host. */
beck@openbsd.org2ab33572020-01-05 16:28:22 +00001450 if (ssh_connect(ssh, host, host_arg, addrs, &hostaddr, options.port,
Damien Miller0faf7472013-10-17 11:47:23 +11001451 options.address_family, options.connection_attempts,
dtucker@openbsd.org95d41e92018-07-19 10:28:47 +00001452 &timeout_ms, options.tcp_keep_alive) != 0)
Damien Miller0faf7472013-10-17 11:47:23 +11001453 exit(255);
1454
Damien Miller28631ce2013-10-26 10:07:56 +11001455 if (addrs != NULL)
1456 freeaddrinfo(addrs);
1457
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001458 ssh_packet_set_timeout(ssh, options.server_alive_interval,
Damien Miller0faf7472013-10-17 11:47:23 +11001459 options.server_alive_count_max);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001460
Damien Miller67bd0622007-09-17 12:06:57 +10001461 if (timeout_ms > 0)
1462 debug3("timeout: %d ms remain after connect", timeout_ms);
1463
Damien Miller5428f641999-11-25 11:54:57 +11001464 /*
dtucker@openbsd.org26efc2f2018-07-16 11:05:41 +00001465 * If we successfully made the connection and we have hostbased auth
1466 * enabled, load the public keys so we can later use the ssh-keysign
1467 * helper to sign challenges.
Damien Miller5428f641999-11-25 11:54:57 +11001468 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001469 sensitive_data.nkeys = 0;
1470 sensitive_data.keys = NULL;
djm@openbsd.org873d3e72017-04-30 23:18:44 +00001471 if (options.hostbased_authentication) {
dtucker@openbsd.orgac590762018-07-16 22:25:01 +00001472 sensitive_data.nkeys = 10;
Damien Millerddd63ab2006-03-31 23:10:51 +11001473 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001474 sizeof(struct sshkey));
1475
1476 /* XXX check errors? */
dtucker@openbsd.orgac590762018-07-16 22:25:01 +00001477#define L_PUBKEY(p,o) do { \
1478 if ((o) >= sensitive_data.nkeys) \
1479 fatal("%s pubkey out of array bounds", __func__); \
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001480 check_load(sshkey_load_public(p, &(sensitive_data.keys[o]), NULL), \
dtucker@openbsd.orgac590762018-07-16 22:25:01 +00001481 p, "pubkey"); \
1482} while (0)
1483#define L_CERT(p,o) do { \
1484 if ((o) >= sensitive_data.nkeys) \
1485 fatal("%s cert out of array bounds", __func__); \
1486 check_load(sshkey_load_cert(p, &(sensitive_data.keys[o])), p, "cert"); \
1487} while (0)
Ben Lindstromf9c48842002-06-11 16:37:51 +00001488
dtucker@openbsd.org26efc2f2018-07-16 11:05:41 +00001489 if (options.hostbased_authentication == 1) {
dtucker@openbsd.orgac590762018-07-16 22:25:01 +00001490 L_CERT(_PATH_HOST_ECDSA_KEY_FILE, 0);
1491 L_CERT(_PATH_HOST_ED25519_KEY_FILE, 1);
1492 L_CERT(_PATH_HOST_RSA_KEY_FILE, 2);
1493 L_CERT(_PATH_HOST_DSA_KEY_FILE, 3);
1494 L_PUBKEY(_PATH_HOST_ECDSA_KEY_FILE, 4);
1495 L_PUBKEY(_PATH_HOST_ED25519_KEY_FILE, 5);
1496 L_PUBKEY(_PATH_HOST_RSA_KEY_FILE, 6);
1497 L_PUBKEY(_PATH_HOST_DSA_KEY_FILE, 7);
1498 L_CERT(_PATH_HOST_XMSS_KEY_FILE, 8);
1499 L_PUBKEY(_PATH_HOST_XMSS_KEY_FILE, 9);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001500 }
Damien Miller95def091999-11-25 00:26:21 +11001501 }
Damien Miller95def091999-11-25 00:26:21 +11001502
dtucker@openbsd.org258dc8b2018-07-18 11:34:04 +00001503 /* Create ~/.ssh * directory if it doesn't already exist. */
Darren Tucker45c66d72011-11-04 10:50:40 +11001504 if (config == NULL) {
1505 r = snprintf(buf, sizeof buf, "%s%s%s", pw->pw_dir,
1506 strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001507 if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) == -1) {
Darren Tucker8ccb7392010-09-10 12:28:24 +10001508#ifdef WITH_SELINUX
Darren Tucker45c66d72011-11-04 10:50:40 +11001509 ssh_selinux_setfscreatecon(buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001510#endif
Darren Tucker45c66d72011-11-04 10:50:40 +11001511 if (mkdir(buf, 0700) < 0)
1512 error("Could not create directory '%.200s'.",
1513 buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001514#ifdef WITH_SELINUX
Darren Tucker45c66d72011-11-04 10:50:40 +11001515 ssh_selinux_setfscreatecon(NULL);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001516#endif
Darren Tucker45c66d72011-11-04 10:50:40 +11001517 }
Darren Tucker8ccb7392010-09-10 12:28:24 +10001518 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001519 /* load options.identity_files */
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001520 load_public_identity_files(pw);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001521
djm@openbsd.org001aa552018-04-10 00:10:49 +00001522 /* optionally set the SSH_AUTHSOCKET_ENV_NAME variable */
markus@openbsd.org1a75d142016-05-04 14:29:58 +00001523 if (options.identity_agent &&
1524 strcmp(options.identity_agent, SSH_AUTHSOCKET_ENV_NAME) != 0) {
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00001525 if (strcmp(options.identity_agent, "none") == 0) {
1526 unsetenv(SSH_AUTHSOCKET_ENV_NAME);
1527 } else {
dtucker@openbsd.orged833da2020-04-03 02:27:12 +00001528 cp = options.identity_agent;
djm@openbsd.org5eff5b82018-10-03 06:38:35 +00001529 if (cp[0] == '$') {
1530 if (!valid_env_name(cp + 1)) {
1531 fatal("Invalid IdentityAgent "
1532 "environment variable name %s", cp);
1533 }
1534 if ((p = getenv(cp + 1)) == NULL)
1535 unsetenv(SSH_AUTHSOCKET_ENV_NAME);
1536 else
1537 setenv(SSH_AUTHSOCKET_ENV_NAME, p, 1);
1538 } else {
1539 /* identity_agent specifies a path directly */
1540 setenv(SSH_AUTHSOCKET_ENV_NAME, cp, 1);
1541 }
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00001542 }
1543 }
1544
dtucker@openbsd.orged833da2020-04-03 02:27:12 +00001545 if (options.forward_agent && options.forward_agent_sock_path != NULL) {
djm@openbsd.org40be78f2019-12-21 02:19:13 +00001546 if (cp[0] == '$') {
1547 if (!valid_env_name(cp + 1)) {
1548 fatal("Invalid ForwardAgent environment variable name %s", cp);
1549 }
1550 if ((p = getenv(cp + 1)) != NULL)
1551 forward_agent_sock_path = p;
1552 else
1553 options.forward_agent = 0;
1554 free(cp);
1555 } else {
1556 forward_agent_sock_path = cp;
1557 }
1558 }
1559
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001560 /* Expand ~ in known host file names. */
Damien Miller295ee632011-05-29 21:42:31 +10001561 tilde_expand_paths(options.system_hostfiles,
1562 options.num_system_hostfiles);
1563 tilde_expand_paths(options.user_hostfiles, options.num_user_hostfiles);
Damien Miller95def091999-11-25 00:26:21 +11001564
dtucker@openbsd.org3bf2a6a2020-01-23 07:10:22 +00001565 ssh_signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
1566 ssh_signal(SIGCHLD, main_sigchld_handler);
Damien Miller07cd5892001-11-12 10:52:03 +11001567
Darren Tuckerd6173c02008-06-13 04:52:53 +10001568 /* Log into the remote system. Never returns if the login fails. */
djm@openbsd.org0a843d92018-12-27 03:25:24 +00001569 ssh_login(ssh, &sensitive_data, host, (struct sockaddr *)&hostaddr,
Damien Millerd925dcd2010-12-01 12:21:51 +11001570 options.port, pw, timeout_ms);
Damien Miller95def091999-11-25 00:26:21 +11001571
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001572 if (ssh_packet_connection_is_on_socket(ssh)) {
Damien Miller383ffe62010-06-26 10:02:03 +10001573 verbose("Authenticated to %s ([%s]:%d).", host,
djm@openbsd.org95767262016-03-07 19:02:43 +00001574 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
Damien Miller383ffe62010-06-26 10:02:03 +10001575 } else {
1576 verbose("Authenticated to %s (via proxy).", host);
1577 }
1578
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001579 /* We no longer need the private host keys. Clear them now. */
1580 if (sensitive_data.nkeys != 0) {
1581 for (i = 0; i < sensitive_data.nkeys; i++) {
1582 if (sensitive_data.keys[i] != NULL) {
1583 /* Destroys contents safely */
1584 debug3("clear hostkey %d", i);
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001585 sshkey_free(sensitive_data.keys[i]);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001586 sensitive_data.keys[i] = NULL;
1587 }
1588 }
Darren Tuckera627d422013-06-02 07:31:17 +10001589 free(sensitive_data.keys);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001590 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +00001591 for (i = 0; i < options.num_identity_files; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +10001592 free(options.identity_files[i]);
1593 options.identity_files[i] = NULL;
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +00001594 if (options.identity_keys[i]) {
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001595 sshkey_free(options.identity_keys[i]);
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +00001596 options.identity_keys[i] = NULL;
1597 }
1598 }
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001599 for (i = 0; i < options.num_certificate_files; i++) {
1600 free(options.certificate_files[i]);
1601 options.certificate_files[i] = NULL;
1602 }
Damien Miller95def091999-11-25 00:26:21 +11001603
markus@openbsd.org8d057842016-09-30 09:19:13 +00001604 skip_connect:
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001605 exit_status = ssh_session2(ssh, pw);
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001606 ssh_packet_close(ssh);
Damien Miller8c4e18a2002-09-19 12:05:02 +10001607
Damien Millerb1cbfa22008-05-19 16:00:08 +10001608 if (options.control_path != NULL && muxserver_sock != -1)
Damien Miller0e220db2004-06-15 10:34:08 +10001609 unlink(options.control_path);
1610
Damien Millera41ccca2010-10-07 22:07:32 +11001611 /* Kill ProxyCommand if it is running. */
1612 ssh_kill_proxy_command();
Damien Miller8c4e18a2002-09-19 12:05:02 +10001613
Damien Miller1383bd82000-04-06 12:32:37 +10001614 return exit_status;
1615}
1616
Damien Millere11e1ea2010-08-03 16:04:46 +10001617static void
1618control_persist_detach(void)
1619{
1620 pid_t pid;
djm@openbsd.orgd2d6bf82016-04-29 08:07:53 +00001621 int devnull, keep_stderr;
Damien Millere11e1ea2010-08-03 16:04:46 +10001622
1623 debug("%s: backgrounding master process", __func__);
1624
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00001625 /*
1626 * master (current process) into the background, and make the
1627 * foreground process a client of the backgrounded master.
1628 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001629 switch ((pid = fork())) {
1630 case -1:
1631 fatal("%s: fork: %s", __func__, strerror(errno));
1632 case 0:
1633 /* Child: master process continues mainloop */
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00001634 break;
1635 default:
Damien Millere11e1ea2010-08-03 16:04:46 +10001636 /* Parent: set up mux slave to connect to backgrounded master */
1637 debug2("%s: background process is %ld", __func__, (long)pid);
1638 stdin_null_flag = ostdin_null_flag;
Damien Miller21771e22011-05-15 08:45:50 +10001639 options.request_tty = orequest_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +10001640 tty_flag = otty_flag;
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00001641 close(muxserver_sock);
1642 muxserver_sock = -1;
Damien Miller5929c522010-09-10 11:17:02 +10001643 options.control_master = SSHCTL_MASTER_NO;
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00001644 muxclient(options.control_path);
Damien Millere11e1ea2010-08-03 16:04:46 +10001645 /* muxclient() doesn't return on success. */
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00001646 fatal("Failed to connect to new control master");
1647 }
Damien Miller00d9ae22010-08-17 01:59:31 +10001648 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
1649 error("%s: open(\"/dev/null\"): %s", __func__,
1650 strerror(errno));
1651 } else {
djm@openbsd.orgd2d6bf82016-04-29 08:07:53 +00001652 keep_stderr = log_is_on_stderr() && debug_flag;
Damien Miller00d9ae22010-08-17 01:59:31 +10001653 if (dup2(devnull, STDIN_FILENO) == -1 ||
djm@openbsd.orgd2d6bf82016-04-29 08:07:53 +00001654 dup2(devnull, STDOUT_FILENO) == -1 ||
1655 (!keep_stderr && dup2(devnull, STDERR_FILENO) == -1))
Damien Miller00d9ae22010-08-17 01:59:31 +10001656 error("%s: dup2: %s", __func__, strerror(errno));
1657 if (devnull > STDERR_FILENO)
1658 close(devnull);
1659 }
Damien Miller98e27dc2013-07-25 11:55:52 +10001660 daemon(1, 1);
Damien Millerea2c1a42011-06-03 12:10:22 +10001661 setproctitle("%s [mux]", options.control_path);
Damien Millere11e1ea2010-08-03 16:04:46 +10001662}
1663
1664/* Do fork() after authentication. Used by "ssh -f" */
1665static void
1666fork_postauth(void)
1667{
1668 if (need_controlpersist_detach)
1669 control_persist_detach();
1670 debug("forking to background");
1671 fork_after_authentication_flag = 0;
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001672 if (daemon(1, 1) == -1)
Damien Millere11e1ea2010-08-03 16:04:46 +10001673 fatal("daemon() failed: %.200s", strerror(errno));
1674}
1675
Darren Tucker9f407c42008-06-13 04:50:27 +10001676/* Callback for remote forward global requests */
1677static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001678ssh_confirm_remote_forward(struct ssh *ssh, int type, u_int32_t seq, void *ctxt)
Darren Tucker9f407c42008-06-13 04:50:27 +10001679{
Damien Miller7acefbb2014-07-18 14:11:24 +10001680 struct Forward *rfwd = (struct Forward *)ctxt;
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001681 u_int port;
1682 int r;
Darren Tucker9f407c42008-06-13 04:50:27 +10001683
Damien Miller4bf648f2009-02-14 16:28:21 +11001684 /* XXX verbose() on failure? */
Damien Miller4b3ed642014-07-02 15:29:40 +10001685 debug("remote forward %s for: listen %s%s%d, connect %s:%d",
Darren Tucker9f407c42008-06-13 04:50:27 +10001686 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
Damien Miller7acefbb2014-07-18 14:11:24 +10001687 rfwd->listen_path ? rfwd->listen_path :
1688 rfwd->listen_host ? rfwd->listen_host : "",
1689 (rfwd->listen_path || rfwd->listen_host) ? ":" : "",
1690 rfwd->listen_port, rfwd->connect_path ? rfwd->connect_path :
1691 rfwd->connect_host, rfwd->connect_port);
1692 if (rfwd->listen_path == NULL && rfwd->listen_port == 0) {
Darren Tucker68afb8c2011-10-02 18:59:03 +11001693 if (type == SSH2_MSG_REQUEST_SUCCESS) {
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001694 if ((r = sshpkt_get_u32(ssh, &port)) != 0)
1695 fatal("%s: %s", __func__, ssh_err(r));
1696 if (port > 65535) {
1697 error("Invalid allocated port %u for remote "
1698 "forward to %s:%d", port,
1699 rfwd->connect_host, rfwd->connect_port);
1700 /* Ensure failure processing runs below */
1701 type = SSH2_MSG_REQUEST_FAILURE;
1702 channel_update_permission(ssh,
1703 rfwd->handle, -1);
1704 } else {
1705 rfwd->allocated_port = (int)port;
1706 logit("Allocated port %u for remote "
1707 "forward to %s:%d",
1708 rfwd->allocated_port, rfwd->connect_host,
1709 rfwd->connect_port);
1710 channel_update_permission(ssh,
1711 rfwd->handle, rfwd->allocated_port);
1712 }
Darren Tucker68afb8c2011-10-02 18:59:03 +11001713 } else {
djm@openbsd.org115063a2018-06-06 18:22:41 +00001714 channel_update_permission(ssh, rfwd->handle, -1);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001715 }
Damien Miller4bf648f2009-02-14 16:28:21 +11001716 }
djm@openbsd.org@openbsd.orgdbe06622017-10-27 01:57:06 +00001717
Darren Tucker9f407c42008-06-13 04:50:27 +10001718 if (type == SSH2_MSG_REQUEST_FAILURE) {
Damien Miller7acefbb2014-07-18 14:11:24 +10001719 if (options.exit_on_forward_failure) {
1720 if (rfwd->listen_path != NULL)
1721 fatal("Error: remote port forwarding failed "
1722 "for listen path %s", rfwd->listen_path);
1723 else
1724 fatal("Error: remote port forwarding failed "
1725 "for listen port %d", rfwd->listen_port);
1726 } else {
1727 if (rfwd->listen_path != NULL)
1728 logit("Warning: remote port forwarding failed "
1729 "for listen path %s", rfwd->listen_path);
1730 else
1731 logit("Warning: remote port forwarding failed "
1732 "for listen port %d", rfwd->listen_port);
1733 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001734 }
Darren Tucker9a2a6092008-07-04 12:53:50 +10001735 if (++remote_forward_confirms_received == options.num_remote_forwards) {
Darren Tucker9f407c42008-06-13 04:50:27 +10001736 debug("All remote forwarding requests processed");
Damien Millere11e1ea2010-08-03 16:04:46 +10001737 if (fork_after_authentication_flag)
1738 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001739 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001740}
1741
Ben Lindstrombba81212001-06-25 05:01:22 +00001742static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001743client_cleanup_stdio_fwd(struct ssh *ssh, int id, void *arg)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001744{
1745 debug("stdio forwarding: done");
1746 cleanup_exit(0);
1747}
1748
Darren Tucker2d6665d2011-11-04 10:54:22 +11001749static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001750ssh_stdio_confirm(struct ssh *ssh, int id, int success, void *arg)
Damien Miller357610d2014-07-18 15:04:10 +10001751{
1752 if (!success)
1753 fatal("stdio forwarding failed");
1754}
1755
1756static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001757ssh_init_stdio_forwarding(struct ssh *ssh)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001758{
1759 Channel *c;
Damien Millere1537f92010-01-26 13:26:22 +11001760 int in, out;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001761
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +00001762 if (options.stdio_forward_host == NULL)
Darren Tucker2d6665d2011-11-04 10:54:22 +11001763 return;
Damien Millere1537f92010-01-26 13:26:22 +11001764
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +00001765 debug3("%s: %s:%d", __func__, options.stdio_forward_host,
1766 options.stdio_forward_port);
Darren Tucker2d6665d2011-11-04 10:54:22 +11001767
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001768 if ((in = dup(STDIN_FILENO)) == -1 ||
1769 (out = dup(STDOUT_FILENO)) == -1)
Damien Millere1537f92010-01-26 13:26:22 +11001770 fatal("channel_connect_stdio_fwd: dup() in/out failed");
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001771 if ((c = channel_connect_stdio_fwd(ssh, options.stdio_forward_host,
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +00001772 options.stdio_forward_port, in, out)) == NULL)
Darren Tucker2d6665d2011-11-04 10:54:22 +11001773 fatal("%s: channel_connect_stdio_fwd failed", __func__);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001774 channel_register_cleanup(ssh, c->self, client_cleanup_stdio_fwd, 0);
1775 channel_register_open_confirm(ssh, c->self, ssh_stdio_confirm, NULL);
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001776}
1777
1778static void
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001779ssh_init_forwarding(struct ssh *ssh, char **ifname)
Damien Miller0bc1bd82000-11-13 22:57:25 +11001780{
Kevin Steves12057502001-02-05 14:54:34 +00001781 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001782 int i;
Kevin Steves12057502001-02-05 14:54:34 +00001783
Damien Miller0bc1bd82000-11-13 22:57:25 +11001784 /* Initiate local TCP/IP port forwardings. */
1785 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001786 debug("Local connections to %.200s:%d forwarded to remote "
1787 "address %.200s:%d",
Damien Miller7acefbb2014-07-18 14:11:24 +10001788 (options.local_forwards[i].listen_path != NULL) ?
1789 options.local_forwards[i].listen_path :
Darren Tucker47eede72005-03-14 23:08:12 +11001790 (options.local_forwards[i].listen_host == NULL) ?
Damien Miller7acefbb2014-07-18 14:11:24 +10001791 (options.fwd_opts.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001792 options.local_forwards[i].listen_host,
1793 options.local_forwards[i].listen_port,
Damien Miller7acefbb2014-07-18 14:11:24 +10001794 (options.local_forwards[i].connect_path != NULL) ?
1795 options.local_forwards[i].connect_path :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001796 options.local_forwards[i].connect_host,
1797 options.local_forwards[i].connect_port);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001798 success += channel_setup_local_fwd_listener(ssh,
Damien Miller7acefbb2014-07-18 14:11:24 +10001799 &options.local_forwards[i], &options.fwd_opts);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001800 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10001801 if (i > 0 && success != i && options.exit_on_forward_failure)
1802 fatal("Could not request local forwarding.");
Kevin Steves12057502001-02-05 14:54:34 +00001803 if (i > 0 && success == 0)
1804 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001805
1806 /* Initiate remote TCP/IP port forwardings. */
1807 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001808 debug("Remote connections from %.200s:%d forwarded to "
1809 "local address %.200s:%d",
Damien Miller7acefbb2014-07-18 14:11:24 +10001810 (options.remote_forwards[i].listen_path != NULL) ?
1811 options.remote_forwards[i].listen_path :
Damien Miller46d38de2005-07-17 17:02:09 +10001812 (options.remote_forwards[i].listen_host == NULL) ?
Damien Milleraa3bb102005-11-05 15:12:59 +11001813 "LOCALHOST" : options.remote_forwards[i].listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +11001814 options.remote_forwards[i].listen_port,
Damien Miller7acefbb2014-07-18 14:11:24 +10001815 (options.remote_forwards[i].connect_path != NULL) ?
1816 options.remote_forwards[i].connect_path :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001817 options.remote_forwards[i].connect_host,
1818 options.remote_forwards[i].connect_port);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001819 options.remote_forwards[i].handle =
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001820 channel_request_remote_forwarding(ssh,
Damien Miller7acefbb2014-07-18 14:11:24 +10001821 &options.remote_forwards[i]);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001822 if (options.remote_forwards[i].handle < 0) {
Darren Tuckere7d4b192006-07-12 22:17:10 +10001823 if (options.exit_on_forward_failure)
1824 fatal("Could not request remote forwarding.");
1825 else
1826 logit("Warning: Could not request remote "
1827 "forwarding.");
Darren Tucker68afb8c2011-10-02 18:59:03 +11001828 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001829 client_register_global_confirm(
1830 ssh_confirm_remote_forward,
Darren Tucker68afb8c2011-10-02 18:59:03 +11001831 &options.remote_forwards[i]);
Darren Tuckere7d4b192006-07-12 22:17:10 +10001832 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001833 }
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001834
1835 /* Initiate tunnel forwarding. */
1836 if (options.tun_open != SSH_TUNMODE_NO) {
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001837 if ((*ifname = client_request_tun_fwd(ssh,
1838 options.tun_open, options.tun_local,
1839 options.tun_remote)) == NULL) {
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001840 if (options.exit_on_forward_failure)
1841 fatal("Could not request tunnel forwarding.");
1842 else
1843 error("Could not request tunnel forwarding.");
1844 }
djm@openbsd.org@openbsd.orgdbe06622017-10-27 01:57:06 +00001845 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001846}
1847
Ben Lindstrombba81212001-06-25 05:01:22 +00001848static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001849check_agent_present(void)
1850{
djm@openbsd.org141efe42015-01-14 20:05:27 +00001851 int r;
1852
Damien Miller0bc1bd82000-11-13 22:57:25 +11001853 if (options.forward_agent) {
Damien Miller788f2122005-11-05 15:14:59 +11001854 /* Clear agent forwarding if we don't have an agent. */
djm@openbsd.org141efe42015-01-14 20:05:27 +00001855 if ((r = ssh_get_authentication_socket(NULL)) != 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001856 options.forward_agent = 0;
djm@openbsd.org141efe42015-01-14 20:05:27 +00001857 if (r != SSH_ERR_AGENT_NOT_PRESENT)
1858 debug("ssh_get_authentication_socket: %s",
1859 ssh_err(r));
1860 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001861 }
1862}
1863
Ben Lindstrombba81212001-06-25 05:01:22 +00001864static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001865ssh_session2_setup(struct ssh *ssh, int id, int success, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001866{
Damien Miller3756dce2004-06-18 01:17:29 +10001867 extern char **environ;
Damien Miller17e7ed02005-06-17 12:54:33 +10001868 const char *display;
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001869 int r, interactive = tty_flag;
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001870 char *proto = NULL, *data = NULL;
Damien Miller17e7ed02005-06-17 12:54:33 +10001871
Damien Millerd530f5f2010-05-21 14:57:10 +10001872 if (!success)
1873 return; /* No need for error message, channels code sens one */
1874
Damien Miller46d38de2005-07-17 17:02:09 +10001875 display = getenv("DISPLAY");
djm@openbsd.orga58be332015-04-17 13:16:48 +00001876 if (display == NULL && options.forward_x11)
1877 debug("X11 forwarding requested but DISPLAY not set");
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001878 if (options.forward_x11 && client_x11_get_proto(ssh, display,
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001879 options.xauth_location, options.forward_x11_trusted,
1880 options.forward_x11_timeout, &proto, &data) == 0) {
Damien Millerbd483e72000-04-30 10:00:53 +10001881 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001882 debug("Requesting X11 forwarding with authentication "
1883 "spoofing.");
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001884 x11_request_forwarding_with_spoofing(ssh, id, display, proto,
Damien Miller6d7b4372011-06-23 08:31:57 +10001885 data, 1);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001886 client_expect_confirm(ssh, id, "X11 forwarding", CONFIRM_WARN);
Damien Miller6d7b4372011-06-23 08:31:57 +10001887 /* XXX exit_on_forward_failure */
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001888 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001889 }
1890
Damien Miller0bc1bd82000-11-13 22:57:25 +11001891 check_agent_present();
1892 if (options.forward_agent) {
1893 debug("Requesting authentication agent forwarding.");
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001894 channel_request_start(ssh, id, "auth-agent-req@openssh.com", 0);
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001895 if ((r = sshpkt_send(ssh)) != 0)
1896 fatal("%s: %s", __func__, ssh_err(r));
Damien Miller0bc1bd82000-11-13 22:57:25 +11001897 }
1898
Darren Tucker7b305012012-07-02 18:55:09 +10001899 /* Tell the packet module whether this is an interactive session. */
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001900 ssh_packet_set_interactive(ssh, interactive,
Darren Tucker7b305012012-07-02 18:55:09 +10001901 options.ip_qos_interactive, options.ip_qos_bulk);
1902
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001903 client_session2_setup(ssh, id, tty_flag, subsystem_flag, getenv("TERM"),
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +00001904 NULL, fileno(stdin), command, environ);
Damien Miller1383bd82000-04-06 12:32:37 +10001905}
1906
Ben Lindstromf558cf62001-09-20 23:13:49 +00001907/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001908static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001909ssh_session2_open(struct ssh *ssh)
Damien Miller1383bd82000-04-06 12:32:37 +10001910{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001911 Channel *c;
1912 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001913
Damien Millercaf6dd62000-08-29 11:33:50 +11001914 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001915 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001916 } else {
1917 in = dup(STDIN_FILENO);
1918 }
1919 out = dup(STDOUT_FILENO);
1920 err = dup(STDERR_FILENO);
1921
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00001922 if (in == -1 || out == -1 || err == -1)
Damien Millercaf6dd62000-08-29 11:33:50 +11001923 fatal("dup() in/out/err failed");
1924
Damien Miller69b69aa2000-10-28 14:19:58 +11001925 /* enable nonblocking unless tty */
1926 if (!isatty(in))
1927 set_nonblock(in);
1928 if (!isatty(out))
1929 set_nonblock(out);
1930 if (!isatty(err))
1931 set_nonblock(err);
1932
Damien Millere4340be2000-09-16 13:29:08 +11001933 window = CHAN_SES_WINDOW_DEFAULT;
1934 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001935 if (tty_flag) {
1936 window >>= 1;
1937 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001938 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001939 c = channel_new(ssh,
Damien Miller1383bd82000-04-06 12:32:37 +10001940 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001941 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001942 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001943
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001944 debug3("%s: channel_new: %d", __func__, c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001945
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001946 channel_send_open(ssh, c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001947 if (!no_shell_flag)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001948 channel_register_open_confirm(ssh, c->self,
Damien Millerb84886b2008-05-19 15:05:07 +10001949 ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001950
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001951 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001952}
1953
Ben Lindstrombba81212001-06-25 05:01:22 +00001954static int
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001955ssh_session2(struct ssh *ssh, struct passwd *pw)
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001956{
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001957 int r, devnull, id = -1;
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001958 char *cp, *tun_fwd_ifname = NULL;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001959
1960 /* XXX should be pre-session */
Darren Tucker2d6665d2011-11-04 10:54:22 +11001961 if (!options.control_persist)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001962 ssh_init_stdio_forwarding(ssh);
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001963
1964 ssh_init_forwarding(ssh, &tun_fwd_ifname);
1965
1966 if (options.local_command != NULL) {
1967 debug3("expanding LocalCommand: %s", options.local_command);
1968 cp = options.local_command;
1969 options.local_command = percent_expand(cp,
dtucker@openbsd.orged833da2020-04-03 02:27:12 +00001970 DEFAULT_CLIENT_PERCENT_EXPAND_ARGS,
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001971 "d", pw->pw_dir,
1972 "h", host,
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001973 "r", options.user,
1974 "u", pw->pw_name,
1975 "T", tun_fwd_ifname == NULL ? "NONE" : tun_fwd_ifname,
1976 (char *)NULL);
1977 debug3("expanded LocalCommand: %s", options.local_command);
1978 free(cp);
1979 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001980
Damien Millere11e1ea2010-08-03 16:04:46 +10001981 /* Start listening for multiplex clients */
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00001982 if (!ssh_packet_get_mux(ssh))
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001983 muxserver_listen(ssh);
Damien Millere11e1ea2010-08-03 16:04:46 +10001984
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00001985 /*
Darren Tucker2d6665d2011-11-04 10:54:22 +11001986 * If we are in control persist mode and have a working mux listen
1987 * socket, then prepare to background ourselves and have a foreground
1988 * client attach as a control slave.
1989 * NB. we must save copies of the flags that we override for
Damien Millere11e1ea2010-08-03 16:04:46 +10001990 * the backgrounding, since we defer attachment of the slave until
1991 * after the connection is fully established (in particular,
1992 * async rfwd replies have been received for ExitOnForwardFailure).
1993 */
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00001994 if (options.control_persist && muxserver_sock != -1) {
Damien Millere11e1ea2010-08-03 16:04:46 +10001995 ostdin_null_flag = stdin_null_flag;
1996 ono_shell_flag = no_shell_flag;
Damien Miller21771e22011-05-15 08:45:50 +10001997 orequest_tty = options.request_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +10001998 otty_flag = tty_flag;
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00001999 stdin_null_flag = 1;
2000 no_shell_flag = 1;
2001 tty_flag = 0;
Damien Millere11e1ea2010-08-03 16:04:46 +10002002 if (!fork_after_authentication_flag)
2003 need_controlpersist_detach = 1;
2004 fork_after_authentication_flag = 1;
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00002005 }
Darren Tucker2d6665d2011-11-04 10:54:22 +11002006 /*
2007 * ControlPersist mux listen socket setup failed, attempt the
2008 * stdio forward setup that we skipped earlier.
2009 */
2010 if (options.control_persist && muxserver_sock == -1)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002011 ssh_init_stdio_forwarding(ssh);
Damien Millere11e1ea2010-08-03 16:04:46 +10002012
djm@openbsd.org14b5c632018-01-23 05:27:21 +00002013 if (!no_shell_flag)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002014 id = ssh_session2_open(ssh);
Damien Miller649fe022013-07-18 16:13:55 +10002015 else {
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00002016 ssh_packet_set_interactive(ssh,
Damien Miller649fe022013-07-18 16:13:55 +10002017 options.control_master == SSHCTL_MASTER_NO,
2018 options.ip_qos_interactive, options.ip_qos_bulk);
2019 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00002020
Darren Tucker8901fa92008-06-11 09:34:01 +10002021 /* If we don't expect to open a new session, then disallow it */
Damien Miller456e6f02008-11-03 19:20:10 +11002022 if (options.control_master == SSHCTL_MASTER_NO &&
2023 (datafellows & SSH_NEW_OPENSSH)) {
Darren Tucker8901fa92008-06-11 09:34:01 +10002024 debug("Requesting no-more-sessions@openssh.com");
djm@openbsd.org25b2ed62019-01-19 21:36:06 +00002025 if ((r = sshpkt_start(ssh, SSH2_MSG_GLOBAL_REQUEST)) != 0 ||
2026 (r = sshpkt_put_cstring(ssh,
2027 "no-more-sessions@openssh.com")) != 0 ||
2028 (r = sshpkt_put_u8(ssh, 0)) != 0 ||
2029 (r = sshpkt_send(ssh)) != 0)
2030 fatal("%s: %s", __func__, ssh_err(r));
Darren Tucker8901fa92008-06-11 09:34:01 +10002031 }
2032
Damien Millerd27b9472005-12-13 19:29:02 +11002033 /* Execute a local command */
2034 if (options.local_command != NULL &&
2035 options.permit_local_command)
2036 ssh_local_cmd(options.local_command);
2037
Damien Miller1f25ab42010-07-16 13:56:23 +10002038 /*
djm@openbsd.org4d5456c2017-10-25 00:21:37 +00002039 * stdout is now owned by the session channel; clobber it here
2040 * so future channel closes are propagated to the local fd.
2041 * NB. this can only happen after LocalCommand has completed,
2042 * as it may want to write to stdout.
2043 */
djm@openbsd.org@openbsd.org939b30b2017-11-01 00:04:15 +00002044 if (!need_controlpersist_detach) {
2045 if ((devnull = open(_PATH_DEVNULL, O_WRONLY)) == -1)
2046 error("%s: open %s: %s", __func__,
2047 _PATH_DEVNULL, strerror(errno));
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00002048 if (dup2(devnull, STDOUT_FILENO) == -1)
djm@openbsd.org@openbsd.org939b30b2017-11-01 00:04:15 +00002049 fatal("%s: dup2() stdout failed", __func__);
2050 if (devnull > STDERR_FILENO)
2051 close(devnull);
2052 }
djm@openbsd.org4d5456c2017-10-25 00:21:37 +00002053
2054 /*
Damien Miller1f25ab42010-07-16 13:56:23 +10002055 * If requested and we are not interested in replies to remote
2056 * forwarding requests, then let ssh continue in the background.
2057 */
Damien Millere11e1ea2010-08-03 16:04:46 +10002058 if (fork_after_authentication_flag) {
2059 if (options.exit_on_forward_failure &&
2060 options.num_remote_forwards > 0) {
2061 debug("deferring postauth fork until remote forward "
2062 "confirmation received");
2063 } else
2064 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10002065 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00002066
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00002067 return client_loop(ssh, tty_flag, tty_flag ?
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00002068 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002069}
Damien Miller0bc1bd82000-11-13 22:57:25 +11002070
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002071/* Loads all IdentityFile and CertificateFile keys */
Ben Lindstrombba81212001-06-25 05:01:22 +00002072static void
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00002073load_public_identity_files(struct passwd *pw)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002074{
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00002075 char *filename, *cp;
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00002076 struct sshkey *public;
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002077 int i;
2078 u_int n_ids, n_certs;
Damien Miller0a80ca12010-02-27 07:55:05 +11002079 char *identity_files[SSH_MAX_IDENTITY_FILES];
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00002080 struct sshkey *identity_keys[SSH_MAX_IDENTITY_FILES];
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002081 int identity_file_userprovided[SSH_MAX_IDENTITY_FILES];
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002082 char *certificate_files[SSH_MAX_CERTIFICATE_FILES];
2083 struct sshkey *certificates[SSH_MAX_CERTIFICATE_FILES];
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002084 int certificate_file_userprovided[SSH_MAX_CERTIFICATE_FILES];
Damien Miller7ea845e2010-02-12 09:21:02 +11002085#ifdef ENABLE_PKCS11
djm@openbsd.org89a8d452020-01-25 00:03:36 +00002086 struct sshkey **keys = NULL;
2087 char **comments = NULL;
Damien Miller7ea845e2010-02-12 09:21:02 +11002088 int nkeys;
Damien Miller0a80ca12010-02-27 07:55:05 +11002089#endif /* PKCS11 */
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00002090
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002091 n_ids = n_certs = 0;
Damien Miller1d2c4562014-02-04 11:18:20 +11002092 memset(identity_files, 0, sizeof(identity_files));
2093 memset(identity_keys, 0, sizeof(identity_keys));
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002094 memset(identity_file_userprovided, 0,
2095 sizeof(identity_file_userprovided));
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002096 memset(certificate_files, 0, sizeof(certificate_files));
2097 memset(certificates, 0, sizeof(certificates));
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002098 memset(certificate_file_userprovided, 0,
2099 sizeof(certificate_file_userprovided));
Damien Miller0a80ca12010-02-27 07:55:05 +11002100
2101#ifdef ENABLE_PKCS11
Damien Miller7ea845e2010-02-12 09:21:02 +11002102 if (options.pkcs11_provider != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00002103 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
Damien Miller7ea845e2010-02-12 09:21:02 +11002104 (pkcs11_init(!options.batch_mode) == 0) &&
2105 (nkeys = pkcs11_add_provider(options.pkcs11_provider, NULL,
djm@openbsd.org89a8d452020-01-25 00:03:36 +00002106 &keys, &comments)) > 0) {
Damien Miller7ea845e2010-02-12 09:21:02 +11002107 for (i = 0; i < nkeys; i++) {
Damien Miller0a80ca12010-02-27 07:55:05 +11002108 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00002109 sshkey_free(keys[i]);
djm@openbsd.org89a8d452020-01-25 00:03:36 +00002110 free(comments[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +11002111 continue;
2112 }
2113 identity_keys[n_ids] = keys[i];
djm@openbsd.org89a8d452020-01-25 00:03:36 +00002114 identity_files[n_ids] = comments[i]; /* transferred */
Damien Miller0a80ca12010-02-27 07:55:05 +11002115 n_ids++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00002116 }
Darren Tuckera627d422013-06-02 07:31:17 +10002117 free(keys);
djm@openbsd.org89a8d452020-01-25 00:03:36 +00002118 free(comments);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00002119 }
Damien Miller7ea845e2010-02-12 09:21:02 +11002120#endif /* ENABLE_PKCS11 */
Damien Miller0a80ca12010-02-27 07:55:05 +11002121 for (i = 0; i < options.num_identity_files; i++) {
Darren Tucker15fd19c2013-04-05 11:22:26 +11002122 if (n_ids >= SSH_MAX_IDENTITY_FILES ||
2123 strcasecmp(options.identity_files[i], "none") == 0) {
Darren Tuckera627d422013-06-02 07:31:17 +10002124 free(options.identity_files[i]);
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002125 options.identity_files[i] = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +11002126 continue;
2127 }
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +00002128 cp = tilde_expand_filename(options.identity_files[i], getuid());
dtucker@openbsd.orged833da2020-04-03 02:27:12 +00002129 filename = percent_expand(cp,
2130 DEFAULT_CLIENT_PERCENT_EXPAND_ARGS,
2131 "d", pw->pw_dir,
2132 "h", host,
2133 "r", options.user,
2134 "u", pw->pw_name,
2135 (char *)NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10002136 free(cp);
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00002137 check_load(sshkey_load_public(filename, &public, NULL),
2138 filename, "pubkey");
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002139 debug("identity file %s type %d", filename,
2140 public ? public->type : -1);
Darren Tuckera627d422013-06-02 07:31:17 +10002141 free(options.identity_files[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +11002142 identity_files[n_ids] = filename;
2143 identity_keys[n_ids] = public;
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002144 identity_file_userprovided[n_ids] =
2145 options.identity_file_userprovided[i];
Damien Miller0a80ca12010-02-27 07:55:05 +11002146 if (++n_ids >= SSH_MAX_IDENTITY_FILES)
2147 continue;
2148
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002149 /*
2150 * If no certificates have been explicitly listed then try
2151 * to add the default certificate variant too.
2152 */
2153 if (options.num_certificate_files != 0)
2154 continue;
Damien Miller0a80ca12010-02-27 07:55:05 +11002155 xasprintf(&cp, "%s-cert", filename);
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00002156 check_load(sshkey_load_public(cp, &public, NULL),
2157 filename, "pubkey");
Damien Miller0a80ca12010-02-27 07:55:05 +11002158 debug("identity file %s type %d", cp,
2159 public ? public->type : -1);
2160 if (public == NULL) {
Darren Tuckera627d422013-06-02 07:31:17 +10002161 free(cp);
Damien Miller0a80ca12010-02-27 07:55:05 +11002162 continue;
2163 }
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00002164 if (!sshkey_is_cert(public)) {
Damien Miller0a80ca12010-02-27 07:55:05 +11002165 debug("%s: key %s type %s is not a certificate",
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00002166 __func__, cp, sshkey_type(public));
2167 sshkey_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +10002168 free(cp);
Damien Miller0a80ca12010-02-27 07:55:05 +11002169 continue;
2170 }
djm@openbsd.orgb4867e02016-12-06 07:48:01 +00002171 /* NB. leave filename pointing to private key */
2172 identity_files[n_ids] = xstrdup(filename);
Damien Miller0a80ca12010-02-27 07:55:05 +11002173 identity_keys[n_ids] = public;
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002174 identity_file_userprovided[n_ids] =
2175 options.identity_file_userprovided[i];
Damien Miller0a80ca12010-02-27 07:55:05 +11002176 n_ids++;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002177 }
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002178
2179 if (options.num_certificate_files > SSH_MAX_CERTIFICATE_FILES)
2180 fatal("%s: too many certificates", __func__);
2181 for (i = 0; i < options.num_certificate_files; i++) {
2182 cp = tilde_expand_filename(options.certificate_files[i],
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +00002183 getuid());
djm@openbsd.org9c935dd2018-06-01 03:33:53 +00002184 filename = percent_expand(cp,
dtucker@openbsd.orged833da2020-04-03 02:27:12 +00002185 DEFAULT_CLIENT_PERCENT_EXPAND_ARGS,
djm@openbsd.org9c935dd2018-06-01 03:33:53 +00002186 "d", pw->pw_dir,
2187 "h", host,
djm@openbsd.org9c935dd2018-06-01 03:33:53 +00002188 "r", options.user,
2189 "u", pw->pw_name,
2190 (char *)NULL);
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002191 free(cp);
2192
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00002193 check_load(sshkey_load_public(filename, &public, NULL),
2194 filename, "certificate");
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002195 debug("certificate file %s type %d", filename,
2196 public ? public->type : -1);
2197 free(options.certificate_files[i]);
2198 options.certificate_files[i] = NULL;
2199 if (public == NULL) {
2200 free(filename);
2201 continue;
2202 }
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00002203 if (!sshkey_is_cert(public)) {
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002204 debug("%s: key %s type %s is not a certificate",
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00002205 __func__, filename, sshkey_type(public));
2206 sshkey_free(public);
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002207 free(filename);
2208 continue;
2209 }
2210 certificate_files[n_certs] = filename;
2211 certificates[n_certs] = public;
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002212 certificate_file_userprovided[n_certs] =
2213 options.certificate_file_userprovided[i];
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002214 ++n_certs;
2215 }
2216
Damien Miller0a80ca12010-02-27 07:55:05 +11002217 options.num_identity_files = n_ids;
2218 memcpy(options.identity_files, identity_files, sizeof(identity_files));
2219 memcpy(options.identity_keys, identity_keys, sizeof(identity_keys));
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002220 memcpy(options.identity_file_userprovided,
2221 identity_file_userprovided, sizeof(identity_file_userprovided));
Damien Miller0a80ca12010-02-27 07:55:05 +11002222
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002223 options.num_certificate_files = n_certs;
2224 memcpy(options.certificate_files,
2225 certificate_files, sizeof(certificate_files));
2226 memcpy(options.certificates, certificates, sizeof(certificates));
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002227 memcpy(options.certificate_file_userprovided,
2228 certificate_file_userprovided,
2229 sizeof(certificate_file_userprovided));
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002230}
Damien Miller857b02e2010-09-24 22:02:56 +10002231
2232static void
2233main_sigchld_handler(int sig)
2234{
2235 int save_errno = errno;
2236 pid_t pid;
2237 int status;
2238
2239 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
deraadt@openbsd.org4d28fa72019-06-28 13:35:04 +00002240 (pid == -1 && errno == EINTR))
Damien Miller857b02e2010-09-24 22:02:56 +10002241 ;
Damien Miller857b02e2010-09-24 22:02:56 +10002242 errno = save_errno;
2243}