blob: 5db6ff25e78b47e64cafb8c89d37d5b560215917 [file] [log] [blame]
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +00001/* $OpenBSD: ssh.c,v 1.452 2017/04/28 03:20:27 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"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000084#include "ssh1.h"
Damien Miller1383bd82000-04-06 12:32:37 +100085#include "ssh2.h"
Damien Millerb96c4412010-07-02 13:34:24 +100086#include "canohost.h"
Damien Miller1383bd82000-04-06 12:32:37 +100087#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000088#include "cipher.h"
Damien Miller9c386432014-07-03 21:27:46 +100089#include "digest.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000090#include "packet.h"
91#include "buffer.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000092#include "channels.h"
Damien Millereba71ba2000-04-29 23:57:08 +100093#include "key.h"
Damien Miller994cf142000-07-21 10:19:44 +100094#include "authfd.h"
Damien Millereba71ba2000-04-29 23:57:08 +100095#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000096#include "pathnames.h"
Damien Miller0e220db2004-06-15 10:34:08 +100097#include "dispatch.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000098#include "clientloop.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000099#include "log.h"
Damien Miller7acefbb2014-07-18 14:11:24 +1000100#include "misc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000101#include "readconf.h"
102#include "sshconnect.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000103#include "kex.h"
104#include "mac.h"
Darren Tucker06f2bd82004-05-13 16:06:46 +1000105#include "sshpty.h"
Darren Tucker46bc0752004-05-02 22:11:30 +1000106#include "match.h"
Damien Miller0e220db2004-06-15 10:34:08 +1000107#include "msg.h"
Darren Tucker25f60a72004-08-15 17:23:34 +1000108#include "uidswap.h"
Damien Millerb7576772006-07-10 20:23:39 +1000109#include "version.h"
djm@openbsd.org141efe42015-01-14 20:05:27 +0000110#include "ssherr.h"
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000111#include "myproposal.h"
Damien Millerdda78a02016-12-12 13:57:10 +1100112#include "utf8.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000113
Damien Miller7ea845e2010-02-12 09:21:02 +1100114#ifdef ENABLE_PKCS11
115#include "ssh-pkcs11.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +0000116#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000117
Damien Miller3f905871999-11-15 17:10:57 +1100118extern char *__progname;
Damien Miller3f905871999-11-15 17:10:57 +1100119
Damien Millerea2c1a42011-06-03 12:10:22 +1000120/* Saves a copy of argv for setproctitle emulation */
121#ifndef HAVE_SETPROCTITLE
122static char **saved_av;
123#endif
124
Darren Tuckerd6173c02008-06-13 04:52:53 +1000125/* Flag indicating whether debug mode is on. May be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000126int debug_flag = 0;
127
Damien Miller21771e22011-05-15 08:45:50 +1000128/* Flag indicating whether a tty should be requested */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000129int tty_flag = 0;
130
Damien Miller1383bd82000-04-06 12:32:37 +1000131/* don't exec a shell */
132int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000133
Damien Miller5428f641999-11-25 11:54:57 +1100134/*
135 * Flag indicating that nothing should be read from stdin. This can be set
136 * on the command line.
137 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000138int stdin_null_flag = 0;
139
Damien Miller5428f641999-11-25 11:54:57 +1100140/*
Damien Millere11e1ea2010-08-03 16:04:46 +1000141 * Flag indicating that the current process should be backgrounded and
142 * a new slave launched in the foreground for ControlPersist.
143 */
144int need_controlpersist_detach = 0;
145
146/* Copies of flags for ControlPersist foreground slave */
Damien Miller21771e22011-05-15 08:45:50 +1000147int ostdin_null_flag, ono_shell_flag, otty_flag, orequest_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +1000148
149/*
Damien Miller5428f641999-11-25 11:54:57 +1100150 * Flag indicating that ssh should fork after authentication. This is useful
Ben Lindstromf666fec2002-06-06 19:51:58 +0000151 * so that the passphrase can be entered manually, and then ssh goes to the
Damien Miller5428f641999-11-25 11:54:57 +1100152 * background.
153 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000154int fork_after_authentication_flag = 0;
155
Damien Miller5428f641999-11-25 11:54:57 +1100156/*
157 * General data structure for command line options and options configurable
158 * in configuration files. See readconf.h.
159 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000160Options options;
161
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000162/* optional user configfile */
163char *config = NULL;
164
Damien Miller5428f641999-11-25 11:54:57 +1100165/*
166 * Name of the host we are connecting to. This is the name given on the
167 * command line, or the HostName specified for the user-supplied name in a
168 * configuration file.
169 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000170char *host;
171
172/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100173struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000174
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000175/* Private host keys. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000176Sensitive sensitive_data;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000177
178/* Original real UID. */
179uid_t original_real_uid;
Ben Lindstromf9c48842002-06-11 16:37:51 +0000180uid_t original_effective_uid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000181
Damien Miller1383bd82000-04-06 12:32:37 +1000182/* command to be executed */
183Buffer command;
184
Damien Miller832562e2001-01-30 09:30:01 +1100185/* Should we execute a command or invoke a subsystem? */
186int subsystem_flag = 0;
187
Damien Miller2797f7f2002-04-23 21:09:44 +1000188/* # of replies received for global requests */
Darren Tucker9f407c42008-06-13 04:50:27 +1000189static int remote_forward_confirms_received = 0;
Damien Miller2797f7f2002-04-23 21:09:44 +1000190
Damien Millerb1cbfa22008-05-19 16:00:08 +1000191/* mux.c */
192extern int muxserver_sock;
193extern u_int muxclient_command;
Damien Miller0e220db2004-06-15 10:34:08 +1000194
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000195/* Prints a help message to the user. This function never returns. */
196
Ben Lindstrombba81212001-06-25 05:01:22 +0000197static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000198usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000199{
Damien Miller50955102004-03-22 09:34:58 +1100200 fprintf(stderr,
jmc@openbsd.orgb1ba15f2014-10-09 06:21:31 +0000201"usage: ssh [-1246AaCfGgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]\n"
Damien Miller03d4d7e2013-04-23 15:21:06 +1000202" [-D [bind_address:]port] [-E log_file] [-e escape_char]\n"
jmc@openbsd.orge4eb7d92016-07-16 06:57:55 +0000203" [-F configfile] [-I pkcs11] [-i identity_file]\n"
204" [-J [user@]host[:port]] [-L address] [-l login_name] [-m mac_spec]\n"
205" [-O ctl_cmd] [-o option] [-p port] [-Q query_option] [-R address]\n"
206" [-S ctl_path] [-W host:port] [-w local_tun[:remote_tun]]\n"
207" [user@]hostname [command]\n"
Damien Miller50955102004-03-22 09:34:58 +1100208 );
Darren Tuckere9a9b712005-12-20 16:15:51 +1100209 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000210}
211
Ben Lindstrombba81212001-06-25 05:01:22 +0000212static int ssh_session(void);
213static int ssh_session2(void);
214static void load_public_identity_files(void);
Damien Miller857b02e2010-09-24 22:02:56 +1000215static void main_sigchld_handler(int);
Damien Millerb1cbfa22008-05-19 16:00:08 +1000216
Damien Miller295ee632011-05-29 21:42:31 +1000217/* ~/ expand a list of paths. NB. assumes path[n] is heap-allocated. */
218static void
219tilde_expand_paths(char **paths, u_int num_paths)
220{
221 u_int i;
222 char *cp;
223
224 for (i = 0; i < num_paths; i++) {
225 cp = tilde_expand_filename(paths[i], original_real_uid);
Darren Tuckera627d422013-06-02 07:31:17 +1000226 free(paths[i]);
Damien Miller295ee632011-05-29 21:42:31 +1000227 paths[i] = cp;
228 }
229}
230
Damien Miller13f97b22014-02-24 15:57:55 +1100231/*
232 * Attempt to resolve a host name / port to a set of addresses and
233 * optionally return any CNAMEs encountered along the way.
234 * Returns NULL on failure.
235 * NB. this function must operate with a options having undefined members.
236 */
Damien Miller0faf7472013-10-17 11:47:23 +1100237static struct addrinfo *
Damien Miller13f97b22014-02-24 15:57:55 +1100238resolve_host(const char *name, int port, int logerr, char *cname, size_t clen)
Damien Miller0faf7472013-10-17 11:47:23 +1100239{
240 char strport[NI_MAXSERV];
241 struct addrinfo hints, *res;
242 int gaierr, loglevel = SYSLOG_LEVEL_DEBUG1;
243
Damien Miller13f97b22014-02-24 15:57:55 +1100244 if (port <= 0)
245 port = default_ssh_port();
246
djm@openbsd.orgb1d38a32015-10-15 23:51:40 +0000247 snprintf(strport, sizeof strport, "%d", port);
Damien Miller1d2c4562014-02-04 11:18:20 +1100248 memset(&hints, 0, sizeof(hints));
Damien Miller13f97b22014-02-24 15:57:55 +1100249 hints.ai_family = options.address_family == -1 ?
250 AF_UNSPEC : options.address_family;
Damien Miller0faf7472013-10-17 11:47:23 +1100251 hints.ai_socktype = SOCK_STREAM;
252 if (cname != NULL)
253 hints.ai_flags = AI_CANONNAME;
254 if ((gaierr = getaddrinfo(name, strport, &hints, &res)) != 0) {
255 if (logerr || (gaierr != EAI_NONAME && gaierr != EAI_NODATA))
256 loglevel = SYSLOG_LEVEL_ERROR;
257 do_log2(loglevel, "%s: Could not resolve hostname %.100s: %s",
258 __progname, name, ssh_gai_strerror(gaierr));
259 return NULL;
260 }
261 if (cname != NULL && res->ai_canonname != NULL) {
262 if (strlcpy(cname, res->ai_canonname, clen) >= clen) {
263 error("%s: host \"%s\" cname \"%s\" too long (max %lu)",
264 __func__, name, res->ai_canonname, (u_long)clen);
265 if (clen > 0)
266 *cname = '\0';
267 }
268 }
269 return res;
270}
271
272/*
djm@openbsd.org90109022015-01-16 07:19:48 +0000273 * Attempt to resolve a numeric host address / port to a single address.
274 * Returns a canonical address string.
275 * Returns NULL on failure.
276 * NB. this function must operate with a options having undefined members.
277 */
278static struct addrinfo *
279resolve_addr(const char *name, int port, char *caddr, size_t clen)
280{
281 char addr[NI_MAXHOST], strport[NI_MAXSERV];
282 struct addrinfo hints, *res;
283 int gaierr;
284
285 if (port <= 0)
286 port = default_ssh_port();
287 snprintf(strport, sizeof strport, "%u", 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 ((gaierr = getaddrinfo(name, strport, &hints, &res)) != 0) {
294 debug2("%s: could not resolve name %.100s as address: %s",
295 __func__, name, ssh_gai_strerror(gaierr));
296 return NULL;
297 }
298 if (res == NULL) {
299 debug("%s: getaddrinfo %.100s returned no addresses",
300 __func__, name);
301 return NULL;
302 }
303 if (res->ai_next != NULL) {
304 debug("%s: getaddrinfo %.100s returned multiple addresses",
305 __func__, name);
306 goto fail;
307 }
308 if ((gaierr = getnameinfo(res->ai_addr, res->ai_addrlen,
309 addr, sizeof(addr), NULL, 0, NI_NUMERICHOST)) != 0) {
310 debug("%s: Could not format address for name %.100s: %s",
311 __func__, name, ssh_gai_strerror(gaierr));
312 goto fail;
313 }
314 if (strlcpy(caddr, addr, clen) >= clen) {
315 error("%s: host \"%s\" addr \"%s\" too long (max %lu)",
316 __func__, name, addr, (u_long)clen);
317 if (clen > 0)
318 *caddr = '\0';
319 fail:
320 freeaddrinfo(res);
321 return NULL;
322 }
323 return res;
324}
325
326/*
Damien Miller0faf7472013-10-17 11:47:23 +1100327 * Check whether the cname is a permitted replacement for the hostname
328 * and perform the replacement if it is.
Damien Miller13f97b22014-02-24 15:57:55 +1100329 * NB. this function must operate with a options having undefined members.
Damien Miller0faf7472013-10-17 11:47:23 +1100330 */
331static int
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000332check_follow_cname(int direct, char **namep, const char *cname)
Damien Miller0faf7472013-10-17 11:47:23 +1100333{
334 int i;
335 struct allowed_cname *rule;
336
337 if (*cname == '\0' || options.num_permitted_cnames == 0 ||
338 strcmp(*namep, cname) == 0)
339 return 0;
Damien Miller38505592013-10-17 11:48:13 +1100340 if (options.canonicalize_hostname == SSH_CANONICALISE_NO)
Damien Miller0faf7472013-10-17 11:47:23 +1100341 return 0;
342 /*
Damien Miller38505592013-10-17 11:48:13 +1100343 * Don't attempt to canonicalize names that will be interpreted by
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000344 * a proxy or jump host unless the user specifically requests so.
Damien Miller0faf7472013-10-17 11:47:23 +1100345 */
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000346 if (!direct &&
Damien Miller38505592013-10-17 11:48:13 +1100347 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS)
Damien Miller0faf7472013-10-17 11:47:23 +1100348 return 0;
349 debug3("%s: check \"%s\" CNAME \"%s\"", __func__, *namep, cname);
350 for (i = 0; i < options.num_permitted_cnames; i++) {
351 rule = options.permitted_cnames + i;
djm@openbsd.orge661a862015-05-04 06:10:48 +0000352 if (match_pattern_list(*namep, rule->source_list, 1) != 1 ||
353 match_pattern_list(cname, rule->target_list, 1) != 1)
Damien Miller0faf7472013-10-17 11:47:23 +1100354 continue;
Damien Miller38505592013-10-17 11:48:13 +1100355 verbose("Canonicalized DNS aliased hostname "
Damien Miller0faf7472013-10-17 11:47:23 +1100356 "\"%s\" => \"%s\"", *namep, cname);
357 free(*namep);
358 *namep = xstrdup(cname);
359 return 1;
360 }
361 return 0;
362}
363
364/*
365 * Attempt to resolve the supplied hostname after applying the user's
Damien Miller51682fa2013-10-17 11:48:31 +1100366 * canonicalization rules. Returns the address list for the host or NULL
367 * if no name was found after canonicalization.
Damien Miller13f97b22014-02-24 15:57:55 +1100368 * NB. this function must operate with a options having undefined members.
Damien Miller0faf7472013-10-17 11:47:23 +1100369 */
370static struct addrinfo *
Damien Miller13f97b22014-02-24 15:57:55 +1100371resolve_canonicalize(char **hostp, int port)
Damien Miller0faf7472013-10-17 11:47:23 +1100372{
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000373 int i, direct, ndots;
djm@openbsd.org90109022015-01-16 07:19:48 +0000374 char *cp, *fullhost, newname[NI_MAXHOST];
Damien Miller0faf7472013-10-17 11:47:23 +1100375 struct addrinfo *addrs;
376
Damien Miller38505592013-10-17 11:48:13 +1100377 if (options.canonicalize_hostname == SSH_CANONICALISE_NO)
Damien Miller0faf7472013-10-17 11:47:23 +1100378 return NULL;
Damien Miller13f97b22014-02-24 15:57:55 +1100379
Damien Miller0faf7472013-10-17 11:47:23 +1100380 /*
Damien Miller38505592013-10-17 11:48:13 +1100381 * Don't attempt to canonicalize names that will be interpreted by
Damien Miller0faf7472013-10-17 11:47:23 +1100382 * a proxy unless the user specifically requests so.
383 */
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000384 direct = option_clear_or_none(options.proxy_command) &&
385 options.jump_host == NULL;
386 if (!direct &&
Damien Miller38505592013-10-17 11:48:13 +1100387 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS)
Damien Miller0faf7472013-10-17 11:47:23 +1100388 return NULL;
Damien Miller13f97b22014-02-24 15:57:55 +1100389
djm@openbsd.org90109022015-01-16 07:19:48 +0000390 /* Try numeric hostnames first */
391 if ((addrs = resolve_addr(*hostp, port,
392 newname, sizeof(newname))) != NULL) {
393 debug2("%s: hostname %.100s is address", __func__, *hostp);
394 if (strcasecmp(*hostp, newname) != 0) {
395 debug2("%s: canonicalised address \"%s\" => \"%s\"",
396 __func__, *hostp, newname);
397 free(*hostp);
398 *hostp = xstrdup(newname);
399 }
400 return addrs;
401 }
402
djm@openbsd.org5ee00632015-10-16 18:40:49 +0000403 /* If domain name is anchored, then resolve it now */
404 if ((*hostp)[strlen(*hostp) - 1] == '.') {
405 debug3("%s: name is fully qualified", __func__);
406 fullhost = xstrdup(*hostp);
407 if ((addrs = resolve_host(fullhost, port, 0,
408 newname, sizeof(newname))) != NULL)
409 goto found;
410 free(fullhost);
411 goto notfound;
412 }
413
Damien Miller51682fa2013-10-17 11:48:31 +1100414 /* Don't apply canonicalization to sufficiently-qualified hostnames */
Damien Miller0faf7472013-10-17 11:47:23 +1100415 ndots = 0;
416 for (cp = *hostp; *cp != '\0'; cp++) {
417 if (*cp == '.')
418 ndots++;
419 }
Damien Miller38505592013-10-17 11:48:13 +1100420 if (ndots > options.canonicalize_max_dots) {
421 debug3("%s: not canonicalizing hostname \"%s\" (max dots %d)",
422 __func__, *hostp, options.canonicalize_max_dots);
Damien Miller0faf7472013-10-17 11:47:23 +1100423 return NULL;
424 }
425 /* Attempt each supplied suffix */
426 for (i = 0; i < options.num_canonical_domains; i++) {
djm@openbsd.org90109022015-01-16 07:19:48 +0000427 *newname = '\0';
Damien Miller0faf7472013-10-17 11:47:23 +1100428 xasprintf(&fullhost, "%s.%s.", *hostp,
429 options.canonical_domains[i]);
Damien Miller13f97b22014-02-24 15:57:55 +1100430 debug3("%s: attempting \"%s\" => \"%s\"", __func__,
431 *hostp, fullhost);
432 if ((addrs = resolve_host(fullhost, port, 0,
djm@openbsd.org90109022015-01-16 07:19:48 +0000433 newname, sizeof(newname))) == NULL) {
Damien Miller0faf7472013-10-17 11:47:23 +1100434 free(fullhost);
435 continue;
436 }
djm@openbsd.org5ee00632015-10-16 18:40:49 +0000437 found:
Damien Miller0faf7472013-10-17 11:47:23 +1100438 /* Remove trailing '.' */
439 fullhost[strlen(fullhost) - 1] = '\0';
440 /* Follow CNAME if requested */
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000441 if (!check_follow_cname(direct, &fullhost, newname)) {
Damien Miller38505592013-10-17 11:48:13 +1100442 debug("Canonicalized hostname \"%s\" => \"%s\"",
Damien Miller0faf7472013-10-17 11:47:23 +1100443 *hostp, fullhost);
444 }
445 free(*hostp);
446 *hostp = fullhost;
447 return addrs;
448 }
djm@openbsd.org5ee00632015-10-16 18:40:49 +0000449 notfound:
Damien Miller38505592013-10-17 11:48:13 +1100450 if (!options.canonicalize_fallback_local)
Damien Miller13f97b22014-02-24 15:57:55 +1100451 fatal("%s: Could not resolve host \"%s\"", __progname, *hostp);
452 debug2("%s: host %s not found in any suffix", __func__, *hostp);
Damien Miller0faf7472013-10-17 11:47:23 +1100453 return NULL;
454}
455
Damien Miller95def091999-11-25 00:26:21 +1100456/*
Damien Miller13f97b22014-02-24 15:57:55 +1100457 * Read per-user configuration file. Ignore the system wide config
458 * file if the user specifies a config file on the command line.
459 */
460static void
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000461process_config_files(const char *host_arg, struct passwd *pw, int post_canon)
Damien Miller13f97b22014-02-24 15:57:55 +1100462{
deraadt@openbsd.org087266e2015-01-20 23:14:00 +0000463 char buf[PATH_MAX];
Damien Miller13f97b22014-02-24 15:57:55 +1100464 int r;
465
466 if (config != NULL) {
467 if (strcasecmp(config, "none") != 0 &&
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000468 !read_config_file(config, pw, host, host_arg, &options,
469 SSHCONF_USERCONF | (post_canon ? SSHCONF_POSTCANON : 0)))
Damien Miller13f97b22014-02-24 15:57:55 +1100470 fatal("Can't open user config file %.100s: "
471 "%.100s", config, strerror(errno));
472 } else {
473 r = snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir,
474 _PATH_SSH_USER_CONFFILE);
475 if (r > 0 && (size_t)r < sizeof(buf))
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000476 (void)read_config_file(buf, pw, host, host_arg,
477 &options, SSHCONF_CHECKPERM | SSHCONF_USERCONF |
478 (post_canon ? SSHCONF_POSTCANON : 0));
Damien Miller13f97b22014-02-24 15:57:55 +1100479
480 /* Read systemwide configuration file after user config. */
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000481 (void)read_config_file(_PATH_HOST_CONFIG_FILE, pw,
482 host, host_arg, &options,
483 post_canon ? SSHCONF_POSTCANON : 0);
484 }
485}
486
487/* Rewrite the port number in an addrinfo list of addresses */
488static void
489set_addrinfo_port(struct addrinfo *addrs, int port)
490{
491 struct addrinfo *addr;
492
493 for (addr = addrs; addr != NULL; addr = addr->ai_next) {
494 switch (addr->ai_family) {
495 case AF_INET:
496 ((struct sockaddr_in *)addr->ai_addr)->
497 sin_port = htons(port);
498 break;
499 case AF_INET6:
500 ((struct sockaddr_in6 *)addr->ai_addr)->
501 sin6_port = htons(port);
502 break;
503 }
Damien Miller13f97b22014-02-24 15:57:55 +1100504 }
505}
506
507/*
Damien Miller95def091999-11-25 00:26:21 +1100508 * Main program for the ssh client.
509 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000510int
511main(int ac, char **av)
512{
djm@openbsd.org95767262016-03-07 19:02:43 +0000513 struct ssh *ssh = NULL;
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000514 int i, r, opt, exit_status, use_syslog, direct, config_test = 0;
deraadt@openbsd.org087266e2015-01-20 23:14:00 +0000515 char *p, *cp, *line, *argv0, buf[PATH_MAX], *host_arg, *logfile;
Damien Millerdfc85fa2011-05-15 08:44:02 +1000516 char thishost[NI_MAXHOST], shorthost[NI_MAXHOST], portstr[NI_MAXSERV];
djm@openbsd.org674b3b62015-09-11 03:47:28 +0000517 char cname[NI_MAXHOST], uidstr[32], *conn_hash_hex;
Damien Miller95def091999-11-25 00:26:21 +1100518 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000519 struct passwd *pw;
Damien Miller194fd902013-10-15 12:13:05 +1100520 int timeout_ms;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000521 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000522 extern char *optarg;
Damien Miller7acefbb2014-07-18 14:11:24 +1000523 struct Forward fwd;
Damien Miller0faf7472013-10-17 11:47:23 +1100524 struct addrinfo *addrs = NULL;
Damien Miller9c386432014-07-03 21:27:46 +1000525 struct ssh_digest_ctx *md;
526 u_char conn_hash[SSH_DIGEST_MAX_LENGTH];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000527
dtucker@openbsd.orgffb1e7e2016-02-15 09:47:49 +0000528 ssh_malloc_init(); /* must be called before any mallocs */
Darren Tuckerce321d82005-10-03 18:11:24 +1000529 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
530 sanitise_stdfd();
531
Damien Miller59d3d5b2003-08-22 09:34:41 +1000532 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000533
Damien Millerea2c1a42011-06-03 12:10:22 +1000534#ifndef HAVE_SETPROCTITLE
535 /* Prepare for later setproctitle emulation */
536 /* Save argv so it isn't clobbered by setproctitle() emulation */
537 saved_av = xcalloc(ac + 1, sizeof(*saved_av));
538 for (i = 0; i < ac; i++)
539 saved_av[i] = xstrdup(av[i]);
540 saved_av[i] = NULL;
541 compat_init_setproctitle(ac, av);
542 av = saved_av;
543#endif
544
Damien Miller5428f641999-11-25 11:54:57 +1100545 /*
Damien Miller00d9ae22010-08-17 01:59:31 +1000546 * Discard other fds that are hanging around. These can cause problem
547 * with backgrounded ssh processes started by ControlPersist.
548 */
549 closefrom(STDERR_FILENO + 1);
550
551 /*
Damien Miller5428f641999-11-25 11:54:57 +1100552 * Save the original real uid. It will be needed later (uid-swapping
553 * may clobber the real uid).
554 */
Damien Miller95def091999-11-25 00:26:21 +1100555 original_real_uid = getuid();
556 original_effective_uid = geteuid();
Damien Millera8e06ce2003-11-21 23:48:55 +1100557
Damien Miller50b9a602002-09-04 16:50:06 +1000558 /*
559 * Use uid-swapping to give up root privileges for the duration of
560 * option processing. We will re-instantiate the rights when we are
561 * ready to create the privileged port, and will permanently drop
562 * them when the port has been created (actually, when the connection
563 * has been made, as we may need to create the port several times).
564 */
565 PRIV_END;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000566
Damien Miller05dd7952000-10-01 00:42:48 +1100567#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100568 /* If we are installed setuid root be careful to not drop core. */
569 if (original_real_uid != original_effective_uid) {
570 struct rlimit rlim;
571 rlim.rlim_cur = rlim.rlim_max = 0;
572 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
573 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000574 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100575#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000576 /* Get user data. */
577 pw = getpwuid(original_real_uid);
578 if (!pw) {
Damien Miller3009d3c2013-07-20 13:22:31 +1000579 logit("No user exists for uid %lu", (u_long)original_real_uid);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100580 exit(255);
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000581 }
582 /* Take a copy of the returned structure. */
583 pw = pwcopy(pw);
584
Damien Miller5428f641999-11-25 11:54:57 +1100585 /*
Damien Miller5428f641999-11-25 11:54:57 +1100586 * Set our umask to something reasonable, as some files are created
587 * with the default umask. This will make them world-readable but
588 * writable only by the owner, which is ok for all files for which we
589 * don't set the modes explicitly.
590 */
Damien Miller95def091999-11-25 00:26:21 +1100591 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000592
Damien Millerdda78a02016-12-12 13:57:10 +1100593 msetlocale();
djm@openbsd.org65c6c6b2016-07-17 04:20:16 +0000594
Darren Tuckerd6173c02008-06-13 04:52:53 +1000595 /*
596 * Initialize option structure to indicate that no values have been
597 * set.
598 */
Damien Miller95def091999-11-25 00:26:21 +1100599 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000600
Damien Miller95def091999-11-25 00:26:21 +1100601 /* Parse command-line arguments. */
602 host = NULL;
Damien Millere272a5b2008-11-03 19:22:37 +1100603 use_syslog = 0;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000604 logfile = NULL;
Darren Tucker72efd742009-06-21 17:48:00 +1000605 argv0 = av[0];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000606
Damien Miller2ecb6bd2006-03-15 12:03:53 +1100607 again:
Darren Tuckerd6173c02008-06-13 04:52:53 +1000608 while ((opt = getopt(ac, av, "1246ab:c:e:fgi:kl:m:no:p:qstvx"
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000609 "ACD:E:F:GI:J:KL:MNO:PQ:R:S:TVw:W:XYy")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100610 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000611 case '1':
612 options.protocol = SSH_PROTO_1;
613 break;
Damien Miller4af51302000-04-16 11:18:38 +1000614 case '2':
615 options.protocol = SSH_PROTO_2;
616 break;
Damien Miller34132e52000-01-14 15:45:46 +1100617 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000618 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100619 break;
Damien Miller34132e52000-01-14 15:45:46 +1100620 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000621 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100622 break;
Damien Miller95def091999-11-25 00:26:21 +1100623 case 'n':
624 stdin_null_flag = 1;
625 break;
Damien Miller95def091999-11-25 00:26:21 +1100626 case 'f':
627 fork_after_authentication_flag = 1;
628 stdin_null_flag = 1;
629 break;
Damien Miller95def091999-11-25 00:26:21 +1100630 case 'x':
631 options.forward_x11 = 0;
632 break;
Damien Miller95def091999-11-25 00:26:21 +1100633 case 'X':
634 options.forward_x11 = 1;
635 break;
Damien Millere272a5b2008-11-03 19:22:37 +1100636 case 'y':
637 use_syslog = 1;
638 break;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000639 case 'E':
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000640 logfile = optarg;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000641 break;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000642 case 'G':
643 config_test = 1;
644 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000645 case 'Y':
646 options.forward_x11 = 1;
647 options.forward_x11_trusted = 1;
648 break;
Damien Miller95def091999-11-25 00:26:21 +1100649 case 'g':
Damien Miller7acefbb2014-07-18 14:11:24 +1000650 options.fwd_opts.gateway_ports = 1;
Damien Miller95def091999-11-25 00:26:21 +1100651 break;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100652 case 'O':
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +0000653 if (options.stdio_forward_host != NULL)
Damien Millere1537f92010-01-26 13:26:22 +1100654 fatal("Cannot specify multiplexing "
655 "command with -W");
656 else if (muxclient_command != 0)
657 fatal("Multiplexing command already specified");
Darren Tucker7ebfc102004-11-07 20:06:19 +1100658 if (strcmp(optarg, "check") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000659 muxclient_command = SSHMUX_COMMAND_ALIVE_CHECK;
Damien Miller388f6fc2010-05-21 14:57:35 +1000660 else if (strcmp(optarg, "forward") == 0)
661 muxclient_command = SSHMUX_COMMAND_FORWARD;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100662 else if (strcmp(optarg, "exit") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000663 muxclient_command = SSHMUX_COMMAND_TERMINATE;
Damien Miller6c3eec72011-05-05 14:16:22 +1000664 else if (strcmp(optarg, "stop") == 0)
665 muxclient_command = SSHMUX_COMMAND_STOP;
Damien Millerf6dff7c2011-09-22 21:38:52 +1000666 else if (strcmp(optarg, "cancel") == 0)
667 muxclient_command = SSHMUX_COMMAND_CANCEL_FWD;
markus@openbsd.org8d057842016-09-30 09:19:13 +0000668 else if (strcmp(optarg, "proxy") == 0)
669 muxclient_command = SSHMUX_COMMAND_PROXY;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100670 else
671 fatal("Invalid multiplex command.");
672 break;
Damien Miller147bba32002-09-04 16:46:06 +1000673 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100674 options.use_privileged_port = 0;
675 break;
Damien Millerd937dc02013-12-05 10:19:54 +1100676 case 'Q':
Damien Millerea111192013-04-23 19:24:32 +1000677 cp = NULL;
Damien Millerd937dc02013-12-05 10:19:54 +1100678 if (strcmp(optarg, "cipher") == 0)
Damien Miller0fde8ac2013-11-21 14:12:23 +1100679 cp = cipher_alg_list('\n', 0);
Damien Millerd937dc02013-12-05 10:19:54 +1100680 else if (strcmp(optarg, "cipher-auth") == 0)
Damien Miller0fde8ac2013-11-21 14:12:23 +1100681 cp = cipher_alg_list('\n', 1);
Damien Millerd937dc02013-12-05 10:19:54 +1100682 else if (strcmp(optarg, "mac") == 0)
Damien Miller690d9892013-11-08 12:16:49 +1100683 cp = mac_alg_list('\n');
Damien Millerd937dc02013-12-05 10:19:54 +1100684 else if (strcmp(optarg, "kex") == 0)
Damien Miller690d9892013-11-08 12:16:49 +1100685 cp = kex_alg_list('\n');
Damien Millerd937dc02013-12-05 10:19:54 +1100686 else if (strcmp(optarg, "key") == 0)
djm@openbsd.org183ba552017-03-10 04:07:20 +0000687 cp = sshkey_alg_list(0, 0, 0, '\n');
Damien Miller5be9d9e2013-12-07 11:24:01 +1100688 else if (strcmp(optarg, "key-cert") == 0)
djm@openbsd.org183ba552017-03-10 04:07:20 +0000689 cp = sshkey_alg_list(1, 0, 0, '\n');
Damien Miller5be9d9e2013-12-07 11:24:01 +1100690 else if (strcmp(optarg, "key-plain") == 0)
djm@openbsd.org183ba552017-03-10 04:07:20 +0000691 cp = sshkey_alg_list(0, 1, 0, '\n');
djm@openbsd.org68d2dfc2015-03-03 06:48:58 +0000692 else if (strcmp(optarg, "protocol-version") == 0) {
693#ifdef WITH_SSH1
694 cp = xstrdup("1\n2");
695#else
696 cp = xstrdup("2");
697#endif
698 }
Damien Millerea111192013-04-23 19:24:32 +1000699 if (cp == NULL)
700 fatal("Unsupported query \"%s\"", optarg);
701 printf("%s\n", cp);
702 free(cp);
703 exit(0);
704 break;
Damien Miller95def091999-11-25 00:26:21 +1100705 case 'a':
706 options.forward_agent = 0;
707 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000708 case 'A':
709 options.forward_agent = 1;
710 break;
Damien Miller95def091999-11-25 00:26:21 +1100711 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100712 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100713 break;
Darren Tucker415bddc2007-06-12 23:43:16 +1000714 case 'K':
715 options.gss_authentication = 1;
716 options.gss_deleg_creds = 1;
717 break;
Damien Miller95def091999-11-25 00:26:21 +1100718 case 'i':
dtucker@openbsd.org03239c12015-10-25 23:42:00 +0000719 p = tilde_expand_filename(optarg, original_real_uid);
720 if (stat(p, &st) < 0)
Damien Millerf4614452001-07-14 12:18:10 +1000721 fprintf(stderr, "Warning: Identity file %s "
dtucker@openbsd.org03239c12015-10-25 23:42:00 +0000722 "not accessible: %s.\n", p,
Damien Miller3eb48b62005-03-01 21:15:46 +1100723 strerror(errno));
dtucker@openbsd.org03239c12015-10-25 23:42:00 +0000724 else
725 add_identity_file(&options, NULL, p, 1);
726 free(p);
Damien Miller95def091999-11-25 00:26:21 +1100727 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000728 case 'I':
Damien Miller7ea845e2010-02-12 09:21:02 +1100729#ifdef ENABLE_PKCS11
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000730 free(options.pkcs11_provider);
Damien Miller7ea845e2010-02-12 09:21:02 +1100731 options.pkcs11_provider = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000732#else
Damien Miller7ea845e2010-02-12 09:21:02 +1100733 fprintf(stderr, "no support for PKCS#11.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000734#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000735 break;
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000736 case 'J':
737 if (options.jump_host != NULL)
738 fatal("Only a single -J option permitted");
739 if (options.proxy_command != NULL)
740 fatal("Cannot specify -J with ProxyCommand");
741 if (parse_jump(optarg, &options, 1) == -1)
742 fatal("Invalid -J argument");
743 options.proxy_command = xstrdup("none");
744 break;
Damien Miller95def091999-11-25 00:26:21 +1100745 case 't':
Damien Miller21771e22011-05-15 08:45:50 +1000746 if (options.request_tty == REQUEST_TTY_YES)
747 options.request_tty = REQUEST_TTY_FORCE;
748 else
749 options.request_tty = REQUEST_TTY_YES;
Damien Miller95def091999-11-25 00:26:21 +1100750 break;
Damien Miller95def091999-11-25 00:26:21 +1100751 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000752 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100753 debug_flag = 1;
754 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000755 } else {
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000756 if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
757 debug_flag++;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000758 options.log_level++;
djm@openbsd.orged877ef2016-07-15 00:24:30 +0000759 }
Darren Tuckere98dfa32003-07-19 19:54:31 +1000760 }
Damien Miller03d4d7e2013-04-23 15:21:06 +1000761 break;
Damien Miller95def091999-11-25 00:26:21 +1100762 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100763 fprintf(stderr, "%s, %s\n",
Damien Miller1f0311c2014-05-15 14:24:09 +1000764 SSH_RELEASE,
765#ifdef WITH_OPENSSL
766 SSLeay_version(SSLEAY_VERSION)
767#else
768 "without OpenSSL"
769#endif
770 );
Damien Miller95def091999-11-25 00:26:21 +1100771 if (opt == 'V')
772 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100773 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100774 case 'w':
Damien Miller7b58e802005-12-13 19:33:19 +1100775 if (options.tun_open == -1)
776 options.tun_open = SSH_TUNMODE_DEFAULT;
Damien Millerd27b9472005-12-13 19:29:02 +1100777 options.tun_local = a2tun(optarg, &options.tun_remote);
Damien Miller7b58e802005-12-13 19:33:19 +1100778 if (options.tun_local == SSH_TUNID_ERR) {
Darren Tuckerd6173c02008-06-13 04:52:53 +1000779 fprintf(stderr,
780 "Bad tun device '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100781 exit(255);
Damien Millerd27b9472005-12-13 19:29:02 +1100782 }
783 break;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100784 case 'W':
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +0000785 if (options.stdio_forward_host != NULL)
Damien Millere1537f92010-01-26 13:26:22 +1100786 fatal("stdio forward already specified");
787 if (muxclient_command != 0)
788 fatal("Cannot specify stdio forward with -O");
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100789 if (parse_forward(&fwd, optarg, 1, 0)) {
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +0000790 options.stdio_forward_host = fwd.listen_host;
791 options.stdio_forward_port = fwd.listen_port;
Darren Tuckera627d422013-06-02 07:31:17 +1000792 free(fwd.connect_host);
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100793 } else {
794 fprintf(stderr,
795 "Bad stdio forwarding specification '%s'\n",
796 optarg);
797 exit(255);
798 }
Damien Miller21771e22011-05-15 08:45:50 +1000799 options.request_tty = REQUEST_TTY_NO;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100800 no_shell_flag = 1;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100801 break;
Damien Miller95def091999-11-25 00:26:21 +1100802 case 'q':
803 options.log_level = SYSLOG_LEVEL_QUIET;
804 break;
Damien Miller95def091999-11-25 00:26:21 +1100805 case 'e':
806 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000807 (u_char) optarg[1] >= 64 &&
808 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000809 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100810 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000811 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100812 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000813 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100814 else {
Damien Millerf4614452001-07-14 12:18:10 +1000815 fprintf(stderr, "Bad escape character '%s'.\n",
816 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100817 exit(255);
Damien Miller95def091999-11-25 00:26:21 +1100818 }
819 break;
Damien Miller95def091999-11-25 00:26:21 +1100820 case 'c':
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000821 if (ciphers_valid(*optarg == '+' ?
822 optarg + 1 : optarg)) {
Damien Millereba71ba2000-04-29 23:57:08 +1000823 /* SSH2 only */
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000824 free(options.ciphers);
Damien Millereba71ba2000-04-29 23:57:08 +1000825 options.ciphers = xstrdup(optarg);
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000826 options.cipher = SSH_CIPHER_INVALID;
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000827 break;
Damien Miller95def091999-11-25 00:26:21 +1100828 }
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000829 /* SSH1 only */
830 options.cipher = cipher_number(optarg);
831 if (options.cipher == -1) {
832 fprintf(stderr, "Unknown cipher type '%s'\n",
833 optarg);
834 exit(255);
835 }
836 if (options.cipher == SSH_CIPHER_3DES)
837 options.ciphers = xstrdup("3des-cbc");
838 else if (options.cipher == SSH_CIPHER_BLOWFISH)
839 options.ciphers = xstrdup("blowfish-cbc");
840 else
841 options.ciphers = xstrdup(KEX_CLIENT_ENCRYPT);
Damien Miller95def091999-11-25 00:26:21 +1100842 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000843 case 'm':
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000844 if (mac_valid(optarg)) {
845 free(options.macs);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000846 options.macs = xstrdup(optarg);
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000847 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000848 fprintf(stderr, "Unknown mac type '%s'\n",
849 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100850 exit(255);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000851 }
852 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000853 case 'M':
Damien Millerd14b1e72005-06-16 13:19:41 +1000854 if (options.control_master == SSHCTL_MASTER_YES)
855 options.control_master = SSHCTL_MASTER_ASK;
856 else
857 options.control_master = SSHCTL_MASTER_YES;
Damien Miller0e220db2004-06-15 10:34:08 +1000858 break;
Damien Miller95def091999-11-25 00:26:21 +1100859 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000860 options.port = a2port(optarg);
Damien Miller3dc71ad2009-01-28 16:31:22 +1100861 if (options.port <= 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000862 fprintf(stderr, "Bad port '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100863 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000864 }
Damien Miller95def091999-11-25 00:26:21 +1100865 break;
Damien Miller95def091999-11-25 00:26:21 +1100866 case 'l':
867 options.user = optarg;
868 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000869
Damien Miller95def091999-11-25 00:26:21 +1100870 case 'L':
Damien Miller4bf648f2009-02-14 16:28:21 +1100871 if (parse_forward(&fwd, optarg, 0, 0))
Damien Millerf91ee4c2005-03-01 21:24:33 +1100872 add_local_forward(&options, &fwd);
873 else {
Damien Millerf4614452001-07-14 12:18:10 +1000874 fprintf(stderr,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100875 "Bad local forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000876 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100877 exit(255);
Ben Lindstrom1a174712001-09-12 17:56:15 +0000878 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100879 break;
880
881 case 'R':
Damien Miller4bf648f2009-02-14 16:28:21 +1100882 if (parse_forward(&fwd, optarg, 0, 1)) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100883 add_remote_forward(&options, &fwd);
884 } else {
885 fprintf(stderr,
886 "Bad remote forwarding specification "
887 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100888 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100889 }
Damien Miller95def091999-11-25 00:26:21 +1100890 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000891
892 case 'D':
Damien Miller4bf648f2009-02-14 16:28:21 +1100893 if (parse_forward(&fwd, optarg, 1, 0)) {
Damien Millera699d952008-11-03 19:27:34 +1100894 add_local_forward(&options, &fwd);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100895 } else {
Damien Millera699d952008-11-03 19:27:34 +1100896 fprintf(stderr,
897 "Bad dynamic forwarding specification "
898 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100899 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000900 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000901 break;
902
Damien Miller95def091999-11-25 00:26:21 +1100903 case 'C':
904 options.compression = 1;
905 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000906 case 'N':
907 no_shell_flag = 1;
Damien Miller21771e22011-05-15 08:45:50 +1000908 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000909 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000910 case 'T':
Damien Miller21771e22011-05-15 08:45:50 +1000911 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000912 break;
Damien Miller95def091999-11-25 00:26:21 +1100913 case 'o':
Damien Miller9836cf82003-12-17 16:30:06 +1100914 line = xstrdup(optarg);
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000915 if (process_config_line(&options, pw,
916 host ? host : "", host ? host : "", line,
917 "command-line", 0, NULL, SSHCONF_USERCONF) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100918 exit(255);
Darren Tuckera627d422013-06-02 07:31:17 +1000919 free(line);
Damien Miller95def091999-11-25 00:26:21 +1100920 break;
Damien Miller832562e2001-01-30 09:30:01 +1100921 case 's':
922 subsystem_flag = 1;
923 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000924 case 'S':
mmcc@openbsd.orgd59ce082015-12-10 17:08:40 +0000925 free(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +1000926 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000927 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000928 case 'b':
929 options.bind_address = optarg;
930 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000931 case 'F':
932 config = optarg;
933 break;
Damien Miller95def091999-11-25 00:26:21 +1100934 default:
935 usage();
936 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000937 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000938
Damien Millerf4614452001-07-14 12:18:10 +1000939 ac -= optind;
940 av += optind;
941
Darren Tuckerb8c884a2010-01-08 18:53:43 +1100942 if (ac > 0 && !host) {
Ben Lindstromc276c122002-12-23 02:14:51 +0000943 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000944 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000945 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000946 if (cp == NULL || cp == p)
947 usage();
948 options.user = p;
949 *cp = '\0';
Damien Miller0faf7472013-10-17 11:47:23 +1100950 host = xstrdup(++cp);
Damien Millerf4614452001-07-14 12:18:10 +1000951 } else
Damien Miller0faf7472013-10-17 11:47:23 +1100952 host = xstrdup(*av);
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000953 if (ac > 1) {
954 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000955 goto again;
956 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000957 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000958 }
959
Damien Miller95def091999-11-25 00:26:21 +1100960 /* Check that we got a host name. */
961 if (!host)
962 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000963
Damien Miller0faf7472013-10-17 11:47:23 +1100964 host_arg = xstrdup(host);
965
Damien Miller1f0311c2014-05-15 14:24:09 +1000966#ifdef WITH_OPENSSL
Damien Miller4314c2b2010-09-10 11:12:09 +1000967 OpenSSL_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100968 ERR_load_crypto_strings();
Damien Miller1f0311c2014-05-15 14:24:09 +1000969#endif
Damien Millercb5e44a2000-09-29 12:12:36 +1100970
Damien Miller95def091999-11-25 00:26:21 +1100971 /* Initialize the command to execute on remote host. */
972 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000973
Damien Miller5428f641999-11-25 11:54:57 +1100974 /*
975 * Save the command to execute on the remote host in a buffer. There
976 * is no limit on the length of the command, except by the maximum
977 * packet size. Also sets the tty flag if there is no command.
978 */
Damien Millerf4614452001-07-14 12:18:10 +1000979 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100980 /* No command specified - execute shell on a tty. */
Damien Miller832562e2001-01-30 09:30:01 +1100981 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000982 fprintf(stderr,
983 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100984 usage();
985 }
Damien Miller95def091999-11-25 00:26:21 +1100986 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000987 /* A command has been specified. Store it into the buffer. */
988 for (i = 0; i < ac; i++) {
989 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100990 buffer_append(&command, " ", 1);
991 buffer_append(&command, av[i], strlen(av[i]));
992 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000993 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000994
Damien Miller95def091999-11-25 00:26:21 +1100995 /* Cannot fork to background if no command. */
Darren Tuckerd6173c02008-06-13 04:52:53 +1000996 if (fork_after_authentication_flag && buffer_len(&command) == 0 &&
997 !no_shell_flag)
998 fatal("Cannot fork into background without a command "
999 "to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001000
Ben Lindstrom8a432f52001-03-05 07:24:46 +00001001 /*
1002 * Initialize "log" output. Since we are the client all output
Damien Miller03d4d7e2013-04-23 15:21:06 +10001003 * goes to stderr unless otherwise specified by -y or -E.
Ben Lindstrom8a432f52001-03-05 07:24:46 +00001004 */
Damien Miller03d4d7e2013-04-23 15:21:06 +10001005 if (use_syslog && logfile != NULL)
1006 fatal("Can't specify both -y and -E");
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +00001007 if (logfile != NULL)
Damien Miller03d4d7e2013-04-23 15:21:06 +10001008 log_redirect_stderr_to(logfile);
Darren Tucker72efd742009-06-21 17:48:00 +10001009 log_init(argv0,
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +00001010 options.log_level == SYSLOG_LEVEL_NOT_SET ?
1011 SYSLOG_LEVEL_INFO : options.log_level,
1012 options.log_facility == SYSLOG_FACILITY_NOT_SET ?
1013 SYSLOG_FACILITY_USER : options.log_facility,
1014 !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001015
Damien Miller03d4d7e2013-04-23 15:21:06 +10001016 if (debug_flag)
Damien Miller1f0311c2014-05-15 14:24:09 +10001017 logit("%s, %s", SSH_RELEASE,
1018#ifdef WITH_OPENSSL
1019 SSLeay_version(SSLEAY_VERSION)
1020#else
1021 "without OpenSSL"
1022#endif
1023 );
Damien Miller03d4d7e2013-04-23 15:21:06 +10001024
Damien Miller13f97b22014-02-24 15:57:55 +11001025 /* Parse the configuration files */
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001026 process_config_files(host_arg, pw, 0);
Ben Lindstrom83f07d12001-10-03 17:22:29 +00001027
Damien Miller13f97b22014-02-24 15:57:55 +11001028 /* Hostname canonicalisation needs a few options filled. */
1029 fill_default_options_for_canonicalization(&options);
1030
1031 /* If the user has replaced the hostname then take it into use now */
1032 if (options.hostname != NULL) {
1033 /* NB. Please keep in sync with readconf.c:match_cfg_line() */
1034 cp = percent_expand(options.hostname,
1035 "h", host, (char *)NULL);
1036 free(host);
1037 host = cp;
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001038 free(options.hostname);
1039 options.hostname = xstrdup(host);
Damien Miller13f97b22014-02-24 15:57:55 +11001040 }
1041
1042 /* If canonicalization requested then try to apply it */
1043 lowercase(host);
1044 if (options.canonicalize_hostname != SSH_CANONICALISE_NO)
1045 addrs = resolve_canonicalize(&host, options.port);
1046
1047 /*
Damien Miller08b57c62014-02-27 10:17:13 +11001048 * If CanonicalizePermittedCNAMEs have been specified but
1049 * other canonicalization did not happen (by not being requested
1050 * or by failing with fallback) then the hostname may still be changed
1051 * as a result of CNAME following.
1052 *
1053 * Try to resolve the bare hostname name using the system resolver's
1054 * usual search rules and then apply the CNAME follow rules.
1055 *
1056 * Skip the lookup if a ProxyCommand is being used unless the user
1057 * has specifically requested canonicalisation for this case via
1058 * CanonicalizeHostname=always
Damien Miller13f97b22014-02-24 15:57:55 +11001059 */
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001060 direct = option_clear_or_none(options.proxy_command) &&
1061 options.jump_host == NULL;
1062 if (addrs == NULL && options.num_permitted_cnames != 0 && (direct ||
1063 options.canonicalize_hostname == SSH_CANONICALISE_ALWAYS)) {
Damien Miller19439e92014-07-02 15:28:40 +10001064 if ((addrs = resolve_host(host, options.port,
1065 option_clear_or_none(options.proxy_command),
1066 cname, sizeof(cname))) == NULL) {
1067 /* Don't fatal proxied host names not in the DNS */
1068 if (option_clear_or_none(options.proxy_command))
1069 cleanup_exit(255); /* logged in resolve_host */
1070 } else
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001071 check_follow_cname(direct, &host, cname);
Damien Miller13f97b22014-02-24 15:57:55 +11001072 }
1073
1074 /*
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001075 * If canonicalisation is enabled then re-parse the configuration
1076 * files as new stanzas may match.
Damien Miller13f97b22014-02-24 15:57:55 +11001077 */
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001078 if (options.canonicalize_hostname != 0) {
1079 debug("Re-reading configuration after hostname "
1080 "canonicalisation");
1081 free(options.hostname);
1082 options.hostname = xstrdup(host);
1083 process_config_files(host_arg, pw, 1);
1084 /*
1085 * Address resolution happens early with canonicalisation
1086 * enabled and the port number may have changed since, so
1087 * reset it in address list
1088 */
1089 if (addrs != NULL && options.port > 0)
1090 set_addrinfo_port(addrs, options.port);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +00001091 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001092
Damien Miller95def091999-11-25 00:26:21 +11001093 /* Fill configuration defaults. */
1094 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001095
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001096 /*
1097 * If ProxyJump option specified, then construct a ProxyCommand now.
1098 */
1099 if (options.jump_host != NULL) {
1100 char port_s[8];
1101
1102 /* Consistency check */
1103 if (options.proxy_command != NULL)
1104 fatal("inconsistent options: ProxyCommand+ProxyJump");
1105 /* Never use FD passing for ProxyJump */
1106 options.proxy_use_fdpass = 0;
1107 snprintf(port_s, sizeof(port_s), "%d", options.jump_port);
1108 xasprintf(&options.proxy_command,
djm@openbsd.org8fb15312017-03-08 12:07:47 +00001109 "ssh%s%s%s%s%s%s%s%s%s%.*s -W '[%%h]:%%p' %s",
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001110 /* Optional "-l user" argument if jump_user set */
1111 options.jump_user == NULL ? "" : " -l ",
1112 options.jump_user == NULL ? "" : options.jump_user,
1113 /* Optional "-p port" argument if jump_port set */
1114 options.jump_port <= 0 ? "" : " -p ",
1115 options.jump_port <= 0 ? "" : port_s,
1116 /* Optional additional jump hosts ",..." */
1117 options.jump_extra == NULL ? "" : " -J ",
1118 options.jump_extra == NULL ? "" : options.jump_extra,
1119 /* Optional "-F" argumment if -F specified */
1120 config == NULL ? "" : " -F ",
1121 config == NULL ? "" : config,
1122 /* Optional "-v" arguments if -v set */
1123 debug_flag ? " -" : "",
1124 debug_flag, "vvv",
1125 /* Mandatory hostname */
1126 options.jump_host);
1127 debug("Setting implicit ProxyCommand from ProxyJump: %s",
1128 options.proxy_command);
1129 }
1130
Damien Miller13f97b22014-02-24 15:57:55 +11001131 if (options.port == 0)
1132 options.port = default_ssh_port();
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001133 channel_set_af(options.address_family);
1134
Damien Millere9fc72e2013-10-15 12:14:12 +11001135 /* Tidy and check options */
1136 if (options.host_key_alias != NULL)
1137 lowercase(options.host_key_alias);
1138 if (options.proxy_command != NULL &&
1139 strcmp(options.proxy_command, "-") == 0 &&
1140 options.proxy_use_fdpass)
1141 fatal("ProxyCommand=- and ProxyUseFDPass are incompatible");
djm@openbsd.org44732de2015-02-20 22:17:21 +00001142 if (options.control_persist &&
1143 options.update_hostkeys == SSH_UPDATE_HOSTKEYS_ASK) {
1144 debug("UpdateHostKeys=ask is incompatible with ControlPersist; "
1145 "disabling");
1146 options.update_hostkeys = 0;
1147 }
djm@openbsd.org88b6fcd2015-11-19 08:23:27 +00001148 if (options.connection_attempts <= 0)
1149 fatal("Invalid number of ConnectionAttempts");
Damien Miller0faf7472013-10-17 11:47:23 +11001150#ifndef HAVE_CYGWIN
1151 if (original_effective_uid != 0)
1152 options.use_privileged_port = 0;
1153#endif
Damien Millere9fc72e2013-10-15 12:14:12 +11001154
Damien Miller95def091999-11-25 00:26:21 +11001155 /* reinit */
dtucker@openbsd.org68d3a2a2017-04-28 03:20:27 +00001156 log_init(argv0, options.log_level, options.log_facility, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001157
Damien Millerfff9f092012-07-06 13:45:01 +10001158 if (options.request_tty == REQUEST_TTY_YES ||
1159 options.request_tty == REQUEST_TTY_FORCE)
1160 tty_flag = 1;
1161
1162 /* Allocate a tty by default if no command specified. */
1163 if (buffer_len(&command) == 0)
1164 tty_flag = options.request_tty != REQUEST_TTY_NO;
1165
1166 /* Force no tty */
markus@openbsd.org8d057842016-09-30 09:19:13 +00001167 if (options.request_tty == REQUEST_TTY_NO ||
1168 (muxclient_command && muxclient_command != SSHMUX_COMMAND_PROXY))
Damien Millerfff9f092012-07-06 13:45:01 +10001169 tty_flag = 0;
1170 /* Do not allocate a tty if stdin is not a tty. */
1171 if ((!isatty(fileno(stdin)) || stdin_null_flag) &&
1172 options.request_tty != REQUEST_TTY_FORCE) {
1173 if (tty_flag)
1174 logit("Pseudo-terminal will not be allocated because "
1175 "stdin is not a terminal.");
1176 tty_flag = 0;
1177 }
1178
Damien Miller60bc5172001-03-19 09:38:15 +11001179 seed_rng();
1180
Damien Miller95def091999-11-25 00:26:21 +11001181 if (options.user == NULL)
1182 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001183
Damien Millerdfc85fa2011-05-15 08:44:02 +10001184 if (gethostname(thishost, sizeof(thishost)) == -1)
1185 fatal("gethostname: %s", strerror(errno));
1186 strlcpy(shorthost, thishost, sizeof(shorthost));
1187 shorthost[strcspn(thishost, ".")] = '\0';
1188 snprintf(portstr, sizeof(portstr), "%d", options.port);
djm@openbsd.org674b3b62015-09-11 03:47:28 +00001189 snprintf(uidstr, sizeof(uidstr), "%d", pw->pw_uid);
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001190
Damien Miller9c386432014-07-03 21:27:46 +10001191 if ((md = ssh_digest_start(SSH_DIGEST_SHA1)) == NULL ||
1192 ssh_digest_update(md, thishost, strlen(thishost)) < 0 ||
1193 ssh_digest_update(md, host, strlen(host)) < 0 ||
1194 ssh_digest_update(md, portstr, strlen(portstr)) < 0 ||
1195 ssh_digest_update(md, options.user, strlen(options.user)) < 0 ||
1196 ssh_digest_final(md, conn_hash, sizeof(conn_hash)) < 0)
1197 fatal("%s: mux digest failed", __func__);
1198 ssh_digest_free(md);
1199 conn_hash_hex = tohex(conn_hash, ssh_digest_bytes(SSH_DIGEST_SHA1));
1200
Damien Millerdfc85fa2011-05-15 08:44:02 +10001201 if (options.local_command != NULL) {
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001202 debug3("expanding LocalCommand: %s", options.local_command);
1203 cp = options.local_command;
Damien Miller9c386432014-07-03 21:27:46 +10001204 options.local_command = percent_expand(cp,
1205 "C", conn_hash_hex,
1206 "L", shorthost,
1207 "d", pw->pw_dir,
1208 "h", host,
1209 "l", thishost,
1210 "n", host_arg,
1211 "p", portstr,
1212 "r", options.user,
1213 "u", pw->pw_name,
Damien Millerdfc85fa2011-05-15 08:44:02 +10001214 (char *)NULL);
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001215 debug3("expanded LocalCommand: %s", options.local_command);
Darren Tuckera627d422013-06-02 07:31:17 +10001216 free(cp);
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001217 }
1218
Damien Miller0e220db2004-06-15 10:34:08 +10001219 if (options.control_path != NULL) {
Damien Miller6476cad2005-06-16 13:18:34 +10001220 cp = tilde_expand_filename(options.control_path,
1221 original_real_uid);
Darren Tuckera627d422013-06-02 07:31:17 +10001222 free(options.control_path);
Damien Miller9c386432014-07-03 21:27:46 +10001223 options.control_path = percent_expand(cp,
1224 "C", conn_hash_hex,
1225 "L", shorthost,
1226 "h", host,
1227 "l", thishost,
1228 "n", host_arg,
1229 "p", portstr,
1230 "r", options.user,
1231 "u", pw->pw_name,
djm@openbsd.org674b3b62015-09-11 03:47:28 +00001232 "i", uidstr,
Damien Millerdfc85fa2011-05-15 08:44:02 +10001233 (char *)NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10001234 free(cp);
Damien Miller0e220db2004-06-15 10:34:08 +10001235 }
Damien Miller9c386432014-07-03 21:27:46 +10001236 free(conn_hash_hex);
1237
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001238 if (config_test) {
1239 dump_client_config(&options, host);
1240 exit(0);
1241 }
1242
Damien Millerb1cbfa22008-05-19 16:00:08 +10001243 if (muxclient_command != 0 && options.control_path == NULL)
Darren Tucker0814d312005-06-01 23:08:51 +10001244 fatal("No ControlPath specified for \"-O\" command");
markus@openbsd.org8d057842016-09-30 09:19:13 +00001245 if (options.control_path != NULL) {
1246 int sock;
1247 if ((sock = muxclient(options.control_path)) >= 0) {
1248 packet_set_connection(sock, sock);
1249 ssh = active_state; /* XXX */
1250 enable_compat20(); /* XXX */
1251 packet_set_mux();
1252 goto skip_connect;
1253 }
1254 }
Damien Miller0e220db2004-06-15 10:34:08 +10001255
Damien Miller08b57c62014-02-27 10:17:13 +11001256 /*
1257 * If hostname canonicalisation was not enabled, then we may not
1258 * have yet resolved the hostname. Do so now.
1259 */
1260 if (addrs == NULL && options.proxy_command == NULL) {
djm@openbsd.orga85768a2015-09-04 04:56:09 +00001261 debug2("resolving \"%s\" port %d", host, options.port);
Damien Miller08b57c62014-02-27 10:17:13 +11001262 if ((addrs = resolve_host(host, options.port, 1,
1263 cname, sizeof(cname))) == NULL)
1264 cleanup_exit(255); /* resolve_host logs the error */
1265 }
1266
Damien Miller67bd0622007-09-17 12:06:57 +10001267 timeout_ms = options.connection_timeout * 1000;
1268
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001269 /* Open a connection to the remote host. */
Damien Miller0faf7472013-10-17 11:47:23 +11001270 if (ssh_connect(host, addrs, &hostaddr, options.port,
1271 options.address_family, options.connection_attempts,
1272 &timeout_ms, options.tcp_keep_alive,
1273 options.use_privileged_port) != 0)
1274 exit(255);
1275
Damien Miller28631ce2013-10-26 10:07:56 +11001276 if (addrs != NULL)
1277 freeaddrinfo(addrs);
1278
Damien Miller0faf7472013-10-17 11:47:23 +11001279 packet_set_timeout(options.server_alive_interval,
1280 options.server_alive_count_max);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001281
djm@openbsd.org95767262016-03-07 19:02:43 +00001282 ssh = active_state; /* XXX */
1283
Damien Miller67bd0622007-09-17 12:06:57 +10001284 if (timeout_ms > 0)
1285 debug3("timeout: %d ms remain after connect", timeout_ms);
1286
Damien Miller5428f641999-11-25 11:54:57 +11001287 /*
1288 * If we successfully made the connection, load the host private key
1289 * in case we will need it later for combined rsa-rhosts
1290 * authentication. This must be done before releasing extra
1291 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +00001292 * If we cannot access the private keys, load the public keys
1293 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +11001294 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001295 sensitive_data.nkeys = 0;
1296 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001297 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +00001298 if (options.rhosts_rsa_authentication ||
1299 options.hostbased_authentication) {
Damien Miller0fa47cf2013-12-29 17:53:39 +11001300 sensitive_data.nkeys = 9;
Damien Millerddd63ab2006-03-31 23:10:51 +11001301 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001302 sizeof(Key));
Damien Miller6af914a2010-09-10 11:39:26 +10001303 for (i = 0; i < sensitive_data.nkeys; i++)
1304 sensitive_data.keys[i] = NULL;
Ben Lindstromf9c48842002-06-11 16:37:51 +00001305
1306 PRIV_START;
djm@openbsd.org6091c362015-12-11 03:20:09 +00001307#if WITH_SSH1
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001308 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Darren Tucker232b76f2006-05-06 17:41:51 +10001309 _PATH_HOST_KEY_FILE, "", NULL, NULL);
djm@openbsd.org6091c362015-12-11 03:20:09 +00001310#endif
Damien Miller6af914a2010-09-10 11:39:26 +10001311#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001312 sensitive_data.keys[1] = key_load_private_cert(KEY_ECDSA,
Damien Millereb8b60e2010-08-31 22:41:14 +10001313 _PATH_HOST_ECDSA_KEY_FILE, "", NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001314#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001315 sensitive_data.keys[2] = key_load_private_cert(KEY_ED25519,
1316 _PATH_HOST_ED25519_KEY_FILE, "", NULL);
Damien Millereb8b60e2010-08-31 22:41:14 +10001317 sensitive_data.keys[3] = key_load_private_cert(KEY_RSA,
Damien Millerc1583312010-08-05 13:04:50 +10001318 _PATH_HOST_RSA_KEY_FILE, "", NULL);
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001319 sensitive_data.keys[4] = key_load_private_cert(KEY_DSA,
1320 _PATH_HOST_DSA_KEY_FILE, "", NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001321#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001322 sensitive_data.keys[5] = key_load_private_type(KEY_ECDSA,
Damien Millereb8b60e2010-08-31 22:41:14 +10001323 _PATH_HOST_ECDSA_KEY_FILE, "", NULL, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001324#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001325 sensitive_data.keys[6] = key_load_private_type(KEY_ED25519,
1326 _PATH_HOST_ED25519_KEY_FILE, "", NULL, NULL);
Damien Miller0fa47cf2013-12-29 17:53:39 +11001327 sensitive_data.keys[7] = key_load_private_type(KEY_RSA,
Darren Tucker232b76f2006-05-06 17:41:51 +10001328 _PATH_HOST_RSA_KEY_FILE, "", NULL, NULL);
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001329 sensitive_data.keys[8] = key_load_private_type(KEY_DSA,
1330 _PATH_HOST_DSA_KEY_FILE, "", NULL, NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +00001331 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001332
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +00001333 if (options.hostbased_authentication == 1 &&
1334 sensitive_data.keys[0] == NULL &&
Damien Millereb8b60e2010-08-31 22:41:14 +10001335 sensitive_data.keys[5] == NULL &&
Damien Miller5be9d9e2013-12-07 11:24:01 +11001336 sensitive_data.keys[6] == NULL &&
Damien Miller0fa47cf2013-12-29 17:53:39 +11001337 sensitive_data.keys[7] == NULL &&
1338 sensitive_data.keys[8] == NULL) {
Damien Miller6af914a2010-09-10 11:39:26 +10001339#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001340 sensitive_data.keys[1] = key_load_cert(
Damien Millereb8b60e2010-08-31 22:41:14 +10001341 _PATH_HOST_ECDSA_KEY_FILE);
Damien Miller6af914a2010-09-10 11:39:26 +10001342#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001343 sensitive_data.keys[2] = key_load_cert(
1344 _PATH_HOST_ED25519_KEY_FILE);
Damien Millereb8b60e2010-08-31 22:41:14 +10001345 sensitive_data.keys[3] = key_load_cert(
Damien Millerc1583312010-08-05 13:04:50 +10001346 _PATH_HOST_RSA_KEY_FILE);
Damien Miller0fa47cf2013-12-29 17:53:39 +11001347 sensitive_data.keys[4] = key_load_cert(
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001348 _PATH_HOST_DSA_KEY_FILE);
Damien Miller6af914a2010-09-10 11:39:26 +10001349#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001350 sensitive_data.keys[5] = key_load_public(
Damien Millereb8b60e2010-08-31 22:41:14 +10001351 _PATH_HOST_ECDSA_KEY_FILE, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001352#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001353 sensitive_data.keys[6] = key_load_public(
1354 _PATH_HOST_ED25519_KEY_FILE, NULL);
Damien Miller5be9d9e2013-12-07 11:24:01 +11001355 sensitive_data.keys[7] = key_load_public(
Damien Miller0fa47cf2013-12-29 17:53:39 +11001356 _PATH_HOST_RSA_KEY_FILE, NULL);
1357 sensitive_data.keys[8] = key_load_public(
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001358 _PATH_HOST_DSA_KEY_FILE, NULL);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001359 sensitive_data.external_keysign = 1;
1360 }
Damien Miller95def091999-11-25 00:26:21 +11001361 }
Damien Miller5428f641999-11-25 11:54:57 +11001362 /*
1363 * Get rid of any extra privileges that we may have. We will no
1364 * longer need them. Also, extra privileges could make it very hard
1365 * to read identity files and other non-world-readable files from the
1366 * user's home directory if it happens to be on a NFS volume where
1367 * root is mapped to nobody.
1368 */
Darren Tucker25f60a72004-08-15 17:23:34 +10001369 if (original_effective_uid == 0) {
1370 PRIV_START;
1371 permanently_set_uid(pw);
1372 }
Damien Miller95def091999-11-25 00:26:21 +11001373
Damien Miller5428f641999-11-25 11:54:57 +11001374 /*
1375 * Now that we are back to our own permissions, create ~/.ssh
Damien Miller788f2122005-11-05 15:14:59 +11001376 * directory if it doesn't already exist.
Damien Miller5428f641999-11-25 11:54:57 +11001377 */
Darren Tucker45c66d72011-11-04 10:50:40 +11001378 if (config == NULL) {
1379 r = snprintf(buf, sizeof buf, "%s%s%s", pw->pw_dir,
1380 strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
1381 if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) < 0) {
Darren Tucker8ccb7392010-09-10 12:28:24 +10001382#ifdef WITH_SELINUX
Darren Tucker45c66d72011-11-04 10:50:40 +11001383 ssh_selinux_setfscreatecon(buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001384#endif
Darren Tucker45c66d72011-11-04 10:50:40 +11001385 if (mkdir(buf, 0700) < 0)
1386 error("Could not create directory '%.200s'.",
1387 buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001388#ifdef WITH_SELINUX
Darren Tucker45c66d72011-11-04 10:50:40 +11001389 ssh_selinux_setfscreatecon(NULL);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001390#endif
Darren Tucker45c66d72011-11-04 10:50:40 +11001391 }
Darren Tucker8ccb7392010-09-10 12:28:24 +10001392 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001393 /* load options.identity_files */
1394 load_public_identity_files();
1395
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00001396 /* optionally set the SSH_AUTHSOCKET_ENV_NAME varibale */
markus@openbsd.org1a75d142016-05-04 14:29:58 +00001397 if (options.identity_agent &&
1398 strcmp(options.identity_agent, SSH_AUTHSOCKET_ENV_NAME) != 0) {
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00001399 if (strcmp(options.identity_agent, "none") == 0) {
1400 unsetenv(SSH_AUTHSOCKET_ENV_NAME);
1401 } else {
1402 p = tilde_expand_filename(options.identity_agent,
1403 original_real_uid);
1404 cp = percent_expand(p, "d", pw->pw_dir,
1405 "u", pw->pw_name, "l", thishost, "h", host,
1406 "r", options.user, (char *)NULL);
1407 setenv(SSH_AUTHSOCKET_ENV_NAME, cp, 1);
1408 free(cp);
1409 free(p);
1410 }
1411 }
1412
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001413 /* Expand ~ in known host file names. */
Damien Miller295ee632011-05-29 21:42:31 +10001414 tilde_expand_paths(options.system_hostfiles,
1415 options.num_system_hostfiles);
1416 tilde_expand_paths(options.user_hostfiles, options.num_user_hostfiles);
Damien Miller95def091999-11-25 00:26:21 +11001417
Damien Miller07cd5892001-11-12 10:52:03 +11001418 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
Damien Miller857b02e2010-09-24 22:02:56 +10001419 signal(SIGCHLD, main_sigchld_handler);
Damien Miller07cd5892001-11-12 10:52:03 +11001420
Darren Tuckerd6173c02008-06-13 04:52:53 +10001421 /* Log into the remote system. Never returns if the login fails. */
Damien Miller67bd0622007-09-17 12:06:57 +10001422 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr,
Damien Millerd925dcd2010-12-01 12:21:51 +11001423 options.port, pw, timeout_ms);
Damien Miller95def091999-11-25 00:26:21 +11001424
Damien Miller383ffe62010-06-26 10:02:03 +10001425 if (packet_connection_is_on_socket()) {
1426 verbose("Authenticated to %s ([%s]:%d).", host,
djm@openbsd.org95767262016-03-07 19:02:43 +00001427 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
Damien Miller383ffe62010-06-26 10:02:03 +10001428 } else {
1429 verbose("Authenticated to %s (via proxy).", host);
1430 }
1431
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001432 /* We no longer need the private host keys. Clear them now. */
1433 if (sensitive_data.nkeys != 0) {
1434 for (i = 0; i < sensitive_data.nkeys; i++) {
1435 if (sensitive_data.keys[i] != NULL) {
1436 /* Destroys contents safely */
1437 debug3("clear hostkey %d", i);
1438 key_free(sensitive_data.keys[i]);
1439 sensitive_data.keys[i] = NULL;
1440 }
1441 }
Darren Tuckera627d422013-06-02 07:31:17 +10001442 free(sensitive_data.keys);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001443 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +00001444 for (i = 0; i < options.num_identity_files; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +10001445 free(options.identity_files[i]);
1446 options.identity_files[i] = NULL;
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +00001447 if (options.identity_keys[i]) {
1448 key_free(options.identity_keys[i]);
1449 options.identity_keys[i] = NULL;
1450 }
1451 }
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001452 for (i = 0; i < options.num_certificate_files; i++) {
1453 free(options.certificate_files[i]);
1454 options.certificate_files[i] = NULL;
1455 }
Damien Miller95def091999-11-25 00:26:21 +11001456
markus@openbsd.org8d057842016-09-30 09:19:13 +00001457 skip_connect:
Damien Miller1383bd82000-04-06 12:32:37 +10001458 exit_status = compat20 ? ssh_session2() : ssh_session();
1459 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +10001460
Damien Millerb1cbfa22008-05-19 16:00:08 +10001461 if (options.control_path != NULL && muxserver_sock != -1)
Damien Miller0e220db2004-06-15 10:34:08 +10001462 unlink(options.control_path);
1463
Damien Millera41ccca2010-10-07 22:07:32 +11001464 /* Kill ProxyCommand if it is running. */
1465 ssh_kill_proxy_command();
Damien Miller8c4e18a2002-09-19 12:05:02 +10001466
Damien Miller1383bd82000-04-06 12:32:37 +10001467 return exit_status;
1468}
1469
Damien Millere11e1ea2010-08-03 16:04:46 +10001470static void
1471control_persist_detach(void)
1472{
1473 pid_t pid;
djm@openbsd.orgd2d6bf82016-04-29 08:07:53 +00001474 int devnull, keep_stderr;
Damien Millere11e1ea2010-08-03 16:04:46 +10001475
1476 debug("%s: backgrounding master process", __func__);
1477
1478 /*
1479 * master (current process) into the background, and make the
1480 * foreground process a client of the backgrounded master.
1481 */
1482 switch ((pid = fork())) {
1483 case -1:
1484 fatal("%s: fork: %s", __func__, strerror(errno));
1485 case 0:
1486 /* Child: master process continues mainloop */
1487 break;
1488 default:
1489 /* Parent: set up mux slave to connect to backgrounded master */
1490 debug2("%s: background process is %ld", __func__, (long)pid);
1491 stdin_null_flag = ostdin_null_flag;
Damien Miller21771e22011-05-15 08:45:50 +10001492 options.request_tty = orequest_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +10001493 tty_flag = otty_flag;
1494 close(muxserver_sock);
1495 muxserver_sock = -1;
Damien Miller5929c522010-09-10 11:17:02 +10001496 options.control_master = SSHCTL_MASTER_NO;
Damien Millere11e1ea2010-08-03 16:04:46 +10001497 muxclient(options.control_path);
1498 /* muxclient() doesn't return on success. */
1499 fatal("Failed to connect to new control master");
1500 }
Damien Miller00d9ae22010-08-17 01:59:31 +10001501 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
1502 error("%s: open(\"/dev/null\"): %s", __func__,
1503 strerror(errno));
1504 } else {
djm@openbsd.orgd2d6bf82016-04-29 08:07:53 +00001505 keep_stderr = log_is_on_stderr() && debug_flag;
Damien Miller00d9ae22010-08-17 01:59:31 +10001506 if (dup2(devnull, STDIN_FILENO) == -1 ||
djm@openbsd.orgd2d6bf82016-04-29 08:07:53 +00001507 dup2(devnull, STDOUT_FILENO) == -1 ||
1508 (!keep_stderr && dup2(devnull, STDERR_FILENO) == -1))
Damien Miller00d9ae22010-08-17 01:59:31 +10001509 error("%s: dup2: %s", __func__, strerror(errno));
1510 if (devnull > STDERR_FILENO)
1511 close(devnull);
1512 }
Damien Miller98e27dc2013-07-25 11:55:52 +10001513 daemon(1, 1);
Damien Millerea2c1a42011-06-03 12:10:22 +10001514 setproctitle("%s [mux]", options.control_path);
Damien Millere11e1ea2010-08-03 16:04:46 +10001515}
1516
1517/* Do fork() after authentication. Used by "ssh -f" */
1518static void
1519fork_postauth(void)
1520{
1521 if (need_controlpersist_detach)
1522 control_persist_detach();
1523 debug("forking to background");
1524 fork_after_authentication_flag = 0;
1525 if (daemon(1, 1) < 0)
1526 fatal("daemon() failed: %.200s", strerror(errno));
1527}
1528
Darren Tucker9f407c42008-06-13 04:50:27 +10001529/* Callback for remote forward global requests */
1530static void
1531ssh_confirm_remote_forward(int type, u_int32_t seq, void *ctxt)
1532{
Damien Miller7acefbb2014-07-18 14:11:24 +10001533 struct Forward *rfwd = (struct Forward *)ctxt;
Darren Tucker9f407c42008-06-13 04:50:27 +10001534
Damien Miller4bf648f2009-02-14 16:28:21 +11001535 /* XXX verbose() on failure? */
Damien Miller4b3ed642014-07-02 15:29:40 +10001536 debug("remote forward %s for: listen %s%s%d, connect %s:%d",
Darren Tucker9f407c42008-06-13 04:50:27 +10001537 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
Damien Miller7acefbb2014-07-18 14:11:24 +10001538 rfwd->listen_path ? rfwd->listen_path :
1539 rfwd->listen_host ? rfwd->listen_host : "",
1540 (rfwd->listen_path || rfwd->listen_host) ? ":" : "",
1541 rfwd->listen_port, rfwd->connect_path ? rfwd->connect_path :
1542 rfwd->connect_host, rfwd->connect_port);
1543 if (rfwd->listen_path == NULL && rfwd->listen_port == 0) {
Darren Tucker68afb8c2011-10-02 18:59:03 +11001544 if (type == SSH2_MSG_REQUEST_SUCCESS) {
1545 rfwd->allocated_port = packet_get_int();
1546 logit("Allocated port %u for remote forward to %s:%d",
1547 rfwd->allocated_port,
1548 rfwd->connect_host, rfwd->connect_port);
1549 channel_update_permitted_opens(rfwd->handle,
1550 rfwd->allocated_port);
1551 } else {
1552 channel_update_permitted_opens(rfwd->handle, -1);
1553 }
Damien Miller4bf648f2009-02-14 16:28:21 +11001554 }
1555
Darren Tucker9f407c42008-06-13 04:50:27 +10001556 if (type == SSH2_MSG_REQUEST_FAILURE) {
Damien Miller7acefbb2014-07-18 14:11:24 +10001557 if (options.exit_on_forward_failure) {
1558 if (rfwd->listen_path != NULL)
1559 fatal("Error: remote port forwarding failed "
1560 "for listen path %s", rfwd->listen_path);
1561 else
1562 fatal("Error: remote port forwarding failed "
1563 "for listen port %d", rfwd->listen_port);
1564 } else {
1565 if (rfwd->listen_path != NULL)
1566 logit("Warning: remote port forwarding failed "
1567 "for listen path %s", rfwd->listen_path);
1568 else
1569 logit("Warning: remote port forwarding failed "
1570 "for listen port %d", rfwd->listen_port);
1571 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001572 }
Darren Tucker9a2a6092008-07-04 12:53:50 +10001573 if (++remote_forward_confirms_received == options.num_remote_forwards) {
Darren Tucker9f407c42008-06-13 04:50:27 +10001574 debug("All remote forwarding requests processed");
Damien Millere11e1ea2010-08-03 16:04:46 +10001575 if (fork_after_authentication_flag)
1576 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001577 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001578}
1579
Ben Lindstrombba81212001-06-25 05:01:22 +00001580static void
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001581client_cleanup_stdio_fwd(int id, void *arg)
1582{
1583 debug("stdio forwarding: done");
1584 cleanup_exit(0);
1585}
1586
Darren Tucker2d6665d2011-11-04 10:54:22 +11001587static void
Damien Miller357610d2014-07-18 15:04:10 +10001588ssh_stdio_confirm(int id, int success, void *arg)
1589{
1590 if (!success)
1591 fatal("stdio forwarding failed");
1592}
1593
1594static void
Darren Tucker2d6665d2011-11-04 10:54:22 +11001595ssh_init_stdio_forwarding(void)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001596{
1597 Channel *c;
Damien Millere1537f92010-01-26 13:26:22 +11001598 int in, out;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001599
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +00001600 if (options.stdio_forward_host == NULL)
Darren Tucker2d6665d2011-11-04 10:54:22 +11001601 return;
Damien Miller386feab2013-10-15 12:14:49 +11001602 if (!compat20)
Darren Tucker2d6665d2011-11-04 10:54:22 +11001603 fatal("stdio forwarding require Protocol 2");
Damien Millere1537f92010-01-26 13:26:22 +11001604
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +00001605 debug3("%s: %s:%d", __func__, options.stdio_forward_host,
1606 options.stdio_forward_port);
Darren Tucker2d6665d2011-11-04 10:54:22 +11001607
1608 if ((in = dup(STDIN_FILENO)) < 0 ||
1609 (out = dup(STDOUT_FILENO)) < 0)
Damien Millere1537f92010-01-26 13:26:22 +11001610 fatal("channel_connect_stdio_fwd: dup() in/out failed");
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +00001611 if ((c = channel_connect_stdio_fwd(options.stdio_forward_host,
1612 options.stdio_forward_port, in, out)) == NULL)
Darren Tucker2d6665d2011-11-04 10:54:22 +11001613 fatal("%s: channel_connect_stdio_fwd failed", __func__);
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001614 channel_register_cleanup(c->self, client_cleanup_stdio_fwd, 0);
Damien Miller357610d2014-07-18 15:04:10 +10001615 channel_register_open_confirm(c->self, ssh_stdio_confirm, NULL);
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001616}
1617
1618static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001619ssh_init_forwarding(void)
1620{
Kevin Steves12057502001-02-05 14:54:34 +00001621 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001622 int i;
Kevin Steves12057502001-02-05 14:54:34 +00001623
Damien Miller0bc1bd82000-11-13 22:57:25 +11001624 /* Initiate local TCP/IP port forwardings. */
1625 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001626 debug("Local connections to %.200s:%d forwarded to remote "
1627 "address %.200s:%d",
Damien Miller7acefbb2014-07-18 14:11:24 +10001628 (options.local_forwards[i].listen_path != NULL) ?
1629 options.local_forwards[i].listen_path :
Darren Tucker47eede72005-03-14 23:08:12 +11001630 (options.local_forwards[i].listen_host == NULL) ?
Damien Miller7acefbb2014-07-18 14:11:24 +10001631 (options.fwd_opts.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001632 options.local_forwards[i].listen_host,
1633 options.local_forwards[i].listen_port,
Damien Miller7acefbb2014-07-18 14:11:24 +10001634 (options.local_forwards[i].connect_path != NULL) ?
1635 options.local_forwards[i].connect_path :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001636 options.local_forwards[i].connect_host,
1637 options.local_forwards[i].connect_port);
Damien Millerb16461c2002-01-22 23:29:22 +11001638 success += channel_setup_local_fwd_listener(
Damien Miller7acefbb2014-07-18 14:11:24 +10001639 &options.local_forwards[i], &options.fwd_opts);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001640 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10001641 if (i > 0 && success != i && options.exit_on_forward_failure)
1642 fatal("Could not request local forwarding.");
Kevin Steves12057502001-02-05 14:54:34 +00001643 if (i > 0 && success == 0)
1644 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001645
1646 /* Initiate remote TCP/IP port forwardings. */
1647 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001648 debug("Remote connections from %.200s:%d forwarded to "
1649 "local address %.200s:%d",
Damien Miller7acefbb2014-07-18 14:11:24 +10001650 (options.remote_forwards[i].listen_path != NULL) ?
1651 options.remote_forwards[i].listen_path :
Damien Miller46d38de2005-07-17 17:02:09 +10001652 (options.remote_forwards[i].listen_host == NULL) ?
Damien Milleraa3bb102005-11-05 15:12:59 +11001653 "LOCALHOST" : options.remote_forwards[i].listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +11001654 options.remote_forwards[i].listen_port,
Damien Miller7acefbb2014-07-18 14:11:24 +10001655 (options.remote_forwards[i].connect_path != NULL) ?
1656 options.remote_forwards[i].connect_path :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001657 options.remote_forwards[i].connect_host,
1658 options.remote_forwards[i].connect_port);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001659 options.remote_forwards[i].handle =
1660 channel_request_remote_forwarding(
Damien Miller7acefbb2014-07-18 14:11:24 +10001661 &options.remote_forwards[i]);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001662 if (options.remote_forwards[i].handle < 0) {
Darren Tuckere7d4b192006-07-12 22:17:10 +10001663 if (options.exit_on_forward_failure)
1664 fatal("Could not request remote forwarding.");
1665 else
1666 logit("Warning: Could not request remote "
1667 "forwarding.");
Darren Tucker68afb8c2011-10-02 18:59:03 +11001668 } else {
1669 client_register_global_confirm(ssh_confirm_remote_forward,
1670 &options.remote_forwards[i]);
Darren Tuckere7d4b192006-07-12 22:17:10 +10001671 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001672 }
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001673
1674 /* Initiate tunnel forwarding. */
1675 if (options.tun_open != SSH_TUNMODE_NO) {
1676 if (client_request_tun_fwd(options.tun_open,
1677 options.tun_local, options.tun_remote) == -1) {
1678 if (options.exit_on_forward_failure)
1679 fatal("Could not request tunnel forwarding.");
1680 else
1681 error("Could not request tunnel forwarding.");
1682 }
1683 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001684}
1685
Ben Lindstrombba81212001-06-25 05:01:22 +00001686static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001687check_agent_present(void)
1688{
djm@openbsd.org141efe42015-01-14 20:05:27 +00001689 int r;
1690
Damien Miller0bc1bd82000-11-13 22:57:25 +11001691 if (options.forward_agent) {
Damien Miller788f2122005-11-05 15:14:59 +11001692 /* Clear agent forwarding if we don't have an agent. */
djm@openbsd.org141efe42015-01-14 20:05:27 +00001693 if ((r = ssh_get_authentication_socket(NULL)) != 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001694 options.forward_agent = 0;
djm@openbsd.org141efe42015-01-14 20:05:27 +00001695 if (r != SSH_ERR_AGENT_NOT_PRESENT)
1696 debug("ssh_get_authentication_socket: %s",
1697 ssh_err(r));
1698 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001699 }
1700}
1701
Ben Lindstrombba81212001-06-25 05:01:22 +00001702static int
Damien Miller1383bd82000-04-06 12:32:37 +10001703ssh_session(void)
1704{
1705 int type;
Damien Miller1383bd82000-04-06 12:32:37 +10001706 int interactive = 0;
1707 int have_tty = 0;
1708 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +10001709 char *cp;
Damien Miller17e7ed02005-06-17 12:54:33 +10001710 const char *display;
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001711 char *proto = NULL, *data = NULL;
Damien Miller1383bd82000-04-06 12:32:37 +10001712
Damien Miller95def091999-11-25 00:26:21 +11001713 /* Enable compression if requested. */
1714 if (options.compression) {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001715 debug("Requesting compression at level %d.",
1716 options.compression_level);
Damien Miller95def091999-11-25 00:26:21 +11001717
Darren Tuckerd6173c02008-06-13 04:52:53 +10001718 if (options.compression_level < 1 ||
1719 options.compression_level > 9)
1720 fatal("Compression level must be from 1 (fast) to "
1721 "9 (slow, best).");
Damien Miller95def091999-11-25 00:26:21 +11001722
1723 /* Send the request. */
1724 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
1725 packet_put_int(options.compression_level);
1726 packet_send();
1727 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +11001728 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001729 if (type == SSH_SMSG_SUCCESS)
1730 packet_start_compression(options.compression_level);
1731 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +10001732 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +11001733 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001734 packet_disconnect("Protocol error waiting for "
1735 "compression response.");
Damien Miller95def091999-11-25 00:26:21 +11001736 }
1737 /* Allocate a pseudo tty if appropriate. */
1738 if (tty_flag) {
1739 debug("Requesting pty.");
1740
1741 /* Start the packet. */
1742 packet_start(SSH_CMSG_REQUEST_PTY);
1743
1744 /* Store TERM in the packet. There is no limit on the
1745 length of the string. */
1746 cp = getenv("TERM");
1747 if (!cp)
1748 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +00001749 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +11001750
1751 /* Store window size in the packet. */
1752 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1753 memset(&ws, 0, sizeof(ws));
Damien Miller71a73672006-03-26 14:04:36 +11001754 packet_put_int((u_int)ws.ws_row);
1755 packet_put_int((u_int)ws.ws_col);
1756 packet_put_int((u_int)ws.ws_xpixel);
1757 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller95def091999-11-25 00:26:21 +11001758
1759 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001760 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +11001761
1762 /* Send the packet, and wait for it to leave. */
1763 packet_send();
1764 packet_write_wait();
1765
1766 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001767 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +10001768 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001769 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001770 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +10001771 } else if (type == SSH_SMSG_FAILURE)
Darren Tuckerd6173c02008-06-13 04:52:53 +10001772 logit("Warning: Remote host failed or refused to "
1773 "allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +11001774 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001775 packet_disconnect("Protocol error waiting for pty "
1776 "request response.");
Damien Miller95def091999-11-25 00:26:21 +11001777 }
1778 /* Request X11 forwarding if enabled and DISPLAY is set. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001779 display = getenv("DISPLAY");
djm@openbsd.orga58be332015-04-17 13:16:48 +00001780 if (display == NULL && options.forward_x11)
1781 debug("X11 forwarding requested but DISPLAY not set");
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001782 if (options.forward_x11 && client_x11_get_proto(display,
1783 options.xauth_location, options.forward_x11_trusted,
1784 options.forward_x11_timeout, &proto, &data) == 0) {
Damien Millerbd483e72000-04-30 10:00:53 +10001785 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001786 debug("Requesting X11 forwarding with authentication "
1787 "spoofing.");
Damien Miller6d7b4372011-06-23 08:31:57 +10001788 x11_request_forwarding_with_spoofing(0, display, proto,
1789 data, 0);
Damien Miller95def091999-11-25 00:26:21 +11001790 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001791 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001792 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001793 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001794 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +10001795 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +10001796 } else {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001797 packet_disconnect("Protocol error waiting for X11 "
1798 "forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +10001799 }
Damien Miller95def091999-11-25 00:26:21 +11001800 }
1801 /* Tell the packet module whether this is an interactive session. */
Damien Miller0dac6fb2010-11-20 15:19:38 +11001802 packet_set_interactive(interactive,
1803 options.ip_qos_interactive, options.ip_qos_bulk);
Damien Miller95def091999-11-25 00:26:21 +11001804
1805 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001806 check_agent_present();
1807
Damien Miller95def091999-11-25 00:26:21 +11001808 if (options.forward_agent) {
1809 debug("Requesting authentication agent forwarding.");
1810 auth_request_forwarding();
1811
1812 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001813 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +11001814 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11001815 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +10001816 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +11001817 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001818
Damien Miller0bc1bd82000-11-13 22:57:25 +11001819 /* Initiate port forwardings. */
Darren Tucker2d6665d2011-11-04 10:54:22 +11001820 ssh_init_stdio_forwarding();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001821 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001822
Darren Tuckerb776c852007-12-02 23:06:35 +11001823 /* Execute a local command */
1824 if (options.local_command != NULL &&
1825 options.permit_local_command)
1826 ssh_local_cmd(options.local_command);
1827
Darren Tucker9a2a6092008-07-04 12:53:50 +10001828 /*
1829 * If requested and we are not interested in replies to remote
1830 * forwarding requests, then let ssh continue in the background.
1831 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001832 if (fork_after_authentication_flag) {
1833 if (options.exit_on_forward_failure &&
1834 options.num_remote_forwards > 0) {
1835 debug("deferring postauth fork until remote forward "
1836 "confirmation received");
1837 } else
1838 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001839 }
Damien Miller5428f641999-11-25 11:54:57 +11001840
1841 /*
1842 * If a command was specified on the command line, execute the
1843 * command now. Otherwise request the server to start a shell.
1844 */
Damien Miller95def091999-11-25 00:26:21 +11001845 if (buffer_len(&command) > 0) {
1846 int len = buffer_len(&command);
1847 if (len > 900)
1848 len = 900;
Darren Tuckerd6173c02008-06-13 04:52:53 +10001849 debug("Sending command: %.*s", len,
1850 (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +11001851 packet_start(SSH_CMSG_EXEC_CMD);
1852 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1853 packet_send();
1854 packet_write_wait();
1855 } else {
1856 debug("Requesting shell.");
1857 packet_start(SSH_CMSG_EXEC_SHELL);
1858 packet_send();
1859 packet_write_wait();
1860 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001861
Damien Miller95def091999-11-25 00:26:21 +11001862 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001863 return client_loop(have_tty, tty_flag ?
1864 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +10001865}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001866
Ben Lindstromf558cf62001-09-20 23:13:49 +00001867/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001868static void
Damien Millerd530f5f2010-05-21 14:57:10 +10001869ssh_session2_setup(int id, int success, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001870{
Damien Miller3756dce2004-06-18 01:17:29 +10001871 extern char **environ;
Damien Miller17e7ed02005-06-17 12:54:33 +10001872 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +10001873 int interactive = tty_flag;
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001874 char *proto = NULL, *data = NULL;
Damien Miller17e7ed02005-06-17 12:54:33 +10001875
Damien Millerd530f5f2010-05-21 14:57:10 +10001876 if (!success)
1877 return; /* No need for error message, channels code sens one */
1878
Damien Miller46d38de2005-07-17 17:02:09 +10001879 display = getenv("DISPLAY");
djm@openbsd.orga58be332015-04-17 13:16:48 +00001880 if (display == NULL && options.forward_x11)
1881 debug("X11 forwarding requested but DISPLAY not set");
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001882 if (options.forward_x11 && client_x11_get_proto(display,
1883 options.xauth_location, options.forward_x11_trusted,
1884 options.forward_x11_timeout, &proto, &data) == 0) {
Damien Millerbd483e72000-04-30 10:00:53 +10001885 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001886 debug("Requesting X11 forwarding with authentication "
1887 "spoofing.");
Damien Miller6d7b4372011-06-23 08:31:57 +10001888 x11_request_forwarding_with_spoofing(id, display, proto,
1889 data, 1);
1890 client_expect_confirm(id, "X11 forwarding", CONFIRM_WARN);
1891 /* XXX exit_on_forward_failure */
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001892 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001893 }
1894
Damien Miller0bc1bd82000-11-13 22:57:25 +11001895 check_agent_present();
1896 if (options.forward_agent) {
1897 debug("Requesting authentication agent forwarding.");
1898 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1899 packet_send();
1900 }
1901
Darren Tucker7b305012012-07-02 18:55:09 +10001902 /* Tell the packet module whether this is an interactive session. */
1903 packet_set_interactive(interactive,
1904 options.ip_qos_interactive, options.ip_qos_bulk);
1905
Damien Miller0e220db2004-06-15 10:34:08 +10001906 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
Damien Miller5771ed72008-05-19 15:35:33 +10001907 NULL, fileno(stdin), &command, environ);
Damien Miller1383bd82000-04-06 12:32:37 +10001908}
1909
Ben Lindstromf558cf62001-09-20 23:13:49 +00001910/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001911static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001912ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001913{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001914 Channel *c;
1915 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001916
Damien Millercaf6dd62000-08-29 11:33:50 +11001917 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001918 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001919 } else {
1920 in = dup(STDIN_FILENO);
1921 }
1922 out = dup(STDOUT_FILENO);
1923 err = dup(STDERR_FILENO);
1924
1925 if (in < 0 || out < 0 || err < 0)
1926 fatal("dup() in/out/err failed");
1927
Damien Miller69b69aa2000-10-28 14:19:58 +11001928 /* enable nonblocking unless tty */
1929 if (!isatty(in))
1930 set_nonblock(in);
1931 if (!isatty(out))
1932 set_nonblock(out);
1933 if (!isatty(err))
1934 set_nonblock(err);
1935
Damien Millere4340be2000-09-16 13:29:08 +11001936 window = CHAN_SES_WINDOW_DEFAULT;
1937 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001938 if (tty_flag) {
1939 window >>= 1;
1940 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001941 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001942 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001943 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001944 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001945 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001946
Ben Lindstromf558cf62001-09-20 23:13:49 +00001947 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001948
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001949 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001950 if (!no_shell_flag)
Damien Millerb84886b2008-05-19 15:05:07 +10001951 channel_register_open_confirm(c->self,
1952 ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001953
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001954 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001955}
1956
Ben Lindstrombba81212001-06-25 05:01:22 +00001957static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001958ssh_session2(void)
1959{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001960 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001961
1962 /* XXX should be pre-session */
Darren Tucker2d6665d2011-11-04 10:54:22 +11001963 if (!options.control_persist)
1964 ssh_init_stdio_forwarding();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001965 ssh_init_forwarding();
1966
Damien Millere11e1ea2010-08-03 16:04:46 +10001967 /* Start listening for multiplex clients */
markus@openbsd.org8d057842016-09-30 09:19:13 +00001968 if (!packet_get_mux())
1969 muxserver_listen();
Damien Millere11e1ea2010-08-03 16:04:46 +10001970
1971 /*
Darren Tucker2d6665d2011-11-04 10:54:22 +11001972 * If we are in control persist mode and have a working mux listen
1973 * socket, then prepare to background ourselves and have a foreground
1974 * client attach as a control slave.
1975 * NB. we must save copies of the flags that we override for
Damien Millere11e1ea2010-08-03 16:04:46 +10001976 * the backgrounding, since we defer attachment of the slave until
1977 * after the connection is fully established (in particular,
1978 * async rfwd replies have been received for ExitOnForwardFailure).
1979 */
1980 if (options.control_persist && muxserver_sock != -1) {
1981 ostdin_null_flag = stdin_null_flag;
1982 ono_shell_flag = no_shell_flag;
Damien Miller21771e22011-05-15 08:45:50 +10001983 orequest_tty = options.request_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +10001984 otty_flag = tty_flag;
1985 stdin_null_flag = 1;
1986 no_shell_flag = 1;
Damien Millere11e1ea2010-08-03 16:04:46 +10001987 tty_flag = 0;
1988 if (!fork_after_authentication_flag)
1989 need_controlpersist_detach = 1;
1990 fork_after_authentication_flag = 1;
1991 }
Darren Tucker2d6665d2011-11-04 10:54:22 +11001992 /*
1993 * ControlPersist mux listen socket setup failed, attempt the
1994 * stdio forward setup that we skipped earlier.
1995 */
1996 if (options.control_persist && muxserver_sock == -1)
1997 ssh_init_stdio_forwarding();
Damien Millere11e1ea2010-08-03 16:04:46 +10001998
Ben Lindstromf558cf62001-09-20 23:13:49 +00001999 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
2000 id = ssh_session2_open();
Damien Miller649fe022013-07-18 16:13:55 +10002001 else {
2002 packet_set_interactive(
2003 options.control_master == SSHCTL_MASTER_NO,
2004 options.ip_qos_interactive, options.ip_qos_bulk);
2005 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00002006
Darren Tucker8901fa92008-06-11 09:34:01 +10002007 /* If we don't expect to open a new session, then disallow it */
Damien Miller456e6f02008-11-03 19:20:10 +11002008 if (options.control_master == SSHCTL_MASTER_NO &&
2009 (datafellows & SSH_NEW_OPENSSH)) {
Darren Tucker8901fa92008-06-11 09:34:01 +10002010 debug("Requesting no-more-sessions@openssh.com");
2011 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2012 packet_put_cstring("no-more-sessions@openssh.com");
2013 packet_put_char(0);
2014 packet_send();
2015 }
2016
Damien Millerd27b9472005-12-13 19:29:02 +11002017 /* Execute a local command */
2018 if (options.local_command != NULL &&
2019 options.permit_local_command)
2020 ssh_local_cmd(options.local_command);
2021
Damien Miller1f25ab42010-07-16 13:56:23 +10002022 /*
2023 * If requested and we are not interested in replies to remote
2024 * forwarding requests, then let ssh continue in the background.
2025 */
Damien Millere11e1ea2010-08-03 16:04:46 +10002026 if (fork_after_authentication_flag) {
2027 if (options.exit_on_forward_failure &&
2028 options.num_remote_forwards > 0) {
2029 debug("deferring postauth fork until remote forward "
2030 "confirmation received");
2031 } else
2032 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10002033 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00002034
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00002035 return client_loop(tty_flag, tty_flag ?
2036 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002037}
Damien Miller0bc1bd82000-11-13 22:57:25 +11002038
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002039/* Loads all IdentityFile and CertificateFile keys */
Ben Lindstrombba81212001-06-25 05:01:22 +00002040static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002041load_public_identity_files(void)
2042{
Damien Miller6b1d53c2006-03-31 23:13:21 +11002043 char *filename, *cp, thishost[NI_MAXHOST];
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11002044 char *pwdir = NULL, *pwname = NULL;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00002045 Key *public;
Damien Miller6b1d53c2006-03-31 23:13:21 +11002046 struct passwd *pw;
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002047 int i;
2048 u_int n_ids, n_certs;
Damien Miller0a80ca12010-02-27 07:55:05 +11002049 char *identity_files[SSH_MAX_IDENTITY_FILES];
2050 Key *identity_keys[SSH_MAX_IDENTITY_FILES];
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002051 char *certificate_files[SSH_MAX_CERTIFICATE_FILES];
2052 struct sshkey *certificates[SSH_MAX_CERTIFICATE_FILES];
Damien Miller7ea845e2010-02-12 09:21:02 +11002053#ifdef ENABLE_PKCS11
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00002054 Key **keys;
Damien Miller7ea845e2010-02-12 09:21:02 +11002055 int nkeys;
Damien Miller0a80ca12010-02-27 07:55:05 +11002056#endif /* PKCS11 */
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00002057
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002058 n_ids = n_certs = 0;
Damien Miller1d2c4562014-02-04 11:18:20 +11002059 memset(identity_files, 0, sizeof(identity_files));
2060 memset(identity_keys, 0, sizeof(identity_keys));
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002061 memset(certificate_files, 0, sizeof(certificate_files));
2062 memset(certificates, 0, sizeof(certificates));
Damien Miller0a80ca12010-02-27 07:55:05 +11002063
2064#ifdef ENABLE_PKCS11
Damien Miller7ea845e2010-02-12 09:21:02 +11002065 if (options.pkcs11_provider != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00002066 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
Damien Miller7ea845e2010-02-12 09:21:02 +11002067 (pkcs11_init(!options.batch_mode) == 0) &&
2068 (nkeys = pkcs11_add_provider(options.pkcs11_provider, NULL,
2069 &keys)) > 0) {
Damien Miller7ea845e2010-02-12 09:21:02 +11002070 for (i = 0; i < nkeys; i++) {
Damien Miller0a80ca12010-02-27 07:55:05 +11002071 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
2072 key_free(keys[i]);
2073 continue;
2074 }
2075 identity_keys[n_ids] = keys[i];
2076 identity_files[n_ids] =
Damien Miller7ea845e2010-02-12 09:21:02 +11002077 xstrdup(options.pkcs11_provider); /* XXX */
Damien Miller0a80ca12010-02-27 07:55:05 +11002078 n_ids++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00002079 }
Darren Tuckera627d422013-06-02 07:31:17 +10002080 free(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00002081 }
Damien Miller7ea845e2010-02-12 09:21:02 +11002082#endif /* ENABLE_PKCS11 */
Damien Miller6b1d53c2006-03-31 23:13:21 +11002083 if ((pw = getpwuid(original_real_uid)) == NULL)
2084 fatal("load_public_identity_files: getpwuid failed");
Darren Tuckere143f062007-12-02 23:21:16 +11002085 pwname = xstrdup(pw->pw_name);
2086 pwdir = xstrdup(pw->pw_dir);
Damien Miller6b1d53c2006-03-31 23:13:21 +11002087 if (gethostname(thishost, sizeof(thishost)) == -1)
2088 fatal("load_public_identity_files: gethostname: %s",
2089 strerror(errno));
Damien Miller0a80ca12010-02-27 07:55:05 +11002090 for (i = 0; i < options.num_identity_files; i++) {
Darren Tucker15fd19c2013-04-05 11:22:26 +11002091 if (n_ids >= SSH_MAX_IDENTITY_FILES ||
2092 strcasecmp(options.identity_files[i], "none") == 0) {
Darren Tuckera627d422013-06-02 07:31:17 +10002093 free(options.identity_files[i]);
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002094 options.identity_files[i] = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +11002095 continue;
2096 }
Damien Miller6b1d53c2006-03-31 23:13:21 +11002097 cp = tilde_expand_filename(options.identity_files[i],
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002098 original_real_uid);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11002099 filename = percent_expand(cp, "d", pwdir,
2100 "u", pwname, "l", thishost, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +11002101 "r", options.user, (char *)NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10002102 free(cp);
Ben Lindstromd0fca422001-03-26 13:44:06 +00002103 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002104 debug("identity file %s type %d", filename,
2105 public ? public->type : -1);
Darren Tuckera627d422013-06-02 07:31:17 +10002106 free(options.identity_files[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +11002107 identity_files[n_ids] = filename;
2108 identity_keys[n_ids] = public;
2109
2110 if (++n_ids >= SSH_MAX_IDENTITY_FILES)
2111 continue;
2112
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002113 /*
2114 * If no certificates have been explicitly listed then try
2115 * to add the default certificate variant too.
2116 */
2117 if (options.num_certificate_files != 0)
2118 continue;
Damien Miller0a80ca12010-02-27 07:55:05 +11002119 xasprintf(&cp, "%s-cert", filename);
2120 public = key_load_public(cp, NULL);
2121 debug("identity file %s type %d", cp,
2122 public ? public->type : -1);
2123 if (public == NULL) {
Darren Tuckera627d422013-06-02 07:31:17 +10002124 free(cp);
Damien Miller0a80ca12010-02-27 07:55:05 +11002125 continue;
2126 }
2127 if (!key_is_cert(public)) {
2128 debug("%s: key %s type %s is not a certificate",
2129 __func__, cp, key_type(public));
2130 key_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +10002131 free(cp);
Damien Miller0a80ca12010-02-27 07:55:05 +11002132 continue;
2133 }
djm@openbsd.orgb4867e02016-12-06 07:48:01 +00002134 /* NB. leave filename pointing to private key */
2135 identity_files[n_ids] = xstrdup(filename);
Damien Miller0a80ca12010-02-27 07:55:05 +11002136 identity_keys[n_ids] = public;
Damien Miller0a80ca12010-02-27 07:55:05 +11002137 n_ids++;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002138 }
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002139
2140 if (options.num_certificate_files > SSH_MAX_CERTIFICATE_FILES)
2141 fatal("%s: too many certificates", __func__);
2142 for (i = 0; i < options.num_certificate_files; i++) {
2143 cp = tilde_expand_filename(options.certificate_files[i],
2144 original_real_uid);
2145 filename = percent_expand(cp, "d", pwdir,
2146 "u", pwname, "l", thishost, "h", host,
2147 "r", options.user, (char *)NULL);
2148 free(cp);
2149
2150 public = key_load_public(filename, NULL);
2151 debug("certificate file %s type %d", filename,
2152 public ? public->type : -1);
2153 free(options.certificate_files[i]);
2154 options.certificate_files[i] = NULL;
2155 if (public == NULL) {
2156 free(filename);
2157 continue;
2158 }
2159 if (!key_is_cert(public)) {
2160 debug("%s: key %s type %s is not a certificate",
2161 __func__, filename, key_type(public));
2162 key_free(public);
2163 free(filename);
2164 continue;
2165 }
2166 certificate_files[n_certs] = filename;
2167 certificates[n_certs] = public;
2168 ++n_certs;
2169 }
2170
Damien Miller0a80ca12010-02-27 07:55:05 +11002171 options.num_identity_files = n_ids;
2172 memcpy(options.identity_files, identity_files, sizeof(identity_files));
2173 memcpy(options.identity_keys, identity_keys, sizeof(identity_keys));
2174
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002175 options.num_certificate_files = n_certs;
2176 memcpy(options.certificate_files,
2177 certificate_files, sizeof(certificate_files));
2178 memcpy(options.certificates, certificates, sizeof(certificates));
2179
Damien Miller1d2c4562014-02-04 11:18:20 +11002180 explicit_bzero(pwname, strlen(pwname));
Darren Tuckera627d422013-06-02 07:31:17 +10002181 free(pwname);
Damien Miller1d2c4562014-02-04 11:18:20 +11002182 explicit_bzero(pwdir, strlen(pwdir));
Darren Tuckera627d422013-06-02 07:31:17 +10002183 free(pwdir);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002184}
Damien Miller857b02e2010-09-24 22:02:56 +10002185
2186static void
2187main_sigchld_handler(int sig)
2188{
2189 int save_errno = errno;
2190 pid_t pid;
2191 int status;
2192
2193 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
2194 (pid < 0 && errno == EINTR))
2195 ;
2196
2197 signal(sig, main_sigchld_handler);
2198 errno = save_errno;
2199}