blob: 430773c746e51fa153aa1bde2a5976a0d17dba3e [file] [log] [blame]
deraadt@openbsd.org087266e2015-01-20 23:14:00 +00001/* $OpenBSD: ssh.c,v 1.414 2015/01/20 23:14:00 deraadt 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"
Darren Tuckerf1de4e52010-01-08 16:54:59 +1100108#include "roaming.h"
Damien Millerb7576772006-07-10 20:23:39 +1000109#include "version.h"
djm@openbsd.org141efe42015-01-14 20:05:27 +0000110#include "ssherr.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"
205" [-F configfile] [-I pkcs11] [-i identity_file]\n"
Damien Millerd937dc02013-12-05 10:19:54 +1100206" [-L [bind_address:]port:host:hostport] [-l login_name] [-m mac_spec]\n"
Damien Millerbdb352a2013-12-05 10:20:52 +1100207" [-O ctl_cmd] [-o option] [-p port]\n"
208" [-Q cipher | cipher-auth | mac | kex | key]\n"
209" [-R [bind_address:]port:host:hostport] [-S ctl_path] [-W host:port]\n"
210" [-w local_tun[:remote_tun]] [user@]hostname [command]\n"
Damien Miller50955102004-03-22 09:34:58 +1100211 );
Darren Tuckere9a9b712005-12-20 16:15:51 +1100212 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000213}
214
Ben Lindstrombba81212001-06-25 05:01:22 +0000215static int ssh_session(void);
216static int ssh_session2(void);
217static void load_public_identity_files(void);
Damien Miller857b02e2010-09-24 22:02:56 +1000218static void main_sigchld_handler(int);
Damien Millerb1cbfa22008-05-19 16:00:08 +1000219
220/* from muxclient.c */
221void muxclient(const char *);
222void muxserver_listen(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000223
Damien Miller295ee632011-05-29 21:42:31 +1000224/* ~/ expand a list of paths. NB. assumes path[n] is heap-allocated. */
225static void
226tilde_expand_paths(char **paths, u_int num_paths)
227{
228 u_int i;
229 char *cp;
230
231 for (i = 0; i < num_paths; i++) {
232 cp = tilde_expand_filename(paths[i], original_real_uid);
Darren Tuckera627d422013-06-02 07:31:17 +1000233 free(paths[i]);
Damien Miller295ee632011-05-29 21:42:31 +1000234 paths[i] = cp;
235 }
236}
237
Damien Miller13f97b22014-02-24 15:57:55 +1100238/*
239 * Attempt to resolve a host name / port to a set of addresses and
240 * optionally return any CNAMEs encountered along the way.
241 * Returns NULL on failure.
242 * NB. this function must operate with a options having undefined members.
243 */
Damien Miller0faf7472013-10-17 11:47:23 +1100244static struct addrinfo *
Damien Miller13f97b22014-02-24 15:57:55 +1100245resolve_host(const char *name, int port, int logerr, char *cname, size_t clen)
Damien Miller0faf7472013-10-17 11:47:23 +1100246{
247 char strport[NI_MAXSERV];
248 struct addrinfo hints, *res;
249 int gaierr, loglevel = SYSLOG_LEVEL_DEBUG1;
250
Damien Miller13f97b22014-02-24 15:57:55 +1100251 if (port <= 0)
252 port = default_ssh_port();
253
Damien Miller0faf7472013-10-17 11:47:23 +1100254 snprintf(strport, sizeof strport, "%u", port);
Damien Miller1d2c4562014-02-04 11:18:20 +1100255 memset(&hints, 0, sizeof(hints));
Damien Miller13f97b22014-02-24 15:57:55 +1100256 hints.ai_family = options.address_family == -1 ?
257 AF_UNSPEC : options.address_family;
Damien Miller0faf7472013-10-17 11:47:23 +1100258 hints.ai_socktype = SOCK_STREAM;
259 if (cname != NULL)
260 hints.ai_flags = AI_CANONNAME;
261 if ((gaierr = getaddrinfo(name, strport, &hints, &res)) != 0) {
262 if (logerr || (gaierr != EAI_NONAME && gaierr != EAI_NODATA))
263 loglevel = SYSLOG_LEVEL_ERROR;
264 do_log2(loglevel, "%s: Could not resolve hostname %.100s: %s",
265 __progname, name, ssh_gai_strerror(gaierr));
266 return NULL;
267 }
268 if (cname != NULL && res->ai_canonname != NULL) {
269 if (strlcpy(cname, res->ai_canonname, clen) >= clen) {
270 error("%s: host \"%s\" cname \"%s\" too long (max %lu)",
271 __func__, name, res->ai_canonname, (u_long)clen);
272 if (clen > 0)
273 *cname = '\0';
274 }
275 }
276 return res;
277}
278
279/*
djm@openbsd.org90109022015-01-16 07:19:48 +0000280 * Attempt to resolve a numeric host address / port to a single address.
281 * Returns a canonical address string.
282 * Returns NULL on failure.
283 * NB. this function must operate with a options having undefined members.
284 */
285static struct addrinfo *
286resolve_addr(const char *name, int port, char *caddr, size_t clen)
287{
288 char addr[NI_MAXHOST], strport[NI_MAXSERV];
289 struct addrinfo hints, *res;
290 int gaierr;
291
292 if (port <= 0)
293 port = default_ssh_port();
294 snprintf(strport, sizeof strport, "%u", port);
295 memset(&hints, 0, sizeof(hints));
296 hints.ai_family = options.address_family == -1 ?
297 AF_UNSPEC : options.address_family;
298 hints.ai_socktype = SOCK_STREAM;
299 hints.ai_flags = AI_NUMERICHOST|AI_NUMERICSERV;
300 if ((gaierr = getaddrinfo(name, strport, &hints, &res)) != 0) {
301 debug2("%s: could not resolve name %.100s as address: %s",
302 __func__, name, ssh_gai_strerror(gaierr));
303 return NULL;
304 }
305 if (res == NULL) {
306 debug("%s: getaddrinfo %.100s returned no addresses",
307 __func__, name);
308 return NULL;
309 }
310 if (res->ai_next != NULL) {
311 debug("%s: getaddrinfo %.100s returned multiple addresses",
312 __func__, name);
313 goto fail;
314 }
315 if ((gaierr = getnameinfo(res->ai_addr, res->ai_addrlen,
316 addr, sizeof(addr), NULL, 0, NI_NUMERICHOST)) != 0) {
317 debug("%s: Could not format address for name %.100s: %s",
318 __func__, name, ssh_gai_strerror(gaierr));
319 goto fail;
320 }
321 if (strlcpy(caddr, addr, clen) >= clen) {
322 error("%s: host \"%s\" addr \"%s\" too long (max %lu)",
323 __func__, name, addr, (u_long)clen);
324 if (clen > 0)
325 *caddr = '\0';
326 fail:
327 freeaddrinfo(res);
328 return NULL;
329 }
330 return res;
331}
332
333/*
Damien Miller0faf7472013-10-17 11:47:23 +1100334 * Check whether the cname is a permitted replacement for the hostname
335 * and perform the replacement if it is.
Damien Miller13f97b22014-02-24 15:57:55 +1100336 * NB. this function must operate with a options having undefined members.
Damien Miller0faf7472013-10-17 11:47:23 +1100337 */
338static int
339check_follow_cname(char **namep, const char *cname)
340{
341 int i;
342 struct allowed_cname *rule;
343
344 if (*cname == '\0' || options.num_permitted_cnames == 0 ||
345 strcmp(*namep, cname) == 0)
346 return 0;
Damien Miller38505592013-10-17 11:48:13 +1100347 if (options.canonicalize_hostname == SSH_CANONICALISE_NO)
Damien Miller0faf7472013-10-17 11:47:23 +1100348 return 0;
349 /*
Damien Miller38505592013-10-17 11:48:13 +1100350 * Don't attempt to canonicalize names that will be interpreted by
Damien Miller0faf7472013-10-17 11:47:23 +1100351 * a proxy unless the user specifically requests so.
352 */
Damien Miller13f97b22014-02-24 15:57:55 +1100353 if (!option_clear_or_none(options.proxy_command) &&
Damien Miller38505592013-10-17 11:48:13 +1100354 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS)
Damien Miller0faf7472013-10-17 11:47:23 +1100355 return 0;
356 debug3("%s: check \"%s\" CNAME \"%s\"", __func__, *namep, cname);
357 for (i = 0; i < options.num_permitted_cnames; i++) {
358 rule = options.permitted_cnames + i;
359 if (match_pattern_list(*namep, rule->source_list,
360 strlen(rule->source_list), 1) != 1 ||
361 match_pattern_list(cname, rule->target_list,
362 strlen(rule->target_list), 1) != 1)
363 continue;
Damien Miller38505592013-10-17 11:48:13 +1100364 verbose("Canonicalized DNS aliased hostname "
Damien Miller0faf7472013-10-17 11:47:23 +1100365 "\"%s\" => \"%s\"", *namep, cname);
366 free(*namep);
367 *namep = xstrdup(cname);
368 return 1;
369 }
370 return 0;
371}
372
373/*
374 * Attempt to resolve the supplied hostname after applying the user's
Damien Miller51682fa2013-10-17 11:48:31 +1100375 * canonicalization rules. Returns the address list for the host or NULL
376 * if no name was found after canonicalization.
Damien Miller13f97b22014-02-24 15:57:55 +1100377 * NB. this function must operate with a options having undefined members.
Damien Miller0faf7472013-10-17 11:47:23 +1100378 */
379static struct addrinfo *
Damien Miller13f97b22014-02-24 15:57:55 +1100380resolve_canonicalize(char **hostp, int port)
Damien Miller0faf7472013-10-17 11:47:23 +1100381{
382 int i, ndots;
djm@openbsd.org90109022015-01-16 07:19:48 +0000383 char *cp, *fullhost, newname[NI_MAXHOST];
Damien Miller0faf7472013-10-17 11:47:23 +1100384 struct addrinfo *addrs;
385
Damien Miller38505592013-10-17 11:48:13 +1100386 if (options.canonicalize_hostname == SSH_CANONICALISE_NO)
Damien Miller0faf7472013-10-17 11:47:23 +1100387 return NULL;
Damien Miller13f97b22014-02-24 15:57:55 +1100388
Damien Miller0faf7472013-10-17 11:47:23 +1100389 /*
Damien Miller38505592013-10-17 11:48:13 +1100390 * Don't attempt to canonicalize names that will be interpreted by
Damien Miller0faf7472013-10-17 11:47:23 +1100391 * a proxy unless the user specifically requests so.
392 */
Damien Miller13f97b22014-02-24 15:57:55 +1100393 if (!option_clear_or_none(options.proxy_command) &&
Damien Miller38505592013-10-17 11:48:13 +1100394 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS)
Damien Miller0faf7472013-10-17 11:47:23 +1100395 return NULL;
Damien Miller13f97b22014-02-24 15:57:55 +1100396
djm@openbsd.org90109022015-01-16 07:19:48 +0000397 /* Try numeric hostnames first */
398 if ((addrs = resolve_addr(*hostp, port,
399 newname, sizeof(newname))) != NULL) {
400 debug2("%s: hostname %.100s is address", __func__, *hostp);
401 if (strcasecmp(*hostp, newname) != 0) {
402 debug2("%s: canonicalised address \"%s\" => \"%s\"",
403 __func__, *hostp, newname);
404 free(*hostp);
405 *hostp = xstrdup(newname);
406 }
407 return addrs;
408 }
409
Damien Miller51682fa2013-10-17 11:48:31 +1100410 /* Don't apply canonicalization to sufficiently-qualified hostnames */
Damien Miller0faf7472013-10-17 11:47:23 +1100411 ndots = 0;
412 for (cp = *hostp; *cp != '\0'; cp++) {
413 if (*cp == '.')
414 ndots++;
415 }
Damien Miller38505592013-10-17 11:48:13 +1100416 if (ndots > options.canonicalize_max_dots) {
417 debug3("%s: not canonicalizing hostname \"%s\" (max dots %d)",
418 __func__, *hostp, options.canonicalize_max_dots);
Damien Miller0faf7472013-10-17 11:47:23 +1100419 return NULL;
420 }
421 /* Attempt each supplied suffix */
422 for (i = 0; i < options.num_canonical_domains; i++) {
djm@openbsd.org90109022015-01-16 07:19:48 +0000423 *newname = '\0';
Damien Miller0faf7472013-10-17 11:47:23 +1100424 xasprintf(&fullhost, "%s.%s.", *hostp,
425 options.canonical_domains[i]);
Damien Miller13f97b22014-02-24 15:57:55 +1100426 debug3("%s: attempting \"%s\" => \"%s\"", __func__,
427 *hostp, fullhost);
428 if ((addrs = resolve_host(fullhost, port, 0,
djm@openbsd.org90109022015-01-16 07:19:48 +0000429 newname, sizeof(newname))) == NULL) {
Damien Miller0faf7472013-10-17 11:47:23 +1100430 free(fullhost);
431 continue;
432 }
433 /* Remove trailing '.' */
434 fullhost[strlen(fullhost) - 1] = '\0';
435 /* Follow CNAME if requested */
djm@openbsd.org90109022015-01-16 07:19:48 +0000436 if (!check_follow_cname(&fullhost, newname)) {
Damien Miller38505592013-10-17 11:48:13 +1100437 debug("Canonicalized hostname \"%s\" => \"%s\"",
Damien Miller0faf7472013-10-17 11:47:23 +1100438 *hostp, fullhost);
439 }
440 free(*hostp);
441 *hostp = fullhost;
442 return addrs;
443 }
Damien Miller38505592013-10-17 11:48:13 +1100444 if (!options.canonicalize_fallback_local)
Damien Miller13f97b22014-02-24 15:57:55 +1100445 fatal("%s: Could not resolve host \"%s\"", __progname, *hostp);
446 debug2("%s: host %s not found in any suffix", __func__, *hostp);
Damien Miller0faf7472013-10-17 11:47:23 +1100447 return NULL;
448}
449
Damien Miller95def091999-11-25 00:26:21 +1100450/*
Damien Miller13f97b22014-02-24 15:57:55 +1100451 * Read per-user configuration file. Ignore the system wide config
452 * file if the user specifies a config file on the command line.
453 */
454static void
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000455process_config_files(const char *host_arg, struct passwd *pw, int post_canon)
Damien Miller13f97b22014-02-24 15:57:55 +1100456{
deraadt@openbsd.org087266e2015-01-20 23:14:00 +0000457 char buf[PATH_MAX];
Damien Miller13f97b22014-02-24 15:57:55 +1100458 int r;
459
460 if (config != NULL) {
461 if (strcasecmp(config, "none") != 0 &&
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000462 !read_config_file(config, pw, host, host_arg, &options,
463 SSHCONF_USERCONF | (post_canon ? SSHCONF_POSTCANON : 0)))
Damien Miller13f97b22014-02-24 15:57:55 +1100464 fatal("Can't open user config file %.100s: "
465 "%.100s", config, strerror(errno));
466 } else {
467 r = snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir,
468 _PATH_SSH_USER_CONFFILE);
469 if (r > 0 && (size_t)r < sizeof(buf))
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000470 (void)read_config_file(buf, pw, host, host_arg,
471 &options, SSHCONF_CHECKPERM | SSHCONF_USERCONF |
472 (post_canon ? SSHCONF_POSTCANON : 0));
Damien Miller13f97b22014-02-24 15:57:55 +1100473
474 /* Read systemwide configuration file after user config. */
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000475 (void)read_config_file(_PATH_HOST_CONFIG_FILE, pw,
476 host, host_arg, &options,
477 post_canon ? SSHCONF_POSTCANON : 0);
478 }
479}
480
481/* Rewrite the port number in an addrinfo list of addresses */
482static void
483set_addrinfo_port(struct addrinfo *addrs, int port)
484{
485 struct addrinfo *addr;
486
487 for (addr = addrs; addr != NULL; addr = addr->ai_next) {
488 switch (addr->ai_family) {
489 case AF_INET:
490 ((struct sockaddr_in *)addr->ai_addr)->
491 sin_port = htons(port);
492 break;
493 case AF_INET6:
494 ((struct sockaddr_in6 *)addr->ai_addr)->
495 sin6_port = htons(port);
496 break;
497 }
Damien Miller13f97b22014-02-24 15:57:55 +1100498 }
499}
500
501/*
Damien Miller95def091999-11-25 00:26:21 +1100502 * Main program for the ssh client.
503 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000504int
505main(int ac, char **av)
506{
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000507 int i, r, opt, exit_status, use_syslog, config_test = 0;
deraadt@openbsd.org087266e2015-01-20 23:14:00 +0000508 char *p, *cp, *line, *argv0, buf[PATH_MAX], *host_arg, *logfile;
Damien Millerdfc85fa2011-05-15 08:44:02 +1000509 char thishost[NI_MAXHOST], shorthost[NI_MAXHOST], portstr[NI_MAXSERV];
Damien Miller0faf7472013-10-17 11:47:23 +1100510 char cname[NI_MAXHOST];
Damien Miller95def091999-11-25 00:26:21 +1100511 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000512 struct passwd *pw;
Damien Miller194fd902013-10-15 12:13:05 +1100513 int timeout_ms;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000514 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000515 extern char *optarg;
Damien Miller7acefbb2014-07-18 14:11:24 +1000516 struct Forward fwd;
Damien Miller0faf7472013-10-17 11:47:23 +1100517 struct addrinfo *addrs = NULL;
Damien Miller9c386432014-07-03 21:27:46 +1000518 struct ssh_digest_ctx *md;
519 u_char conn_hash[SSH_DIGEST_MAX_LENGTH];
520 char *conn_hash_hex;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000521
Darren Tuckerce321d82005-10-03 18:11:24 +1000522 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
523 sanitise_stdfd();
524
Damien Miller59d3d5b2003-08-22 09:34:41 +1000525 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000526
Damien Millerea2c1a42011-06-03 12:10:22 +1000527#ifndef HAVE_SETPROCTITLE
528 /* Prepare for later setproctitle emulation */
529 /* Save argv so it isn't clobbered by setproctitle() emulation */
530 saved_av = xcalloc(ac + 1, sizeof(*saved_av));
531 for (i = 0; i < ac; i++)
532 saved_av[i] = xstrdup(av[i]);
533 saved_av[i] = NULL;
534 compat_init_setproctitle(ac, av);
535 av = saved_av;
536#endif
537
Damien Miller5428f641999-11-25 11:54:57 +1100538 /*
Damien Miller00d9ae22010-08-17 01:59:31 +1000539 * Discard other fds that are hanging around. These can cause problem
540 * with backgrounded ssh processes started by ControlPersist.
541 */
542 closefrom(STDERR_FILENO + 1);
543
544 /*
Damien Miller5428f641999-11-25 11:54:57 +1100545 * Save the original real uid. It will be needed later (uid-swapping
546 * may clobber the real uid).
547 */
Damien Miller95def091999-11-25 00:26:21 +1100548 original_real_uid = getuid();
549 original_effective_uid = geteuid();
Damien Millera8e06ce2003-11-21 23:48:55 +1100550
Damien Miller50b9a602002-09-04 16:50:06 +1000551 /*
552 * Use uid-swapping to give up root privileges for the duration of
553 * option processing. We will re-instantiate the rights when we are
554 * ready to create the privileged port, and will permanently drop
555 * them when the port has been created (actually, when the connection
556 * has been made, as we may need to create the port several times).
557 */
558 PRIV_END;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000559
Damien Miller05dd7952000-10-01 00:42:48 +1100560#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100561 /* If we are installed setuid root be careful to not drop core. */
562 if (original_real_uid != original_effective_uid) {
563 struct rlimit rlim;
564 rlim.rlim_cur = rlim.rlim_max = 0;
565 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
566 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000567 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100568#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000569 /* Get user data. */
570 pw = getpwuid(original_real_uid);
571 if (!pw) {
Damien Miller3009d3c2013-07-20 13:22:31 +1000572 logit("No user exists for uid %lu", (u_long)original_real_uid);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100573 exit(255);
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000574 }
575 /* Take a copy of the returned structure. */
576 pw = pwcopy(pw);
577
Damien Miller5428f641999-11-25 11:54:57 +1100578 /*
Damien Miller5428f641999-11-25 11:54:57 +1100579 * Set our umask to something reasonable, as some files are created
580 * with the default umask. This will make them world-readable but
581 * writable only by the owner, which is ok for all files for which we
582 * don't set the modes explicitly.
583 */
Damien Miller95def091999-11-25 00:26:21 +1100584 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000585
Darren Tuckerd6173c02008-06-13 04:52:53 +1000586 /*
587 * Initialize option structure to indicate that no values have been
588 * set.
589 */
Damien Miller95def091999-11-25 00:26:21 +1100590 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000591
Damien Miller95def091999-11-25 00:26:21 +1100592 /* Parse command-line arguments. */
593 host = NULL;
Damien Millere272a5b2008-11-03 19:22:37 +1100594 use_syslog = 0;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000595 logfile = NULL;
Darren Tucker72efd742009-06-21 17:48:00 +1000596 argv0 = av[0];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000597
Damien Miller2ecb6bd2006-03-15 12:03:53 +1100598 again:
Darren Tuckerd6173c02008-06-13 04:52:53 +1000599 while ((opt = getopt(ac, av, "1246ab:c:e:fgi:kl:m:no:p:qstvx"
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000600 "ACD:E:F:GI:KL:MNO:PQ:R:S:TVw:W:XYy")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100601 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000602 case '1':
603 options.protocol = SSH_PROTO_1;
604 break;
Damien Miller4af51302000-04-16 11:18:38 +1000605 case '2':
606 options.protocol = SSH_PROTO_2;
607 break;
Damien Miller34132e52000-01-14 15:45:46 +1100608 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000609 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100610 break;
Damien Miller34132e52000-01-14 15:45:46 +1100611 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000612 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100613 break;
Damien Miller95def091999-11-25 00:26:21 +1100614 case 'n':
615 stdin_null_flag = 1;
616 break;
Damien Miller95def091999-11-25 00:26:21 +1100617 case 'f':
618 fork_after_authentication_flag = 1;
619 stdin_null_flag = 1;
620 break;
Damien Miller95def091999-11-25 00:26:21 +1100621 case 'x':
622 options.forward_x11 = 0;
623 break;
Damien Miller95def091999-11-25 00:26:21 +1100624 case 'X':
625 options.forward_x11 = 1;
626 break;
Damien Millere272a5b2008-11-03 19:22:37 +1100627 case 'y':
628 use_syslog = 1;
629 break;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000630 case 'E':
631 logfile = xstrdup(optarg);
632 break;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000633 case 'G':
634 config_test = 1;
635 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000636 case 'Y':
637 options.forward_x11 = 1;
638 options.forward_x11_trusted = 1;
639 break;
Damien Miller95def091999-11-25 00:26:21 +1100640 case 'g':
Damien Miller7acefbb2014-07-18 14:11:24 +1000641 options.fwd_opts.gateway_ports = 1;
Damien Miller95def091999-11-25 00:26:21 +1100642 break;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100643 case 'O':
Damien Millere1537f92010-01-26 13:26:22 +1100644 if (stdio_forward_host != NULL)
645 fatal("Cannot specify multiplexing "
646 "command with -W");
647 else if (muxclient_command != 0)
648 fatal("Multiplexing command already specified");
Darren Tucker7ebfc102004-11-07 20:06:19 +1100649 if (strcmp(optarg, "check") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000650 muxclient_command = SSHMUX_COMMAND_ALIVE_CHECK;
Damien Miller388f6fc2010-05-21 14:57:35 +1000651 else if (strcmp(optarg, "forward") == 0)
652 muxclient_command = SSHMUX_COMMAND_FORWARD;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100653 else if (strcmp(optarg, "exit") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000654 muxclient_command = SSHMUX_COMMAND_TERMINATE;
Damien Miller6c3eec72011-05-05 14:16:22 +1000655 else if (strcmp(optarg, "stop") == 0)
656 muxclient_command = SSHMUX_COMMAND_STOP;
Damien Millerf6dff7c2011-09-22 21:38:52 +1000657 else if (strcmp(optarg, "cancel") == 0)
658 muxclient_command = SSHMUX_COMMAND_CANCEL_FWD;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100659 else
660 fatal("Invalid multiplex command.");
661 break;
Damien Miller147bba32002-09-04 16:46:06 +1000662 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100663 options.use_privileged_port = 0;
664 break;
Damien Millerd937dc02013-12-05 10:19:54 +1100665 case 'Q':
Damien Millerea111192013-04-23 19:24:32 +1000666 cp = NULL;
Damien Millerd937dc02013-12-05 10:19:54 +1100667 if (strcmp(optarg, "cipher") == 0)
Damien Miller0fde8ac2013-11-21 14:12:23 +1100668 cp = cipher_alg_list('\n', 0);
Damien Millerd937dc02013-12-05 10:19:54 +1100669 else if (strcmp(optarg, "cipher-auth") == 0)
Damien Miller0fde8ac2013-11-21 14:12:23 +1100670 cp = cipher_alg_list('\n', 1);
Damien Millerd937dc02013-12-05 10:19:54 +1100671 else if (strcmp(optarg, "mac") == 0)
Damien Miller690d9892013-11-08 12:16:49 +1100672 cp = mac_alg_list('\n');
Damien Millerd937dc02013-12-05 10:19:54 +1100673 else if (strcmp(optarg, "kex") == 0)
Damien Miller690d9892013-11-08 12:16:49 +1100674 cp = kex_alg_list('\n');
Damien Millerd937dc02013-12-05 10:19:54 +1100675 else if (strcmp(optarg, "key") == 0)
Damien Miller5be9d9e2013-12-07 11:24:01 +1100676 cp = key_alg_list(0, 0);
677 else if (strcmp(optarg, "key-cert") == 0)
678 cp = key_alg_list(1, 0);
679 else if (strcmp(optarg, "key-plain") == 0)
680 cp = key_alg_list(0, 1);
Damien Millerea111192013-04-23 19:24:32 +1000681 if (cp == NULL)
682 fatal("Unsupported query \"%s\"", optarg);
683 printf("%s\n", cp);
684 free(cp);
685 exit(0);
686 break;
Damien Miller95def091999-11-25 00:26:21 +1100687 case 'a':
688 options.forward_agent = 0;
689 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000690 case 'A':
691 options.forward_agent = 1;
692 break;
Damien Miller95def091999-11-25 00:26:21 +1100693 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100694 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100695 break;
Darren Tucker415bddc2007-06-12 23:43:16 +1000696 case 'K':
697 options.gss_authentication = 1;
698 options.gss_deleg_creds = 1;
699 break;
Damien Miller95def091999-11-25 00:26:21 +1100700 case 'i':
701 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000702 fprintf(stderr, "Warning: Identity file %s "
Damien Miller3eb48b62005-03-01 21:15:46 +1100703 "not accessible: %s.\n", optarg,
704 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100705 break;
706 }
Darren Tucker19104782013-04-05 11:13:08 +1100707 add_identity_file(&options, NULL, optarg, 1);
Damien Miller95def091999-11-25 00:26:21 +1100708 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000709 case 'I':
Damien Miller7ea845e2010-02-12 09:21:02 +1100710#ifdef ENABLE_PKCS11
711 options.pkcs11_provider = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000712#else
Damien Miller7ea845e2010-02-12 09:21:02 +1100713 fprintf(stderr, "no support for PKCS#11.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000714#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000715 break;
Damien Miller95def091999-11-25 00:26:21 +1100716 case 't':
Damien Miller21771e22011-05-15 08:45:50 +1000717 if (options.request_tty == REQUEST_TTY_YES)
718 options.request_tty = REQUEST_TTY_FORCE;
719 else
720 options.request_tty = REQUEST_TTY_YES;
Damien Miller95def091999-11-25 00:26:21 +1100721 break;
Damien Miller95def091999-11-25 00:26:21 +1100722 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000723 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100724 debug_flag = 1;
725 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000726 } else {
727 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
728 options.log_level++;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000729 }
Damien Miller03d4d7e2013-04-23 15:21:06 +1000730 break;
Damien Miller95def091999-11-25 00:26:21 +1100731 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100732 fprintf(stderr, "%s, %s\n",
Damien Miller1f0311c2014-05-15 14:24:09 +1000733 SSH_RELEASE,
734#ifdef WITH_OPENSSL
735 SSLeay_version(SSLEAY_VERSION)
736#else
737 "without OpenSSL"
738#endif
739 );
Damien Miller95def091999-11-25 00:26:21 +1100740 if (opt == 'V')
741 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100742 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100743 case 'w':
Damien Miller7b58e802005-12-13 19:33:19 +1100744 if (options.tun_open == -1)
745 options.tun_open = SSH_TUNMODE_DEFAULT;
Damien Millerd27b9472005-12-13 19:29:02 +1100746 options.tun_local = a2tun(optarg, &options.tun_remote);
Damien Miller7b58e802005-12-13 19:33:19 +1100747 if (options.tun_local == SSH_TUNID_ERR) {
Darren Tuckerd6173c02008-06-13 04:52:53 +1000748 fprintf(stderr,
749 "Bad tun device '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100750 exit(255);
Damien Millerd27b9472005-12-13 19:29:02 +1100751 }
752 break;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100753 case 'W':
Damien Millere1537f92010-01-26 13:26:22 +1100754 if (stdio_forward_host != NULL)
755 fatal("stdio forward already specified");
756 if (muxclient_command != 0)
757 fatal("Cannot specify stdio forward with -O");
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100758 if (parse_forward(&fwd, optarg, 1, 0)) {
759 stdio_forward_host = fwd.listen_host;
760 stdio_forward_port = fwd.listen_port;
Darren Tuckera627d422013-06-02 07:31:17 +1000761 free(fwd.connect_host);
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100762 } else {
763 fprintf(stderr,
764 "Bad stdio forwarding specification '%s'\n",
765 optarg);
766 exit(255);
767 }
Damien Miller21771e22011-05-15 08:45:50 +1000768 options.request_tty = REQUEST_TTY_NO;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100769 no_shell_flag = 1;
770 options.clear_forwardings = 1;
771 options.exit_on_forward_failure = 1;
772 break;
Damien Miller95def091999-11-25 00:26:21 +1100773 case 'q':
774 options.log_level = SYSLOG_LEVEL_QUIET;
775 break;
Damien Miller95def091999-11-25 00:26:21 +1100776 case 'e':
777 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000778 (u_char) optarg[1] >= 64 &&
779 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000780 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100781 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000782 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100783 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000784 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100785 else {
Damien Millerf4614452001-07-14 12:18:10 +1000786 fprintf(stderr, "Bad escape character '%s'.\n",
787 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100788 exit(255);
Damien Miller95def091999-11-25 00:26:21 +1100789 }
790 break;
Damien Miller95def091999-11-25 00:26:21 +1100791 case 'c':
Damien Millereba71ba2000-04-29 23:57:08 +1000792 if (ciphers_valid(optarg)) {
793 /* SSH2 only */
794 options.ciphers = xstrdup(optarg);
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000795 options.cipher = SSH_CIPHER_INVALID;
Damien Millereba71ba2000-04-29 23:57:08 +1000796 } else {
797 /* SSH1 only */
Damien Millere39cacc2000-11-29 12:18:44 +1100798 options.cipher = cipher_number(optarg);
799 if (options.cipher == -1) {
Damien Millerf4614452001-07-14 12:18:10 +1000800 fprintf(stderr,
801 "Unknown cipher type '%s'\n",
802 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100803 exit(255);
Damien Millereba71ba2000-04-29 23:57:08 +1000804 }
Damien Millerf4614452001-07-14 12:18:10 +1000805 if (options.cipher == SSH_CIPHER_3DES)
Damien Millere39cacc2000-11-29 12:18:44 +1100806 options.ciphers = "3des-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000807 else if (options.cipher == SSH_CIPHER_BLOWFISH)
Damien Millere39cacc2000-11-29 12:18:44 +1100808 options.ciphers = "blowfish-cbc";
Damien Millerf4614452001-07-14 12:18:10 +1000809 else
Damien Millere39cacc2000-11-29 12:18:44 +1100810 options.ciphers = (char *)-1;
Damien Miller95def091999-11-25 00:26:21 +1100811 }
812 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000813 case 'm':
814 if (mac_valid(optarg))
815 options.macs = xstrdup(optarg);
816 else {
Damien Millerf4614452001-07-14 12:18:10 +1000817 fprintf(stderr, "Unknown mac type '%s'\n",
818 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100819 exit(255);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000820 }
821 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000822 case 'M':
Damien Millerd14b1e72005-06-16 13:19:41 +1000823 if (options.control_master == SSHCTL_MASTER_YES)
824 options.control_master = SSHCTL_MASTER_ASK;
825 else
826 options.control_master = SSHCTL_MASTER_YES;
Damien Miller0e220db2004-06-15 10:34:08 +1000827 break;
Damien Miller95def091999-11-25 00:26:21 +1100828 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000829 options.port = a2port(optarg);
Damien Miller3dc71ad2009-01-28 16:31:22 +1100830 if (options.port <= 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000831 fprintf(stderr, "Bad port '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100832 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000833 }
Damien Miller95def091999-11-25 00:26:21 +1100834 break;
Damien Miller95def091999-11-25 00:26:21 +1100835 case 'l':
836 options.user = optarg;
837 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000838
Damien Miller95def091999-11-25 00:26:21 +1100839 case 'L':
Damien Miller4bf648f2009-02-14 16:28:21 +1100840 if (parse_forward(&fwd, optarg, 0, 0))
Damien Millerf91ee4c2005-03-01 21:24:33 +1100841 add_local_forward(&options, &fwd);
842 else {
Damien Millerf4614452001-07-14 12:18:10 +1000843 fprintf(stderr,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100844 "Bad local forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000845 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100846 exit(255);
Ben Lindstrom1a174712001-09-12 17:56:15 +0000847 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100848 break;
849
850 case 'R':
Damien Miller4bf648f2009-02-14 16:28:21 +1100851 if (parse_forward(&fwd, optarg, 0, 1)) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100852 add_remote_forward(&options, &fwd);
853 } else {
854 fprintf(stderr,
855 "Bad remote forwarding specification "
856 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100857 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100858 }
Damien Miller95def091999-11-25 00:26:21 +1100859 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000860
861 case 'D':
Damien Miller4bf648f2009-02-14 16:28:21 +1100862 if (parse_forward(&fwd, optarg, 1, 0)) {
Damien Millera699d952008-11-03 19:27:34 +1100863 add_local_forward(&options, &fwd);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100864 } else {
Damien Millera699d952008-11-03 19:27:34 +1100865 fprintf(stderr,
866 "Bad dynamic forwarding specification "
867 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100868 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000869 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000870 break;
871
Damien Miller95def091999-11-25 00:26:21 +1100872 case 'C':
873 options.compression = 1;
874 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000875 case 'N':
876 no_shell_flag = 1;
Damien Miller21771e22011-05-15 08:45:50 +1000877 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000878 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000879 case 'T':
Damien Miller21771e22011-05-15 08:45:50 +1000880 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000881 break;
Damien Miller95def091999-11-25 00:26:21 +1100882 case 'o':
Damien Miller9836cf82003-12-17 16:30:06 +1100883 line = xstrdup(optarg);
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000884 if (process_config_line(&options, pw,
885 host ? host : "", host ? host : "", line,
886 "command-line", 0, NULL, SSHCONF_USERCONF) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100887 exit(255);
Darren Tuckera627d422013-06-02 07:31:17 +1000888 free(line);
Damien Miller95def091999-11-25 00:26:21 +1100889 break;
Damien Miller832562e2001-01-30 09:30:01 +1100890 case 's':
891 subsystem_flag = 1;
892 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000893 case 'S':
894 if (options.control_path != NULL)
895 free(options.control_path);
896 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000897 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000898 case 'b':
899 options.bind_address = optarg;
900 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000901 case 'F':
902 config = optarg;
903 break;
Damien Miller95def091999-11-25 00:26:21 +1100904 default:
905 usage();
906 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000907 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000908
Damien Millerf4614452001-07-14 12:18:10 +1000909 ac -= optind;
910 av += optind;
911
Darren Tuckerb8c884a2010-01-08 18:53:43 +1100912 if (ac > 0 && !host) {
Ben Lindstromc276c122002-12-23 02:14:51 +0000913 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000914 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000915 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000916 if (cp == NULL || cp == p)
917 usage();
918 options.user = p;
919 *cp = '\0';
Damien Miller0faf7472013-10-17 11:47:23 +1100920 host = xstrdup(++cp);
Damien Millerf4614452001-07-14 12:18:10 +1000921 } else
Damien Miller0faf7472013-10-17 11:47:23 +1100922 host = xstrdup(*av);
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000923 if (ac > 1) {
924 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000925 goto again;
926 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000927 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000928 }
929
Damien Miller95def091999-11-25 00:26:21 +1100930 /* Check that we got a host name. */
931 if (!host)
932 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000933
Damien Miller0faf7472013-10-17 11:47:23 +1100934 host_arg = xstrdup(host);
935
Damien Miller1f0311c2014-05-15 14:24:09 +1000936#ifdef WITH_OPENSSL
Damien Miller4314c2b2010-09-10 11:12:09 +1000937 OpenSSL_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100938 ERR_load_crypto_strings();
Damien Miller1f0311c2014-05-15 14:24:09 +1000939#endif
Damien Millercb5e44a2000-09-29 12:12:36 +1100940
Damien Miller95def091999-11-25 00:26:21 +1100941 /* Initialize the command to execute on remote host. */
942 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000943
Damien Miller5428f641999-11-25 11:54:57 +1100944 /*
945 * Save the command to execute on the remote host in a buffer. There
946 * is no limit on the length of the command, except by the maximum
947 * packet size. Also sets the tty flag if there is no command.
948 */
Damien Millerf4614452001-07-14 12:18:10 +1000949 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100950 /* No command specified - execute shell on a tty. */
Damien Miller832562e2001-01-30 09:30:01 +1100951 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000952 fprintf(stderr,
953 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100954 usage();
955 }
Damien Miller95def091999-11-25 00:26:21 +1100956 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000957 /* A command has been specified. Store it into the buffer. */
958 for (i = 0; i < ac; i++) {
959 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100960 buffer_append(&command, " ", 1);
961 buffer_append(&command, av[i], strlen(av[i]));
962 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000963 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000964
Damien Miller95def091999-11-25 00:26:21 +1100965 /* Cannot fork to background if no command. */
Darren Tuckerd6173c02008-06-13 04:52:53 +1000966 if (fork_after_authentication_flag && buffer_len(&command) == 0 &&
967 !no_shell_flag)
968 fatal("Cannot fork into background without a command "
969 "to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000970
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000971 /*
972 * Initialize "log" output. Since we are the client all output
Damien Miller03d4d7e2013-04-23 15:21:06 +1000973 * goes to stderr unless otherwise specified by -y or -E.
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000974 */
Damien Miller03d4d7e2013-04-23 15:21:06 +1000975 if (use_syslog && logfile != NULL)
976 fatal("Can't specify both -y and -E");
977 if (logfile != NULL) {
978 log_redirect_stderr_to(logfile);
Darren Tuckera627d422013-06-02 07:31:17 +1000979 free(logfile);
Damien Miller03d4d7e2013-04-23 15:21:06 +1000980 }
Darren Tucker72efd742009-06-21 17:48:00 +1000981 log_init(argv0,
Darren Tuckerd6173c02008-06-13 04:52:53 +1000982 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
Damien Millere272a5b2008-11-03 19:22:37 +1100983 SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000984
Damien Miller03d4d7e2013-04-23 15:21:06 +1000985 if (debug_flag)
Damien Miller1f0311c2014-05-15 14:24:09 +1000986 logit("%s, %s", SSH_RELEASE,
987#ifdef WITH_OPENSSL
988 SSLeay_version(SSLEAY_VERSION)
989#else
990 "without OpenSSL"
991#endif
992 );
Damien Miller03d4d7e2013-04-23 15:21:06 +1000993
Damien Miller13f97b22014-02-24 15:57:55 +1100994 /* Parse the configuration files */
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000995 process_config_files(host_arg, pw, 0);
Ben Lindstrom83f07d12001-10-03 17:22:29 +0000996
Damien Miller13f97b22014-02-24 15:57:55 +1100997 /* Hostname canonicalisation needs a few options filled. */
998 fill_default_options_for_canonicalization(&options);
999
1000 /* If the user has replaced the hostname then take it into use now */
1001 if (options.hostname != NULL) {
1002 /* NB. Please keep in sync with readconf.c:match_cfg_line() */
1003 cp = percent_expand(options.hostname,
1004 "h", host, (char *)NULL);
1005 free(host);
1006 host = cp;
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001007 free(options.hostname);
1008 options.hostname = xstrdup(host);
Damien Miller13f97b22014-02-24 15:57:55 +11001009 }
1010
1011 /* If canonicalization requested then try to apply it */
1012 lowercase(host);
1013 if (options.canonicalize_hostname != SSH_CANONICALISE_NO)
1014 addrs = resolve_canonicalize(&host, options.port);
1015
1016 /*
Damien Miller08b57c62014-02-27 10:17:13 +11001017 * If CanonicalizePermittedCNAMEs have been specified but
1018 * other canonicalization did not happen (by not being requested
1019 * or by failing with fallback) then the hostname may still be changed
1020 * as a result of CNAME following.
1021 *
1022 * Try to resolve the bare hostname name using the system resolver's
1023 * usual search rules and then apply the CNAME follow rules.
1024 *
1025 * Skip the lookup if a ProxyCommand is being used unless the user
1026 * has specifically requested canonicalisation for this case via
1027 * CanonicalizeHostname=always
Damien Miller13f97b22014-02-24 15:57:55 +11001028 */
Damien Miller08b57c62014-02-27 10:17:13 +11001029 if (addrs == NULL && options.num_permitted_cnames != 0 &&
1030 (option_clear_or_none(options.proxy_command) ||
Damien Miller13f97b22014-02-24 15:57:55 +11001031 options.canonicalize_hostname == SSH_CANONICALISE_ALWAYS)) {
Damien Miller19439e92014-07-02 15:28:40 +10001032 if ((addrs = resolve_host(host, options.port,
1033 option_clear_or_none(options.proxy_command),
1034 cname, sizeof(cname))) == NULL) {
1035 /* Don't fatal proxied host names not in the DNS */
1036 if (option_clear_or_none(options.proxy_command))
1037 cleanup_exit(255); /* logged in resolve_host */
1038 } else
1039 check_follow_cname(&host, cname);
Damien Miller13f97b22014-02-24 15:57:55 +11001040 }
1041
1042 /*
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001043 * If canonicalisation is enabled then re-parse the configuration
1044 * files as new stanzas may match.
Damien Miller13f97b22014-02-24 15:57:55 +11001045 */
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001046 if (options.canonicalize_hostname != 0) {
1047 debug("Re-reading configuration after hostname "
1048 "canonicalisation");
1049 free(options.hostname);
1050 options.hostname = xstrdup(host);
1051 process_config_files(host_arg, pw, 1);
1052 /*
1053 * Address resolution happens early with canonicalisation
1054 * enabled and the port number may have changed since, so
1055 * reset it in address list
1056 */
1057 if (addrs != NULL && options.port > 0)
1058 set_addrinfo_port(addrs, options.port);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +00001059 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001060
Damien Miller95def091999-11-25 00:26:21 +11001061 /* Fill configuration defaults. */
1062 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001063
Damien Miller13f97b22014-02-24 15:57:55 +11001064 if (options.port == 0)
1065 options.port = default_ssh_port();
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001066 channel_set_af(options.address_family);
1067
Damien Millere9fc72e2013-10-15 12:14:12 +11001068 /* Tidy and check options */
1069 if (options.host_key_alias != NULL)
1070 lowercase(options.host_key_alias);
1071 if (options.proxy_command != NULL &&
1072 strcmp(options.proxy_command, "-") == 0 &&
1073 options.proxy_use_fdpass)
1074 fatal("ProxyCommand=- and ProxyUseFDPass are incompatible");
Damien Miller0faf7472013-10-17 11:47:23 +11001075#ifndef HAVE_CYGWIN
1076 if (original_effective_uid != 0)
1077 options.use_privileged_port = 0;
1078#endif
Damien Millere9fc72e2013-10-15 12:14:12 +11001079
Damien Miller95def091999-11-25 00:26:21 +11001080 /* reinit */
Darren Tucker72efd742009-06-21 17:48:00 +10001081 log_init(argv0, options.log_level, SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001082
Damien Millerfff9f092012-07-06 13:45:01 +10001083 if (options.request_tty == REQUEST_TTY_YES ||
1084 options.request_tty == REQUEST_TTY_FORCE)
1085 tty_flag = 1;
1086
1087 /* Allocate a tty by default if no command specified. */
1088 if (buffer_len(&command) == 0)
1089 tty_flag = options.request_tty != REQUEST_TTY_NO;
1090
1091 /* Force no tty */
1092 if (options.request_tty == REQUEST_TTY_NO || muxclient_command != 0)
1093 tty_flag = 0;
1094 /* Do not allocate a tty if stdin is not a tty. */
1095 if ((!isatty(fileno(stdin)) || stdin_null_flag) &&
1096 options.request_tty != REQUEST_TTY_FORCE) {
1097 if (tty_flag)
1098 logit("Pseudo-terminal will not be allocated because "
1099 "stdin is not a terminal.");
1100 tty_flag = 0;
1101 }
1102
Damien Miller60bc5172001-03-19 09:38:15 +11001103 seed_rng();
1104
Damien Miller95def091999-11-25 00:26:21 +11001105 if (options.user == NULL)
1106 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001107
Damien Millerdfc85fa2011-05-15 08:44:02 +10001108 if (gethostname(thishost, sizeof(thishost)) == -1)
1109 fatal("gethostname: %s", strerror(errno));
1110 strlcpy(shorthost, thishost, sizeof(shorthost));
1111 shorthost[strcspn(thishost, ".")] = '\0';
1112 snprintf(portstr, sizeof(portstr), "%d", options.port);
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001113
Damien Miller9c386432014-07-03 21:27:46 +10001114 if ((md = ssh_digest_start(SSH_DIGEST_SHA1)) == NULL ||
1115 ssh_digest_update(md, thishost, strlen(thishost)) < 0 ||
1116 ssh_digest_update(md, host, strlen(host)) < 0 ||
1117 ssh_digest_update(md, portstr, strlen(portstr)) < 0 ||
1118 ssh_digest_update(md, options.user, strlen(options.user)) < 0 ||
1119 ssh_digest_final(md, conn_hash, sizeof(conn_hash)) < 0)
1120 fatal("%s: mux digest failed", __func__);
1121 ssh_digest_free(md);
1122 conn_hash_hex = tohex(conn_hash, ssh_digest_bytes(SSH_DIGEST_SHA1));
1123
Damien Millerdfc85fa2011-05-15 08:44:02 +10001124 if (options.local_command != NULL) {
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001125 debug3("expanding LocalCommand: %s", options.local_command);
1126 cp = options.local_command;
Damien Miller9c386432014-07-03 21:27:46 +10001127 options.local_command = percent_expand(cp,
1128 "C", conn_hash_hex,
1129 "L", shorthost,
1130 "d", pw->pw_dir,
1131 "h", host,
1132 "l", thishost,
1133 "n", host_arg,
1134 "p", portstr,
1135 "r", options.user,
1136 "u", pw->pw_name,
Damien Millerdfc85fa2011-05-15 08:44:02 +10001137 (char *)NULL);
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001138 debug3("expanded LocalCommand: %s", options.local_command);
Darren Tuckera627d422013-06-02 07:31:17 +10001139 free(cp);
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001140 }
1141
Damien Miller0e220db2004-06-15 10:34:08 +10001142 if (options.control_path != NULL) {
Damien Miller6476cad2005-06-16 13:18:34 +10001143 cp = tilde_expand_filename(options.control_path,
1144 original_real_uid);
Darren Tuckera627d422013-06-02 07:31:17 +10001145 free(options.control_path);
Damien Miller9c386432014-07-03 21:27:46 +10001146 options.control_path = percent_expand(cp,
1147 "C", conn_hash_hex,
1148 "L", shorthost,
1149 "h", host,
1150 "l", thishost,
1151 "n", host_arg,
1152 "p", portstr,
1153 "r", options.user,
1154 "u", pw->pw_name,
Damien Millerdfc85fa2011-05-15 08:44:02 +10001155 (char *)NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10001156 free(cp);
Damien Miller0e220db2004-06-15 10:34:08 +10001157 }
Damien Miller9c386432014-07-03 21:27:46 +10001158 free(conn_hash_hex);
1159
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001160 if (config_test) {
1161 dump_client_config(&options, host);
1162 exit(0);
1163 }
1164
Damien Millerb1cbfa22008-05-19 16:00:08 +10001165 if (muxclient_command != 0 && options.control_path == NULL)
Darren Tucker0814d312005-06-01 23:08:51 +10001166 fatal("No ControlPath specified for \"-O\" command");
Damien Millerd14b1e72005-06-16 13:19:41 +10001167 if (options.control_path != NULL)
Damien Millerb1cbfa22008-05-19 16:00:08 +10001168 muxclient(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +10001169
Damien Miller08b57c62014-02-27 10:17:13 +11001170 /*
1171 * If hostname canonicalisation was not enabled, then we may not
1172 * have yet resolved the hostname. Do so now.
1173 */
1174 if (addrs == NULL && options.proxy_command == NULL) {
1175 if ((addrs = resolve_host(host, options.port, 1,
1176 cname, sizeof(cname))) == NULL)
1177 cleanup_exit(255); /* resolve_host logs the error */
1178 }
1179
Damien Miller67bd0622007-09-17 12:06:57 +10001180 timeout_ms = options.connection_timeout * 1000;
1181
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001182 /* Open a connection to the remote host. */
Damien Miller0faf7472013-10-17 11:47:23 +11001183 if (ssh_connect(host, addrs, &hostaddr, options.port,
1184 options.address_family, options.connection_attempts,
1185 &timeout_ms, options.tcp_keep_alive,
1186 options.use_privileged_port) != 0)
1187 exit(255);
1188
Damien Miller28631ce2013-10-26 10:07:56 +11001189 if (addrs != NULL)
1190 freeaddrinfo(addrs);
1191
Damien Miller0faf7472013-10-17 11:47:23 +11001192 packet_set_timeout(options.server_alive_interval,
1193 options.server_alive_count_max);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001194
Damien Miller67bd0622007-09-17 12:06:57 +10001195 if (timeout_ms > 0)
1196 debug3("timeout: %d ms remain after connect", timeout_ms);
1197
Damien Miller5428f641999-11-25 11:54:57 +11001198 /*
1199 * If we successfully made the connection, load the host private key
1200 * in case we will need it later for combined rsa-rhosts
1201 * authentication. This must be done before releasing extra
1202 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +00001203 * If we cannot access the private keys, load the public keys
1204 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +11001205 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001206 sensitive_data.nkeys = 0;
1207 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001208 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +00001209 if (options.rhosts_rsa_authentication ||
1210 options.hostbased_authentication) {
Damien Miller0fa47cf2013-12-29 17:53:39 +11001211 sensitive_data.nkeys = 9;
Damien Millerddd63ab2006-03-31 23:10:51 +11001212 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001213 sizeof(Key));
Damien Miller6af914a2010-09-10 11:39:26 +10001214 for (i = 0; i < sensitive_data.nkeys; i++)
1215 sensitive_data.keys[i] = NULL;
Ben Lindstromf9c48842002-06-11 16:37:51 +00001216
1217 PRIV_START;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001218 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Darren Tucker232b76f2006-05-06 17:41:51 +10001219 _PATH_HOST_KEY_FILE, "", NULL, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001220#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001221 sensitive_data.keys[1] = key_load_private_cert(KEY_ECDSA,
Damien Millereb8b60e2010-08-31 22:41:14 +10001222 _PATH_HOST_ECDSA_KEY_FILE, "", NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001223#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001224 sensitive_data.keys[2] = key_load_private_cert(KEY_ED25519,
1225 _PATH_HOST_ED25519_KEY_FILE, "", NULL);
Damien Millereb8b60e2010-08-31 22:41:14 +10001226 sensitive_data.keys[3] = key_load_private_cert(KEY_RSA,
Damien Millerc1583312010-08-05 13:04:50 +10001227 _PATH_HOST_RSA_KEY_FILE, "", NULL);
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001228 sensitive_data.keys[4] = key_load_private_cert(KEY_DSA,
1229 _PATH_HOST_DSA_KEY_FILE, "", NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001230#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001231 sensitive_data.keys[5] = key_load_private_type(KEY_ECDSA,
Damien Millereb8b60e2010-08-31 22:41:14 +10001232 _PATH_HOST_ECDSA_KEY_FILE, "", NULL, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001233#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001234 sensitive_data.keys[6] = key_load_private_type(KEY_ED25519,
1235 _PATH_HOST_ED25519_KEY_FILE, "", NULL, NULL);
Damien Miller0fa47cf2013-12-29 17:53:39 +11001236 sensitive_data.keys[7] = key_load_private_type(KEY_RSA,
Darren Tucker232b76f2006-05-06 17:41:51 +10001237 _PATH_HOST_RSA_KEY_FILE, "", NULL, NULL);
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001238 sensitive_data.keys[8] = key_load_private_type(KEY_DSA,
1239 _PATH_HOST_DSA_KEY_FILE, "", NULL, NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +00001240 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001241
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +00001242 if (options.hostbased_authentication == 1 &&
1243 sensitive_data.keys[0] == NULL &&
Damien Millereb8b60e2010-08-31 22:41:14 +10001244 sensitive_data.keys[5] == NULL &&
Damien Miller5be9d9e2013-12-07 11:24:01 +11001245 sensitive_data.keys[6] == NULL &&
Damien Miller0fa47cf2013-12-29 17:53:39 +11001246 sensitive_data.keys[7] == NULL &&
1247 sensitive_data.keys[8] == NULL) {
Damien Miller6af914a2010-09-10 11:39:26 +10001248#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001249 sensitive_data.keys[1] = key_load_cert(
Damien Millereb8b60e2010-08-31 22:41:14 +10001250 _PATH_HOST_ECDSA_KEY_FILE);
Damien Miller6af914a2010-09-10 11:39:26 +10001251#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001252 sensitive_data.keys[2] = key_load_cert(
1253 _PATH_HOST_ED25519_KEY_FILE);
Damien Millereb8b60e2010-08-31 22:41:14 +10001254 sensitive_data.keys[3] = key_load_cert(
Damien Millerc1583312010-08-05 13:04:50 +10001255 _PATH_HOST_RSA_KEY_FILE);
Damien Miller0fa47cf2013-12-29 17:53:39 +11001256 sensitive_data.keys[4] = key_load_cert(
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001257 _PATH_HOST_DSA_KEY_FILE);
Damien Miller6af914a2010-09-10 11:39:26 +10001258#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001259 sensitive_data.keys[5] = key_load_public(
Damien Millereb8b60e2010-08-31 22:41:14 +10001260 _PATH_HOST_ECDSA_KEY_FILE, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001261#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001262 sensitive_data.keys[6] = key_load_public(
1263 _PATH_HOST_ED25519_KEY_FILE, NULL);
Damien Miller5be9d9e2013-12-07 11:24:01 +11001264 sensitive_data.keys[7] = key_load_public(
Damien Miller0fa47cf2013-12-29 17:53:39 +11001265 _PATH_HOST_RSA_KEY_FILE, NULL);
1266 sensitive_data.keys[8] = key_load_public(
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001267 _PATH_HOST_DSA_KEY_FILE, NULL);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001268 sensitive_data.external_keysign = 1;
1269 }
Damien Miller95def091999-11-25 00:26:21 +11001270 }
Damien Miller5428f641999-11-25 11:54:57 +11001271 /*
1272 * Get rid of any extra privileges that we may have. We will no
1273 * longer need them. Also, extra privileges could make it very hard
1274 * to read identity files and other non-world-readable files from the
1275 * user's home directory if it happens to be on a NFS volume where
1276 * root is mapped to nobody.
1277 */
Darren Tucker25f60a72004-08-15 17:23:34 +10001278 if (original_effective_uid == 0) {
1279 PRIV_START;
1280 permanently_set_uid(pw);
1281 }
Damien Miller95def091999-11-25 00:26:21 +11001282
Damien Miller5428f641999-11-25 11:54:57 +11001283 /*
1284 * Now that we are back to our own permissions, create ~/.ssh
Damien Miller788f2122005-11-05 15:14:59 +11001285 * directory if it doesn't already exist.
Damien Miller5428f641999-11-25 11:54:57 +11001286 */
Darren Tucker45c66d72011-11-04 10:50:40 +11001287 if (config == NULL) {
1288 r = snprintf(buf, sizeof buf, "%s%s%s", pw->pw_dir,
1289 strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
1290 if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) < 0) {
Darren Tucker8ccb7392010-09-10 12:28:24 +10001291#ifdef WITH_SELINUX
Darren Tucker45c66d72011-11-04 10:50:40 +11001292 ssh_selinux_setfscreatecon(buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001293#endif
Darren Tucker45c66d72011-11-04 10:50:40 +11001294 if (mkdir(buf, 0700) < 0)
1295 error("Could not create directory '%.200s'.",
1296 buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001297#ifdef WITH_SELINUX
Darren Tucker45c66d72011-11-04 10:50:40 +11001298 ssh_selinux_setfscreatecon(NULL);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001299#endif
Darren Tucker45c66d72011-11-04 10:50:40 +11001300 }
Darren Tucker8ccb7392010-09-10 12:28:24 +10001301 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001302 /* load options.identity_files */
1303 load_public_identity_files();
1304
1305 /* Expand ~ in known host file names. */
Damien Miller295ee632011-05-29 21:42:31 +10001306 tilde_expand_paths(options.system_hostfiles,
1307 options.num_system_hostfiles);
1308 tilde_expand_paths(options.user_hostfiles, options.num_user_hostfiles);
Damien Miller95def091999-11-25 00:26:21 +11001309
Damien Miller07cd5892001-11-12 10:52:03 +11001310 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
Damien Miller857b02e2010-09-24 22:02:56 +10001311 signal(SIGCHLD, main_sigchld_handler);
Damien Miller07cd5892001-11-12 10:52:03 +11001312
Darren Tuckerd6173c02008-06-13 04:52:53 +10001313 /* Log into the remote system. Never returns if the login fails. */
Damien Miller67bd0622007-09-17 12:06:57 +10001314 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr,
Damien Millerd925dcd2010-12-01 12:21:51 +11001315 options.port, pw, timeout_ms);
Damien Miller95def091999-11-25 00:26:21 +11001316
Damien Miller383ffe62010-06-26 10:02:03 +10001317 if (packet_connection_is_on_socket()) {
1318 verbose("Authenticated to %s ([%s]:%d).", host,
1319 get_remote_ipaddr(), get_remote_port());
1320 } else {
1321 verbose("Authenticated to %s (via proxy).", host);
1322 }
1323
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001324 /* We no longer need the private host keys. Clear them now. */
1325 if (sensitive_data.nkeys != 0) {
1326 for (i = 0; i < sensitive_data.nkeys; i++) {
1327 if (sensitive_data.keys[i] != NULL) {
1328 /* Destroys contents safely */
1329 debug3("clear hostkey %d", i);
1330 key_free(sensitive_data.keys[i]);
1331 sensitive_data.keys[i] = NULL;
1332 }
1333 }
Darren Tuckera627d422013-06-02 07:31:17 +10001334 free(sensitive_data.keys);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001335 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +00001336 for (i = 0; i < options.num_identity_files; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +10001337 free(options.identity_files[i]);
1338 options.identity_files[i] = NULL;
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +00001339 if (options.identity_keys[i]) {
1340 key_free(options.identity_keys[i]);
1341 options.identity_keys[i] = NULL;
1342 }
1343 }
Damien Miller95def091999-11-25 00:26:21 +11001344
Damien Miller1383bd82000-04-06 12:32:37 +10001345 exit_status = compat20 ? ssh_session2() : ssh_session();
1346 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +10001347
Damien Millerb1cbfa22008-05-19 16:00:08 +10001348 if (options.control_path != NULL && muxserver_sock != -1)
Damien Miller0e220db2004-06-15 10:34:08 +10001349 unlink(options.control_path);
1350
Damien Millera41ccca2010-10-07 22:07:32 +11001351 /* Kill ProxyCommand if it is running. */
1352 ssh_kill_proxy_command();
Damien Miller8c4e18a2002-09-19 12:05:02 +10001353
Damien Miller1383bd82000-04-06 12:32:37 +10001354 return exit_status;
1355}
1356
Damien Millere11e1ea2010-08-03 16:04:46 +10001357static void
1358control_persist_detach(void)
1359{
1360 pid_t pid;
Damien Miller00d9ae22010-08-17 01:59:31 +10001361 int devnull;
Damien Millere11e1ea2010-08-03 16:04:46 +10001362
1363 debug("%s: backgrounding master process", __func__);
1364
1365 /*
1366 * master (current process) into the background, and make the
1367 * foreground process a client of the backgrounded master.
1368 */
1369 switch ((pid = fork())) {
1370 case -1:
1371 fatal("%s: fork: %s", __func__, strerror(errno));
1372 case 0:
1373 /* Child: master process continues mainloop */
1374 break;
1375 default:
1376 /* Parent: set up mux slave to connect to backgrounded master */
1377 debug2("%s: background process is %ld", __func__, (long)pid);
1378 stdin_null_flag = ostdin_null_flag;
Damien Miller21771e22011-05-15 08:45:50 +10001379 options.request_tty = orequest_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +10001380 tty_flag = otty_flag;
1381 close(muxserver_sock);
1382 muxserver_sock = -1;
Damien Miller5929c522010-09-10 11:17:02 +10001383 options.control_master = SSHCTL_MASTER_NO;
Damien Millere11e1ea2010-08-03 16:04:46 +10001384 muxclient(options.control_path);
1385 /* muxclient() doesn't return on success. */
1386 fatal("Failed to connect to new control master");
1387 }
Damien Miller00d9ae22010-08-17 01:59:31 +10001388 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
1389 error("%s: open(\"/dev/null\"): %s", __func__,
1390 strerror(errno));
1391 } else {
1392 if (dup2(devnull, STDIN_FILENO) == -1 ||
1393 dup2(devnull, STDOUT_FILENO) == -1)
1394 error("%s: dup2: %s", __func__, strerror(errno));
1395 if (devnull > STDERR_FILENO)
1396 close(devnull);
1397 }
Damien Miller98e27dc2013-07-25 11:55:52 +10001398 daemon(1, 1);
Damien Millerea2c1a42011-06-03 12:10:22 +10001399 setproctitle("%s [mux]", options.control_path);
Damien Millere11e1ea2010-08-03 16:04:46 +10001400}
1401
1402/* Do fork() after authentication. Used by "ssh -f" */
1403static void
1404fork_postauth(void)
1405{
1406 if (need_controlpersist_detach)
1407 control_persist_detach();
1408 debug("forking to background");
1409 fork_after_authentication_flag = 0;
1410 if (daemon(1, 1) < 0)
1411 fatal("daemon() failed: %.200s", strerror(errno));
1412}
1413
Darren Tucker9f407c42008-06-13 04:50:27 +10001414/* Callback for remote forward global requests */
1415static void
1416ssh_confirm_remote_forward(int type, u_int32_t seq, void *ctxt)
1417{
Damien Miller7acefbb2014-07-18 14:11:24 +10001418 struct Forward *rfwd = (struct Forward *)ctxt;
Darren Tucker9f407c42008-06-13 04:50:27 +10001419
Damien Miller4bf648f2009-02-14 16:28:21 +11001420 /* XXX verbose() on failure? */
Damien Miller4b3ed642014-07-02 15:29:40 +10001421 debug("remote forward %s for: listen %s%s%d, connect %s:%d",
Darren Tucker9f407c42008-06-13 04:50:27 +10001422 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
Damien Miller7acefbb2014-07-18 14:11:24 +10001423 rfwd->listen_path ? rfwd->listen_path :
1424 rfwd->listen_host ? rfwd->listen_host : "",
1425 (rfwd->listen_path || rfwd->listen_host) ? ":" : "",
1426 rfwd->listen_port, rfwd->connect_path ? rfwd->connect_path :
1427 rfwd->connect_host, rfwd->connect_port);
1428 if (rfwd->listen_path == NULL && rfwd->listen_port == 0) {
Darren Tucker68afb8c2011-10-02 18:59:03 +11001429 if (type == SSH2_MSG_REQUEST_SUCCESS) {
1430 rfwd->allocated_port = packet_get_int();
1431 logit("Allocated port %u for remote forward to %s:%d",
1432 rfwd->allocated_port,
1433 rfwd->connect_host, rfwd->connect_port);
1434 channel_update_permitted_opens(rfwd->handle,
1435 rfwd->allocated_port);
1436 } else {
1437 channel_update_permitted_opens(rfwd->handle, -1);
1438 }
Damien Miller4bf648f2009-02-14 16:28:21 +11001439 }
1440
Darren Tucker9f407c42008-06-13 04:50:27 +10001441 if (type == SSH2_MSG_REQUEST_FAILURE) {
Damien Miller7acefbb2014-07-18 14:11:24 +10001442 if (options.exit_on_forward_failure) {
1443 if (rfwd->listen_path != NULL)
1444 fatal("Error: remote port forwarding failed "
1445 "for listen path %s", rfwd->listen_path);
1446 else
1447 fatal("Error: remote port forwarding failed "
1448 "for listen port %d", rfwd->listen_port);
1449 } else {
1450 if (rfwd->listen_path != NULL)
1451 logit("Warning: remote port forwarding failed "
1452 "for listen path %s", rfwd->listen_path);
1453 else
1454 logit("Warning: remote port forwarding failed "
1455 "for listen port %d", rfwd->listen_port);
1456 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001457 }
Darren Tucker9a2a6092008-07-04 12:53:50 +10001458 if (++remote_forward_confirms_received == options.num_remote_forwards) {
Darren Tucker9f407c42008-06-13 04:50:27 +10001459 debug("All remote forwarding requests processed");
Damien Millere11e1ea2010-08-03 16:04:46 +10001460 if (fork_after_authentication_flag)
1461 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001462 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001463}
1464
Ben Lindstrombba81212001-06-25 05:01:22 +00001465static void
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001466client_cleanup_stdio_fwd(int id, void *arg)
1467{
1468 debug("stdio forwarding: done");
1469 cleanup_exit(0);
1470}
1471
Darren Tucker2d6665d2011-11-04 10:54:22 +11001472static void
Damien Miller357610d2014-07-18 15:04:10 +10001473ssh_stdio_confirm(int id, int success, void *arg)
1474{
1475 if (!success)
1476 fatal("stdio forwarding failed");
1477}
1478
1479static void
Darren Tucker2d6665d2011-11-04 10:54:22 +11001480ssh_init_stdio_forwarding(void)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001481{
1482 Channel *c;
Damien Millere1537f92010-01-26 13:26:22 +11001483 int in, out;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001484
Darren Tucker2d6665d2011-11-04 10:54:22 +11001485 if (stdio_forward_host == NULL)
1486 return;
Damien Miller386feab2013-10-15 12:14:49 +11001487 if (!compat20)
Darren Tucker2d6665d2011-11-04 10:54:22 +11001488 fatal("stdio forwarding require Protocol 2");
Damien Millere1537f92010-01-26 13:26:22 +11001489
Darren Tucker2d6665d2011-11-04 10:54:22 +11001490 debug3("%s: %s:%d", __func__, stdio_forward_host, stdio_forward_port);
1491
1492 if ((in = dup(STDIN_FILENO)) < 0 ||
1493 (out = dup(STDOUT_FILENO)) < 0)
Damien Millere1537f92010-01-26 13:26:22 +11001494 fatal("channel_connect_stdio_fwd: dup() in/out failed");
Darren Tucker2d6665d2011-11-04 10:54:22 +11001495 if ((c = channel_connect_stdio_fwd(stdio_forward_host,
1496 stdio_forward_port, in, out)) == NULL)
1497 fatal("%s: channel_connect_stdio_fwd failed", __func__);
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001498 channel_register_cleanup(c->self, client_cleanup_stdio_fwd, 0);
Damien Miller357610d2014-07-18 15:04:10 +10001499 channel_register_open_confirm(c->self, ssh_stdio_confirm, NULL);
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001500}
1501
1502static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001503ssh_init_forwarding(void)
1504{
Kevin Steves12057502001-02-05 14:54:34 +00001505 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001506 int i;
Kevin Steves12057502001-02-05 14:54:34 +00001507
Damien Miller0bc1bd82000-11-13 22:57:25 +11001508 /* Initiate local TCP/IP port forwardings. */
1509 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001510 debug("Local connections to %.200s:%d forwarded to remote "
1511 "address %.200s:%d",
Damien Miller7acefbb2014-07-18 14:11:24 +10001512 (options.local_forwards[i].listen_path != NULL) ?
1513 options.local_forwards[i].listen_path :
Darren Tucker47eede72005-03-14 23:08:12 +11001514 (options.local_forwards[i].listen_host == NULL) ?
Damien Miller7acefbb2014-07-18 14:11:24 +10001515 (options.fwd_opts.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001516 options.local_forwards[i].listen_host,
1517 options.local_forwards[i].listen_port,
Damien Miller7acefbb2014-07-18 14:11:24 +10001518 (options.local_forwards[i].connect_path != NULL) ?
1519 options.local_forwards[i].connect_path :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001520 options.local_forwards[i].connect_host,
1521 options.local_forwards[i].connect_port);
Damien Millerb16461c2002-01-22 23:29:22 +11001522 success += channel_setup_local_fwd_listener(
Damien Miller7acefbb2014-07-18 14:11:24 +10001523 &options.local_forwards[i], &options.fwd_opts);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001524 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10001525 if (i > 0 && success != i && options.exit_on_forward_failure)
1526 fatal("Could not request local forwarding.");
Kevin Steves12057502001-02-05 14:54:34 +00001527 if (i > 0 && success == 0)
1528 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001529
1530 /* Initiate remote TCP/IP port forwardings. */
1531 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001532 debug("Remote connections from %.200s:%d forwarded to "
1533 "local address %.200s:%d",
Damien Miller7acefbb2014-07-18 14:11:24 +10001534 (options.remote_forwards[i].listen_path != NULL) ?
1535 options.remote_forwards[i].listen_path :
Damien Miller46d38de2005-07-17 17:02:09 +10001536 (options.remote_forwards[i].listen_host == NULL) ?
Damien Milleraa3bb102005-11-05 15:12:59 +11001537 "LOCALHOST" : options.remote_forwards[i].listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +11001538 options.remote_forwards[i].listen_port,
Damien Miller7acefbb2014-07-18 14:11:24 +10001539 (options.remote_forwards[i].connect_path != NULL) ?
1540 options.remote_forwards[i].connect_path :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001541 options.remote_forwards[i].connect_host,
1542 options.remote_forwards[i].connect_port);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001543 options.remote_forwards[i].handle =
1544 channel_request_remote_forwarding(
Damien Miller7acefbb2014-07-18 14:11:24 +10001545 &options.remote_forwards[i]);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001546 if (options.remote_forwards[i].handle < 0) {
Darren Tuckere7d4b192006-07-12 22:17:10 +10001547 if (options.exit_on_forward_failure)
1548 fatal("Could not request remote forwarding.");
1549 else
1550 logit("Warning: Could not request remote "
1551 "forwarding.");
Darren Tucker68afb8c2011-10-02 18:59:03 +11001552 } else {
1553 client_register_global_confirm(ssh_confirm_remote_forward,
1554 &options.remote_forwards[i]);
Darren Tuckere7d4b192006-07-12 22:17:10 +10001555 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001556 }
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001557
1558 /* Initiate tunnel forwarding. */
1559 if (options.tun_open != SSH_TUNMODE_NO) {
1560 if (client_request_tun_fwd(options.tun_open,
1561 options.tun_local, options.tun_remote) == -1) {
1562 if (options.exit_on_forward_failure)
1563 fatal("Could not request tunnel forwarding.");
1564 else
1565 error("Could not request tunnel forwarding.");
1566 }
1567 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001568}
1569
Ben Lindstrombba81212001-06-25 05:01:22 +00001570static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001571check_agent_present(void)
1572{
djm@openbsd.org141efe42015-01-14 20:05:27 +00001573 int r;
1574
Damien Miller0bc1bd82000-11-13 22:57:25 +11001575 if (options.forward_agent) {
Damien Miller788f2122005-11-05 15:14:59 +11001576 /* Clear agent forwarding if we don't have an agent. */
djm@openbsd.org141efe42015-01-14 20:05:27 +00001577 if ((r = ssh_get_authentication_socket(NULL)) != 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001578 options.forward_agent = 0;
djm@openbsd.org141efe42015-01-14 20:05:27 +00001579 if (r != SSH_ERR_AGENT_NOT_PRESENT)
1580 debug("ssh_get_authentication_socket: %s",
1581 ssh_err(r));
1582 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001583 }
1584}
1585
Ben Lindstrombba81212001-06-25 05:01:22 +00001586static int
Damien Miller1383bd82000-04-06 12:32:37 +10001587ssh_session(void)
1588{
1589 int type;
Damien Miller1383bd82000-04-06 12:32:37 +10001590 int interactive = 0;
1591 int have_tty = 0;
1592 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +10001593 char *cp;
Damien Miller17e7ed02005-06-17 12:54:33 +10001594 const char *display;
Damien Miller1383bd82000-04-06 12:32:37 +10001595
Damien Miller95def091999-11-25 00:26:21 +11001596 /* Enable compression if requested. */
1597 if (options.compression) {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001598 debug("Requesting compression at level %d.",
1599 options.compression_level);
Damien Miller95def091999-11-25 00:26:21 +11001600
Darren Tuckerd6173c02008-06-13 04:52:53 +10001601 if (options.compression_level < 1 ||
1602 options.compression_level > 9)
1603 fatal("Compression level must be from 1 (fast) to "
1604 "9 (slow, best).");
Damien Miller95def091999-11-25 00:26:21 +11001605
1606 /* Send the request. */
1607 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
1608 packet_put_int(options.compression_level);
1609 packet_send();
1610 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +11001611 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001612 if (type == SSH_SMSG_SUCCESS)
1613 packet_start_compression(options.compression_level);
1614 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +10001615 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +11001616 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001617 packet_disconnect("Protocol error waiting for "
1618 "compression response.");
Damien Miller95def091999-11-25 00:26:21 +11001619 }
1620 /* Allocate a pseudo tty if appropriate. */
1621 if (tty_flag) {
1622 debug("Requesting pty.");
1623
1624 /* Start the packet. */
1625 packet_start(SSH_CMSG_REQUEST_PTY);
1626
1627 /* Store TERM in the packet. There is no limit on the
1628 length of the string. */
1629 cp = getenv("TERM");
1630 if (!cp)
1631 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +00001632 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +11001633
1634 /* Store window size in the packet. */
1635 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1636 memset(&ws, 0, sizeof(ws));
Damien Miller71a73672006-03-26 14:04:36 +11001637 packet_put_int((u_int)ws.ws_row);
1638 packet_put_int((u_int)ws.ws_col);
1639 packet_put_int((u_int)ws.ws_xpixel);
1640 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller95def091999-11-25 00:26:21 +11001641
1642 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001643 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +11001644
1645 /* Send the packet, and wait for it to leave. */
1646 packet_send();
1647 packet_write_wait();
1648
1649 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001650 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +10001651 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001652 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001653 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +10001654 } else if (type == SSH_SMSG_FAILURE)
Darren Tuckerd6173c02008-06-13 04:52:53 +10001655 logit("Warning: Remote host failed or refused to "
1656 "allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +11001657 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001658 packet_disconnect("Protocol error waiting for pty "
1659 "request response.");
Damien Miller95def091999-11-25 00:26:21 +11001660 }
1661 /* Request X11 forwarding if enabled and DISPLAY is set. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001662 display = getenv("DISPLAY");
1663 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001664 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001665 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001666 client_x11_get_proto(display, options.xauth_location,
Damien Miller386feab2013-10-15 12:14:49 +11001667 options.forward_x11_trusted,
Damien Miller1ab6a512010-06-26 10:02:24 +10001668 options.forward_x11_timeout,
1669 &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001670 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001671 debug("Requesting X11 forwarding with authentication "
1672 "spoofing.");
Damien Miller6d7b4372011-06-23 08:31:57 +10001673 x11_request_forwarding_with_spoofing(0, display, proto,
1674 data, 0);
Damien Miller95def091999-11-25 00:26:21 +11001675 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001676 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001677 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001678 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001679 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +10001680 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +10001681 } else {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001682 packet_disconnect("Protocol error waiting for X11 "
1683 "forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +10001684 }
Damien Miller95def091999-11-25 00:26:21 +11001685 }
1686 /* Tell the packet module whether this is an interactive session. */
Damien Miller0dac6fb2010-11-20 15:19:38 +11001687 packet_set_interactive(interactive,
1688 options.ip_qos_interactive, options.ip_qos_bulk);
Damien Miller95def091999-11-25 00:26:21 +11001689
1690 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001691 check_agent_present();
1692
Damien Miller95def091999-11-25 00:26:21 +11001693 if (options.forward_agent) {
1694 debug("Requesting authentication agent forwarding.");
1695 auth_request_forwarding();
1696
1697 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001698 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +11001699 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11001700 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +10001701 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +11001702 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001703
Damien Miller0bc1bd82000-11-13 22:57:25 +11001704 /* Initiate port forwardings. */
Darren Tucker2d6665d2011-11-04 10:54:22 +11001705 ssh_init_stdio_forwarding();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001706 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001707
Darren Tuckerb776c852007-12-02 23:06:35 +11001708 /* Execute a local command */
1709 if (options.local_command != NULL &&
1710 options.permit_local_command)
1711 ssh_local_cmd(options.local_command);
1712
Darren Tucker9a2a6092008-07-04 12:53:50 +10001713 /*
1714 * If requested and we are not interested in replies to remote
1715 * forwarding requests, then let ssh continue in the background.
1716 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001717 if (fork_after_authentication_flag) {
1718 if (options.exit_on_forward_failure &&
1719 options.num_remote_forwards > 0) {
1720 debug("deferring postauth fork until remote forward "
1721 "confirmation received");
1722 } else
1723 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001724 }
Damien Miller5428f641999-11-25 11:54:57 +11001725
1726 /*
1727 * If a command was specified on the command line, execute the
1728 * command now. Otherwise request the server to start a shell.
1729 */
Damien Miller95def091999-11-25 00:26:21 +11001730 if (buffer_len(&command) > 0) {
1731 int len = buffer_len(&command);
1732 if (len > 900)
1733 len = 900;
Darren Tuckerd6173c02008-06-13 04:52:53 +10001734 debug("Sending command: %.*s", len,
1735 (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +11001736 packet_start(SSH_CMSG_EXEC_CMD);
1737 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1738 packet_send();
1739 packet_write_wait();
1740 } else {
1741 debug("Requesting shell.");
1742 packet_start(SSH_CMSG_EXEC_SHELL);
1743 packet_send();
1744 packet_write_wait();
1745 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001746
Damien Miller95def091999-11-25 00:26:21 +11001747 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001748 return client_loop(have_tty, tty_flag ?
1749 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +10001750}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001751
Ben Lindstromf558cf62001-09-20 23:13:49 +00001752/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001753static void
Damien Millerd530f5f2010-05-21 14:57:10 +10001754ssh_session2_setup(int id, int success, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001755{
Damien Miller3756dce2004-06-18 01:17:29 +10001756 extern char **environ;
Damien Miller17e7ed02005-06-17 12:54:33 +10001757 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +10001758 int interactive = tty_flag;
Damien Miller17e7ed02005-06-17 12:54:33 +10001759
Damien Millerd530f5f2010-05-21 14:57:10 +10001760 if (!success)
1761 return; /* No need for error message, channels code sens one */
1762
Damien Miller46d38de2005-07-17 17:02:09 +10001763 display = getenv("DISPLAY");
Damien Miller17e7ed02005-06-17 12:54:33 +10001764 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001765 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001766 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001767 client_x11_get_proto(display, options.xauth_location,
Damien Miller1ab6a512010-06-26 10:02:24 +10001768 options.forward_x11_trusted,
1769 options.forward_x11_timeout, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001770 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001771 debug("Requesting X11 forwarding with authentication "
1772 "spoofing.");
Damien Miller6d7b4372011-06-23 08:31:57 +10001773 x11_request_forwarding_with_spoofing(id, display, proto,
1774 data, 1);
1775 client_expect_confirm(id, "X11 forwarding", CONFIRM_WARN);
1776 /* XXX exit_on_forward_failure */
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001777 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001778 }
1779
Damien Miller0bc1bd82000-11-13 22:57:25 +11001780 check_agent_present();
1781 if (options.forward_agent) {
1782 debug("Requesting authentication agent forwarding.");
1783 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1784 packet_send();
1785 }
1786
Darren Tucker7b305012012-07-02 18:55:09 +10001787 /* Tell the packet module whether this is an interactive session. */
1788 packet_set_interactive(interactive,
1789 options.ip_qos_interactive, options.ip_qos_bulk);
1790
Damien Miller0e220db2004-06-15 10:34:08 +10001791 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
Damien Miller5771ed72008-05-19 15:35:33 +10001792 NULL, fileno(stdin), &command, environ);
Damien Miller1383bd82000-04-06 12:32:37 +10001793}
1794
Ben Lindstromf558cf62001-09-20 23:13:49 +00001795/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001796static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001797ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001798{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001799 Channel *c;
1800 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001801
Damien Millercaf6dd62000-08-29 11:33:50 +11001802 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001803 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001804 } else {
1805 in = dup(STDIN_FILENO);
1806 }
1807 out = dup(STDOUT_FILENO);
1808 err = dup(STDERR_FILENO);
1809
1810 if (in < 0 || out < 0 || err < 0)
1811 fatal("dup() in/out/err failed");
1812
Damien Miller69b69aa2000-10-28 14:19:58 +11001813 /* enable nonblocking unless tty */
1814 if (!isatty(in))
1815 set_nonblock(in);
1816 if (!isatty(out))
1817 set_nonblock(out);
1818 if (!isatty(err))
1819 set_nonblock(err);
1820
Damien Millere4340be2000-09-16 13:29:08 +11001821 window = CHAN_SES_WINDOW_DEFAULT;
1822 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001823 if (tty_flag) {
1824 window >>= 1;
1825 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001826 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001827 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001828 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001829 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001830 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001831
Ben Lindstromf558cf62001-09-20 23:13:49 +00001832 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001833
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001834 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001835 if (!no_shell_flag)
Damien Millerb84886b2008-05-19 15:05:07 +10001836 channel_register_open_confirm(c->self,
1837 ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001838
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001839 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001840}
1841
Ben Lindstrombba81212001-06-25 05:01:22 +00001842static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001843ssh_session2(void)
1844{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001845 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001846
1847 /* XXX should be pre-session */
Darren Tucker2d6665d2011-11-04 10:54:22 +11001848 if (!options.control_persist)
1849 ssh_init_stdio_forwarding();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001850 ssh_init_forwarding();
1851
Damien Millere11e1ea2010-08-03 16:04:46 +10001852 /* Start listening for multiplex clients */
1853 muxserver_listen();
1854
1855 /*
Darren Tucker2d6665d2011-11-04 10:54:22 +11001856 * If we are in control persist mode and have a working mux listen
1857 * socket, then prepare to background ourselves and have a foreground
1858 * client attach as a control slave.
1859 * NB. we must save copies of the flags that we override for
Damien Millere11e1ea2010-08-03 16:04:46 +10001860 * the backgrounding, since we defer attachment of the slave until
1861 * after the connection is fully established (in particular,
1862 * async rfwd replies have been received for ExitOnForwardFailure).
1863 */
1864 if (options.control_persist && muxserver_sock != -1) {
1865 ostdin_null_flag = stdin_null_flag;
1866 ono_shell_flag = no_shell_flag;
Damien Miller21771e22011-05-15 08:45:50 +10001867 orequest_tty = options.request_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +10001868 otty_flag = tty_flag;
1869 stdin_null_flag = 1;
1870 no_shell_flag = 1;
Damien Millere11e1ea2010-08-03 16:04:46 +10001871 tty_flag = 0;
1872 if (!fork_after_authentication_flag)
1873 need_controlpersist_detach = 1;
1874 fork_after_authentication_flag = 1;
1875 }
Darren Tucker2d6665d2011-11-04 10:54:22 +11001876 /*
1877 * ControlPersist mux listen socket setup failed, attempt the
1878 * stdio forward setup that we skipped earlier.
1879 */
1880 if (options.control_persist && muxserver_sock == -1)
1881 ssh_init_stdio_forwarding();
Damien Millere11e1ea2010-08-03 16:04:46 +10001882
Ben Lindstromf558cf62001-09-20 23:13:49 +00001883 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1884 id = ssh_session2_open();
Damien Miller649fe022013-07-18 16:13:55 +10001885 else {
1886 packet_set_interactive(
1887 options.control_master == SSHCTL_MASTER_NO,
1888 options.ip_qos_interactive, options.ip_qos_bulk);
1889 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001890
Darren Tucker8901fa92008-06-11 09:34:01 +10001891 /* If we don't expect to open a new session, then disallow it */
Damien Miller456e6f02008-11-03 19:20:10 +11001892 if (options.control_master == SSHCTL_MASTER_NO &&
1893 (datafellows & SSH_NEW_OPENSSH)) {
Darren Tucker8901fa92008-06-11 09:34:01 +10001894 debug("Requesting no-more-sessions@openssh.com");
1895 packet_start(SSH2_MSG_GLOBAL_REQUEST);
1896 packet_put_cstring("no-more-sessions@openssh.com");
1897 packet_put_char(0);
1898 packet_send();
1899 }
1900
Damien Millerd27b9472005-12-13 19:29:02 +11001901 /* Execute a local command */
1902 if (options.local_command != NULL &&
1903 options.permit_local_command)
1904 ssh_local_cmd(options.local_command);
1905
Damien Miller1f25ab42010-07-16 13:56:23 +10001906 /*
1907 * If requested and we are not interested in replies to remote
1908 * forwarding requests, then let ssh continue in the background.
1909 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001910 if (fork_after_authentication_flag) {
1911 if (options.exit_on_forward_failure &&
1912 options.num_remote_forwards > 0) {
1913 debug("deferring postauth fork until remote forward "
1914 "confirmation received");
1915 } else
1916 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001917 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001918
Darren Tuckerf1de4e52010-01-08 16:54:59 +11001919 if (options.use_roaming)
1920 request_roaming();
1921
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001922 return client_loop(tty_flag, tty_flag ?
1923 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001924}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001925
Ben Lindstrombba81212001-06-25 05:01:22 +00001926static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001927load_public_identity_files(void)
1928{
Damien Miller6b1d53c2006-03-31 23:13:21 +11001929 char *filename, *cp, thishost[NI_MAXHOST];
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001930 char *pwdir = NULL, *pwname = NULL;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001931 int i = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001932 Key *public;
Damien Miller6b1d53c2006-03-31 23:13:21 +11001933 struct passwd *pw;
Damien Miller0a80ca12010-02-27 07:55:05 +11001934 u_int n_ids;
1935 char *identity_files[SSH_MAX_IDENTITY_FILES];
1936 Key *identity_keys[SSH_MAX_IDENTITY_FILES];
Damien Miller7ea845e2010-02-12 09:21:02 +11001937#ifdef ENABLE_PKCS11
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001938 Key **keys;
Damien Miller7ea845e2010-02-12 09:21:02 +11001939 int nkeys;
Damien Miller0a80ca12010-02-27 07:55:05 +11001940#endif /* PKCS11 */
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001941
Damien Miller0a80ca12010-02-27 07:55:05 +11001942 n_ids = 0;
Damien Miller1d2c4562014-02-04 11:18:20 +11001943 memset(identity_files, 0, sizeof(identity_files));
1944 memset(identity_keys, 0, sizeof(identity_keys));
Damien Miller0a80ca12010-02-27 07:55:05 +11001945
1946#ifdef ENABLE_PKCS11
Damien Miller7ea845e2010-02-12 09:21:02 +11001947 if (options.pkcs11_provider != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001948 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
Damien Miller7ea845e2010-02-12 09:21:02 +11001949 (pkcs11_init(!options.batch_mode) == 0) &&
1950 (nkeys = pkcs11_add_provider(options.pkcs11_provider, NULL,
1951 &keys)) > 0) {
Damien Miller7ea845e2010-02-12 09:21:02 +11001952 for (i = 0; i < nkeys; i++) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001953 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
1954 key_free(keys[i]);
1955 continue;
1956 }
1957 identity_keys[n_ids] = keys[i];
1958 identity_files[n_ids] =
Damien Miller7ea845e2010-02-12 09:21:02 +11001959 xstrdup(options.pkcs11_provider); /* XXX */
Damien Miller0a80ca12010-02-27 07:55:05 +11001960 n_ids++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001961 }
Darren Tuckera627d422013-06-02 07:31:17 +10001962 free(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001963 }
Damien Miller7ea845e2010-02-12 09:21:02 +11001964#endif /* ENABLE_PKCS11 */
Damien Miller6b1d53c2006-03-31 23:13:21 +11001965 if ((pw = getpwuid(original_real_uid)) == NULL)
1966 fatal("load_public_identity_files: getpwuid failed");
Darren Tuckere143f062007-12-02 23:21:16 +11001967 pwname = xstrdup(pw->pw_name);
1968 pwdir = xstrdup(pw->pw_dir);
Damien Miller6b1d53c2006-03-31 23:13:21 +11001969 if (gethostname(thishost, sizeof(thishost)) == -1)
1970 fatal("load_public_identity_files: gethostname: %s",
1971 strerror(errno));
Damien Miller0a80ca12010-02-27 07:55:05 +11001972 for (i = 0; i < options.num_identity_files; i++) {
Darren Tucker15fd19c2013-04-05 11:22:26 +11001973 if (n_ids >= SSH_MAX_IDENTITY_FILES ||
1974 strcasecmp(options.identity_files[i], "none") == 0) {
Darren Tuckera627d422013-06-02 07:31:17 +10001975 free(options.identity_files[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +11001976 continue;
1977 }
Damien Miller6b1d53c2006-03-31 23:13:21 +11001978 cp = tilde_expand_filename(options.identity_files[i],
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001979 original_real_uid);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001980 filename = percent_expand(cp, "d", pwdir,
1981 "u", pwname, "l", thishost, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +11001982 "r", options.user, (char *)NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10001983 free(cp);
Ben Lindstromd0fca422001-03-26 13:44:06 +00001984 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001985 debug("identity file %s type %d", filename,
1986 public ? public->type : -1);
Darren Tuckera627d422013-06-02 07:31:17 +10001987 free(options.identity_files[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +11001988 identity_files[n_ids] = filename;
1989 identity_keys[n_ids] = public;
1990
1991 if (++n_ids >= SSH_MAX_IDENTITY_FILES)
1992 continue;
1993
1994 /* Try to add the certificate variant too */
1995 xasprintf(&cp, "%s-cert", filename);
1996 public = key_load_public(cp, NULL);
1997 debug("identity file %s type %d", cp,
1998 public ? public->type : -1);
1999 if (public == NULL) {
Darren Tuckera627d422013-06-02 07:31:17 +10002000 free(cp);
Damien Miller0a80ca12010-02-27 07:55:05 +11002001 continue;
2002 }
2003 if (!key_is_cert(public)) {
2004 debug("%s: key %s type %s is not a certificate",
2005 __func__, cp, key_type(public));
2006 key_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +10002007 free(cp);
Damien Miller0a80ca12010-02-27 07:55:05 +11002008 continue;
2009 }
2010 identity_keys[n_ids] = public;
2011 /* point to the original path, most likely the private key */
2012 identity_files[n_ids] = xstrdup(filename);
2013 n_ids++;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002014 }
Damien Miller0a80ca12010-02-27 07:55:05 +11002015 options.num_identity_files = n_ids;
2016 memcpy(options.identity_files, identity_files, sizeof(identity_files));
2017 memcpy(options.identity_keys, identity_keys, sizeof(identity_keys));
2018
Damien Miller1d2c4562014-02-04 11:18:20 +11002019 explicit_bzero(pwname, strlen(pwname));
Darren Tuckera627d422013-06-02 07:31:17 +10002020 free(pwname);
Damien Miller1d2c4562014-02-04 11:18:20 +11002021 explicit_bzero(pwdir, strlen(pwdir));
Darren Tuckera627d422013-06-02 07:31:17 +10002022 free(pwdir);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002023}
Damien Miller857b02e2010-09-24 22:02:56 +10002024
2025static void
2026main_sigchld_handler(int sig)
2027{
2028 int save_errno = errno;
2029 pid_t pid;
2030 int status;
2031
2032 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
2033 (pid < 0 && errno == EINTR))
2034 ;
2035
2036 signal(sig, main_sigchld_handler);
2037 errno = save_errno;
2038}