blob: 096c5b5d74f6b70eae52ccd7881b3758b9b5e714 [file] [log] [blame]
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001/* $OpenBSD: ssh.c,v 1.433 2016/01/13 23:04:47 djm Exp $ */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10002/*
Damien Miller95def091999-11-25 00:26:21 +11003 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11006 * Ssh client program. This program can be used to log into a remote machine.
7 * The software supports strong authentication, encryption, and forwarding
8 * of X11, TCP/IP, and authentication connections.
9 *
Damien Millere4340be2000-09-16 13:29:08 +110010 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
15 *
16 * Copyright (c) 1999 Niels Provos. All rights reserved.
Darren Tucker0a118da2003-10-15 15:54:32 +100017 * Copyright (c) 2000, 2001, 2002, 2003 Markus Friedl. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110018 *
19 * Modified to work with SSL by Niels Provos <provos@citi.umich.edu>
20 * in Canada (German citizen).
21 *
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 * 1. Redistributions of source code must retain the above copyright
26 * notice, this list of conditions and the following disclaimer.
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
29 * documentation and/or other materials provided with the distribution.
30 *
31 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
32 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
33 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
34 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
35 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
36 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
37 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
38 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
39 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
40 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Damien Miller95def091999-11-25 00:26:21 +110041 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100042
43#include "includes.h"
Damien Millercd4223c2006-03-15 11:22:47 +110044
Damien Millerf17883e2006-03-15 11:45:54 +110045#include <sys/types.h>
46#ifdef HAVE_SYS_STAT_H
47# include <sys/stat.h>
48#endif
Damien Millercd4223c2006-03-15 11:22:47 +110049#include <sys/resource.h>
Damien Miller17e91c02006-03-15 11:28:34 +110050#include <sys/ioctl.h>
Damien Millere3b60b52006-07-10 21:08:03 +100051#include <sys/socket.h>
Damien Miller857b02e2010-09-24 22:02:56 +100052#include <sys/wait.h>
Damien Miller03e20032006-03-15 11:16:59 +110053
Damien Millerc7b06362006-03-15 11:53:45 +110054#include <ctype.h>
Darren Tuckerba724052006-07-12 22:24:22 +100055#include <errno.h>
Damien Miller57cf6382006-07-10 21:13:46 +100056#include <fcntl.h>
Damien Millerb8fe89c2006-07-24 14:51:00 +100057#include <netdb.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110058#ifdef HAVE_PATHS_H
Damien Miller03e20032006-03-15 11:16:59 +110059#include <paths.h>
Damien Miller6645e7a2006-03-15 14:42:54 +110060#endif
Damien Miller9f2abc42006-07-10 20:53:08 +100061#include <pwd.h>
Damien Miller6ff3cad2006-03-15 11:52:09 +110062#include <signal.h>
Damien Millerded319c2006-09-01 15:38:36 +100063#include <stdarg.h>
Damien Miller2d00e632006-07-24 13:53:19 +100064#include <stddef.h>
Damien Millera7a73ee2006-08-05 11:37:59 +100065#include <stdio.h>
Damien Millere7a1e5c2006-08-05 11:34:19 +100066#include <stdlib.h>
Damien Millere3476ed2006-07-24 14:13:33 +100067#include <string.h>
Damien Millere6b3b612006-07-24 14:01:23 +100068#include <unistd.h>
deraadt@openbsd.org087266e2015-01-20 23:14:00 +000069#include <limits.h>
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"
jmc@openbsd.org846f6fa2015-09-11 06:55:46 +0000206" [-F configfile] [-I pkcs11] [-i identity_file] [-L address]\n"
207" [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n"
208" [-Q query_option] [-R address] [-S ctl_path] [-W host:port]\n"
Damien Millerbdb352a2013-12-05 10:20:52 +1100209" [-w local_tun[:remote_tun]] [user@]hostname [command]\n"
Damien Miller50955102004-03-22 09:34:58 +1100210 );
Darren Tuckere9a9b712005-12-20 16:15:51 +1100211 exit(255);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000212}
213
Ben Lindstrombba81212001-06-25 05:01:22 +0000214static int ssh_session(void);
215static int ssh_session2(void);
216static void load_public_identity_files(void);
Damien Miller857b02e2010-09-24 22:02:56 +1000217static void main_sigchld_handler(int);
Damien Millerb1cbfa22008-05-19 16:00:08 +1000218
219/* from muxclient.c */
220void muxclient(const char *);
221void muxserver_listen(void);
Damien Miller1383bd82000-04-06 12:32:37 +1000222
Damien Miller295ee632011-05-29 21:42:31 +1000223/* ~/ expand a list of paths. NB. assumes path[n] is heap-allocated. */
224static void
225tilde_expand_paths(char **paths, u_int num_paths)
226{
227 u_int i;
228 char *cp;
229
230 for (i = 0; i < num_paths; i++) {
231 cp = tilde_expand_filename(paths[i], original_real_uid);
Darren Tuckera627d422013-06-02 07:31:17 +1000232 free(paths[i]);
Damien Miller295ee632011-05-29 21:42:31 +1000233 paths[i] = cp;
234 }
235}
236
Damien Miller13f97b22014-02-24 15:57:55 +1100237/*
238 * Attempt to resolve a host name / port to a set of addresses and
239 * optionally return any CNAMEs encountered along the way.
240 * Returns NULL on failure.
241 * NB. this function must operate with a options having undefined members.
242 */
Damien Miller0faf7472013-10-17 11:47:23 +1100243static struct addrinfo *
Damien Miller13f97b22014-02-24 15:57:55 +1100244resolve_host(const char *name, int port, int logerr, char *cname, size_t clen)
Damien Miller0faf7472013-10-17 11:47:23 +1100245{
246 char strport[NI_MAXSERV];
247 struct addrinfo hints, *res;
248 int gaierr, loglevel = SYSLOG_LEVEL_DEBUG1;
249
Damien Miller13f97b22014-02-24 15:57:55 +1100250 if (port <= 0)
251 port = default_ssh_port();
252
djm@openbsd.orgb1d38a32015-10-15 23:51:40 +0000253 snprintf(strport, sizeof strport, "%d", port);
Damien Miller1d2c4562014-02-04 11:18:20 +1100254 memset(&hints, 0, sizeof(hints));
Damien Miller13f97b22014-02-24 15:57:55 +1100255 hints.ai_family = options.address_family == -1 ?
256 AF_UNSPEC : options.address_family;
Damien Miller0faf7472013-10-17 11:47:23 +1100257 hints.ai_socktype = SOCK_STREAM;
258 if (cname != NULL)
259 hints.ai_flags = AI_CANONNAME;
260 if ((gaierr = getaddrinfo(name, strport, &hints, &res)) != 0) {
261 if (logerr || (gaierr != EAI_NONAME && gaierr != EAI_NODATA))
262 loglevel = SYSLOG_LEVEL_ERROR;
263 do_log2(loglevel, "%s: Could not resolve hostname %.100s: %s",
264 __progname, name, ssh_gai_strerror(gaierr));
265 return NULL;
266 }
267 if (cname != NULL && res->ai_canonname != NULL) {
268 if (strlcpy(cname, res->ai_canonname, clen) >= clen) {
269 error("%s: host \"%s\" cname \"%s\" too long (max %lu)",
270 __func__, name, res->ai_canonname, (u_long)clen);
271 if (clen > 0)
272 *cname = '\0';
273 }
274 }
275 return res;
276}
277
278/*
djm@openbsd.org90109022015-01-16 07:19:48 +0000279 * Attempt to resolve a numeric host address / port to a single address.
280 * Returns a canonical address string.
281 * Returns NULL on failure.
282 * NB. this function must operate with a options having undefined members.
283 */
284static struct addrinfo *
285resolve_addr(const char *name, int port, char *caddr, size_t clen)
286{
287 char addr[NI_MAXHOST], strport[NI_MAXSERV];
288 struct addrinfo hints, *res;
289 int gaierr;
290
291 if (port <= 0)
292 port = default_ssh_port();
293 snprintf(strport, sizeof strport, "%u", port);
294 memset(&hints, 0, sizeof(hints));
295 hints.ai_family = options.address_family == -1 ?
296 AF_UNSPEC : options.address_family;
297 hints.ai_socktype = SOCK_STREAM;
298 hints.ai_flags = AI_NUMERICHOST|AI_NUMERICSERV;
299 if ((gaierr = getaddrinfo(name, strport, &hints, &res)) != 0) {
300 debug2("%s: could not resolve name %.100s as address: %s",
301 __func__, name, ssh_gai_strerror(gaierr));
302 return NULL;
303 }
304 if (res == NULL) {
305 debug("%s: getaddrinfo %.100s returned no addresses",
306 __func__, name);
307 return NULL;
308 }
309 if (res->ai_next != NULL) {
310 debug("%s: getaddrinfo %.100s returned multiple addresses",
311 __func__, name);
312 goto fail;
313 }
314 if ((gaierr = getnameinfo(res->ai_addr, res->ai_addrlen,
315 addr, sizeof(addr), NULL, 0, NI_NUMERICHOST)) != 0) {
316 debug("%s: Could not format address for name %.100s: %s",
317 __func__, name, ssh_gai_strerror(gaierr));
318 goto fail;
319 }
320 if (strlcpy(caddr, addr, clen) >= clen) {
321 error("%s: host \"%s\" addr \"%s\" too long (max %lu)",
322 __func__, name, addr, (u_long)clen);
323 if (clen > 0)
324 *caddr = '\0';
325 fail:
326 freeaddrinfo(res);
327 return NULL;
328 }
329 return res;
330}
331
332/*
Damien Miller0faf7472013-10-17 11:47:23 +1100333 * Check whether the cname is a permitted replacement for the hostname
334 * and perform the replacement if it is.
Damien Miller13f97b22014-02-24 15:57:55 +1100335 * NB. this function must operate with a options having undefined members.
Damien Miller0faf7472013-10-17 11:47:23 +1100336 */
337static int
338check_follow_cname(char **namep, const char *cname)
339{
340 int i;
341 struct allowed_cname *rule;
342
343 if (*cname == '\0' || options.num_permitted_cnames == 0 ||
344 strcmp(*namep, cname) == 0)
345 return 0;
Damien Miller38505592013-10-17 11:48:13 +1100346 if (options.canonicalize_hostname == SSH_CANONICALISE_NO)
Damien Miller0faf7472013-10-17 11:47:23 +1100347 return 0;
348 /*
Damien Miller38505592013-10-17 11:48:13 +1100349 * Don't attempt to canonicalize names that will be interpreted by
Damien Miller0faf7472013-10-17 11:47:23 +1100350 * a proxy unless the user specifically requests so.
351 */
Damien Miller13f97b22014-02-24 15:57:55 +1100352 if (!option_clear_or_none(options.proxy_command) &&
Damien Miller38505592013-10-17 11:48:13 +1100353 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS)
Damien Miller0faf7472013-10-17 11:47:23 +1100354 return 0;
355 debug3("%s: check \"%s\" CNAME \"%s\"", __func__, *namep, cname);
356 for (i = 0; i < options.num_permitted_cnames; i++) {
357 rule = options.permitted_cnames + i;
djm@openbsd.orge661a862015-05-04 06:10:48 +0000358 if (match_pattern_list(*namep, rule->source_list, 1) != 1 ||
359 match_pattern_list(cname, rule->target_list, 1) != 1)
Damien Miller0faf7472013-10-17 11:47:23 +1100360 continue;
Damien Miller38505592013-10-17 11:48:13 +1100361 verbose("Canonicalized DNS aliased hostname "
Damien Miller0faf7472013-10-17 11:47:23 +1100362 "\"%s\" => \"%s\"", *namep, cname);
363 free(*namep);
364 *namep = xstrdup(cname);
365 return 1;
366 }
367 return 0;
368}
369
370/*
371 * Attempt to resolve the supplied hostname after applying the user's
Damien Miller51682fa2013-10-17 11:48:31 +1100372 * canonicalization rules. Returns the address list for the host or NULL
373 * if no name was found after canonicalization.
Damien Miller13f97b22014-02-24 15:57:55 +1100374 * NB. this function must operate with a options having undefined members.
Damien Miller0faf7472013-10-17 11:47:23 +1100375 */
376static struct addrinfo *
Damien Miller13f97b22014-02-24 15:57:55 +1100377resolve_canonicalize(char **hostp, int port)
Damien Miller0faf7472013-10-17 11:47:23 +1100378{
379 int i, ndots;
djm@openbsd.org90109022015-01-16 07:19:48 +0000380 char *cp, *fullhost, newname[NI_MAXHOST];
Damien Miller0faf7472013-10-17 11:47:23 +1100381 struct addrinfo *addrs;
382
Damien Miller38505592013-10-17 11:48:13 +1100383 if (options.canonicalize_hostname == SSH_CANONICALISE_NO)
Damien Miller0faf7472013-10-17 11:47:23 +1100384 return NULL;
Damien Miller13f97b22014-02-24 15:57:55 +1100385
Damien Miller0faf7472013-10-17 11:47:23 +1100386 /*
Damien Miller38505592013-10-17 11:48:13 +1100387 * Don't attempt to canonicalize names that will be interpreted by
Damien Miller0faf7472013-10-17 11:47:23 +1100388 * a proxy unless the user specifically requests so.
389 */
Damien Miller13f97b22014-02-24 15:57:55 +1100390 if (!option_clear_or_none(options.proxy_command) &&
Damien Miller38505592013-10-17 11:48:13 +1100391 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS)
Damien Miller0faf7472013-10-17 11:47:23 +1100392 return NULL;
Damien Miller13f97b22014-02-24 15:57:55 +1100393
djm@openbsd.org90109022015-01-16 07:19:48 +0000394 /* Try numeric hostnames first */
395 if ((addrs = resolve_addr(*hostp, port,
396 newname, sizeof(newname))) != NULL) {
397 debug2("%s: hostname %.100s is address", __func__, *hostp);
398 if (strcasecmp(*hostp, newname) != 0) {
399 debug2("%s: canonicalised address \"%s\" => \"%s\"",
400 __func__, *hostp, newname);
401 free(*hostp);
402 *hostp = xstrdup(newname);
403 }
404 return addrs;
405 }
406
djm@openbsd.org5ee00632015-10-16 18:40:49 +0000407 /* If domain name is anchored, then resolve it now */
408 if ((*hostp)[strlen(*hostp) - 1] == '.') {
409 debug3("%s: name is fully qualified", __func__);
410 fullhost = xstrdup(*hostp);
411 if ((addrs = resolve_host(fullhost, port, 0,
412 newname, sizeof(newname))) != NULL)
413 goto found;
414 free(fullhost);
415 goto notfound;
416 }
417
Damien Miller51682fa2013-10-17 11:48:31 +1100418 /* Don't apply canonicalization to sufficiently-qualified hostnames */
Damien Miller0faf7472013-10-17 11:47:23 +1100419 ndots = 0;
420 for (cp = *hostp; *cp != '\0'; cp++) {
421 if (*cp == '.')
422 ndots++;
423 }
Damien Miller38505592013-10-17 11:48:13 +1100424 if (ndots > options.canonicalize_max_dots) {
425 debug3("%s: not canonicalizing hostname \"%s\" (max dots %d)",
426 __func__, *hostp, options.canonicalize_max_dots);
Damien Miller0faf7472013-10-17 11:47:23 +1100427 return NULL;
428 }
429 /* Attempt each supplied suffix */
430 for (i = 0; i < options.num_canonical_domains; i++) {
djm@openbsd.org90109022015-01-16 07:19:48 +0000431 *newname = '\0';
Damien Miller0faf7472013-10-17 11:47:23 +1100432 xasprintf(&fullhost, "%s.%s.", *hostp,
433 options.canonical_domains[i]);
Damien Miller13f97b22014-02-24 15:57:55 +1100434 debug3("%s: attempting \"%s\" => \"%s\"", __func__,
435 *hostp, fullhost);
436 if ((addrs = resolve_host(fullhost, port, 0,
djm@openbsd.org90109022015-01-16 07:19:48 +0000437 newname, sizeof(newname))) == NULL) {
Damien Miller0faf7472013-10-17 11:47:23 +1100438 free(fullhost);
439 continue;
440 }
djm@openbsd.org5ee00632015-10-16 18:40:49 +0000441 found:
Damien Miller0faf7472013-10-17 11:47:23 +1100442 /* Remove trailing '.' */
443 fullhost[strlen(fullhost) - 1] = '\0';
444 /* Follow CNAME if requested */
djm@openbsd.org90109022015-01-16 07:19:48 +0000445 if (!check_follow_cname(&fullhost, newname)) {
Damien Miller38505592013-10-17 11:48:13 +1100446 debug("Canonicalized hostname \"%s\" => \"%s\"",
Damien Miller0faf7472013-10-17 11:47:23 +1100447 *hostp, fullhost);
448 }
449 free(*hostp);
450 *hostp = fullhost;
451 return addrs;
452 }
djm@openbsd.org5ee00632015-10-16 18:40:49 +0000453 notfound:
Damien Miller38505592013-10-17 11:48:13 +1100454 if (!options.canonicalize_fallback_local)
Damien Miller13f97b22014-02-24 15:57:55 +1100455 fatal("%s: Could not resolve host \"%s\"", __progname, *hostp);
456 debug2("%s: host %s not found in any suffix", __func__, *hostp);
Damien Miller0faf7472013-10-17 11:47:23 +1100457 return NULL;
458}
459
Damien Miller95def091999-11-25 00:26:21 +1100460/*
Damien Miller13f97b22014-02-24 15:57:55 +1100461 * Read per-user configuration file. Ignore the system wide config
462 * file if the user specifies a config file on the command line.
463 */
464static void
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000465process_config_files(const char *host_arg, struct passwd *pw, int post_canon)
Damien Miller13f97b22014-02-24 15:57:55 +1100466{
deraadt@openbsd.org087266e2015-01-20 23:14:00 +0000467 char buf[PATH_MAX];
Damien Miller13f97b22014-02-24 15:57:55 +1100468 int r;
469
470 if (config != NULL) {
471 if (strcasecmp(config, "none") != 0 &&
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000472 !read_config_file(config, pw, host, host_arg, &options,
473 SSHCONF_USERCONF | (post_canon ? SSHCONF_POSTCANON : 0)))
Damien Miller13f97b22014-02-24 15:57:55 +1100474 fatal("Can't open user config file %.100s: "
475 "%.100s", config, strerror(errno));
476 } else {
477 r = snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir,
478 _PATH_SSH_USER_CONFFILE);
479 if (r > 0 && (size_t)r < sizeof(buf))
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000480 (void)read_config_file(buf, pw, host, host_arg,
481 &options, SSHCONF_CHECKPERM | SSHCONF_USERCONF |
482 (post_canon ? SSHCONF_POSTCANON : 0));
Damien Miller13f97b22014-02-24 15:57:55 +1100483
484 /* Read systemwide configuration file after user config. */
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000485 (void)read_config_file(_PATH_HOST_CONFIG_FILE, pw,
486 host, host_arg, &options,
487 post_canon ? SSHCONF_POSTCANON : 0);
488 }
489}
490
491/* Rewrite the port number in an addrinfo list of addresses */
492static void
493set_addrinfo_port(struct addrinfo *addrs, int port)
494{
495 struct addrinfo *addr;
496
497 for (addr = addrs; addr != NULL; addr = addr->ai_next) {
498 switch (addr->ai_family) {
499 case AF_INET:
500 ((struct sockaddr_in *)addr->ai_addr)->
501 sin_port = htons(port);
502 break;
503 case AF_INET6:
504 ((struct sockaddr_in6 *)addr->ai_addr)->
505 sin6_port = htons(port);
506 break;
507 }
Damien Miller13f97b22014-02-24 15:57:55 +1100508 }
509}
510
511/*
Damien Miller95def091999-11-25 00:26:21 +1100512 * Main program for the ssh client.
513 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000514int
515main(int ac, char **av)
516{
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000517 int i, r, opt, exit_status, use_syslog, config_test = 0;
deraadt@openbsd.org087266e2015-01-20 23:14:00 +0000518 char *p, *cp, *line, *argv0, buf[PATH_MAX], *host_arg, *logfile;
Damien Millerdfc85fa2011-05-15 08:44:02 +1000519 char thishost[NI_MAXHOST], shorthost[NI_MAXHOST], portstr[NI_MAXSERV];
djm@openbsd.org674b3b62015-09-11 03:47:28 +0000520 char cname[NI_MAXHOST], uidstr[32], *conn_hash_hex;
Damien Miller95def091999-11-25 00:26:21 +1100521 struct stat st;
Ben Lindstrom086cf212001-03-05 05:56:40 +0000522 struct passwd *pw;
Damien Miller194fd902013-10-15 12:13:05 +1100523 int timeout_ms;
Ben Lindstrom5ccf63a2001-09-24 20:00:10 +0000524 extern int optind, optreset;
Damien Miller4f8e6692001-07-14 13:22:53 +1000525 extern char *optarg;
Damien Miller7acefbb2014-07-18 14:11:24 +1000526 struct Forward fwd;
Damien Miller0faf7472013-10-17 11:47:23 +1100527 struct addrinfo *addrs = NULL;
Damien Miller9c386432014-07-03 21:27:46 +1000528 struct ssh_digest_ctx *md;
529 u_char conn_hash[SSH_DIGEST_MAX_LENGTH];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000530
Darren Tuckerce321d82005-10-03 18:11:24 +1000531 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
532 sanitise_stdfd();
533
Damien Miller59d3d5b2003-08-22 09:34:41 +1000534 __progname = ssh_get_progname(av[0]);
Damien Millerf9b625c2000-07-09 22:42:32 +1000535
Damien Millerea2c1a42011-06-03 12:10:22 +1000536#ifndef HAVE_SETPROCTITLE
537 /* Prepare for later setproctitle emulation */
538 /* Save argv so it isn't clobbered by setproctitle() emulation */
539 saved_av = xcalloc(ac + 1, sizeof(*saved_av));
540 for (i = 0; i < ac; i++)
541 saved_av[i] = xstrdup(av[i]);
542 saved_av[i] = NULL;
543 compat_init_setproctitle(ac, av);
544 av = saved_av;
545#endif
546
Damien Miller5428f641999-11-25 11:54:57 +1100547 /*
Damien Miller00d9ae22010-08-17 01:59:31 +1000548 * Discard other fds that are hanging around. These can cause problem
549 * with backgrounded ssh processes started by ControlPersist.
550 */
551 closefrom(STDERR_FILENO + 1);
552
553 /*
Damien Miller5428f641999-11-25 11:54:57 +1100554 * Save the original real uid. It will be needed later (uid-swapping
555 * may clobber the real uid).
556 */
Damien Miller95def091999-11-25 00:26:21 +1100557 original_real_uid = getuid();
558 original_effective_uid = geteuid();
Damien Millera8e06ce2003-11-21 23:48:55 +1100559
Damien Miller50b9a602002-09-04 16:50:06 +1000560 /*
561 * Use uid-swapping to give up root privileges for the duration of
562 * option processing. We will re-instantiate the rights when we are
563 * ready to create the privileged port, and will permanently drop
564 * them when the port has been created (actually, when the connection
565 * has been made, as we may need to create the port several times).
566 */
567 PRIV_END;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000568
Damien Miller05dd7952000-10-01 00:42:48 +1100569#ifdef HAVE_SETRLIMIT
Damien Miller95def091999-11-25 00:26:21 +1100570 /* If we are installed setuid root be careful to not drop core. */
571 if (original_real_uid != original_effective_uid) {
572 struct rlimit rlim;
573 rlim.rlim_cur = rlim.rlim_max = 0;
574 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
575 fatal("setrlimit failed: %.100s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000576 }
Damien Millerbac2d8a2000-09-05 16:13:06 +1100577#endif
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000578 /* Get user data. */
579 pw = getpwuid(original_real_uid);
580 if (!pw) {
Damien Miller3009d3c2013-07-20 13:22:31 +1000581 logit("No user exists for uid %lu", (u_long)original_real_uid);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100582 exit(255);
Ben Lindstrom3fcf1a22001-04-08 18:26:59 +0000583 }
584 /* Take a copy of the returned structure. */
585 pw = pwcopy(pw);
586
Damien Miller5428f641999-11-25 11:54:57 +1100587 /*
Damien Miller5428f641999-11-25 11:54:57 +1100588 * Set our umask to something reasonable, as some files are created
589 * with the default umask. This will make them world-readable but
590 * writable only by the owner, which is ok for all files for which we
591 * don't set the modes explicitly.
592 */
Damien Miller95def091999-11-25 00:26:21 +1100593 umask(022);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000594
Darren Tuckerd6173c02008-06-13 04:52:53 +1000595 /*
596 * Initialize option structure to indicate that no values have been
597 * set.
598 */
Damien Miller95def091999-11-25 00:26:21 +1100599 initialize_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000600
Damien Miller95def091999-11-25 00:26:21 +1100601 /* Parse command-line arguments. */
602 host = NULL;
Damien Millere272a5b2008-11-03 19:22:37 +1100603 use_syslog = 0;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000604 logfile = NULL;
Darren Tucker72efd742009-06-21 17:48:00 +1000605 argv0 = av[0];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000606
Damien Miller2ecb6bd2006-03-15 12:03:53 +1100607 again:
Darren Tuckerd6173c02008-06-13 04:52:53 +1000608 while ((opt = getopt(ac, av, "1246ab:c:e:fgi:kl:m:no:p:qstvx"
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000609 "ACD:E:F:GI:KL:MNO:PQ:R:S:TVw:W:XYy")) != -1) {
Damien Miller95def091999-11-25 00:26:21 +1100610 switch (opt) {
Ben Lindstrom1e7d3062001-02-09 02:36:43 +0000611 case '1':
612 options.protocol = SSH_PROTO_1;
613 break;
Damien Miller4af51302000-04-16 11:18:38 +1000614 case '2':
615 options.protocol = SSH_PROTO_2;
616 break;
Damien Miller34132e52000-01-14 15:45:46 +1100617 case '4':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000618 options.address_family = AF_INET;
Damien Miller34132e52000-01-14 15:45:46 +1100619 break;
Damien Miller34132e52000-01-14 15:45:46 +1100620 case '6':
Darren Tucker0a4f04b2003-07-03 20:37:47 +1000621 options.address_family = AF_INET6;
Damien Miller34132e52000-01-14 15:45:46 +1100622 break;
Damien Miller95def091999-11-25 00:26:21 +1100623 case 'n':
624 stdin_null_flag = 1;
625 break;
Damien Miller95def091999-11-25 00:26:21 +1100626 case 'f':
627 fork_after_authentication_flag = 1;
628 stdin_null_flag = 1;
629 break;
Damien Miller95def091999-11-25 00:26:21 +1100630 case 'x':
631 options.forward_x11 = 0;
632 break;
Damien Miller95def091999-11-25 00:26:21 +1100633 case 'X':
634 options.forward_x11 = 1;
635 break;
Damien Millere272a5b2008-11-03 19:22:37 +1100636 case 'y':
637 use_syslog = 1;
638 break;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000639 case 'E':
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000640 logfile = optarg;
Damien Miller03d4d7e2013-04-23 15:21:06 +1000641 break;
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000642 case 'G':
643 config_test = 1;
644 break;
Darren Tucker0a118da2003-10-15 15:54:32 +1000645 case 'Y':
646 options.forward_x11 = 1;
647 options.forward_x11_trusted = 1;
648 break;
Damien Miller95def091999-11-25 00:26:21 +1100649 case 'g':
Damien Miller7acefbb2014-07-18 14:11:24 +1000650 options.fwd_opts.gateway_ports = 1;
Damien Miller95def091999-11-25 00:26:21 +1100651 break;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100652 case 'O':
Damien Millere1537f92010-01-26 13:26:22 +1100653 if (stdio_forward_host != NULL)
654 fatal("Cannot specify multiplexing "
655 "command with -W");
656 else if (muxclient_command != 0)
657 fatal("Multiplexing command already specified");
Darren Tucker7ebfc102004-11-07 20:06:19 +1100658 if (strcmp(optarg, "check") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000659 muxclient_command = SSHMUX_COMMAND_ALIVE_CHECK;
Damien Miller388f6fc2010-05-21 14:57:35 +1000660 else if (strcmp(optarg, "forward") == 0)
661 muxclient_command = SSHMUX_COMMAND_FORWARD;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100662 else if (strcmp(optarg, "exit") == 0)
Damien Millerb1cbfa22008-05-19 16:00:08 +1000663 muxclient_command = SSHMUX_COMMAND_TERMINATE;
Damien Miller6c3eec72011-05-05 14:16:22 +1000664 else if (strcmp(optarg, "stop") == 0)
665 muxclient_command = SSHMUX_COMMAND_STOP;
Damien Millerf6dff7c2011-09-22 21:38:52 +1000666 else if (strcmp(optarg, "cancel") == 0)
667 muxclient_command = SSHMUX_COMMAND_CANCEL_FWD;
Darren Tucker7ebfc102004-11-07 20:06:19 +1100668 else
669 fatal("Invalid multiplex command.");
670 break;
Damien Miller147bba32002-09-04 16:46:06 +1000671 case 'P': /* deprecated */
Damien Miller95def091999-11-25 00:26:21 +1100672 options.use_privileged_port = 0;
673 break;
Damien Millerd937dc02013-12-05 10:19:54 +1100674 case 'Q':
Damien Millerea111192013-04-23 19:24:32 +1000675 cp = NULL;
Damien Millerd937dc02013-12-05 10:19:54 +1100676 if (strcmp(optarg, "cipher") == 0)
Damien Miller0fde8ac2013-11-21 14:12:23 +1100677 cp = cipher_alg_list('\n', 0);
Damien Millerd937dc02013-12-05 10:19:54 +1100678 else if (strcmp(optarg, "cipher-auth") == 0)
Damien Miller0fde8ac2013-11-21 14:12:23 +1100679 cp = cipher_alg_list('\n', 1);
Damien Millerd937dc02013-12-05 10:19:54 +1100680 else if (strcmp(optarg, "mac") == 0)
Damien Miller690d9892013-11-08 12:16:49 +1100681 cp = mac_alg_list('\n');
Damien Millerd937dc02013-12-05 10:19:54 +1100682 else if (strcmp(optarg, "kex") == 0)
Damien Miller690d9892013-11-08 12:16:49 +1100683 cp = kex_alg_list('\n');
Damien Millerd937dc02013-12-05 10:19:54 +1100684 else if (strcmp(optarg, "key") == 0)
Damien Miller5be9d9e2013-12-07 11:24:01 +1100685 cp = key_alg_list(0, 0);
686 else if (strcmp(optarg, "key-cert") == 0)
687 cp = key_alg_list(1, 0);
688 else if (strcmp(optarg, "key-plain") == 0)
689 cp = key_alg_list(0, 1);
djm@openbsd.org68d2dfc2015-03-03 06:48:58 +0000690 else if (strcmp(optarg, "protocol-version") == 0) {
691#ifdef WITH_SSH1
692 cp = xstrdup("1\n2");
693#else
694 cp = xstrdup("2");
695#endif
696 }
Damien Millerea111192013-04-23 19:24:32 +1000697 if (cp == NULL)
698 fatal("Unsupported query \"%s\"", optarg);
699 printf("%s\n", cp);
700 free(cp);
701 exit(0);
702 break;
Damien Miller95def091999-11-25 00:26:21 +1100703 case 'a':
704 options.forward_agent = 0;
705 break;
Damien Millerb1715dc2000-05-30 13:44:51 +1000706 case 'A':
707 options.forward_agent = 1;
708 break;
Damien Miller95def091999-11-25 00:26:21 +1100709 case 'k':
Damien Millere0113cc2003-11-24 13:10:09 +1100710 options.gss_deleg_creds = 0;
Damien Miller95def091999-11-25 00:26:21 +1100711 break;
Darren Tucker415bddc2007-06-12 23:43:16 +1000712 case 'K':
713 options.gss_authentication = 1;
714 options.gss_deleg_creds = 1;
715 break;
Damien Miller95def091999-11-25 00:26:21 +1100716 case 'i':
dtucker@openbsd.org03239c12015-10-25 23:42:00 +0000717 p = tilde_expand_filename(optarg, original_real_uid);
718 if (stat(p, &st) < 0)
Damien Millerf4614452001-07-14 12:18:10 +1000719 fprintf(stderr, "Warning: Identity file %s "
dtucker@openbsd.org03239c12015-10-25 23:42:00 +0000720 "not accessible: %s.\n", p,
Damien Miller3eb48b62005-03-01 21:15:46 +1100721 strerror(errno));
dtucker@openbsd.org03239c12015-10-25 23:42:00 +0000722 else
723 add_identity_file(&options, NULL, p, 1);
724 free(p);
Damien Miller95def091999-11-25 00:26:21 +1100725 break;
Ben Lindstromc5b68002001-07-04 04:52:03 +0000726 case 'I':
Damien Miller7ea845e2010-02-12 09:21:02 +1100727#ifdef ENABLE_PKCS11
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000728 free(options.pkcs11_provider);
Damien Miller7ea845e2010-02-12 09:21:02 +1100729 options.pkcs11_provider = xstrdup(optarg);
Ben Lindstrombcc18082001-08-06 21:59:25 +0000730#else
Damien Miller7ea845e2010-02-12 09:21:02 +1100731 fprintf(stderr, "no support for PKCS#11.\n");
Ben Lindstrombcc18082001-08-06 21:59:25 +0000732#endif
Ben Lindstromc5b68002001-07-04 04:52:03 +0000733 break;
Damien Miller95def091999-11-25 00:26:21 +1100734 case 't':
Damien Miller21771e22011-05-15 08:45:50 +1000735 if (options.request_tty == REQUEST_TTY_YES)
736 options.request_tty = REQUEST_TTY_FORCE;
737 else
738 options.request_tty = REQUEST_TTY_YES;
Damien Miller95def091999-11-25 00:26:21 +1100739 break;
Damien Miller95def091999-11-25 00:26:21 +1100740 case 'v':
Darren Tuckere98dfa32003-07-19 19:54:31 +1000741 if (debug_flag == 0) {
Damien Millere4340be2000-09-16 13:29:08 +1100742 debug_flag = 1;
743 options.log_level = SYSLOG_LEVEL_DEBUG1;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000744 } else {
745 if (options.log_level < SYSLOG_LEVEL_DEBUG3)
746 options.log_level++;
Darren Tuckere98dfa32003-07-19 19:54:31 +1000747 }
Damien Miller03d4d7e2013-04-23 15:21:06 +1000748 break;
Damien Miller95def091999-11-25 00:26:21 +1100749 case 'V':
Damien Miller0c889cd2004-03-22 09:36:00 +1100750 fprintf(stderr, "%s, %s\n",
Damien Miller1f0311c2014-05-15 14:24:09 +1000751 SSH_RELEASE,
752#ifdef WITH_OPENSSL
753 SSLeay_version(SSLEAY_VERSION)
754#else
755 "without OpenSSL"
756#endif
757 );
Damien Miller95def091999-11-25 00:26:21 +1100758 if (opt == 'V')
759 exit(0);
Damien Miller95def091999-11-25 00:26:21 +1100760 break;
Damien Millerd27b9472005-12-13 19:29:02 +1100761 case 'w':
Damien Miller7b58e802005-12-13 19:33:19 +1100762 if (options.tun_open == -1)
763 options.tun_open = SSH_TUNMODE_DEFAULT;
Damien Millerd27b9472005-12-13 19:29:02 +1100764 options.tun_local = a2tun(optarg, &options.tun_remote);
Damien Miller7b58e802005-12-13 19:33:19 +1100765 if (options.tun_local == SSH_TUNID_ERR) {
Darren Tuckerd6173c02008-06-13 04:52:53 +1000766 fprintf(stderr,
767 "Bad tun device '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100768 exit(255);
Damien Millerd27b9472005-12-13 19:29:02 +1100769 }
770 break;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100771 case 'W':
Damien Millere1537f92010-01-26 13:26:22 +1100772 if (stdio_forward_host != NULL)
773 fatal("stdio forward already specified");
774 if (muxclient_command != 0)
775 fatal("Cannot specify stdio forward with -O");
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100776 if (parse_forward(&fwd, optarg, 1, 0)) {
777 stdio_forward_host = fwd.listen_host;
778 stdio_forward_port = fwd.listen_port;
Darren Tuckera627d422013-06-02 07:31:17 +1000779 free(fwd.connect_host);
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100780 } else {
781 fprintf(stderr,
782 "Bad stdio forwarding specification '%s'\n",
783 optarg);
784 exit(255);
785 }
Damien Miller21771e22011-05-15 08:45:50 +1000786 options.request_tty = REQUEST_TTY_NO;
Darren Tucker7ad8dd22010-01-12 19:40:27 +1100787 no_shell_flag = 1;
788 options.clear_forwardings = 1;
789 options.exit_on_forward_failure = 1;
790 break;
Damien Miller95def091999-11-25 00:26:21 +1100791 case 'q':
792 options.log_level = SYSLOG_LEVEL_QUIET;
793 break;
Damien Miller95def091999-11-25 00:26:21 +1100794 case 'e':
795 if (optarg[0] == '^' && optarg[2] == 0 &&
Damien Millerf4614452001-07-14 12:18:10 +1000796 (u_char) optarg[1] >= 64 &&
797 (u_char) optarg[1] < 128)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000798 options.escape_char = (u_char) optarg[1] & 31;
Damien Miller95def091999-11-25 00:26:21 +1100799 else if (strlen(optarg) == 1)
Ben Lindstrom46c16222000-12-22 01:43:59 +0000800 options.escape_char = (u_char) optarg[0];
Damien Miller95def091999-11-25 00:26:21 +1100801 else if (strcmp(optarg, "none") == 0)
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +0000802 options.escape_char = SSH_ESCAPECHAR_NONE;
Damien Miller95def091999-11-25 00:26:21 +1100803 else {
Damien Millerf4614452001-07-14 12:18:10 +1000804 fprintf(stderr, "Bad escape character '%s'.\n",
805 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100806 exit(255);
Damien Miller95def091999-11-25 00:26:21 +1100807 }
808 break;
Damien Miller95def091999-11-25 00:26:21 +1100809 case 'c':
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000810 if (ciphers_valid(*optarg == '+' ?
811 optarg + 1 : optarg)) {
Damien Millereba71ba2000-04-29 23:57:08 +1000812 /* SSH2 only */
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000813 free(options.ciphers);
Damien Millereba71ba2000-04-29 23:57:08 +1000814 options.ciphers = xstrdup(optarg);
Darren Tucker5cb30ad2004-08-12 22:40:24 +1000815 options.cipher = SSH_CIPHER_INVALID;
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000816 break;
Damien Miller95def091999-11-25 00:26:21 +1100817 }
djm@openbsd.orgf9eca242015-07-30 00:01:34 +0000818 /* SSH1 only */
819 options.cipher = cipher_number(optarg);
820 if (options.cipher == -1) {
821 fprintf(stderr, "Unknown cipher type '%s'\n",
822 optarg);
823 exit(255);
824 }
825 if (options.cipher == SSH_CIPHER_3DES)
826 options.ciphers = xstrdup("3des-cbc");
827 else if (options.cipher == SSH_CIPHER_BLOWFISH)
828 options.ciphers = xstrdup("blowfish-cbc");
829 else
830 options.ciphers = xstrdup(KEX_CLIENT_ENCRYPT);
Damien Miller95def091999-11-25 00:26:21 +1100831 break;
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000832 case 'm':
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000833 if (mac_valid(optarg)) {
834 free(options.macs);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000835 options.macs = xstrdup(optarg);
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000836 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000837 fprintf(stderr, "Unknown mac type '%s'\n",
838 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100839 exit(255);
Ben Lindstrom06b33aa2001-02-15 03:01:59 +0000840 }
841 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000842 case 'M':
Damien Millerd14b1e72005-06-16 13:19:41 +1000843 if (options.control_master == SSHCTL_MASTER_YES)
844 options.control_master = SSHCTL_MASTER_ASK;
845 else
846 options.control_master = SSHCTL_MASTER_YES;
Damien Miller0e220db2004-06-15 10:34:08 +1000847 break;
Damien Miller95def091999-11-25 00:26:21 +1100848 case 'p':
Ben Lindstrom19066a12001-04-12 23:39:26 +0000849 options.port = a2port(optarg);
Damien Miller3dc71ad2009-01-28 16:31:22 +1100850 if (options.port <= 0) {
Ben Lindstrom146edb92001-04-11 23:06:28 +0000851 fprintf(stderr, "Bad port '%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100852 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000853 }
Damien Miller95def091999-11-25 00:26:21 +1100854 break;
Damien Miller95def091999-11-25 00:26:21 +1100855 case 'l':
856 options.user = optarg;
857 break;
Ben Lindstrom1a174712001-09-12 17:56:15 +0000858
Damien Miller95def091999-11-25 00:26:21 +1100859 case 'L':
Damien Miller4bf648f2009-02-14 16:28:21 +1100860 if (parse_forward(&fwd, optarg, 0, 0))
Damien Millerf91ee4c2005-03-01 21:24:33 +1100861 add_local_forward(&options, &fwd);
862 else {
Damien Millerf4614452001-07-14 12:18:10 +1000863 fprintf(stderr,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100864 "Bad local forwarding specification '%s'\n",
Damien Millerf4614452001-07-14 12:18:10 +1000865 optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100866 exit(255);
Ben Lindstrom1a174712001-09-12 17:56:15 +0000867 }
Damien Millerf91ee4c2005-03-01 21:24:33 +1100868 break;
869
870 case 'R':
Damien Miller4bf648f2009-02-14 16:28:21 +1100871 if (parse_forward(&fwd, optarg, 0, 1)) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100872 add_remote_forward(&options, &fwd);
873 } else {
874 fprintf(stderr,
875 "Bad remote forwarding specification "
876 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100877 exit(255);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100878 }
Damien Miller95def091999-11-25 00:26:21 +1100879 break;
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000880
881 case 'D':
Damien Miller4bf648f2009-02-14 16:28:21 +1100882 if (parse_forward(&fwd, optarg, 1, 0)) {
Damien Millera699d952008-11-03 19:27:34 +1100883 add_local_forward(&options, &fwd);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100884 } else {
Damien Millera699d952008-11-03 19:27:34 +1100885 fprintf(stderr,
886 "Bad dynamic forwarding specification "
887 "'%s'\n", optarg);
Darren Tuckere9a9b712005-12-20 16:15:51 +1100888 exit(255);
Ben Lindstrom146edb92001-04-11 23:06:28 +0000889 }
Ben Lindstrom3bb4f9d2001-04-08 18:30:26 +0000890 break;
891
Damien Miller95def091999-11-25 00:26:21 +1100892 case 'C':
893 options.compression = 1;
894 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000895 case 'N':
896 no_shell_flag = 1;
Damien Miller21771e22011-05-15 08:45:50 +1000897 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000898 break;
Damien Miller1383bd82000-04-06 12:32:37 +1000899 case 'T':
Damien Miller21771e22011-05-15 08:45:50 +1000900 options.request_tty = REQUEST_TTY_NO;
Damien Miller1383bd82000-04-06 12:32:37 +1000901 break;
Damien Miller95def091999-11-25 00:26:21 +1100902 case 'o':
Damien Miller9836cf82003-12-17 16:30:06 +1100903 line = xstrdup(optarg);
djm@openbsd.org957fbce2014-10-08 22:20:25 +0000904 if (process_config_line(&options, pw,
905 host ? host : "", host ? host : "", line,
906 "command-line", 0, NULL, SSHCONF_USERCONF) != 0)
Darren Tuckere9a9b712005-12-20 16:15:51 +1100907 exit(255);
Darren Tuckera627d422013-06-02 07:31:17 +1000908 free(line);
Damien Miller95def091999-11-25 00:26:21 +1100909 break;
Damien Miller832562e2001-01-30 09:30:01 +1100910 case 's':
911 subsystem_flag = 1;
912 break;
Damien Miller0e220db2004-06-15 10:34:08 +1000913 case 'S':
mmcc@openbsd.orgd59ce082015-12-10 17:08:40 +0000914 free(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +1000915 options.control_path = xstrdup(optarg);
Damien Miller0e220db2004-06-15 10:34:08 +1000916 break;
Ben Lindstrome0f88042001-04-30 13:06:24 +0000917 case 'b':
918 options.bind_address = optarg;
919 break;
Ben Lindstrom14f31ab2001-09-12 17:48:04 +0000920 case 'F':
921 config = optarg;
922 break;
Damien Miller95def091999-11-25 00:26:21 +1100923 default:
924 usage();
925 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000926 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000927
Damien Millerf4614452001-07-14 12:18:10 +1000928 ac -= optind;
929 av += optind;
930
Darren Tuckerb8c884a2010-01-08 18:53:43 +1100931 if (ac > 0 && !host) {
Ben Lindstromc276c122002-12-23 02:14:51 +0000932 if (strrchr(*av, '@')) {
Damien Millerf4614452001-07-14 12:18:10 +1000933 p = xstrdup(*av);
Ben Lindstromc276c122002-12-23 02:14:51 +0000934 cp = strrchr(p, '@');
Damien Millerf4614452001-07-14 12:18:10 +1000935 if (cp == NULL || cp == p)
936 usage();
937 options.user = p;
938 *cp = '\0';
Damien Miller0faf7472013-10-17 11:47:23 +1100939 host = xstrdup(++cp);
Damien Millerf4614452001-07-14 12:18:10 +1000940 } else
Damien Miller0faf7472013-10-17 11:47:23 +1100941 host = xstrdup(*av);
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000942 if (ac > 1) {
943 optind = optreset = 1;
Damien Millerf4614452001-07-14 12:18:10 +1000944 goto again;
945 }
Ben Lindstromb9fa6912002-12-23 02:24:54 +0000946 ac--, av++;
Damien Millerf4614452001-07-14 12:18:10 +1000947 }
948
Damien Miller95def091999-11-25 00:26:21 +1100949 /* Check that we got a host name. */
950 if (!host)
951 usage();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000952
Damien Miller0faf7472013-10-17 11:47:23 +1100953 host_arg = xstrdup(host);
954
Damien Miller1f0311c2014-05-15 14:24:09 +1000955#ifdef WITH_OPENSSL
Damien Miller4314c2b2010-09-10 11:12:09 +1000956 OpenSSL_add_all_algorithms();
Damien Miller0bc1bd82000-11-13 22:57:25 +1100957 ERR_load_crypto_strings();
Damien Miller1f0311c2014-05-15 14:24:09 +1000958#endif
Damien Millercb5e44a2000-09-29 12:12:36 +1100959
Damien Miller95def091999-11-25 00:26:21 +1100960 /* Initialize the command to execute on remote host. */
961 buffer_init(&command);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000962
Damien Miller5428f641999-11-25 11:54:57 +1100963 /*
964 * Save the command to execute on the remote host in a buffer. There
965 * is no limit on the length of the command, except by the maximum
966 * packet size. Also sets the tty flag if there is no command.
967 */
Damien Millerf4614452001-07-14 12:18:10 +1000968 if (!ac) {
Damien Miller95def091999-11-25 00:26:21 +1100969 /* No command specified - execute shell on a tty. */
Damien Miller832562e2001-01-30 09:30:01 +1100970 if (subsystem_flag) {
Damien Millerf4614452001-07-14 12:18:10 +1000971 fprintf(stderr,
972 "You must specify a subsystem to invoke.\n");
Damien Miller832562e2001-01-30 09:30:01 +1100973 usage();
974 }
Damien Miller95def091999-11-25 00:26:21 +1100975 } else {
Damien Millerf4614452001-07-14 12:18:10 +1000976 /* A command has been specified. Store it into the buffer. */
977 for (i = 0; i < ac; i++) {
978 if (i)
Damien Miller95def091999-11-25 00:26:21 +1100979 buffer_append(&command, " ", 1);
980 buffer_append(&command, av[i], strlen(av[i]));
981 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000982 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000983
Damien Miller95def091999-11-25 00:26:21 +1100984 /* Cannot fork to background if no command. */
Darren Tuckerd6173c02008-06-13 04:52:53 +1000985 if (fork_after_authentication_flag && buffer_len(&command) == 0 &&
986 !no_shell_flag)
987 fatal("Cannot fork into background without a command "
988 "to execute.");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000989
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000990 /*
991 * Initialize "log" output. Since we are the client all output
Damien Miller03d4d7e2013-04-23 15:21:06 +1000992 * goes to stderr unless otherwise specified by -y or -E.
Ben Lindstrom8a432f52001-03-05 07:24:46 +0000993 */
Damien Miller03d4d7e2013-04-23 15:21:06 +1000994 if (use_syslog && logfile != NULL)
995 fatal("Can't specify both -y and -E");
dtucker@openbsd.org4f7cc2f2015-09-04 08:21:47 +0000996 if (logfile != NULL)
Damien Miller03d4d7e2013-04-23 15:21:06 +1000997 log_redirect_stderr_to(logfile);
Darren Tucker72efd742009-06-21 17:48:00 +1000998 log_init(argv0,
Darren Tuckerd6173c02008-06-13 04:52:53 +1000999 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
Damien Millere272a5b2008-11-03 19:22:37 +11001000 SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001001
Damien Miller03d4d7e2013-04-23 15:21:06 +10001002 if (debug_flag)
Damien Miller1f0311c2014-05-15 14:24:09 +10001003 logit("%s, %s", SSH_RELEASE,
1004#ifdef WITH_OPENSSL
1005 SSLeay_version(SSLEAY_VERSION)
1006#else
1007 "without OpenSSL"
1008#endif
1009 );
Damien Miller03d4d7e2013-04-23 15:21:06 +10001010
Damien Miller13f97b22014-02-24 15:57:55 +11001011 /* Parse the configuration files */
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001012 process_config_files(host_arg, pw, 0);
Ben Lindstrom83f07d12001-10-03 17:22:29 +00001013
Damien Miller13f97b22014-02-24 15:57:55 +11001014 /* Hostname canonicalisation needs a few options filled. */
1015 fill_default_options_for_canonicalization(&options);
1016
1017 /* If the user has replaced the hostname then take it into use now */
1018 if (options.hostname != NULL) {
1019 /* NB. Please keep in sync with readconf.c:match_cfg_line() */
1020 cp = percent_expand(options.hostname,
1021 "h", host, (char *)NULL);
1022 free(host);
1023 host = cp;
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001024 free(options.hostname);
1025 options.hostname = xstrdup(host);
Damien Miller13f97b22014-02-24 15:57:55 +11001026 }
1027
1028 /* If canonicalization requested then try to apply it */
1029 lowercase(host);
1030 if (options.canonicalize_hostname != SSH_CANONICALISE_NO)
1031 addrs = resolve_canonicalize(&host, options.port);
1032
1033 /*
Damien Miller08b57c62014-02-27 10:17:13 +11001034 * If CanonicalizePermittedCNAMEs have been specified but
1035 * other canonicalization did not happen (by not being requested
1036 * or by failing with fallback) then the hostname may still be changed
1037 * as a result of CNAME following.
1038 *
1039 * Try to resolve the bare hostname name using the system resolver's
1040 * usual search rules and then apply the CNAME follow rules.
1041 *
1042 * Skip the lookup if a ProxyCommand is being used unless the user
1043 * has specifically requested canonicalisation for this case via
1044 * CanonicalizeHostname=always
Damien Miller13f97b22014-02-24 15:57:55 +11001045 */
Damien Miller08b57c62014-02-27 10:17:13 +11001046 if (addrs == NULL && options.num_permitted_cnames != 0 &&
1047 (option_clear_or_none(options.proxy_command) ||
Damien Miller13f97b22014-02-24 15:57:55 +11001048 options.canonicalize_hostname == SSH_CANONICALISE_ALWAYS)) {
Damien Miller19439e92014-07-02 15:28:40 +10001049 if ((addrs = resolve_host(host, options.port,
1050 option_clear_or_none(options.proxy_command),
1051 cname, sizeof(cname))) == NULL) {
1052 /* Don't fatal proxied host names not in the DNS */
1053 if (option_clear_or_none(options.proxy_command))
1054 cleanup_exit(255); /* logged in resolve_host */
1055 } else
1056 check_follow_cname(&host, cname);
Damien Miller13f97b22014-02-24 15:57:55 +11001057 }
1058
1059 /*
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001060 * If canonicalisation is enabled then re-parse the configuration
1061 * files as new stanzas may match.
Damien Miller13f97b22014-02-24 15:57:55 +11001062 */
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001063 if (options.canonicalize_hostname != 0) {
1064 debug("Re-reading configuration after hostname "
1065 "canonicalisation");
1066 free(options.hostname);
1067 options.hostname = xstrdup(host);
1068 process_config_files(host_arg, pw, 1);
1069 /*
1070 * Address resolution happens early with canonicalisation
1071 * enabled and the port number may have changed since, so
1072 * reset it in address list
1073 */
1074 if (addrs != NULL && options.port > 0)
1075 set_addrinfo_port(addrs, options.port);
Ben Lindstrom14f31ab2001-09-12 17:48:04 +00001076 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001077
Damien Miller95def091999-11-25 00:26:21 +11001078 /* Fill configuration defaults. */
1079 fill_default_options(&options);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001080
Damien Miller13f97b22014-02-24 15:57:55 +11001081 if (options.port == 0)
1082 options.port = default_ssh_port();
Darren Tucker0a4f04b2003-07-03 20:37:47 +10001083 channel_set_af(options.address_family);
1084
Damien Millere9fc72e2013-10-15 12:14:12 +11001085 /* Tidy and check options */
1086 if (options.host_key_alias != NULL)
1087 lowercase(options.host_key_alias);
1088 if (options.proxy_command != NULL &&
1089 strcmp(options.proxy_command, "-") == 0 &&
1090 options.proxy_use_fdpass)
1091 fatal("ProxyCommand=- and ProxyUseFDPass are incompatible");
djm@openbsd.org44732de2015-02-20 22:17:21 +00001092 if (options.control_persist &&
1093 options.update_hostkeys == SSH_UPDATE_HOSTKEYS_ASK) {
1094 debug("UpdateHostKeys=ask is incompatible with ControlPersist; "
1095 "disabling");
1096 options.update_hostkeys = 0;
1097 }
djm@openbsd.org88b6fcd2015-11-19 08:23:27 +00001098 if (options.connection_attempts <= 0)
1099 fatal("Invalid number of ConnectionAttempts");
Damien Miller0faf7472013-10-17 11:47:23 +11001100#ifndef HAVE_CYGWIN
1101 if (original_effective_uid != 0)
1102 options.use_privileged_port = 0;
1103#endif
Damien Millere9fc72e2013-10-15 12:14:12 +11001104
Damien Miller95def091999-11-25 00:26:21 +11001105 /* reinit */
Darren Tucker72efd742009-06-21 17:48:00 +10001106 log_init(argv0, options.log_level, SYSLOG_FACILITY_USER, !use_syslog);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001107
Damien Millerfff9f092012-07-06 13:45:01 +10001108 if (options.request_tty == REQUEST_TTY_YES ||
1109 options.request_tty == REQUEST_TTY_FORCE)
1110 tty_flag = 1;
1111
1112 /* Allocate a tty by default if no command specified. */
1113 if (buffer_len(&command) == 0)
1114 tty_flag = options.request_tty != REQUEST_TTY_NO;
1115
1116 /* Force no tty */
1117 if (options.request_tty == REQUEST_TTY_NO || muxclient_command != 0)
1118 tty_flag = 0;
1119 /* Do not allocate a tty if stdin is not a tty. */
1120 if ((!isatty(fileno(stdin)) || stdin_null_flag) &&
1121 options.request_tty != REQUEST_TTY_FORCE) {
1122 if (tty_flag)
1123 logit("Pseudo-terminal will not be allocated because "
1124 "stdin is not a terminal.");
1125 tty_flag = 0;
1126 }
1127
Damien Miller60bc5172001-03-19 09:38:15 +11001128 seed_rng();
1129
Damien Miller95def091999-11-25 00:26:21 +11001130 if (options.user == NULL)
1131 options.user = xstrdup(pw->pw_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001132
Damien Millerdfc85fa2011-05-15 08:44:02 +10001133 if (gethostname(thishost, sizeof(thishost)) == -1)
1134 fatal("gethostname: %s", strerror(errno));
1135 strlcpy(shorthost, thishost, sizeof(shorthost));
1136 shorthost[strcspn(thishost, ".")] = '\0';
1137 snprintf(portstr, sizeof(portstr), "%d", options.port);
djm@openbsd.org674b3b62015-09-11 03:47:28 +00001138 snprintf(uidstr, sizeof(uidstr), "%d", pw->pw_uid);
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001139
Damien Miller9c386432014-07-03 21:27:46 +10001140 if ((md = ssh_digest_start(SSH_DIGEST_SHA1)) == NULL ||
1141 ssh_digest_update(md, thishost, strlen(thishost)) < 0 ||
1142 ssh_digest_update(md, host, strlen(host)) < 0 ||
1143 ssh_digest_update(md, portstr, strlen(portstr)) < 0 ||
1144 ssh_digest_update(md, options.user, strlen(options.user)) < 0 ||
1145 ssh_digest_final(md, conn_hash, sizeof(conn_hash)) < 0)
1146 fatal("%s: mux digest failed", __func__);
1147 ssh_digest_free(md);
1148 conn_hash_hex = tohex(conn_hash, ssh_digest_bytes(SSH_DIGEST_SHA1));
1149
Damien Millerdfc85fa2011-05-15 08:44:02 +10001150 if (options.local_command != NULL) {
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001151 debug3("expanding LocalCommand: %s", options.local_command);
1152 cp = options.local_command;
Damien Miller9c386432014-07-03 21:27:46 +10001153 options.local_command = percent_expand(cp,
1154 "C", conn_hash_hex,
1155 "L", shorthost,
1156 "d", pw->pw_dir,
1157 "h", host,
1158 "l", thishost,
1159 "n", host_arg,
1160 "p", portstr,
1161 "r", options.user,
1162 "u", pw->pw_name,
Damien Millerdfc85fa2011-05-15 08:44:02 +10001163 (char *)NULL);
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001164 debug3("expanded LocalCommand: %s", options.local_command);
Darren Tuckera627d422013-06-02 07:31:17 +10001165 free(cp);
Darren Tuckerf6b01b72008-06-13 04:56:37 +10001166 }
1167
Damien Miller0e220db2004-06-15 10:34:08 +10001168 if (options.control_path != NULL) {
Damien Miller6476cad2005-06-16 13:18:34 +10001169 cp = tilde_expand_filename(options.control_path,
1170 original_real_uid);
Darren Tuckera627d422013-06-02 07:31:17 +10001171 free(options.control_path);
Damien Miller9c386432014-07-03 21:27:46 +10001172 options.control_path = percent_expand(cp,
1173 "C", conn_hash_hex,
1174 "L", shorthost,
1175 "h", host,
1176 "l", thishost,
1177 "n", host_arg,
1178 "p", portstr,
1179 "r", options.user,
1180 "u", pw->pw_name,
djm@openbsd.org674b3b62015-09-11 03:47:28 +00001181 "i", uidstr,
Damien Millerdfc85fa2011-05-15 08:44:02 +10001182 (char *)NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10001183 free(cp);
Damien Miller0e220db2004-06-15 10:34:08 +10001184 }
Damien Miller9c386432014-07-03 21:27:46 +10001185 free(conn_hash_hex);
1186
djm@openbsd.org957fbce2014-10-08 22:20:25 +00001187 if (config_test) {
1188 dump_client_config(&options, host);
1189 exit(0);
1190 }
1191
Damien Millerb1cbfa22008-05-19 16:00:08 +10001192 if (muxclient_command != 0 && options.control_path == NULL)
Darren Tucker0814d312005-06-01 23:08:51 +10001193 fatal("No ControlPath specified for \"-O\" command");
Damien Millerd14b1e72005-06-16 13:19:41 +10001194 if (options.control_path != NULL)
Damien Millerb1cbfa22008-05-19 16:00:08 +10001195 muxclient(options.control_path);
Damien Miller0e220db2004-06-15 10:34:08 +10001196
Damien Miller08b57c62014-02-27 10:17:13 +11001197 /*
1198 * If hostname canonicalisation was not enabled, then we may not
1199 * have yet resolved the hostname. Do so now.
1200 */
1201 if (addrs == NULL && options.proxy_command == NULL) {
djm@openbsd.orga85768a2015-09-04 04:56:09 +00001202 debug2("resolving \"%s\" port %d", host, options.port);
Damien Miller08b57c62014-02-27 10:17:13 +11001203 if ((addrs = resolve_host(host, options.port, 1,
1204 cname, sizeof(cname))) == NULL)
1205 cleanup_exit(255); /* resolve_host logs the error */
1206 }
1207
Damien Miller67bd0622007-09-17 12:06:57 +10001208 timeout_ms = options.connection_timeout * 1000;
1209
Kevin Stevesfcec7f82000-12-15 19:55:48 +00001210 /* Open a connection to the remote host. */
Damien Miller0faf7472013-10-17 11:47:23 +11001211 if (ssh_connect(host, addrs, &hostaddr, options.port,
1212 options.address_family, options.connection_attempts,
1213 &timeout_ms, options.tcp_keep_alive,
1214 options.use_privileged_port) != 0)
1215 exit(255);
1216
Damien Miller28631ce2013-10-26 10:07:56 +11001217 if (addrs != NULL)
1218 freeaddrinfo(addrs);
1219
Damien Miller0faf7472013-10-17 11:47:23 +11001220 packet_set_timeout(options.server_alive_interval,
1221 options.server_alive_count_max);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001222
Damien Miller67bd0622007-09-17 12:06:57 +10001223 if (timeout_ms > 0)
1224 debug3("timeout: %d ms remain after connect", timeout_ms);
1225
Damien Miller5428f641999-11-25 11:54:57 +11001226 /*
1227 * If we successfully made the connection, load the host private key
1228 * in case we will need it later for combined rsa-rhosts
1229 * authentication. This must be done before releasing extra
1230 * privileges, because the file is only readable by root.
Ben Lindstrom9e5bb572002-06-06 19:58:27 +00001231 * If we cannot access the private keys, load the public keys
1232 * instead and try to execute the ssh-keysign helper instead.
Damien Miller5428f641999-11-25 11:54:57 +11001233 */
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001234 sensitive_data.nkeys = 0;
1235 sensitive_data.keys = NULL;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001236 sensitive_data.external_keysign = 0;
Ben Lindstrom24157572002-06-12 16:09:39 +00001237 if (options.rhosts_rsa_authentication ||
1238 options.hostbased_authentication) {
Damien Miller0fa47cf2013-12-29 17:53:39 +11001239 sensitive_data.nkeys = 9;
Damien Millerddd63ab2006-03-31 23:10:51 +11001240 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
Ben Lindstroma962c2f2002-07-04 00:14:17 +00001241 sizeof(Key));
Damien Miller6af914a2010-09-10 11:39:26 +10001242 for (i = 0; i < sensitive_data.nkeys; i++)
1243 sensitive_data.keys[i] = NULL;
Ben Lindstromf9c48842002-06-11 16:37:51 +00001244
1245 PRIV_START;
djm@openbsd.org6091c362015-12-11 03:20:09 +00001246#if WITH_SSH1
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001247 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
Darren Tucker232b76f2006-05-06 17:41:51 +10001248 _PATH_HOST_KEY_FILE, "", NULL, NULL);
djm@openbsd.org6091c362015-12-11 03:20:09 +00001249#endif
Damien Miller6af914a2010-09-10 11:39:26 +10001250#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001251 sensitive_data.keys[1] = key_load_private_cert(KEY_ECDSA,
Damien Millereb8b60e2010-08-31 22:41:14 +10001252 _PATH_HOST_ECDSA_KEY_FILE, "", NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001253#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001254 sensitive_data.keys[2] = key_load_private_cert(KEY_ED25519,
1255 _PATH_HOST_ED25519_KEY_FILE, "", NULL);
Damien Millereb8b60e2010-08-31 22:41:14 +10001256 sensitive_data.keys[3] = key_load_private_cert(KEY_RSA,
Damien Millerc1583312010-08-05 13:04:50 +10001257 _PATH_HOST_RSA_KEY_FILE, "", NULL);
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001258 sensitive_data.keys[4] = key_load_private_cert(KEY_DSA,
1259 _PATH_HOST_DSA_KEY_FILE, "", NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001260#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001261 sensitive_data.keys[5] = key_load_private_type(KEY_ECDSA,
Damien Millereb8b60e2010-08-31 22:41:14 +10001262 _PATH_HOST_ECDSA_KEY_FILE, "", NULL, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001263#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001264 sensitive_data.keys[6] = key_load_private_type(KEY_ED25519,
1265 _PATH_HOST_ED25519_KEY_FILE, "", NULL, NULL);
Damien Miller0fa47cf2013-12-29 17:53:39 +11001266 sensitive_data.keys[7] = key_load_private_type(KEY_RSA,
Darren Tucker232b76f2006-05-06 17:41:51 +10001267 _PATH_HOST_RSA_KEY_FILE, "", NULL, NULL);
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001268 sensitive_data.keys[8] = key_load_private_type(KEY_DSA,
1269 _PATH_HOST_DSA_KEY_FILE, "", NULL, NULL);
Ben Lindstromf9c48842002-06-11 16:37:51 +00001270 PRIV_END;
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001271
Ben Lindstrom5d35a2f2002-07-04 00:19:40 +00001272 if (options.hostbased_authentication == 1 &&
1273 sensitive_data.keys[0] == NULL &&
Damien Millereb8b60e2010-08-31 22:41:14 +10001274 sensitive_data.keys[5] == NULL &&
Damien Miller5be9d9e2013-12-07 11:24:01 +11001275 sensitive_data.keys[6] == NULL &&
Damien Miller0fa47cf2013-12-29 17:53:39 +11001276 sensitive_data.keys[7] == NULL &&
1277 sensitive_data.keys[8] == NULL) {
Damien Miller6af914a2010-09-10 11:39:26 +10001278#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001279 sensitive_data.keys[1] = key_load_cert(
Damien Millereb8b60e2010-08-31 22:41:14 +10001280 _PATH_HOST_ECDSA_KEY_FILE);
Damien Miller6af914a2010-09-10 11:39:26 +10001281#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001282 sensitive_data.keys[2] = key_load_cert(
1283 _PATH_HOST_ED25519_KEY_FILE);
Damien Millereb8b60e2010-08-31 22:41:14 +10001284 sensitive_data.keys[3] = key_load_cert(
Damien Millerc1583312010-08-05 13:04:50 +10001285 _PATH_HOST_RSA_KEY_FILE);
Damien Miller0fa47cf2013-12-29 17:53:39 +11001286 sensitive_data.keys[4] = key_load_cert(
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001287 _PATH_HOST_DSA_KEY_FILE);
Damien Miller6af914a2010-09-10 11:39:26 +10001288#ifdef OPENSSL_HAS_ECC
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001289 sensitive_data.keys[5] = key_load_public(
Damien Millereb8b60e2010-08-31 22:41:14 +10001290 _PATH_HOST_ECDSA_KEY_FILE, NULL);
Damien Miller6af914a2010-09-10 11:39:26 +10001291#endif
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001292 sensitive_data.keys[6] = key_load_public(
1293 _PATH_HOST_ED25519_KEY_FILE, NULL);
Damien Miller5be9d9e2013-12-07 11:24:01 +11001294 sensitive_data.keys[7] = key_load_public(
Damien Miller0fa47cf2013-12-29 17:53:39 +11001295 _PATH_HOST_RSA_KEY_FILE, NULL);
1296 sensitive_data.keys[8] = key_load_public(
djm@openbsd.orgab24ab82015-01-08 10:15:45 +00001297 _PATH_HOST_DSA_KEY_FILE, NULL);
Ben Lindstrom1bad2562002-06-06 19:57:33 +00001298 sensitive_data.external_keysign = 1;
1299 }
Damien Miller95def091999-11-25 00:26:21 +11001300 }
Damien Miller5428f641999-11-25 11:54:57 +11001301 /*
1302 * Get rid of any extra privileges that we may have. We will no
1303 * longer need them. Also, extra privileges could make it very hard
1304 * to read identity files and other non-world-readable files from the
1305 * user's home directory if it happens to be on a NFS volume where
1306 * root is mapped to nobody.
1307 */
Darren Tucker25f60a72004-08-15 17:23:34 +10001308 if (original_effective_uid == 0) {
1309 PRIV_START;
1310 permanently_set_uid(pw);
1311 }
Damien Miller95def091999-11-25 00:26:21 +11001312
Damien Miller5428f641999-11-25 11:54:57 +11001313 /*
1314 * Now that we are back to our own permissions, create ~/.ssh
Damien Miller788f2122005-11-05 15:14:59 +11001315 * directory if it doesn't already exist.
Damien Miller5428f641999-11-25 11:54:57 +11001316 */
Darren Tucker45c66d72011-11-04 10:50:40 +11001317 if (config == NULL) {
1318 r = snprintf(buf, sizeof buf, "%s%s%s", pw->pw_dir,
1319 strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
1320 if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) < 0) {
Darren Tucker8ccb7392010-09-10 12:28:24 +10001321#ifdef WITH_SELINUX
Darren Tucker45c66d72011-11-04 10:50:40 +11001322 ssh_selinux_setfscreatecon(buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001323#endif
Darren Tucker45c66d72011-11-04 10:50:40 +11001324 if (mkdir(buf, 0700) < 0)
1325 error("Could not create directory '%.200s'.",
1326 buf);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001327#ifdef WITH_SELINUX
Darren Tucker45c66d72011-11-04 10:50:40 +11001328 ssh_selinux_setfscreatecon(NULL);
Darren Tucker8ccb7392010-09-10 12:28:24 +10001329#endif
Darren Tucker45c66d72011-11-04 10:50:40 +11001330 }
Darren Tucker8ccb7392010-09-10 12:28:24 +10001331 }
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001332 /* load options.identity_files */
1333 load_public_identity_files();
1334
1335 /* Expand ~ in known host file names. */
Damien Miller295ee632011-05-29 21:42:31 +10001336 tilde_expand_paths(options.system_hostfiles,
1337 options.num_system_hostfiles);
1338 tilde_expand_paths(options.user_hostfiles, options.num_user_hostfiles);
Damien Miller95def091999-11-25 00:26:21 +11001339
Damien Miller07cd5892001-11-12 10:52:03 +11001340 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
Damien Miller857b02e2010-09-24 22:02:56 +10001341 signal(SIGCHLD, main_sigchld_handler);
Damien Miller07cd5892001-11-12 10:52:03 +11001342
Darren Tuckerd6173c02008-06-13 04:52:53 +10001343 /* Log into the remote system. Never returns if the login fails. */
Damien Miller67bd0622007-09-17 12:06:57 +10001344 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr,
Damien Millerd925dcd2010-12-01 12:21:51 +11001345 options.port, pw, timeout_ms);
Damien Miller95def091999-11-25 00:26:21 +11001346
Damien Miller383ffe62010-06-26 10:02:03 +10001347 if (packet_connection_is_on_socket()) {
1348 verbose("Authenticated to %s ([%s]:%d).", host,
1349 get_remote_ipaddr(), get_remote_port());
1350 } else {
1351 verbose("Authenticated to %s (via proxy).", host);
1352 }
1353
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001354 /* We no longer need the private host keys. Clear them now. */
1355 if (sensitive_data.nkeys != 0) {
1356 for (i = 0; i < sensitive_data.nkeys; i++) {
1357 if (sensitive_data.keys[i] != NULL) {
1358 /* Destroys contents safely */
1359 debug3("clear hostkey %d", i);
1360 key_free(sensitive_data.keys[i]);
1361 sensitive_data.keys[i] = NULL;
1362 }
1363 }
Darren Tuckera627d422013-06-02 07:31:17 +10001364 free(sensitive_data.keys);
Ben Lindstrom5eabda32001-04-12 23:34:34 +00001365 }
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +00001366 for (i = 0; i < options.num_identity_files; i++) {
Darren Tuckera627d422013-06-02 07:31:17 +10001367 free(options.identity_files[i]);
1368 options.identity_files[i] = NULL;
Ben Lindstroma6c8a8d2001-08-06 21:42:00 +00001369 if (options.identity_keys[i]) {
1370 key_free(options.identity_keys[i]);
1371 options.identity_keys[i] = NULL;
1372 }
1373 }
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001374 for (i = 0; i < options.num_certificate_files; i++) {
1375 free(options.certificate_files[i]);
1376 options.certificate_files[i] = NULL;
1377 }
Damien Miller95def091999-11-25 00:26:21 +11001378
Damien Miller1383bd82000-04-06 12:32:37 +10001379 exit_status = compat20 ? ssh_session2() : ssh_session();
1380 packet_close();
Damien Miller8c4e18a2002-09-19 12:05:02 +10001381
Damien Millerb1cbfa22008-05-19 16:00:08 +10001382 if (options.control_path != NULL && muxserver_sock != -1)
Damien Miller0e220db2004-06-15 10:34:08 +10001383 unlink(options.control_path);
1384
Damien Millera41ccca2010-10-07 22:07:32 +11001385 /* Kill ProxyCommand if it is running. */
1386 ssh_kill_proxy_command();
Damien Miller8c4e18a2002-09-19 12:05:02 +10001387
Damien Miller1383bd82000-04-06 12:32:37 +10001388 return exit_status;
1389}
1390
Damien Millere11e1ea2010-08-03 16:04:46 +10001391static void
1392control_persist_detach(void)
1393{
1394 pid_t pid;
Damien Miller00d9ae22010-08-17 01:59:31 +10001395 int devnull;
Damien Millere11e1ea2010-08-03 16:04:46 +10001396
1397 debug("%s: backgrounding master process", __func__);
1398
1399 /*
1400 * master (current process) into the background, and make the
1401 * foreground process a client of the backgrounded master.
1402 */
1403 switch ((pid = fork())) {
1404 case -1:
1405 fatal("%s: fork: %s", __func__, strerror(errno));
1406 case 0:
1407 /* Child: master process continues mainloop */
1408 break;
1409 default:
1410 /* Parent: set up mux slave to connect to backgrounded master */
1411 debug2("%s: background process is %ld", __func__, (long)pid);
1412 stdin_null_flag = ostdin_null_flag;
Damien Miller21771e22011-05-15 08:45:50 +10001413 options.request_tty = orequest_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +10001414 tty_flag = otty_flag;
1415 close(muxserver_sock);
1416 muxserver_sock = -1;
Damien Miller5929c522010-09-10 11:17:02 +10001417 options.control_master = SSHCTL_MASTER_NO;
Damien Millere11e1ea2010-08-03 16:04:46 +10001418 muxclient(options.control_path);
1419 /* muxclient() doesn't return on success. */
1420 fatal("Failed to connect to new control master");
1421 }
Damien Miller00d9ae22010-08-17 01:59:31 +10001422 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
1423 error("%s: open(\"/dev/null\"): %s", __func__,
1424 strerror(errno));
1425 } else {
1426 if (dup2(devnull, STDIN_FILENO) == -1 ||
1427 dup2(devnull, STDOUT_FILENO) == -1)
1428 error("%s: dup2: %s", __func__, strerror(errno));
1429 if (devnull > STDERR_FILENO)
1430 close(devnull);
1431 }
Damien Miller98e27dc2013-07-25 11:55:52 +10001432 daemon(1, 1);
Damien Millerea2c1a42011-06-03 12:10:22 +10001433 setproctitle("%s [mux]", options.control_path);
Damien Millere11e1ea2010-08-03 16:04:46 +10001434}
1435
1436/* Do fork() after authentication. Used by "ssh -f" */
1437static void
1438fork_postauth(void)
1439{
1440 if (need_controlpersist_detach)
1441 control_persist_detach();
1442 debug("forking to background");
1443 fork_after_authentication_flag = 0;
1444 if (daemon(1, 1) < 0)
1445 fatal("daemon() failed: %.200s", strerror(errno));
1446}
1447
Darren Tucker9f407c42008-06-13 04:50:27 +10001448/* Callback for remote forward global requests */
1449static void
1450ssh_confirm_remote_forward(int type, u_int32_t seq, void *ctxt)
1451{
Damien Miller7acefbb2014-07-18 14:11:24 +10001452 struct Forward *rfwd = (struct Forward *)ctxt;
Darren Tucker9f407c42008-06-13 04:50:27 +10001453
Damien Miller4bf648f2009-02-14 16:28:21 +11001454 /* XXX verbose() on failure? */
Damien Miller4b3ed642014-07-02 15:29:40 +10001455 debug("remote forward %s for: listen %s%s%d, connect %s:%d",
Darren Tucker9f407c42008-06-13 04:50:27 +10001456 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
Damien Miller7acefbb2014-07-18 14:11:24 +10001457 rfwd->listen_path ? rfwd->listen_path :
1458 rfwd->listen_host ? rfwd->listen_host : "",
1459 (rfwd->listen_path || rfwd->listen_host) ? ":" : "",
1460 rfwd->listen_port, rfwd->connect_path ? rfwd->connect_path :
1461 rfwd->connect_host, rfwd->connect_port);
1462 if (rfwd->listen_path == NULL && rfwd->listen_port == 0) {
Darren Tucker68afb8c2011-10-02 18:59:03 +11001463 if (type == SSH2_MSG_REQUEST_SUCCESS) {
1464 rfwd->allocated_port = packet_get_int();
1465 logit("Allocated port %u for remote forward to %s:%d",
1466 rfwd->allocated_port,
1467 rfwd->connect_host, rfwd->connect_port);
1468 channel_update_permitted_opens(rfwd->handle,
1469 rfwd->allocated_port);
1470 } else {
1471 channel_update_permitted_opens(rfwd->handle, -1);
1472 }
Damien Miller4bf648f2009-02-14 16:28:21 +11001473 }
1474
Darren Tucker9f407c42008-06-13 04:50:27 +10001475 if (type == SSH2_MSG_REQUEST_FAILURE) {
Damien Miller7acefbb2014-07-18 14:11:24 +10001476 if (options.exit_on_forward_failure) {
1477 if (rfwd->listen_path != NULL)
1478 fatal("Error: remote port forwarding failed "
1479 "for listen path %s", rfwd->listen_path);
1480 else
1481 fatal("Error: remote port forwarding failed "
1482 "for listen port %d", rfwd->listen_port);
1483 } else {
1484 if (rfwd->listen_path != NULL)
1485 logit("Warning: remote port forwarding failed "
1486 "for listen path %s", rfwd->listen_path);
1487 else
1488 logit("Warning: remote port forwarding failed "
1489 "for listen port %d", rfwd->listen_port);
1490 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001491 }
Darren Tucker9a2a6092008-07-04 12:53:50 +10001492 if (++remote_forward_confirms_received == options.num_remote_forwards) {
Darren Tucker9f407c42008-06-13 04:50:27 +10001493 debug("All remote forwarding requests processed");
Damien Millere11e1ea2010-08-03 16:04:46 +10001494 if (fork_after_authentication_flag)
1495 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001496 }
Darren Tucker9f407c42008-06-13 04:50:27 +10001497}
1498
Ben Lindstrombba81212001-06-25 05:01:22 +00001499static void
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001500client_cleanup_stdio_fwd(int id, void *arg)
1501{
1502 debug("stdio forwarding: done");
1503 cleanup_exit(0);
1504}
1505
Darren Tucker2d6665d2011-11-04 10:54:22 +11001506static void
Damien Miller357610d2014-07-18 15:04:10 +10001507ssh_stdio_confirm(int id, int success, void *arg)
1508{
1509 if (!success)
1510 fatal("stdio forwarding failed");
1511}
1512
1513static void
Darren Tucker2d6665d2011-11-04 10:54:22 +11001514ssh_init_stdio_forwarding(void)
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001515{
1516 Channel *c;
Damien Millere1537f92010-01-26 13:26:22 +11001517 int in, out;
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001518
Darren Tucker2d6665d2011-11-04 10:54:22 +11001519 if (stdio_forward_host == NULL)
1520 return;
Damien Miller386feab2013-10-15 12:14:49 +11001521 if (!compat20)
Darren Tucker2d6665d2011-11-04 10:54:22 +11001522 fatal("stdio forwarding require Protocol 2");
Damien Millere1537f92010-01-26 13:26:22 +11001523
Darren Tucker2d6665d2011-11-04 10:54:22 +11001524 debug3("%s: %s:%d", __func__, stdio_forward_host, stdio_forward_port);
1525
1526 if ((in = dup(STDIN_FILENO)) < 0 ||
1527 (out = dup(STDOUT_FILENO)) < 0)
Damien Millere1537f92010-01-26 13:26:22 +11001528 fatal("channel_connect_stdio_fwd: dup() in/out failed");
Darren Tucker2d6665d2011-11-04 10:54:22 +11001529 if ((c = channel_connect_stdio_fwd(stdio_forward_host,
1530 stdio_forward_port, in, out)) == NULL)
1531 fatal("%s: channel_connect_stdio_fwd failed", __func__);
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001532 channel_register_cleanup(c->self, client_cleanup_stdio_fwd, 0);
Damien Miller357610d2014-07-18 15:04:10 +10001533 channel_register_open_confirm(c->self, ssh_stdio_confirm, NULL);
Darren Tucker7ad8dd22010-01-12 19:40:27 +11001534}
1535
1536static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001537ssh_init_forwarding(void)
1538{
Kevin Steves12057502001-02-05 14:54:34 +00001539 int success = 0;
Damien Miller0bc1bd82000-11-13 22:57:25 +11001540 int i;
Kevin Steves12057502001-02-05 14:54:34 +00001541
Damien Miller0bc1bd82000-11-13 22:57:25 +11001542 /* Initiate local TCP/IP port forwardings. */
1543 for (i = 0; i < options.num_local_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001544 debug("Local connections to %.200s:%d forwarded to remote "
1545 "address %.200s:%d",
Damien Miller7acefbb2014-07-18 14:11:24 +10001546 (options.local_forwards[i].listen_path != NULL) ?
1547 options.local_forwards[i].listen_path :
Darren Tucker47eede72005-03-14 23:08:12 +11001548 (options.local_forwards[i].listen_host == NULL) ?
Damien Miller7acefbb2014-07-18 14:11:24 +10001549 (options.fwd_opts.gateway_ports ? "*" : "LOCALHOST") :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001550 options.local_forwards[i].listen_host,
1551 options.local_forwards[i].listen_port,
Damien Miller7acefbb2014-07-18 14:11:24 +10001552 (options.local_forwards[i].connect_path != NULL) ?
1553 options.local_forwards[i].connect_path :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001554 options.local_forwards[i].connect_host,
1555 options.local_forwards[i].connect_port);
Damien Millerb16461c2002-01-22 23:29:22 +11001556 success += channel_setup_local_fwd_listener(
Damien Miller7acefbb2014-07-18 14:11:24 +10001557 &options.local_forwards[i], &options.fwd_opts);
Damien Miller0bc1bd82000-11-13 22:57:25 +11001558 }
Darren Tuckere7d4b192006-07-12 22:17:10 +10001559 if (i > 0 && success != i && options.exit_on_forward_failure)
1560 fatal("Could not request local forwarding.");
Kevin Steves12057502001-02-05 14:54:34 +00001561 if (i > 0 && success == 0)
1562 error("Could not request local forwarding.");
Damien Miller0bc1bd82000-11-13 22:57:25 +11001563
1564 /* Initiate remote TCP/IP port forwardings. */
1565 for (i = 0; i < options.num_remote_forwards; i++) {
Damien Millerf91ee4c2005-03-01 21:24:33 +11001566 debug("Remote connections from %.200s:%d forwarded to "
1567 "local address %.200s:%d",
Damien Miller7acefbb2014-07-18 14:11:24 +10001568 (options.remote_forwards[i].listen_path != NULL) ?
1569 options.remote_forwards[i].listen_path :
Damien Miller46d38de2005-07-17 17:02:09 +10001570 (options.remote_forwards[i].listen_host == NULL) ?
Damien Milleraa3bb102005-11-05 15:12:59 +11001571 "LOCALHOST" : options.remote_forwards[i].listen_host,
Damien Millerf91ee4c2005-03-01 21:24:33 +11001572 options.remote_forwards[i].listen_port,
Damien Miller7acefbb2014-07-18 14:11:24 +10001573 (options.remote_forwards[i].connect_path != NULL) ?
1574 options.remote_forwards[i].connect_path :
Damien Millerf91ee4c2005-03-01 21:24:33 +11001575 options.remote_forwards[i].connect_host,
1576 options.remote_forwards[i].connect_port);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001577 options.remote_forwards[i].handle =
1578 channel_request_remote_forwarding(
Damien Miller7acefbb2014-07-18 14:11:24 +10001579 &options.remote_forwards[i]);
Darren Tucker68afb8c2011-10-02 18:59:03 +11001580 if (options.remote_forwards[i].handle < 0) {
Darren Tuckere7d4b192006-07-12 22:17:10 +10001581 if (options.exit_on_forward_failure)
1582 fatal("Could not request remote forwarding.");
1583 else
1584 logit("Warning: Could not request remote "
1585 "forwarding.");
Darren Tucker68afb8c2011-10-02 18:59:03 +11001586 } else {
1587 client_register_global_confirm(ssh_confirm_remote_forward,
1588 &options.remote_forwards[i]);
Darren Tuckere7d4b192006-07-12 22:17:10 +10001589 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001590 }
Damien Millerb3ce9fe2007-08-08 14:32:41 +10001591
1592 /* Initiate tunnel forwarding. */
1593 if (options.tun_open != SSH_TUNMODE_NO) {
1594 if (client_request_tun_fwd(options.tun_open,
1595 options.tun_local, options.tun_remote) == -1) {
1596 if (options.exit_on_forward_failure)
1597 fatal("Could not request tunnel forwarding.");
1598 else
1599 error("Could not request tunnel forwarding.");
1600 }
1601 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001602}
1603
Ben Lindstrombba81212001-06-25 05:01:22 +00001604static void
Damien Miller0bc1bd82000-11-13 22:57:25 +11001605check_agent_present(void)
1606{
djm@openbsd.org141efe42015-01-14 20:05:27 +00001607 int r;
1608
Damien Miller0bc1bd82000-11-13 22:57:25 +11001609 if (options.forward_agent) {
Damien Miller788f2122005-11-05 15:14:59 +11001610 /* Clear agent forwarding if we don't have an agent. */
djm@openbsd.org141efe42015-01-14 20:05:27 +00001611 if ((r = ssh_get_authentication_socket(NULL)) != 0) {
Damien Miller0bc1bd82000-11-13 22:57:25 +11001612 options.forward_agent = 0;
djm@openbsd.org141efe42015-01-14 20:05:27 +00001613 if (r != SSH_ERR_AGENT_NOT_PRESENT)
1614 debug("ssh_get_authentication_socket: %s",
1615 ssh_err(r));
1616 }
Damien Miller0bc1bd82000-11-13 22:57:25 +11001617 }
1618}
1619
Ben Lindstrombba81212001-06-25 05:01:22 +00001620static int
Damien Miller1383bd82000-04-06 12:32:37 +10001621ssh_session(void)
1622{
1623 int type;
Damien Miller1383bd82000-04-06 12:32:37 +10001624 int interactive = 0;
1625 int have_tty = 0;
1626 struct winsize ws;
Damien Miller1383bd82000-04-06 12:32:37 +10001627 char *cp;
Damien Miller17e7ed02005-06-17 12:54:33 +10001628 const char *display;
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001629 char *proto = NULL, *data = NULL;
Damien Miller1383bd82000-04-06 12:32:37 +10001630
Damien Miller95def091999-11-25 00:26:21 +11001631 /* Enable compression if requested. */
1632 if (options.compression) {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001633 debug("Requesting compression at level %d.",
1634 options.compression_level);
Damien Miller95def091999-11-25 00:26:21 +11001635
Darren Tuckerd6173c02008-06-13 04:52:53 +10001636 if (options.compression_level < 1 ||
1637 options.compression_level > 9)
1638 fatal("Compression level must be from 1 (fast) to "
1639 "9 (slow, best).");
Damien Miller95def091999-11-25 00:26:21 +11001640
1641 /* Send the request. */
1642 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
1643 packet_put_int(options.compression_level);
1644 packet_send();
1645 packet_write_wait();
Damien Millerdff50992002-01-22 23:16:32 +11001646 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001647 if (type == SSH_SMSG_SUCCESS)
1648 packet_start_compression(options.compression_level);
1649 else if (type == SSH_SMSG_FAILURE)
Damien Miller996acd22003-04-09 20:59:48 +10001650 logit("Warning: Remote host refused compression.");
Damien Miller95def091999-11-25 00:26:21 +11001651 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001652 packet_disconnect("Protocol error waiting for "
1653 "compression response.");
Damien Miller95def091999-11-25 00:26:21 +11001654 }
1655 /* Allocate a pseudo tty if appropriate. */
1656 if (tty_flag) {
1657 debug("Requesting pty.");
1658
1659 /* Start the packet. */
1660 packet_start(SSH_CMSG_REQUEST_PTY);
1661
1662 /* Store TERM in the packet. There is no limit on the
1663 length of the string. */
1664 cp = getenv("TERM");
1665 if (!cp)
1666 cp = "";
Ben Lindstrom664408d2001-06-09 01:42:01 +00001667 packet_put_cstring(cp);
Damien Miller95def091999-11-25 00:26:21 +11001668
1669 /* Store window size in the packet. */
1670 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1671 memset(&ws, 0, sizeof(ws));
Damien Miller71a73672006-03-26 14:04:36 +11001672 packet_put_int((u_int)ws.ws_row);
1673 packet_put_int((u_int)ws.ws_col);
1674 packet_put_int((u_int)ws.ws_xpixel);
1675 packet_put_int((u_int)ws.ws_ypixel);
Damien Miller95def091999-11-25 00:26:21 +11001676
1677 /* Store tty modes in the packet. */
Ben Lindstromae8e2d32001-04-14 23:13:02 +00001678 tty_make_modes(fileno(stdin), NULL);
Damien Miller95def091999-11-25 00:26:21 +11001679
1680 /* Send the packet, and wait for it to leave. */
1681 packet_send();
1682 packet_write_wait();
1683
1684 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001685 type = packet_read();
Damien Miller450a7a12000-03-26 13:04:51 +10001686 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001687 interactive = 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001688 have_tty = 1;
Damien Miller450a7a12000-03-26 13:04:51 +10001689 } else if (type == SSH_SMSG_FAILURE)
Darren Tuckerd6173c02008-06-13 04:52:53 +10001690 logit("Warning: Remote host failed or refused to "
1691 "allocate a pseudo tty.");
Damien Miller95def091999-11-25 00:26:21 +11001692 else
Darren Tuckerd6173c02008-06-13 04:52:53 +10001693 packet_disconnect("Protocol error waiting for pty "
1694 "request response.");
Damien Miller95def091999-11-25 00:26:21 +11001695 }
1696 /* Request X11 forwarding if enabled and DISPLAY is set. */
Damien Miller17e7ed02005-06-17 12:54:33 +10001697 display = getenv("DISPLAY");
djm@openbsd.orga58be332015-04-17 13:16:48 +00001698 if (display == NULL && options.forward_x11)
1699 debug("X11 forwarding requested but DISPLAY not set");
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001700 if (options.forward_x11 && client_x11_get_proto(display,
1701 options.xauth_location, options.forward_x11_trusted,
1702 options.forward_x11_timeout, &proto, &data) == 0) {
Damien Millerbd483e72000-04-30 10:00:53 +10001703 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001704 debug("Requesting X11 forwarding with authentication "
1705 "spoofing.");
Damien Miller6d7b4372011-06-23 08:31:57 +10001706 x11_request_forwarding_with_spoofing(0, display, proto,
1707 data, 0);
Damien Miller95def091999-11-25 00:26:21 +11001708 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001709 type = packet_read();
Damien Miller95def091999-11-25 00:26:21 +11001710 if (type == SSH_SMSG_SUCCESS) {
Damien Miller95def091999-11-25 00:26:21 +11001711 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001712 } else if (type == SSH_SMSG_FAILURE) {
Damien Miller996acd22003-04-09 20:59:48 +10001713 logit("Warning: Remote host denied X11 forwarding.");
Damien Millerbd483e72000-04-30 10:00:53 +10001714 } else {
Darren Tuckerd6173c02008-06-13 04:52:53 +10001715 packet_disconnect("Protocol error waiting for X11 "
1716 "forwarding");
Damien Millerbd483e72000-04-30 10:00:53 +10001717 }
Damien Miller95def091999-11-25 00:26:21 +11001718 }
1719 /* Tell the packet module whether this is an interactive session. */
Damien Miller0dac6fb2010-11-20 15:19:38 +11001720 packet_set_interactive(interactive,
1721 options.ip_qos_interactive, options.ip_qos_bulk);
Damien Miller95def091999-11-25 00:26:21 +11001722
1723 /* Request authentication agent forwarding if appropriate. */
Damien Miller0bc1bd82000-11-13 22:57:25 +11001724 check_agent_present();
1725
Damien Miller95def091999-11-25 00:26:21 +11001726 if (options.forward_agent) {
1727 debug("Requesting authentication agent forwarding.");
1728 auth_request_forwarding();
1729
1730 /* Read response from the server. */
Damien Millerdff50992002-01-22 23:16:32 +11001731 type = packet_read();
Damien Miller48b03fc2002-01-22 23:11:40 +11001732 packet_check_eom();
Damien Miller95def091999-11-25 00:26:21 +11001733 if (type != SSH_SMSG_SUCCESS)
Damien Miller996acd22003-04-09 20:59:48 +10001734 logit("Warning: Remote host denied authentication agent forwarding.");
Damien Miller95def091999-11-25 00:26:21 +11001735 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001736
Damien Miller0bc1bd82000-11-13 22:57:25 +11001737 /* Initiate port forwardings. */
Darren Tucker2d6665d2011-11-04 10:54:22 +11001738 ssh_init_stdio_forwarding();
Damien Miller0bc1bd82000-11-13 22:57:25 +11001739 ssh_init_forwarding();
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001740
Darren Tuckerb776c852007-12-02 23:06:35 +11001741 /* Execute a local command */
1742 if (options.local_command != NULL &&
1743 options.permit_local_command)
1744 ssh_local_cmd(options.local_command);
1745
Darren Tucker9a2a6092008-07-04 12:53:50 +10001746 /*
1747 * If requested and we are not interested in replies to remote
1748 * forwarding requests, then let ssh continue in the background.
1749 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001750 if (fork_after_authentication_flag) {
1751 if (options.exit_on_forward_failure &&
1752 options.num_remote_forwards > 0) {
1753 debug("deferring postauth fork until remote forward "
1754 "confirmation received");
1755 } else
1756 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001757 }
Damien Miller5428f641999-11-25 11:54:57 +11001758
1759 /*
1760 * If a command was specified on the command line, execute the
1761 * command now. Otherwise request the server to start a shell.
1762 */
Damien Miller95def091999-11-25 00:26:21 +11001763 if (buffer_len(&command) > 0) {
1764 int len = buffer_len(&command);
1765 if (len > 900)
1766 len = 900;
Darren Tuckerd6173c02008-06-13 04:52:53 +10001767 debug("Sending command: %.*s", len,
1768 (u_char *)buffer_ptr(&command));
Damien Miller95def091999-11-25 00:26:21 +11001769 packet_start(SSH_CMSG_EXEC_CMD);
1770 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1771 packet_send();
1772 packet_write_wait();
1773 } else {
1774 debug("Requesting shell.");
1775 packet_start(SSH_CMSG_EXEC_SHELL);
1776 packet_send();
1777 packet_write_wait();
1778 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001779
Damien Miller95def091999-11-25 00:26:21 +11001780 /* Enter the interactive session. */
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001781 return client_loop(have_tty, tty_flag ?
1782 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
Damien Miller1383bd82000-04-06 12:32:37 +10001783}
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001784
Ben Lindstromf558cf62001-09-20 23:13:49 +00001785/* request pty/x11/agent/tcpfwd/shell for channel */
Ben Lindstrombba81212001-06-25 05:01:22 +00001786static void
Damien Millerd530f5f2010-05-21 14:57:10 +10001787ssh_session2_setup(int id, int success, void *arg)
Damien Miller1383bd82000-04-06 12:32:37 +10001788{
Damien Miller3756dce2004-06-18 01:17:29 +10001789 extern char **environ;
Damien Miller17e7ed02005-06-17 12:54:33 +10001790 const char *display;
Damien Miller0e220db2004-06-15 10:34:08 +10001791 int interactive = tty_flag;
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001792 char *proto = NULL, *data = NULL;
Damien Miller17e7ed02005-06-17 12:54:33 +10001793
Damien Millerd530f5f2010-05-21 14:57:10 +10001794 if (!success)
1795 return; /* No need for error message, channels code sens one */
1796
Damien Miller46d38de2005-07-17 17:02:09 +10001797 display = getenv("DISPLAY");
djm@openbsd.orga58be332015-04-17 13:16:48 +00001798 if (display == NULL && options.forward_x11)
1799 debug("X11 forwarding requested but DISPLAY not set");
djm@openbsd.orged4ce822016-01-13 23:04:47 +00001800 if (options.forward_x11 && client_x11_get_proto(display,
1801 options.xauth_location, options.forward_x11_trusted,
1802 options.forward_x11_timeout, &proto, &data) == 0) {
Damien Millerbd483e72000-04-30 10:00:53 +10001803 /* Request forwarding with authentication spoofing. */
Darren Tuckerd6173c02008-06-13 04:52:53 +10001804 debug("Requesting X11 forwarding with authentication "
1805 "spoofing.");
Damien Miller6d7b4372011-06-23 08:31:57 +10001806 x11_request_forwarding_with_spoofing(id, display, proto,
1807 data, 1);
1808 client_expect_confirm(id, "X11 forwarding", CONFIRM_WARN);
1809 /* XXX exit_on_forward_failure */
Ben Lindstrombf555ba2001-01-18 02:04:35 +00001810 interactive = 1;
Damien Millerbd483e72000-04-30 10:00:53 +10001811 }
1812
Damien Miller0bc1bd82000-11-13 22:57:25 +11001813 check_agent_present();
1814 if (options.forward_agent) {
1815 debug("Requesting authentication agent forwarding.");
1816 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1817 packet_send();
1818 }
1819
Darren Tucker7b305012012-07-02 18:55:09 +10001820 /* Tell the packet module whether this is an interactive session. */
1821 packet_set_interactive(interactive,
1822 options.ip_qos_interactive, options.ip_qos_bulk);
1823
Damien Miller0e220db2004-06-15 10:34:08 +10001824 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
Damien Miller5771ed72008-05-19 15:35:33 +10001825 NULL, fileno(stdin), &command, environ);
Damien Miller1383bd82000-04-06 12:32:37 +10001826}
1827
Ben Lindstromf558cf62001-09-20 23:13:49 +00001828/* open new channel for a session */
Ben Lindstrombba81212001-06-25 05:01:22 +00001829static int
Ben Lindstromf558cf62001-09-20 23:13:49 +00001830ssh_session2_open(void)
Damien Miller1383bd82000-04-06 12:32:37 +10001831{
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001832 Channel *c;
1833 int window, packetmax, in, out, err;
Damien Millerad833b32000-08-23 10:46:23 +10001834
Damien Millercaf6dd62000-08-29 11:33:50 +11001835 if (stdin_null_flag) {
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001836 in = open(_PATH_DEVNULL, O_RDONLY);
Damien Millercaf6dd62000-08-29 11:33:50 +11001837 } else {
1838 in = dup(STDIN_FILENO);
1839 }
1840 out = dup(STDOUT_FILENO);
1841 err = dup(STDERR_FILENO);
1842
1843 if (in < 0 || out < 0 || err < 0)
1844 fatal("dup() in/out/err failed");
1845
Damien Miller69b69aa2000-10-28 14:19:58 +11001846 /* enable nonblocking unless tty */
1847 if (!isatty(in))
1848 set_nonblock(in);
1849 if (!isatty(out))
1850 set_nonblock(out);
1851 if (!isatty(err))
1852 set_nonblock(err);
1853
Damien Millere4340be2000-09-16 13:29:08 +11001854 window = CHAN_SES_WINDOW_DEFAULT;
1855 packetmax = CHAN_SES_PACKET_DEFAULT;
Damien Miller19a59452002-02-19 15:20:57 +11001856 if (tty_flag) {
1857 window >>= 1;
1858 packetmax >>= 1;
Damien Miller1383bd82000-04-06 12:32:37 +10001859 }
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001860 c = channel_new(
Damien Miller1383bd82000-04-06 12:32:37 +10001861 "session", SSH_CHANNEL_OPENING, in, out, err,
Damien Millere4340be2000-09-16 13:29:08 +11001862 window, packetmax, CHAN_EXTENDED_WRITE,
Damien Millerb1ca8bb2003-05-14 13:45:42 +10001863 "client-session", /*nonblock*/0);
Damien Miller1383bd82000-04-06 12:32:37 +10001864
Ben Lindstromf558cf62001-09-20 23:13:49 +00001865 debug3("ssh_session2_open: channel_new: %d", c->self);
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001866
Ben Lindstrom5ec26452001-06-09 00:18:51 +00001867 channel_send_open(c->self);
Ben Lindstromf558cf62001-09-20 23:13:49 +00001868 if (!no_shell_flag)
Damien Millerb84886b2008-05-19 15:05:07 +10001869 channel_register_open_confirm(c->self,
1870 ssh_session2_setup, NULL);
Damien Miller1383bd82000-04-06 12:32:37 +10001871
Ben Lindstrom99c73b32001-05-05 04:09:47 +00001872 return c->self;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001873}
1874
Ben Lindstrombba81212001-06-25 05:01:22 +00001875static int
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001876ssh_session2(void)
1877{
Ben Lindstromf558cf62001-09-20 23:13:49 +00001878 int id = -1;
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001879
1880 /* XXX should be pre-session */
Darren Tucker2d6665d2011-11-04 10:54:22 +11001881 if (!options.control_persist)
1882 ssh_init_stdio_forwarding();
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001883 ssh_init_forwarding();
1884
Damien Millere11e1ea2010-08-03 16:04:46 +10001885 /* Start listening for multiplex clients */
1886 muxserver_listen();
1887
1888 /*
Darren Tucker2d6665d2011-11-04 10:54:22 +11001889 * If we are in control persist mode and have a working mux listen
1890 * socket, then prepare to background ourselves and have a foreground
1891 * client attach as a control slave.
1892 * NB. we must save copies of the flags that we override for
Damien Millere11e1ea2010-08-03 16:04:46 +10001893 * the backgrounding, since we defer attachment of the slave until
1894 * after the connection is fully established (in particular,
1895 * async rfwd replies have been received for ExitOnForwardFailure).
1896 */
1897 if (options.control_persist && muxserver_sock != -1) {
1898 ostdin_null_flag = stdin_null_flag;
1899 ono_shell_flag = no_shell_flag;
Damien Miller21771e22011-05-15 08:45:50 +10001900 orequest_tty = options.request_tty;
Damien Millere11e1ea2010-08-03 16:04:46 +10001901 otty_flag = tty_flag;
1902 stdin_null_flag = 1;
1903 no_shell_flag = 1;
Damien Millere11e1ea2010-08-03 16:04:46 +10001904 tty_flag = 0;
1905 if (!fork_after_authentication_flag)
1906 need_controlpersist_detach = 1;
1907 fork_after_authentication_flag = 1;
1908 }
Darren Tucker2d6665d2011-11-04 10:54:22 +11001909 /*
1910 * ControlPersist mux listen socket setup failed, attempt the
1911 * stdio forward setup that we skipped earlier.
1912 */
1913 if (options.control_persist && muxserver_sock == -1)
1914 ssh_init_stdio_forwarding();
Damien Millere11e1ea2010-08-03 16:04:46 +10001915
Ben Lindstromf558cf62001-09-20 23:13:49 +00001916 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1917 id = ssh_session2_open();
Damien Miller649fe022013-07-18 16:13:55 +10001918 else {
1919 packet_set_interactive(
1920 options.control_master == SSHCTL_MASTER_NO,
1921 options.ip_qos_interactive, options.ip_qos_bulk);
1922 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001923
Darren Tucker8901fa92008-06-11 09:34:01 +10001924 /* If we don't expect to open a new session, then disallow it */
Damien Miller456e6f02008-11-03 19:20:10 +11001925 if (options.control_master == SSHCTL_MASTER_NO &&
1926 (datafellows & SSH_NEW_OPENSSH)) {
Darren Tucker8901fa92008-06-11 09:34:01 +10001927 debug("Requesting no-more-sessions@openssh.com");
1928 packet_start(SSH2_MSG_GLOBAL_REQUEST);
1929 packet_put_cstring("no-more-sessions@openssh.com");
1930 packet_put_char(0);
1931 packet_send();
1932 }
1933
Damien Millerd27b9472005-12-13 19:29:02 +11001934 /* Execute a local command */
1935 if (options.local_command != NULL &&
1936 options.permit_local_command)
1937 ssh_local_cmd(options.local_command);
1938
Damien Miller1f25ab42010-07-16 13:56:23 +10001939 /*
1940 * If requested and we are not interested in replies to remote
1941 * forwarding requests, then let ssh continue in the background.
1942 */
Damien Millere11e1ea2010-08-03 16:04:46 +10001943 if (fork_after_authentication_flag) {
1944 if (options.exit_on_forward_failure &&
1945 options.num_remote_forwards > 0) {
1946 debug("deferring postauth fork until remote forward "
1947 "confirmation received");
1948 } else
1949 fork_postauth();
Darren Tucker9a2a6092008-07-04 12:53:50 +10001950 }
Ben Lindstrom4c3f77d2001-04-05 23:37:36 +00001951
Darren Tuckerf1de4e52010-01-08 16:54:59 +11001952 if (options.use_roaming)
1953 request_roaming();
1954
Ben Lindstrom2b1f71b2001-06-05 20:32:21 +00001955 return client_loop(tty_flag, tty_flag ?
1956 options.escape_char : SSH_ESCAPECHAR_NONE, id);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001957}
Damien Miller0bc1bd82000-11-13 22:57:25 +11001958
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001959/* Loads all IdentityFile and CertificateFile keys */
Ben Lindstrombba81212001-06-25 05:01:22 +00001960static void
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00001961load_public_identity_files(void)
1962{
Damien Miller6b1d53c2006-03-31 23:13:21 +11001963 char *filename, *cp, thishost[NI_MAXHOST];
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11001964 char *pwdir = NULL, *pwname = NULL;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001965 Key *public;
Damien Miller6b1d53c2006-03-31 23:13:21 +11001966 struct passwd *pw;
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001967 int i;
1968 u_int n_ids, n_certs;
Damien Miller0a80ca12010-02-27 07:55:05 +11001969 char *identity_files[SSH_MAX_IDENTITY_FILES];
1970 Key *identity_keys[SSH_MAX_IDENTITY_FILES];
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001971 char *certificate_files[SSH_MAX_CERTIFICATE_FILES];
1972 struct sshkey *certificates[SSH_MAX_CERTIFICATE_FILES];
Damien Miller7ea845e2010-02-12 09:21:02 +11001973#ifdef ENABLE_PKCS11
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001974 Key **keys;
Damien Miller7ea845e2010-02-12 09:21:02 +11001975 int nkeys;
Damien Miller0a80ca12010-02-27 07:55:05 +11001976#endif /* PKCS11 */
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001977
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001978 n_ids = n_certs = 0;
Damien Miller1d2c4562014-02-04 11:18:20 +11001979 memset(identity_files, 0, sizeof(identity_files));
1980 memset(identity_keys, 0, sizeof(identity_keys));
djm@openbsd.org4e44a792015-09-24 06:15:11 +00001981 memset(certificate_files, 0, sizeof(certificate_files));
1982 memset(certificates, 0, sizeof(certificates));
Damien Miller0a80ca12010-02-27 07:55:05 +11001983
1984#ifdef ENABLE_PKCS11
Damien Miller7ea845e2010-02-12 09:21:02 +11001985 if (options.pkcs11_provider != NULL &&
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001986 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
Damien Miller7ea845e2010-02-12 09:21:02 +11001987 (pkcs11_init(!options.batch_mode) == 0) &&
1988 (nkeys = pkcs11_add_provider(options.pkcs11_provider, NULL,
1989 &keys)) > 0) {
Damien Miller7ea845e2010-02-12 09:21:02 +11001990 for (i = 0; i < nkeys; i++) {
Damien Miller0a80ca12010-02-27 07:55:05 +11001991 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
1992 key_free(keys[i]);
1993 continue;
1994 }
1995 identity_keys[n_ids] = keys[i];
1996 identity_files[n_ids] =
Damien Miller7ea845e2010-02-12 09:21:02 +11001997 xstrdup(options.pkcs11_provider); /* XXX */
Damien Miller0a80ca12010-02-27 07:55:05 +11001998 n_ids++;
Ben Lindstrom0936a5b2002-03-26 03:17:42 +00001999 }
Darren Tuckera627d422013-06-02 07:31:17 +10002000 free(keys);
Ben Lindstrom711b04a2001-08-06 21:12:42 +00002001 }
Damien Miller7ea845e2010-02-12 09:21:02 +11002002#endif /* ENABLE_PKCS11 */
Damien Miller6b1d53c2006-03-31 23:13:21 +11002003 if ((pw = getpwuid(original_real_uid)) == NULL)
2004 fatal("load_public_identity_files: getpwuid failed");
Darren Tuckere143f062007-12-02 23:21:16 +11002005 pwname = xstrdup(pw->pw_name);
2006 pwdir = xstrdup(pw->pw_dir);
Damien Miller6b1d53c2006-03-31 23:13:21 +11002007 if (gethostname(thishost, sizeof(thishost)) == -1)
2008 fatal("load_public_identity_files: gethostname: %s",
2009 strerror(errno));
Damien Miller0a80ca12010-02-27 07:55:05 +11002010 for (i = 0; i < options.num_identity_files; i++) {
Darren Tucker15fd19c2013-04-05 11:22:26 +11002011 if (n_ids >= SSH_MAX_IDENTITY_FILES ||
2012 strcasecmp(options.identity_files[i], "none") == 0) {
Darren Tuckera627d422013-06-02 07:31:17 +10002013 free(options.identity_files[i]);
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002014 options.identity_files[i] = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +11002015 continue;
2016 }
Damien Miller6b1d53c2006-03-31 23:13:21 +11002017 cp = tilde_expand_filename(options.identity_files[i],
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002018 original_real_uid);
Darren Tuckerb4fbbc62007-12-02 23:16:32 +11002019 filename = percent_expand(cp, "d", pwdir,
2020 "u", pwname, "l", thishost, "h", host,
Damien Miller6b1d53c2006-03-31 23:13:21 +11002021 "r", options.user, (char *)NULL);
Darren Tuckera627d422013-06-02 07:31:17 +10002022 free(cp);
Ben Lindstromd0fca422001-03-26 13:44:06 +00002023 public = key_load_public(filename, NULL);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002024 debug("identity file %s type %d", filename,
2025 public ? public->type : -1);
Darren Tuckera627d422013-06-02 07:31:17 +10002026 free(options.identity_files[i]);
Damien Miller0a80ca12010-02-27 07:55:05 +11002027 identity_files[n_ids] = filename;
2028 identity_keys[n_ids] = public;
2029
2030 if (++n_ids >= SSH_MAX_IDENTITY_FILES)
2031 continue;
2032
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002033 /*
2034 * If no certificates have been explicitly listed then try
2035 * to add the default certificate variant too.
2036 */
2037 if (options.num_certificate_files != 0)
2038 continue;
Damien Miller0a80ca12010-02-27 07:55:05 +11002039 xasprintf(&cp, "%s-cert", filename);
2040 public = key_load_public(cp, NULL);
2041 debug("identity file %s type %d", cp,
2042 public ? public->type : -1);
2043 if (public == NULL) {
Darren Tuckera627d422013-06-02 07:31:17 +10002044 free(cp);
Damien Miller0a80ca12010-02-27 07:55:05 +11002045 continue;
2046 }
2047 if (!key_is_cert(public)) {
2048 debug("%s: key %s type %s is not a certificate",
2049 __func__, cp, key_type(public));
2050 key_free(public);
Darren Tuckera627d422013-06-02 07:31:17 +10002051 free(cp);
Damien Miller0a80ca12010-02-27 07:55:05 +11002052 continue;
2053 }
2054 identity_keys[n_ids] = public;
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002055 identity_files[n_ids] = cp;
Damien Miller0a80ca12010-02-27 07:55:05 +11002056 n_ids++;
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002057 }
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002058
2059 if (options.num_certificate_files > SSH_MAX_CERTIFICATE_FILES)
2060 fatal("%s: too many certificates", __func__);
2061 for (i = 0; i < options.num_certificate_files; i++) {
2062 cp = tilde_expand_filename(options.certificate_files[i],
2063 original_real_uid);
2064 filename = percent_expand(cp, "d", pwdir,
2065 "u", pwname, "l", thishost, "h", host,
2066 "r", options.user, (char *)NULL);
2067 free(cp);
2068
2069 public = key_load_public(filename, NULL);
2070 debug("certificate file %s type %d", filename,
2071 public ? public->type : -1);
2072 free(options.certificate_files[i]);
2073 options.certificate_files[i] = NULL;
2074 if (public == NULL) {
2075 free(filename);
2076 continue;
2077 }
2078 if (!key_is_cert(public)) {
2079 debug("%s: key %s type %s is not a certificate",
2080 __func__, filename, key_type(public));
2081 key_free(public);
2082 free(filename);
2083 continue;
2084 }
2085 certificate_files[n_certs] = filename;
2086 certificates[n_certs] = public;
2087 ++n_certs;
2088 }
2089
Damien Miller0a80ca12010-02-27 07:55:05 +11002090 options.num_identity_files = n_ids;
2091 memcpy(options.identity_files, identity_files, sizeof(identity_files));
2092 memcpy(options.identity_keys, identity_keys, sizeof(identity_keys));
2093
djm@openbsd.org4e44a792015-09-24 06:15:11 +00002094 options.num_certificate_files = n_certs;
2095 memcpy(options.certificate_files,
2096 certificate_files, sizeof(certificate_files));
2097 memcpy(options.certificates, certificates, sizeof(certificates));
2098
Damien Miller1d2c4562014-02-04 11:18:20 +11002099 explicit_bzero(pwname, strlen(pwname));
Darren Tuckera627d422013-06-02 07:31:17 +10002100 free(pwname);
Damien Miller1d2c4562014-02-04 11:18:20 +11002101 explicit_bzero(pwdir, strlen(pwdir));
Darren Tuckera627d422013-06-02 07:31:17 +10002102 free(pwdir);
Ben Lindstrom266dfdf2001-03-09 00:12:22 +00002103}
Damien Miller857b02e2010-09-24 22:02:56 +10002104
2105static void
2106main_sigchld_handler(int sig)
2107{
2108 int save_errno = errno;
2109 pid_t pid;
2110 int status;
2111
2112 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
2113 (pid < 0 && errno == EINTR))
2114 ;
2115
2116 signal(sig, main_sigchld_handler);
2117 errno = save_errno;
2118}