blob: 1e222b384ffda30ea81ac635ea0acb9b81bf909c [file] [log] [blame]
djm@openbsd.org8fb15312017-03-08 12:07:47 +00001/* $OpenBSD: ssh.c,v 1.450 2017/03/08 12:07:47 djm Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * Ssh client program. This program can be used to log into a remote machine.
7 * The software supports strong authentication, encryption, and forwarding
8 * of X11, TCP/IP, and authentication connections.
9 *
Damien Millere4340be2000-09-16 13:29:08 +110010 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
15 *
16 * Copyright (c) 1999 Niels Provos. All rights reserved.
Darren Tucker0a118da2003-10-15 15:54:32 +100017 * Copyright (c) 2000, 2001, 2002, 2003 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110018 *
19 * Modified to work with SSL by Niels Provos <provos@citi.umich.edu>
20 * in Canada (German citizen).
21 *
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 * 1. Redistributions of source code must retain the above copyright
26 * notice, this list of conditions and the following disclaimer.
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
29 * documentation and/or other materials provided with the distribution.
30 *
31 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
32 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
33 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
34 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
35 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
36 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
37 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
38 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
39 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
40 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110041 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100042
43#include "includes.h"
Damien Millercd4223c2006-03-15 11:22:47 +110044
Damien Millerf17883e2006-03-15 11:45:54 +110045#include <sys/types.h>
46#ifdef HAVE_SYS_STAT_H
47# include <sys/stat.h>
48#endif
Damien Millercd4223c2006-03-15 11:22:47 +110049#include <sys/resource.h>
Damien Miller17e91c02006-03-15 11:28:34 +110050#include <sys/ioctl.h>
Damien Millere3b60b52006-07-10 21:08:03 +100051#include <sys/socket.h>
Damien Miller857b02e2010-09-24 22:02:56 +100052#include <sys/wait.h>
Damien Miller03e20032006-03-15 11:16:59 +110053
Damien Millerc7b06362006-03-15 11:53:45 +110054#include <ctype.h>
Darren Tuckerba724052006-07-12 22:24:22 +100055#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100056#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100057#include <netdb.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110058#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110059#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110060#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100061#include <pwd.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110062#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100063#include <stdarg.h>
Damien Miller2d00e632006-07-24 13:53:19 +100064#include <stddef.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100065#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100066#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100067#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100068#include <unistd.h>
deraadt@openbsd.org087266e2015-01-20 23:14:00 +000069#include <limits.h>
djm@openbsd.org65c6c6b2016-07-17 04:20:16 +000070#include <locale.h>
Damien Millereba71ba2000-04-29 23:57:08 +100071
Darren Tucker46aa3e02006-09-02 15:32:40 +100072#include <netinet/in.h>
73#include <arpa/inet.h>
74
Damien Miller1f0311c2014-05-15 14:24:09 +100075#ifdef WITH_OPENSSL
Damien Millereba71ba2000-04-29 23:57:08 +100076#include <openssl/evp.h>
Damien Miller0bc1bd82000-11-13 22:57:25 +110077#include <openssl/err.h>
Damien Miller1f0311c2014-05-15 14:24:09 +100078#endif
Darren Tuckerbfaaf962008-02-28 19:13:52 +110079#include "openbsd-compat/openssl-compat.h"
Damien Millerb84886b2008-05-19 15:05:07 +100080#include "openbsd-compat/sys-queue.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100081
Damien Millerd7834352006-08-05 12:39:39 +100082#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100083#include "ssh.h"
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.org130f5df2016-09-12 23:31:27 +0000687 cp = sshkey_alg_list(0, 0, '\n');
Damien Miller5be9d9e2013-12-07 11:24:01 +1100688 else if (strcmp(optarg, "key-cert") == 0)
djm@openbsd.org130f5df2016-09-12 23:31:27 +0000689 cp = sshkey_alg_list(1, 0, '\n');
Damien Miller5be9d9e2013-12-07 11:24:01 +1100690 else if (strcmp(optarg, "key-plain") == 0)
djm@openbsd.org130f5df2016-09-12 23:31:27 +0000691 cp = sshkey_alg_list(0, 1, '\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,
Darren Tuckerd6173c02008-06-13 04:52:53 +10001010 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
Damien Millere272a5b2008-11-03 19:22:37 +11001011 SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001012
Damien Miller03d4d7e2013-04-23 15:21:06 +10001013 if (debug_flag)
Damien Miller1f0311c2014-05-15 14:24:09 +10001014 logit("%s, %s", SSH_RELEASE,
1015#ifdef WITH_OPENSSL
1016 SSLeay_version(SSLEAY_VERSION)
1017#else
1018 "without OpenSSL"
1019#endif
1020 );
Damien Miller03d4d7e2013-04-23 15:21:06 +10001021
Damien Miller13f97b22014-02-24 15:57:55 +11001022 /* Parse the configuration files */
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001023 process_config_files(host_arg, pw, 0);
Ben Lindstrom83f07d12001-10-03 17:22:29 +00001024
Damien Miller13f97b22014-02-24 15:57:55 +11001025 /* Hostname canonicalisation needs a few options filled. */
1026 fill_default_options_for_canonicalization(&options);
1027
1028 /* If the user has replaced the hostname then take it into use now */
1029 if (options.hostname != NULL) {
1030 /* NB. Please keep in sync with readconf.c:match_cfg_line() */
1031 cp = percent_expand(options.hostname,
1032 "h", host, (char *)NULL);
1033 free(host);
1034 host = cp;
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001035 free(options.hostname);
1036 options.hostname = xstrdup(host);
Damien Miller13f97b22014-02-24 15:57:55 +11001037 }
1038
1039 /* If canonicalization requested then try to apply it */
1040 lowercase(host);
1041 if (options.canonicalize_hostname != SSH_CANONICALISE_NO)
1042 addrs = resolve_canonicalize(&host, options.port);
1043
1044 /*
Damien Miller08b57c62014-02-27 10:17:13 +11001045 * If CanonicalizePermittedCNAMEs have been specified but
1046 * other canonicalization did not happen (by not being requested
1047 * or by failing with fallback) then the hostname may still be changed
1048 * as a result of CNAME following.
1049 *
1050 * Try to resolve the bare hostname name using the system resolver's
1051 * usual search rules and then apply the CNAME follow rules.
1052 *
1053 * Skip the lookup if a ProxyCommand is being used unless the user
1054 * has specifically requested canonicalisation for this case via
1055 * CanonicalizeHostname=always
Damien Miller13f97b22014-02-24 15:57:55 +11001056 */
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001057 direct = option_clear_or_none(options.proxy_command) &&
1058 options.jump_host == NULL;
1059 if (addrs == NULL && options.num_permitted_cnames != 0 && (direct ||
1060 options.canonicalize_hostname == SSH_CANONICALISE_ALWAYS)) {
Damien Miller19439e92014-07-02 15:28:40 +10001061 if ((addrs = resolve_host(host, options.port,
1062 option_clear_or_none(options.proxy_command),
1063 cname, sizeof(cname))) == NULL) {
1064 /* Don't fatal proxied host names not in the DNS */
1065 if (option_clear_or_none(options.proxy_command))
1066 cleanup_exit(255); /* logged in resolve_host */
1067 } else
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001068 check_follow_cname(direct, &host, cname);
Damien Miller13f97b22014-02-24 15:57:55 +11001069 }
1070
1071 /*
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001072 * If canonicalisation is enabled then re-parse the configuration
1073 * files as new stanzas may match.
Damien Miller13f97b22014-02-24 15:57:55 +11001074 */
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001075 if (options.canonicalize_hostname != 0) {
1076 debug("Re-reading configuration after hostname "
1077 "canonicalisation");
1078 free(options.hostname);
1079 options.hostname = xstrdup(host);
1080 process_config_files(host_arg, pw, 1);
1081 /*
1082 * Address resolution happens early with canonicalisation
1083 * enabled and the port number may have changed since, so
1084 * reset it in address list
1085 */
1086 if (addrs != NULL && options.port > 0)
1087 set_addrinfo_port(addrs, options.port);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +00001088 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001089
Damien Miller95def091999-11-25 00:26:21 +11001090 /* Fill configuration defaults. */
1091 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001092
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001093 /*
1094 * If ProxyJump option specified, then construct a ProxyCommand now.
1095 */
1096 if (options.jump_host != NULL) {
1097 char port_s[8];
1098
1099 /* Consistency check */
1100 if (options.proxy_command != NULL)
1101 fatal("inconsistent options: ProxyCommand+ProxyJump");
1102 /* Never use FD passing for ProxyJump */
1103 options.proxy_use_fdpass = 0;
1104 snprintf(port_s, sizeof(port_s), "%d", options.jump_port);
1105 xasprintf(&options.proxy_command,
djm@openbsd.org8fb15312017-03-08 12:07:47 +00001106 "ssh%s%s%s%s%s%s%s%s%s%.*s -W '[%%h]:%%p' %s",
djm@openbsd.orged877ef2016-07-15 00:24:30 +00001107 /* Optional "-l user" argument if jump_user set */
1108 options.jump_user == NULL ? "" : " -l ",
1109 options.jump_user == NULL ? "" : options.jump_user,
1110 /* Optional "-p port" argument if jump_port set */
1111 options.jump_port <= 0 ? "" : " -p ",
1112 options.jump_port <= 0 ? "" : port_s,
1113 /* Optional additional jump hosts ",..." */
1114 options.jump_extra == NULL ? "" : " -J ",
1115 options.jump_extra == NULL ? "" : options.jump_extra,
1116 /* Optional "-F" argumment if -F specified */
1117 config == NULL ? "" : " -F ",
1118 config == NULL ? "" : config,
1119 /* Optional "-v" arguments if -v set */
1120 debug_flag ? " -" : "",
1121 debug_flag, "vvv",
1122 /* Mandatory hostname */
1123 options.jump_host);
1124 debug("Setting implicit ProxyCommand from ProxyJump: %s",
1125 options.proxy_command);
1126 }
1127
Damien Miller13f97b22014-02-24 15:57:55 +11001128 if (options.port == 0)
1129 options.port = default_ssh_port();
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001130 channel_set_af(options.address_family);
1131
Damien Millere9fc72e2013-10-15 12:14:12 +11001132 /* Tidy and check options */
1133 if (options.host_key_alias != NULL)
1134 lowercase(options.host_key_alias);
1135 if (options.proxy_command != NULL &&
1136 strcmp(options.proxy_command, "-") == 0 &&
1137 options.proxy_use_fdpass)
1138 fatal("ProxyCommand=- and ProxyUseFDPass are incompatible");
djm@openbsd.org44732de2015-02-20 22:17:21 +00001139 if (options.control_persist &&
1140 options.update_hostkeys == SSH_UPDATE_HOSTKEYS_ASK) {
1141 debug("UpdateHostKeys=ask is incompatible with ControlPersist; "
1142 "disabling");
1143 options.update_hostkeys = 0;
1144 }
djm@openbsd.org88b6fcd2015-11-19 08:23:27 +00001145 if (options.connection_attempts <= 0)
1146 fatal("Invalid number of ConnectionAttempts");
Damien Miller0faf7472013-10-17 11:47:23 +11001147#ifndef HAVE_CYGWIN
1148 if (original_effective_uid != 0)
1149 options.use_privileged_port = 0;
1150#endif
Damien Millere9fc72e2013-10-15 12:14:12 +11001151
Damien Miller95def091999-11-25 00:26:21 +11001152 /* reinit */
Darren Tucker72efd742009-06-21 17:48:00 +10001153 log_init(argv0, options.log_level, SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001154
Damien Millerfff9f092012-07-06 13:45:01 +10001155 if (options.request_tty == REQUEST_TTY_YES ||
1156 options.request_tty == REQUEST_TTY_FORCE)
1157 tty_flag = 1;
1158
1159 /* Allocate a tty by default if no command specified. */
1160 if (buffer_len(&command) == 0)
1161 tty_flag = options.request_tty != REQUEST_TTY_NO;
1162
1163 /* Force no tty */
markus@openbsd.org8d057842016-09-30 09:19:13 +00001164 if (options.request_tty == REQUEST_TTY_NO ||
1165 (muxclient_command && muxclient_command != SSHMUX_COMMAND_PROXY))
Damien Millerfff9f092012-07-06 13:45:01 +10001166 tty_flag = 0;
1167 /* Do not allocate a tty if stdin is not a tty. */
1168 if ((!isatty(fileno(stdin)) || stdin_null_flag) &&
1169 options.request_tty != REQUEST_TTY_FORCE) {
1170 if (tty_flag)
1171 logit("Pseudo-terminal will not be allocated because "
1172 "stdin is not a terminal.");
1173 tty_flag = 0;
1174 }
1175
Damien Miller60bc5172001-03-19 09:38:15 +11001176 seed_rng();
1177
Damien Miller95def091999-11-25 00:26:21 +11001178 if (options.user == NULL)
1179 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001180
Damien Millerdfc85fa2011-05-15 08:44:02 +10001181 if (gethostname(thishost, sizeof(thishost)) == -1)
1182 fatal("gethostname: %s", strerror(errno));
1183 strlcpy(shorthost, thishost, sizeof(shorthost));
1184 shorthost[strcspn(thishost, ".")] = '\0';
1185 snprintf(portstr, sizeof(portstr), "%d", options.port);
djm@openbsd.org674b3b62015-09-11 03:47:28 +00001186 snprintf(uidstr, sizeof(uidstr), "%d", pw->pw_uid);
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001187
Damien Miller9c386432014-07-03 21:27:46 +10001188 if ((md = ssh_digest_start(SSH_DIGEST_SHA1)) == NULL ||
1189 ssh_digest_update(md, thishost, strlen(thishost)) < 0 ||
1190 ssh_digest_update(md, host, strlen(host)) < 0 ||
1191 ssh_digest_update(md, portstr, strlen(portstr)) < 0 ||
1192 ssh_digest_update(md, options.user, strlen(options.user)) < 0 ||
1193 ssh_digest_final(md, conn_hash, sizeof(conn_hash)) < 0)
1194 fatal("%s: mux digest failed", __func__);
1195 ssh_digest_free(md);
1196 conn_hash_hex = tohex(conn_hash, ssh_digest_bytes(SSH_DIGEST_SHA1));
1197
Damien Millerdfc85fa2011-05-15 08:44:02 +10001198 if (options.local_command != NULL) {
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001199 debug3("expanding LocalCommand: %s", options.local_command);
1200 cp = options.local_command;
Damien Miller9c386432014-07-03 21:27:46 +10001201 options.local_command = percent_expand(cp,
1202 "C", conn_hash_hex,
1203 "L", shorthost,
1204 "d", pw->pw_dir,
1205 "h", host,
1206 "l", thishost,
1207 "n", host_arg,
1208 "p", portstr,
1209 "r", options.user,
1210 "u", pw->pw_name,
Damien Millerdfc85fa2011-05-15 08:44:02 +10001211 (char *)NULL);
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001212 debug3("expanded LocalCommand: %s", options.local_command);
Darren Tuckera627d422013-06-02 07:31:17 +10001213 free(cp);
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001214 }
1215
Damien Miller0e220db2004-06-15 10:34:08 +10001216 if (options.control_path != NULL) {
Damien Miller6476cad2005-06-16 13:18:34 +10001217 cp = tilde_expand_filename(options.control_path,
1218 original_real_uid);
Darren Tuckera627d422013-06-02 07:31:17 +10001219 free(options.control_path);
Damien Miller9c386432014-07-03 21:27:46 +10001220 options.control_path = percent_expand(cp,
1221 "C", conn_hash_hex,
1222 "L", shorthost,
1223 "h", host,
1224 "l", thishost,
1225 "n", host_arg,
1226 "p", portstr,
1227 "r", options.user,
1228 "u", pw->pw_name,
djm@openbsd.org674b3b62015-09-11 03:47:28 +00001229 "i", uidstr,
Damien Millerdfc85fa2011-05-15 08:44:02 +10001230 (char *)NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10001231 free(cp);
Damien Miller0e220db2004-06-15 10:34:08 +10001232 }
Damien Miller9c386432014-07-03 21:27:46 +10001233 free(conn_hash_hex);
1234
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001235 if (config_test) {
1236 dump_client_config(&options, host);
1237 exit(0);
1238 }
1239
Damien Millerb1cbfa22008-05-19 16:00:08 +10001240 if (muxclient_command != 0 && options.control_path == NULL)
Darren Tucker0814d312005-06-01 23:08:51 +10001241 fatal("No ControlPath specified for \"-O\" command");
markus@openbsd.org8d057842016-09-30 09:19:13 +00001242 if (options.control_path != NULL) {
1243 int sock;
1244 if ((sock = muxclient(options.control_path)) >= 0) {
1245 packet_set_connection(sock, sock);
1246 ssh = active_state; /* XXX */
1247 enable_compat20(); /* XXX */
1248 packet_set_mux();
1249 goto skip_connect;
1250 }
1251 }
Damien Miller0e220db2004-06-15 10:34:08 +10001252
Damien Miller08b57c62014-02-27 10:17:13 +11001253 /*
1254 * If hostname canonicalisation was not enabled, then we may not
1255 * have yet resolved the hostname. Do so now.
1256 */
1257 if (addrs == NULL && options.proxy_command == NULL) {
djm@openbsd.orga85768a2015-09-04 04:56:09 +00001258 debug2("resolving \"%s\" port %d", host, options.port);
Damien Miller08b57c62014-02-27 10:17:13 +11001259 if ((addrs = resolve_host(host, options.port, 1,
1260 cname, sizeof(cname))) == NULL)
1261 cleanup_exit(255); /* resolve_host logs the error */
1262 }
1263
Damien Miller67bd0622007-09-17 12:06:57 +10001264 timeout_ms = options.connection_timeout * 1000;
1265
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001266 /* Open a connection to the remote host. */
Damien Miller0faf7472013-10-17 11:47:23 +11001267 if (ssh_connect(host, addrs, &hostaddr, options.port,
1268 options.address_family, options.connection_attempts,
1269 &timeout_ms, options.tcp_keep_alive,
1270 options.use_privileged_port) != 0)
1271 exit(255);
1272
Damien Miller28631ce2013-10-26 10:07:56 +11001273 if (addrs != NULL)
1274 freeaddrinfo(addrs);
1275
Damien Miller0faf7472013-10-17 11:47:23 +11001276 packet_set_timeout(options.server_alive_interval,
1277 options.server_alive_count_max);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001278
djm@openbsd.org95767262016-03-07 19:02:43 +00001279 ssh = active_state; /* XXX */
1280
Damien Miller67bd0622007-09-17 12:06:57 +10001281 if (timeout_ms > 0)
1282 debug3("timeout: %d ms remain after connect", timeout_ms);
1283
Damien Miller5428f641999-11-25 11:54:57 +11001284 /*
1285 * If we successfully made the connection, load the host private key
1286 * in case we will need it later for combined rsa-rhosts
1287 * authentication. This must be done before releasing extra
1288 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +00001289 * If we cannot access the private keys, load the public keys
1290 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +11001291 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001292 sensitive_data.nkeys = 0;
1293 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001294 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +00001295 if (options.rhosts_rsa_authentication ||
1296 options.hostbased_authentication) {
Damien Miller0fa47cf2013-12-29 17:53:39 +11001297 sensitive_data.nkeys = 9;
Damien Millerddd63ab2006-03-31 23:10:51 +11001298 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001299 sizeof(Key));
Damien Miller6af914a2010-09-10 11:39:26 +10001300 for (i = 0; i < sensitive_data.nkeys; i++)
1301 sensitive_data.keys[i] = NULL;
Ben Lindstromf9c48842002-06-11 16:37:51 +00001302
1303 PRIV_START;
djm@openbsd.org6091c362015-12-11 03:20:09 +00001304#if WITH_SSH1
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001305 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Darren Tucker232b76f2006-05-06 17:41:51 +10001306 _PATH_HOST_KEY_FILE, "", NULL, NULL);
djm@openbsd.org6091c362015-12-11 03:20:09 +00001307#endif
Damien Miller6af914a2010-09-10 11:39:26 +10001308#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001309 sensitive_data.keys[1] = key_load_private_cert(KEY_ECDSA,
Damien Millereb8b60e2010-08-31 22:41:14 +10001310 _PATH_HOST_ECDSA_KEY_FILE, "", NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001311#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001312 sensitive_data.keys[2] = key_load_private_cert(KEY_ED25519,
1313 _PATH_HOST_ED25519_KEY_FILE, "", NULL);
Damien Millereb8b60e2010-08-31 22:41:14 +10001314 sensitive_data.keys[3] = key_load_private_cert(KEY_RSA,
Damien Millerc1583312010-08-05 13:04:50 +10001315 _PATH_HOST_RSA_KEY_FILE, "", NULL);
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001316 sensitive_data.keys[4] = key_load_private_cert(KEY_DSA,
1317 _PATH_HOST_DSA_KEY_FILE, "", NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001318#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001319 sensitive_data.keys[5] = key_load_private_type(KEY_ECDSA,
Damien Millereb8b60e2010-08-31 22:41:14 +10001320 _PATH_HOST_ECDSA_KEY_FILE, "", NULL, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001321#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001322 sensitive_data.keys[6] = key_load_private_type(KEY_ED25519,
1323 _PATH_HOST_ED25519_KEY_FILE, "", NULL, NULL);
Damien Miller0fa47cf2013-12-29 17:53:39 +11001324 sensitive_data.keys[7] = key_load_private_type(KEY_RSA,
Darren Tucker232b76f2006-05-06 17:41:51 +10001325 _PATH_HOST_RSA_KEY_FILE, "", NULL, NULL);
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001326 sensitive_data.keys[8] = key_load_private_type(KEY_DSA,
1327 _PATH_HOST_DSA_KEY_FILE, "", NULL, NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +00001328 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001329
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +00001330 if (options.hostbased_authentication == 1 &&
1331 sensitive_data.keys[0] == NULL &&
Damien Millereb8b60e2010-08-31 22:41:14 +10001332 sensitive_data.keys[5] == NULL &&
Damien Miller5be9d9e2013-12-07 11:24:01 +11001333 sensitive_data.keys[6] == NULL &&
Damien Miller0fa47cf2013-12-29 17:53:39 +11001334 sensitive_data.keys[7] == NULL &&
1335 sensitive_data.keys[8] == NULL) {
Damien Miller6af914a2010-09-10 11:39:26 +10001336#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001337 sensitive_data.keys[1] = key_load_cert(
Damien Millereb8b60e2010-08-31 22:41:14 +10001338 _PATH_HOST_ECDSA_KEY_FILE);
Damien Miller6af914a2010-09-10 11:39:26 +10001339#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001340 sensitive_data.keys[2] = key_load_cert(
1341 _PATH_HOST_ED25519_KEY_FILE);
Damien Millereb8b60e2010-08-31 22:41:14 +10001342 sensitive_data.keys[3] = key_load_cert(
Damien Millerc1583312010-08-05 13:04:50 +10001343 _PATH_HOST_RSA_KEY_FILE);
Damien Miller0fa47cf2013-12-29 17:53:39 +11001344 sensitive_data.keys[4] = key_load_cert(
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001345 _PATH_HOST_DSA_KEY_FILE);
Damien Miller6af914a2010-09-10 11:39:26 +10001346#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001347 sensitive_data.keys[5] = key_load_public(
Damien Millereb8b60e2010-08-31 22:41:14 +10001348 _PATH_HOST_ECDSA_KEY_FILE, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001349#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001350 sensitive_data.keys[6] = key_load_public(
1351 _PATH_HOST_ED25519_KEY_FILE, NULL);
Damien Miller5be9d9e2013-12-07 11:24:01 +11001352 sensitive_data.keys[7] = key_load_public(
Damien Miller0fa47cf2013-12-29 17:53:39 +11001353 _PATH_HOST_RSA_KEY_FILE, NULL);
1354 sensitive_data.keys[8] = key_load_public(
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001355 _PATH_HOST_DSA_KEY_FILE, NULL);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001356 sensitive_data.external_keysign = 1;
1357 }
Damien Miller95def091999-11-25 00:26:21 +11001358 }
Damien Miller5428f641999-11-25 11:54:57 +11001359 /*
1360 * Get rid of any extra privileges that we may have. We will no
1361 * longer need them. Also, extra privileges could make it very hard
1362 * to read identity files and other non-world-readable files from the
1363 * user's home directory if it happens to be on a NFS volume where
1364 * root is mapped to nobody.
1365 */
Darren Tucker25f60a72004-08-15 17:23:34 +10001366 if (original_effective_uid == 0) {
1367 PRIV_START;
1368 permanently_set_uid(pw);
1369 }
Damien Miller95def091999-11-25 00:26:21 +11001370
Damien Miller5428f641999-11-25 11:54:57 +11001371 /*
1372 * Now that we are back to our own permissions, create ~/.ssh
Damien Miller788f2122005-11-05 15:14:59 +11001373 * directory if it doesn't already exist.
Damien Miller5428f641999-11-25 11:54:57 +11001374 */
Darren Tucker45c66d72011-11-04 10:50:40 +11001375 if (config == NULL) {
1376 r = snprintf(buf, sizeof buf, "%s%s%s", pw->pw_dir,
1377 strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
1378 if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) < 0) {
Darren Tucker8ccb7392010-09-10 12:28:24 +10001379#ifdef WITH_SELINUX
Darren Tucker45c66d72011-11-04 10:50:40 +11001380 ssh_selinux_setfscreatecon(buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001381#endif
Darren Tucker45c66d72011-11-04 10:50:40 +11001382 if (mkdir(buf, 0700) < 0)
1383 error("Could not create directory '%.200s'.",
1384 buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001385#ifdef WITH_SELINUX
Darren Tucker45c66d72011-11-04 10:50:40 +11001386 ssh_selinux_setfscreatecon(NULL);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001387#endif
Darren Tucker45c66d72011-11-04 10:50:40 +11001388 }
Darren Tucker8ccb7392010-09-10 12:28:24 +10001389 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001390 /* load options.identity_files */
1391 load_public_identity_files();
1392
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00001393 /* optionally set the SSH_AUTHSOCKET_ENV_NAME varibale */
markus@openbsd.org1a75d142016-05-04 14:29:58 +00001394 if (options.identity_agent &&
1395 strcmp(options.identity_agent, SSH_AUTHSOCKET_ENV_NAME) != 0) {
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00001396 if (strcmp(options.identity_agent, "none") == 0) {
1397 unsetenv(SSH_AUTHSOCKET_ENV_NAME);
1398 } else {
1399 p = tilde_expand_filename(options.identity_agent,
1400 original_real_uid);
1401 cp = percent_expand(p, "d", pw->pw_dir,
1402 "u", pw->pw_name, "l", thishost, "h", host,
1403 "r", options.user, (char *)NULL);
1404 setenv(SSH_AUTHSOCKET_ENV_NAME, cp, 1);
1405 free(cp);
1406 free(p);
1407 }
1408 }
1409
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001410 /* Expand ~ in known host file names. */
Damien Miller295ee632011-05-29 21:42:31 +10001411 tilde_expand_paths(options.system_hostfiles,
1412 options.num_system_hostfiles);
1413 tilde_expand_paths(options.user_hostfiles, options.num_user_hostfiles);
Damien Miller95def091999-11-25 00:26:21 +11001414
Damien Miller07cd5892001-11-12 10:52:03 +11001415 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
Damien Miller857b02e2010-09-24 22:02:56 +10001416 signal(SIGCHLD, main_sigchld_handler);
Damien Miller07cd5892001-11-12 10:52:03 +11001417
Darren Tuckerd6173c02008-06-13 04:52:53 +10001418 /* Log into the remote system. Never returns if the login fails. */
Damien Miller67bd0622007-09-17 12:06:57 +10001419 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr,
Damien Millerd925dcd2010-12-01 12:21:51 +11001420 options.port, pw, timeout_ms);
Damien Miller95def091999-11-25 00:26:21 +11001421
Damien Miller383ffe62010-06-26 10:02:03 +10001422 if (packet_connection_is_on_socket()) {
1423 verbose("Authenticated to %s ([%s]:%d).", host,
djm@openbsd.org95767262016-03-07 19:02:43 +00001424 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
Damien Miller383ffe62010-06-26 10:02:03 +10001425 } else {
1426 verbose("Authenticated to %s (via proxy).", host);
1427 }
1428
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001429 /* We no longer need the private host keys. Clear them now. */
1430 if (sensitive_data.nkeys != 0) {
1431 for (i = 0; i < sensitive_data.nkeys; i++) {
1432 if (sensitive_data.keys[i] != NULL) {
1433 /* Destroys contents safely */
1434 debug3("clear hostkey %d", i);
1435 key_free(sensitive_data.keys[i]);
1436 sensitive_data.keys[i] = NULL;
1437 }
1438 }
Darren Tuckera627d422013-06-02 07:31:17 +10001439 free(sensitive_data.keys);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001440 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +00001441 for (i = 0; i < options.num_identity_files; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +10001442 free(options.identity_files[i]);
1443 options.identity_files[i] = NULL;
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +00001444 if (options.identity_keys[i]) {
1445 key_free(options.identity_keys[i]);
1446 options.identity_keys[i] = NULL;
1447 }
1448 }
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001449 for (i = 0; i < options.num_certificate_files; i++) {
1450 free(options.certificate_files[i]);
1451 options.certificate_files[i] = NULL;
1452 }
Damien Miller95def091999-11-25 00:26:21 +11001453
markus@openbsd.org8d057842016-09-30 09:19:13 +00001454 skip_connect:
Damien Miller1383bd82000-04-06 12:32:37 +10001455 exit_status = compat20 ? ssh_session2() : ssh_session();
1456 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +10001457
Damien Millerb1cbfa22008-05-19 16:00:08 +10001458 if (options.control_path != NULL && muxserver_sock != -1)
Damien Miller0e220db2004-06-15 10:34:08 +10001459 unlink(options.control_path);
1460
Damien Millera41ccca2010-10-07 22:07:32 +11001461 /* Kill ProxyCommand if it is running. */
1462 ssh_kill_proxy_command();
Damien Miller8c4e18a2002-09-19 12:05:02 +10001463
Damien Miller1383bd82000-04-06 12:32:37 +10001464 return exit_status;
1465}
1466
Damien Millere11e1ea2010-08-03 16:04:46 +10001467static void
1468control_persist_detach(void)
1469{
1470 pid_t pid;
djm@openbsd.orgd2d6bf82016-04-29 08:07:53 +00001471 int devnull, keep_stderr;
Damien Millere11e1ea2010-08-03 16:04:46 +10001472
1473 debug("%s: backgrounding master process", __func__);
1474
1475 /*
1476 * master (current process) into the background, and make the
1477 * foreground process a client of the backgrounded master.
1478 */
1479 switch ((pid = fork())) {
1480 case -1:
1481 fatal("%s: fork: %s", __func__, strerror(errno));
1482 case 0:
1483 /* Child: master process continues mainloop */
1484 break;
1485 default:
1486 /* Parent: set up mux slave to connect to backgrounded master */
1487 debug2("%s: background process is %ld", __func__, (long)pid);
1488 stdin_null_flag = ostdin_null_flag;
Damien Miller21771e22011-05-15 08:45:50 +10001489 options.request_tty = orequest_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +10001490 tty_flag = otty_flag;
1491 close(muxserver_sock);
1492 muxserver_sock = -1;
Damien Miller5929c522010-09-10 11:17:02 +10001493 options.control_master = SSHCTL_MASTER_NO;
Damien Millere11e1ea2010-08-03 16:04:46 +10001494 muxclient(options.control_path);
1495 /* muxclient() doesn't return on success. */
1496 fatal("Failed to connect to new control master");
1497 }
Damien Miller00d9ae22010-08-17 01:59:31 +10001498 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
1499 error("%s: open(\"/dev/null\"): %s", __func__,
1500 strerror(errno));
1501 } else {
djm@openbsd.orgd2d6bf82016-04-29 08:07:53 +00001502 keep_stderr = log_is_on_stderr() && debug_flag;
Damien Miller00d9ae22010-08-17 01:59:31 +10001503 if (dup2(devnull, STDIN_FILENO) == -1 ||
djm@openbsd.orgd2d6bf82016-04-29 08:07:53 +00001504 dup2(devnull, STDOUT_FILENO) == -1 ||
1505 (!keep_stderr && dup2(devnull, STDERR_FILENO) == -1))
Damien Miller00d9ae22010-08-17 01:59:31 +10001506 error("%s: dup2: %s", __func__, strerror(errno));
1507 if (devnull > STDERR_FILENO)
1508 close(devnull);
1509 }
Damien Miller98e27dc2013-07-25 11:55:52 +10001510 daemon(1, 1);
Damien Millerea2c1a42011-06-03 12:10:22 +10001511 setproctitle("%s [mux]", options.control_path);
Damien Millere11e1ea2010-08-03 16:04:46 +10001512}
1513
1514/* Do fork() after authentication. Used by "ssh -f" */
1515static void
1516fork_postauth(void)
1517{
1518 if (need_controlpersist_detach)
1519 control_persist_detach();
1520 debug("forking to background");
1521 fork_after_authentication_flag = 0;
1522 if (daemon(1, 1) < 0)
1523 fatal("daemon() failed: %.200s", strerror(errno));
1524}
1525
Darren Tucker9f407c42008-06-13 04:50:27 +10001526/* Callback for remote forward global requests */
1527static void
1528ssh_confirm_remote_forward(int type, u_int32_t seq, void *ctxt)
1529{
Damien Miller7acefbb2014-07-18 14:11:24 +10001530 struct Forward *rfwd = (struct Forward *)ctxt;
Darren Tucker9f407c42008-06-13 04:50:27 +10001531
Damien Miller4bf648f2009-02-14 16:28:21 +11001532 /* XXX verbose() on failure? */
Damien Miller4b3ed642014-07-02 15:29:40 +10001533 debug("remote forward %s for: listen %s%s%d, connect %s:%d",
Darren Tucker9f407c42008-06-13 04:50:27 +10001534 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
Damien Miller7acefbb2014-07-18 14:11:24 +10001535 rfwd->listen_path ? rfwd->listen_path :
1536 rfwd->listen_host ? rfwd->listen_host : "",
1537 (rfwd->listen_path || rfwd->listen_host) ? ":" : "",
1538 rfwd->listen_port, rfwd->connect_path ? rfwd->connect_path :
1539 rfwd->connect_host, rfwd->connect_port);
1540 if (rfwd->listen_path == NULL && rfwd->listen_port == 0) {
Darren Tucker68afb8c2011-10-02 18:59:03 +11001541 if (type == SSH2_MSG_REQUEST_SUCCESS) {
1542 rfwd->allocated_port = packet_get_int();
1543 logit("Allocated port %u for remote forward to %s:%d",
1544 rfwd->allocated_port,
1545 rfwd->connect_host, rfwd->connect_port);
1546 channel_update_permitted_opens(rfwd->handle,
1547 rfwd->allocated_port);
1548 } else {
1549 channel_update_permitted_opens(rfwd->handle, -1);
1550 }
Damien Miller4bf648f2009-02-14 16:28:21 +11001551 }
1552
Darren Tucker9f407c42008-06-13 04:50:27 +10001553 if (type == SSH2_MSG_REQUEST_FAILURE) {
Damien Miller7acefbb2014-07-18 14:11:24 +10001554 if (options.exit_on_forward_failure) {
1555 if (rfwd->listen_path != NULL)
1556 fatal("Error: remote port forwarding failed "
1557 "for listen path %s", rfwd->listen_path);
1558 else
1559 fatal("Error: remote port forwarding failed "
1560 "for listen port %d", rfwd->listen_port);
1561 } else {
1562 if (rfwd->listen_path != NULL)
1563 logit("Warning: remote port forwarding failed "
1564 "for listen path %s", rfwd->listen_path);
1565 else
1566 logit("Warning: remote port forwarding failed "
1567 "for listen port %d", rfwd->listen_port);
1568 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001569 }
Darren Tucker9a2a6092008-07-04 12:53:50 +10001570 if (++remote_forward_confirms_received == options.num_remote_forwards) {
Darren Tucker9f407c42008-06-13 04:50:27 +10001571 debug("All remote forwarding requests processed");
Damien Millere11e1ea2010-08-03 16:04:46 +10001572 if (fork_after_authentication_flag)
1573 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001574 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001575}
1576
Ben Lindstrombba81212001-06-25 05:01:22 +00001577static void
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001578client_cleanup_stdio_fwd(int id, void *arg)
1579{
1580 debug("stdio forwarding: done");
1581 cleanup_exit(0);
1582}
1583
Darren Tucker2d6665d2011-11-04 10:54:22 +11001584static void
Damien Miller357610d2014-07-18 15:04:10 +10001585ssh_stdio_confirm(int id, int success, void *arg)
1586{
1587 if (!success)
1588 fatal("stdio forwarding failed");
1589}
1590
1591static void
Darren Tucker2d6665d2011-11-04 10:54:22 +11001592ssh_init_stdio_forwarding(void)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001593{
1594 Channel *c;
Damien Millere1537f92010-01-26 13:26:22 +11001595 int in, out;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001596
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +00001597 if (options.stdio_forward_host == NULL)
Darren Tucker2d6665d2011-11-04 10:54:22 +11001598 return;
Damien Miller386feab2013-10-15 12:14:49 +11001599 if (!compat20)
Darren Tucker2d6665d2011-11-04 10:54:22 +11001600 fatal("stdio forwarding require Protocol 2");
Damien Millere1537f92010-01-26 13:26:22 +11001601
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +00001602 debug3("%s: %s:%d", __func__, options.stdio_forward_host,
1603 options.stdio_forward_port);
Darren Tucker2d6665d2011-11-04 10:54:22 +11001604
1605 if ((in = dup(STDIN_FILENO)) < 0 ||
1606 (out = dup(STDOUT_FILENO)) < 0)
Damien Millere1537f92010-01-26 13:26:22 +11001607 fatal("channel_connect_stdio_fwd: dup() in/out failed");
dtucker@openbsd.org8543ff32016-06-03 03:14:41 +00001608 if ((c = channel_connect_stdio_fwd(options.stdio_forward_host,
1609 options.stdio_forward_port, in, out)) == NULL)
Darren Tucker2d6665d2011-11-04 10:54:22 +11001610 fatal("%s: channel_connect_stdio_fwd failed", __func__);
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001611 channel_register_cleanup(c->self, client_cleanup_stdio_fwd, 0);
Damien Miller357610d2014-07-18 15:04:10 +10001612 channel_register_open_confirm(c->self, ssh_stdio_confirm, NULL);
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001613}
1614
1615static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001616ssh_init_forwarding(void)
1617{
Kevin Steves12057502001-02-05 14:54:34 +00001618 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001619 int i;
Kevin Steves12057502001-02-05 14:54:34 +00001620
Damien Miller0bc1bd82000-11-13 22:57:25 +11001621 /* Initiate local TCP/IP port forwardings. */
1622 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001623 debug("Local connections to %.200s:%d forwarded to remote "
1624 "address %.200s:%d",
Damien Miller7acefbb2014-07-18 14:11:24 +10001625 (options.local_forwards[i].listen_path != NULL) ?
1626 options.local_forwards[i].listen_path :
Darren Tucker47eede72005-03-14 23:08:12 +11001627 (options.local_forwards[i].listen_host == NULL) ?
Damien Miller7acefbb2014-07-18 14:11:24 +10001628 (options.fwd_opts.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001629 options.local_forwards[i].listen_host,
1630 options.local_forwards[i].listen_port,
Damien Miller7acefbb2014-07-18 14:11:24 +10001631 (options.local_forwards[i].connect_path != NULL) ?
1632 options.local_forwards[i].connect_path :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001633 options.local_forwards[i].connect_host,
1634 options.local_forwards[i].connect_port);
Damien Millerb16461c2002-01-22 23:29:22 +11001635 success += channel_setup_local_fwd_listener(
Damien Miller7acefbb2014-07-18 14:11:24 +10001636 &options.local_forwards[i], &options.fwd_opts);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001637 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10001638 if (i > 0 && success != i && options.exit_on_forward_failure)
1639 fatal("Could not request local forwarding.");
Kevin Steves12057502001-02-05 14:54:34 +00001640 if (i > 0 && success == 0)
1641 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001642
1643 /* Initiate remote TCP/IP port forwardings. */
1644 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001645 debug("Remote connections from %.200s:%d forwarded to "
1646 "local address %.200s:%d",
Damien Miller7acefbb2014-07-18 14:11:24 +10001647 (options.remote_forwards[i].listen_path != NULL) ?
1648 options.remote_forwards[i].listen_path :
Damien Miller46d38de2005-07-17 17:02:09 +10001649 (options.remote_forwards[i].listen_host == NULL) ?
Damien Milleraa3bb102005-11-05 15:12:59 +11001650 "LOCALHOST" : options.remote_forwards[i].listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +11001651 options.remote_forwards[i].listen_port,
Damien Miller7acefbb2014-07-18 14:11:24 +10001652 (options.remote_forwards[i].connect_path != NULL) ?
1653 options.remote_forwards[i].connect_path :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001654 options.remote_forwards[i].connect_host,
1655 options.remote_forwards[i].connect_port);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001656 options.remote_forwards[i].handle =
1657 channel_request_remote_forwarding(
Damien Miller7acefbb2014-07-18 14:11:24 +10001658 &options.remote_forwards[i]);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001659 if (options.remote_forwards[i].handle < 0) {
Darren Tuckere7d4b192006-07-12 22:17:10 +10001660 if (options.exit_on_forward_failure)
1661 fatal("Could not request remote forwarding.");
1662 else
1663 logit("Warning: Could not request remote "
1664 "forwarding.");
Darren Tucker68afb8c2011-10-02 18:59:03 +11001665 } else {
1666 client_register_global_confirm(ssh_confirm_remote_forward,
1667 &options.remote_forwards[i]);
Darren Tuckere7d4b192006-07-12 22:17:10 +10001668 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001669 }
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001670
1671 /* Initiate tunnel forwarding. */
1672 if (options.tun_open != SSH_TUNMODE_NO) {
1673 if (client_request_tun_fwd(options.tun_open,
1674 options.tun_local, options.tun_remote) == -1) {
1675 if (options.exit_on_forward_failure)
1676 fatal("Could not request tunnel forwarding.");
1677 else
1678 error("Could not request tunnel forwarding.");
1679 }
1680 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001681}
1682
Ben Lindstrombba81212001-06-25 05:01:22 +00001683static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001684check_agent_present(void)
1685{
djm@openbsd.org141efe42015-01-14 20:05:27 +00001686 int r;
1687
Damien Miller0bc1bd82000-11-13 22:57:25 +11001688 if (options.forward_agent) {
Damien Miller788f2122005-11-05 15:14:59 +11001689 /* Clear agent forwarding if we don't have an agent. */
djm@openbsd.org141efe42015-01-14 20:05:27 +00001690 if ((r = ssh_get_authentication_socket(NULL)) != 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001691 options.forward_agent = 0;
djm@openbsd.org141efe42015-01-14 20:05:27 +00001692 if (r != SSH_ERR_AGENT_NOT_PRESENT)
1693 debug("ssh_get_authentication_socket: %s",
1694 ssh_err(r));
1695 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001696 }
1697}
1698
Ben Lindstrombba81212001-06-25 05:01:22 +00001699static int
Damien Miller1383bd82000-04-06 12:32:37 +10001700ssh_session(void)
1701{
1702 int type;
Damien Miller1383bd82000-04-06 12:32:37 +10001703 int interactive = 0;
1704 int have_tty = 0;
1705 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +10001706 char *cp;
Damien Miller17e7ed02005-06-17 12:54:33 +10001707 const char *display;
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001708 char *proto = NULL, *data = NULL;
Damien Miller1383bd82000-04-06 12:32:37 +10001709
Damien Miller95def091999-11-25 00:26:21 +11001710 /* Enable compression if requested. */
1711 if (options.compression) {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001712 debug("Requesting compression at level %d.",
1713 options.compression_level);
Damien Miller95def091999-11-25 00:26:21 +11001714
Darren Tuckerd6173c02008-06-13 04:52:53 +10001715 if (options.compression_level < 1 ||
1716 options.compression_level > 9)
1717 fatal("Compression level must be from 1 (fast) to "
1718 "9 (slow, best).");
Damien Miller95def091999-11-25 00:26:21 +11001719
1720 /* Send the request. */
1721 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
1722 packet_put_int(options.compression_level);
1723 packet_send();
1724 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +11001725 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001726 if (type == SSH_SMSG_SUCCESS)
1727 packet_start_compression(options.compression_level);
1728 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +10001729 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +11001730 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001731 packet_disconnect("Protocol error waiting for "
1732 "compression response.");
Damien Miller95def091999-11-25 00:26:21 +11001733 }
1734 /* Allocate a pseudo tty if appropriate. */
1735 if (tty_flag) {
1736 debug("Requesting pty.");
1737
1738 /* Start the packet. */
1739 packet_start(SSH_CMSG_REQUEST_PTY);
1740
1741 /* Store TERM in the packet. There is no limit on the
1742 length of the string. */
1743 cp = getenv("TERM");
1744 if (!cp)
1745 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +00001746 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +11001747
1748 /* Store window size in the packet. */
1749 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1750 memset(&ws, 0, sizeof(ws));
Damien Miller71a73672006-03-26 14:04:36 +11001751 packet_put_int((u_int)ws.ws_row);
1752 packet_put_int((u_int)ws.ws_col);
1753 packet_put_int((u_int)ws.ws_xpixel);
1754 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller95def091999-11-25 00:26:21 +11001755
1756 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001757 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +11001758
1759 /* Send the packet, and wait for it to leave. */
1760 packet_send();
1761 packet_write_wait();
1762
1763 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001764 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +10001765 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001766 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001767 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +10001768 } else if (type == SSH_SMSG_FAILURE)
Darren Tuckerd6173c02008-06-13 04:52:53 +10001769 logit("Warning: Remote host failed or refused to "
1770 "allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +11001771 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001772 packet_disconnect("Protocol error waiting for pty "
1773 "request response.");
Damien Miller95def091999-11-25 00:26:21 +11001774 }
1775 /* Request X11 forwarding if enabled and DISPLAY is set. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001776 display = getenv("DISPLAY");
djm@openbsd.orga58be332015-04-17 13:16:48 +00001777 if (display == NULL && options.forward_x11)
1778 debug("X11 forwarding requested but DISPLAY not set");
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001779 if (options.forward_x11 && client_x11_get_proto(display,
1780 options.xauth_location, options.forward_x11_trusted,
1781 options.forward_x11_timeout, &proto, &data) == 0) {
Damien Millerbd483e72000-04-30 10:00:53 +10001782 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001783 debug("Requesting X11 forwarding with authentication "
1784 "spoofing.");
Damien Miller6d7b4372011-06-23 08:31:57 +10001785 x11_request_forwarding_with_spoofing(0, display, proto,
1786 data, 0);
Damien Miller95def091999-11-25 00:26:21 +11001787 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001788 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001789 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001790 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001791 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +10001792 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +10001793 } else {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001794 packet_disconnect("Protocol error waiting for X11 "
1795 "forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +10001796 }
Damien Miller95def091999-11-25 00:26:21 +11001797 }
1798 /* Tell the packet module whether this is an interactive session. */
Damien Miller0dac6fb2010-11-20 15:19:38 +11001799 packet_set_interactive(interactive,
1800 options.ip_qos_interactive, options.ip_qos_bulk);
Damien Miller95def091999-11-25 00:26:21 +11001801
1802 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001803 check_agent_present();
1804
Damien Miller95def091999-11-25 00:26:21 +11001805 if (options.forward_agent) {
1806 debug("Requesting authentication agent forwarding.");
1807 auth_request_forwarding();
1808
1809 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001810 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +11001811 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11001812 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +10001813 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +11001814 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001815
Damien Miller0bc1bd82000-11-13 22:57:25 +11001816 /* Initiate port forwardings. */
Darren Tucker2d6665d2011-11-04 10:54:22 +11001817 ssh_init_stdio_forwarding();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001818 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001819
Darren Tuckerb776c852007-12-02 23:06:35 +11001820 /* Execute a local command */
1821 if (options.local_command != NULL &&
1822 options.permit_local_command)
1823 ssh_local_cmd(options.local_command);
1824
Darren Tucker9a2a6092008-07-04 12:53:50 +10001825 /*
1826 * If requested and we are not interested in replies to remote
1827 * forwarding requests, then let ssh continue in the background.
1828 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001829 if (fork_after_authentication_flag) {
1830 if (options.exit_on_forward_failure &&
1831 options.num_remote_forwards > 0) {
1832 debug("deferring postauth fork until remote forward "
1833 "confirmation received");
1834 } else
1835 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001836 }
Damien Miller5428f641999-11-25 11:54:57 +11001837
1838 /*
1839 * If a command was specified on the command line, execute the
1840 * command now. Otherwise request the server to start a shell.
1841 */
Damien Miller95def091999-11-25 00:26:21 +11001842 if (buffer_len(&command) > 0) {
1843 int len = buffer_len(&command);
1844 if (len > 900)
1845 len = 900;
Darren Tuckerd6173c02008-06-13 04:52:53 +10001846 debug("Sending command: %.*s", len,
1847 (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +11001848 packet_start(SSH_CMSG_EXEC_CMD);
1849 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1850 packet_send();
1851 packet_write_wait();
1852 } else {
1853 debug("Requesting shell.");
1854 packet_start(SSH_CMSG_EXEC_SHELL);
1855 packet_send();
1856 packet_write_wait();
1857 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001858
Damien Miller95def091999-11-25 00:26:21 +11001859 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001860 return client_loop(have_tty, tty_flag ?
1861 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +10001862}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001863
Ben Lindstromf558cf62001-09-20 23:13:49 +00001864/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001865static void
Damien Millerd530f5f2010-05-21 14:57:10 +10001866ssh_session2_setup(int id, int success, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001867{
Damien Miller3756dce2004-06-18 01:17:29 +10001868 extern char **environ;
Damien Miller17e7ed02005-06-17 12:54:33 +10001869 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +10001870 int interactive = tty_flag;
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001871 char *proto = NULL, *data = NULL;
Damien Miller17e7ed02005-06-17 12:54:33 +10001872
Damien Millerd530f5f2010-05-21 14:57:10 +10001873 if (!success)
1874 return; /* No need for error message, channels code sens one */
1875
Damien Miller46d38de2005-07-17 17:02:09 +10001876 display = getenv("DISPLAY");
djm@openbsd.orga58be332015-04-17 13:16:48 +00001877 if (display == NULL && options.forward_x11)
1878 debug("X11 forwarding requested but DISPLAY not set");
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001879 if (options.forward_x11 && client_x11_get_proto(display,
1880 options.xauth_location, options.forward_x11_trusted,
1881 options.forward_x11_timeout, &proto, &data) == 0) {
Damien Millerbd483e72000-04-30 10:00:53 +10001882 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001883 debug("Requesting X11 forwarding with authentication "
1884 "spoofing.");
Damien Miller6d7b4372011-06-23 08:31:57 +10001885 x11_request_forwarding_with_spoofing(id, display, proto,
1886 data, 1);
1887 client_expect_confirm(id, "X11 forwarding", CONFIRM_WARN);
1888 /* XXX exit_on_forward_failure */
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001889 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001890 }
1891
Damien Miller0bc1bd82000-11-13 22:57:25 +11001892 check_agent_present();
1893 if (options.forward_agent) {
1894 debug("Requesting authentication agent forwarding.");
1895 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1896 packet_send();
1897 }
1898
Darren Tucker7b305012012-07-02 18:55:09 +10001899 /* Tell the packet module whether this is an interactive session. */
1900 packet_set_interactive(interactive,
1901 options.ip_qos_interactive, options.ip_qos_bulk);
1902
Damien Miller0e220db2004-06-15 10:34:08 +10001903 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
Damien Miller5771ed72008-05-19 15:35:33 +10001904 NULL, fileno(stdin), &command, environ);
Damien Miller1383bd82000-04-06 12:32:37 +10001905}
1906
Ben Lindstromf558cf62001-09-20 23:13:49 +00001907/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001908static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001909ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001910{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001911 Channel *c;
1912 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001913
Damien Millercaf6dd62000-08-29 11:33:50 +11001914 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001915 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001916 } else {
1917 in = dup(STDIN_FILENO);
1918 }
1919 out = dup(STDOUT_FILENO);
1920 err = dup(STDERR_FILENO);
1921
1922 if (in < 0 || out < 0 || err < 0)
1923 fatal("dup() in/out/err failed");
1924
Damien Miller69b69aa2000-10-28 14:19:58 +11001925 /* enable nonblocking unless tty */
1926 if (!isatty(in))
1927 set_nonblock(in);
1928 if (!isatty(out))
1929 set_nonblock(out);
1930 if (!isatty(err))
1931 set_nonblock(err);
1932
Damien Millere4340be2000-09-16 13:29:08 +11001933 window = CHAN_SES_WINDOW_DEFAULT;
1934 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001935 if (tty_flag) {
1936 window >>= 1;
1937 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001938 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001939 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001940 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001941 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001942 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001943
Ben Lindstromf558cf62001-09-20 23:13:49 +00001944 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001945
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001946 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001947 if (!no_shell_flag)
Damien Millerb84886b2008-05-19 15:05:07 +10001948 channel_register_open_confirm(c->self,
1949 ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001950
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001951 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001952}
1953
Ben Lindstrombba81212001-06-25 05:01:22 +00001954static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001955ssh_session2(void)
1956{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001957 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001958
1959 /* XXX should be pre-session */
Darren Tucker2d6665d2011-11-04 10:54:22 +11001960 if (!options.control_persist)
1961 ssh_init_stdio_forwarding();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001962 ssh_init_forwarding();
1963
Damien Millere11e1ea2010-08-03 16:04:46 +10001964 /* Start listening for multiplex clients */
markus@openbsd.org8d057842016-09-30 09:19:13 +00001965 if (!packet_get_mux())
1966 muxserver_listen();
Damien Millere11e1ea2010-08-03 16:04:46 +10001967
1968 /*
Darren Tucker2d6665d2011-11-04 10:54:22 +11001969 * If we are in control persist mode and have a working mux listen
1970 * socket, then prepare to background ourselves and have a foreground
1971 * client attach as a control slave.
1972 * NB. we must save copies of the flags that we override for
Damien Millere11e1ea2010-08-03 16:04:46 +10001973 * the backgrounding, since we defer attachment of the slave until
1974 * after the connection is fully established (in particular,
1975 * async rfwd replies have been received for ExitOnForwardFailure).
1976 */
1977 if (options.control_persist && muxserver_sock != -1) {
1978 ostdin_null_flag = stdin_null_flag;
1979 ono_shell_flag = no_shell_flag;
Damien Miller21771e22011-05-15 08:45:50 +10001980 orequest_tty = options.request_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +10001981 otty_flag = tty_flag;
1982 stdin_null_flag = 1;
1983 no_shell_flag = 1;
Damien Millere11e1ea2010-08-03 16:04:46 +10001984 tty_flag = 0;
1985 if (!fork_after_authentication_flag)
1986 need_controlpersist_detach = 1;
1987 fork_after_authentication_flag = 1;
1988 }
Darren Tucker2d6665d2011-11-04 10:54:22 +11001989 /*
1990 * ControlPersist mux listen socket setup failed, attempt the
1991 * stdio forward setup that we skipped earlier.
1992 */
1993 if (options.control_persist && muxserver_sock == -1)
1994 ssh_init_stdio_forwarding();
Damien Millere11e1ea2010-08-03 16:04:46 +10001995
Ben Lindstromf558cf62001-09-20 23:13:49 +00001996 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1997 id = ssh_session2_open();
Damien Miller649fe022013-07-18 16:13:55 +10001998 else {
1999 packet_set_interactive(
2000 options.control_master == SSHCTL_MASTER_NO,
2001 options.ip_qos_interactive, options.ip_qos_bulk);
2002 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00002003
Darren Tucker8901fa92008-06-11 09:34:01 +10002004 /* If we don't expect to open a new session, then disallow it */
Damien Miller456e6f02008-11-03 19:20:10 +11002005 if (options.control_master == SSHCTL_MASTER_NO &&
2006 (datafellows & SSH_NEW_OPENSSH)) {
Darren Tucker8901fa92008-06-11 09:34:01 +10002007 debug("Requesting no-more-sessions@openssh.com");
2008 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2009 packet_put_cstring("no-more-sessions@openssh.com");
2010 packet_put_char(0);
2011 packet_send();
2012 }
2013
Damien Millerd27b9472005-12-13 19:29:02 +11002014 /* Execute a local command */
2015 if (options.local_command != NULL &&
2016 options.permit_local_command)
2017 ssh_local_cmd(options.local_command);
2018
Damien Miller1f25ab42010-07-16 13:56:23 +10002019 /*
2020 * If requested and we are not interested in replies to remote
2021 * forwarding requests, then let ssh continue in the background.
2022 */
Damien Millere11e1ea2010-08-03 16:04:46 +10002023 if (fork_after_authentication_flag) {
2024 if (options.exit_on_forward_failure &&
2025 options.num_remote_forwards > 0) {
2026 debug("deferring postauth fork until remote forward "
2027 "confirmation received");
2028 } else
2029 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10002030 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00002031
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00002032 return client_loop(tty_flag, tty_flag ?
2033 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002034}
Damien Miller0bc1bd82000-11-13 22:57:25 +11002035
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002036/* Loads all IdentityFile and CertificateFile keys */
Ben Lindstrombba81212001-06-25 05:01:22 +00002037static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002038load_public_identity_files(void)
2039{
Damien Miller6b1d53c2006-03-31 23:13:21 +11002040 char *filename, *cp, thishost[NI_MAXHOST];
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11002041 char *pwdir = NULL, *pwname = NULL;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00002042 Key *public;
Damien Miller6b1d53c2006-03-31 23:13:21 +11002043 struct passwd *pw;
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002044 int i;
2045 u_int n_ids, n_certs;
Damien Miller0a80ca12010-02-27 07:55:05 +11002046 char *identity_files[SSH_MAX_IDENTITY_FILES];
2047 Key *identity_keys[SSH_MAX_IDENTITY_FILES];
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002048 char *certificate_files[SSH_MAX_CERTIFICATE_FILES];
2049 struct sshkey *certificates[SSH_MAX_CERTIFICATE_FILES];
Damien Miller7ea845e2010-02-12 09:21:02 +11002050#ifdef ENABLE_PKCS11
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00002051 Key **keys;
Damien Miller7ea845e2010-02-12 09:21:02 +11002052 int nkeys;
Damien Miller0a80ca12010-02-27 07:55:05 +11002053#endif /* PKCS11 */
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00002054
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002055 n_ids = n_certs = 0;
Damien Miller1d2c4562014-02-04 11:18:20 +11002056 memset(identity_files, 0, sizeof(identity_files));
2057 memset(identity_keys, 0, sizeof(identity_keys));
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002058 memset(certificate_files, 0, sizeof(certificate_files));
2059 memset(certificates, 0, sizeof(certificates));
Damien Miller0a80ca12010-02-27 07:55:05 +11002060
2061#ifdef ENABLE_PKCS11
Damien Miller7ea845e2010-02-12 09:21:02 +11002062 if (options.pkcs11_provider != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00002063 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
Damien Miller7ea845e2010-02-12 09:21:02 +11002064 (pkcs11_init(!options.batch_mode) == 0) &&
2065 (nkeys = pkcs11_add_provider(options.pkcs11_provider, NULL,
2066 &keys)) > 0) {
Damien Miller7ea845e2010-02-12 09:21:02 +11002067 for (i = 0; i < nkeys; i++) {
Damien Miller0a80ca12010-02-27 07:55:05 +11002068 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
2069 key_free(keys[i]);
2070 continue;
2071 }
2072 identity_keys[n_ids] = keys[i];
2073 identity_files[n_ids] =
Damien Miller7ea845e2010-02-12 09:21:02 +11002074 xstrdup(options.pkcs11_provider); /* XXX */
Damien Miller0a80ca12010-02-27 07:55:05 +11002075 n_ids++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00002076 }
Darren Tuckera627d422013-06-02 07:31:17 +10002077 free(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00002078 }
Damien Miller7ea845e2010-02-12 09:21:02 +11002079#endif /* ENABLE_PKCS11 */
Damien Miller6b1d53c2006-03-31 23:13:21 +11002080 if ((pw = getpwuid(original_real_uid)) == NULL)
2081 fatal("load_public_identity_files: getpwuid failed");
Darren Tuckere143f062007-12-02 23:21:16 +11002082 pwname = xstrdup(pw->pw_name);
2083 pwdir = xstrdup(pw->pw_dir);
Damien Miller6b1d53c2006-03-31 23:13:21 +11002084 if (gethostname(thishost, sizeof(thishost)) == -1)
2085 fatal("load_public_identity_files: gethostname: %s",
2086 strerror(errno));
Damien Miller0a80ca12010-02-27 07:55:05 +11002087 for (i = 0; i < options.num_identity_files; i++) {
Darren Tucker15fd19c2013-04-05 11:22:26 +11002088 if (n_ids >= SSH_MAX_IDENTITY_FILES ||
2089 strcasecmp(options.identity_files[i], "none") == 0) {
Darren Tuckera627d422013-06-02 07:31:17 +10002090 free(options.identity_files[i]);
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002091 options.identity_files[i] = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +11002092 continue;
2093 }
Damien Miller6b1d53c2006-03-31 23:13:21 +11002094 cp = tilde_expand_filename(options.identity_files[i],
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002095 original_real_uid);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11002096 filename = percent_expand(cp, "d", pwdir,
2097 "u", pwname, "l", thishost, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +11002098 "r", options.user, (char *)NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10002099 free(cp);
Ben Lindstromd0fca422001-03-26 13:44:06 +00002100 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002101 debug("identity file %s type %d", filename,
2102 public ? public->type : -1);
Darren Tuckera627d422013-06-02 07:31:17 +10002103 free(options.identity_files[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +11002104 identity_files[n_ids] = filename;
2105 identity_keys[n_ids] = public;
2106
2107 if (++n_ids >= SSH_MAX_IDENTITY_FILES)
2108 continue;
2109
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002110 /*
2111 * If no certificates have been explicitly listed then try
2112 * to add the default certificate variant too.
2113 */
2114 if (options.num_certificate_files != 0)
2115 continue;
Damien Miller0a80ca12010-02-27 07:55:05 +11002116 xasprintf(&cp, "%s-cert", filename);
2117 public = key_load_public(cp, NULL);
2118 debug("identity file %s type %d", cp,
2119 public ? public->type : -1);
2120 if (public == NULL) {
Darren Tuckera627d422013-06-02 07:31:17 +10002121 free(cp);
Damien Miller0a80ca12010-02-27 07:55:05 +11002122 continue;
2123 }
2124 if (!key_is_cert(public)) {
2125 debug("%s: key %s type %s is not a certificate",
2126 __func__, cp, key_type(public));
2127 key_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +10002128 free(cp);
Damien Miller0a80ca12010-02-27 07:55:05 +11002129 continue;
2130 }
djm@openbsd.orgb4867e02016-12-06 07:48:01 +00002131 /* NB. leave filename pointing to private key */
2132 identity_files[n_ids] = xstrdup(filename);
Damien Miller0a80ca12010-02-27 07:55:05 +11002133 identity_keys[n_ids] = public;
Damien Miller0a80ca12010-02-27 07:55:05 +11002134 n_ids++;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002135 }
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002136
2137 if (options.num_certificate_files > SSH_MAX_CERTIFICATE_FILES)
2138 fatal("%s: too many certificates", __func__);
2139 for (i = 0; i < options.num_certificate_files; i++) {
2140 cp = tilde_expand_filename(options.certificate_files[i],
2141 original_real_uid);
2142 filename = percent_expand(cp, "d", pwdir,
2143 "u", pwname, "l", thishost, "h", host,
2144 "r", options.user, (char *)NULL);
2145 free(cp);
2146
2147 public = key_load_public(filename, NULL);
2148 debug("certificate file %s type %d", filename,
2149 public ? public->type : -1);
2150 free(options.certificate_files[i]);
2151 options.certificate_files[i] = NULL;
2152 if (public == NULL) {
2153 free(filename);
2154 continue;
2155 }
2156 if (!key_is_cert(public)) {
2157 debug("%s: key %s type %s is not a certificate",
2158 __func__, filename, key_type(public));
2159 key_free(public);
2160 free(filename);
2161 continue;
2162 }
2163 certificate_files[n_certs] = filename;
2164 certificates[n_certs] = public;
2165 ++n_certs;
2166 }
2167
Damien Miller0a80ca12010-02-27 07:55:05 +11002168 options.num_identity_files = n_ids;
2169 memcpy(options.identity_files, identity_files, sizeof(identity_files));
2170 memcpy(options.identity_keys, identity_keys, sizeof(identity_keys));
2171
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002172 options.num_certificate_files = n_certs;
2173 memcpy(options.certificate_files,
2174 certificate_files, sizeof(certificate_files));
2175 memcpy(options.certificates, certificates, sizeof(certificates));
2176
Damien Miller1d2c4562014-02-04 11:18:20 +11002177 explicit_bzero(pwname, strlen(pwname));
Darren Tuckera627d422013-06-02 07:31:17 +10002178 free(pwname);
Damien Miller1d2c4562014-02-04 11:18:20 +11002179 explicit_bzero(pwdir, strlen(pwdir));
Darren Tuckera627d422013-06-02 07:31:17 +10002180 free(pwdir);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002181}
Damien Miller857b02e2010-09-24 22:02:56 +10002182
2183static void
2184main_sigchld_handler(int sig)
2185{
2186 int save_errno = errno;
2187 pid_t pid;
2188 int status;
2189
2190 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
2191 (pid < 0 && errno == EINTR))
2192 ;
2193
2194 signal(sig, main_sigchld_handler);
2195 errno = save_errno;
2196}