blob: ea52bbf5d9f7dbd732dab7fae1939b39bc909d5e [file] [log] [blame]
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00001/* $OpenBSD: ssh.c,v 1.439 2016/05/04 12:21:53 markus 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>
Damien Millereba71ba2000-04-29 23:57:08 +100070
Darren Tucker46aa3e02006-09-02 15:32:40 +100071#include <netinet/in.h>
72#include <arpa/inet.h>
73
Damien Miller1f0311c2014-05-15 14:24:09 +100074#ifdef WITH_OPENSSL
Damien Millereba71ba2000-04-29 23:57:08 +100075#include <openssl/evp.h>
Damien Miller0bc1bd82000-11-13 22:57:25 +110076#include <openssl/err.h>
Damien Miller1f0311c2014-05-15 14:24:09 +100077#endif
Darren Tuckerbfaaf962008-02-28 19:13:52 +110078#include "openbsd-compat/openssl-compat.h"
Damien Millerb84886b2008-05-19 15:05:07 +100079#include "openbsd-compat/sys-queue.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080
Damien Millerd7834352006-08-05 12:39:39 +100081#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082#include "ssh.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000083#include "ssh1.h"
Damien Miller1383bd82000-04-06 12:32:37 +100084#include "ssh2.h"
Damien Millerb96c4412010-07-02 13:34:24 +100085#include "canohost.h"
Damien Miller1383bd82000-04-06 12:32:37 +100086#include "compat.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000087#include "cipher.h"
Damien Miller9c386432014-07-03 21:27:46 +100088#include "digest.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000089#include "packet.h"
90#include "buffer.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000091#include "channels.h"
Damien Millereba71ba2000-04-29 23:57:08 +100092#include "key.h"
Damien Miller994cf142000-07-21 10:19:44 +100093#include "authfd.h"
Damien Millereba71ba2000-04-29 23:57:08 +100094#include "authfile.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000095#include "pathnames.h"
Damien Miller0e220db2004-06-15 10:34:08 +100096#include "dispatch.h"
Ben Lindstrombf555ba2001-01-18 02:04:35 +000097#include "clientloop.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000098#include "log.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100099#include "misc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000100#include "readconf.h"
101#include "sshconnect.h"
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000102#include "kex.h"
103#include "mac.h"
Darren Tucker06f2bd82004-05-13 16:06:46 +1000104#include "sshpty.h"
Darren Tucker46bc0752004-05-02 22:11:30 +1000105#include "match.h"
Damien Miller0e220db2004-06-15 10:34:08 +1000106#include "msg.h"
Darren Tucker25f60a72004-08-15 17:23:34 +1000107#include "uidswap.h"
Damien Millerb7576772006-07-10 20:23:39 +1000108#include "version.h"
djm@openbsd.org141efe42015-01-14 20:05:27 +0000109#include "ssherr.h"
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000110#include "myproposal.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111
Damien Miller7ea845e2010-02-12 09:21:02 +1100112#ifdef ENABLE_PKCS11
113#include "ssh-pkcs11.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +0000114#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000115
Damien Miller3f905871999-11-15 17:10:57 +1100116extern char *__progname;
Damien Miller3f905871999-11-15 17:10:57 +1100117
Damien Millerea2c1a42011-06-03 12:10:22 +1000118/* Saves a copy of argv for setproctitle emulation */
119#ifndef HAVE_SETPROCTITLE
120static char **saved_av;
121#endif
122
Darren Tuckerd6173c02008-06-13 04:52:53 +1000123/* Flag indicating whether debug mode is on. May be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000124int debug_flag = 0;
125
Damien Miller21771e22011-05-15 08:45:50 +1000126/* Flag indicating whether a tty should be requested */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000127int tty_flag = 0;
128
Damien Miller1383bd82000-04-06 12:32:37 +1000129/* don't exec a shell */
130int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000131
Damien Miller5428f641999-11-25 11:54:57 +1100132/*
133 * Flag indicating that nothing should be read from stdin. This can be set
134 * on the command line.
135 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000136int stdin_null_flag = 0;
137
Damien Miller5428f641999-11-25 11:54:57 +1100138/*
Damien Millere11e1ea2010-08-03 16:04:46 +1000139 * Flag indicating that the current process should be backgrounded and
140 * a new slave launched in the foreground for ControlPersist.
141 */
142int need_controlpersist_detach = 0;
143
144/* Copies of flags for ControlPersist foreground slave */
Damien Miller21771e22011-05-15 08:45:50 +1000145int ostdin_null_flag, ono_shell_flag, otty_flag, orequest_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +1000146
147/*
Damien Miller5428f641999-11-25 11:54:57 +1100148 * Flag indicating that ssh should fork after authentication. This is useful
Ben Lindstromf666fec2002-06-06 19:51:58 +0000149 * so that the passphrase can be entered manually, and then ssh goes to the
Damien Miller5428f641999-11-25 11:54:57 +1100150 * background.
151 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000152int fork_after_authentication_flag = 0;
153
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100154/* forward stdio to remote host and port */
155char *stdio_forward_host = NULL;
156int stdio_forward_port = 0;
157
Damien Miller5428f641999-11-25 11:54:57 +1100158/*
159 * General data structure for command line options and options configurable
160 * in configuration files. See readconf.h.
161 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000162Options options;
163
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000164/* optional user configfile */
165char *config = NULL;
166
Damien Miller5428f641999-11-25 11:54:57 +1100167/*
168 * Name of the host we are connecting to. This is the name given on the
169 * command line, or the HostName specified for the user-supplied name in a
170 * configuration file.
171 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000172char *host;
173
174/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100175struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000176
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000177/* Private host keys. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000178Sensitive sensitive_data;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000179
180/* Original real UID. */
181uid_t original_real_uid;
Ben Lindstromf9c48842002-06-11 16:37:51 +0000182uid_t original_effective_uid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000183
Damien Miller1383bd82000-04-06 12:32:37 +1000184/* command to be executed */
185Buffer command;
186
Damien Miller832562e2001-01-30 09:30:01 +1100187/* Should we execute a command or invoke a subsystem? */
188int subsystem_flag = 0;
189
Damien Miller2797f7f2002-04-23 21:09:44 +1000190/* # of replies received for global requests */
Darren Tucker9f407c42008-06-13 04:50:27 +1000191static int remote_forward_confirms_received = 0;
Damien Miller2797f7f2002-04-23 21:09:44 +1000192
Damien Millerb1cbfa22008-05-19 16:00:08 +1000193/* mux.c */
194extern int muxserver_sock;
195extern u_int muxclient_command;
Damien Miller0e220db2004-06-15 10:34:08 +1000196
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000197/* Prints a help message to the user. This function never returns. */
198
Ben Lindstrombba81212001-06-25 05:01:22 +0000199static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000200usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000201{
Damien Miller50955102004-03-22 09:34:58 +1100202 fprintf(stderr,
jmc@openbsd.orgb1ba15f2014-10-09 06:21:31 +0000203"usage: ssh [-1246AaCfGgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]\n"
Damien Miller03d4d7e2013-04-23 15:21:06 +1000204" [-D [bind_address:]port] [-E log_file] [-e escape_char]\n"
jmc@openbsd.org846f6fa2015-09-11 06:55:46 +0000205" [-F configfile] [-I pkcs11] [-i identity_file] [-L address]\n"
206" [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
207" [-Q query_option] [-R address] [-S ctl_path] [-W host:port]\n"
Damien Millerbdb352a2013-12-05 10:20:52 +1100208" [-w local_tun[:remote_tun]] [user@]hostname [command]\n"
Damien Miller50955102004-03-22 09:34:58 +1100209 );
Darren Tuckere9a9b712005-12-20 16:15:51 +1100210 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000211}
212
Ben Lindstrombba81212001-06-25 05:01:22 +0000213static int ssh_session(void);
214static int ssh_session2(void);
215static void load_public_identity_files(void);
Damien Miller857b02e2010-09-24 22:02:56 +1000216static void main_sigchld_handler(int);
Damien Millerb1cbfa22008-05-19 16:00:08 +1000217
218/* from muxclient.c */
219void muxclient(const char *);
220void muxserver_listen(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000221
Damien Miller295ee632011-05-29 21:42:31 +1000222/* ~/ expand a list of paths. NB. assumes path[n] is heap-allocated. */
223static void
224tilde_expand_paths(char **paths, u_int num_paths)
225{
226 u_int i;
227 char *cp;
228
229 for (i = 0; i < num_paths; i++) {
230 cp = tilde_expand_filename(paths[i], original_real_uid);
Darren Tuckera627d422013-06-02 07:31:17 +1000231 free(paths[i]);
Damien Miller295ee632011-05-29 21:42:31 +1000232 paths[i] = cp;
233 }
234}
235
Damien Miller13f97b22014-02-24 15:57:55 +1100236/*
237 * Attempt to resolve a host name / port to a set of addresses and
238 * optionally return any CNAMEs encountered along the way.
239 * Returns NULL on failure.
240 * NB. this function must operate with a options having undefined members.
241 */
Damien Miller0faf7472013-10-17 11:47:23 +1100242static struct addrinfo *
Damien Miller13f97b22014-02-24 15:57:55 +1100243resolve_host(const char *name, int port, int logerr, char *cname, size_t clen)
Damien Miller0faf7472013-10-17 11:47:23 +1100244{
245 char strport[NI_MAXSERV];
246 struct addrinfo hints, *res;
247 int gaierr, loglevel = SYSLOG_LEVEL_DEBUG1;
248
Damien Miller13f97b22014-02-24 15:57:55 +1100249 if (port <= 0)
250 port = default_ssh_port();
251
djm@openbsd.orgb1d38a32015-10-15 23:51:40 +0000252 snprintf(strport, sizeof strport, "%d", port);
Damien Miller1d2c4562014-02-04 11:18:20 +1100253 memset(&hints, 0, sizeof(hints));
Damien Miller13f97b22014-02-24 15:57:55 +1100254 hints.ai_family = options.address_family == -1 ?
255 AF_UNSPEC : options.address_family;
Damien Miller0faf7472013-10-17 11:47:23 +1100256 hints.ai_socktype = SOCK_STREAM;
257 if (cname != NULL)
258 hints.ai_flags = AI_CANONNAME;
259 if ((gaierr = getaddrinfo(name, strport, &hints, &res)) != 0) {
260 if (logerr || (gaierr != EAI_NONAME && gaierr != EAI_NODATA))
261 loglevel = SYSLOG_LEVEL_ERROR;
262 do_log2(loglevel, "%s: Could not resolve hostname %.100s: %s",
263 __progname, name, ssh_gai_strerror(gaierr));
264 return NULL;
265 }
266 if (cname != NULL && res->ai_canonname != NULL) {
267 if (strlcpy(cname, res->ai_canonname, clen) >= clen) {
268 error("%s: host \"%s\" cname \"%s\" too long (max %lu)",
269 __func__, name, res->ai_canonname, (u_long)clen);
270 if (clen > 0)
271 *cname = '\0';
272 }
273 }
274 return res;
275}
276
277/*
djm@openbsd.org90109022015-01-16 07:19:48 +0000278 * Attempt to resolve a numeric host address / port to a single address.
279 * Returns a canonical address string.
280 * Returns NULL on failure.
281 * NB. this function must operate with a options having undefined members.
282 */
283static struct addrinfo *
284resolve_addr(const char *name, int port, char *caddr, size_t clen)
285{
286 char addr[NI_MAXHOST], strport[NI_MAXSERV];
287 struct addrinfo hints, *res;
288 int gaierr;
289
290 if (port <= 0)
291 port = default_ssh_port();
292 snprintf(strport, sizeof strport, "%u", port);
293 memset(&hints, 0, sizeof(hints));
294 hints.ai_family = options.address_family == -1 ?
295 AF_UNSPEC : options.address_family;
296 hints.ai_socktype = SOCK_STREAM;
297 hints.ai_flags = AI_NUMERICHOST|AI_NUMERICSERV;
298 if ((gaierr = getaddrinfo(name, strport, &hints, &res)) != 0) {
299 debug2("%s: could not resolve name %.100s as address: %s",
300 __func__, name, ssh_gai_strerror(gaierr));
301 return NULL;
302 }
303 if (res == NULL) {
304 debug("%s: getaddrinfo %.100s returned no addresses",
305 __func__, name);
306 return NULL;
307 }
308 if (res->ai_next != NULL) {
309 debug("%s: getaddrinfo %.100s returned multiple addresses",
310 __func__, name);
311 goto fail;
312 }
313 if ((gaierr = getnameinfo(res->ai_addr, res->ai_addrlen,
314 addr, sizeof(addr), NULL, 0, NI_NUMERICHOST)) != 0) {
315 debug("%s: Could not format address for name %.100s: %s",
316 __func__, name, ssh_gai_strerror(gaierr));
317 goto fail;
318 }
319 if (strlcpy(caddr, addr, clen) >= clen) {
320 error("%s: host \"%s\" addr \"%s\" too long (max %lu)",
321 __func__, name, addr, (u_long)clen);
322 if (clen > 0)
323 *caddr = '\0';
324 fail:
325 freeaddrinfo(res);
326 return NULL;
327 }
328 return res;
329}
330
331/*
Damien Miller0faf7472013-10-17 11:47:23 +1100332 * Check whether the cname is a permitted replacement for the hostname
333 * and perform the replacement if it is.
Damien Miller13f97b22014-02-24 15:57:55 +1100334 * NB. this function must operate with a options having undefined members.
Damien Miller0faf7472013-10-17 11:47:23 +1100335 */
336static int
337check_follow_cname(char **namep, const char *cname)
338{
339 int i;
340 struct allowed_cname *rule;
341
342 if (*cname == '\0' || options.num_permitted_cnames == 0 ||
343 strcmp(*namep, cname) == 0)
344 return 0;
Damien Miller38505592013-10-17 11:48:13 +1100345 if (options.canonicalize_hostname == SSH_CANONICALISE_NO)
Damien Miller0faf7472013-10-17 11:47:23 +1100346 return 0;
347 /*
Damien Miller38505592013-10-17 11:48:13 +1100348 * Don't attempt to canonicalize names that will be interpreted by
Damien Miller0faf7472013-10-17 11:47:23 +1100349 * a proxy unless the user specifically requests so.
350 */
Damien Miller13f97b22014-02-24 15:57:55 +1100351 if (!option_clear_or_none(options.proxy_command) &&
Damien Miller38505592013-10-17 11:48:13 +1100352 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS)
Damien Miller0faf7472013-10-17 11:47:23 +1100353 return 0;
354 debug3("%s: check \"%s\" CNAME \"%s\"", __func__, *namep, cname);
355 for (i = 0; i < options.num_permitted_cnames; i++) {
356 rule = options.permitted_cnames + i;
djm@openbsd.orge661a862015-05-04 06:10:48 +0000357 if (match_pattern_list(*namep, rule->source_list, 1) != 1 ||
358 match_pattern_list(cname, rule->target_list, 1) != 1)
Damien Miller0faf7472013-10-17 11:47:23 +1100359 continue;
Damien Miller38505592013-10-17 11:48:13 +1100360 verbose("Canonicalized DNS aliased hostname "
Damien Miller0faf7472013-10-17 11:47:23 +1100361 "\"%s\" => \"%s\"", *namep, cname);
362 free(*namep);
363 *namep = xstrdup(cname);
364 return 1;
365 }
366 return 0;
367}
368
369/*
370 * Attempt to resolve the supplied hostname after applying the user's
Damien Miller51682fa2013-10-17 11:48:31 +1100371 * canonicalization rules. Returns the address list for the host or NULL
372 * if no name was found after canonicalization.
Damien Miller13f97b22014-02-24 15:57:55 +1100373 * NB. this function must operate with a options having undefined members.
Damien Miller0faf7472013-10-17 11:47:23 +1100374 */
375static struct addrinfo *
Damien Miller13f97b22014-02-24 15:57:55 +1100376resolve_canonicalize(char **hostp, int port)
Damien Miller0faf7472013-10-17 11:47:23 +1100377{
378 int i, ndots;
djm@openbsd.org90109022015-01-16 07:19:48 +0000379 char *cp, *fullhost, newname[NI_MAXHOST];
Damien Miller0faf7472013-10-17 11:47:23 +1100380 struct addrinfo *addrs;
381
Damien Miller38505592013-10-17 11:48:13 +1100382 if (options.canonicalize_hostname == SSH_CANONICALISE_NO)
Damien Miller0faf7472013-10-17 11:47:23 +1100383 return NULL;
Damien Miller13f97b22014-02-24 15:57:55 +1100384
Damien Miller0faf7472013-10-17 11:47:23 +1100385 /*
Damien Miller38505592013-10-17 11:48:13 +1100386 * Don't attempt to canonicalize names that will be interpreted by
Damien Miller0faf7472013-10-17 11:47:23 +1100387 * a proxy unless the user specifically requests so.
388 */
Damien Miller13f97b22014-02-24 15:57:55 +1100389 if (!option_clear_or_none(options.proxy_command) &&
Damien Miller38505592013-10-17 11:48:13 +1100390 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS)
Damien Miller0faf7472013-10-17 11:47:23 +1100391 return NULL;
Damien Miller13f97b22014-02-24 15:57:55 +1100392
djm@openbsd.org90109022015-01-16 07:19:48 +0000393 /* Try numeric hostnames first */
394 if ((addrs = resolve_addr(*hostp, port,
395 newname, sizeof(newname))) != NULL) {
396 debug2("%s: hostname %.100s is address", __func__, *hostp);
397 if (strcasecmp(*hostp, newname) != 0) {
398 debug2("%s: canonicalised address \"%s\" => \"%s\"",
399 __func__, *hostp, newname);
400 free(*hostp);
401 *hostp = xstrdup(newname);
402 }
403 return addrs;
404 }
405
djm@openbsd.org5ee00632015-10-16 18:40:49 +0000406 /* If domain name is anchored, then resolve it now */
407 if ((*hostp)[strlen(*hostp) - 1] == '.') {
408 debug3("%s: name is fully qualified", __func__);
409 fullhost = xstrdup(*hostp);
410 if ((addrs = resolve_host(fullhost, port, 0,
411 newname, sizeof(newname))) != NULL)
412 goto found;
413 free(fullhost);
414 goto notfound;
415 }
416
Damien Miller51682fa2013-10-17 11:48:31 +1100417 /* Don't apply canonicalization to sufficiently-qualified hostnames */
Damien Miller0faf7472013-10-17 11:47:23 +1100418 ndots = 0;
419 for (cp = *hostp; *cp != '\0'; cp++) {
420 if (*cp == '.')
421 ndots++;
422 }
Damien Miller38505592013-10-17 11:48:13 +1100423 if (ndots > options.canonicalize_max_dots) {
424 debug3("%s: not canonicalizing hostname \"%s\" (max dots %d)",
425 __func__, *hostp, options.canonicalize_max_dots);
Damien Miller0faf7472013-10-17 11:47:23 +1100426 return NULL;
427 }
428 /* Attempt each supplied suffix */
429 for (i = 0; i < options.num_canonical_domains; i++) {
djm@openbsd.org90109022015-01-16 07:19:48 +0000430 *newname = '\0';
Damien Miller0faf7472013-10-17 11:47:23 +1100431 xasprintf(&fullhost, "%s.%s.", *hostp,
432 options.canonical_domains[i]);
Damien Miller13f97b22014-02-24 15:57:55 +1100433 debug3("%s: attempting \"%s\" => \"%s\"", __func__,
434 *hostp, fullhost);
435 if ((addrs = resolve_host(fullhost, port, 0,
djm@openbsd.org90109022015-01-16 07:19:48 +0000436 newname, sizeof(newname))) == NULL) {
Damien Miller0faf7472013-10-17 11:47:23 +1100437 free(fullhost);
438 continue;
439 }
djm@openbsd.org5ee00632015-10-16 18:40:49 +0000440 found:
Damien Miller0faf7472013-10-17 11:47:23 +1100441 /* Remove trailing '.' */
442 fullhost[strlen(fullhost) - 1] = '\0';
443 /* Follow CNAME if requested */
djm@openbsd.org90109022015-01-16 07:19:48 +0000444 if (!check_follow_cname(&fullhost, newname)) {
Damien Miller38505592013-10-17 11:48:13 +1100445 debug("Canonicalized hostname \"%s\" => \"%s\"",
Damien Miller0faf7472013-10-17 11:47:23 +1100446 *hostp, fullhost);
447 }
448 free(*hostp);
449 *hostp = fullhost;
450 return addrs;
451 }
djm@openbsd.org5ee00632015-10-16 18:40:49 +0000452 notfound:
Damien Miller38505592013-10-17 11:48:13 +1100453 if (!options.canonicalize_fallback_local)
Damien Miller13f97b22014-02-24 15:57:55 +1100454 fatal("%s: Could not resolve host \"%s\"", __progname, *hostp);
455 debug2("%s: host %s not found in any suffix", __func__, *hostp);
Damien Miller0faf7472013-10-17 11:47:23 +1100456 return NULL;
457}
458
Damien Miller95def091999-11-25 00:26:21 +1100459/*
Damien Miller13f97b22014-02-24 15:57:55 +1100460 * Read per-user configuration file. Ignore the system wide config
461 * file if the user specifies a config file on the command line.
462 */
463static void
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000464process_config_files(const char *host_arg, struct passwd *pw, int post_canon)
Damien Miller13f97b22014-02-24 15:57:55 +1100465{
deraadt@openbsd.org087266e2015-01-20 23:14:00 +0000466 char buf[PATH_MAX];
Damien Miller13f97b22014-02-24 15:57:55 +1100467 int r;
468
469 if (config != NULL) {
470 if (strcasecmp(config, "none") != 0 &&
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000471 !read_config_file(config, pw, host, host_arg, &options,
472 SSHCONF_USERCONF | (post_canon ? SSHCONF_POSTCANON : 0)))
Damien Miller13f97b22014-02-24 15:57:55 +1100473 fatal("Can't open user config file %.100s: "
474 "%.100s", config, strerror(errno));
475 } else {
476 r = snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir,
477 _PATH_SSH_USER_CONFFILE);
478 if (r > 0 && (size_t)r < sizeof(buf))
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000479 (void)read_config_file(buf, pw, host, host_arg,
480 &options, SSHCONF_CHECKPERM | SSHCONF_USERCONF |
481 (post_canon ? SSHCONF_POSTCANON : 0));
Damien Miller13f97b22014-02-24 15:57:55 +1100482
483 /* Read systemwide configuration file after user config. */
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000484 (void)read_config_file(_PATH_HOST_CONFIG_FILE, pw,
485 host, host_arg, &options,
486 post_canon ? SSHCONF_POSTCANON : 0);
487 }
488}
489
490/* Rewrite the port number in an addrinfo list of addresses */
491static void
492set_addrinfo_port(struct addrinfo *addrs, int port)
493{
494 struct addrinfo *addr;
495
496 for (addr = addrs; addr != NULL; addr = addr->ai_next) {
497 switch (addr->ai_family) {
498 case AF_INET:
499 ((struct sockaddr_in *)addr->ai_addr)->
500 sin_port = htons(port);
501 break;
502 case AF_INET6:
503 ((struct sockaddr_in6 *)addr->ai_addr)->
504 sin6_port = htons(port);
505 break;
506 }
Damien Miller13f97b22014-02-24 15:57:55 +1100507 }
508}
509
510/*
Damien Miller95def091999-11-25 00:26:21 +1100511 * Main program for the ssh client.
512 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000513int
514main(int ac, char **av)
515{
djm@openbsd.org95767262016-03-07 19:02:43 +0000516 struct ssh *ssh = NULL;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000517 int i, r, opt, exit_status, use_syslog, config_test = 0;
deraadt@openbsd.org087266e2015-01-20 23:14:00 +0000518 char *p, *cp, *line, *argv0, buf[PATH_MAX], *host_arg, *logfile;
Damien Millerdfc85fa2011-05-15 08:44:02 +1000519 char thishost[NI_MAXHOST], shorthost[NI_MAXHOST], portstr[NI_MAXSERV];
djm@openbsd.org674b3b62015-09-11 03:47:28 +0000520 char cname[NI_MAXHOST], uidstr[32], *conn_hash_hex;
Damien Miller95def091999-11-25 00:26:21 +1100521 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000522 struct passwd *pw;
Damien Miller194fd902013-10-15 12:13:05 +1100523 int timeout_ms;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000524 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000525 extern char *optarg;
Damien Miller7acefbb2014-07-18 14:11:24 +1000526 struct Forward fwd;
Damien Miller0faf7472013-10-17 11:47:23 +1100527 struct addrinfo *addrs = NULL;
Damien Miller9c386432014-07-03 21:27:46 +1000528 struct ssh_digest_ctx *md;
529 u_char conn_hash[SSH_DIGEST_MAX_LENGTH];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000530
dtucker@openbsd.orgffb1e7e2016-02-15 09:47:49 +0000531 ssh_malloc_init(); /* must be called before any mallocs */
Darren Tuckerce321d82005-10-03 18:11:24 +1000532 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
533 sanitise_stdfd();
534
Damien Miller59d3d5b2003-08-22 09:34:41 +1000535 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000536
Damien Millerea2c1a42011-06-03 12:10:22 +1000537#ifndef HAVE_SETPROCTITLE
538 /* Prepare for later setproctitle emulation */
539 /* Save argv so it isn't clobbered by setproctitle() emulation */
540 saved_av = xcalloc(ac + 1, sizeof(*saved_av));
541 for (i = 0; i < ac; i++)
542 saved_av[i] = xstrdup(av[i]);
543 saved_av[i] = NULL;
544 compat_init_setproctitle(ac, av);
545 av = saved_av;
546#endif
547
Damien Miller5428f641999-11-25 11:54:57 +1100548 /*
Damien Miller00d9ae22010-08-17 01:59:31 +1000549 * Discard other fds that are hanging around. These can cause problem
550 * with backgrounded ssh processes started by ControlPersist.
551 */
552 closefrom(STDERR_FILENO + 1);
553
554 /*
Damien Miller5428f641999-11-25 11:54:57 +1100555 * Save the original real uid. It will be needed later (uid-swapping
556 * may clobber the real uid).
557 */
Damien Miller95def091999-11-25 00:26:21 +1100558 original_real_uid = getuid();
559 original_effective_uid = geteuid();
Damien Millera8e06ce2003-11-21 23:48:55 +1100560
Damien Miller50b9a602002-09-04 16:50:06 +1000561 /*
562 * Use uid-swapping to give up root privileges for the duration of
563 * option processing. We will re-instantiate the rights when we are
564 * ready to create the privileged port, and will permanently drop
565 * them when the port has been created (actually, when the connection
566 * has been made, as we may need to create the port several times).
567 */
568 PRIV_END;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000569
Damien Miller05dd7952000-10-01 00:42:48 +1100570#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100571 /* If we are installed setuid root be careful to not drop core. */
572 if (original_real_uid != original_effective_uid) {
573 struct rlimit rlim;
574 rlim.rlim_cur = rlim.rlim_max = 0;
575 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
576 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000577 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100578#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000579 /* Get user data. */
580 pw = getpwuid(original_real_uid);
581 if (!pw) {
Damien Miller3009d3c2013-07-20 13:22:31 +1000582 logit("No user exists for uid %lu", (u_long)original_real_uid);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100583 exit(255);
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000584 }
585 /* Take a copy of the returned structure. */
586 pw = pwcopy(pw);
587
Damien Miller5428f641999-11-25 11:54:57 +1100588 /*
Damien Miller5428f641999-11-25 11:54:57 +1100589 * Set our umask to something reasonable, as some files are created
590 * with the default umask. This will make them world-readable but
591 * writable only by the owner, which is ok for all files for which we
592 * don't set the modes explicitly.
593 */
Damien Miller95def091999-11-25 00:26:21 +1100594 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000595
Darren Tuckerd6173c02008-06-13 04:52:53 +1000596 /*
597 * Initialize option structure to indicate that no values have been
598 * set.
599 */
Damien Miller95def091999-11-25 00:26:21 +1100600 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000601
Damien Miller95def091999-11-25 00:26:21 +1100602 /* Parse command-line arguments. */
603 host = NULL;
Damien Millere272a5b2008-11-03 19:22:37 +1100604 use_syslog = 0;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000605 logfile = NULL;
Darren Tucker72efd742009-06-21 17:48:00 +1000606 argv0 = av[0];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000607
Damien Miller2ecb6bd2006-03-15 12:03:53 +1100608 again:
Darren Tuckerd6173c02008-06-13 04:52:53 +1000609 while ((opt = getopt(ac, av, "1246ab:c:e:fgi:kl:m:no:p:qstvx"
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000610 "ACD:E:F:GI:KL:MNO:PQ:R:S:TVw:W:XYy")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100611 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000612 case '1':
613 options.protocol = SSH_PROTO_1;
614 break;
Damien Miller4af51302000-04-16 11:18:38 +1000615 case '2':
616 options.protocol = SSH_PROTO_2;
617 break;
Damien Miller34132e52000-01-14 15:45:46 +1100618 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000619 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100620 break;
Damien Miller34132e52000-01-14 15:45:46 +1100621 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000622 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100623 break;
Damien Miller95def091999-11-25 00:26:21 +1100624 case 'n':
625 stdin_null_flag = 1;
626 break;
Damien Miller95def091999-11-25 00:26:21 +1100627 case 'f':
628 fork_after_authentication_flag = 1;
629 stdin_null_flag = 1;
630 break;
Damien Miller95def091999-11-25 00:26:21 +1100631 case 'x':
632 options.forward_x11 = 0;
633 break;
Damien Miller95def091999-11-25 00:26:21 +1100634 case 'X':
635 options.forward_x11 = 1;
636 break;
Damien Millere272a5b2008-11-03 19:22:37 +1100637 case 'y':
638 use_syslog = 1;
639 break;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000640 case 'E':
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000641 logfile = optarg;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000642 break;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000643 case 'G':
644 config_test = 1;
645 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000646 case 'Y':
647 options.forward_x11 = 1;
648 options.forward_x11_trusted = 1;
649 break;
Damien Miller95def091999-11-25 00:26:21 +1100650 case 'g':
Damien Miller7acefbb2014-07-18 14:11:24 +1000651 options.fwd_opts.gateway_ports = 1;
Damien Miller95def091999-11-25 00:26:21 +1100652 break;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100653 case 'O':
Damien Millere1537f92010-01-26 13:26:22 +1100654 if (stdio_forward_host != NULL)
655 fatal("Cannot specify multiplexing "
656 "command with -W");
657 else if (muxclient_command != 0)
658 fatal("Multiplexing command already specified");
Darren Tucker7ebfc102004-11-07 20:06:19 +1100659 if (strcmp(optarg, "check") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000660 muxclient_command = SSHMUX_COMMAND_ALIVE_CHECK;
Damien Miller388f6fc2010-05-21 14:57:35 +1000661 else if (strcmp(optarg, "forward") == 0)
662 muxclient_command = SSHMUX_COMMAND_FORWARD;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100663 else if (strcmp(optarg, "exit") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000664 muxclient_command = SSHMUX_COMMAND_TERMINATE;
Damien Miller6c3eec72011-05-05 14:16:22 +1000665 else if (strcmp(optarg, "stop") == 0)
666 muxclient_command = SSHMUX_COMMAND_STOP;
Damien Millerf6dff7c2011-09-22 21:38:52 +1000667 else if (strcmp(optarg, "cancel") == 0)
668 muxclient_command = SSHMUX_COMMAND_CANCEL_FWD;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100669 else
670 fatal("Invalid multiplex command.");
671 break;
Damien Miller147bba32002-09-04 16:46:06 +1000672 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100673 options.use_privileged_port = 0;
674 break;
Damien Millerd937dc02013-12-05 10:19:54 +1100675 case 'Q':
Damien Millerea111192013-04-23 19:24:32 +1000676 cp = NULL;
Damien Millerd937dc02013-12-05 10:19:54 +1100677 if (strcmp(optarg, "cipher") == 0)
Damien Miller0fde8ac2013-11-21 14:12:23 +1100678 cp = cipher_alg_list('\n', 0);
Damien Millerd937dc02013-12-05 10:19:54 +1100679 else if (strcmp(optarg, "cipher-auth") == 0)
Damien Miller0fde8ac2013-11-21 14:12:23 +1100680 cp = cipher_alg_list('\n', 1);
Damien Millerd937dc02013-12-05 10:19:54 +1100681 else if (strcmp(optarg, "mac") == 0)
Damien Miller690d9892013-11-08 12:16:49 +1100682 cp = mac_alg_list('\n');
Damien Millerd937dc02013-12-05 10:19:54 +1100683 else if (strcmp(optarg, "kex") == 0)
Damien Miller690d9892013-11-08 12:16:49 +1100684 cp = kex_alg_list('\n');
Damien Millerd937dc02013-12-05 10:19:54 +1100685 else if (strcmp(optarg, "key") == 0)
Damien Miller5be9d9e2013-12-07 11:24:01 +1100686 cp = key_alg_list(0, 0);
687 else if (strcmp(optarg, "key-cert") == 0)
688 cp = key_alg_list(1, 0);
689 else if (strcmp(optarg, "key-plain") == 0)
690 cp = key_alg_list(0, 1);
djm@openbsd.org68d2dfc2015-03-03 06:48:58 +0000691 else if (strcmp(optarg, "protocol-version") == 0) {
692#ifdef WITH_SSH1
693 cp = xstrdup("1\n2");
694#else
695 cp = xstrdup("2");
696#endif
697 }
Damien Millerea111192013-04-23 19:24:32 +1000698 if (cp == NULL)
699 fatal("Unsupported query \"%s\"", optarg);
700 printf("%s\n", cp);
701 free(cp);
702 exit(0);
703 break;
Damien Miller95def091999-11-25 00:26:21 +1100704 case 'a':
705 options.forward_agent = 0;
706 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000707 case 'A':
708 options.forward_agent = 1;
709 break;
Damien Miller95def091999-11-25 00:26:21 +1100710 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100711 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100712 break;
Darren Tucker415bddc2007-06-12 23:43:16 +1000713 case 'K':
714 options.gss_authentication = 1;
715 options.gss_deleg_creds = 1;
716 break;
Damien Miller95def091999-11-25 00:26:21 +1100717 case 'i':
dtucker@openbsd.org03239c12015-10-25 23:42:00 +0000718 p = tilde_expand_filename(optarg, original_real_uid);
719 if (stat(p, &st) < 0)
Damien Millerf4614452001-07-14 12:18:10 +1000720 fprintf(stderr, "Warning: Identity file %s "
dtucker@openbsd.org03239c12015-10-25 23:42:00 +0000721 "not accessible: %s.\n", p,
Damien Miller3eb48b62005-03-01 21:15:46 +1100722 strerror(errno));
dtucker@openbsd.org03239c12015-10-25 23:42:00 +0000723 else
724 add_identity_file(&options, NULL, p, 1);
725 free(p);
Damien Miller95def091999-11-25 00:26:21 +1100726 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000727 case 'I':
Damien Miller7ea845e2010-02-12 09:21:02 +1100728#ifdef ENABLE_PKCS11
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000729 free(options.pkcs11_provider);
Damien Miller7ea845e2010-02-12 09:21:02 +1100730 options.pkcs11_provider = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000731#else
Damien Miller7ea845e2010-02-12 09:21:02 +1100732 fprintf(stderr, "no support for PKCS#11.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000733#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000734 break;
Damien Miller95def091999-11-25 00:26:21 +1100735 case 't':
Damien Miller21771e22011-05-15 08:45:50 +1000736 if (options.request_tty == REQUEST_TTY_YES)
737 options.request_tty = REQUEST_TTY_FORCE;
738 else
739 options.request_tty = REQUEST_TTY_YES;
Damien Miller95def091999-11-25 00:26:21 +1100740 break;
Damien Miller95def091999-11-25 00:26:21 +1100741 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000742 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100743 debug_flag = 1;
744 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000745 } else {
746 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
747 options.log_level++;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000748 }
Damien Miller03d4d7e2013-04-23 15:21:06 +1000749 break;
Damien Miller95def091999-11-25 00:26:21 +1100750 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100751 fprintf(stderr, "%s, %s\n",
Damien Miller1f0311c2014-05-15 14:24:09 +1000752 SSH_RELEASE,
753#ifdef WITH_OPENSSL
754 SSLeay_version(SSLEAY_VERSION)
755#else
756 "without OpenSSL"
757#endif
758 );
Damien Miller95def091999-11-25 00:26:21 +1100759 if (opt == 'V')
760 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100761 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100762 case 'w':
Damien Miller7b58e802005-12-13 19:33:19 +1100763 if (options.tun_open == -1)
764 options.tun_open = SSH_TUNMODE_DEFAULT;
Damien Millerd27b9472005-12-13 19:29:02 +1100765 options.tun_local = a2tun(optarg, &options.tun_remote);
Damien Miller7b58e802005-12-13 19:33:19 +1100766 if (options.tun_local == SSH_TUNID_ERR) {
Darren Tuckerd6173c02008-06-13 04:52:53 +1000767 fprintf(stderr,
768 "Bad tun device '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100769 exit(255);
Damien Millerd27b9472005-12-13 19:29:02 +1100770 }
771 break;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100772 case 'W':
Damien Millere1537f92010-01-26 13:26:22 +1100773 if (stdio_forward_host != NULL)
774 fatal("stdio forward already specified");
775 if (muxclient_command != 0)
776 fatal("Cannot specify stdio forward with -O");
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100777 if (parse_forward(&fwd, optarg, 1, 0)) {
778 stdio_forward_host = fwd.listen_host;
779 stdio_forward_port = fwd.listen_port;
Darren Tuckera627d422013-06-02 07:31:17 +1000780 free(fwd.connect_host);
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100781 } else {
782 fprintf(stderr,
783 "Bad stdio forwarding specification '%s'\n",
784 optarg);
785 exit(255);
786 }
Damien Miller21771e22011-05-15 08:45:50 +1000787 options.request_tty = REQUEST_TTY_NO;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100788 no_shell_flag = 1;
789 options.clear_forwardings = 1;
790 options.exit_on_forward_failure = 1;
791 break;
Damien Miller95def091999-11-25 00:26:21 +1100792 case 'q':
793 options.log_level = SYSLOG_LEVEL_QUIET;
794 break;
Damien Miller95def091999-11-25 00:26:21 +1100795 case 'e':
796 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000797 (u_char) optarg[1] >= 64 &&
798 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000799 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100800 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000801 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100802 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000803 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100804 else {
Damien Millerf4614452001-07-14 12:18:10 +1000805 fprintf(stderr, "Bad escape character '%s'.\n",
806 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100807 exit(255);
Damien Miller95def091999-11-25 00:26:21 +1100808 }
809 break;
Damien Miller95def091999-11-25 00:26:21 +1100810 case 'c':
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000811 if (ciphers_valid(*optarg == '+' ?
812 optarg + 1 : optarg)) {
Damien Millereba71ba2000-04-29 23:57:08 +1000813 /* SSH2 only */
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000814 free(options.ciphers);
Damien Millereba71ba2000-04-29 23:57:08 +1000815 options.ciphers = xstrdup(optarg);
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000816 options.cipher = SSH_CIPHER_INVALID;
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000817 break;
Damien Miller95def091999-11-25 00:26:21 +1100818 }
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000819 /* SSH1 only */
820 options.cipher = cipher_number(optarg);
821 if (options.cipher == -1) {
822 fprintf(stderr, "Unknown cipher type '%s'\n",
823 optarg);
824 exit(255);
825 }
826 if (options.cipher == SSH_CIPHER_3DES)
827 options.ciphers = xstrdup("3des-cbc");
828 else if (options.cipher == SSH_CIPHER_BLOWFISH)
829 options.ciphers = xstrdup("blowfish-cbc");
830 else
831 options.ciphers = xstrdup(KEX_CLIENT_ENCRYPT);
Damien Miller95def091999-11-25 00:26:21 +1100832 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000833 case 'm':
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000834 if (mac_valid(optarg)) {
835 free(options.macs);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000836 options.macs = xstrdup(optarg);
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000837 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000838 fprintf(stderr, "Unknown mac type '%s'\n",
839 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100840 exit(255);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000841 }
842 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000843 case 'M':
Damien Millerd14b1e72005-06-16 13:19:41 +1000844 if (options.control_master == SSHCTL_MASTER_YES)
845 options.control_master = SSHCTL_MASTER_ASK;
846 else
847 options.control_master = SSHCTL_MASTER_YES;
Damien Miller0e220db2004-06-15 10:34:08 +1000848 break;
Damien Miller95def091999-11-25 00:26:21 +1100849 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000850 options.port = a2port(optarg);
Damien Miller3dc71ad2009-01-28 16:31:22 +1100851 if (options.port <= 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000852 fprintf(stderr, "Bad port '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100853 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000854 }
Damien Miller95def091999-11-25 00:26:21 +1100855 break;
Damien Miller95def091999-11-25 00:26:21 +1100856 case 'l':
857 options.user = optarg;
858 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000859
Damien Miller95def091999-11-25 00:26:21 +1100860 case 'L':
Damien Miller4bf648f2009-02-14 16:28:21 +1100861 if (parse_forward(&fwd, optarg, 0, 0))
Damien Millerf91ee4c2005-03-01 21:24:33 +1100862 add_local_forward(&options, &fwd);
863 else {
Damien Millerf4614452001-07-14 12:18:10 +1000864 fprintf(stderr,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100865 "Bad local forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000866 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100867 exit(255);
Ben Lindstrom1a174712001-09-12 17:56:15 +0000868 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100869 break;
870
871 case 'R':
Damien Miller4bf648f2009-02-14 16:28:21 +1100872 if (parse_forward(&fwd, optarg, 0, 1)) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100873 add_remote_forward(&options, &fwd);
874 } else {
875 fprintf(stderr,
876 "Bad remote forwarding specification "
877 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100878 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100879 }
Damien Miller95def091999-11-25 00:26:21 +1100880 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000881
882 case 'D':
Damien Miller4bf648f2009-02-14 16:28:21 +1100883 if (parse_forward(&fwd, optarg, 1, 0)) {
Damien Millera699d952008-11-03 19:27:34 +1100884 add_local_forward(&options, &fwd);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100885 } else {
Damien Millera699d952008-11-03 19:27:34 +1100886 fprintf(stderr,
887 "Bad dynamic forwarding specification "
888 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100889 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000890 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000891 break;
892
Damien Miller95def091999-11-25 00:26:21 +1100893 case 'C':
894 options.compression = 1;
895 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000896 case 'N':
897 no_shell_flag = 1;
Damien Miller21771e22011-05-15 08:45:50 +1000898 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000899 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000900 case 'T':
Damien Miller21771e22011-05-15 08:45:50 +1000901 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000902 break;
Damien Miller95def091999-11-25 00:26:21 +1100903 case 'o':
Damien Miller9836cf82003-12-17 16:30:06 +1100904 line = xstrdup(optarg);
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000905 if (process_config_line(&options, pw,
906 host ? host : "", host ? host : "", line,
907 "command-line", 0, NULL, SSHCONF_USERCONF) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100908 exit(255);
Darren Tuckera627d422013-06-02 07:31:17 +1000909 free(line);
Damien Miller95def091999-11-25 00:26:21 +1100910 break;
Damien Miller832562e2001-01-30 09:30:01 +1100911 case 's':
912 subsystem_flag = 1;
913 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000914 case 'S':
mmcc@openbsd.orgd59ce082015-12-10 17:08:40 +0000915 free(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +1000916 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000917 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000918 case 'b':
919 options.bind_address = optarg;
920 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000921 case 'F':
922 config = optarg;
923 break;
Damien Miller95def091999-11-25 00:26:21 +1100924 default:
925 usage();
926 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000927 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000928
Damien Millerf4614452001-07-14 12:18:10 +1000929 ac -= optind;
930 av += optind;
931
Darren Tuckerb8c884a2010-01-08 18:53:43 +1100932 if (ac > 0 && !host) {
Ben Lindstromc276c122002-12-23 02:14:51 +0000933 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000934 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000935 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000936 if (cp == NULL || cp == p)
937 usage();
938 options.user = p;
939 *cp = '\0';
Damien Miller0faf7472013-10-17 11:47:23 +1100940 host = xstrdup(++cp);
Damien Millerf4614452001-07-14 12:18:10 +1000941 } else
Damien Miller0faf7472013-10-17 11:47:23 +1100942 host = xstrdup(*av);
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000943 if (ac > 1) {
944 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000945 goto again;
946 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000947 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000948 }
949
Damien Miller95def091999-11-25 00:26:21 +1100950 /* Check that we got a host name. */
951 if (!host)
952 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000953
Damien Miller0faf7472013-10-17 11:47:23 +1100954 host_arg = xstrdup(host);
955
Damien Miller1f0311c2014-05-15 14:24:09 +1000956#ifdef WITH_OPENSSL
Damien Miller4314c2b2010-09-10 11:12:09 +1000957 OpenSSL_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100958 ERR_load_crypto_strings();
Damien Miller1f0311c2014-05-15 14:24:09 +1000959#endif
Damien Millercb5e44a2000-09-29 12:12:36 +1100960
Damien Miller95def091999-11-25 00:26:21 +1100961 /* Initialize the command to execute on remote host. */
962 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000963
Damien Miller5428f641999-11-25 11:54:57 +1100964 /*
965 * Save the command to execute on the remote host in a buffer. There
966 * is no limit on the length of the command, except by the maximum
967 * packet size. Also sets the tty flag if there is no command.
968 */
Damien Millerf4614452001-07-14 12:18:10 +1000969 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100970 /* No command specified - execute shell on a tty. */
Damien Miller832562e2001-01-30 09:30:01 +1100971 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000972 fprintf(stderr,
973 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100974 usage();
975 }
Damien Miller95def091999-11-25 00:26:21 +1100976 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000977 /* A command has been specified. Store it into the buffer. */
978 for (i = 0; i < ac; i++) {
979 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100980 buffer_append(&command, " ", 1);
981 buffer_append(&command, av[i], strlen(av[i]));
982 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000983 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000984
Damien Miller95def091999-11-25 00:26:21 +1100985 /* Cannot fork to background if no command. */
Darren Tuckerd6173c02008-06-13 04:52:53 +1000986 if (fork_after_authentication_flag && buffer_len(&command) == 0 &&
987 !no_shell_flag)
988 fatal("Cannot fork into background without a command "
989 "to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000990
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000991 /*
992 * Initialize "log" output. Since we are the client all output
Damien Miller03d4d7e2013-04-23 15:21:06 +1000993 * goes to stderr unless otherwise specified by -y or -E.
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000994 */
Damien Miller03d4d7e2013-04-23 15:21:06 +1000995 if (use_syslog && logfile != NULL)
996 fatal("Can't specify both -y and -E");
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000997 if (logfile != NULL)
Damien Miller03d4d7e2013-04-23 15:21:06 +1000998 log_redirect_stderr_to(logfile);
Darren Tucker72efd742009-06-21 17:48:00 +1000999 log_init(argv0,
Darren Tuckerd6173c02008-06-13 04:52:53 +10001000 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
Damien Millere272a5b2008-11-03 19:22:37 +11001001 SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001002
Damien Miller03d4d7e2013-04-23 15:21:06 +10001003 if (debug_flag)
Damien Miller1f0311c2014-05-15 14:24:09 +10001004 logit("%s, %s", SSH_RELEASE,
1005#ifdef WITH_OPENSSL
1006 SSLeay_version(SSLEAY_VERSION)
1007#else
1008 "without OpenSSL"
1009#endif
1010 );
Damien Miller03d4d7e2013-04-23 15:21:06 +10001011
Damien Miller13f97b22014-02-24 15:57:55 +11001012 /* Parse the configuration files */
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001013 process_config_files(host_arg, pw, 0);
Ben Lindstrom83f07d12001-10-03 17:22:29 +00001014
Damien Miller13f97b22014-02-24 15:57:55 +11001015 /* Hostname canonicalisation needs a few options filled. */
1016 fill_default_options_for_canonicalization(&options);
1017
1018 /* If the user has replaced the hostname then take it into use now */
1019 if (options.hostname != NULL) {
1020 /* NB. Please keep in sync with readconf.c:match_cfg_line() */
1021 cp = percent_expand(options.hostname,
1022 "h", host, (char *)NULL);
1023 free(host);
1024 host = cp;
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001025 free(options.hostname);
1026 options.hostname = xstrdup(host);
Damien Miller13f97b22014-02-24 15:57:55 +11001027 }
1028
1029 /* If canonicalization requested then try to apply it */
1030 lowercase(host);
1031 if (options.canonicalize_hostname != SSH_CANONICALISE_NO)
1032 addrs = resolve_canonicalize(&host, options.port);
1033
1034 /*
Damien Miller08b57c62014-02-27 10:17:13 +11001035 * If CanonicalizePermittedCNAMEs have been specified but
1036 * other canonicalization did not happen (by not being requested
1037 * or by failing with fallback) then the hostname may still be changed
1038 * as a result of CNAME following.
1039 *
1040 * Try to resolve the bare hostname name using the system resolver's
1041 * usual search rules and then apply the CNAME follow rules.
1042 *
1043 * Skip the lookup if a ProxyCommand is being used unless the user
1044 * has specifically requested canonicalisation for this case via
1045 * CanonicalizeHostname=always
Damien Miller13f97b22014-02-24 15:57:55 +11001046 */
Damien Miller08b57c62014-02-27 10:17:13 +11001047 if (addrs == NULL && options.num_permitted_cnames != 0 &&
1048 (option_clear_or_none(options.proxy_command) ||
Damien Miller13f97b22014-02-24 15:57:55 +11001049 options.canonicalize_hostname == SSH_CANONICALISE_ALWAYS)) {
Damien Miller19439e92014-07-02 15:28:40 +10001050 if ((addrs = resolve_host(host, options.port,
1051 option_clear_or_none(options.proxy_command),
1052 cname, sizeof(cname))) == NULL) {
1053 /* Don't fatal proxied host names not in the DNS */
1054 if (option_clear_or_none(options.proxy_command))
1055 cleanup_exit(255); /* logged in resolve_host */
1056 } else
1057 check_follow_cname(&host, cname);
Damien Miller13f97b22014-02-24 15:57:55 +11001058 }
1059
1060 /*
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001061 * If canonicalisation is enabled then re-parse the configuration
1062 * files as new stanzas may match.
Damien Miller13f97b22014-02-24 15:57:55 +11001063 */
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001064 if (options.canonicalize_hostname != 0) {
1065 debug("Re-reading configuration after hostname "
1066 "canonicalisation");
1067 free(options.hostname);
1068 options.hostname = xstrdup(host);
1069 process_config_files(host_arg, pw, 1);
1070 /*
1071 * Address resolution happens early with canonicalisation
1072 * enabled and the port number may have changed since, so
1073 * reset it in address list
1074 */
1075 if (addrs != NULL && options.port > 0)
1076 set_addrinfo_port(addrs, options.port);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +00001077 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001078
Damien Miller95def091999-11-25 00:26:21 +11001079 /* Fill configuration defaults. */
1080 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001081
Damien Miller13f97b22014-02-24 15:57:55 +11001082 if (options.port == 0)
1083 options.port = default_ssh_port();
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001084 channel_set_af(options.address_family);
1085
Damien Millere9fc72e2013-10-15 12:14:12 +11001086 /* Tidy and check options */
1087 if (options.host_key_alias != NULL)
1088 lowercase(options.host_key_alias);
1089 if (options.proxy_command != NULL &&
1090 strcmp(options.proxy_command, "-") == 0 &&
1091 options.proxy_use_fdpass)
1092 fatal("ProxyCommand=- and ProxyUseFDPass are incompatible");
djm@openbsd.org44732de2015-02-20 22:17:21 +00001093 if (options.control_persist &&
1094 options.update_hostkeys == SSH_UPDATE_HOSTKEYS_ASK) {
1095 debug("UpdateHostKeys=ask is incompatible with ControlPersist; "
1096 "disabling");
1097 options.update_hostkeys = 0;
1098 }
djm@openbsd.org88b6fcd2015-11-19 08:23:27 +00001099 if (options.connection_attempts <= 0)
1100 fatal("Invalid number of ConnectionAttempts");
Damien Miller0faf7472013-10-17 11:47:23 +11001101#ifndef HAVE_CYGWIN
1102 if (original_effective_uid != 0)
1103 options.use_privileged_port = 0;
1104#endif
Damien Millere9fc72e2013-10-15 12:14:12 +11001105
Damien Miller95def091999-11-25 00:26:21 +11001106 /* reinit */
Darren Tucker72efd742009-06-21 17:48:00 +10001107 log_init(argv0, options.log_level, SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001108
Damien Millerfff9f092012-07-06 13:45:01 +10001109 if (options.request_tty == REQUEST_TTY_YES ||
1110 options.request_tty == REQUEST_TTY_FORCE)
1111 tty_flag = 1;
1112
1113 /* Allocate a tty by default if no command specified. */
1114 if (buffer_len(&command) == 0)
1115 tty_flag = options.request_tty != REQUEST_TTY_NO;
1116
1117 /* Force no tty */
1118 if (options.request_tty == REQUEST_TTY_NO || muxclient_command != 0)
1119 tty_flag = 0;
1120 /* Do not allocate a tty if stdin is not a tty. */
1121 if ((!isatty(fileno(stdin)) || stdin_null_flag) &&
1122 options.request_tty != REQUEST_TTY_FORCE) {
1123 if (tty_flag)
1124 logit("Pseudo-terminal will not be allocated because "
1125 "stdin is not a terminal.");
1126 tty_flag = 0;
1127 }
1128
Damien Miller60bc5172001-03-19 09:38:15 +11001129 seed_rng();
1130
Damien Miller95def091999-11-25 00:26:21 +11001131 if (options.user == NULL)
1132 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001133
Damien Millerdfc85fa2011-05-15 08:44:02 +10001134 if (gethostname(thishost, sizeof(thishost)) == -1)
1135 fatal("gethostname: %s", strerror(errno));
1136 strlcpy(shorthost, thishost, sizeof(shorthost));
1137 shorthost[strcspn(thishost, ".")] = '\0';
1138 snprintf(portstr, sizeof(portstr), "%d", options.port);
djm@openbsd.org674b3b62015-09-11 03:47:28 +00001139 snprintf(uidstr, sizeof(uidstr), "%d", pw->pw_uid);
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001140
Damien Miller9c386432014-07-03 21:27:46 +10001141 if ((md = ssh_digest_start(SSH_DIGEST_SHA1)) == NULL ||
1142 ssh_digest_update(md, thishost, strlen(thishost)) < 0 ||
1143 ssh_digest_update(md, host, strlen(host)) < 0 ||
1144 ssh_digest_update(md, portstr, strlen(portstr)) < 0 ||
1145 ssh_digest_update(md, options.user, strlen(options.user)) < 0 ||
1146 ssh_digest_final(md, conn_hash, sizeof(conn_hash)) < 0)
1147 fatal("%s: mux digest failed", __func__);
1148 ssh_digest_free(md);
1149 conn_hash_hex = tohex(conn_hash, ssh_digest_bytes(SSH_DIGEST_SHA1));
1150
Damien Millerdfc85fa2011-05-15 08:44:02 +10001151 if (options.local_command != NULL) {
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001152 debug3("expanding LocalCommand: %s", options.local_command);
1153 cp = options.local_command;
Damien Miller9c386432014-07-03 21:27:46 +10001154 options.local_command = percent_expand(cp,
1155 "C", conn_hash_hex,
1156 "L", shorthost,
1157 "d", pw->pw_dir,
1158 "h", host,
1159 "l", thishost,
1160 "n", host_arg,
1161 "p", portstr,
1162 "r", options.user,
1163 "u", pw->pw_name,
Damien Millerdfc85fa2011-05-15 08:44:02 +10001164 (char *)NULL);
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001165 debug3("expanded LocalCommand: %s", options.local_command);
Darren Tuckera627d422013-06-02 07:31:17 +10001166 free(cp);
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001167 }
1168
Damien Miller0e220db2004-06-15 10:34:08 +10001169 if (options.control_path != NULL) {
Damien Miller6476cad2005-06-16 13:18:34 +10001170 cp = tilde_expand_filename(options.control_path,
1171 original_real_uid);
Darren Tuckera627d422013-06-02 07:31:17 +10001172 free(options.control_path);
Damien Miller9c386432014-07-03 21:27:46 +10001173 options.control_path = percent_expand(cp,
1174 "C", conn_hash_hex,
1175 "L", shorthost,
1176 "h", host,
1177 "l", thishost,
1178 "n", host_arg,
1179 "p", portstr,
1180 "r", options.user,
1181 "u", pw->pw_name,
djm@openbsd.org674b3b62015-09-11 03:47:28 +00001182 "i", uidstr,
Damien Millerdfc85fa2011-05-15 08:44:02 +10001183 (char *)NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10001184 free(cp);
Damien Miller0e220db2004-06-15 10:34:08 +10001185 }
Damien Miller9c386432014-07-03 21:27:46 +10001186 free(conn_hash_hex);
1187
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001188 if (config_test) {
1189 dump_client_config(&options, host);
1190 exit(0);
1191 }
1192
Damien Millerb1cbfa22008-05-19 16:00:08 +10001193 if (muxclient_command != 0 && options.control_path == NULL)
Darren Tucker0814d312005-06-01 23:08:51 +10001194 fatal("No ControlPath specified for \"-O\" command");
Damien Millerd14b1e72005-06-16 13:19:41 +10001195 if (options.control_path != NULL)
Damien Millerb1cbfa22008-05-19 16:00:08 +10001196 muxclient(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +10001197
Damien Miller08b57c62014-02-27 10:17:13 +11001198 /*
1199 * If hostname canonicalisation was not enabled, then we may not
1200 * have yet resolved the hostname. Do so now.
1201 */
1202 if (addrs == NULL && options.proxy_command == NULL) {
djm@openbsd.orga85768a2015-09-04 04:56:09 +00001203 debug2("resolving \"%s\" port %d", host, options.port);
Damien Miller08b57c62014-02-27 10:17:13 +11001204 if ((addrs = resolve_host(host, options.port, 1,
1205 cname, sizeof(cname))) == NULL)
1206 cleanup_exit(255); /* resolve_host logs the error */
1207 }
1208
Damien Miller67bd0622007-09-17 12:06:57 +10001209 timeout_ms = options.connection_timeout * 1000;
1210
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001211 /* Open a connection to the remote host. */
Damien Miller0faf7472013-10-17 11:47:23 +11001212 if (ssh_connect(host, addrs, &hostaddr, options.port,
1213 options.address_family, options.connection_attempts,
1214 &timeout_ms, options.tcp_keep_alive,
1215 options.use_privileged_port) != 0)
1216 exit(255);
1217
Damien Miller28631ce2013-10-26 10:07:56 +11001218 if (addrs != NULL)
1219 freeaddrinfo(addrs);
1220
Damien Miller0faf7472013-10-17 11:47:23 +11001221 packet_set_timeout(options.server_alive_interval,
1222 options.server_alive_count_max);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001223
djm@openbsd.org95767262016-03-07 19:02:43 +00001224 ssh = active_state; /* XXX */
1225
Damien Miller67bd0622007-09-17 12:06:57 +10001226 if (timeout_ms > 0)
1227 debug3("timeout: %d ms remain after connect", timeout_ms);
1228
Damien Miller5428f641999-11-25 11:54:57 +11001229 /*
1230 * If we successfully made the connection, load the host private key
1231 * in case we will need it later for combined rsa-rhosts
1232 * authentication. This must be done before releasing extra
1233 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +00001234 * If we cannot access the private keys, load the public keys
1235 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +11001236 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001237 sensitive_data.nkeys = 0;
1238 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001239 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +00001240 if (options.rhosts_rsa_authentication ||
1241 options.hostbased_authentication) {
Damien Miller0fa47cf2013-12-29 17:53:39 +11001242 sensitive_data.nkeys = 9;
Damien Millerddd63ab2006-03-31 23:10:51 +11001243 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001244 sizeof(Key));
Damien Miller6af914a2010-09-10 11:39:26 +10001245 for (i = 0; i < sensitive_data.nkeys; i++)
1246 sensitive_data.keys[i] = NULL;
Ben Lindstromf9c48842002-06-11 16:37:51 +00001247
1248 PRIV_START;
djm@openbsd.org6091c362015-12-11 03:20:09 +00001249#if WITH_SSH1
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001250 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Darren Tucker232b76f2006-05-06 17:41:51 +10001251 _PATH_HOST_KEY_FILE, "", NULL, NULL);
djm@openbsd.org6091c362015-12-11 03:20:09 +00001252#endif
Damien Miller6af914a2010-09-10 11:39:26 +10001253#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001254 sensitive_data.keys[1] = key_load_private_cert(KEY_ECDSA,
Damien Millereb8b60e2010-08-31 22:41:14 +10001255 _PATH_HOST_ECDSA_KEY_FILE, "", NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001256#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001257 sensitive_data.keys[2] = key_load_private_cert(KEY_ED25519,
1258 _PATH_HOST_ED25519_KEY_FILE, "", NULL);
Damien Millereb8b60e2010-08-31 22:41:14 +10001259 sensitive_data.keys[3] = key_load_private_cert(KEY_RSA,
Damien Millerc1583312010-08-05 13:04:50 +10001260 _PATH_HOST_RSA_KEY_FILE, "", NULL);
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001261 sensitive_data.keys[4] = key_load_private_cert(KEY_DSA,
1262 _PATH_HOST_DSA_KEY_FILE, "", NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001263#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001264 sensitive_data.keys[5] = key_load_private_type(KEY_ECDSA,
Damien Millereb8b60e2010-08-31 22:41:14 +10001265 _PATH_HOST_ECDSA_KEY_FILE, "", NULL, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001266#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001267 sensitive_data.keys[6] = key_load_private_type(KEY_ED25519,
1268 _PATH_HOST_ED25519_KEY_FILE, "", NULL, NULL);
Damien Miller0fa47cf2013-12-29 17:53:39 +11001269 sensitive_data.keys[7] = key_load_private_type(KEY_RSA,
Darren Tucker232b76f2006-05-06 17:41:51 +10001270 _PATH_HOST_RSA_KEY_FILE, "", NULL, NULL);
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001271 sensitive_data.keys[8] = key_load_private_type(KEY_DSA,
1272 _PATH_HOST_DSA_KEY_FILE, "", NULL, NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +00001273 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001274
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +00001275 if (options.hostbased_authentication == 1 &&
1276 sensitive_data.keys[0] == NULL &&
Damien Millereb8b60e2010-08-31 22:41:14 +10001277 sensitive_data.keys[5] == NULL &&
Damien Miller5be9d9e2013-12-07 11:24:01 +11001278 sensitive_data.keys[6] == NULL &&
Damien Miller0fa47cf2013-12-29 17:53:39 +11001279 sensitive_data.keys[7] == NULL &&
1280 sensitive_data.keys[8] == NULL) {
Damien Miller6af914a2010-09-10 11:39:26 +10001281#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001282 sensitive_data.keys[1] = key_load_cert(
Damien Millereb8b60e2010-08-31 22:41:14 +10001283 _PATH_HOST_ECDSA_KEY_FILE);
Damien Miller6af914a2010-09-10 11:39:26 +10001284#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001285 sensitive_data.keys[2] = key_load_cert(
1286 _PATH_HOST_ED25519_KEY_FILE);
Damien Millereb8b60e2010-08-31 22:41:14 +10001287 sensitive_data.keys[3] = key_load_cert(
Damien Millerc1583312010-08-05 13:04:50 +10001288 _PATH_HOST_RSA_KEY_FILE);
Damien Miller0fa47cf2013-12-29 17:53:39 +11001289 sensitive_data.keys[4] = key_load_cert(
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001290 _PATH_HOST_DSA_KEY_FILE);
Damien Miller6af914a2010-09-10 11:39:26 +10001291#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001292 sensitive_data.keys[5] = key_load_public(
Damien Millereb8b60e2010-08-31 22:41:14 +10001293 _PATH_HOST_ECDSA_KEY_FILE, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001294#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001295 sensitive_data.keys[6] = key_load_public(
1296 _PATH_HOST_ED25519_KEY_FILE, NULL);
Damien Miller5be9d9e2013-12-07 11:24:01 +11001297 sensitive_data.keys[7] = key_load_public(
Damien Miller0fa47cf2013-12-29 17:53:39 +11001298 _PATH_HOST_RSA_KEY_FILE, NULL);
1299 sensitive_data.keys[8] = key_load_public(
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001300 _PATH_HOST_DSA_KEY_FILE, NULL);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001301 sensitive_data.external_keysign = 1;
1302 }
Damien Miller95def091999-11-25 00:26:21 +11001303 }
Damien Miller5428f641999-11-25 11:54:57 +11001304 /*
1305 * Get rid of any extra privileges that we may have. We will no
1306 * longer need them. Also, extra privileges could make it very hard
1307 * to read identity files and other non-world-readable files from the
1308 * user's home directory if it happens to be on a NFS volume where
1309 * root is mapped to nobody.
1310 */
Darren Tucker25f60a72004-08-15 17:23:34 +10001311 if (original_effective_uid == 0) {
1312 PRIV_START;
1313 permanently_set_uid(pw);
1314 }
Damien Miller95def091999-11-25 00:26:21 +11001315
Damien Miller5428f641999-11-25 11:54:57 +11001316 /*
1317 * Now that we are back to our own permissions, create ~/.ssh
Damien Miller788f2122005-11-05 15:14:59 +11001318 * directory if it doesn't already exist.
Damien Miller5428f641999-11-25 11:54:57 +11001319 */
Darren Tucker45c66d72011-11-04 10:50:40 +11001320 if (config == NULL) {
1321 r = snprintf(buf, sizeof buf, "%s%s%s", pw->pw_dir,
1322 strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
1323 if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) < 0) {
Darren Tucker8ccb7392010-09-10 12:28:24 +10001324#ifdef WITH_SELINUX
Darren Tucker45c66d72011-11-04 10:50:40 +11001325 ssh_selinux_setfscreatecon(buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001326#endif
Darren Tucker45c66d72011-11-04 10:50:40 +11001327 if (mkdir(buf, 0700) < 0)
1328 error("Could not create directory '%.200s'.",
1329 buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001330#ifdef WITH_SELINUX
Darren Tucker45c66d72011-11-04 10:50:40 +11001331 ssh_selinux_setfscreatecon(NULL);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001332#endif
Darren Tucker45c66d72011-11-04 10:50:40 +11001333 }
Darren Tucker8ccb7392010-09-10 12:28:24 +10001334 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001335 /* load options.identity_files */
1336 load_public_identity_files();
1337
markus@openbsd.orgb02ad1c2016-05-04 12:21:53 +00001338 /* optionally set the SSH_AUTHSOCKET_ENV_NAME varibale */
1339 if (options.identity_agent) {
1340 if (strcmp(options.identity_agent, "none") == 0) {
1341 unsetenv(SSH_AUTHSOCKET_ENV_NAME);
1342 } else {
1343 p = tilde_expand_filename(options.identity_agent,
1344 original_real_uid);
1345 cp = percent_expand(p, "d", pw->pw_dir,
1346 "u", pw->pw_name, "l", thishost, "h", host,
1347 "r", options.user, (char *)NULL);
1348 setenv(SSH_AUTHSOCKET_ENV_NAME, cp, 1);
1349 free(cp);
1350 free(p);
1351 }
1352 }
1353
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001354 /* Expand ~ in known host file names. */
Damien Miller295ee632011-05-29 21:42:31 +10001355 tilde_expand_paths(options.system_hostfiles,
1356 options.num_system_hostfiles);
1357 tilde_expand_paths(options.user_hostfiles, options.num_user_hostfiles);
Damien Miller95def091999-11-25 00:26:21 +11001358
Damien Miller07cd5892001-11-12 10:52:03 +11001359 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
Damien Miller857b02e2010-09-24 22:02:56 +10001360 signal(SIGCHLD, main_sigchld_handler);
Damien Miller07cd5892001-11-12 10:52:03 +11001361
Darren Tuckerd6173c02008-06-13 04:52:53 +10001362 /* Log into the remote system. Never returns if the login fails. */
Damien Miller67bd0622007-09-17 12:06:57 +10001363 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr,
Damien Millerd925dcd2010-12-01 12:21:51 +11001364 options.port, pw, timeout_ms);
Damien Miller95def091999-11-25 00:26:21 +11001365
Damien Miller383ffe62010-06-26 10:02:03 +10001366 if (packet_connection_is_on_socket()) {
1367 verbose("Authenticated to %s ([%s]:%d).", host,
djm@openbsd.org95767262016-03-07 19:02:43 +00001368 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
Damien Miller383ffe62010-06-26 10:02:03 +10001369 } else {
1370 verbose("Authenticated to %s (via proxy).", host);
1371 }
1372
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001373 /* We no longer need the private host keys. Clear them now. */
1374 if (sensitive_data.nkeys != 0) {
1375 for (i = 0; i < sensitive_data.nkeys; i++) {
1376 if (sensitive_data.keys[i] != NULL) {
1377 /* Destroys contents safely */
1378 debug3("clear hostkey %d", i);
1379 key_free(sensitive_data.keys[i]);
1380 sensitive_data.keys[i] = NULL;
1381 }
1382 }
Darren Tuckera627d422013-06-02 07:31:17 +10001383 free(sensitive_data.keys);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001384 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +00001385 for (i = 0; i < options.num_identity_files; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +10001386 free(options.identity_files[i]);
1387 options.identity_files[i] = NULL;
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +00001388 if (options.identity_keys[i]) {
1389 key_free(options.identity_keys[i]);
1390 options.identity_keys[i] = NULL;
1391 }
1392 }
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001393 for (i = 0; i < options.num_certificate_files; i++) {
1394 free(options.certificate_files[i]);
1395 options.certificate_files[i] = NULL;
1396 }
Damien Miller95def091999-11-25 00:26:21 +11001397
Damien Miller1383bd82000-04-06 12:32:37 +10001398 exit_status = compat20 ? ssh_session2() : ssh_session();
1399 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +10001400
Damien Millerb1cbfa22008-05-19 16:00:08 +10001401 if (options.control_path != NULL && muxserver_sock != -1)
Damien Miller0e220db2004-06-15 10:34:08 +10001402 unlink(options.control_path);
1403
Damien Millera41ccca2010-10-07 22:07:32 +11001404 /* Kill ProxyCommand if it is running. */
1405 ssh_kill_proxy_command();
Damien Miller8c4e18a2002-09-19 12:05:02 +10001406
Damien Miller1383bd82000-04-06 12:32:37 +10001407 return exit_status;
1408}
1409
Damien Millere11e1ea2010-08-03 16:04:46 +10001410static void
1411control_persist_detach(void)
1412{
1413 pid_t pid;
djm@openbsd.orgd2d6bf82016-04-29 08:07:53 +00001414 int devnull, keep_stderr;
Damien Millere11e1ea2010-08-03 16:04:46 +10001415
1416 debug("%s: backgrounding master process", __func__);
1417
1418 /*
1419 * master (current process) into the background, and make the
1420 * foreground process a client of the backgrounded master.
1421 */
1422 switch ((pid = fork())) {
1423 case -1:
1424 fatal("%s: fork: %s", __func__, strerror(errno));
1425 case 0:
1426 /* Child: master process continues mainloop */
1427 break;
1428 default:
1429 /* Parent: set up mux slave to connect to backgrounded master */
1430 debug2("%s: background process is %ld", __func__, (long)pid);
1431 stdin_null_flag = ostdin_null_flag;
Damien Miller21771e22011-05-15 08:45:50 +10001432 options.request_tty = orequest_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +10001433 tty_flag = otty_flag;
1434 close(muxserver_sock);
1435 muxserver_sock = -1;
Damien Miller5929c522010-09-10 11:17:02 +10001436 options.control_master = SSHCTL_MASTER_NO;
Damien Millere11e1ea2010-08-03 16:04:46 +10001437 muxclient(options.control_path);
1438 /* muxclient() doesn't return on success. */
1439 fatal("Failed to connect to new control master");
1440 }
Damien Miller00d9ae22010-08-17 01:59:31 +10001441 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
1442 error("%s: open(\"/dev/null\"): %s", __func__,
1443 strerror(errno));
1444 } else {
djm@openbsd.orgd2d6bf82016-04-29 08:07:53 +00001445 keep_stderr = log_is_on_stderr() && debug_flag;
Damien Miller00d9ae22010-08-17 01:59:31 +10001446 if (dup2(devnull, STDIN_FILENO) == -1 ||
djm@openbsd.orgd2d6bf82016-04-29 08:07:53 +00001447 dup2(devnull, STDOUT_FILENO) == -1 ||
1448 (!keep_stderr && dup2(devnull, STDERR_FILENO) == -1))
Damien Miller00d9ae22010-08-17 01:59:31 +10001449 error("%s: dup2: %s", __func__, strerror(errno));
1450 if (devnull > STDERR_FILENO)
1451 close(devnull);
1452 }
Damien Miller98e27dc2013-07-25 11:55:52 +10001453 daemon(1, 1);
Damien Millerea2c1a42011-06-03 12:10:22 +10001454 setproctitle("%s [mux]", options.control_path);
Damien Millere11e1ea2010-08-03 16:04:46 +10001455}
1456
1457/* Do fork() after authentication. Used by "ssh -f" */
1458static void
1459fork_postauth(void)
1460{
1461 if (need_controlpersist_detach)
1462 control_persist_detach();
1463 debug("forking to background");
1464 fork_after_authentication_flag = 0;
1465 if (daemon(1, 1) < 0)
1466 fatal("daemon() failed: %.200s", strerror(errno));
1467}
1468
Darren Tucker9f407c42008-06-13 04:50:27 +10001469/* Callback for remote forward global requests */
1470static void
1471ssh_confirm_remote_forward(int type, u_int32_t seq, void *ctxt)
1472{
Damien Miller7acefbb2014-07-18 14:11:24 +10001473 struct Forward *rfwd = (struct Forward *)ctxt;
Darren Tucker9f407c42008-06-13 04:50:27 +10001474
Damien Miller4bf648f2009-02-14 16:28:21 +11001475 /* XXX verbose() on failure? */
Damien Miller4b3ed642014-07-02 15:29:40 +10001476 debug("remote forward %s for: listen %s%s%d, connect %s:%d",
Darren Tucker9f407c42008-06-13 04:50:27 +10001477 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
Damien Miller7acefbb2014-07-18 14:11:24 +10001478 rfwd->listen_path ? rfwd->listen_path :
1479 rfwd->listen_host ? rfwd->listen_host : "",
1480 (rfwd->listen_path || rfwd->listen_host) ? ":" : "",
1481 rfwd->listen_port, rfwd->connect_path ? rfwd->connect_path :
1482 rfwd->connect_host, rfwd->connect_port);
1483 if (rfwd->listen_path == NULL && rfwd->listen_port == 0) {
Darren Tucker68afb8c2011-10-02 18:59:03 +11001484 if (type == SSH2_MSG_REQUEST_SUCCESS) {
1485 rfwd->allocated_port = packet_get_int();
1486 logit("Allocated port %u for remote forward to %s:%d",
1487 rfwd->allocated_port,
1488 rfwd->connect_host, rfwd->connect_port);
1489 channel_update_permitted_opens(rfwd->handle,
1490 rfwd->allocated_port);
1491 } else {
1492 channel_update_permitted_opens(rfwd->handle, -1);
1493 }
Damien Miller4bf648f2009-02-14 16:28:21 +11001494 }
1495
Darren Tucker9f407c42008-06-13 04:50:27 +10001496 if (type == SSH2_MSG_REQUEST_FAILURE) {
Damien Miller7acefbb2014-07-18 14:11:24 +10001497 if (options.exit_on_forward_failure) {
1498 if (rfwd->listen_path != NULL)
1499 fatal("Error: remote port forwarding failed "
1500 "for listen path %s", rfwd->listen_path);
1501 else
1502 fatal("Error: remote port forwarding failed "
1503 "for listen port %d", rfwd->listen_port);
1504 } else {
1505 if (rfwd->listen_path != NULL)
1506 logit("Warning: remote port forwarding failed "
1507 "for listen path %s", rfwd->listen_path);
1508 else
1509 logit("Warning: remote port forwarding failed "
1510 "for listen port %d", rfwd->listen_port);
1511 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001512 }
Darren Tucker9a2a6092008-07-04 12:53:50 +10001513 if (++remote_forward_confirms_received == options.num_remote_forwards) {
Darren Tucker9f407c42008-06-13 04:50:27 +10001514 debug("All remote forwarding requests processed");
Damien Millere11e1ea2010-08-03 16:04:46 +10001515 if (fork_after_authentication_flag)
1516 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001517 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001518}
1519
Ben Lindstrombba81212001-06-25 05:01:22 +00001520static void
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001521client_cleanup_stdio_fwd(int id, void *arg)
1522{
1523 debug("stdio forwarding: done");
1524 cleanup_exit(0);
1525}
1526
Darren Tucker2d6665d2011-11-04 10:54:22 +11001527static void
Damien Miller357610d2014-07-18 15:04:10 +10001528ssh_stdio_confirm(int id, int success, void *arg)
1529{
1530 if (!success)
1531 fatal("stdio forwarding failed");
1532}
1533
1534static void
Darren Tucker2d6665d2011-11-04 10:54:22 +11001535ssh_init_stdio_forwarding(void)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001536{
1537 Channel *c;
Damien Millere1537f92010-01-26 13:26:22 +11001538 int in, out;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001539
Darren Tucker2d6665d2011-11-04 10:54:22 +11001540 if (stdio_forward_host == NULL)
1541 return;
Damien Miller386feab2013-10-15 12:14:49 +11001542 if (!compat20)
Darren Tucker2d6665d2011-11-04 10:54:22 +11001543 fatal("stdio forwarding require Protocol 2");
Damien Millere1537f92010-01-26 13:26:22 +11001544
Darren Tucker2d6665d2011-11-04 10:54:22 +11001545 debug3("%s: %s:%d", __func__, stdio_forward_host, stdio_forward_port);
1546
1547 if ((in = dup(STDIN_FILENO)) < 0 ||
1548 (out = dup(STDOUT_FILENO)) < 0)
Damien Millere1537f92010-01-26 13:26:22 +11001549 fatal("channel_connect_stdio_fwd: dup() in/out failed");
Darren Tucker2d6665d2011-11-04 10:54:22 +11001550 if ((c = channel_connect_stdio_fwd(stdio_forward_host,
1551 stdio_forward_port, in, out)) == NULL)
1552 fatal("%s: channel_connect_stdio_fwd failed", __func__);
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001553 channel_register_cleanup(c->self, client_cleanup_stdio_fwd, 0);
Damien Miller357610d2014-07-18 15:04:10 +10001554 channel_register_open_confirm(c->self, ssh_stdio_confirm, NULL);
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001555}
1556
1557static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001558ssh_init_forwarding(void)
1559{
Kevin Steves12057502001-02-05 14:54:34 +00001560 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001561 int i;
Kevin Steves12057502001-02-05 14:54:34 +00001562
Damien Miller0bc1bd82000-11-13 22:57:25 +11001563 /* Initiate local TCP/IP port forwardings. */
1564 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001565 debug("Local connections to %.200s:%d forwarded to remote "
1566 "address %.200s:%d",
Damien Miller7acefbb2014-07-18 14:11:24 +10001567 (options.local_forwards[i].listen_path != NULL) ?
1568 options.local_forwards[i].listen_path :
Darren Tucker47eede72005-03-14 23:08:12 +11001569 (options.local_forwards[i].listen_host == NULL) ?
Damien Miller7acefbb2014-07-18 14:11:24 +10001570 (options.fwd_opts.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001571 options.local_forwards[i].listen_host,
1572 options.local_forwards[i].listen_port,
Damien Miller7acefbb2014-07-18 14:11:24 +10001573 (options.local_forwards[i].connect_path != NULL) ?
1574 options.local_forwards[i].connect_path :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001575 options.local_forwards[i].connect_host,
1576 options.local_forwards[i].connect_port);
Damien Millerb16461c2002-01-22 23:29:22 +11001577 success += channel_setup_local_fwd_listener(
Damien Miller7acefbb2014-07-18 14:11:24 +10001578 &options.local_forwards[i], &options.fwd_opts);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001579 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10001580 if (i > 0 && success != i && options.exit_on_forward_failure)
1581 fatal("Could not request local forwarding.");
Kevin Steves12057502001-02-05 14:54:34 +00001582 if (i > 0 && success == 0)
1583 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001584
1585 /* Initiate remote TCP/IP port forwardings. */
1586 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001587 debug("Remote connections from %.200s:%d forwarded to "
1588 "local address %.200s:%d",
Damien Miller7acefbb2014-07-18 14:11:24 +10001589 (options.remote_forwards[i].listen_path != NULL) ?
1590 options.remote_forwards[i].listen_path :
Damien Miller46d38de2005-07-17 17:02:09 +10001591 (options.remote_forwards[i].listen_host == NULL) ?
Damien Milleraa3bb102005-11-05 15:12:59 +11001592 "LOCALHOST" : options.remote_forwards[i].listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +11001593 options.remote_forwards[i].listen_port,
Damien Miller7acefbb2014-07-18 14:11:24 +10001594 (options.remote_forwards[i].connect_path != NULL) ?
1595 options.remote_forwards[i].connect_path :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001596 options.remote_forwards[i].connect_host,
1597 options.remote_forwards[i].connect_port);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001598 options.remote_forwards[i].handle =
1599 channel_request_remote_forwarding(
Damien Miller7acefbb2014-07-18 14:11:24 +10001600 &options.remote_forwards[i]);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001601 if (options.remote_forwards[i].handle < 0) {
Darren Tuckere7d4b192006-07-12 22:17:10 +10001602 if (options.exit_on_forward_failure)
1603 fatal("Could not request remote forwarding.");
1604 else
1605 logit("Warning: Could not request remote "
1606 "forwarding.");
Darren Tucker68afb8c2011-10-02 18:59:03 +11001607 } else {
1608 client_register_global_confirm(ssh_confirm_remote_forward,
1609 &options.remote_forwards[i]);
Darren Tuckere7d4b192006-07-12 22:17:10 +10001610 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001611 }
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001612
1613 /* Initiate tunnel forwarding. */
1614 if (options.tun_open != SSH_TUNMODE_NO) {
1615 if (client_request_tun_fwd(options.tun_open,
1616 options.tun_local, options.tun_remote) == -1) {
1617 if (options.exit_on_forward_failure)
1618 fatal("Could not request tunnel forwarding.");
1619 else
1620 error("Could not request tunnel forwarding.");
1621 }
1622 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001623}
1624
Ben Lindstrombba81212001-06-25 05:01:22 +00001625static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001626check_agent_present(void)
1627{
djm@openbsd.org141efe42015-01-14 20:05:27 +00001628 int r;
1629
Damien Miller0bc1bd82000-11-13 22:57:25 +11001630 if (options.forward_agent) {
Damien Miller788f2122005-11-05 15:14:59 +11001631 /* Clear agent forwarding if we don't have an agent. */
djm@openbsd.org141efe42015-01-14 20:05:27 +00001632 if ((r = ssh_get_authentication_socket(NULL)) != 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001633 options.forward_agent = 0;
djm@openbsd.org141efe42015-01-14 20:05:27 +00001634 if (r != SSH_ERR_AGENT_NOT_PRESENT)
1635 debug("ssh_get_authentication_socket: %s",
1636 ssh_err(r));
1637 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001638 }
1639}
1640
Ben Lindstrombba81212001-06-25 05:01:22 +00001641static int
Damien Miller1383bd82000-04-06 12:32:37 +10001642ssh_session(void)
1643{
1644 int type;
Damien Miller1383bd82000-04-06 12:32:37 +10001645 int interactive = 0;
1646 int have_tty = 0;
1647 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +10001648 char *cp;
Damien Miller17e7ed02005-06-17 12:54:33 +10001649 const char *display;
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001650 char *proto = NULL, *data = NULL;
Damien Miller1383bd82000-04-06 12:32:37 +10001651
Damien Miller95def091999-11-25 00:26:21 +11001652 /* Enable compression if requested. */
1653 if (options.compression) {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001654 debug("Requesting compression at level %d.",
1655 options.compression_level);
Damien Miller95def091999-11-25 00:26:21 +11001656
Darren Tuckerd6173c02008-06-13 04:52:53 +10001657 if (options.compression_level < 1 ||
1658 options.compression_level > 9)
1659 fatal("Compression level must be from 1 (fast) to "
1660 "9 (slow, best).");
Damien Miller95def091999-11-25 00:26:21 +11001661
1662 /* Send the request. */
1663 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
1664 packet_put_int(options.compression_level);
1665 packet_send();
1666 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +11001667 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001668 if (type == SSH_SMSG_SUCCESS)
1669 packet_start_compression(options.compression_level);
1670 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +10001671 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +11001672 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001673 packet_disconnect("Protocol error waiting for "
1674 "compression response.");
Damien Miller95def091999-11-25 00:26:21 +11001675 }
1676 /* Allocate a pseudo tty if appropriate. */
1677 if (tty_flag) {
1678 debug("Requesting pty.");
1679
1680 /* Start the packet. */
1681 packet_start(SSH_CMSG_REQUEST_PTY);
1682
1683 /* Store TERM in the packet. There is no limit on the
1684 length of the string. */
1685 cp = getenv("TERM");
1686 if (!cp)
1687 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +00001688 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +11001689
1690 /* Store window size in the packet. */
1691 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1692 memset(&ws, 0, sizeof(ws));
Damien Miller71a73672006-03-26 14:04:36 +11001693 packet_put_int((u_int)ws.ws_row);
1694 packet_put_int((u_int)ws.ws_col);
1695 packet_put_int((u_int)ws.ws_xpixel);
1696 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller95def091999-11-25 00:26:21 +11001697
1698 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001699 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +11001700
1701 /* Send the packet, and wait for it to leave. */
1702 packet_send();
1703 packet_write_wait();
1704
1705 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001706 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +10001707 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001708 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001709 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +10001710 } else if (type == SSH_SMSG_FAILURE)
Darren Tuckerd6173c02008-06-13 04:52:53 +10001711 logit("Warning: Remote host failed or refused to "
1712 "allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +11001713 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001714 packet_disconnect("Protocol error waiting for pty "
1715 "request response.");
Damien Miller95def091999-11-25 00:26:21 +11001716 }
1717 /* Request X11 forwarding if enabled and DISPLAY is set. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001718 display = getenv("DISPLAY");
djm@openbsd.orga58be332015-04-17 13:16:48 +00001719 if (display == NULL && options.forward_x11)
1720 debug("X11 forwarding requested but DISPLAY not set");
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001721 if (options.forward_x11 && client_x11_get_proto(display,
1722 options.xauth_location, options.forward_x11_trusted,
1723 options.forward_x11_timeout, &proto, &data) == 0) {
Damien Millerbd483e72000-04-30 10:00:53 +10001724 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001725 debug("Requesting X11 forwarding with authentication "
1726 "spoofing.");
Damien Miller6d7b4372011-06-23 08:31:57 +10001727 x11_request_forwarding_with_spoofing(0, display, proto,
1728 data, 0);
Damien Miller95def091999-11-25 00:26:21 +11001729 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001730 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001731 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001732 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001733 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +10001734 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +10001735 } else {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001736 packet_disconnect("Protocol error waiting for X11 "
1737 "forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +10001738 }
Damien Miller95def091999-11-25 00:26:21 +11001739 }
1740 /* Tell the packet module whether this is an interactive session. */
Damien Miller0dac6fb2010-11-20 15:19:38 +11001741 packet_set_interactive(interactive,
1742 options.ip_qos_interactive, options.ip_qos_bulk);
Damien Miller95def091999-11-25 00:26:21 +11001743
1744 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001745 check_agent_present();
1746
Damien Miller95def091999-11-25 00:26:21 +11001747 if (options.forward_agent) {
1748 debug("Requesting authentication agent forwarding.");
1749 auth_request_forwarding();
1750
1751 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001752 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +11001753 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11001754 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +10001755 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +11001756 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001757
Damien Miller0bc1bd82000-11-13 22:57:25 +11001758 /* Initiate port forwardings. */
Darren Tucker2d6665d2011-11-04 10:54:22 +11001759 ssh_init_stdio_forwarding();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001760 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001761
Darren Tuckerb776c852007-12-02 23:06:35 +11001762 /* Execute a local command */
1763 if (options.local_command != NULL &&
1764 options.permit_local_command)
1765 ssh_local_cmd(options.local_command);
1766
Darren Tucker9a2a6092008-07-04 12:53:50 +10001767 /*
1768 * If requested and we are not interested in replies to remote
1769 * forwarding requests, then let ssh continue in the background.
1770 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001771 if (fork_after_authentication_flag) {
1772 if (options.exit_on_forward_failure &&
1773 options.num_remote_forwards > 0) {
1774 debug("deferring postauth fork until remote forward "
1775 "confirmation received");
1776 } else
1777 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001778 }
Damien Miller5428f641999-11-25 11:54:57 +11001779
1780 /*
1781 * If a command was specified on the command line, execute the
1782 * command now. Otherwise request the server to start a shell.
1783 */
Damien Miller95def091999-11-25 00:26:21 +11001784 if (buffer_len(&command) > 0) {
1785 int len = buffer_len(&command);
1786 if (len > 900)
1787 len = 900;
Darren Tuckerd6173c02008-06-13 04:52:53 +10001788 debug("Sending command: %.*s", len,
1789 (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +11001790 packet_start(SSH_CMSG_EXEC_CMD);
1791 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1792 packet_send();
1793 packet_write_wait();
1794 } else {
1795 debug("Requesting shell.");
1796 packet_start(SSH_CMSG_EXEC_SHELL);
1797 packet_send();
1798 packet_write_wait();
1799 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001800
Damien Miller95def091999-11-25 00:26:21 +11001801 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001802 return client_loop(have_tty, tty_flag ?
1803 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +10001804}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001805
Ben Lindstromf558cf62001-09-20 23:13:49 +00001806/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001807static void
Damien Millerd530f5f2010-05-21 14:57:10 +10001808ssh_session2_setup(int id, int success, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001809{
Damien Miller3756dce2004-06-18 01:17:29 +10001810 extern char **environ;
Damien Miller17e7ed02005-06-17 12:54:33 +10001811 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +10001812 int interactive = tty_flag;
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001813 char *proto = NULL, *data = NULL;
Damien Miller17e7ed02005-06-17 12:54:33 +10001814
Damien Millerd530f5f2010-05-21 14:57:10 +10001815 if (!success)
1816 return; /* No need for error message, channels code sens one */
1817
Damien Miller46d38de2005-07-17 17:02:09 +10001818 display = getenv("DISPLAY");
djm@openbsd.orga58be332015-04-17 13:16:48 +00001819 if (display == NULL && options.forward_x11)
1820 debug("X11 forwarding requested but DISPLAY not set");
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001821 if (options.forward_x11 && client_x11_get_proto(display,
1822 options.xauth_location, options.forward_x11_trusted,
1823 options.forward_x11_timeout, &proto, &data) == 0) {
Damien Millerbd483e72000-04-30 10:00:53 +10001824 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001825 debug("Requesting X11 forwarding with authentication "
1826 "spoofing.");
Damien Miller6d7b4372011-06-23 08:31:57 +10001827 x11_request_forwarding_with_spoofing(id, display, proto,
1828 data, 1);
1829 client_expect_confirm(id, "X11 forwarding", CONFIRM_WARN);
1830 /* XXX exit_on_forward_failure */
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001831 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001832 }
1833
Damien Miller0bc1bd82000-11-13 22:57:25 +11001834 check_agent_present();
1835 if (options.forward_agent) {
1836 debug("Requesting authentication agent forwarding.");
1837 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1838 packet_send();
1839 }
1840
Darren Tucker7b305012012-07-02 18:55:09 +10001841 /* Tell the packet module whether this is an interactive session. */
1842 packet_set_interactive(interactive,
1843 options.ip_qos_interactive, options.ip_qos_bulk);
1844
Damien Miller0e220db2004-06-15 10:34:08 +10001845 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
Damien Miller5771ed72008-05-19 15:35:33 +10001846 NULL, fileno(stdin), &command, environ);
Damien Miller1383bd82000-04-06 12:32:37 +10001847}
1848
Ben Lindstromf558cf62001-09-20 23:13:49 +00001849/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001850static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001851ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001852{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001853 Channel *c;
1854 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001855
Damien Millercaf6dd62000-08-29 11:33:50 +11001856 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001857 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001858 } else {
1859 in = dup(STDIN_FILENO);
1860 }
1861 out = dup(STDOUT_FILENO);
1862 err = dup(STDERR_FILENO);
1863
1864 if (in < 0 || out < 0 || err < 0)
1865 fatal("dup() in/out/err failed");
1866
Damien Miller69b69aa2000-10-28 14:19:58 +11001867 /* enable nonblocking unless tty */
1868 if (!isatty(in))
1869 set_nonblock(in);
1870 if (!isatty(out))
1871 set_nonblock(out);
1872 if (!isatty(err))
1873 set_nonblock(err);
1874
Damien Millere4340be2000-09-16 13:29:08 +11001875 window = CHAN_SES_WINDOW_DEFAULT;
1876 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001877 if (tty_flag) {
1878 window >>= 1;
1879 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001880 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001881 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001882 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001883 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001884 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001885
Ben Lindstromf558cf62001-09-20 23:13:49 +00001886 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001887
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001888 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001889 if (!no_shell_flag)
Damien Millerb84886b2008-05-19 15:05:07 +10001890 channel_register_open_confirm(c->self,
1891 ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001892
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001893 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001894}
1895
Ben Lindstrombba81212001-06-25 05:01:22 +00001896static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001897ssh_session2(void)
1898{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001899 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001900
1901 /* XXX should be pre-session */
Darren Tucker2d6665d2011-11-04 10:54:22 +11001902 if (!options.control_persist)
1903 ssh_init_stdio_forwarding();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001904 ssh_init_forwarding();
1905
Damien Millere11e1ea2010-08-03 16:04:46 +10001906 /* Start listening for multiplex clients */
1907 muxserver_listen();
1908
1909 /*
Darren Tucker2d6665d2011-11-04 10:54:22 +11001910 * If we are in control persist mode and have a working mux listen
1911 * socket, then prepare to background ourselves and have a foreground
1912 * client attach as a control slave.
1913 * NB. we must save copies of the flags that we override for
Damien Millere11e1ea2010-08-03 16:04:46 +10001914 * the backgrounding, since we defer attachment of the slave until
1915 * after the connection is fully established (in particular,
1916 * async rfwd replies have been received for ExitOnForwardFailure).
1917 */
1918 if (options.control_persist && muxserver_sock != -1) {
1919 ostdin_null_flag = stdin_null_flag;
1920 ono_shell_flag = no_shell_flag;
Damien Miller21771e22011-05-15 08:45:50 +10001921 orequest_tty = options.request_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +10001922 otty_flag = tty_flag;
1923 stdin_null_flag = 1;
1924 no_shell_flag = 1;
Damien Millere11e1ea2010-08-03 16:04:46 +10001925 tty_flag = 0;
1926 if (!fork_after_authentication_flag)
1927 need_controlpersist_detach = 1;
1928 fork_after_authentication_flag = 1;
1929 }
Darren Tucker2d6665d2011-11-04 10:54:22 +11001930 /*
1931 * ControlPersist mux listen socket setup failed, attempt the
1932 * stdio forward setup that we skipped earlier.
1933 */
1934 if (options.control_persist && muxserver_sock == -1)
1935 ssh_init_stdio_forwarding();
Damien Millere11e1ea2010-08-03 16:04:46 +10001936
Ben Lindstromf558cf62001-09-20 23:13:49 +00001937 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1938 id = ssh_session2_open();
Damien Miller649fe022013-07-18 16:13:55 +10001939 else {
1940 packet_set_interactive(
1941 options.control_master == SSHCTL_MASTER_NO,
1942 options.ip_qos_interactive, options.ip_qos_bulk);
1943 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001944
Darren Tucker8901fa92008-06-11 09:34:01 +10001945 /* If we don't expect to open a new session, then disallow it */
Damien Miller456e6f02008-11-03 19:20:10 +11001946 if (options.control_master == SSHCTL_MASTER_NO &&
1947 (datafellows & SSH_NEW_OPENSSH)) {
Darren Tucker8901fa92008-06-11 09:34:01 +10001948 debug("Requesting no-more-sessions@openssh.com");
1949 packet_start(SSH2_MSG_GLOBAL_REQUEST);
1950 packet_put_cstring("no-more-sessions@openssh.com");
1951 packet_put_char(0);
1952 packet_send();
1953 }
1954
Damien Millerd27b9472005-12-13 19:29:02 +11001955 /* Execute a local command */
1956 if (options.local_command != NULL &&
1957 options.permit_local_command)
1958 ssh_local_cmd(options.local_command);
1959
Damien Miller1f25ab42010-07-16 13:56:23 +10001960 /*
1961 * If requested and we are not interested in replies to remote
1962 * forwarding requests, then let ssh continue in the background.
1963 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001964 if (fork_after_authentication_flag) {
1965 if (options.exit_on_forward_failure &&
1966 options.num_remote_forwards > 0) {
1967 debug("deferring postauth fork until remote forward "
1968 "confirmation received");
1969 } else
1970 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001971 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001972
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001973 return client_loop(tty_flag, tty_flag ?
1974 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001975}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001976
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001977/* Loads all IdentityFile and CertificateFile keys */
Ben Lindstrombba81212001-06-25 05:01:22 +00001978static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001979load_public_identity_files(void)
1980{
Damien Miller6b1d53c2006-03-31 23:13:21 +11001981 char *filename, *cp, thishost[NI_MAXHOST];
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001982 char *pwdir = NULL, *pwname = NULL;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001983 Key *public;
Damien Miller6b1d53c2006-03-31 23:13:21 +11001984 struct passwd *pw;
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001985 int i;
1986 u_int n_ids, n_certs;
Damien Miller0a80ca12010-02-27 07:55:05 +11001987 char *identity_files[SSH_MAX_IDENTITY_FILES];
1988 Key *identity_keys[SSH_MAX_IDENTITY_FILES];
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001989 char *certificate_files[SSH_MAX_CERTIFICATE_FILES];
1990 struct sshkey *certificates[SSH_MAX_CERTIFICATE_FILES];
Damien Miller7ea845e2010-02-12 09:21:02 +11001991#ifdef ENABLE_PKCS11
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001992 Key **keys;
Damien Miller7ea845e2010-02-12 09:21:02 +11001993 int nkeys;
Damien Miller0a80ca12010-02-27 07:55:05 +11001994#endif /* PKCS11 */
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001995
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001996 n_ids = n_certs = 0;
Damien Miller1d2c4562014-02-04 11:18:20 +11001997 memset(identity_files, 0, sizeof(identity_files));
1998 memset(identity_keys, 0, sizeof(identity_keys));
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001999 memset(certificate_files, 0, sizeof(certificate_files));
2000 memset(certificates, 0, sizeof(certificates));
Damien Miller0a80ca12010-02-27 07:55:05 +11002001
2002#ifdef ENABLE_PKCS11
Damien Miller7ea845e2010-02-12 09:21:02 +11002003 if (options.pkcs11_provider != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00002004 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
Damien Miller7ea845e2010-02-12 09:21:02 +11002005 (pkcs11_init(!options.batch_mode) == 0) &&
2006 (nkeys = pkcs11_add_provider(options.pkcs11_provider, NULL,
2007 &keys)) > 0) {
Damien Miller7ea845e2010-02-12 09:21:02 +11002008 for (i = 0; i < nkeys; i++) {
Damien Miller0a80ca12010-02-27 07:55:05 +11002009 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
2010 key_free(keys[i]);
2011 continue;
2012 }
2013 identity_keys[n_ids] = keys[i];
2014 identity_files[n_ids] =
Damien Miller7ea845e2010-02-12 09:21:02 +11002015 xstrdup(options.pkcs11_provider); /* XXX */
Damien Miller0a80ca12010-02-27 07:55:05 +11002016 n_ids++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00002017 }
Darren Tuckera627d422013-06-02 07:31:17 +10002018 free(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00002019 }
Damien Miller7ea845e2010-02-12 09:21:02 +11002020#endif /* ENABLE_PKCS11 */
Damien Miller6b1d53c2006-03-31 23:13:21 +11002021 if ((pw = getpwuid(original_real_uid)) == NULL)
2022 fatal("load_public_identity_files: getpwuid failed");
Darren Tuckere143f062007-12-02 23:21:16 +11002023 pwname = xstrdup(pw->pw_name);
2024 pwdir = xstrdup(pw->pw_dir);
Damien Miller6b1d53c2006-03-31 23:13:21 +11002025 if (gethostname(thishost, sizeof(thishost)) == -1)
2026 fatal("load_public_identity_files: gethostname: %s",
2027 strerror(errno));
Damien Miller0a80ca12010-02-27 07:55:05 +11002028 for (i = 0; i < options.num_identity_files; i++) {
Darren Tucker15fd19c2013-04-05 11:22:26 +11002029 if (n_ids >= SSH_MAX_IDENTITY_FILES ||
2030 strcasecmp(options.identity_files[i], "none") == 0) {
Darren Tuckera627d422013-06-02 07:31:17 +10002031 free(options.identity_files[i]);
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002032 options.identity_files[i] = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +11002033 continue;
2034 }
Damien Miller6b1d53c2006-03-31 23:13:21 +11002035 cp = tilde_expand_filename(options.identity_files[i],
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002036 original_real_uid);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11002037 filename = percent_expand(cp, "d", pwdir,
2038 "u", pwname, "l", thishost, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +11002039 "r", options.user, (char *)NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10002040 free(cp);
Ben Lindstromd0fca422001-03-26 13:44:06 +00002041 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002042 debug("identity file %s type %d", filename,
2043 public ? public->type : -1);
Darren Tuckera627d422013-06-02 07:31:17 +10002044 free(options.identity_files[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +11002045 identity_files[n_ids] = filename;
2046 identity_keys[n_ids] = public;
2047
2048 if (++n_ids >= SSH_MAX_IDENTITY_FILES)
2049 continue;
2050
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002051 /*
2052 * If no certificates have been explicitly listed then try
2053 * to add the default certificate variant too.
2054 */
2055 if (options.num_certificate_files != 0)
2056 continue;
Damien Miller0a80ca12010-02-27 07:55:05 +11002057 xasprintf(&cp, "%s-cert", filename);
2058 public = key_load_public(cp, NULL);
2059 debug("identity file %s type %d", cp,
2060 public ? public->type : -1);
2061 if (public == NULL) {
Darren Tuckera627d422013-06-02 07:31:17 +10002062 free(cp);
Damien Miller0a80ca12010-02-27 07:55:05 +11002063 continue;
2064 }
2065 if (!key_is_cert(public)) {
2066 debug("%s: key %s type %s is not a certificate",
2067 __func__, cp, key_type(public));
2068 key_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +10002069 free(cp);
Damien Miller0a80ca12010-02-27 07:55:05 +11002070 continue;
2071 }
2072 identity_keys[n_ids] = public;
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002073 identity_files[n_ids] = cp;
Damien Miller0a80ca12010-02-27 07:55:05 +11002074 n_ids++;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002075 }
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002076
2077 if (options.num_certificate_files > SSH_MAX_CERTIFICATE_FILES)
2078 fatal("%s: too many certificates", __func__);
2079 for (i = 0; i < options.num_certificate_files; i++) {
2080 cp = tilde_expand_filename(options.certificate_files[i],
2081 original_real_uid);
2082 filename = percent_expand(cp, "d", pwdir,
2083 "u", pwname, "l", thishost, "h", host,
2084 "r", options.user, (char *)NULL);
2085 free(cp);
2086
2087 public = key_load_public(filename, NULL);
2088 debug("certificate file %s type %d", filename,
2089 public ? public->type : -1);
2090 free(options.certificate_files[i]);
2091 options.certificate_files[i] = NULL;
2092 if (public == NULL) {
2093 free(filename);
2094 continue;
2095 }
2096 if (!key_is_cert(public)) {
2097 debug("%s: key %s type %s is not a certificate",
2098 __func__, filename, key_type(public));
2099 key_free(public);
2100 free(filename);
2101 continue;
2102 }
2103 certificate_files[n_certs] = filename;
2104 certificates[n_certs] = public;
2105 ++n_certs;
2106 }
2107
Damien Miller0a80ca12010-02-27 07:55:05 +11002108 options.num_identity_files = n_ids;
2109 memcpy(options.identity_files, identity_files, sizeof(identity_files));
2110 memcpy(options.identity_keys, identity_keys, sizeof(identity_keys));
2111
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002112 options.num_certificate_files = n_certs;
2113 memcpy(options.certificate_files,
2114 certificate_files, sizeof(certificate_files));
2115 memcpy(options.certificates, certificates, sizeof(certificates));
2116
Damien Miller1d2c4562014-02-04 11:18:20 +11002117 explicit_bzero(pwname, strlen(pwname));
Darren Tuckera627d422013-06-02 07:31:17 +10002118 free(pwname);
Damien Miller1d2c4562014-02-04 11:18:20 +11002119 explicit_bzero(pwdir, strlen(pwdir));
Darren Tuckera627d422013-06-02 07:31:17 +10002120 free(pwdir);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002121}
Damien Miller857b02e2010-09-24 22:02:56 +10002122
2123static void
2124main_sigchld_handler(int sig)
2125{
2126 int save_errno = errno;
2127 pid_t pid;
2128 int status;
2129
2130 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
2131 (pid < 0 && errno == EINTR))
2132 ;
2133
2134 signal(sig, main_sigchld_handler);
2135 errno = save_errno;
2136}