blob: ce628848c6f5a9512b9140eb4c26cc2f0e5278a7 [file] [log] [blame]
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +00001/* $OpenBSD: ssh.c,v 1.490 2018/07/27 05:34:42 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>
Damien Millere6b3b612006-07-24 14:01:23 +100068#include <unistd.h>
deraadt@openbsd.org087266e2015-01-20 23:14:00 +000069#include <limits.h>
djm@openbsd.org65c6c6b2016-07-17 04:20:16 +000070#include <locale.h>
Damien Millereba71ba2000-04-29 23:57:08 +100071
Darren Tucker46aa3e02006-09-02 15:32:40 +100072#include <netinet/in.h>
73#include <arpa/inet.h>
74
Damien Miller1f0311c2014-05-15 14:24:09 +100075#ifdef WITH_OPENSSL
Damien Millereba71ba2000-04-29 23:57:08 +100076#include <openssl/evp.h>
Damien Miller0bc1bd82000-11-13 22:57:25 +110077#include <openssl/err.h>
Damien Miller1f0311c2014-05-15 14:24:09 +100078#endif
Darren Tuckerbfaaf962008-02-28 19:13:52 +110079#include "openbsd-compat/openssl-compat.h"
Damien Millerb84886b2008-05-19 15:05:07 +100080#include "openbsd-compat/sys-queue.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100081
Damien Millerd7834352006-08-05 12:39:39 +100082#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100083#include "ssh.h"
Damien Miller1383bd82000-04-06 12:32:37 +100084#include "ssh2.h"
Damien Millerb96c4412010-07-02 13:34:24 +100085#include "canohost.h"
Damien Miller1383bd82000-04-06 12:32:37 +100086#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000087#include "cipher.h"
Damien Miller9c386432014-07-03 21:27:46 +100088#include "digest.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000089#include "packet.h"
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +000090#include "sshbuf.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000091#include "channels.h"
markus@openbsd.org5467fbc2018-07-11 18:53:29 +000092#include "sshkey.h"
Damien Miller994cf142000-07-21 10:19:44 +100093#include "authfd.h"
Damien Millereba71ba2000-04-29 23:57:08 +100094#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000095#include "pathnames.h"
Damien Miller0e220db2004-06-15 10:34:08 +100096#include "dispatch.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000097#include "clientloop.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000098#include "log.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100099#include "misc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000100#include "readconf.h"
101#include "sshconnect.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000102#include "kex.h"
103#include "mac.h"
Darren Tucker06f2bd82004-05-13 16:06:46 +1000104#include "sshpty.h"
Darren Tucker46bc0752004-05-02 22:11:30 +1000105#include "match.h"
Damien Miller0e220db2004-06-15 10:34:08 +1000106#include "msg.h"
Damien Millerb7576772006-07-10 20:23:39 +1000107#include "version.h"
djm@openbsd.org141efe42015-01-14 20:05:27 +0000108#include "ssherr.h"
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000109#include "myproposal.h"
Damien Millerdda78a02016-12-12 13:57:10 +1100110#include "utf8.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111
Damien Miller7ea845e2010-02-12 09:21:02 +1100112#ifdef ENABLE_PKCS11
113#include "ssh-pkcs11.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +0000114#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000115
Damien Miller3f905871999-11-15 17:10:57 +1100116extern char *__progname;
Damien Miller3f905871999-11-15 17:10:57 +1100117
Damien Millerea2c1a42011-06-03 12:10:22 +1000118/* Saves a copy of argv for setproctitle emulation */
119#ifndef HAVE_SETPROCTITLE
120static char **saved_av;
121#endif
122
Darren Tuckerd6173c02008-06-13 04:52:53 +1000123/* Flag indicating whether debug mode is on. May be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000124int debug_flag = 0;
125
Damien Miller21771e22011-05-15 08:45:50 +1000126/* Flag indicating whether a tty should be requested */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000127int tty_flag = 0;
128
Damien Miller1383bd82000-04-06 12:32:37 +1000129/* don't exec a shell */
130int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000131
Damien Miller5428f641999-11-25 11:54:57 +1100132/*
133 * Flag indicating that nothing should be read from stdin. This can be set
134 * on the command line.
135 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000136int stdin_null_flag = 0;
137
Damien Miller5428f641999-11-25 11:54:57 +1100138/*
Damien Millere11e1ea2010-08-03 16:04:46 +1000139 * Flag indicating that the current process should be backgrounded and
140 * a new slave launched in the foreground for ControlPersist.
141 */
142int need_controlpersist_detach = 0;
143
144/* Copies of flags for ControlPersist foreground slave */
Damien Miller21771e22011-05-15 08:45:50 +1000145int ostdin_null_flag, ono_shell_flag, otty_flag, orequest_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +1000146
147/*
Damien Miller5428f641999-11-25 11:54:57 +1100148 * Flag indicating that ssh should fork after authentication. This is useful
Ben Lindstromf666fec2002-06-06 19:51:58 +0000149 * so that the passphrase can be entered manually, and then ssh goes to the
Damien Miller5428f641999-11-25 11:54:57 +1100150 * background.
151 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000152int fork_after_authentication_flag = 0;
153
Damien Miller5428f641999-11-25 11:54:57 +1100154/*
155 * General data structure for command line options and options configurable
156 * in configuration files. See readconf.h.
157 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000158Options options;
159
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000160/* optional user configfile */
161char *config = NULL;
162
Damien Miller5428f641999-11-25 11:54:57 +1100163/*
164 * Name of the host we are connecting to. This is the name given on the
165 * command line, or the HostName specified for the user-supplied name in a
166 * configuration file.
167 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000168char *host;
169
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000170/* Various strings used to to percent_expand() arguments */
171static char thishost[NI_MAXHOST], shorthost[NI_MAXHOST], portstr[NI_MAXSERV];
172static char uidstr[32], *host_arg, *conn_hash_hex;
173
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000174/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100175struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000176
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000177/* Private host keys. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000178Sensitive sensitive_data;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000179
Damien Miller1383bd82000-04-06 12:32:37 +1000180/* command to be executed */
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +0000181struct sshbuf *command;
Damien Miller1383bd82000-04-06 12:32:37 +1000182
Damien Miller832562e2001-01-30 09:30:01 +1100183/* Should we execute a command or invoke a subsystem? */
184int subsystem_flag = 0;
185
Damien Miller2797f7f2002-04-23 21:09:44 +1000186/* # of replies received for global requests */
Darren Tucker9f407c42008-06-13 04:50:27 +1000187static int remote_forward_confirms_received = 0;
Damien Miller2797f7f2002-04-23 21:09:44 +1000188
Damien Millerb1cbfa22008-05-19 16:00:08 +1000189/* mux.c */
190extern int muxserver_sock;
191extern u_int muxclient_command;
Damien Miller0e220db2004-06-15 10:34:08 +1000192
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000193/* Prints a help message to the user. This function never returns. */
194
Ben Lindstrombba81212001-06-25 05:01:22 +0000195static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000196usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000197{
Damien Miller50955102004-03-22 09:34:58 +1100198 fprintf(stderr,
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000199"usage: ssh [-46AaCfGgKkMNnqsTtVvXxYy] [-B bind_interface]\n"
200" [-b bind_address] [-c cipher_spec] [-D [bind_address:]port]\n"
201" [-E log_file] [-e escape_char] [-F configfile] [-I pkcs11]\n"
202" [-i identity_file] [-J [user@]host[:port]] [-L address]\n"
203" [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
204" [-Q query_option] [-R address] [-S ctl_path] [-W host:port]\n"
205" [-w local_tun[:remote_tun]] destination [command]\n"
Damien Miller50955102004-03-22 09:34:58 +1100206 );
Darren Tuckere9a9b712005-12-20 16:15:51 +1100207 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000208}
209
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000210static int ssh_session2(struct ssh *, struct passwd *);
211static void load_public_identity_files(struct passwd *);
Damien Miller857b02e2010-09-24 22:02:56 +1000212static void main_sigchld_handler(int);
Damien Millerb1cbfa22008-05-19 16:00:08 +1000213
Damien Miller295ee632011-05-29 21:42:31 +1000214/* ~/ expand a list of paths. NB. assumes path[n] is heap-allocated. */
215static void
216tilde_expand_paths(char **paths, u_int num_paths)
217{
218 u_int i;
219 char *cp;
220
221 for (i = 0; i < num_paths; i++) {
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +0000222 cp = tilde_expand_filename(paths[i], getuid());
Darren Tuckera627d422013-06-02 07:31:17 +1000223 free(paths[i]);
Damien Miller295ee632011-05-29 21:42:31 +1000224 paths[i] = cp;
225 }
226}
227
Damien Miller13f97b22014-02-24 15:57:55 +1100228/*
229 * Attempt to resolve a host name / port to a set of addresses and
230 * optionally return any CNAMEs encountered along the way.
231 * Returns NULL on failure.
232 * NB. this function must operate with a options having undefined members.
233 */
Damien Miller0faf7472013-10-17 11:47:23 +1100234static struct addrinfo *
Damien Miller13f97b22014-02-24 15:57:55 +1100235resolve_host(const char *name, int port, int logerr, char *cname, size_t clen)
Damien Miller0faf7472013-10-17 11:47:23 +1100236{
237 char strport[NI_MAXSERV];
238 struct addrinfo hints, *res;
239 int gaierr, loglevel = SYSLOG_LEVEL_DEBUG1;
240
Damien Miller13f97b22014-02-24 15:57:55 +1100241 if (port <= 0)
242 port = default_ssh_port();
243
djm@openbsd.orgb1d38a32015-10-15 23:51:40 +0000244 snprintf(strport, sizeof strport, "%d", port);
Damien Miller1d2c4562014-02-04 11:18:20 +1100245 memset(&hints, 0, sizeof(hints));
Damien Miller13f97b22014-02-24 15:57:55 +1100246 hints.ai_family = options.address_family == -1 ?
247 AF_UNSPEC : options.address_family;
Damien Miller0faf7472013-10-17 11:47:23 +1100248 hints.ai_socktype = SOCK_STREAM;
249 if (cname != NULL)
250 hints.ai_flags = AI_CANONNAME;
251 if ((gaierr = getaddrinfo(name, strport, &hints, &res)) != 0) {
252 if (logerr || (gaierr != EAI_NONAME && gaierr != EAI_NODATA))
253 loglevel = SYSLOG_LEVEL_ERROR;
254 do_log2(loglevel, "%s: Could not resolve hostname %.100s: %s",
255 __progname, name, ssh_gai_strerror(gaierr));
256 return NULL;
257 }
258 if (cname != NULL && res->ai_canonname != NULL) {
259 if (strlcpy(cname, res->ai_canonname, clen) >= clen) {
260 error("%s: host \"%s\" cname \"%s\" too long (max %lu)",
261 __func__, name, res->ai_canonname, (u_long)clen);
262 if (clen > 0)
263 *cname = '\0';
264 }
265 }
266 return res;
267}
268
djm@openbsd.orgfc21ea92018-01-23 05:06:25 +0000269/* Returns non-zero if name can only be an address and not a hostname */
270static int
271is_addr_fast(const char *name)
272{
273 return (strchr(name, '%') != NULL || strchr(name, ':') != NULL ||
274 strspn(name, "0123456789.") == strlen(name));
275}
276
277/* Returns non-zero if name represents a valid, single address */
278static int
279is_addr(const char *name)
280{
281 char strport[NI_MAXSERV];
282 struct addrinfo hints, *res;
283
284 if (is_addr_fast(name))
285 return 1;
286
287 snprintf(strport, sizeof strport, "%u", default_ssh_port());
288 memset(&hints, 0, sizeof(hints));
289 hints.ai_family = options.address_family == -1 ?
290 AF_UNSPEC : options.address_family;
291 hints.ai_socktype = SOCK_STREAM;
292 hints.ai_flags = AI_NUMERICHOST|AI_NUMERICSERV;
293 if (getaddrinfo(name, strport, &hints, &res) != 0)
294 return 0;
295 if (res == NULL || res->ai_next != NULL) {
296 freeaddrinfo(res);
297 return 0;
298 }
299 freeaddrinfo(res);
300 return 1;
301}
302
Damien Miller0faf7472013-10-17 11:47:23 +1100303/*
djm@openbsd.org90109022015-01-16 07:19:48 +0000304 * Attempt to resolve a numeric host address / port to a single address.
305 * Returns a canonical address string.
306 * Returns NULL on failure.
307 * NB. this function must operate with a options having undefined members.
308 */
309static struct addrinfo *
310resolve_addr(const char *name, int port, char *caddr, size_t clen)
311{
312 char addr[NI_MAXHOST], strport[NI_MAXSERV];
313 struct addrinfo hints, *res;
314 int gaierr;
315
316 if (port <= 0)
317 port = default_ssh_port();
318 snprintf(strport, sizeof strport, "%u", port);
319 memset(&hints, 0, sizeof(hints));
320 hints.ai_family = options.address_family == -1 ?
321 AF_UNSPEC : options.address_family;
322 hints.ai_socktype = SOCK_STREAM;
323 hints.ai_flags = AI_NUMERICHOST|AI_NUMERICSERV;
324 if ((gaierr = getaddrinfo(name, strport, &hints, &res)) != 0) {
325 debug2("%s: could not resolve name %.100s as address: %s",
326 __func__, name, ssh_gai_strerror(gaierr));
327 return NULL;
328 }
329 if (res == NULL) {
330 debug("%s: getaddrinfo %.100s returned no addresses",
331 __func__, name);
332 return NULL;
333 }
334 if (res->ai_next != NULL) {
335 debug("%s: getaddrinfo %.100s returned multiple addresses",
336 __func__, name);
337 goto fail;
338 }
339 if ((gaierr = getnameinfo(res->ai_addr, res->ai_addrlen,
340 addr, sizeof(addr), NULL, 0, NI_NUMERICHOST)) != 0) {
341 debug("%s: Could not format address for name %.100s: %s",
342 __func__, name, ssh_gai_strerror(gaierr));
343 goto fail;
344 }
345 if (strlcpy(caddr, addr, clen) >= clen) {
346 error("%s: host \"%s\" addr \"%s\" too long (max %lu)",
347 __func__, name, addr, (u_long)clen);
348 if (clen > 0)
349 *caddr = '\0';
350 fail:
351 freeaddrinfo(res);
352 return NULL;
353 }
354 return res;
355}
356
357/*
Damien Miller0faf7472013-10-17 11:47:23 +1100358 * Check whether the cname is a permitted replacement for the hostname
359 * and perform the replacement if it is.
Damien Miller13f97b22014-02-24 15:57:55 +1100360 * NB. this function must operate with a options having undefined members.
Damien Miller0faf7472013-10-17 11:47:23 +1100361 */
362static int
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000363check_follow_cname(int direct, char **namep, const char *cname)
Damien Miller0faf7472013-10-17 11:47:23 +1100364{
365 int i;
366 struct allowed_cname *rule;
367
368 if (*cname == '\0' || options.num_permitted_cnames == 0 ||
369 strcmp(*namep, cname) == 0)
370 return 0;
Damien Miller38505592013-10-17 11:48:13 +1100371 if (options.canonicalize_hostname == SSH_CANONICALISE_NO)
Damien Miller0faf7472013-10-17 11:47:23 +1100372 return 0;
373 /*
Damien Miller38505592013-10-17 11:48:13 +1100374 * Don't attempt to canonicalize names that will be interpreted by
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000375 * a proxy or jump host unless the user specifically requests so.
Damien Miller0faf7472013-10-17 11:47:23 +1100376 */
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000377 if (!direct &&
Damien Miller38505592013-10-17 11:48:13 +1100378 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS)
Damien Miller0faf7472013-10-17 11:47:23 +1100379 return 0;
380 debug3("%s: check \"%s\" CNAME \"%s\"", __func__, *namep, cname);
381 for (i = 0; i < options.num_permitted_cnames; i++) {
382 rule = options.permitted_cnames + i;
djm@openbsd.orge661a862015-05-04 06:10:48 +0000383 if (match_pattern_list(*namep, rule->source_list, 1) != 1 ||
384 match_pattern_list(cname, rule->target_list, 1) != 1)
Damien Miller0faf7472013-10-17 11:47:23 +1100385 continue;
Damien Miller38505592013-10-17 11:48:13 +1100386 verbose("Canonicalized DNS aliased hostname "
Damien Miller0faf7472013-10-17 11:47:23 +1100387 "\"%s\" => \"%s\"", *namep, cname);
388 free(*namep);
389 *namep = xstrdup(cname);
390 return 1;
391 }
392 return 0;
393}
394
395/*
396 * Attempt to resolve the supplied hostname after applying the user's
Damien Miller51682fa2013-10-17 11:48:31 +1100397 * canonicalization rules. Returns the address list for the host or NULL
398 * if no name was found after canonicalization.
Damien Miller13f97b22014-02-24 15:57:55 +1100399 * NB. this function must operate with a options having undefined members.
Damien Miller0faf7472013-10-17 11:47:23 +1100400 */
401static struct addrinfo *
Damien Miller13f97b22014-02-24 15:57:55 +1100402resolve_canonicalize(char **hostp, int port)
Damien Miller0faf7472013-10-17 11:47:23 +1100403{
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000404 int i, direct, ndots;
djm@openbsd.org90109022015-01-16 07:19:48 +0000405 char *cp, *fullhost, newname[NI_MAXHOST];
Damien Miller0faf7472013-10-17 11:47:23 +1100406 struct addrinfo *addrs;
407
djm@openbsd.orgfc21ea92018-01-23 05:06:25 +0000408 /*
409 * Attempt to canonicalise addresses, regardless of
410 * whether hostname canonicalisation was requested
411 */
412 if ((addrs = resolve_addr(*hostp, port,
413 newname, sizeof(newname))) != NULL) {
414 debug2("%s: hostname %.100s is address", __func__, *hostp);
415 if (strcasecmp(*hostp, newname) != 0) {
416 debug2("%s: canonicalised address \"%s\" => \"%s\"",
417 __func__, *hostp, newname);
418 free(*hostp);
419 *hostp = xstrdup(newname);
420 }
421 return addrs;
422 }
423
424 /*
425 * If this looks like an address but didn't parse as one, it might
426 * be an address with an invalid interface scope. Skip further
427 * attempts at canonicalisation.
428 */
429 if (is_addr_fast(*hostp)) {
430 debug("%s: hostname %.100s is an unrecognised address",
431 __func__, *hostp);
432 return NULL;
433 }
434
Damien Miller38505592013-10-17 11:48:13 +1100435 if (options.canonicalize_hostname == SSH_CANONICALISE_NO)
Damien Miller0faf7472013-10-17 11:47:23 +1100436 return NULL;
Damien Miller13f97b22014-02-24 15:57:55 +1100437
Damien Miller0faf7472013-10-17 11:47:23 +1100438 /*
Damien Miller38505592013-10-17 11:48:13 +1100439 * Don't attempt to canonicalize names that will be interpreted by
Damien Miller0faf7472013-10-17 11:47:23 +1100440 * a proxy unless the user specifically requests so.
441 */
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000442 direct = option_clear_or_none(options.proxy_command) &&
443 options.jump_host == NULL;
444 if (!direct &&
Damien Miller38505592013-10-17 11:48:13 +1100445 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS)
Damien Miller0faf7472013-10-17 11:47:23 +1100446 return NULL;
Damien Miller13f97b22014-02-24 15:57:55 +1100447
djm@openbsd.org5ee00632015-10-16 18:40:49 +0000448 /* If domain name is anchored, then resolve it now */
449 if ((*hostp)[strlen(*hostp) - 1] == '.') {
450 debug3("%s: name is fully qualified", __func__);
451 fullhost = xstrdup(*hostp);
452 if ((addrs = resolve_host(fullhost, port, 0,
453 newname, sizeof(newname))) != NULL)
454 goto found;
455 free(fullhost);
456 goto notfound;
457 }
458
Damien Miller51682fa2013-10-17 11:48:31 +1100459 /* Don't apply canonicalization to sufficiently-qualified hostnames */
Damien Miller0faf7472013-10-17 11:47:23 +1100460 ndots = 0;
461 for (cp = *hostp; *cp != '\0'; cp++) {
462 if (*cp == '.')
463 ndots++;
464 }
Damien Miller38505592013-10-17 11:48:13 +1100465 if (ndots > options.canonicalize_max_dots) {
466 debug3("%s: not canonicalizing hostname \"%s\" (max dots %d)",
467 __func__, *hostp, options.canonicalize_max_dots);
Damien Miller0faf7472013-10-17 11:47:23 +1100468 return NULL;
469 }
470 /* Attempt each supplied suffix */
471 for (i = 0; i < options.num_canonical_domains; i++) {
djm@openbsd.org90109022015-01-16 07:19:48 +0000472 *newname = '\0';
Damien Miller0faf7472013-10-17 11:47:23 +1100473 xasprintf(&fullhost, "%s.%s.", *hostp,
474 options.canonical_domains[i]);
Damien Miller13f97b22014-02-24 15:57:55 +1100475 debug3("%s: attempting \"%s\" => \"%s\"", __func__,
476 *hostp, fullhost);
477 if ((addrs = resolve_host(fullhost, port, 0,
djm@openbsd.org90109022015-01-16 07:19:48 +0000478 newname, sizeof(newname))) == NULL) {
Damien Miller0faf7472013-10-17 11:47:23 +1100479 free(fullhost);
480 continue;
481 }
djm@openbsd.org5ee00632015-10-16 18:40:49 +0000482 found:
Damien Miller0faf7472013-10-17 11:47:23 +1100483 /* Remove trailing '.' */
484 fullhost[strlen(fullhost) - 1] = '\0';
485 /* Follow CNAME if requested */
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000486 if (!check_follow_cname(direct, &fullhost, newname)) {
Damien Miller38505592013-10-17 11:48:13 +1100487 debug("Canonicalized hostname \"%s\" => \"%s\"",
Damien Miller0faf7472013-10-17 11:47:23 +1100488 *hostp, fullhost);
489 }
490 free(*hostp);
491 *hostp = fullhost;
492 return addrs;
493 }
djm@openbsd.org5ee00632015-10-16 18:40:49 +0000494 notfound:
Damien Miller38505592013-10-17 11:48:13 +1100495 if (!options.canonicalize_fallback_local)
Damien Miller13f97b22014-02-24 15:57:55 +1100496 fatal("%s: Could not resolve host \"%s\"", __progname, *hostp);
497 debug2("%s: host %s not found in any suffix", __func__, *hostp);
Damien Miller0faf7472013-10-17 11:47:23 +1100498 return NULL;
499}
500
Damien Miller95def091999-11-25 00:26:21 +1100501/*
markus@openbsd.org5467fbc2018-07-11 18:53:29 +0000502 * Check the result of hostkey loading, ignoring some errors and
503 * fatal()ing for others.
504 */
505static void
506check_load(int r, const char *path, const char *message)
507{
508 switch (r) {
509 case 0:
510 break;
511 case SSH_ERR_INTERNAL_ERROR:
512 case SSH_ERR_ALLOC_FAIL:
513 fatal("load %s \"%s\": %s", message, path, ssh_err(r));
514 case SSH_ERR_SYSTEM_ERROR:
515 /* Ignore missing files */
516 if (errno == ENOENT)
517 break;
518 /* FALLTHROUGH */
519 default:
520 error("load %s \"%s\": %s", message, path, ssh_err(r));
521 break;
522 }
523}
524
525/*
Damien Miller13f97b22014-02-24 15:57:55 +1100526 * Read per-user configuration file. Ignore the system wide config
527 * file if the user specifies a config file on the command line.
528 */
529static void
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000530process_config_files(const char *host_name, struct passwd *pw, int post_canon)
Damien Miller13f97b22014-02-24 15:57:55 +1100531{
deraadt@openbsd.org087266e2015-01-20 23:14:00 +0000532 char buf[PATH_MAX];
Damien Miller13f97b22014-02-24 15:57:55 +1100533 int r;
534
535 if (config != NULL) {
536 if (strcasecmp(config, "none") != 0 &&
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000537 !read_config_file(config, pw, host, host_name, &options,
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000538 SSHCONF_USERCONF | (post_canon ? SSHCONF_POSTCANON : 0)))
Damien Miller13f97b22014-02-24 15:57:55 +1100539 fatal("Can't open user config file %.100s: "
540 "%.100s", config, strerror(errno));
541 } else {
542 r = snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir,
543 _PATH_SSH_USER_CONFFILE);
544 if (r > 0 && (size_t)r < sizeof(buf))
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000545 (void)read_config_file(buf, pw, host, host_name,
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000546 &options, SSHCONF_CHECKPERM | SSHCONF_USERCONF |
547 (post_canon ? SSHCONF_POSTCANON : 0));
Damien Miller13f97b22014-02-24 15:57:55 +1100548
549 /* Read systemwide configuration file after user config. */
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000550 (void)read_config_file(_PATH_HOST_CONFIG_FILE, pw,
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000551 host, host_name, &options,
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000552 post_canon ? SSHCONF_POSTCANON : 0);
553 }
554}
555
556/* Rewrite the port number in an addrinfo list of addresses */
557static void
558set_addrinfo_port(struct addrinfo *addrs, int port)
559{
560 struct addrinfo *addr;
561
562 for (addr = addrs; addr != NULL; addr = addr->ai_next) {
563 switch (addr->ai_family) {
564 case AF_INET:
565 ((struct sockaddr_in *)addr->ai_addr)->
566 sin_port = htons(port);
567 break;
568 case AF_INET6:
569 ((struct sockaddr_in6 *)addr->ai_addr)->
570 sin6_port = htons(port);
571 break;
572 }
Damien Miller13f97b22014-02-24 15:57:55 +1100573 }
574}
575
576/*
Damien Miller95def091999-11-25 00:26:21 +1100577 * Main program for the ssh client.
578 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000579int
580main(int ac, char **av)
581{
djm@openbsd.org95767262016-03-07 19:02:43 +0000582 struct ssh *ssh = NULL;
djm@openbsd.org643c2ad2017-08-12 06:46:01 +0000583 int i, r, opt, exit_status, use_syslog, direct, timeout_ms;
djm@openbsd.orgfc21ea92018-01-23 05:06:25 +0000584 int was_addr, config_test = 0, opt_terminated = 0;
djm@openbsd.orgb7548b12017-10-23 05:08:00 +0000585 char *p, *cp, *line, *argv0, buf[PATH_MAX], *logfile;
586 char cname[NI_MAXHOST];
Damien Miller95def091999-11-25 00:26:21 +1100587 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000588 struct passwd *pw;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000589 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000590 extern char *optarg;
Damien Miller7acefbb2014-07-18 14:11:24 +1000591 struct Forward fwd;
Damien Miller0faf7472013-10-17 11:47:23 +1100592 struct addrinfo *addrs = NULL;
Damien Miller9c386432014-07-03 21:27:46 +1000593 struct ssh_digest_ctx *md;
594 u_char conn_hash[SSH_DIGEST_MAX_LENGTH];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000595
dtucker@openbsd.orgffb1e7e2016-02-15 09:47:49 +0000596 ssh_malloc_init(); /* must be called before any mallocs */
Darren Tuckerce321d82005-10-03 18:11:24 +1000597 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
598 sanitise_stdfd();
599
Damien Miller59d3d5b2003-08-22 09:34:41 +1000600 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000601
Damien Millerea2c1a42011-06-03 12:10:22 +1000602#ifndef HAVE_SETPROCTITLE
603 /* Prepare for later setproctitle emulation */
604 /* Save argv so it isn't clobbered by setproctitle() emulation */
605 saved_av = xcalloc(ac + 1, sizeof(*saved_av));
606 for (i = 0; i < ac; i++)
607 saved_av[i] = xstrdup(av[i]);
608 saved_av[i] = NULL;
609 compat_init_setproctitle(ac, av);
610 av = saved_av;
611#endif
612
Damien Miller5428f641999-11-25 11:54:57 +1100613 /*
Damien Miller00d9ae22010-08-17 01:59:31 +1000614 * Discard other fds that are hanging around. These can cause problem
615 * with backgrounded ssh processes started by ControlPersist.
616 */
617 closefrom(STDERR_FILENO + 1);
618
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000619 /* Get user data. */
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +0000620 pw = getpwuid(getuid());
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000621 if (!pw) {
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +0000622 logit("No user exists for uid %lu", (u_long)getuid());
Darren Tuckere9a9b712005-12-20 16:15:51 +1100623 exit(255);
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000624 }
625 /* Take a copy of the returned structure. */
626 pw = pwcopy(pw);
627
Damien Miller5428f641999-11-25 11:54:57 +1100628 /*
Damien Miller5428f641999-11-25 11:54:57 +1100629 * Set our umask to something reasonable, as some files are created
630 * with the default umask. This will make them world-readable but
631 * writable only by the owner, which is ok for all files for which we
632 * don't set the modes explicitly.
633 */
Damien Miller95def091999-11-25 00:26:21 +1100634 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000635
Damien Millerdda78a02016-12-12 13:57:10 +1100636 msetlocale();
djm@openbsd.org65c6c6b2016-07-17 04:20:16 +0000637
Darren Tuckerd6173c02008-06-13 04:52:53 +1000638 /*
639 * Initialize option structure to indicate that no values have been
640 * set.
641 */
Damien Miller95def091999-11-25 00:26:21 +1100642 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000643
djm@openbsd.orgdbee4112017-09-12 06:32:07 +0000644 /*
645 * Prepare main ssh transport/connection structures
646 */
647 if ((ssh = ssh_alloc_session_state()) == NULL)
648 fatal("Couldn't allocate session state");
649 channel_init_channels(ssh);
650 active_state = ssh; /* XXX legacy API compat */
651
Damien Miller95def091999-11-25 00:26:21 +1100652 /* Parse command-line arguments. */
653 host = NULL;
Damien Millere272a5b2008-11-03 19:22:37 +1100654 use_syslog = 0;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000655 logfile = NULL;
Darren Tucker72efd742009-06-21 17:48:00 +1000656 argv0 = av[0];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000657
Damien Miller2ecb6bd2006-03-15 12:03:53 +1100658 again:
Darren Tuckerd6173c02008-06-13 04:52:53 +1000659 while ((opt = getopt(ac, av, "1246ab:c:e:fgi:kl:m:no:p:qstvx"
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000660 "AB:CD:E:F:GI:J:KL:MNO:PQ:R:S:TVw:W:XYy")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100661 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000662 case '1':
djm@openbsd.org99f95ba2017-04-30 23:11:45 +0000663 fatal("SSH protocol v.1 is no longer supported");
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000664 break;
Damien Miller4af51302000-04-16 11:18:38 +1000665 case '2':
djm@openbsd.org99f95ba2017-04-30 23:11:45 +0000666 /* Ignored */
Damien Miller4af51302000-04-16 11:18:38 +1000667 break;
Damien Miller34132e52000-01-14 15:45:46 +1100668 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000669 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100670 break;
Damien Miller34132e52000-01-14 15:45:46 +1100671 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000672 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100673 break;
Damien Miller95def091999-11-25 00:26:21 +1100674 case 'n':
675 stdin_null_flag = 1;
676 break;
Damien Miller95def091999-11-25 00:26:21 +1100677 case 'f':
678 fork_after_authentication_flag = 1;
679 stdin_null_flag = 1;
680 break;
Damien Miller95def091999-11-25 00:26:21 +1100681 case 'x':
682 options.forward_x11 = 0;
683 break;
Damien Miller95def091999-11-25 00:26:21 +1100684 case 'X':
685 options.forward_x11 = 1;
686 break;
Damien Millere272a5b2008-11-03 19:22:37 +1100687 case 'y':
688 use_syslog = 1;
689 break;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000690 case 'E':
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000691 logfile = optarg;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000692 break;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000693 case 'G':
694 config_test = 1;
695 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000696 case 'Y':
697 options.forward_x11 = 1;
698 options.forward_x11_trusted = 1;
699 break;
Damien Miller95def091999-11-25 00:26:21 +1100700 case 'g':
Damien Miller7acefbb2014-07-18 14:11:24 +1000701 options.fwd_opts.gateway_ports = 1;
Damien Miller95def091999-11-25 00:26:21 +1100702 break;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100703 case 'O':
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +0000704 if (options.stdio_forward_host != NULL)
Damien Millere1537f92010-01-26 13:26:22 +1100705 fatal("Cannot specify multiplexing "
706 "command with -W");
707 else if (muxclient_command != 0)
708 fatal("Multiplexing command already specified");
Darren Tucker7ebfc102004-11-07 20:06:19 +1100709 if (strcmp(optarg, "check") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000710 muxclient_command = SSHMUX_COMMAND_ALIVE_CHECK;
Damien Miller388f6fc2010-05-21 14:57:35 +1000711 else if (strcmp(optarg, "forward") == 0)
712 muxclient_command = SSHMUX_COMMAND_FORWARD;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100713 else if (strcmp(optarg, "exit") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000714 muxclient_command = SSHMUX_COMMAND_TERMINATE;
Damien Miller6c3eec72011-05-05 14:16:22 +1000715 else if (strcmp(optarg, "stop") == 0)
716 muxclient_command = SSHMUX_COMMAND_STOP;
Damien Millerf6dff7c2011-09-22 21:38:52 +1000717 else if (strcmp(optarg, "cancel") == 0)
718 muxclient_command = SSHMUX_COMMAND_CANCEL_FWD;
markus@openbsd.org8d057842016-09-30 09:19:13 +0000719 else if (strcmp(optarg, "proxy") == 0)
720 muxclient_command = SSHMUX_COMMAND_PROXY;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100721 else
722 fatal("Invalid multiplex command.");
723 break;
Damien Miller147bba32002-09-04 16:46:06 +1000724 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100725 break;
Damien Millerd937dc02013-12-05 10:19:54 +1100726 case 'Q':
Damien Millerea111192013-04-23 19:24:32 +1000727 cp = NULL;
Damien Millerd937dc02013-12-05 10:19:54 +1100728 if (strcmp(optarg, "cipher") == 0)
Damien Miller0fde8ac2013-11-21 14:12:23 +1100729 cp = cipher_alg_list('\n', 0);
Damien Millerd937dc02013-12-05 10:19:54 +1100730 else if (strcmp(optarg, "cipher-auth") == 0)
Damien Miller0fde8ac2013-11-21 14:12:23 +1100731 cp = cipher_alg_list('\n', 1);
Damien Millerd937dc02013-12-05 10:19:54 +1100732 else if (strcmp(optarg, "mac") == 0)
Damien Miller690d9892013-11-08 12:16:49 +1100733 cp = mac_alg_list('\n');
Damien Millerd937dc02013-12-05 10:19:54 +1100734 else if (strcmp(optarg, "kex") == 0)
Damien Miller690d9892013-11-08 12:16:49 +1100735 cp = kex_alg_list('\n');
Damien Millerd937dc02013-12-05 10:19:54 +1100736 else if (strcmp(optarg, "key") == 0)
djm@openbsd.org183ba552017-03-10 04:07:20 +0000737 cp = sshkey_alg_list(0, 0, 0, '\n');
Damien Miller5be9d9e2013-12-07 11:24:01 +1100738 else if (strcmp(optarg, "key-cert") == 0)
djm@openbsd.org183ba552017-03-10 04:07:20 +0000739 cp = sshkey_alg_list(1, 0, 0, '\n');
Damien Miller5be9d9e2013-12-07 11:24:01 +1100740 else if (strcmp(optarg, "key-plain") == 0)
djm@openbsd.org183ba552017-03-10 04:07:20 +0000741 cp = sshkey_alg_list(0, 1, 0, '\n');
djm@openbsd.org68d2dfc2015-03-03 06:48:58 +0000742 else if (strcmp(optarg, "protocol-version") == 0) {
djm@openbsd.org68d2dfc2015-03-03 06:48:58 +0000743 cp = xstrdup("2");
djm@openbsd.org68d2dfc2015-03-03 06:48:58 +0000744 }
Damien Millerea111192013-04-23 19:24:32 +1000745 if (cp == NULL)
746 fatal("Unsupported query \"%s\"", optarg);
747 printf("%s\n", cp);
748 free(cp);
749 exit(0);
750 break;
Damien Miller95def091999-11-25 00:26:21 +1100751 case 'a':
752 options.forward_agent = 0;
753 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000754 case 'A':
755 options.forward_agent = 1;
756 break;
Damien Miller95def091999-11-25 00:26:21 +1100757 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100758 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100759 break;
Darren Tucker415bddc2007-06-12 23:43:16 +1000760 case 'K':
761 options.gss_authentication = 1;
762 options.gss_deleg_creds = 1;
763 break;
Damien Miller95def091999-11-25 00:26:21 +1100764 case 'i':
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +0000765 p = tilde_expand_filename(optarg, getuid());
dtucker@openbsd.org03239c12015-10-25 23:42:00 +0000766 if (stat(p, &st) < 0)
Damien Millerf4614452001-07-14 12:18:10 +1000767 fprintf(stderr, "Warning: Identity file %s "
dtucker@openbsd.org03239c12015-10-25 23:42:00 +0000768 "not accessible: %s.\n", p,
Damien Miller3eb48b62005-03-01 21:15:46 +1100769 strerror(errno));
dtucker@openbsd.org03239c12015-10-25 23:42:00 +0000770 else
771 add_identity_file(&options, NULL, p, 1);
772 free(p);
Damien Miller95def091999-11-25 00:26:21 +1100773 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000774 case 'I':
Damien Miller7ea845e2010-02-12 09:21:02 +1100775#ifdef ENABLE_PKCS11
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000776 free(options.pkcs11_provider);
Damien Miller7ea845e2010-02-12 09:21:02 +1100777 options.pkcs11_provider = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000778#else
Damien Miller7ea845e2010-02-12 09:21:02 +1100779 fprintf(stderr, "no support for PKCS#11.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000780#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000781 break;
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000782 case 'J':
783 if (options.jump_host != NULL)
784 fatal("Only a single -J option permitted");
785 if (options.proxy_command != NULL)
786 fatal("Cannot specify -J with ProxyCommand");
787 if (parse_jump(optarg, &options, 1) == -1)
788 fatal("Invalid -J argument");
789 options.proxy_command = xstrdup("none");
790 break;
Damien Miller95def091999-11-25 00:26:21 +1100791 case 't':
Damien Miller21771e22011-05-15 08:45:50 +1000792 if (options.request_tty == REQUEST_TTY_YES)
793 options.request_tty = REQUEST_TTY_FORCE;
794 else
795 options.request_tty = REQUEST_TTY_YES;
Damien Miller95def091999-11-25 00:26:21 +1100796 break;
Damien Miller95def091999-11-25 00:26:21 +1100797 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000798 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100799 debug_flag = 1;
800 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000801 } else {
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000802 if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
803 debug_flag++;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000804 options.log_level++;
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000805 }
Darren Tuckere98dfa32003-07-19 19:54:31 +1000806 }
Damien Miller03d4d7e2013-04-23 15:21:06 +1000807 break;
Damien Miller95def091999-11-25 00:26:21 +1100808 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100809 fprintf(stderr, "%s, %s\n",
Damien Miller1f0311c2014-05-15 14:24:09 +1000810 SSH_RELEASE,
811#ifdef WITH_OPENSSL
812 SSLeay_version(SSLEAY_VERSION)
813#else
814 "without OpenSSL"
815#endif
816 );
Damien Miller95def091999-11-25 00:26:21 +1100817 if (opt == 'V')
818 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100819 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100820 case 'w':
Damien Miller7b58e802005-12-13 19:33:19 +1100821 if (options.tun_open == -1)
822 options.tun_open = SSH_TUNMODE_DEFAULT;
Damien Millerd27b9472005-12-13 19:29:02 +1100823 options.tun_local = a2tun(optarg, &options.tun_remote);
Damien Miller7b58e802005-12-13 19:33:19 +1100824 if (options.tun_local == SSH_TUNID_ERR) {
Darren Tuckerd6173c02008-06-13 04:52:53 +1000825 fprintf(stderr,
826 "Bad tun device '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100827 exit(255);
Damien Millerd27b9472005-12-13 19:29:02 +1100828 }
829 break;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100830 case 'W':
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +0000831 if (options.stdio_forward_host != NULL)
Damien Millere1537f92010-01-26 13:26:22 +1100832 fatal("stdio forward already specified");
833 if (muxclient_command != 0)
834 fatal("Cannot specify stdio forward with -O");
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100835 if (parse_forward(&fwd, optarg, 1, 0)) {
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +0000836 options.stdio_forward_host = fwd.listen_host;
837 options.stdio_forward_port = fwd.listen_port;
Darren Tuckera627d422013-06-02 07:31:17 +1000838 free(fwd.connect_host);
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100839 } else {
840 fprintf(stderr,
841 "Bad stdio forwarding specification '%s'\n",
842 optarg);
843 exit(255);
844 }
Damien Miller21771e22011-05-15 08:45:50 +1000845 options.request_tty = REQUEST_TTY_NO;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100846 no_shell_flag = 1;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100847 break;
Damien Miller95def091999-11-25 00:26:21 +1100848 case 'q':
849 options.log_level = SYSLOG_LEVEL_QUIET;
850 break;
Damien Miller95def091999-11-25 00:26:21 +1100851 case 'e':
852 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000853 (u_char) optarg[1] >= 64 &&
854 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000855 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100856 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000857 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100858 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000859 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100860 else {
Damien Millerf4614452001-07-14 12:18:10 +1000861 fprintf(stderr, "Bad escape character '%s'.\n",
862 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100863 exit(255);
Damien Miller95def091999-11-25 00:26:21 +1100864 }
865 break;
Damien Miller95def091999-11-25 00:26:21 +1100866 case 'c':
djm@openbsd.orgcdccebd2017-04-30 23:15:04 +0000867 if (!ciphers_valid(*optarg == '+' ?
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000868 optarg + 1 : optarg)) {
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000869 fprintf(stderr, "Unknown cipher type '%s'\n",
870 optarg);
871 exit(255);
872 }
djm@openbsd.orgcdccebd2017-04-30 23:15:04 +0000873 free(options.ciphers);
874 options.ciphers = xstrdup(optarg);
Damien Miller95def091999-11-25 00:26:21 +1100875 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000876 case 'm':
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000877 if (mac_valid(optarg)) {
878 free(options.macs);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000879 options.macs = xstrdup(optarg);
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000880 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000881 fprintf(stderr, "Unknown mac type '%s'\n",
882 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100883 exit(255);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000884 }
885 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000886 case 'M':
Damien Millerd14b1e72005-06-16 13:19:41 +1000887 if (options.control_master == SSHCTL_MASTER_YES)
888 options.control_master = SSHCTL_MASTER_ASK;
889 else
890 options.control_master = SSHCTL_MASTER_YES;
Damien Miller0e220db2004-06-15 10:34:08 +1000891 break;
Damien Miller95def091999-11-25 00:26:21 +1100892 case 'p':
millert@openbsd.org887669e2017-10-21 23:06:24 +0000893 if (options.port == -1) {
894 options.port = a2port(optarg);
895 if (options.port <= 0) {
896 fprintf(stderr, "Bad port '%s'\n",
897 optarg);
898 exit(255);
899 }
Ben Lindstrom146edb92001-04-11 23:06:28 +0000900 }
Damien Miller95def091999-11-25 00:26:21 +1100901 break;
Damien Miller95def091999-11-25 00:26:21 +1100902 case 'l':
millert@openbsd.org887669e2017-10-21 23:06:24 +0000903 if (options.user == NULL)
904 options.user = optarg;
Damien Miller95def091999-11-25 00:26:21 +1100905 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000906
Damien Miller95def091999-11-25 00:26:21 +1100907 case 'L':
Damien Miller4bf648f2009-02-14 16:28:21 +1100908 if (parse_forward(&fwd, optarg, 0, 0))
Damien Millerf91ee4c2005-03-01 21:24:33 +1100909 add_local_forward(&options, &fwd);
910 else {
Damien Millerf4614452001-07-14 12:18:10 +1000911 fprintf(stderr,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100912 "Bad local forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000913 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100914 exit(255);
Ben Lindstrom1a174712001-09-12 17:56:15 +0000915 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100916 break;
917
918 case 'R':
markus@openbsd.org609d7a62017-09-21 19:16:53 +0000919 if (parse_forward(&fwd, optarg, 0, 1) ||
920 parse_forward(&fwd, optarg, 1, 1)) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100921 add_remote_forward(&options, &fwd);
922 } else {
923 fprintf(stderr,
924 "Bad remote forwarding specification "
925 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100926 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100927 }
Damien Miller95def091999-11-25 00:26:21 +1100928 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000929
930 case 'D':
Damien Miller4bf648f2009-02-14 16:28:21 +1100931 if (parse_forward(&fwd, optarg, 1, 0)) {
Damien Millera699d952008-11-03 19:27:34 +1100932 add_local_forward(&options, &fwd);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100933 } else {
Damien Millera699d952008-11-03 19:27:34 +1100934 fprintf(stderr,
935 "Bad dynamic forwarding specification "
936 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100937 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000938 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000939 break;
940
Damien Miller95def091999-11-25 00:26:21 +1100941 case 'C':
942 options.compression = 1;
943 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000944 case 'N':
945 no_shell_flag = 1;
Damien Miller21771e22011-05-15 08:45:50 +1000946 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000947 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000948 case 'T':
Damien Miller21771e22011-05-15 08:45:50 +1000949 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000950 break;
Damien Miller95def091999-11-25 00:26:21 +1100951 case 'o':
Damien Miller9836cf82003-12-17 16:30:06 +1100952 line = xstrdup(optarg);
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000953 if (process_config_line(&options, pw,
954 host ? host : "", host ? host : "", line,
955 "command-line", 0, NULL, SSHCONF_USERCONF) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100956 exit(255);
Darren Tuckera627d422013-06-02 07:31:17 +1000957 free(line);
Damien Miller95def091999-11-25 00:26:21 +1100958 break;
Damien Miller832562e2001-01-30 09:30:01 +1100959 case 's':
960 subsystem_flag = 1;
961 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000962 case 'S':
mmcc@openbsd.orgd59ce082015-12-10 17:08:40 +0000963 free(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +1000964 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000965 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000966 case 'b':
967 options.bind_address = optarg;
968 break;
djm@openbsd.orgac2e3022018-02-23 02:34:33 +0000969 case 'B':
970 options.bind_interface = optarg;
971 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000972 case 'F':
973 config = optarg;
974 break;
Damien Miller95def091999-11-25 00:26:21 +1100975 default:
976 usage();
977 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000978 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000979
djm@openbsd.org643c2ad2017-08-12 06:46:01 +0000980 if (optind > 1 && strcmp(av[optind - 1], "--") == 0)
981 opt_terminated = 1;
982
Damien Millerf4614452001-07-14 12:18:10 +1000983 ac -= optind;
984 av += optind;
985
Darren Tuckerb8c884a2010-01-08 18:53:43 +1100986 if (ac > 0 && !host) {
millert@openbsd.org887669e2017-10-21 23:06:24 +0000987 int tport;
988 char *tuser;
989 switch (parse_ssh_uri(*av, &tuser, &host, &tport)) {
990 case -1:
991 usage();
992 break;
993 case 0:
994 if (options.user == NULL) {
995 options.user = tuser;
996 tuser = NULL;
997 }
998 free(tuser);
999 if (options.port == -1 && tport != -1)
1000 options.port = tport;
1001 break;
1002 default:
Damien Millerf4614452001-07-14 12:18:10 +10001003 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +00001004 cp = strrchr(p, '@');
millert@openbsd.org887669e2017-10-21 23:06:24 +00001005 if (cp != NULL) {
1006 if (cp == p)
1007 usage();
1008 if (options.user == NULL) {
1009 options.user = p;
1010 p = NULL;
1011 }
1012 *cp++ = '\0';
1013 host = xstrdup(cp);
1014 free(p);
1015 } else
1016 host = p;
1017 break;
1018 }
djm@openbsd.org643c2ad2017-08-12 06:46:01 +00001019 if (ac > 1 && !opt_terminated) {
Ben Lindstromb9fa6912002-12-23 02:24:54 +00001020 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +10001021 goto again;
1022 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +00001023 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +10001024 }
1025
Damien Miller95def091999-11-25 00:26:21 +11001026 /* Check that we got a host name. */
1027 if (!host)
1028 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001029
Damien Miller0faf7472013-10-17 11:47:23 +11001030 host_arg = xstrdup(host);
1031
Damien Miller1f0311c2014-05-15 14:24:09 +10001032#ifdef WITH_OPENSSL
Damien Miller4314c2b2010-09-10 11:12:09 +10001033 OpenSSL_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001034 ERR_load_crypto_strings();
Damien Miller1f0311c2014-05-15 14:24:09 +10001035#endif
Damien Millercb5e44a2000-09-29 12:12:36 +11001036
Damien Miller95def091999-11-25 00:26:21 +11001037 /* Initialize the command to execute on remote host. */
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +00001038 if ((command = sshbuf_new()) == NULL)
1039 fatal("sshbuf_new failed");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001040
Damien Miller5428f641999-11-25 11:54:57 +11001041 /*
1042 * Save the command to execute on the remote host in a buffer. There
1043 * is no limit on the length of the command, except by the maximum
1044 * packet size. Also sets the tty flag if there is no command.
1045 */
Damien Millerf4614452001-07-14 12:18:10 +10001046 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +11001047 /* No command specified - execute shell on a tty. */
Damien Miller832562e2001-01-30 09:30:01 +11001048 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +10001049 fprintf(stderr,
1050 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +11001051 usage();
1052 }
Damien Miller95def091999-11-25 00:26:21 +11001053 } else {
Damien Millerf4614452001-07-14 12:18:10 +10001054 /* A command has been specified. Store it into the buffer. */
1055 for (i = 0; i < ac; i++) {
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +00001056 if ((r = sshbuf_putf(command, "%s%s",
1057 i ? " " : "", av[i])) != 0)
1058 fatal("%s: buffer error: %s",
1059 __func__, ssh_err(r));
Damien Miller95def091999-11-25 00:26:21 +11001060 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001061 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001062
Ben Lindstrom8a432f52001-03-05 07:24:46 +00001063 /*
1064 * Initialize "log" output. Since we are the client all output
Damien Miller03d4d7e2013-04-23 15:21:06 +10001065 * goes to stderr unless otherwise specified by -y or -E.
Ben Lindstrom8a432f52001-03-05 07:24:46 +00001066 */
Damien Miller03d4d7e2013-04-23 15:21:06 +10001067 if (use_syslog && logfile != NULL)
1068 fatal("Can't specify both -y and -E");
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +00001069 if (logfile != NULL)
Damien Miller03d4d7e2013-04-23 15:21:06 +10001070 log_redirect_stderr_to(logfile);
Darren Tucker72efd742009-06-21 17:48:00 +10001071 log_init(argv0,
djm@openbsd.org@openbsd.orgdbe06622017-10-27 01:57:06 +00001072 options.log_level == SYSLOG_LEVEL_NOT_SET ?
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +00001073 SYSLOG_LEVEL_INFO : options.log_level,
djm@openbsd.org@openbsd.orgdbe06622017-10-27 01:57:06 +00001074 options.log_facility == SYSLOG_FACILITY_NOT_SET ?
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +00001075 SYSLOG_FACILITY_USER : options.log_facility,
1076 !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001077
Damien Miller03d4d7e2013-04-23 15:21:06 +10001078 if (debug_flag)
Damien Miller1f0311c2014-05-15 14:24:09 +10001079 logit("%s, %s", SSH_RELEASE,
1080#ifdef WITH_OPENSSL
1081 SSLeay_version(SSLEAY_VERSION)
1082#else
1083 "without OpenSSL"
1084#endif
1085 );
Damien Miller03d4d7e2013-04-23 15:21:06 +10001086
Damien Miller13f97b22014-02-24 15:57:55 +11001087 /* Parse the configuration files */
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001088 process_config_files(host_arg, pw, 0);
Ben Lindstrom83f07d12001-10-03 17:22:29 +00001089
Damien Miller13f97b22014-02-24 15:57:55 +11001090 /* Hostname canonicalisation needs a few options filled. */
1091 fill_default_options_for_canonicalization(&options);
1092
1093 /* If the user has replaced the hostname then take it into use now */
1094 if (options.hostname != NULL) {
1095 /* NB. Please keep in sync with readconf.c:match_cfg_line() */
1096 cp = percent_expand(options.hostname,
1097 "h", host, (char *)NULL);
1098 free(host);
1099 host = cp;
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001100 free(options.hostname);
1101 options.hostname = xstrdup(host);
Damien Miller13f97b22014-02-24 15:57:55 +11001102 }
1103
djm@openbsd.orgfc21ea92018-01-23 05:06:25 +00001104 /* Don't lowercase addresses, they will be explicitly canonicalised */
1105 if ((was_addr = is_addr(host)) == 0)
1106 lowercase(host);
1107
1108 /*
1109 * Try to canonicalize if requested by configuration or the
1110 * hostname is an address.
1111 */
1112 if (options.canonicalize_hostname != SSH_CANONICALISE_NO || was_addr)
Damien Miller13f97b22014-02-24 15:57:55 +11001113 addrs = resolve_canonicalize(&host, options.port);
1114
1115 /*
Damien Miller08b57c62014-02-27 10:17:13 +11001116 * If CanonicalizePermittedCNAMEs have been specified but
1117 * other canonicalization did not happen (by not being requested
1118 * or by failing with fallback) then the hostname may still be changed
djm@openbsd.org@openbsd.orgdbe06622017-10-27 01:57:06 +00001119 * as a result of CNAME following.
Damien Miller08b57c62014-02-27 10:17:13 +11001120 *
1121 * Try to resolve the bare hostname name using the system resolver's
1122 * usual search rules and then apply the CNAME follow rules.
1123 *
1124 * Skip the lookup if a ProxyCommand is being used unless the user
1125 * has specifically requested canonicalisation for this case via
1126 * CanonicalizeHostname=always
Damien Miller13f97b22014-02-24 15:57:55 +11001127 */
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001128 direct = option_clear_or_none(options.proxy_command) &&
1129 options.jump_host == NULL;
1130 if (addrs == NULL && options.num_permitted_cnames != 0 && (direct ||
1131 options.canonicalize_hostname == SSH_CANONICALISE_ALWAYS)) {
Damien Miller19439e92014-07-02 15:28:40 +10001132 if ((addrs = resolve_host(host, options.port,
1133 option_clear_or_none(options.proxy_command),
1134 cname, sizeof(cname))) == NULL) {
1135 /* Don't fatal proxied host names not in the DNS */
1136 if (option_clear_or_none(options.proxy_command))
1137 cleanup_exit(255); /* logged in resolve_host */
1138 } else
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001139 check_follow_cname(direct, &host, cname);
Damien Miller13f97b22014-02-24 15:57:55 +11001140 }
1141
1142 /*
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001143 * If canonicalisation is enabled then re-parse the configuration
1144 * files as new stanzas may match.
Damien Miller13f97b22014-02-24 15:57:55 +11001145 */
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001146 if (options.canonicalize_hostname != 0) {
1147 debug("Re-reading configuration after hostname "
1148 "canonicalisation");
1149 free(options.hostname);
1150 options.hostname = xstrdup(host);
1151 process_config_files(host_arg, pw, 1);
1152 /*
1153 * Address resolution happens early with canonicalisation
1154 * enabled and the port number may have changed since, so
1155 * reset it in address list
1156 */
1157 if (addrs != NULL && options.port > 0)
1158 set_addrinfo_port(addrs, options.port);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +00001159 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001160
Damien Miller95def091999-11-25 00:26:21 +11001161 /* Fill configuration defaults. */
1162 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001163
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001164 /*
1165 * If ProxyJump option specified, then construct a ProxyCommand now.
1166 */
1167 if (options.jump_host != NULL) {
1168 char port_s[8];
djm@openbsd.orgd8748b92018-06-01 03:11:49 +00001169 const char *sshbin = argv0;
1170
1171 /*
1172 * Try to use SSH indicated by argv[0], but fall back to
1173 * "ssh" if it appears unavailable.
1174 */
1175 if (strchr(argv0, '/') != NULL && access(argv0, X_OK) != 0)
1176 sshbin = "ssh";
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001177
1178 /* Consistency check */
1179 if (options.proxy_command != NULL)
1180 fatal("inconsistent options: ProxyCommand+ProxyJump");
1181 /* Never use FD passing for ProxyJump */
1182 options.proxy_use_fdpass = 0;
1183 snprintf(port_s, sizeof(port_s), "%d", options.jump_port);
1184 xasprintf(&options.proxy_command,
djm@openbsd.orgd8748b92018-06-01 03:11:49 +00001185 "%s%s%s%s%s%s%s%s%s%s%.*s -W '[%%h]:%%p' %s",
1186 sshbin,
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001187 /* Optional "-l user" argument if jump_user set */
1188 options.jump_user == NULL ? "" : " -l ",
1189 options.jump_user == NULL ? "" : options.jump_user,
1190 /* Optional "-p port" argument if jump_port set */
1191 options.jump_port <= 0 ? "" : " -p ",
1192 options.jump_port <= 0 ? "" : port_s,
1193 /* Optional additional jump hosts ",..." */
1194 options.jump_extra == NULL ? "" : " -J ",
1195 options.jump_extra == NULL ? "" : options.jump_extra,
1196 /* Optional "-F" argumment if -F specified */
1197 config == NULL ? "" : " -F ",
1198 config == NULL ? "" : config,
1199 /* Optional "-v" arguments if -v set */
1200 debug_flag ? " -" : "",
1201 debug_flag, "vvv",
1202 /* Mandatory hostname */
1203 options.jump_host);
1204 debug("Setting implicit ProxyCommand from ProxyJump: %s",
1205 options.proxy_command);
1206 }
1207
Damien Miller13f97b22014-02-24 15:57:55 +11001208 if (options.port == 0)
1209 options.port = default_ssh_port();
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001210 channel_set_af(ssh, options.address_family);
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001211
Damien Millere9fc72e2013-10-15 12:14:12 +11001212 /* Tidy and check options */
1213 if (options.host_key_alias != NULL)
1214 lowercase(options.host_key_alias);
1215 if (options.proxy_command != NULL &&
1216 strcmp(options.proxy_command, "-") == 0 &&
1217 options.proxy_use_fdpass)
1218 fatal("ProxyCommand=- and ProxyUseFDPass are incompatible");
djm@openbsd.org44732de2015-02-20 22:17:21 +00001219 if (options.control_persist &&
1220 options.update_hostkeys == SSH_UPDATE_HOSTKEYS_ASK) {
1221 debug("UpdateHostKeys=ask is incompatible with ControlPersist; "
1222 "disabling");
1223 options.update_hostkeys = 0;
1224 }
djm@openbsd.org88b6fcd2015-11-19 08:23:27 +00001225 if (options.connection_attempts <= 0)
1226 fatal("Invalid number of ConnectionAttempts");
Damien Millere9fc72e2013-10-15 12:14:12 +11001227
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +00001228 if (sshbuf_len(command) != 0 && options.remote_command != NULL)
bluhm@openbsd.org1112b532017-05-30 18:58:37 +00001229 fatal("Cannot execute command-line and remote command.");
1230
1231 /* Cannot fork to background if no command. */
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +00001232 if (fork_after_authentication_flag && sshbuf_len(command) == 0 &&
bluhm@openbsd.org1112b532017-05-30 18:58:37 +00001233 options.remote_command == NULL && !no_shell_flag)
1234 fatal("Cannot fork into background without a command "
1235 "to execute.");
1236
Damien Miller95def091999-11-25 00:26:21 +11001237 /* reinit */
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +00001238 log_init(argv0, options.log_level, options.log_facility, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001239
Damien Millerfff9f092012-07-06 13:45:01 +10001240 if (options.request_tty == REQUEST_TTY_YES ||
1241 options.request_tty == REQUEST_TTY_FORCE)
1242 tty_flag = 1;
1243
1244 /* Allocate a tty by default if no command specified. */
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +00001245 if (sshbuf_len(command) == 0 && options.remote_command == NULL)
Damien Millerfff9f092012-07-06 13:45:01 +10001246 tty_flag = options.request_tty != REQUEST_TTY_NO;
1247
1248 /* Force no tty */
markus@openbsd.org8d057842016-09-30 09:19:13 +00001249 if (options.request_tty == REQUEST_TTY_NO ||
1250 (muxclient_command && muxclient_command != SSHMUX_COMMAND_PROXY))
Damien Millerfff9f092012-07-06 13:45:01 +10001251 tty_flag = 0;
1252 /* Do not allocate a tty if stdin is not a tty. */
1253 if ((!isatty(fileno(stdin)) || stdin_null_flag) &&
1254 options.request_tty != REQUEST_TTY_FORCE) {
1255 if (tty_flag)
1256 logit("Pseudo-terminal will not be allocated because "
1257 "stdin is not a terminal.");
1258 tty_flag = 0;
1259 }
1260
Damien Miller60bc5172001-03-19 09:38:15 +11001261 seed_rng();
1262
Damien Miller95def091999-11-25 00:26:21 +11001263 if (options.user == NULL)
1264 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001265
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001266 /* Set up strings used to percent_expand() arguments */
Damien Millerdfc85fa2011-05-15 08:44:02 +10001267 if (gethostname(thishost, sizeof(thishost)) == -1)
1268 fatal("gethostname: %s", strerror(errno));
1269 strlcpy(shorthost, thishost, sizeof(shorthost));
1270 shorthost[strcspn(thishost, ".")] = '\0';
1271 snprintf(portstr, sizeof(portstr), "%d", options.port);
djm@openbsd.org9c935dd2018-06-01 03:33:53 +00001272 snprintf(uidstr, sizeof(uidstr), "%llu",
1273 (unsigned long long)pw->pw_uid);
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001274
Damien Miller9c386432014-07-03 21:27:46 +10001275 if ((md = ssh_digest_start(SSH_DIGEST_SHA1)) == NULL ||
1276 ssh_digest_update(md, thishost, strlen(thishost)) < 0 ||
1277 ssh_digest_update(md, host, strlen(host)) < 0 ||
1278 ssh_digest_update(md, portstr, strlen(portstr)) < 0 ||
1279 ssh_digest_update(md, options.user, strlen(options.user)) < 0 ||
1280 ssh_digest_final(md, conn_hash, sizeof(conn_hash)) < 0)
1281 fatal("%s: mux digest failed", __func__);
1282 ssh_digest_free(md);
1283 conn_hash_hex = tohex(conn_hash, ssh_digest_bytes(SSH_DIGEST_SHA1));
1284
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001285 /*
1286 * Expand tokens in arguments. NB. LocalCommand is expanded later,
1287 * after port-forwarding is set up, so it may pick up any local
1288 * tunnel interface name allocated.
1289 */
bluhm@openbsd.org1112b532017-05-30 18:58:37 +00001290 if (options.remote_command != NULL) {
1291 debug3("expanding RemoteCommand: %s", options.remote_command);
1292 cp = options.remote_command;
1293 options.remote_command = percent_expand(cp,
1294 "C", conn_hash_hex,
1295 "L", shorthost,
1296 "d", pw->pw_dir,
1297 "h", host,
djm@openbsd.org9c935dd2018-06-01 03:33:53 +00001298 "i", uidstr,
bluhm@openbsd.org1112b532017-05-30 18:58:37 +00001299 "l", thishost,
1300 "n", host_arg,
1301 "p", portstr,
1302 "r", options.user,
1303 "u", pw->pw_name,
1304 (char *)NULL);
1305 debug3("expanded RemoteCommand: %s", options.remote_command);
1306 free(cp);
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +00001307 if ((r = sshbuf_put(command, options.remote_command,
1308 strlen(options.remote_command))) != 0)
1309 fatal("%s: buffer error: %s", __func__, ssh_err(r));
bluhm@openbsd.org1112b532017-05-30 18:58:37 +00001310 }
1311
Damien Miller0e220db2004-06-15 10:34:08 +10001312 if (options.control_path != NULL) {
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +00001313 cp = tilde_expand_filename(options.control_path, getuid());
Darren Tuckera627d422013-06-02 07:31:17 +10001314 free(options.control_path);
Damien Miller9c386432014-07-03 21:27:46 +10001315 options.control_path = percent_expand(cp,
1316 "C", conn_hash_hex,
1317 "L", shorthost,
1318 "h", host,
djm@openbsd.org9c935dd2018-06-01 03:33:53 +00001319 "i", uidstr,
Damien Miller9c386432014-07-03 21:27:46 +10001320 "l", thishost,
1321 "n", host_arg,
1322 "p", portstr,
1323 "r", options.user,
1324 "u", pw->pw_name,
djm@openbsd.org674b3b62015-09-11 03:47:28 +00001325 "i", uidstr,
Damien Millerdfc85fa2011-05-15 08:44:02 +10001326 (char *)NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10001327 free(cp);
Damien Miller0e220db2004-06-15 10:34:08 +10001328 }
Damien Miller9c386432014-07-03 21:27:46 +10001329
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001330 if (config_test) {
1331 dump_client_config(&options, host);
1332 exit(0);
1333 }
1334
Damien Millerb1cbfa22008-05-19 16:00:08 +10001335 if (muxclient_command != 0 && options.control_path == NULL)
Darren Tucker0814d312005-06-01 23:08:51 +10001336 fatal("No ControlPath specified for \"-O\" command");
markus@openbsd.org8d057842016-09-30 09:19:13 +00001337 if (options.control_path != NULL) {
1338 int sock;
1339 if ((sock = muxclient(options.control_path)) >= 0) {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001340 ssh_packet_set_connection(ssh, sock, sock);
markus@openbsd.org8d057842016-09-30 09:19:13 +00001341 packet_set_mux();
1342 goto skip_connect;
1343 }
1344 }
Damien Miller0e220db2004-06-15 10:34:08 +10001345
Damien Miller08b57c62014-02-27 10:17:13 +11001346 /*
1347 * If hostname canonicalisation was not enabled, then we may not
1348 * have yet resolved the hostname. Do so now.
1349 */
1350 if (addrs == NULL && options.proxy_command == NULL) {
djm@openbsd.orga85768a2015-09-04 04:56:09 +00001351 debug2("resolving \"%s\" port %d", host, options.port);
Damien Miller08b57c62014-02-27 10:17:13 +11001352 if ((addrs = resolve_host(host, options.port, 1,
1353 cname, sizeof(cname))) == NULL)
1354 cleanup_exit(255); /* resolve_host logs the error */
1355 }
1356
Damien Miller67bd0622007-09-17 12:06:57 +10001357 timeout_ms = options.connection_timeout * 1000;
1358
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001359 /* Open a connection to the remote host. */
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001360 if (ssh_connect(ssh, host, addrs, &hostaddr, options.port,
Damien Miller0faf7472013-10-17 11:47:23 +11001361 options.address_family, options.connection_attempts,
dtucker@openbsd.org95d41e92018-07-19 10:28:47 +00001362 &timeout_ms, options.tcp_keep_alive) != 0)
Damien Miller0faf7472013-10-17 11:47:23 +11001363 exit(255);
1364
Damien Miller28631ce2013-10-26 10:07:56 +11001365 if (addrs != NULL)
1366 freeaddrinfo(addrs);
1367
Damien Miller0faf7472013-10-17 11:47:23 +11001368 packet_set_timeout(options.server_alive_interval,
1369 options.server_alive_count_max);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001370
djm@openbsd.org95767262016-03-07 19:02:43 +00001371 ssh = active_state; /* XXX */
1372
Damien Miller67bd0622007-09-17 12:06:57 +10001373 if (timeout_ms > 0)
1374 debug3("timeout: %d ms remain after connect", timeout_ms);
1375
Damien Miller5428f641999-11-25 11:54:57 +11001376 /*
dtucker@openbsd.org26efc2f2018-07-16 11:05:41 +00001377 * If we successfully made the connection and we have hostbased auth
1378 * enabled, load the public keys so we can later use the ssh-keysign
1379 * helper to sign challenges.
Damien Miller5428f641999-11-25 11:54:57 +11001380 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001381 sensitive_data.nkeys = 0;
1382 sensitive_data.keys = NULL;
djm@openbsd.org873d3e72017-04-30 23:18:44 +00001383 if (options.hostbased_authentication) {
dtucker@openbsd.orgac590762018-07-16 22:25:01 +00001384 sensitive_data.nkeys = 10;
Damien Millerddd63ab2006-03-31 23:10:51 +11001385 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001386 sizeof(struct sshkey));
1387
1388 /* XXX check errors? */
dtucker@openbsd.orgac590762018-07-16 22:25:01 +00001389#define L_PUBKEY(p,o) do { \
1390 if ((o) >= sensitive_data.nkeys) \
1391 fatal("%s pubkey out of array bounds", __func__); \
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001392 check_load(sshkey_load_public(p, &(sensitive_data.keys[o]), NULL), \
dtucker@openbsd.orgac590762018-07-16 22:25:01 +00001393 p, "pubkey"); \
1394} while (0)
1395#define L_CERT(p,o) do { \
1396 if ((o) >= sensitive_data.nkeys) \
1397 fatal("%s cert out of array bounds", __func__); \
1398 check_load(sshkey_load_cert(p, &(sensitive_data.keys[o])), p, "cert"); \
1399} while (0)
Ben Lindstromf9c48842002-06-11 16:37:51 +00001400
dtucker@openbsd.org26efc2f2018-07-16 11:05:41 +00001401 if (options.hostbased_authentication == 1) {
dtucker@openbsd.orgac590762018-07-16 22:25:01 +00001402 L_CERT(_PATH_HOST_ECDSA_KEY_FILE, 0);
1403 L_CERT(_PATH_HOST_ED25519_KEY_FILE, 1);
1404 L_CERT(_PATH_HOST_RSA_KEY_FILE, 2);
1405 L_CERT(_PATH_HOST_DSA_KEY_FILE, 3);
1406 L_PUBKEY(_PATH_HOST_ECDSA_KEY_FILE, 4);
1407 L_PUBKEY(_PATH_HOST_ED25519_KEY_FILE, 5);
1408 L_PUBKEY(_PATH_HOST_RSA_KEY_FILE, 6);
1409 L_PUBKEY(_PATH_HOST_DSA_KEY_FILE, 7);
1410 L_CERT(_PATH_HOST_XMSS_KEY_FILE, 8);
1411 L_PUBKEY(_PATH_HOST_XMSS_KEY_FILE, 9);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001412 }
Damien Miller95def091999-11-25 00:26:21 +11001413 }
Damien Miller95def091999-11-25 00:26:21 +11001414
dtucker@openbsd.org258dc8b2018-07-18 11:34:04 +00001415 /* Create ~/.ssh * directory if it doesn't already exist. */
Darren Tucker45c66d72011-11-04 10:50:40 +11001416 if (config == NULL) {
1417 r = snprintf(buf, sizeof buf, "%s%s%s", pw->pw_dir,
1418 strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
1419 if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) < 0) {
Darren Tucker8ccb7392010-09-10 12:28:24 +10001420#ifdef WITH_SELINUX
Darren Tucker45c66d72011-11-04 10:50:40 +11001421 ssh_selinux_setfscreatecon(buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001422#endif
Darren Tucker45c66d72011-11-04 10:50:40 +11001423 if (mkdir(buf, 0700) < 0)
1424 error("Could not create directory '%.200s'.",
1425 buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001426#ifdef WITH_SELINUX
Darren Tucker45c66d72011-11-04 10:50:40 +11001427 ssh_selinux_setfscreatecon(NULL);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001428#endif
Darren Tucker45c66d72011-11-04 10:50:40 +11001429 }
Darren Tucker8ccb7392010-09-10 12:28:24 +10001430 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001431 /* load options.identity_files */
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001432 load_public_identity_files(pw);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001433
djm@openbsd.org001aa552018-04-10 00:10:49 +00001434 /* optionally set the SSH_AUTHSOCKET_ENV_NAME variable */
markus@openbsd.org1a75d142016-05-04 14:29:58 +00001435 if (options.identity_agent &&
1436 strcmp(options.identity_agent, SSH_AUTHSOCKET_ENV_NAME) != 0) {
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00001437 if (strcmp(options.identity_agent, "none") == 0) {
1438 unsetenv(SSH_AUTHSOCKET_ENV_NAME);
1439 } else {
1440 p = tilde_expand_filename(options.identity_agent,
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +00001441 getuid());
djm@openbsd.org9c935dd2018-06-01 03:33:53 +00001442 cp = percent_expand(p,
1443 "d", pw->pw_dir,
1444 "h", host,
1445 "i", uidstr,
1446 "l", thishost,
1447 "r", options.user,
1448 "u", pw->pw_name,
1449 (char *)NULL);
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00001450 setenv(SSH_AUTHSOCKET_ENV_NAME, cp, 1);
1451 free(cp);
1452 free(p);
1453 }
1454 }
1455
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001456 /* Expand ~ in known host file names. */
Damien Miller295ee632011-05-29 21:42:31 +10001457 tilde_expand_paths(options.system_hostfiles,
1458 options.num_system_hostfiles);
1459 tilde_expand_paths(options.user_hostfiles, options.num_user_hostfiles);
Damien Miller95def091999-11-25 00:26:21 +11001460
Damien Miller07cd5892001-11-12 10:52:03 +11001461 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
Damien Miller857b02e2010-09-24 22:02:56 +10001462 signal(SIGCHLD, main_sigchld_handler);
Damien Miller07cd5892001-11-12 10:52:03 +11001463
Darren Tuckerd6173c02008-06-13 04:52:53 +10001464 /* Log into the remote system. Never returns if the login fails. */
Damien Miller67bd0622007-09-17 12:06:57 +10001465 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr,
Damien Millerd925dcd2010-12-01 12:21:51 +11001466 options.port, pw, timeout_ms);
Damien Miller95def091999-11-25 00:26:21 +11001467
Damien Miller383ffe62010-06-26 10:02:03 +10001468 if (packet_connection_is_on_socket()) {
1469 verbose("Authenticated to %s ([%s]:%d).", host,
djm@openbsd.org95767262016-03-07 19:02:43 +00001470 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
Damien Miller383ffe62010-06-26 10:02:03 +10001471 } else {
1472 verbose("Authenticated to %s (via proxy).", host);
1473 }
1474
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001475 /* We no longer need the private host keys. Clear them now. */
1476 if (sensitive_data.nkeys != 0) {
1477 for (i = 0; i < sensitive_data.nkeys; i++) {
1478 if (sensitive_data.keys[i] != NULL) {
1479 /* Destroys contents safely */
1480 debug3("clear hostkey %d", i);
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001481 sshkey_free(sensitive_data.keys[i]);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001482 sensitive_data.keys[i] = NULL;
1483 }
1484 }
Darren Tuckera627d422013-06-02 07:31:17 +10001485 free(sensitive_data.keys);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001486 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +00001487 for (i = 0; i < options.num_identity_files; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +10001488 free(options.identity_files[i]);
1489 options.identity_files[i] = NULL;
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +00001490 if (options.identity_keys[i]) {
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001491 sshkey_free(options.identity_keys[i]);
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +00001492 options.identity_keys[i] = NULL;
1493 }
1494 }
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001495 for (i = 0; i < options.num_certificate_files; i++) {
1496 free(options.certificate_files[i]);
1497 options.certificate_files[i] = NULL;
1498 }
Damien Miller95def091999-11-25 00:26:21 +11001499
markus@openbsd.org8d057842016-09-30 09:19:13 +00001500 skip_connect:
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001501 exit_status = ssh_session2(ssh, pw);
Damien Miller1383bd82000-04-06 12:32:37 +10001502 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +10001503
Damien Millerb1cbfa22008-05-19 16:00:08 +10001504 if (options.control_path != NULL && muxserver_sock != -1)
Damien Miller0e220db2004-06-15 10:34:08 +10001505 unlink(options.control_path);
1506
Damien Millera41ccca2010-10-07 22:07:32 +11001507 /* Kill ProxyCommand if it is running. */
1508 ssh_kill_proxy_command();
Damien Miller8c4e18a2002-09-19 12:05:02 +10001509
Damien Miller1383bd82000-04-06 12:32:37 +10001510 return exit_status;
1511}
1512
Damien Millere11e1ea2010-08-03 16:04:46 +10001513static void
1514control_persist_detach(void)
1515{
1516 pid_t pid;
djm@openbsd.orgd2d6bf82016-04-29 08:07:53 +00001517 int devnull, keep_stderr;
Damien Millere11e1ea2010-08-03 16:04:46 +10001518
1519 debug("%s: backgrounding master process", __func__);
1520
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00001521 /*
1522 * master (current process) into the background, and make the
1523 * foreground process a client of the backgrounded master.
1524 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001525 switch ((pid = fork())) {
1526 case -1:
1527 fatal("%s: fork: %s", __func__, strerror(errno));
1528 case 0:
1529 /* Child: master process continues mainloop */
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00001530 break;
1531 default:
Damien Millere11e1ea2010-08-03 16:04:46 +10001532 /* Parent: set up mux slave to connect to backgrounded master */
1533 debug2("%s: background process is %ld", __func__, (long)pid);
1534 stdin_null_flag = ostdin_null_flag;
Damien Miller21771e22011-05-15 08:45:50 +10001535 options.request_tty = orequest_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +10001536 tty_flag = otty_flag;
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00001537 close(muxserver_sock);
1538 muxserver_sock = -1;
Damien Miller5929c522010-09-10 11:17:02 +10001539 options.control_master = SSHCTL_MASTER_NO;
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00001540 muxclient(options.control_path);
Damien Millere11e1ea2010-08-03 16:04:46 +10001541 /* muxclient() doesn't return on success. */
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00001542 fatal("Failed to connect to new control master");
1543 }
Damien Miller00d9ae22010-08-17 01:59:31 +10001544 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
1545 error("%s: open(\"/dev/null\"): %s", __func__,
1546 strerror(errno));
1547 } else {
djm@openbsd.orgd2d6bf82016-04-29 08:07:53 +00001548 keep_stderr = log_is_on_stderr() && debug_flag;
Damien Miller00d9ae22010-08-17 01:59:31 +10001549 if (dup2(devnull, STDIN_FILENO) == -1 ||
djm@openbsd.orgd2d6bf82016-04-29 08:07:53 +00001550 dup2(devnull, STDOUT_FILENO) == -1 ||
1551 (!keep_stderr && dup2(devnull, STDERR_FILENO) == -1))
Damien Miller00d9ae22010-08-17 01:59:31 +10001552 error("%s: dup2: %s", __func__, strerror(errno));
1553 if (devnull > STDERR_FILENO)
1554 close(devnull);
1555 }
Damien Miller98e27dc2013-07-25 11:55:52 +10001556 daemon(1, 1);
Damien Millerea2c1a42011-06-03 12:10:22 +10001557 setproctitle("%s [mux]", options.control_path);
Damien Millere11e1ea2010-08-03 16:04:46 +10001558}
1559
1560/* Do fork() after authentication. Used by "ssh -f" */
1561static void
1562fork_postauth(void)
1563{
1564 if (need_controlpersist_detach)
1565 control_persist_detach();
1566 debug("forking to background");
1567 fork_after_authentication_flag = 0;
1568 if (daemon(1, 1) < 0)
1569 fatal("daemon() failed: %.200s", strerror(errno));
1570}
1571
Darren Tucker9f407c42008-06-13 04:50:27 +10001572/* Callback for remote forward global requests */
1573static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001574ssh_confirm_remote_forward(struct ssh *ssh, int type, u_int32_t seq, void *ctxt)
Darren Tucker9f407c42008-06-13 04:50:27 +10001575{
Damien Miller7acefbb2014-07-18 14:11:24 +10001576 struct Forward *rfwd = (struct Forward *)ctxt;
Darren Tucker9f407c42008-06-13 04:50:27 +10001577
Damien Miller4bf648f2009-02-14 16:28:21 +11001578 /* XXX verbose() on failure? */
Damien Miller4b3ed642014-07-02 15:29:40 +10001579 debug("remote forward %s for: listen %s%s%d, connect %s:%d",
Darren Tucker9f407c42008-06-13 04:50:27 +10001580 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
Damien Miller7acefbb2014-07-18 14:11:24 +10001581 rfwd->listen_path ? rfwd->listen_path :
1582 rfwd->listen_host ? rfwd->listen_host : "",
1583 (rfwd->listen_path || rfwd->listen_host) ? ":" : "",
1584 rfwd->listen_port, rfwd->connect_path ? rfwd->connect_path :
1585 rfwd->connect_host, rfwd->connect_port);
1586 if (rfwd->listen_path == NULL && rfwd->listen_port == 0) {
Darren Tucker68afb8c2011-10-02 18:59:03 +11001587 if (type == SSH2_MSG_REQUEST_SUCCESS) {
1588 rfwd->allocated_port = packet_get_int();
1589 logit("Allocated port %u for remote forward to %s:%d",
1590 rfwd->allocated_port,
1591 rfwd->connect_host, rfwd->connect_port);
djm@openbsd.org115063a2018-06-06 18:22:41 +00001592 channel_update_permission(ssh,
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001593 rfwd->handle, rfwd->allocated_port);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001594 } else {
djm@openbsd.org115063a2018-06-06 18:22:41 +00001595 channel_update_permission(ssh, rfwd->handle, -1);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001596 }
Damien Miller4bf648f2009-02-14 16:28:21 +11001597 }
djm@openbsd.org@openbsd.orgdbe06622017-10-27 01:57:06 +00001598
Darren Tucker9f407c42008-06-13 04:50:27 +10001599 if (type == SSH2_MSG_REQUEST_FAILURE) {
Damien Miller7acefbb2014-07-18 14:11:24 +10001600 if (options.exit_on_forward_failure) {
1601 if (rfwd->listen_path != NULL)
1602 fatal("Error: remote port forwarding failed "
1603 "for listen path %s", rfwd->listen_path);
1604 else
1605 fatal("Error: remote port forwarding failed "
1606 "for listen port %d", rfwd->listen_port);
1607 } else {
1608 if (rfwd->listen_path != NULL)
1609 logit("Warning: remote port forwarding failed "
1610 "for listen path %s", rfwd->listen_path);
1611 else
1612 logit("Warning: remote port forwarding failed "
1613 "for listen port %d", rfwd->listen_port);
1614 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001615 }
Darren Tucker9a2a6092008-07-04 12:53:50 +10001616 if (++remote_forward_confirms_received == options.num_remote_forwards) {
Darren Tucker9f407c42008-06-13 04:50:27 +10001617 debug("All remote forwarding requests processed");
Damien Millere11e1ea2010-08-03 16:04:46 +10001618 if (fork_after_authentication_flag)
1619 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001620 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001621}
1622
Ben Lindstrombba81212001-06-25 05:01:22 +00001623static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001624client_cleanup_stdio_fwd(struct ssh *ssh, int id, void *arg)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001625{
1626 debug("stdio forwarding: done");
1627 cleanup_exit(0);
1628}
1629
Darren Tucker2d6665d2011-11-04 10:54:22 +11001630static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001631ssh_stdio_confirm(struct ssh *ssh, int id, int success, void *arg)
Damien Miller357610d2014-07-18 15:04:10 +10001632{
1633 if (!success)
1634 fatal("stdio forwarding failed");
1635}
1636
1637static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001638ssh_init_stdio_forwarding(struct ssh *ssh)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001639{
1640 Channel *c;
Damien Millere1537f92010-01-26 13:26:22 +11001641 int in, out;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001642
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +00001643 if (options.stdio_forward_host == NULL)
Darren Tucker2d6665d2011-11-04 10:54:22 +11001644 return;
Damien Millere1537f92010-01-26 13:26:22 +11001645
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +00001646 debug3("%s: %s:%d", __func__, options.stdio_forward_host,
1647 options.stdio_forward_port);
Darren Tucker2d6665d2011-11-04 10:54:22 +11001648
1649 if ((in = dup(STDIN_FILENO)) < 0 ||
1650 (out = dup(STDOUT_FILENO)) < 0)
Damien Millere1537f92010-01-26 13:26:22 +11001651 fatal("channel_connect_stdio_fwd: dup() in/out failed");
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001652 if ((c = channel_connect_stdio_fwd(ssh, options.stdio_forward_host,
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +00001653 options.stdio_forward_port, in, out)) == NULL)
Darren Tucker2d6665d2011-11-04 10:54:22 +11001654 fatal("%s: channel_connect_stdio_fwd failed", __func__);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001655 channel_register_cleanup(ssh, c->self, client_cleanup_stdio_fwd, 0);
1656 channel_register_open_confirm(ssh, c->self, ssh_stdio_confirm, NULL);
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001657}
1658
1659static void
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001660ssh_init_forwarding(struct ssh *ssh, char **ifname)
Damien Miller0bc1bd82000-11-13 22:57:25 +11001661{
Kevin Steves12057502001-02-05 14:54:34 +00001662 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001663 int i;
Kevin Steves12057502001-02-05 14:54:34 +00001664
Damien Miller0bc1bd82000-11-13 22:57:25 +11001665 /* Initiate local TCP/IP port forwardings. */
1666 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001667 debug("Local connections to %.200s:%d forwarded to remote "
1668 "address %.200s:%d",
Damien Miller7acefbb2014-07-18 14:11:24 +10001669 (options.local_forwards[i].listen_path != NULL) ?
1670 options.local_forwards[i].listen_path :
Darren Tucker47eede72005-03-14 23:08:12 +11001671 (options.local_forwards[i].listen_host == NULL) ?
Damien Miller7acefbb2014-07-18 14:11:24 +10001672 (options.fwd_opts.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001673 options.local_forwards[i].listen_host,
1674 options.local_forwards[i].listen_port,
Damien Miller7acefbb2014-07-18 14:11:24 +10001675 (options.local_forwards[i].connect_path != NULL) ?
1676 options.local_forwards[i].connect_path :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001677 options.local_forwards[i].connect_host,
1678 options.local_forwards[i].connect_port);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001679 success += channel_setup_local_fwd_listener(ssh,
Damien Miller7acefbb2014-07-18 14:11:24 +10001680 &options.local_forwards[i], &options.fwd_opts);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001681 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10001682 if (i > 0 && success != i && options.exit_on_forward_failure)
1683 fatal("Could not request local forwarding.");
Kevin Steves12057502001-02-05 14:54:34 +00001684 if (i > 0 && success == 0)
1685 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001686
1687 /* Initiate remote TCP/IP port forwardings. */
1688 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001689 debug("Remote connections from %.200s:%d forwarded to "
1690 "local address %.200s:%d",
Damien Miller7acefbb2014-07-18 14:11:24 +10001691 (options.remote_forwards[i].listen_path != NULL) ?
1692 options.remote_forwards[i].listen_path :
Damien Miller46d38de2005-07-17 17:02:09 +10001693 (options.remote_forwards[i].listen_host == NULL) ?
Damien Milleraa3bb102005-11-05 15:12:59 +11001694 "LOCALHOST" : options.remote_forwards[i].listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +11001695 options.remote_forwards[i].listen_port,
Damien Miller7acefbb2014-07-18 14:11:24 +10001696 (options.remote_forwards[i].connect_path != NULL) ?
1697 options.remote_forwards[i].connect_path :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001698 options.remote_forwards[i].connect_host,
1699 options.remote_forwards[i].connect_port);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001700 options.remote_forwards[i].handle =
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001701 channel_request_remote_forwarding(ssh,
Damien Miller7acefbb2014-07-18 14:11:24 +10001702 &options.remote_forwards[i]);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001703 if (options.remote_forwards[i].handle < 0) {
Darren Tuckere7d4b192006-07-12 22:17:10 +10001704 if (options.exit_on_forward_failure)
1705 fatal("Could not request remote forwarding.");
1706 else
1707 logit("Warning: Could not request remote "
1708 "forwarding.");
Darren Tucker68afb8c2011-10-02 18:59:03 +11001709 } else {
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001710 client_register_global_confirm(
1711 ssh_confirm_remote_forward,
Darren Tucker68afb8c2011-10-02 18:59:03 +11001712 &options.remote_forwards[i]);
Darren Tuckere7d4b192006-07-12 22:17:10 +10001713 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001714 }
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001715
1716 /* Initiate tunnel forwarding. */
1717 if (options.tun_open != SSH_TUNMODE_NO) {
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001718 if ((*ifname = client_request_tun_fwd(ssh,
1719 options.tun_open, options.tun_local,
1720 options.tun_remote)) == NULL) {
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001721 if (options.exit_on_forward_failure)
1722 fatal("Could not request tunnel forwarding.");
1723 else
1724 error("Could not request tunnel forwarding.");
1725 }
djm@openbsd.org@openbsd.orgdbe06622017-10-27 01:57:06 +00001726 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001727}
1728
Ben Lindstrombba81212001-06-25 05:01:22 +00001729static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001730check_agent_present(void)
1731{
djm@openbsd.org141efe42015-01-14 20:05:27 +00001732 int r;
1733
Damien Miller0bc1bd82000-11-13 22:57:25 +11001734 if (options.forward_agent) {
Damien Miller788f2122005-11-05 15:14:59 +11001735 /* Clear agent forwarding if we don't have an agent. */
djm@openbsd.org141efe42015-01-14 20:05:27 +00001736 if ((r = ssh_get_authentication_socket(NULL)) != 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001737 options.forward_agent = 0;
djm@openbsd.org141efe42015-01-14 20:05:27 +00001738 if (r != SSH_ERR_AGENT_NOT_PRESENT)
1739 debug("ssh_get_authentication_socket: %s",
1740 ssh_err(r));
1741 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001742 }
1743}
1744
Ben Lindstrombba81212001-06-25 05:01:22 +00001745static void
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001746ssh_session2_setup(struct ssh *ssh, int id, int success, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001747{
Damien Miller3756dce2004-06-18 01:17:29 +10001748 extern char **environ;
Damien Miller17e7ed02005-06-17 12:54:33 +10001749 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +10001750 int interactive = tty_flag;
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001751 char *proto = NULL, *data = NULL;
Damien Miller17e7ed02005-06-17 12:54:33 +10001752
Damien Millerd530f5f2010-05-21 14:57:10 +10001753 if (!success)
1754 return; /* No need for error message, channels code sens one */
1755
Damien Miller46d38de2005-07-17 17:02:09 +10001756 display = getenv("DISPLAY");
djm@openbsd.orga58be332015-04-17 13:16:48 +00001757 if (display == NULL && options.forward_x11)
1758 debug("X11 forwarding requested but DISPLAY not set");
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001759 if (options.forward_x11 && client_x11_get_proto(ssh, display,
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001760 options.xauth_location, options.forward_x11_trusted,
1761 options.forward_x11_timeout, &proto, &data) == 0) {
Damien Millerbd483e72000-04-30 10:00:53 +10001762 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001763 debug("Requesting X11 forwarding with authentication "
1764 "spoofing.");
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001765 x11_request_forwarding_with_spoofing(ssh, id, display, proto,
Damien Miller6d7b4372011-06-23 08:31:57 +10001766 data, 1);
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001767 client_expect_confirm(ssh, id, "X11 forwarding", CONFIRM_WARN);
Damien Miller6d7b4372011-06-23 08:31:57 +10001768 /* XXX exit_on_forward_failure */
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001769 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001770 }
1771
Damien Miller0bc1bd82000-11-13 22:57:25 +11001772 check_agent_present();
1773 if (options.forward_agent) {
1774 debug("Requesting authentication agent forwarding.");
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001775 channel_request_start(ssh, id, "auth-agent-req@openssh.com", 0);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001776 packet_send();
1777 }
1778
Darren Tucker7b305012012-07-02 18:55:09 +10001779 /* Tell the packet module whether this is an interactive session. */
1780 packet_set_interactive(interactive,
1781 options.ip_qos_interactive, options.ip_qos_bulk);
1782
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001783 client_session2_setup(ssh, id, tty_flag, subsystem_flag, getenv("TERM"),
markus@openbsd.orgcecee2d2018-07-09 21:03:30 +00001784 NULL, fileno(stdin), command, environ);
Damien Miller1383bd82000-04-06 12:32:37 +10001785}
1786
Ben Lindstromf558cf62001-09-20 23:13:49 +00001787/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001788static int
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001789ssh_session2_open(struct ssh *ssh)
Damien Miller1383bd82000-04-06 12:32:37 +10001790{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001791 Channel *c;
1792 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001793
Damien Millercaf6dd62000-08-29 11:33:50 +11001794 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001795 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001796 } else {
1797 in = dup(STDIN_FILENO);
1798 }
1799 out = dup(STDOUT_FILENO);
1800 err = dup(STDERR_FILENO);
1801
1802 if (in < 0 || out < 0 || err < 0)
1803 fatal("dup() in/out/err failed");
1804
Damien Miller69b69aa2000-10-28 14:19:58 +11001805 /* enable nonblocking unless tty */
1806 if (!isatty(in))
1807 set_nonblock(in);
1808 if (!isatty(out))
1809 set_nonblock(out);
1810 if (!isatty(err))
1811 set_nonblock(err);
1812
Damien Millere4340be2000-09-16 13:29:08 +11001813 window = CHAN_SES_WINDOW_DEFAULT;
1814 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001815 if (tty_flag) {
1816 window >>= 1;
1817 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001818 }
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001819 c = channel_new(ssh,
Damien Miller1383bd82000-04-06 12:32:37 +10001820 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001821 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001822 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001823
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001824 debug3("%s: channel_new: %d", __func__, c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001825
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001826 channel_send_open(ssh, c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001827 if (!no_shell_flag)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001828 channel_register_open_confirm(ssh, c->self,
Damien Millerb84886b2008-05-19 15:05:07 +10001829 ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001830
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001831 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001832}
1833
Ben Lindstrombba81212001-06-25 05:01:22 +00001834static int
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001835ssh_session2(struct ssh *ssh, struct passwd *pw)
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001836{
djm@openbsd.org4d5456c2017-10-25 00:21:37 +00001837 int devnull, id = -1;
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001838 char *cp, *tun_fwd_ifname = NULL;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001839
1840 /* XXX should be pre-session */
Darren Tucker2d6665d2011-11-04 10:54:22 +11001841 if (!options.control_persist)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001842 ssh_init_stdio_forwarding(ssh);
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001843
1844 ssh_init_forwarding(ssh, &tun_fwd_ifname);
1845
1846 if (options.local_command != NULL) {
1847 debug3("expanding LocalCommand: %s", options.local_command);
1848 cp = options.local_command;
1849 options.local_command = percent_expand(cp,
1850 "C", conn_hash_hex,
1851 "L", shorthost,
1852 "d", pw->pw_dir,
1853 "h", host,
djm@openbsd.org9c935dd2018-06-01 03:33:53 +00001854 "i", uidstr,
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001855 "l", thishost,
1856 "n", host_arg,
1857 "p", portstr,
1858 "r", options.user,
1859 "u", pw->pw_name,
1860 "T", tun_fwd_ifname == NULL ? "NONE" : tun_fwd_ifname,
1861 (char *)NULL);
1862 debug3("expanded LocalCommand: %s", options.local_command);
1863 free(cp);
1864 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001865
Damien Millere11e1ea2010-08-03 16:04:46 +10001866 /* Start listening for multiplex clients */
markus@openbsd.org8d057842016-09-30 09:19:13 +00001867 if (!packet_get_mux())
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001868 muxserver_listen(ssh);
Damien Millere11e1ea2010-08-03 16:04:46 +10001869
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00001870 /*
Darren Tucker2d6665d2011-11-04 10:54:22 +11001871 * If we are in control persist mode and have a working mux listen
1872 * socket, then prepare to background ourselves and have a foreground
1873 * client attach as a control slave.
1874 * NB. we must save copies of the flags that we override for
Damien Millere11e1ea2010-08-03 16:04:46 +10001875 * the backgrounding, since we defer attachment of the slave until
1876 * after the connection is fully established (in particular,
1877 * async rfwd replies have been received for ExitOnForwardFailure).
1878 */
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00001879 if (options.control_persist && muxserver_sock != -1) {
Damien Millere11e1ea2010-08-03 16:04:46 +10001880 ostdin_null_flag = stdin_null_flag;
1881 ono_shell_flag = no_shell_flag;
Damien Miller21771e22011-05-15 08:45:50 +10001882 orequest_tty = options.request_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +10001883 otty_flag = tty_flag;
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00001884 stdin_null_flag = 1;
1885 no_shell_flag = 1;
1886 tty_flag = 0;
Damien Millere11e1ea2010-08-03 16:04:46 +10001887 if (!fork_after_authentication_flag)
1888 need_controlpersist_detach = 1;
1889 fork_after_authentication_flag = 1;
djm@openbsd.orgb8bbff32018-02-13 03:36:56 +00001890 }
Darren Tucker2d6665d2011-11-04 10:54:22 +11001891 /*
1892 * ControlPersist mux listen socket setup failed, attempt the
1893 * stdio forward setup that we skipped earlier.
1894 */
1895 if (options.control_persist && muxserver_sock == -1)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001896 ssh_init_stdio_forwarding(ssh);
Damien Millere11e1ea2010-08-03 16:04:46 +10001897
djm@openbsd.org14b5c632018-01-23 05:27:21 +00001898 if (!no_shell_flag)
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001899 id = ssh_session2_open(ssh);
Damien Miller649fe022013-07-18 16:13:55 +10001900 else {
1901 packet_set_interactive(
1902 options.control_master == SSHCTL_MASTER_NO,
1903 options.ip_qos_interactive, options.ip_qos_bulk);
1904 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001905
Darren Tucker8901fa92008-06-11 09:34:01 +10001906 /* If we don't expect to open a new session, then disallow it */
Damien Miller456e6f02008-11-03 19:20:10 +11001907 if (options.control_master == SSHCTL_MASTER_NO &&
1908 (datafellows & SSH_NEW_OPENSSH)) {
Darren Tucker8901fa92008-06-11 09:34:01 +10001909 debug("Requesting no-more-sessions@openssh.com");
1910 packet_start(SSH2_MSG_GLOBAL_REQUEST);
1911 packet_put_cstring("no-more-sessions@openssh.com");
1912 packet_put_char(0);
1913 packet_send();
1914 }
1915
Damien Millerd27b9472005-12-13 19:29:02 +11001916 /* Execute a local command */
1917 if (options.local_command != NULL &&
1918 options.permit_local_command)
1919 ssh_local_cmd(options.local_command);
1920
Damien Miller1f25ab42010-07-16 13:56:23 +10001921 /*
djm@openbsd.org4d5456c2017-10-25 00:21:37 +00001922 * stdout is now owned by the session channel; clobber it here
1923 * so future channel closes are propagated to the local fd.
1924 * NB. this can only happen after LocalCommand has completed,
1925 * as it may want to write to stdout.
1926 */
djm@openbsd.org@openbsd.org939b30b2017-11-01 00:04:15 +00001927 if (!need_controlpersist_detach) {
1928 if ((devnull = open(_PATH_DEVNULL, O_WRONLY)) == -1)
1929 error("%s: open %s: %s", __func__,
1930 _PATH_DEVNULL, strerror(errno));
1931 if (dup2(devnull, STDOUT_FILENO) < 0)
1932 fatal("%s: dup2() stdout failed", __func__);
1933 if (devnull > STDERR_FILENO)
1934 close(devnull);
1935 }
djm@openbsd.org4d5456c2017-10-25 00:21:37 +00001936
1937 /*
Damien Miller1f25ab42010-07-16 13:56:23 +10001938 * If requested and we are not interested in replies to remote
1939 * forwarding requests, then let ssh continue in the background.
1940 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001941 if (fork_after_authentication_flag) {
1942 if (options.exit_on_forward_failure &&
1943 options.num_remote_forwards > 0) {
1944 debug("deferring postauth fork until remote forward "
1945 "confirmation received");
1946 } else
1947 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001948 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001949
djm@openbsd.orgdbee4112017-09-12 06:32:07 +00001950 return client_loop(ssh, tty_flag, tty_flag ?
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001951 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001952}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001953
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001954/* Loads all IdentityFile and CertificateFile keys */
Ben Lindstrombba81212001-06-25 05:01:22 +00001955static void
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001956load_public_identity_files(struct passwd *pw)
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001957{
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00001958 char *filename, *cp;
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001959 struct sshkey *public;
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001960 int i;
1961 u_int n_ids, n_certs;
Damien Miller0a80ca12010-02-27 07:55:05 +11001962 char *identity_files[SSH_MAX_IDENTITY_FILES];
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001963 struct sshkey *identity_keys[SSH_MAX_IDENTITY_FILES];
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00001964 int identity_file_userprovided[SSH_MAX_IDENTITY_FILES];
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001965 char *certificate_files[SSH_MAX_CERTIFICATE_FILES];
1966 struct sshkey *certificates[SSH_MAX_CERTIFICATE_FILES];
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00001967 int certificate_file_userprovided[SSH_MAX_CERTIFICATE_FILES];
Damien Miller7ea845e2010-02-12 09:21:02 +11001968#ifdef ENABLE_PKCS11
markus@openbsd.org54d90ac2017-05-30 08:52:19 +00001969 struct sshkey **keys;
Damien Miller7ea845e2010-02-12 09:21:02 +11001970 int nkeys;
Damien Miller0a80ca12010-02-27 07:55:05 +11001971#endif /* PKCS11 */
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001972
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001973 n_ids = n_certs = 0;
Damien Miller1d2c4562014-02-04 11:18:20 +11001974 memset(identity_files, 0, sizeof(identity_files));
1975 memset(identity_keys, 0, sizeof(identity_keys));
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00001976 memset(identity_file_userprovided, 0,
1977 sizeof(identity_file_userprovided));
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001978 memset(certificate_files, 0, sizeof(certificate_files));
1979 memset(certificates, 0, sizeof(certificates));
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00001980 memset(certificate_file_userprovided, 0,
1981 sizeof(certificate_file_userprovided));
Damien Miller0a80ca12010-02-27 07:55:05 +11001982
1983#ifdef ENABLE_PKCS11
Damien Miller7ea845e2010-02-12 09:21:02 +11001984 if (options.pkcs11_provider != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001985 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
Damien Miller7ea845e2010-02-12 09:21:02 +11001986 (pkcs11_init(!options.batch_mode) == 0) &&
1987 (nkeys = pkcs11_add_provider(options.pkcs11_provider, NULL,
1988 &keys)) > 0) {
Damien Miller7ea845e2010-02-12 09:21:02 +11001989 for (i = 0; i < nkeys; i++) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001990 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00001991 sshkey_free(keys[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +11001992 continue;
1993 }
1994 identity_keys[n_ids] = keys[i];
1995 identity_files[n_ids] =
Damien Miller7ea845e2010-02-12 09:21:02 +11001996 xstrdup(options.pkcs11_provider); /* XXX */
Damien Miller0a80ca12010-02-27 07:55:05 +11001997 n_ids++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001998 }
Darren Tuckera627d422013-06-02 07:31:17 +10001999 free(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00002000 }
Damien Miller7ea845e2010-02-12 09:21:02 +11002001#endif /* ENABLE_PKCS11 */
Damien Miller0a80ca12010-02-27 07:55:05 +11002002 for (i = 0; i < options.num_identity_files; i++) {
Darren Tucker15fd19c2013-04-05 11:22:26 +11002003 if (n_ids >= SSH_MAX_IDENTITY_FILES ||
2004 strcasecmp(options.identity_files[i], "none") == 0) {
Darren Tuckera627d422013-06-02 07:31:17 +10002005 free(options.identity_files[i]);
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002006 options.identity_files[i] = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +11002007 continue;
2008 }
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +00002009 cp = tilde_expand_filename(options.identity_files[i], getuid());
djm@openbsd.orgb7548b12017-10-23 05:08:00 +00002010 filename = percent_expand(cp, "d", pw->pw_dir,
2011 "u", pw->pw_name, "l", thishost, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +11002012 "r", options.user, (char *)NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10002013 free(cp);
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00002014 check_load(sshkey_load_public(filename, &public, NULL),
2015 filename, "pubkey");
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002016 debug("identity file %s type %d", filename,
2017 public ? public->type : -1);
Darren Tuckera627d422013-06-02 07:31:17 +10002018 free(options.identity_files[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +11002019 identity_files[n_ids] = filename;
2020 identity_keys[n_ids] = public;
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002021 identity_file_userprovided[n_ids] =
2022 options.identity_file_userprovided[i];
Damien Miller0a80ca12010-02-27 07:55:05 +11002023 if (++n_ids >= SSH_MAX_IDENTITY_FILES)
2024 continue;
2025
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002026 /*
2027 * If no certificates have been explicitly listed then try
2028 * to add the default certificate variant too.
2029 */
2030 if (options.num_certificate_files != 0)
2031 continue;
Damien Miller0a80ca12010-02-27 07:55:05 +11002032 xasprintf(&cp, "%s-cert", filename);
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00002033 check_load(sshkey_load_public(cp, &public, NULL),
2034 filename, "pubkey");
Damien Miller0a80ca12010-02-27 07:55:05 +11002035 debug("identity file %s type %d", cp,
2036 public ? public->type : -1);
2037 if (public == NULL) {
Darren Tuckera627d422013-06-02 07:31:17 +10002038 free(cp);
Damien Miller0a80ca12010-02-27 07:55:05 +11002039 continue;
2040 }
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00002041 if (!sshkey_is_cert(public)) {
Damien Miller0a80ca12010-02-27 07:55:05 +11002042 debug("%s: key %s type %s is not a certificate",
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00002043 __func__, cp, sshkey_type(public));
2044 sshkey_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +10002045 free(cp);
Damien Miller0a80ca12010-02-27 07:55:05 +11002046 continue;
2047 }
djm@openbsd.orgb4867e02016-12-06 07:48:01 +00002048 /* NB. leave filename pointing to private key */
2049 identity_files[n_ids] = xstrdup(filename);
Damien Miller0a80ca12010-02-27 07:55:05 +11002050 identity_keys[n_ids] = public;
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002051 identity_file_userprovided[n_ids] =
2052 options.identity_file_userprovided[i];
Damien Miller0a80ca12010-02-27 07:55:05 +11002053 n_ids++;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002054 }
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002055
2056 if (options.num_certificate_files > SSH_MAX_CERTIFICATE_FILES)
2057 fatal("%s: too many certificates", __func__);
2058 for (i = 0; i < options.num_certificate_files; i++) {
2059 cp = tilde_expand_filename(options.certificate_files[i],
dtucker@openbsd.orge655ee02018-07-27 05:34:42 +00002060 getuid());
djm@openbsd.org9c935dd2018-06-01 03:33:53 +00002061 filename = percent_expand(cp,
2062 "d", pw->pw_dir,
2063 "h", host,
djm@openbsd.org03688892018-06-08 03:35:36 +00002064 "i", uidstr,
djm@openbsd.org9c935dd2018-06-01 03:33:53 +00002065 "l", thishost,
2066 "r", options.user,
2067 "u", pw->pw_name,
2068 (char *)NULL);
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002069 free(cp);
2070
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00002071 check_load(sshkey_load_public(filename, &public, NULL),
2072 filename, "certificate");
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002073 debug("certificate file %s type %d", filename,
2074 public ? public->type : -1);
2075 free(options.certificate_files[i]);
2076 options.certificate_files[i] = NULL;
2077 if (public == NULL) {
2078 free(filename);
2079 continue;
2080 }
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00002081 if (!sshkey_is_cert(public)) {
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002082 debug("%s: key %s type %s is not a certificate",
markus@openbsd.org5467fbc2018-07-11 18:53:29 +00002083 __func__, filename, sshkey_type(public));
2084 sshkey_free(public);
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002085 free(filename);
2086 continue;
2087 }
2088 certificate_files[n_certs] = filename;
2089 certificates[n_certs] = public;
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002090 certificate_file_userprovided[n_certs] =
2091 options.certificate_file_userprovided[i];
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002092 ++n_certs;
2093 }
2094
Damien Miller0a80ca12010-02-27 07:55:05 +11002095 options.num_identity_files = n_ids;
2096 memcpy(options.identity_files, identity_files, sizeof(identity_files));
2097 memcpy(options.identity_keys, identity_keys, sizeof(identity_keys));
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002098 memcpy(options.identity_file_userprovided,
2099 identity_file_userprovided, sizeof(identity_file_userprovided));
Damien Miller0a80ca12010-02-27 07:55:05 +11002100
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002101 options.num_certificate_files = n_certs;
2102 memcpy(options.certificate_files,
2103 certificate_files, sizeof(certificate_files));
2104 memcpy(options.certificates, certificates, sizeof(certificates));
djm@openbsd.org3eb7f102018-07-16 07:06:50 +00002105 memcpy(options.certificate_file_userprovided,
2106 certificate_file_userprovided,
2107 sizeof(certificate_file_userprovided));
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002108}
Damien Miller857b02e2010-09-24 22:02:56 +10002109
2110static void
2111main_sigchld_handler(int sig)
2112{
2113 int save_errno = errno;
2114 pid_t pid;
2115 int status;
2116
2117 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
2118 (pid < 0 && errno == EINTR))
2119 ;
Damien Miller857b02e2010-09-24 22:02:56 +10002120 errno = save_errno;
2121}