blob: bf8c9c646ed659a27a92980f151345b0f766982e [file] [log] [blame]
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +00001/* $OpenBSD: ssh.c,v 1.422 2015/09/04 08:21:47 dtucker Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * Ssh client program. This program can be used to log into a remote machine.
7 * The software supports strong authentication, encryption, and forwarding
8 * of X11, TCP/IP, and authentication connections.
9 *
Damien Millere4340be2000-09-16 13:29:08 +110010 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
15 *
16 * Copyright (c) 1999 Niels Provos. All rights reserved.
Darren Tucker0a118da2003-10-15 15:54:32 +100017 * Copyright (c) 2000, 2001, 2002, 2003 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110018 *
19 * Modified to work with SSL by Niels Provos <provos@citi.umich.edu>
20 * in Canada (German citizen).
21 *
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 * 1. Redistributions of source code must retain the above copyright
26 * notice, this list of conditions and the following disclaimer.
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
29 * documentation and/or other materials provided with the distribution.
30 *
31 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
32 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
33 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
34 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
35 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
36 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
37 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
38 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
39 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
40 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110041 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100042
43#include "includes.h"
Damien Millercd4223c2006-03-15 11:22:47 +110044
Damien Millerf17883e2006-03-15 11:45:54 +110045#include <sys/types.h>
46#ifdef HAVE_SYS_STAT_H
47# include <sys/stat.h>
48#endif
Damien Millercd4223c2006-03-15 11:22:47 +110049#include <sys/resource.h>
Damien Miller17e91c02006-03-15 11:28:34 +110050#include <sys/ioctl.h>
Damien Millere3b60b52006-07-10 21:08:03 +100051#include <sys/socket.h>
Damien Miller857b02e2010-09-24 22:02:56 +100052#include <sys/wait.h>
Damien Miller03e20032006-03-15 11:16:59 +110053
Damien Millerc7b06362006-03-15 11:53:45 +110054#include <ctype.h>
Darren Tuckerba724052006-07-12 22:24:22 +100055#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100056#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100057#include <netdb.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110058#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110059#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110060#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100061#include <pwd.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110062#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100063#include <stdarg.h>
Damien Miller2d00e632006-07-24 13:53:19 +100064#include <stddef.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100065#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100066#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100067#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100068#include <unistd.h>
deraadt@openbsd.org087266e2015-01-20 23:14:00 +000069#include <limits.h>
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"
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000111#include "myproposal.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000112
Damien Miller7ea845e2010-02-12 09:21:02 +1100113#ifdef ENABLE_PKCS11
114#include "ssh-pkcs11.h"
Ben Lindstrombcc18082001-08-06 21:59:25 +0000115#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000116
Damien Miller3f905871999-11-15 17:10:57 +1100117extern char *__progname;
Damien Miller3f905871999-11-15 17:10:57 +1100118
Damien Millerea2c1a42011-06-03 12:10:22 +1000119/* Saves a copy of argv for setproctitle emulation */
120#ifndef HAVE_SETPROCTITLE
121static char **saved_av;
122#endif
123
Darren Tuckerd6173c02008-06-13 04:52:53 +1000124/* Flag indicating whether debug mode is on. May be set on the command line. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000125int debug_flag = 0;
126
Damien Miller21771e22011-05-15 08:45:50 +1000127/* Flag indicating whether a tty should be requested */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000128int tty_flag = 0;
129
Damien Miller1383bd82000-04-06 12:32:37 +1000130/* don't exec a shell */
131int no_shell_flag = 0;
Damien Miller1383bd82000-04-06 12:32:37 +1000132
Damien Miller5428f641999-11-25 11:54:57 +1100133/*
134 * Flag indicating that nothing should be read from stdin. This can be set
135 * on the command line.
136 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000137int stdin_null_flag = 0;
138
Damien Miller5428f641999-11-25 11:54:57 +1100139/*
Damien Millere11e1ea2010-08-03 16:04:46 +1000140 * Flag indicating that the current process should be backgrounded and
141 * a new slave launched in the foreground for ControlPersist.
142 */
143int need_controlpersist_detach = 0;
144
145/* Copies of flags for ControlPersist foreground slave */
Damien Miller21771e22011-05-15 08:45:50 +1000146int ostdin_null_flag, ono_shell_flag, otty_flag, orequest_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +1000147
148/*
Damien Miller5428f641999-11-25 11:54:57 +1100149 * Flag indicating that ssh should fork after authentication. This is useful
Ben Lindstromf666fec2002-06-06 19:51:58 +0000150 * so that the passphrase can be entered manually, and then ssh goes to the
Damien Miller5428f641999-11-25 11:54:57 +1100151 * background.
152 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000153int fork_after_authentication_flag = 0;
154
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100155/* forward stdio to remote host and port */
156char *stdio_forward_host = NULL;
157int stdio_forward_port = 0;
158
Damien Miller5428f641999-11-25 11:54:57 +1100159/*
160 * General data structure for command line options and options configurable
161 * in configuration files. See readconf.h.
162 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000163Options options;
164
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000165/* optional user configfile */
166char *config = NULL;
167
Damien Miller5428f641999-11-25 11:54:57 +1100168/*
169 * Name of the host we are connecting to. This is the name given on the
170 * command line, or the HostName specified for the user-supplied name in a
171 * configuration file.
172 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000173char *host;
174
175/* socket address the host resolves to */
Damien Miller34132e52000-01-14 15:45:46 +1100176struct sockaddr_storage hostaddr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000177
Ben Lindstrom5eabda32001-04-12 23:34:34 +0000178/* Private host keys. */
Ben Lindstrom1bad2562002-06-06 19:57:33 +0000179Sensitive sensitive_data;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000180
181/* Original real UID. */
182uid_t original_real_uid;
Ben Lindstromf9c48842002-06-11 16:37:51 +0000183uid_t original_effective_uid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000184
Damien Miller1383bd82000-04-06 12:32:37 +1000185/* command to be executed */
186Buffer command;
187
Damien Miller832562e2001-01-30 09:30:01 +1100188/* Should we execute a command or invoke a subsystem? */
189int subsystem_flag = 0;
190
Damien Miller2797f7f2002-04-23 21:09:44 +1000191/* # of replies received for global requests */
Darren Tucker9f407c42008-06-13 04:50:27 +1000192static int remote_forward_confirms_received = 0;
Damien Miller2797f7f2002-04-23 21:09:44 +1000193
Damien Millerb1cbfa22008-05-19 16:00:08 +1000194/* mux.c */
195extern int muxserver_sock;
196extern u_int muxclient_command;
Damien Miller0e220db2004-06-15 10:34:08 +1000197
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000198/* Prints a help message to the user. This function never returns. */
199
Ben Lindstrombba81212001-06-25 05:01:22 +0000200static void
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000201usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000202{
Damien Miller50955102004-03-22 09:34:58 +1100203 fprintf(stderr,
jmc@openbsd.orgb1ba15f2014-10-09 06:21:31 +0000204"usage: ssh [-1246AaCfGgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]\n"
Damien Miller03d4d7e2013-04-23 15:21:06 +1000205" [-D [bind_address:]port] [-E log_file] [-e escape_char]\n"
206" [-F configfile] [-I pkcs11] [-i identity_file]\n"
millert@openbsd.orgd5d91d02015-07-20 18:42:35 +0000207" [-L address] [-l login_name] [-m mac_spec]\n"
Damien Millerbdb352a2013-12-05 10:20:52 +1100208" [-O ctl_cmd] [-o option] [-p port]\n"
209" [-Q cipher | cipher-auth | mac | kex | key]\n"
millert@openbsd.orgd5d91d02015-07-20 18:42:35 +0000210" [-R address] [-S ctl_path] [-W host:port]\n"
Damien Millerbdb352a2013-12-05 10:20:52 +1100211" [-w local_tun[:remote_tun]] [user@]hostname [command]\n"
Damien Miller50955102004-03-22 09:34:58 +1100212 );
Darren Tuckere9a9b712005-12-20 16:15:51 +1100213 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000214}
215
Ben Lindstrombba81212001-06-25 05:01:22 +0000216static int ssh_session(void);
217static int ssh_session2(void);
218static void load_public_identity_files(void);
Damien Miller857b02e2010-09-24 22:02:56 +1000219static void main_sigchld_handler(int);
Damien Millerb1cbfa22008-05-19 16:00:08 +1000220
221/* from muxclient.c */
222void muxclient(const char *);
223void muxserver_listen(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000224
Damien Miller295ee632011-05-29 21:42:31 +1000225/* ~/ expand a list of paths. NB. assumes path[n] is heap-allocated. */
226static void
227tilde_expand_paths(char **paths, u_int num_paths)
228{
229 u_int i;
230 char *cp;
231
232 for (i = 0; i < num_paths; i++) {
233 cp = tilde_expand_filename(paths[i], original_real_uid);
Darren Tuckera627d422013-06-02 07:31:17 +1000234 free(paths[i]);
Damien Miller295ee632011-05-29 21:42:31 +1000235 paths[i] = cp;
236 }
237}
238
Damien Miller13f97b22014-02-24 15:57:55 +1100239/*
240 * Attempt to resolve a host name / port to a set of addresses and
241 * optionally return any CNAMEs encountered along the way.
242 * Returns NULL on failure.
243 * NB. this function must operate with a options having undefined members.
244 */
Damien Miller0faf7472013-10-17 11:47:23 +1100245static struct addrinfo *
Damien Miller13f97b22014-02-24 15:57:55 +1100246resolve_host(const char *name, int port, int logerr, char *cname, size_t clen)
Damien Miller0faf7472013-10-17 11:47:23 +1100247{
248 char strport[NI_MAXSERV];
249 struct addrinfo hints, *res;
250 int gaierr, loglevel = SYSLOG_LEVEL_DEBUG1;
251
Damien Miller13f97b22014-02-24 15:57:55 +1100252 if (port <= 0)
253 port = default_ssh_port();
254
Damien Miller0faf7472013-10-17 11:47:23 +1100255 snprintf(strport, sizeof strport, "%u", port);
Damien Miller1d2c4562014-02-04 11:18:20 +1100256 memset(&hints, 0, sizeof(hints));
Damien Miller13f97b22014-02-24 15:57:55 +1100257 hints.ai_family = options.address_family == -1 ?
258 AF_UNSPEC : options.address_family;
Damien Miller0faf7472013-10-17 11:47:23 +1100259 hints.ai_socktype = SOCK_STREAM;
260 if (cname != NULL)
261 hints.ai_flags = AI_CANONNAME;
262 if ((gaierr = getaddrinfo(name, strport, &hints, &res)) != 0) {
263 if (logerr || (gaierr != EAI_NONAME && gaierr != EAI_NODATA))
264 loglevel = SYSLOG_LEVEL_ERROR;
265 do_log2(loglevel, "%s: Could not resolve hostname %.100s: %s",
266 __progname, name, ssh_gai_strerror(gaierr));
267 return NULL;
268 }
269 if (cname != NULL && res->ai_canonname != NULL) {
270 if (strlcpy(cname, res->ai_canonname, clen) >= clen) {
271 error("%s: host \"%s\" cname \"%s\" too long (max %lu)",
272 __func__, name, res->ai_canonname, (u_long)clen);
273 if (clen > 0)
274 *cname = '\0';
275 }
276 }
277 return res;
278}
279
280/*
djm@openbsd.org90109022015-01-16 07:19:48 +0000281 * Attempt to resolve a numeric host address / port to a single address.
282 * Returns a canonical address string.
283 * Returns NULL on failure.
284 * NB. this function must operate with a options having undefined members.
285 */
286static struct addrinfo *
287resolve_addr(const char *name, int port, char *caddr, size_t clen)
288{
289 char addr[NI_MAXHOST], strport[NI_MAXSERV];
290 struct addrinfo hints, *res;
291 int gaierr;
292
293 if (port <= 0)
294 port = default_ssh_port();
295 snprintf(strport, sizeof strport, "%u", port);
296 memset(&hints, 0, sizeof(hints));
297 hints.ai_family = options.address_family == -1 ?
298 AF_UNSPEC : options.address_family;
299 hints.ai_socktype = SOCK_STREAM;
300 hints.ai_flags = AI_NUMERICHOST|AI_NUMERICSERV;
301 if ((gaierr = getaddrinfo(name, strport, &hints, &res)) != 0) {
302 debug2("%s: could not resolve name %.100s as address: %s",
303 __func__, name, ssh_gai_strerror(gaierr));
304 return NULL;
305 }
306 if (res == NULL) {
307 debug("%s: getaddrinfo %.100s returned no addresses",
308 __func__, name);
309 return NULL;
310 }
311 if (res->ai_next != NULL) {
312 debug("%s: getaddrinfo %.100s returned multiple addresses",
313 __func__, name);
314 goto fail;
315 }
316 if ((gaierr = getnameinfo(res->ai_addr, res->ai_addrlen,
317 addr, sizeof(addr), NULL, 0, NI_NUMERICHOST)) != 0) {
318 debug("%s: Could not format address for name %.100s: %s",
319 __func__, name, ssh_gai_strerror(gaierr));
320 goto fail;
321 }
322 if (strlcpy(caddr, addr, clen) >= clen) {
323 error("%s: host \"%s\" addr \"%s\" too long (max %lu)",
324 __func__, name, addr, (u_long)clen);
325 if (clen > 0)
326 *caddr = '\0';
327 fail:
328 freeaddrinfo(res);
329 return NULL;
330 }
331 return res;
332}
333
334/*
Damien Miller0faf7472013-10-17 11:47:23 +1100335 * Check whether the cname is a permitted replacement for the hostname
336 * and perform the replacement if it is.
Damien Miller13f97b22014-02-24 15:57:55 +1100337 * NB. this function must operate with a options having undefined members.
Damien Miller0faf7472013-10-17 11:47:23 +1100338 */
339static int
340check_follow_cname(char **namep, const char *cname)
341{
342 int i;
343 struct allowed_cname *rule;
344
345 if (*cname == '\0' || options.num_permitted_cnames == 0 ||
346 strcmp(*namep, cname) == 0)
347 return 0;
Damien Miller38505592013-10-17 11:48:13 +1100348 if (options.canonicalize_hostname == SSH_CANONICALISE_NO)
Damien Miller0faf7472013-10-17 11:47:23 +1100349 return 0;
350 /*
Damien Miller38505592013-10-17 11:48:13 +1100351 * Don't attempt to canonicalize names that will be interpreted by
Damien Miller0faf7472013-10-17 11:47:23 +1100352 * a proxy unless the user specifically requests so.
353 */
Damien Miller13f97b22014-02-24 15:57:55 +1100354 if (!option_clear_or_none(options.proxy_command) &&
Damien Miller38505592013-10-17 11:48:13 +1100355 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS)
Damien Miller0faf7472013-10-17 11:47:23 +1100356 return 0;
357 debug3("%s: check \"%s\" CNAME \"%s\"", __func__, *namep, cname);
358 for (i = 0; i < options.num_permitted_cnames; i++) {
359 rule = options.permitted_cnames + i;
djm@openbsd.orge661a862015-05-04 06:10:48 +0000360 if (match_pattern_list(*namep, rule->source_list, 1) != 1 ||
361 match_pattern_list(cname, rule->target_list, 1) != 1)
Damien Miller0faf7472013-10-17 11:47:23 +1100362 continue;
Damien Miller38505592013-10-17 11:48:13 +1100363 verbose("Canonicalized DNS aliased hostname "
Damien Miller0faf7472013-10-17 11:47:23 +1100364 "\"%s\" => \"%s\"", *namep, cname);
365 free(*namep);
366 *namep = xstrdup(cname);
367 return 1;
368 }
369 return 0;
370}
371
372/*
373 * Attempt to resolve the supplied hostname after applying the user's
Damien Miller51682fa2013-10-17 11:48:31 +1100374 * canonicalization rules. Returns the address list for the host or NULL
375 * if no name was found after canonicalization.
Damien Miller13f97b22014-02-24 15:57:55 +1100376 * NB. this function must operate with a options having undefined members.
Damien Miller0faf7472013-10-17 11:47:23 +1100377 */
378static struct addrinfo *
Damien Miller13f97b22014-02-24 15:57:55 +1100379resolve_canonicalize(char **hostp, int port)
Damien Miller0faf7472013-10-17 11:47:23 +1100380{
381 int i, ndots;
djm@openbsd.org90109022015-01-16 07:19:48 +0000382 char *cp, *fullhost, newname[NI_MAXHOST];
Damien Miller0faf7472013-10-17 11:47:23 +1100383 struct addrinfo *addrs;
384
Damien Miller38505592013-10-17 11:48:13 +1100385 if (options.canonicalize_hostname == SSH_CANONICALISE_NO)
Damien Miller0faf7472013-10-17 11:47:23 +1100386 return NULL;
Damien Miller13f97b22014-02-24 15:57:55 +1100387
Damien Miller0faf7472013-10-17 11:47:23 +1100388 /*
Damien Miller38505592013-10-17 11:48:13 +1100389 * Don't attempt to canonicalize names that will be interpreted by
Damien Miller0faf7472013-10-17 11:47:23 +1100390 * a proxy unless the user specifically requests so.
391 */
Damien Miller13f97b22014-02-24 15:57:55 +1100392 if (!option_clear_or_none(options.proxy_command) &&
Damien Miller38505592013-10-17 11:48:13 +1100393 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS)
Damien Miller0faf7472013-10-17 11:47:23 +1100394 return NULL;
Damien Miller13f97b22014-02-24 15:57:55 +1100395
djm@openbsd.org90109022015-01-16 07:19:48 +0000396 /* Try numeric hostnames first */
397 if ((addrs = resolve_addr(*hostp, port,
398 newname, sizeof(newname))) != NULL) {
399 debug2("%s: hostname %.100s is address", __func__, *hostp);
400 if (strcasecmp(*hostp, newname) != 0) {
401 debug2("%s: canonicalised address \"%s\" => \"%s\"",
402 __func__, *hostp, newname);
403 free(*hostp);
404 *hostp = xstrdup(newname);
405 }
406 return addrs;
407 }
408
Damien Miller51682fa2013-10-17 11:48:31 +1100409 /* Don't apply canonicalization to sufficiently-qualified hostnames */
Damien Miller0faf7472013-10-17 11:47:23 +1100410 ndots = 0;
411 for (cp = *hostp; *cp != '\0'; cp++) {
412 if (*cp == '.')
413 ndots++;
414 }
Damien Miller38505592013-10-17 11:48:13 +1100415 if (ndots > options.canonicalize_max_dots) {
416 debug3("%s: not canonicalizing hostname \"%s\" (max dots %d)",
417 __func__, *hostp, options.canonicalize_max_dots);
Damien Miller0faf7472013-10-17 11:47:23 +1100418 return NULL;
419 }
420 /* Attempt each supplied suffix */
421 for (i = 0; i < options.num_canonical_domains; i++) {
djm@openbsd.org90109022015-01-16 07:19:48 +0000422 *newname = '\0';
Damien Miller0faf7472013-10-17 11:47:23 +1100423 xasprintf(&fullhost, "%s.%s.", *hostp,
424 options.canonical_domains[i]);
Damien Miller13f97b22014-02-24 15:57:55 +1100425 debug3("%s: attempting \"%s\" => \"%s\"", __func__,
426 *hostp, fullhost);
427 if ((addrs = resolve_host(fullhost, port, 0,
djm@openbsd.org90109022015-01-16 07:19:48 +0000428 newname, sizeof(newname))) == NULL) {
Damien Miller0faf7472013-10-17 11:47:23 +1100429 free(fullhost);
430 continue;
431 }
432 /* Remove trailing '.' */
433 fullhost[strlen(fullhost) - 1] = '\0';
434 /* Follow CNAME if requested */
djm@openbsd.org90109022015-01-16 07:19:48 +0000435 if (!check_follow_cname(&fullhost, newname)) {
Damien Miller38505592013-10-17 11:48:13 +1100436 debug("Canonicalized hostname \"%s\" => \"%s\"",
Damien Miller0faf7472013-10-17 11:47:23 +1100437 *hostp, fullhost);
438 }
439 free(*hostp);
440 *hostp = fullhost;
441 return addrs;
442 }
Damien Miller38505592013-10-17 11:48:13 +1100443 if (!options.canonicalize_fallback_local)
Damien Miller13f97b22014-02-24 15:57:55 +1100444 fatal("%s: Could not resolve host \"%s\"", __progname, *hostp);
445 debug2("%s: host %s not found in any suffix", __func__, *hostp);
Damien Miller0faf7472013-10-17 11:47:23 +1100446 return NULL;
447}
448
Damien Miller95def091999-11-25 00:26:21 +1100449/*
Damien Miller13f97b22014-02-24 15:57:55 +1100450 * Read per-user configuration file. Ignore the system wide config
451 * file if the user specifies a config file on the command line.
452 */
453static void
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000454process_config_files(const char *host_arg, struct passwd *pw, int post_canon)
Damien Miller13f97b22014-02-24 15:57:55 +1100455{
deraadt@openbsd.org087266e2015-01-20 23:14:00 +0000456 char buf[PATH_MAX];
Damien Miller13f97b22014-02-24 15:57:55 +1100457 int r;
458
459 if (config != NULL) {
460 if (strcasecmp(config, "none") != 0 &&
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000461 !read_config_file(config, pw, host, host_arg, &options,
462 SSHCONF_USERCONF | (post_canon ? SSHCONF_POSTCANON : 0)))
Damien Miller13f97b22014-02-24 15:57:55 +1100463 fatal("Can't open user config file %.100s: "
464 "%.100s", config, strerror(errno));
465 } else {
466 r = snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir,
467 _PATH_SSH_USER_CONFFILE);
468 if (r > 0 && (size_t)r < sizeof(buf))
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000469 (void)read_config_file(buf, pw, host, host_arg,
470 &options, SSHCONF_CHECKPERM | SSHCONF_USERCONF |
471 (post_canon ? SSHCONF_POSTCANON : 0));
Damien Miller13f97b22014-02-24 15:57:55 +1100472
473 /* Read systemwide configuration file after user config. */
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000474 (void)read_config_file(_PATH_HOST_CONFIG_FILE, pw,
475 host, host_arg, &options,
476 post_canon ? SSHCONF_POSTCANON : 0);
477 }
478}
479
480/* Rewrite the port number in an addrinfo list of addresses */
481static void
482set_addrinfo_port(struct addrinfo *addrs, int port)
483{
484 struct addrinfo *addr;
485
486 for (addr = addrs; addr != NULL; addr = addr->ai_next) {
487 switch (addr->ai_family) {
488 case AF_INET:
489 ((struct sockaddr_in *)addr->ai_addr)->
490 sin_port = htons(port);
491 break;
492 case AF_INET6:
493 ((struct sockaddr_in6 *)addr->ai_addr)->
494 sin6_port = htons(port);
495 break;
496 }
Damien Miller13f97b22014-02-24 15:57:55 +1100497 }
498}
499
500/*
Damien Miller95def091999-11-25 00:26:21 +1100501 * Main program for the ssh client.
502 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000503int
504main(int ac, char **av)
505{
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000506 int i, r, opt, exit_status, use_syslog, config_test = 0;
deraadt@openbsd.org087266e2015-01-20 23:14:00 +0000507 char *p, *cp, *line, *argv0, buf[PATH_MAX], *host_arg, *logfile;
Damien Millerdfc85fa2011-05-15 08:44:02 +1000508 char thishost[NI_MAXHOST], shorthost[NI_MAXHOST], portstr[NI_MAXSERV];
Damien Miller0faf7472013-10-17 11:47:23 +1100509 char cname[NI_MAXHOST];
Damien Miller95def091999-11-25 00:26:21 +1100510 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000511 struct passwd *pw;
Damien Miller194fd902013-10-15 12:13:05 +1100512 int timeout_ms;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000513 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000514 extern char *optarg;
Damien Miller7acefbb2014-07-18 14:11:24 +1000515 struct Forward fwd;
Damien Miller0faf7472013-10-17 11:47:23 +1100516 struct addrinfo *addrs = NULL;
Damien Miller9c386432014-07-03 21:27:46 +1000517 struct ssh_digest_ctx *md;
518 u_char conn_hash[SSH_DIGEST_MAX_LENGTH];
519 char *conn_hash_hex;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000520
Darren Tuckerce321d82005-10-03 18:11:24 +1000521 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
522 sanitise_stdfd();
523
Damien Miller59d3d5b2003-08-22 09:34:41 +1000524 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000525
Damien Millerea2c1a42011-06-03 12:10:22 +1000526#ifndef HAVE_SETPROCTITLE
527 /* Prepare for later setproctitle emulation */
528 /* Save argv so it isn't clobbered by setproctitle() emulation */
529 saved_av = xcalloc(ac + 1, sizeof(*saved_av));
530 for (i = 0; i < ac; i++)
531 saved_av[i] = xstrdup(av[i]);
532 saved_av[i] = NULL;
533 compat_init_setproctitle(ac, av);
534 av = saved_av;
535#endif
536
Damien Miller5428f641999-11-25 11:54:57 +1100537 /*
Damien Miller00d9ae22010-08-17 01:59:31 +1000538 * Discard other fds that are hanging around. These can cause problem
539 * with backgrounded ssh processes started by ControlPersist.
540 */
541 closefrom(STDERR_FILENO + 1);
542
543 /*
Damien Miller5428f641999-11-25 11:54:57 +1100544 * Save the original real uid. It will be needed later (uid-swapping
545 * may clobber the real uid).
546 */
Damien Miller95def091999-11-25 00:26:21 +1100547 original_real_uid = getuid();
548 original_effective_uid = geteuid();
Damien Millera8e06ce2003-11-21 23:48:55 +1100549
Damien Miller50b9a602002-09-04 16:50:06 +1000550 /*
551 * Use uid-swapping to give up root privileges for the duration of
552 * option processing. We will re-instantiate the rights when we are
553 * ready to create the privileged port, and will permanently drop
554 * them when the port has been created (actually, when the connection
555 * has been made, as we may need to create the port several times).
556 */
557 PRIV_END;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000558
Damien Miller05dd7952000-10-01 00:42:48 +1100559#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100560 /* If we are installed setuid root be careful to not drop core. */
561 if (original_real_uid != original_effective_uid) {
562 struct rlimit rlim;
563 rlim.rlim_cur = rlim.rlim_max = 0;
564 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
565 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000566 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100567#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000568 /* Get user data. */
569 pw = getpwuid(original_real_uid);
570 if (!pw) {
Damien Miller3009d3c2013-07-20 13:22:31 +1000571 logit("No user exists for uid %lu", (u_long)original_real_uid);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100572 exit(255);
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000573 }
574 /* Take a copy of the returned structure. */
575 pw = pwcopy(pw);
576
Damien Miller5428f641999-11-25 11:54:57 +1100577 /*
Damien Miller5428f641999-11-25 11:54:57 +1100578 * Set our umask to something reasonable, as some files are created
579 * with the default umask. This will make them world-readable but
580 * writable only by the owner, which is ok for all files for which we
581 * don't set the modes explicitly.
582 */
Damien Miller95def091999-11-25 00:26:21 +1100583 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000584
Darren Tuckerd6173c02008-06-13 04:52:53 +1000585 /*
586 * Initialize option structure to indicate that no values have been
587 * set.
588 */
Damien Miller95def091999-11-25 00:26:21 +1100589 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000590
Damien Miller95def091999-11-25 00:26:21 +1100591 /* Parse command-line arguments. */
592 host = NULL;
Damien Millere272a5b2008-11-03 19:22:37 +1100593 use_syslog = 0;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000594 logfile = NULL;
Darren Tucker72efd742009-06-21 17:48:00 +1000595 argv0 = av[0];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000596
Damien Miller2ecb6bd2006-03-15 12:03:53 +1100597 again:
Darren Tuckerd6173c02008-06-13 04:52:53 +1000598 while ((opt = getopt(ac, av, "1246ab:c:e:fgi:kl:m:no:p:qstvx"
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000599 "ACD:E:F:GI:KL:MNO:PQ:R:S:TVw:W:XYy")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100600 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000601 case '1':
602 options.protocol = SSH_PROTO_1;
603 break;
Damien Miller4af51302000-04-16 11:18:38 +1000604 case '2':
605 options.protocol = SSH_PROTO_2;
606 break;
Damien Miller34132e52000-01-14 15:45:46 +1100607 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000608 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100609 break;
Damien Miller34132e52000-01-14 15:45:46 +1100610 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000611 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100612 break;
Damien Miller95def091999-11-25 00:26:21 +1100613 case 'n':
614 stdin_null_flag = 1;
615 break;
Damien Miller95def091999-11-25 00:26:21 +1100616 case 'f':
617 fork_after_authentication_flag = 1;
618 stdin_null_flag = 1;
619 break;
Damien Miller95def091999-11-25 00:26:21 +1100620 case 'x':
621 options.forward_x11 = 0;
622 break;
Damien Miller95def091999-11-25 00:26:21 +1100623 case 'X':
624 options.forward_x11 = 1;
625 break;
Damien Millere272a5b2008-11-03 19:22:37 +1100626 case 'y':
627 use_syslog = 1;
628 break;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000629 case 'E':
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000630 logfile = optarg;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000631 break;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000632 case 'G':
633 config_test = 1;
634 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000635 case 'Y':
636 options.forward_x11 = 1;
637 options.forward_x11_trusted = 1;
638 break;
Damien Miller95def091999-11-25 00:26:21 +1100639 case 'g':
Damien Miller7acefbb2014-07-18 14:11:24 +1000640 options.fwd_opts.gateway_ports = 1;
Damien Miller95def091999-11-25 00:26:21 +1100641 break;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100642 case 'O':
Damien Millere1537f92010-01-26 13:26:22 +1100643 if (stdio_forward_host != NULL)
644 fatal("Cannot specify multiplexing "
645 "command with -W");
646 else if (muxclient_command != 0)
647 fatal("Multiplexing command already specified");
Darren Tucker7ebfc102004-11-07 20:06:19 +1100648 if (strcmp(optarg, "check") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000649 muxclient_command = SSHMUX_COMMAND_ALIVE_CHECK;
Damien Miller388f6fc2010-05-21 14:57:35 +1000650 else if (strcmp(optarg, "forward") == 0)
651 muxclient_command = SSHMUX_COMMAND_FORWARD;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100652 else if (strcmp(optarg, "exit") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000653 muxclient_command = SSHMUX_COMMAND_TERMINATE;
Damien Miller6c3eec72011-05-05 14:16:22 +1000654 else if (strcmp(optarg, "stop") == 0)
655 muxclient_command = SSHMUX_COMMAND_STOP;
Damien Millerf6dff7c2011-09-22 21:38:52 +1000656 else if (strcmp(optarg, "cancel") == 0)
657 muxclient_command = SSHMUX_COMMAND_CANCEL_FWD;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100658 else
659 fatal("Invalid multiplex command.");
660 break;
Damien Miller147bba32002-09-04 16:46:06 +1000661 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100662 options.use_privileged_port = 0;
663 break;
Damien Millerd937dc02013-12-05 10:19:54 +1100664 case 'Q':
Damien Millerea111192013-04-23 19:24:32 +1000665 cp = NULL;
Damien Millerd937dc02013-12-05 10:19:54 +1100666 if (strcmp(optarg, "cipher") == 0)
Damien Miller0fde8ac2013-11-21 14:12:23 +1100667 cp = cipher_alg_list('\n', 0);
Damien Millerd937dc02013-12-05 10:19:54 +1100668 else if (strcmp(optarg, "cipher-auth") == 0)
Damien Miller0fde8ac2013-11-21 14:12:23 +1100669 cp = cipher_alg_list('\n', 1);
Damien Millerd937dc02013-12-05 10:19:54 +1100670 else if (strcmp(optarg, "mac") == 0)
Damien Miller690d9892013-11-08 12:16:49 +1100671 cp = mac_alg_list('\n');
Damien Millerd937dc02013-12-05 10:19:54 +1100672 else if (strcmp(optarg, "kex") == 0)
Damien Miller690d9892013-11-08 12:16:49 +1100673 cp = kex_alg_list('\n');
Damien Millerd937dc02013-12-05 10:19:54 +1100674 else if (strcmp(optarg, "key") == 0)
Damien Miller5be9d9e2013-12-07 11:24:01 +1100675 cp = key_alg_list(0, 0);
676 else if (strcmp(optarg, "key-cert") == 0)
677 cp = key_alg_list(1, 0);
678 else if (strcmp(optarg, "key-plain") == 0)
679 cp = key_alg_list(0, 1);
djm@openbsd.org68d2dfc2015-03-03 06:48:58 +0000680 else if (strcmp(optarg, "protocol-version") == 0) {
681#ifdef WITH_SSH1
682 cp = xstrdup("1\n2");
683#else
684 cp = xstrdup("2");
685#endif
686 }
Damien Millerea111192013-04-23 19:24:32 +1000687 if (cp == NULL)
688 fatal("Unsupported query \"%s\"", optarg);
689 printf("%s\n", cp);
690 free(cp);
691 exit(0);
692 break;
Damien Miller95def091999-11-25 00:26:21 +1100693 case 'a':
694 options.forward_agent = 0;
695 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000696 case 'A':
697 options.forward_agent = 1;
698 break;
Damien Miller95def091999-11-25 00:26:21 +1100699 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100700 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100701 break;
Darren Tucker415bddc2007-06-12 23:43:16 +1000702 case 'K':
703 options.gss_authentication = 1;
704 options.gss_deleg_creds = 1;
705 break;
Damien Miller95def091999-11-25 00:26:21 +1100706 case 'i':
707 if (stat(optarg, &st) < 0) {
Damien Millerf4614452001-07-14 12:18:10 +1000708 fprintf(stderr, "Warning: Identity file %s "
Damien Miller3eb48b62005-03-01 21:15:46 +1100709 "not accessible: %s.\n", optarg,
710 strerror(errno));
Damien Miller95def091999-11-25 00:26:21 +1100711 break;
712 }
Darren Tucker19104782013-04-05 11:13:08 +1100713 add_identity_file(&options, NULL, optarg, 1);
Damien Miller95def091999-11-25 00:26:21 +1100714 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000715 case 'I':
Damien Miller7ea845e2010-02-12 09:21:02 +1100716#ifdef ENABLE_PKCS11
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000717 free(options.pkcs11_provider);
Damien Miller7ea845e2010-02-12 09:21:02 +1100718 options.pkcs11_provider = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000719#else
Damien Miller7ea845e2010-02-12 09:21:02 +1100720 fprintf(stderr, "no support for PKCS#11.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000721#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000722 break;
Damien Miller95def091999-11-25 00:26:21 +1100723 case 't':
Damien Miller21771e22011-05-15 08:45:50 +1000724 if (options.request_tty == REQUEST_TTY_YES)
725 options.request_tty = REQUEST_TTY_FORCE;
726 else
727 options.request_tty = REQUEST_TTY_YES;
Damien Miller95def091999-11-25 00:26:21 +1100728 break;
Damien Miller95def091999-11-25 00:26:21 +1100729 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000730 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100731 debug_flag = 1;
732 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000733 } else {
734 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
735 options.log_level++;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000736 }
Damien Miller03d4d7e2013-04-23 15:21:06 +1000737 break;
Damien Miller95def091999-11-25 00:26:21 +1100738 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100739 fprintf(stderr, "%s, %s\n",
Damien Miller1f0311c2014-05-15 14:24:09 +1000740 SSH_RELEASE,
741#ifdef WITH_OPENSSL
742 SSLeay_version(SSLEAY_VERSION)
743#else
744 "without OpenSSL"
745#endif
746 );
Damien Miller95def091999-11-25 00:26:21 +1100747 if (opt == 'V')
748 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100749 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100750 case 'w':
Damien Miller7b58e802005-12-13 19:33:19 +1100751 if (options.tun_open == -1)
752 options.tun_open = SSH_TUNMODE_DEFAULT;
Damien Millerd27b9472005-12-13 19:29:02 +1100753 options.tun_local = a2tun(optarg, &options.tun_remote);
Damien Miller7b58e802005-12-13 19:33:19 +1100754 if (options.tun_local == SSH_TUNID_ERR) {
Darren Tuckerd6173c02008-06-13 04:52:53 +1000755 fprintf(stderr,
756 "Bad tun device '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100757 exit(255);
Damien Millerd27b9472005-12-13 19:29:02 +1100758 }
759 break;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100760 case 'W':
Damien Millere1537f92010-01-26 13:26:22 +1100761 if (stdio_forward_host != NULL)
762 fatal("stdio forward already specified");
763 if (muxclient_command != 0)
764 fatal("Cannot specify stdio forward with -O");
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100765 if (parse_forward(&fwd, optarg, 1, 0)) {
766 stdio_forward_host = fwd.listen_host;
767 stdio_forward_port = fwd.listen_port;
Darren Tuckera627d422013-06-02 07:31:17 +1000768 free(fwd.connect_host);
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100769 } else {
770 fprintf(stderr,
771 "Bad stdio forwarding specification '%s'\n",
772 optarg);
773 exit(255);
774 }
Damien Miller21771e22011-05-15 08:45:50 +1000775 options.request_tty = REQUEST_TTY_NO;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100776 no_shell_flag = 1;
777 options.clear_forwardings = 1;
778 options.exit_on_forward_failure = 1;
779 break;
Damien Miller95def091999-11-25 00:26:21 +1100780 case 'q':
781 options.log_level = SYSLOG_LEVEL_QUIET;
782 break;
Damien Miller95def091999-11-25 00:26:21 +1100783 case 'e':
784 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000785 (u_char) optarg[1] >= 64 &&
786 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000787 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100788 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000789 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100790 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000791 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100792 else {
Damien Millerf4614452001-07-14 12:18:10 +1000793 fprintf(stderr, "Bad escape character '%s'.\n",
794 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100795 exit(255);
Damien Miller95def091999-11-25 00:26:21 +1100796 }
797 break;
Damien Miller95def091999-11-25 00:26:21 +1100798 case 'c':
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000799 if (ciphers_valid(*optarg == '+' ?
800 optarg + 1 : optarg)) {
Damien Millereba71ba2000-04-29 23:57:08 +1000801 /* SSH2 only */
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000802 free(options.ciphers);
Damien Millereba71ba2000-04-29 23:57:08 +1000803 options.ciphers = xstrdup(optarg);
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000804 options.cipher = SSH_CIPHER_INVALID;
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000805 break;
Damien Miller95def091999-11-25 00:26:21 +1100806 }
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000807 /* SSH1 only */
808 options.cipher = cipher_number(optarg);
809 if (options.cipher == -1) {
810 fprintf(stderr, "Unknown cipher type '%s'\n",
811 optarg);
812 exit(255);
813 }
814 if (options.cipher == SSH_CIPHER_3DES)
815 options.ciphers = xstrdup("3des-cbc");
816 else if (options.cipher == SSH_CIPHER_BLOWFISH)
817 options.ciphers = xstrdup("blowfish-cbc");
818 else
819 options.ciphers = xstrdup(KEX_CLIENT_ENCRYPT);
Damien Miller95def091999-11-25 00:26:21 +1100820 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000821 case 'm':
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000822 if (mac_valid(optarg)) {
823 free(options.macs);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000824 options.macs = xstrdup(optarg);
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000825 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000826 fprintf(stderr, "Unknown mac type '%s'\n",
827 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100828 exit(255);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000829 }
830 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000831 case 'M':
Damien Millerd14b1e72005-06-16 13:19:41 +1000832 if (options.control_master == SSHCTL_MASTER_YES)
833 options.control_master = SSHCTL_MASTER_ASK;
834 else
835 options.control_master = SSHCTL_MASTER_YES;
Damien Miller0e220db2004-06-15 10:34:08 +1000836 break;
Damien Miller95def091999-11-25 00:26:21 +1100837 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000838 options.port = a2port(optarg);
Damien Miller3dc71ad2009-01-28 16:31:22 +1100839 if (options.port <= 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000840 fprintf(stderr, "Bad port '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100841 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000842 }
Damien Miller95def091999-11-25 00:26:21 +1100843 break;
Damien Miller95def091999-11-25 00:26:21 +1100844 case 'l':
845 options.user = optarg;
846 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000847
Damien Miller95def091999-11-25 00:26:21 +1100848 case 'L':
Damien Miller4bf648f2009-02-14 16:28:21 +1100849 if (parse_forward(&fwd, optarg, 0, 0))
Damien Millerf91ee4c2005-03-01 21:24:33 +1100850 add_local_forward(&options, &fwd);
851 else {
Damien Millerf4614452001-07-14 12:18:10 +1000852 fprintf(stderr,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100853 "Bad local forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000854 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100855 exit(255);
Ben Lindstrom1a174712001-09-12 17:56:15 +0000856 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100857 break;
858
859 case 'R':
Damien Miller4bf648f2009-02-14 16:28:21 +1100860 if (parse_forward(&fwd, optarg, 0, 1)) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100861 add_remote_forward(&options, &fwd);
862 } else {
863 fprintf(stderr,
864 "Bad remote forwarding specification "
865 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100866 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100867 }
Damien Miller95def091999-11-25 00:26:21 +1100868 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000869
870 case 'D':
Damien Miller4bf648f2009-02-14 16:28:21 +1100871 if (parse_forward(&fwd, optarg, 1, 0)) {
Damien Millera699d952008-11-03 19:27:34 +1100872 add_local_forward(&options, &fwd);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100873 } else {
Damien Millera699d952008-11-03 19:27:34 +1100874 fprintf(stderr,
875 "Bad dynamic forwarding specification "
876 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100877 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000878 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000879 break;
880
Damien Miller95def091999-11-25 00:26:21 +1100881 case 'C':
882 options.compression = 1;
883 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000884 case 'N':
885 no_shell_flag = 1;
Damien Miller21771e22011-05-15 08:45:50 +1000886 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000887 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000888 case 'T':
Damien Miller21771e22011-05-15 08:45:50 +1000889 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000890 break;
Damien Miller95def091999-11-25 00:26:21 +1100891 case 'o':
Damien Miller9836cf82003-12-17 16:30:06 +1100892 line = xstrdup(optarg);
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000893 if (process_config_line(&options, pw,
894 host ? host : "", host ? host : "", line,
895 "command-line", 0, NULL, SSHCONF_USERCONF) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100896 exit(255);
Darren Tuckera627d422013-06-02 07:31:17 +1000897 free(line);
Damien Miller95def091999-11-25 00:26:21 +1100898 break;
Damien Miller832562e2001-01-30 09:30:01 +1100899 case 's':
900 subsystem_flag = 1;
901 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000902 case 'S':
903 if (options.control_path != NULL)
904 free(options.control_path);
905 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000906 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000907 case 'b':
908 options.bind_address = optarg;
909 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000910 case 'F':
911 config = optarg;
912 break;
Damien Miller95def091999-11-25 00:26:21 +1100913 default:
914 usage();
915 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000916 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000917
Damien Millerf4614452001-07-14 12:18:10 +1000918 ac -= optind;
919 av += optind;
920
Darren Tuckerb8c884a2010-01-08 18:53:43 +1100921 if (ac > 0 && !host) {
Ben Lindstromc276c122002-12-23 02:14:51 +0000922 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000923 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000924 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000925 if (cp == NULL || cp == p)
926 usage();
927 options.user = p;
928 *cp = '\0';
Damien Miller0faf7472013-10-17 11:47:23 +1100929 host = xstrdup(++cp);
Damien Millerf4614452001-07-14 12:18:10 +1000930 } else
Damien Miller0faf7472013-10-17 11:47:23 +1100931 host = xstrdup(*av);
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000932 if (ac > 1) {
933 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000934 goto again;
935 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000936 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000937 }
938
Damien Miller95def091999-11-25 00:26:21 +1100939 /* Check that we got a host name. */
940 if (!host)
941 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000942
Damien Miller0faf7472013-10-17 11:47:23 +1100943 host_arg = xstrdup(host);
944
Damien Miller1f0311c2014-05-15 14:24:09 +1000945#ifdef WITH_OPENSSL
Damien Miller4314c2b2010-09-10 11:12:09 +1000946 OpenSSL_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100947 ERR_load_crypto_strings();
Damien Miller1f0311c2014-05-15 14:24:09 +1000948#endif
Damien Millercb5e44a2000-09-29 12:12:36 +1100949
Damien Miller95def091999-11-25 00:26:21 +1100950 /* Initialize the command to execute on remote host. */
951 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000952
Damien Miller5428f641999-11-25 11:54:57 +1100953 /*
954 * Save the command to execute on the remote host in a buffer. There
955 * is no limit on the length of the command, except by the maximum
956 * packet size. Also sets the tty flag if there is no command.
957 */
Damien Millerf4614452001-07-14 12:18:10 +1000958 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100959 /* No command specified - execute shell on a tty. */
Damien Miller832562e2001-01-30 09:30:01 +1100960 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000961 fprintf(stderr,
962 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100963 usage();
964 }
Damien Miller95def091999-11-25 00:26:21 +1100965 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000966 /* A command has been specified. Store it into the buffer. */
967 for (i = 0; i < ac; i++) {
968 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100969 buffer_append(&command, " ", 1);
970 buffer_append(&command, av[i], strlen(av[i]));
971 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000972 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000973
Damien Miller95def091999-11-25 00:26:21 +1100974 /* Cannot fork to background if no command. */
Darren Tuckerd6173c02008-06-13 04:52:53 +1000975 if (fork_after_authentication_flag && buffer_len(&command) == 0 &&
976 !no_shell_flag)
977 fatal("Cannot fork into background without a command "
978 "to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000979
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000980 /*
981 * Initialize "log" output. Since we are the client all output
Damien Miller03d4d7e2013-04-23 15:21:06 +1000982 * goes to stderr unless otherwise specified by -y or -E.
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000983 */
Damien Miller03d4d7e2013-04-23 15:21:06 +1000984 if (use_syslog && logfile != NULL)
985 fatal("Can't specify both -y and -E");
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000986 if (logfile != NULL)
Damien Miller03d4d7e2013-04-23 15:21:06 +1000987 log_redirect_stderr_to(logfile);
Darren Tucker72efd742009-06-21 17:48:00 +1000988 log_init(argv0,
Darren Tuckerd6173c02008-06-13 04:52:53 +1000989 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
Damien Millere272a5b2008-11-03 19:22:37 +1100990 SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000991
Damien Miller03d4d7e2013-04-23 15:21:06 +1000992 if (debug_flag)
Damien Miller1f0311c2014-05-15 14:24:09 +1000993 logit("%s, %s", SSH_RELEASE,
994#ifdef WITH_OPENSSL
995 SSLeay_version(SSLEAY_VERSION)
996#else
997 "without OpenSSL"
998#endif
999 );
Damien Miller03d4d7e2013-04-23 15:21:06 +10001000
Damien Miller13f97b22014-02-24 15:57:55 +11001001 /* Parse the configuration files */
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001002 process_config_files(host_arg, pw, 0);
Ben Lindstrom83f07d12001-10-03 17:22:29 +00001003
Damien Miller13f97b22014-02-24 15:57:55 +11001004 /* Hostname canonicalisation needs a few options filled. */
1005 fill_default_options_for_canonicalization(&options);
1006
1007 /* If the user has replaced the hostname then take it into use now */
1008 if (options.hostname != NULL) {
1009 /* NB. Please keep in sync with readconf.c:match_cfg_line() */
1010 cp = percent_expand(options.hostname,
1011 "h", host, (char *)NULL);
1012 free(host);
1013 host = cp;
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001014 free(options.hostname);
1015 options.hostname = xstrdup(host);
Damien Miller13f97b22014-02-24 15:57:55 +11001016 }
1017
1018 /* If canonicalization requested then try to apply it */
1019 lowercase(host);
1020 if (options.canonicalize_hostname != SSH_CANONICALISE_NO)
1021 addrs = resolve_canonicalize(&host, options.port);
1022
1023 /*
Damien Miller08b57c62014-02-27 10:17:13 +11001024 * If CanonicalizePermittedCNAMEs have been specified but
1025 * other canonicalization did not happen (by not being requested
1026 * or by failing with fallback) then the hostname may still be changed
1027 * as a result of CNAME following.
1028 *
1029 * Try to resolve the bare hostname name using the system resolver's
1030 * usual search rules and then apply the CNAME follow rules.
1031 *
1032 * Skip the lookup if a ProxyCommand is being used unless the user
1033 * has specifically requested canonicalisation for this case via
1034 * CanonicalizeHostname=always
Damien Miller13f97b22014-02-24 15:57:55 +11001035 */
Damien Miller08b57c62014-02-27 10:17:13 +11001036 if (addrs == NULL && options.num_permitted_cnames != 0 &&
1037 (option_clear_or_none(options.proxy_command) ||
Damien Miller13f97b22014-02-24 15:57:55 +11001038 options.canonicalize_hostname == SSH_CANONICALISE_ALWAYS)) {
Damien Miller19439e92014-07-02 15:28:40 +10001039 if ((addrs = resolve_host(host, options.port,
1040 option_clear_or_none(options.proxy_command),
1041 cname, sizeof(cname))) == NULL) {
1042 /* Don't fatal proxied host names not in the DNS */
1043 if (option_clear_or_none(options.proxy_command))
1044 cleanup_exit(255); /* logged in resolve_host */
1045 } else
1046 check_follow_cname(&host, cname);
Damien Miller13f97b22014-02-24 15:57:55 +11001047 }
1048
1049 /*
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001050 * If canonicalisation is enabled then re-parse the configuration
1051 * files as new stanzas may match.
Damien Miller13f97b22014-02-24 15:57:55 +11001052 */
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001053 if (options.canonicalize_hostname != 0) {
1054 debug("Re-reading configuration after hostname "
1055 "canonicalisation");
1056 free(options.hostname);
1057 options.hostname = xstrdup(host);
1058 process_config_files(host_arg, pw, 1);
1059 /*
1060 * Address resolution happens early with canonicalisation
1061 * enabled and the port number may have changed since, so
1062 * reset it in address list
1063 */
1064 if (addrs != NULL && options.port > 0)
1065 set_addrinfo_port(addrs, options.port);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +00001066 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001067
Damien Miller95def091999-11-25 00:26:21 +11001068 /* Fill configuration defaults. */
1069 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001070
Damien Miller13f97b22014-02-24 15:57:55 +11001071 if (options.port == 0)
1072 options.port = default_ssh_port();
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001073 channel_set_af(options.address_family);
1074
Damien Millere9fc72e2013-10-15 12:14:12 +11001075 /* Tidy and check options */
1076 if (options.host_key_alias != NULL)
1077 lowercase(options.host_key_alias);
1078 if (options.proxy_command != NULL &&
1079 strcmp(options.proxy_command, "-") == 0 &&
1080 options.proxy_use_fdpass)
1081 fatal("ProxyCommand=- and ProxyUseFDPass are incompatible");
djm@openbsd.org44732de2015-02-20 22:17:21 +00001082 if (options.control_persist &&
1083 options.update_hostkeys == SSH_UPDATE_HOSTKEYS_ASK) {
1084 debug("UpdateHostKeys=ask is incompatible with ControlPersist; "
1085 "disabling");
1086 options.update_hostkeys = 0;
1087 }
Damien Miller0faf7472013-10-17 11:47:23 +11001088#ifndef HAVE_CYGWIN
1089 if (original_effective_uid != 0)
1090 options.use_privileged_port = 0;
1091#endif
Damien Millere9fc72e2013-10-15 12:14:12 +11001092
Damien Miller95def091999-11-25 00:26:21 +11001093 /* reinit */
Darren Tucker72efd742009-06-21 17:48:00 +10001094 log_init(argv0, options.log_level, SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001095
Damien Millerfff9f092012-07-06 13:45:01 +10001096 if (options.request_tty == REQUEST_TTY_YES ||
1097 options.request_tty == REQUEST_TTY_FORCE)
1098 tty_flag = 1;
1099
1100 /* Allocate a tty by default if no command specified. */
1101 if (buffer_len(&command) == 0)
1102 tty_flag = options.request_tty != REQUEST_TTY_NO;
1103
1104 /* Force no tty */
1105 if (options.request_tty == REQUEST_TTY_NO || muxclient_command != 0)
1106 tty_flag = 0;
1107 /* Do not allocate a tty if stdin is not a tty. */
1108 if ((!isatty(fileno(stdin)) || stdin_null_flag) &&
1109 options.request_tty != REQUEST_TTY_FORCE) {
1110 if (tty_flag)
1111 logit("Pseudo-terminal will not be allocated because "
1112 "stdin is not a terminal.");
1113 tty_flag = 0;
1114 }
1115
Damien Miller60bc5172001-03-19 09:38:15 +11001116 seed_rng();
1117
Damien Miller95def091999-11-25 00:26:21 +11001118 if (options.user == NULL)
1119 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001120
Damien Millerdfc85fa2011-05-15 08:44:02 +10001121 if (gethostname(thishost, sizeof(thishost)) == -1)
1122 fatal("gethostname: %s", strerror(errno));
1123 strlcpy(shorthost, thishost, sizeof(shorthost));
1124 shorthost[strcspn(thishost, ".")] = '\0';
1125 snprintf(portstr, sizeof(portstr), "%d", options.port);
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001126
Damien Miller9c386432014-07-03 21:27:46 +10001127 if ((md = ssh_digest_start(SSH_DIGEST_SHA1)) == NULL ||
1128 ssh_digest_update(md, thishost, strlen(thishost)) < 0 ||
1129 ssh_digest_update(md, host, strlen(host)) < 0 ||
1130 ssh_digest_update(md, portstr, strlen(portstr)) < 0 ||
1131 ssh_digest_update(md, options.user, strlen(options.user)) < 0 ||
1132 ssh_digest_final(md, conn_hash, sizeof(conn_hash)) < 0)
1133 fatal("%s: mux digest failed", __func__);
1134 ssh_digest_free(md);
1135 conn_hash_hex = tohex(conn_hash, ssh_digest_bytes(SSH_DIGEST_SHA1));
1136
Damien Millerdfc85fa2011-05-15 08:44:02 +10001137 if (options.local_command != NULL) {
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001138 debug3("expanding LocalCommand: %s", options.local_command);
1139 cp = options.local_command;
Damien Miller9c386432014-07-03 21:27:46 +10001140 options.local_command = percent_expand(cp,
1141 "C", conn_hash_hex,
1142 "L", shorthost,
1143 "d", pw->pw_dir,
1144 "h", host,
1145 "l", thishost,
1146 "n", host_arg,
1147 "p", portstr,
1148 "r", options.user,
1149 "u", pw->pw_name,
Damien Millerdfc85fa2011-05-15 08:44:02 +10001150 (char *)NULL);
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001151 debug3("expanded LocalCommand: %s", options.local_command);
Darren Tuckera627d422013-06-02 07:31:17 +10001152 free(cp);
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001153 }
1154
Damien Miller0e220db2004-06-15 10:34:08 +10001155 if (options.control_path != NULL) {
Damien Miller6476cad2005-06-16 13:18:34 +10001156 cp = tilde_expand_filename(options.control_path,
1157 original_real_uid);
Darren Tuckera627d422013-06-02 07:31:17 +10001158 free(options.control_path);
Damien Miller9c386432014-07-03 21:27:46 +10001159 options.control_path = percent_expand(cp,
1160 "C", conn_hash_hex,
1161 "L", shorthost,
1162 "h", host,
1163 "l", thishost,
1164 "n", host_arg,
1165 "p", portstr,
1166 "r", options.user,
1167 "u", pw->pw_name,
Damien Millerdfc85fa2011-05-15 08:44:02 +10001168 (char *)NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10001169 free(cp);
Damien Miller0e220db2004-06-15 10:34:08 +10001170 }
Damien Miller9c386432014-07-03 21:27:46 +10001171 free(conn_hash_hex);
1172
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001173 if (config_test) {
1174 dump_client_config(&options, host);
1175 exit(0);
1176 }
1177
Damien Millerb1cbfa22008-05-19 16:00:08 +10001178 if (muxclient_command != 0 && options.control_path == NULL)
Darren Tucker0814d312005-06-01 23:08:51 +10001179 fatal("No ControlPath specified for \"-O\" command");
Damien Millerd14b1e72005-06-16 13:19:41 +10001180 if (options.control_path != NULL)
Damien Millerb1cbfa22008-05-19 16:00:08 +10001181 muxclient(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +10001182
Damien Miller08b57c62014-02-27 10:17:13 +11001183 /*
1184 * If hostname canonicalisation was not enabled, then we may not
1185 * have yet resolved the hostname. Do so now.
1186 */
1187 if (addrs == NULL && options.proxy_command == NULL) {
djm@openbsd.orga85768a2015-09-04 04:56:09 +00001188 debug2("resolving \"%s\" port %d", host, options.port);
Damien Miller08b57c62014-02-27 10:17:13 +11001189 if ((addrs = resolve_host(host, options.port, 1,
1190 cname, sizeof(cname))) == NULL)
1191 cleanup_exit(255); /* resolve_host logs the error */
1192 }
1193
Damien Miller67bd0622007-09-17 12:06:57 +10001194 timeout_ms = options.connection_timeout * 1000;
1195
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001196 /* Open a connection to the remote host. */
Damien Miller0faf7472013-10-17 11:47:23 +11001197 if (ssh_connect(host, addrs, &hostaddr, options.port,
1198 options.address_family, options.connection_attempts,
1199 &timeout_ms, options.tcp_keep_alive,
1200 options.use_privileged_port) != 0)
1201 exit(255);
1202
Damien Miller28631ce2013-10-26 10:07:56 +11001203 if (addrs != NULL)
1204 freeaddrinfo(addrs);
1205
Damien Miller0faf7472013-10-17 11:47:23 +11001206 packet_set_timeout(options.server_alive_interval,
1207 options.server_alive_count_max);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001208
Damien Miller67bd0622007-09-17 12:06:57 +10001209 if (timeout_ms > 0)
1210 debug3("timeout: %d ms remain after connect", timeout_ms);
1211
Damien Miller5428f641999-11-25 11:54:57 +11001212 /*
1213 * If we successfully made the connection, load the host private key
1214 * in case we will need it later for combined rsa-rhosts
1215 * authentication. This must be done before releasing extra
1216 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +00001217 * If we cannot access the private keys, load the public keys
1218 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +11001219 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001220 sensitive_data.nkeys = 0;
1221 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001222 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +00001223 if (options.rhosts_rsa_authentication ||
1224 options.hostbased_authentication) {
Damien Miller0fa47cf2013-12-29 17:53:39 +11001225 sensitive_data.nkeys = 9;
Damien Millerddd63ab2006-03-31 23:10:51 +11001226 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001227 sizeof(Key));
Damien Miller6af914a2010-09-10 11:39:26 +10001228 for (i = 0; i < sensitive_data.nkeys; i++)
1229 sensitive_data.keys[i] = NULL;
Ben Lindstromf9c48842002-06-11 16:37:51 +00001230
1231 PRIV_START;
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001232 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Darren Tucker232b76f2006-05-06 17:41:51 +10001233 _PATH_HOST_KEY_FILE, "", NULL, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001234#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001235 sensitive_data.keys[1] = key_load_private_cert(KEY_ECDSA,
Damien Millereb8b60e2010-08-31 22:41:14 +10001236 _PATH_HOST_ECDSA_KEY_FILE, "", NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001237#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001238 sensitive_data.keys[2] = key_load_private_cert(KEY_ED25519,
1239 _PATH_HOST_ED25519_KEY_FILE, "", NULL);
Damien Millereb8b60e2010-08-31 22:41:14 +10001240 sensitive_data.keys[3] = key_load_private_cert(KEY_RSA,
Damien Millerc1583312010-08-05 13:04:50 +10001241 _PATH_HOST_RSA_KEY_FILE, "", NULL);
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001242 sensitive_data.keys[4] = key_load_private_cert(KEY_DSA,
1243 _PATH_HOST_DSA_KEY_FILE, "", NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001244#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001245 sensitive_data.keys[5] = key_load_private_type(KEY_ECDSA,
Damien Millereb8b60e2010-08-31 22:41:14 +10001246 _PATH_HOST_ECDSA_KEY_FILE, "", NULL, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001247#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001248 sensitive_data.keys[6] = key_load_private_type(KEY_ED25519,
1249 _PATH_HOST_ED25519_KEY_FILE, "", NULL, NULL);
Damien Miller0fa47cf2013-12-29 17:53:39 +11001250 sensitive_data.keys[7] = key_load_private_type(KEY_RSA,
Darren Tucker232b76f2006-05-06 17:41:51 +10001251 _PATH_HOST_RSA_KEY_FILE, "", NULL, NULL);
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001252 sensitive_data.keys[8] = key_load_private_type(KEY_DSA,
1253 _PATH_HOST_DSA_KEY_FILE, "", NULL, NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +00001254 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001255
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +00001256 if (options.hostbased_authentication == 1 &&
1257 sensitive_data.keys[0] == NULL &&
Damien Millereb8b60e2010-08-31 22:41:14 +10001258 sensitive_data.keys[5] == NULL &&
Damien Miller5be9d9e2013-12-07 11:24:01 +11001259 sensitive_data.keys[6] == NULL &&
Damien Miller0fa47cf2013-12-29 17:53:39 +11001260 sensitive_data.keys[7] == NULL &&
1261 sensitive_data.keys[8] == NULL) {
Damien Miller6af914a2010-09-10 11:39:26 +10001262#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001263 sensitive_data.keys[1] = key_load_cert(
Damien Millereb8b60e2010-08-31 22:41:14 +10001264 _PATH_HOST_ECDSA_KEY_FILE);
Damien Miller6af914a2010-09-10 11:39:26 +10001265#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001266 sensitive_data.keys[2] = key_load_cert(
1267 _PATH_HOST_ED25519_KEY_FILE);
Damien Millereb8b60e2010-08-31 22:41:14 +10001268 sensitive_data.keys[3] = key_load_cert(
Damien Millerc1583312010-08-05 13:04:50 +10001269 _PATH_HOST_RSA_KEY_FILE);
Damien Miller0fa47cf2013-12-29 17:53:39 +11001270 sensitive_data.keys[4] = key_load_cert(
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001271 _PATH_HOST_DSA_KEY_FILE);
Damien Miller6af914a2010-09-10 11:39:26 +10001272#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001273 sensitive_data.keys[5] = key_load_public(
Damien Millereb8b60e2010-08-31 22:41:14 +10001274 _PATH_HOST_ECDSA_KEY_FILE, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001275#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001276 sensitive_data.keys[6] = key_load_public(
1277 _PATH_HOST_ED25519_KEY_FILE, NULL);
Damien Miller5be9d9e2013-12-07 11:24:01 +11001278 sensitive_data.keys[7] = key_load_public(
Damien Miller0fa47cf2013-12-29 17:53:39 +11001279 _PATH_HOST_RSA_KEY_FILE, NULL);
1280 sensitive_data.keys[8] = key_load_public(
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001281 _PATH_HOST_DSA_KEY_FILE, NULL);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001282 sensitive_data.external_keysign = 1;
1283 }
Damien Miller95def091999-11-25 00:26:21 +11001284 }
Damien Miller5428f641999-11-25 11:54:57 +11001285 /*
1286 * Get rid of any extra privileges that we may have. We will no
1287 * longer need them. Also, extra privileges could make it very hard
1288 * to read identity files and other non-world-readable files from the
1289 * user's home directory if it happens to be on a NFS volume where
1290 * root is mapped to nobody.
1291 */
Darren Tucker25f60a72004-08-15 17:23:34 +10001292 if (original_effective_uid == 0) {
1293 PRIV_START;
1294 permanently_set_uid(pw);
1295 }
Damien Miller95def091999-11-25 00:26:21 +11001296
Damien Miller5428f641999-11-25 11:54:57 +11001297 /*
1298 * Now that we are back to our own permissions, create ~/.ssh
Damien Miller788f2122005-11-05 15:14:59 +11001299 * directory if it doesn't already exist.
Damien Miller5428f641999-11-25 11:54:57 +11001300 */
Darren Tucker45c66d72011-11-04 10:50:40 +11001301 if (config == NULL) {
1302 r = snprintf(buf, sizeof buf, "%s%s%s", pw->pw_dir,
1303 strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
1304 if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) < 0) {
Darren Tucker8ccb7392010-09-10 12:28:24 +10001305#ifdef WITH_SELINUX
Darren Tucker45c66d72011-11-04 10:50:40 +11001306 ssh_selinux_setfscreatecon(buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001307#endif
Darren Tucker45c66d72011-11-04 10:50:40 +11001308 if (mkdir(buf, 0700) < 0)
1309 error("Could not create directory '%.200s'.",
1310 buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001311#ifdef WITH_SELINUX
Darren Tucker45c66d72011-11-04 10:50:40 +11001312 ssh_selinux_setfscreatecon(NULL);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001313#endif
Darren Tucker45c66d72011-11-04 10:50:40 +11001314 }
Darren Tucker8ccb7392010-09-10 12:28:24 +10001315 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001316 /* load options.identity_files */
1317 load_public_identity_files();
1318
1319 /* Expand ~ in known host file names. */
Damien Miller295ee632011-05-29 21:42:31 +10001320 tilde_expand_paths(options.system_hostfiles,
1321 options.num_system_hostfiles);
1322 tilde_expand_paths(options.user_hostfiles, options.num_user_hostfiles);
Damien Miller95def091999-11-25 00:26:21 +11001323
Damien Miller07cd5892001-11-12 10:52:03 +11001324 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
Damien Miller857b02e2010-09-24 22:02:56 +10001325 signal(SIGCHLD, main_sigchld_handler);
Damien Miller07cd5892001-11-12 10:52:03 +11001326
Darren Tuckerd6173c02008-06-13 04:52:53 +10001327 /* Log into the remote system. Never returns if the login fails. */
Damien Miller67bd0622007-09-17 12:06:57 +10001328 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr,
Damien Millerd925dcd2010-12-01 12:21:51 +11001329 options.port, pw, timeout_ms);
Damien Miller95def091999-11-25 00:26:21 +11001330
Damien Miller383ffe62010-06-26 10:02:03 +10001331 if (packet_connection_is_on_socket()) {
1332 verbose("Authenticated to %s ([%s]:%d).", host,
1333 get_remote_ipaddr(), get_remote_port());
1334 } else {
1335 verbose("Authenticated to %s (via proxy).", host);
1336 }
1337
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001338 /* We no longer need the private host keys. Clear them now. */
1339 if (sensitive_data.nkeys != 0) {
1340 for (i = 0; i < sensitive_data.nkeys; i++) {
1341 if (sensitive_data.keys[i] != NULL) {
1342 /* Destroys contents safely */
1343 debug3("clear hostkey %d", i);
1344 key_free(sensitive_data.keys[i]);
1345 sensitive_data.keys[i] = NULL;
1346 }
1347 }
Darren Tuckera627d422013-06-02 07:31:17 +10001348 free(sensitive_data.keys);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001349 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +00001350 for (i = 0; i < options.num_identity_files; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +10001351 free(options.identity_files[i]);
1352 options.identity_files[i] = NULL;
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +00001353 if (options.identity_keys[i]) {
1354 key_free(options.identity_keys[i]);
1355 options.identity_keys[i] = NULL;
1356 }
1357 }
Damien Miller95def091999-11-25 00:26:21 +11001358
Damien Miller1383bd82000-04-06 12:32:37 +10001359 exit_status = compat20 ? ssh_session2() : ssh_session();
1360 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +10001361
Damien Millerb1cbfa22008-05-19 16:00:08 +10001362 if (options.control_path != NULL && muxserver_sock != -1)
Damien Miller0e220db2004-06-15 10:34:08 +10001363 unlink(options.control_path);
1364
Damien Millera41ccca2010-10-07 22:07:32 +11001365 /* Kill ProxyCommand if it is running. */
1366 ssh_kill_proxy_command();
Damien Miller8c4e18a2002-09-19 12:05:02 +10001367
Damien Miller1383bd82000-04-06 12:32:37 +10001368 return exit_status;
1369}
1370
Damien Millere11e1ea2010-08-03 16:04:46 +10001371static void
1372control_persist_detach(void)
1373{
1374 pid_t pid;
Damien Miller00d9ae22010-08-17 01:59:31 +10001375 int devnull;
Damien Millere11e1ea2010-08-03 16:04:46 +10001376
1377 debug("%s: backgrounding master process", __func__);
1378
1379 /*
1380 * master (current process) into the background, and make the
1381 * foreground process a client of the backgrounded master.
1382 */
1383 switch ((pid = fork())) {
1384 case -1:
1385 fatal("%s: fork: %s", __func__, strerror(errno));
1386 case 0:
1387 /* Child: master process continues mainloop */
1388 break;
1389 default:
1390 /* Parent: set up mux slave to connect to backgrounded master */
1391 debug2("%s: background process is %ld", __func__, (long)pid);
1392 stdin_null_flag = ostdin_null_flag;
Damien Miller21771e22011-05-15 08:45:50 +10001393 options.request_tty = orequest_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +10001394 tty_flag = otty_flag;
1395 close(muxserver_sock);
1396 muxserver_sock = -1;
Damien Miller5929c522010-09-10 11:17:02 +10001397 options.control_master = SSHCTL_MASTER_NO;
Damien Millere11e1ea2010-08-03 16:04:46 +10001398 muxclient(options.control_path);
1399 /* muxclient() doesn't return on success. */
1400 fatal("Failed to connect to new control master");
1401 }
Damien Miller00d9ae22010-08-17 01:59:31 +10001402 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
1403 error("%s: open(\"/dev/null\"): %s", __func__,
1404 strerror(errno));
1405 } else {
1406 if (dup2(devnull, STDIN_FILENO) == -1 ||
1407 dup2(devnull, STDOUT_FILENO) == -1)
1408 error("%s: dup2: %s", __func__, strerror(errno));
1409 if (devnull > STDERR_FILENO)
1410 close(devnull);
1411 }
Damien Miller98e27dc2013-07-25 11:55:52 +10001412 daemon(1, 1);
Damien Millerea2c1a42011-06-03 12:10:22 +10001413 setproctitle("%s [mux]", options.control_path);
Damien Millere11e1ea2010-08-03 16:04:46 +10001414}
1415
1416/* Do fork() after authentication. Used by "ssh -f" */
1417static void
1418fork_postauth(void)
1419{
1420 if (need_controlpersist_detach)
1421 control_persist_detach();
1422 debug("forking to background");
1423 fork_after_authentication_flag = 0;
1424 if (daemon(1, 1) < 0)
1425 fatal("daemon() failed: %.200s", strerror(errno));
1426}
1427
Darren Tucker9f407c42008-06-13 04:50:27 +10001428/* Callback for remote forward global requests */
1429static void
1430ssh_confirm_remote_forward(int type, u_int32_t seq, void *ctxt)
1431{
Damien Miller7acefbb2014-07-18 14:11:24 +10001432 struct Forward *rfwd = (struct Forward *)ctxt;
Darren Tucker9f407c42008-06-13 04:50:27 +10001433
Damien Miller4bf648f2009-02-14 16:28:21 +11001434 /* XXX verbose() on failure? */
Damien Miller4b3ed642014-07-02 15:29:40 +10001435 debug("remote forward %s for: listen %s%s%d, connect %s:%d",
Darren Tucker9f407c42008-06-13 04:50:27 +10001436 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
Damien Miller7acefbb2014-07-18 14:11:24 +10001437 rfwd->listen_path ? rfwd->listen_path :
1438 rfwd->listen_host ? rfwd->listen_host : "",
1439 (rfwd->listen_path || rfwd->listen_host) ? ":" : "",
1440 rfwd->listen_port, rfwd->connect_path ? rfwd->connect_path :
1441 rfwd->connect_host, rfwd->connect_port);
1442 if (rfwd->listen_path == NULL && rfwd->listen_port == 0) {
Darren Tucker68afb8c2011-10-02 18:59:03 +11001443 if (type == SSH2_MSG_REQUEST_SUCCESS) {
1444 rfwd->allocated_port = packet_get_int();
1445 logit("Allocated port %u for remote forward to %s:%d",
1446 rfwd->allocated_port,
1447 rfwd->connect_host, rfwd->connect_port);
1448 channel_update_permitted_opens(rfwd->handle,
1449 rfwd->allocated_port);
1450 } else {
1451 channel_update_permitted_opens(rfwd->handle, -1);
1452 }
Damien Miller4bf648f2009-02-14 16:28:21 +11001453 }
1454
Darren Tucker9f407c42008-06-13 04:50:27 +10001455 if (type == SSH2_MSG_REQUEST_FAILURE) {
Damien Miller7acefbb2014-07-18 14:11:24 +10001456 if (options.exit_on_forward_failure) {
1457 if (rfwd->listen_path != NULL)
1458 fatal("Error: remote port forwarding failed "
1459 "for listen path %s", rfwd->listen_path);
1460 else
1461 fatal("Error: remote port forwarding failed "
1462 "for listen port %d", rfwd->listen_port);
1463 } else {
1464 if (rfwd->listen_path != NULL)
1465 logit("Warning: remote port forwarding failed "
1466 "for listen path %s", rfwd->listen_path);
1467 else
1468 logit("Warning: remote port forwarding failed "
1469 "for listen port %d", rfwd->listen_port);
1470 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001471 }
Darren Tucker9a2a6092008-07-04 12:53:50 +10001472 if (++remote_forward_confirms_received == options.num_remote_forwards) {
Darren Tucker9f407c42008-06-13 04:50:27 +10001473 debug("All remote forwarding requests processed");
Damien Millere11e1ea2010-08-03 16:04:46 +10001474 if (fork_after_authentication_flag)
1475 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001476 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001477}
1478
Ben Lindstrombba81212001-06-25 05:01:22 +00001479static void
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001480client_cleanup_stdio_fwd(int id, void *arg)
1481{
1482 debug("stdio forwarding: done");
1483 cleanup_exit(0);
1484}
1485
Darren Tucker2d6665d2011-11-04 10:54:22 +11001486static void
Damien Miller357610d2014-07-18 15:04:10 +10001487ssh_stdio_confirm(int id, int success, void *arg)
1488{
1489 if (!success)
1490 fatal("stdio forwarding failed");
1491}
1492
1493static void
Darren Tucker2d6665d2011-11-04 10:54:22 +11001494ssh_init_stdio_forwarding(void)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001495{
1496 Channel *c;
Damien Millere1537f92010-01-26 13:26:22 +11001497 int in, out;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001498
Darren Tucker2d6665d2011-11-04 10:54:22 +11001499 if (stdio_forward_host == NULL)
1500 return;
Damien Miller386feab2013-10-15 12:14:49 +11001501 if (!compat20)
Darren Tucker2d6665d2011-11-04 10:54:22 +11001502 fatal("stdio forwarding require Protocol 2");
Damien Millere1537f92010-01-26 13:26:22 +11001503
Darren Tucker2d6665d2011-11-04 10:54:22 +11001504 debug3("%s: %s:%d", __func__, stdio_forward_host, stdio_forward_port);
1505
1506 if ((in = dup(STDIN_FILENO)) < 0 ||
1507 (out = dup(STDOUT_FILENO)) < 0)
Damien Millere1537f92010-01-26 13:26:22 +11001508 fatal("channel_connect_stdio_fwd: dup() in/out failed");
Darren Tucker2d6665d2011-11-04 10:54:22 +11001509 if ((c = channel_connect_stdio_fwd(stdio_forward_host,
1510 stdio_forward_port, in, out)) == NULL)
1511 fatal("%s: channel_connect_stdio_fwd failed", __func__);
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001512 channel_register_cleanup(c->self, client_cleanup_stdio_fwd, 0);
Damien Miller357610d2014-07-18 15:04:10 +10001513 channel_register_open_confirm(c->self, ssh_stdio_confirm, NULL);
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001514}
1515
1516static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001517ssh_init_forwarding(void)
1518{
Kevin Steves12057502001-02-05 14:54:34 +00001519 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001520 int i;
Kevin Steves12057502001-02-05 14:54:34 +00001521
Damien Miller0bc1bd82000-11-13 22:57:25 +11001522 /* Initiate local TCP/IP port forwardings. */
1523 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001524 debug("Local connections to %.200s:%d forwarded to remote "
1525 "address %.200s:%d",
Damien Miller7acefbb2014-07-18 14:11:24 +10001526 (options.local_forwards[i].listen_path != NULL) ?
1527 options.local_forwards[i].listen_path :
Darren Tucker47eede72005-03-14 23:08:12 +11001528 (options.local_forwards[i].listen_host == NULL) ?
Damien Miller7acefbb2014-07-18 14:11:24 +10001529 (options.fwd_opts.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001530 options.local_forwards[i].listen_host,
1531 options.local_forwards[i].listen_port,
Damien Miller7acefbb2014-07-18 14:11:24 +10001532 (options.local_forwards[i].connect_path != NULL) ?
1533 options.local_forwards[i].connect_path :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001534 options.local_forwards[i].connect_host,
1535 options.local_forwards[i].connect_port);
Damien Millerb16461c2002-01-22 23:29:22 +11001536 success += channel_setup_local_fwd_listener(
Damien Miller7acefbb2014-07-18 14:11:24 +10001537 &options.local_forwards[i], &options.fwd_opts);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001538 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10001539 if (i > 0 && success != i && options.exit_on_forward_failure)
1540 fatal("Could not request local forwarding.");
Kevin Steves12057502001-02-05 14:54:34 +00001541 if (i > 0 && success == 0)
1542 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001543
1544 /* Initiate remote TCP/IP port forwardings. */
1545 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001546 debug("Remote connections from %.200s:%d forwarded to "
1547 "local address %.200s:%d",
Damien Miller7acefbb2014-07-18 14:11:24 +10001548 (options.remote_forwards[i].listen_path != NULL) ?
1549 options.remote_forwards[i].listen_path :
Damien Miller46d38de2005-07-17 17:02:09 +10001550 (options.remote_forwards[i].listen_host == NULL) ?
Damien Milleraa3bb102005-11-05 15:12:59 +11001551 "LOCALHOST" : options.remote_forwards[i].listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +11001552 options.remote_forwards[i].listen_port,
Damien Miller7acefbb2014-07-18 14:11:24 +10001553 (options.remote_forwards[i].connect_path != NULL) ?
1554 options.remote_forwards[i].connect_path :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001555 options.remote_forwards[i].connect_host,
1556 options.remote_forwards[i].connect_port);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001557 options.remote_forwards[i].handle =
1558 channel_request_remote_forwarding(
Damien Miller7acefbb2014-07-18 14:11:24 +10001559 &options.remote_forwards[i]);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001560 if (options.remote_forwards[i].handle < 0) {
Darren Tuckere7d4b192006-07-12 22:17:10 +10001561 if (options.exit_on_forward_failure)
1562 fatal("Could not request remote forwarding.");
1563 else
1564 logit("Warning: Could not request remote "
1565 "forwarding.");
Darren Tucker68afb8c2011-10-02 18:59:03 +11001566 } else {
1567 client_register_global_confirm(ssh_confirm_remote_forward,
1568 &options.remote_forwards[i]);
Darren Tuckere7d4b192006-07-12 22:17:10 +10001569 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001570 }
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001571
1572 /* Initiate tunnel forwarding. */
1573 if (options.tun_open != SSH_TUNMODE_NO) {
1574 if (client_request_tun_fwd(options.tun_open,
1575 options.tun_local, options.tun_remote) == -1) {
1576 if (options.exit_on_forward_failure)
1577 fatal("Could not request tunnel forwarding.");
1578 else
1579 error("Could not request tunnel forwarding.");
1580 }
1581 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001582}
1583
Ben Lindstrombba81212001-06-25 05:01:22 +00001584static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001585check_agent_present(void)
1586{
djm@openbsd.org141efe42015-01-14 20:05:27 +00001587 int r;
1588
Damien Miller0bc1bd82000-11-13 22:57:25 +11001589 if (options.forward_agent) {
Damien Miller788f2122005-11-05 15:14:59 +11001590 /* Clear agent forwarding if we don't have an agent. */
djm@openbsd.org141efe42015-01-14 20:05:27 +00001591 if ((r = ssh_get_authentication_socket(NULL)) != 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001592 options.forward_agent = 0;
djm@openbsd.org141efe42015-01-14 20:05:27 +00001593 if (r != SSH_ERR_AGENT_NOT_PRESENT)
1594 debug("ssh_get_authentication_socket: %s",
1595 ssh_err(r));
1596 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001597 }
1598}
1599
Ben Lindstrombba81212001-06-25 05:01:22 +00001600static int
Damien Miller1383bd82000-04-06 12:32:37 +10001601ssh_session(void)
1602{
1603 int type;
Damien Miller1383bd82000-04-06 12:32:37 +10001604 int interactive = 0;
1605 int have_tty = 0;
1606 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +10001607 char *cp;
Damien Miller17e7ed02005-06-17 12:54:33 +10001608 const char *display;
Damien Miller1383bd82000-04-06 12:32:37 +10001609
Damien Miller95def091999-11-25 00:26:21 +11001610 /* Enable compression if requested. */
1611 if (options.compression) {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001612 debug("Requesting compression at level %d.",
1613 options.compression_level);
Damien Miller95def091999-11-25 00:26:21 +11001614
Darren Tuckerd6173c02008-06-13 04:52:53 +10001615 if (options.compression_level < 1 ||
1616 options.compression_level > 9)
1617 fatal("Compression level must be from 1 (fast) to "
1618 "9 (slow, best).");
Damien Miller95def091999-11-25 00:26:21 +11001619
1620 /* Send the request. */
1621 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
1622 packet_put_int(options.compression_level);
1623 packet_send();
1624 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +11001625 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001626 if (type == SSH_SMSG_SUCCESS)
1627 packet_start_compression(options.compression_level);
1628 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +10001629 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +11001630 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001631 packet_disconnect("Protocol error waiting for "
1632 "compression response.");
Damien Miller95def091999-11-25 00:26:21 +11001633 }
1634 /* Allocate a pseudo tty if appropriate. */
1635 if (tty_flag) {
1636 debug("Requesting pty.");
1637
1638 /* Start the packet. */
1639 packet_start(SSH_CMSG_REQUEST_PTY);
1640
1641 /* Store TERM in the packet. There is no limit on the
1642 length of the string. */
1643 cp = getenv("TERM");
1644 if (!cp)
1645 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +00001646 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +11001647
1648 /* Store window size in the packet. */
1649 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1650 memset(&ws, 0, sizeof(ws));
Damien Miller71a73672006-03-26 14:04:36 +11001651 packet_put_int((u_int)ws.ws_row);
1652 packet_put_int((u_int)ws.ws_col);
1653 packet_put_int((u_int)ws.ws_xpixel);
1654 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller95def091999-11-25 00:26:21 +11001655
1656 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001657 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +11001658
1659 /* Send the packet, and wait for it to leave. */
1660 packet_send();
1661 packet_write_wait();
1662
1663 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001664 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +10001665 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001666 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001667 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +10001668 } else if (type == SSH_SMSG_FAILURE)
Darren Tuckerd6173c02008-06-13 04:52:53 +10001669 logit("Warning: Remote host failed or refused to "
1670 "allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +11001671 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001672 packet_disconnect("Protocol error waiting for pty "
1673 "request response.");
Damien Miller95def091999-11-25 00:26:21 +11001674 }
1675 /* Request X11 forwarding if enabled and DISPLAY is set. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001676 display = getenv("DISPLAY");
djm@openbsd.orga58be332015-04-17 13:16:48 +00001677 if (display == NULL && options.forward_x11)
1678 debug("X11 forwarding requested but DISPLAY not set");
Damien Miller17e7ed02005-06-17 12:54:33 +10001679 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001680 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001681 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001682 client_x11_get_proto(display, options.xauth_location,
Damien Miller386feab2013-10-15 12:14:49 +11001683 options.forward_x11_trusted,
Damien Miller1ab6a512010-06-26 10:02:24 +10001684 options.forward_x11_timeout,
1685 &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001686 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001687 debug("Requesting X11 forwarding with authentication "
1688 "spoofing.");
Damien Miller6d7b4372011-06-23 08:31:57 +10001689 x11_request_forwarding_with_spoofing(0, display, proto,
1690 data, 0);
Damien Miller95def091999-11-25 00:26:21 +11001691 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001692 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001693 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001694 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001695 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +10001696 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +10001697 } else {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001698 packet_disconnect("Protocol error waiting for X11 "
1699 "forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +10001700 }
Damien Miller95def091999-11-25 00:26:21 +11001701 }
1702 /* Tell the packet module whether this is an interactive session. */
Damien Miller0dac6fb2010-11-20 15:19:38 +11001703 packet_set_interactive(interactive,
1704 options.ip_qos_interactive, options.ip_qos_bulk);
Damien Miller95def091999-11-25 00:26:21 +11001705
1706 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001707 check_agent_present();
1708
Damien Miller95def091999-11-25 00:26:21 +11001709 if (options.forward_agent) {
1710 debug("Requesting authentication agent forwarding.");
1711 auth_request_forwarding();
1712
1713 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001714 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +11001715 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11001716 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +10001717 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +11001718 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001719
Damien Miller0bc1bd82000-11-13 22:57:25 +11001720 /* Initiate port forwardings. */
Darren Tucker2d6665d2011-11-04 10:54:22 +11001721 ssh_init_stdio_forwarding();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001722 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001723
Darren Tuckerb776c852007-12-02 23:06:35 +11001724 /* Execute a local command */
1725 if (options.local_command != NULL &&
1726 options.permit_local_command)
1727 ssh_local_cmd(options.local_command);
1728
Darren Tucker9a2a6092008-07-04 12:53:50 +10001729 /*
1730 * If requested and we are not interested in replies to remote
1731 * forwarding requests, then let ssh continue in the background.
1732 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001733 if (fork_after_authentication_flag) {
1734 if (options.exit_on_forward_failure &&
1735 options.num_remote_forwards > 0) {
1736 debug("deferring postauth fork until remote forward "
1737 "confirmation received");
1738 } else
1739 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001740 }
Damien Miller5428f641999-11-25 11:54:57 +11001741
1742 /*
1743 * If a command was specified on the command line, execute the
1744 * command now. Otherwise request the server to start a shell.
1745 */
Damien Miller95def091999-11-25 00:26:21 +11001746 if (buffer_len(&command) > 0) {
1747 int len = buffer_len(&command);
1748 if (len > 900)
1749 len = 900;
Darren Tuckerd6173c02008-06-13 04:52:53 +10001750 debug("Sending command: %.*s", len,
1751 (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +11001752 packet_start(SSH_CMSG_EXEC_CMD);
1753 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1754 packet_send();
1755 packet_write_wait();
1756 } else {
1757 debug("Requesting shell.");
1758 packet_start(SSH_CMSG_EXEC_SHELL);
1759 packet_send();
1760 packet_write_wait();
1761 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001762
Damien Miller95def091999-11-25 00:26:21 +11001763 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001764 return client_loop(have_tty, tty_flag ?
1765 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +10001766}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001767
Ben Lindstromf558cf62001-09-20 23:13:49 +00001768/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001769static void
Damien Millerd530f5f2010-05-21 14:57:10 +10001770ssh_session2_setup(int id, int success, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001771{
Damien Miller3756dce2004-06-18 01:17:29 +10001772 extern char **environ;
Damien Miller17e7ed02005-06-17 12:54:33 +10001773 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +10001774 int interactive = tty_flag;
Damien Miller17e7ed02005-06-17 12:54:33 +10001775
Damien Millerd530f5f2010-05-21 14:57:10 +10001776 if (!success)
1777 return; /* No need for error message, channels code sens one */
1778
Damien Miller46d38de2005-07-17 17:02:09 +10001779 display = getenv("DISPLAY");
djm@openbsd.orga58be332015-04-17 13:16:48 +00001780 if (display == NULL && options.forward_x11)
1781 debug("X11 forwarding requested but DISPLAY not set");
Damien Miller17e7ed02005-06-17 12:54:33 +10001782 if (options.forward_x11 && display != NULL) {
Ben Lindstrom4a4bd712001-12-06 17:45:19 +00001783 char *proto, *data;
Damien Millerbd483e72000-04-30 10:00:53 +10001784 /* Get reasonable local authentication information. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001785 client_x11_get_proto(display, options.xauth_location,
Damien Miller1ab6a512010-06-26 10:02:24 +10001786 options.forward_x11_trusted,
1787 options.forward_x11_timeout, &proto, &data);
Damien Millerbd483e72000-04-30 10:00:53 +10001788 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001789 debug("Requesting X11 forwarding with authentication "
1790 "spoofing.");
Damien Miller6d7b4372011-06-23 08:31:57 +10001791 x11_request_forwarding_with_spoofing(id, display, proto,
1792 data, 1);
1793 client_expect_confirm(id, "X11 forwarding", CONFIRM_WARN);
1794 /* XXX exit_on_forward_failure */
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001795 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001796 }
1797
Damien Miller0bc1bd82000-11-13 22:57:25 +11001798 check_agent_present();
1799 if (options.forward_agent) {
1800 debug("Requesting authentication agent forwarding.");
1801 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1802 packet_send();
1803 }
1804
Darren Tucker7b305012012-07-02 18:55:09 +10001805 /* Tell the packet module whether this is an interactive session. */
1806 packet_set_interactive(interactive,
1807 options.ip_qos_interactive, options.ip_qos_bulk);
1808
Damien Miller0e220db2004-06-15 10:34:08 +10001809 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
Damien Miller5771ed72008-05-19 15:35:33 +10001810 NULL, fileno(stdin), &command, environ);
Damien Miller1383bd82000-04-06 12:32:37 +10001811}
1812
Ben Lindstromf558cf62001-09-20 23:13:49 +00001813/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001814static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001815ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001816{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001817 Channel *c;
1818 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001819
Damien Millercaf6dd62000-08-29 11:33:50 +11001820 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001821 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001822 } else {
1823 in = dup(STDIN_FILENO);
1824 }
1825 out = dup(STDOUT_FILENO);
1826 err = dup(STDERR_FILENO);
1827
1828 if (in < 0 || out < 0 || err < 0)
1829 fatal("dup() in/out/err failed");
1830
Damien Miller69b69aa2000-10-28 14:19:58 +11001831 /* enable nonblocking unless tty */
1832 if (!isatty(in))
1833 set_nonblock(in);
1834 if (!isatty(out))
1835 set_nonblock(out);
1836 if (!isatty(err))
1837 set_nonblock(err);
1838
Damien Millere4340be2000-09-16 13:29:08 +11001839 window = CHAN_SES_WINDOW_DEFAULT;
1840 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001841 if (tty_flag) {
1842 window >>= 1;
1843 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001844 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001845 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001846 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001847 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001848 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001849
Ben Lindstromf558cf62001-09-20 23:13:49 +00001850 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001851
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001852 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001853 if (!no_shell_flag)
Damien Millerb84886b2008-05-19 15:05:07 +10001854 channel_register_open_confirm(c->self,
1855 ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001856
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001857 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001858}
1859
Ben Lindstrombba81212001-06-25 05:01:22 +00001860static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001861ssh_session2(void)
1862{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001863 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001864
1865 /* XXX should be pre-session */
Darren Tucker2d6665d2011-11-04 10:54:22 +11001866 if (!options.control_persist)
1867 ssh_init_stdio_forwarding();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001868 ssh_init_forwarding();
1869
Damien Millere11e1ea2010-08-03 16:04:46 +10001870 /* Start listening for multiplex clients */
1871 muxserver_listen();
1872
1873 /*
Darren Tucker2d6665d2011-11-04 10:54:22 +11001874 * If we are in control persist mode and have a working mux listen
1875 * socket, then prepare to background ourselves and have a foreground
1876 * client attach as a control slave.
1877 * NB. we must save copies of the flags that we override for
Damien Millere11e1ea2010-08-03 16:04:46 +10001878 * the backgrounding, since we defer attachment of the slave until
1879 * after the connection is fully established (in particular,
1880 * async rfwd replies have been received for ExitOnForwardFailure).
1881 */
1882 if (options.control_persist && muxserver_sock != -1) {
1883 ostdin_null_flag = stdin_null_flag;
1884 ono_shell_flag = no_shell_flag;
Damien Miller21771e22011-05-15 08:45:50 +10001885 orequest_tty = options.request_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +10001886 otty_flag = tty_flag;
1887 stdin_null_flag = 1;
1888 no_shell_flag = 1;
Damien Millere11e1ea2010-08-03 16:04:46 +10001889 tty_flag = 0;
1890 if (!fork_after_authentication_flag)
1891 need_controlpersist_detach = 1;
1892 fork_after_authentication_flag = 1;
1893 }
Darren Tucker2d6665d2011-11-04 10:54:22 +11001894 /*
1895 * ControlPersist mux listen socket setup failed, attempt the
1896 * stdio forward setup that we skipped earlier.
1897 */
1898 if (options.control_persist && muxserver_sock == -1)
1899 ssh_init_stdio_forwarding();
Damien Millere11e1ea2010-08-03 16:04:46 +10001900
Ben Lindstromf558cf62001-09-20 23:13:49 +00001901 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1902 id = ssh_session2_open();
Damien Miller649fe022013-07-18 16:13:55 +10001903 else {
1904 packet_set_interactive(
1905 options.control_master == SSHCTL_MASTER_NO,
1906 options.ip_qos_interactive, options.ip_qos_bulk);
1907 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001908
Darren Tucker8901fa92008-06-11 09:34:01 +10001909 /* If we don't expect to open a new session, then disallow it */
Damien Miller456e6f02008-11-03 19:20:10 +11001910 if (options.control_master == SSHCTL_MASTER_NO &&
1911 (datafellows & SSH_NEW_OPENSSH)) {
Darren Tucker8901fa92008-06-11 09:34:01 +10001912 debug("Requesting no-more-sessions@openssh.com");
1913 packet_start(SSH2_MSG_GLOBAL_REQUEST);
1914 packet_put_cstring("no-more-sessions@openssh.com");
1915 packet_put_char(0);
1916 packet_send();
1917 }
1918
Damien Millerd27b9472005-12-13 19:29:02 +11001919 /* Execute a local command */
1920 if (options.local_command != NULL &&
1921 options.permit_local_command)
1922 ssh_local_cmd(options.local_command);
1923
Damien Miller1f25ab42010-07-16 13:56:23 +10001924 /*
1925 * If requested and we are not interested in replies to remote
1926 * forwarding requests, then let ssh continue in the background.
1927 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001928 if (fork_after_authentication_flag) {
1929 if (options.exit_on_forward_failure &&
1930 options.num_remote_forwards > 0) {
1931 debug("deferring postauth fork until remote forward "
1932 "confirmation received");
1933 } else
1934 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001935 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001936
Darren Tuckerf1de4e52010-01-08 16:54:59 +11001937 if (options.use_roaming)
1938 request_roaming();
1939
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001940 return client_loop(tty_flag, tty_flag ?
1941 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001942}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001943
Ben Lindstrombba81212001-06-25 05:01:22 +00001944static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001945load_public_identity_files(void)
1946{
Damien Miller6b1d53c2006-03-31 23:13:21 +11001947 char *filename, *cp, thishost[NI_MAXHOST];
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001948 char *pwdir = NULL, *pwname = NULL;
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001949 int i = 0;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001950 Key *public;
Damien Miller6b1d53c2006-03-31 23:13:21 +11001951 struct passwd *pw;
Damien Miller0a80ca12010-02-27 07:55:05 +11001952 u_int n_ids;
1953 char *identity_files[SSH_MAX_IDENTITY_FILES];
1954 Key *identity_keys[SSH_MAX_IDENTITY_FILES];
Damien Miller7ea845e2010-02-12 09:21:02 +11001955#ifdef ENABLE_PKCS11
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001956 Key **keys;
Damien Miller7ea845e2010-02-12 09:21:02 +11001957 int nkeys;
Damien Miller0a80ca12010-02-27 07:55:05 +11001958#endif /* PKCS11 */
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001959
Damien Miller0a80ca12010-02-27 07:55:05 +11001960 n_ids = 0;
Damien Miller1d2c4562014-02-04 11:18:20 +11001961 memset(identity_files, 0, sizeof(identity_files));
1962 memset(identity_keys, 0, sizeof(identity_keys));
Damien Miller0a80ca12010-02-27 07:55:05 +11001963
1964#ifdef ENABLE_PKCS11
Damien Miller7ea845e2010-02-12 09:21:02 +11001965 if (options.pkcs11_provider != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001966 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
Damien Miller7ea845e2010-02-12 09:21:02 +11001967 (pkcs11_init(!options.batch_mode) == 0) &&
1968 (nkeys = pkcs11_add_provider(options.pkcs11_provider, NULL,
1969 &keys)) > 0) {
Damien Miller7ea845e2010-02-12 09:21:02 +11001970 for (i = 0; i < nkeys; i++) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001971 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
1972 key_free(keys[i]);
1973 continue;
1974 }
1975 identity_keys[n_ids] = keys[i];
1976 identity_files[n_ids] =
Damien Miller7ea845e2010-02-12 09:21:02 +11001977 xstrdup(options.pkcs11_provider); /* XXX */
Damien Miller0a80ca12010-02-27 07:55:05 +11001978 n_ids++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001979 }
Darren Tuckera627d422013-06-02 07:31:17 +10001980 free(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00001981 }
Damien Miller7ea845e2010-02-12 09:21:02 +11001982#endif /* ENABLE_PKCS11 */
Damien Miller6b1d53c2006-03-31 23:13:21 +11001983 if ((pw = getpwuid(original_real_uid)) == NULL)
1984 fatal("load_public_identity_files: getpwuid failed");
Darren Tuckere143f062007-12-02 23:21:16 +11001985 pwname = xstrdup(pw->pw_name);
1986 pwdir = xstrdup(pw->pw_dir);
Damien Miller6b1d53c2006-03-31 23:13:21 +11001987 if (gethostname(thishost, sizeof(thishost)) == -1)
1988 fatal("load_public_identity_files: gethostname: %s",
1989 strerror(errno));
Damien Miller0a80ca12010-02-27 07:55:05 +11001990 for (i = 0; i < options.num_identity_files; i++) {
Darren Tucker15fd19c2013-04-05 11:22:26 +11001991 if (n_ids >= SSH_MAX_IDENTITY_FILES ||
1992 strcasecmp(options.identity_files[i], "none") == 0) {
Darren Tuckera627d422013-06-02 07:31:17 +10001993 free(options.identity_files[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +11001994 continue;
1995 }
Damien Miller6b1d53c2006-03-31 23:13:21 +11001996 cp = tilde_expand_filename(options.identity_files[i],
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001997 original_real_uid);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001998 filename = percent_expand(cp, "d", pwdir,
1999 "u", pwname, "l", thishost, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +11002000 "r", options.user, (char *)NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10002001 free(cp);
Ben Lindstromd0fca422001-03-26 13:44:06 +00002002 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002003 debug("identity file %s type %d", filename,
2004 public ? public->type : -1);
Darren Tuckera627d422013-06-02 07:31:17 +10002005 free(options.identity_files[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +11002006 identity_files[n_ids] = filename;
2007 identity_keys[n_ids] = public;
2008
2009 if (++n_ids >= SSH_MAX_IDENTITY_FILES)
2010 continue;
2011
2012 /* Try to add the certificate variant too */
2013 xasprintf(&cp, "%s-cert", filename);
2014 public = key_load_public(cp, NULL);
2015 debug("identity file %s type %d", cp,
2016 public ? public->type : -1);
2017 if (public == NULL) {
Darren Tuckera627d422013-06-02 07:31:17 +10002018 free(cp);
Damien Miller0a80ca12010-02-27 07:55:05 +11002019 continue;
2020 }
2021 if (!key_is_cert(public)) {
2022 debug("%s: key %s type %s is not a certificate",
2023 __func__, cp, key_type(public));
2024 key_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +10002025 free(cp);
Damien Miller0a80ca12010-02-27 07:55:05 +11002026 continue;
2027 }
2028 identity_keys[n_ids] = public;
2029 /* point to the original path, most likely the private key */
2030 identity_files[n_ids] = xstrdup(filename);
2031 n_ids++;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002032 }
Damien Miller0a80ca12010-02-27 07:55:05 +11002033 options.num_identity_files = n_ids;
2034 memcpy(options.identity_files, identity_files, sizeof(identity_files));
2035 memcpy(options.identity_keys, identity_keys, sizeof(identity_keys));
2036
Damien Miller1d2c4562014-02-04 11:18:20 +11002037 explicit_bzero(pwname, strlen(pwname));
Darren Tuckera627d422013-06-02 07:31:17 +10002038 free(pwname);
Damien Miller1d2c4562014-02-04 11:18:20 +11002039 explicit_bzero(pwdir, strlen(pwdir));
Darren Tuckera627d422013-06-02 07:31:17 +10002040 free(pwdir);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002041}
Damien Miller857b02e2010-09-24 22:02:56 +10002042
2043static void
2044main_sigchld_handler(int sig)
2045{
2046 int save_errno = errno;
2047 pid_t pid;
2048 int status;
2049
2050 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
2051 (pid < 0 && errno == EINTR))
2052 ;
2053
2054 signal(sig, main_sigchld_handler);
2055 errno = save_errno;
2056}