blob: 32b27bbc2ce69aa722439af0647b24fbeb07c820 [file] [log] [blame]
Greg Hartman9768ca42017-06-22 20:49:52 -07001/* $OpenBSD: ssh.c,v 1.451 2017/03/10 04:07:20 djm Exp $ */
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
6 * 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 *
10 * 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.
17 * Copyright (c) 2000, 2001, 2002, 2003 Markus Friedl. All rights reserved.
18 *
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.
41 */
42
43#include "includes.h"
44
45#include <sys/types.h>
46#ifdef HAVE_SYS_STAT_H
47# include <sys/stat.h>
48#endif
49#include <sys/resource.h>
50#include <sys/ioctl.h>
Greg Hartmanbd77cf72015-02-25 13:21:06 -080051#include <sys/socket.h>
52#include <sys/wait.h>
53
54#include <ctype.h>
55#include <errno.h>
56#include <fcntl.h>
57#include <netdb.h>
58#ifdef HAVE_PATHS_H
59#include <paths.h>
60#endif
61#include <pwd.h>
62#include <signal.h>
63#include <stdarg.h>
64#include <stddef.h>
65#include <stdio.h>
66#include <stdlib.h>
67#include <string.h>
68#include <unistd.h>
Adam Langleyd0592972015-03-30 14:49:51 -070069#include <limits.h>
Greg Hartman9768ca42017-06-22 20:49:52 -070070#include <locale.h>
Greg Hartmanbd77cf72015-02-25 13:21:06 -080071
72#include <netinet/in.h>
73#include <arpa/inet.h>
74
Adam Langleyd0592972015-03-30 14:49:51 -070075#ifdef WITH_OPENSSL
Greg Hartmanbd77cf72015-02-25 13:21:06 -080076#include <openssl/evp.h>
77#include <openssl/err.h>
Adam Langleyd0592972015-03-30 14:49:51 -070078#endif
Greg Hartmanbd77cf72015-02-25 13:21:06 -080079#include "openbsd-compat/openssl-compat.h"
80#include "openbsd-compat/sys-queue.h"
81
82#include "xmalloc.h"
83#include "ssh.h"
84#include "ssh1.h"
85#include "ssh2.h"
86#include "canohost.h"
87#include "compat.h"
88#include "cipher.h"
Adam Langleyd0592972015-03-30 14:49:51 -070089#include "digest.h"
Greg Hartmanbd77cf72015-02-25 13:21:06 -080090#include "packet.h"
91#include "buffer.h"
92#include "channels.h"
93#include "key.h"
94#include "authfd.h"
95#include "authfile.h"
96#include "pathnames.h"
97#include "dispatch.h"
98#include "clientloop.h"
99#include "log.h"
Adam Langleyd0592972015-03-30 14:49:51 -0700100#include "misc.h"
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800101#include "readconf.h"
102#include "sshconnect.h"
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800103#include "kex.h"
104#include "mac.h"
105#include "sshpty.h"
106#include "match.h"
107#include "msg.h"
108#include "uidswap.h"
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800109#include "version.h"
Adam Langleyd0592972015-03-30 14:49:51 -0700110#include "ssherr.h"
Greg Hartmanccacbc92016-02-03 09:59:44 -0800111#include "myproposal.h"
Greg Hartman9768ca42017-06-22 20:49:52 -0700112#include "utf8.h"
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800113
114#ifdef ENABLE_PKCS11
115#include "ssh-pkcs11.h"
116#endif
117
118extern char *__progname;
119
120/* Saves a copy of argv for setproctitle emulation */
121#ifndef HAVE_SETPROCTITLE
122static char **saved_av;
123#endif
124
125/* Flag indicating whether debug mode is on. May be set on the command line. */
126int debug_flag = 0;
127
128/* Flag indicating whether a tty should be requested */
129int tty_flag = 0;
130
131/* don't exec a shell */
132int no_shell_flag = 0;
133
134/*
135 * Flag indicating that nothing should be read from stdin. This can be set
136 * on the command line.
137 */
138int stdin_null_flag = 0;
139
140/*
141 * Flag indicating that the current process should be backgrounded and
142 * a new slave launched in the foreground for ControlPersist.
143 */
144int need_controlpersist_detach = 0;
145
146/* Copies of flags for ControlPersist foreground slave */
147int ostdin_null_flag, ono_shell_flag, otty_flag, orequest_tty;
148
149/*
150 * Flag indicating that ssh should fork after authentication. This is useful
151 * so that the passphrase can be entered manually, and then ssh goes to the
152 * background.
153 */
154int fork_after_authentication_flag = 0;
155
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800156/*
157 * General data structure for command line options and options configurable
158 * in configuration files. See readconf.h.
159 */
160Options options;
161
162/* optional user configfile */
163char *config = NULL;
164
165/*
166 * Name of the host we are connecting to. This is the name given on the
167 * command line, or the HostName specified for the user-supplied name in a
168 * configuration file.
169 */
170char *host;
171
172/* socket address the host resolves to */
173struct sockaddr_storage hostaddr;
174
175/* Private host keys. */
176Sensitive sensitive_data;
177
178/* Original real UID. */
179uid_t original_real_uid;
180uid_t original_effective_uid;
181
182/* command to be executed */
183Buffer command;
184
185/* Should we execute a command or invoke a subsystem? */
186int subsystem_flag = 0;
187
188/* # of replies received for global requests */
189static int remote_forward_confirms_received = 0;
190
191/* mux.c */
192extern int muxserver_sock;
193extern u_int muxclient_command;
194
195/* Prints a help message to the user. This function never returns. */
196
197static void
198usage(void)
199{
200 fprintf(stderr,
Adam Langleyd0592972015-03-30 14:49:51 -0700201"usage: ssh [-1246AaCfGgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]\n"
202" [-D [bind_address:]port] [-E log_file] [-e escape_char]\n"
203" [-F configfile] [-I pkcs11] [-i identity_file]\n"
Greg Hartman9768ca42017-06-22 20:49:52 -0700204" [-J [user@]host[:port]] [-L address] [-l login_name] [-m mac_spec]\n"
205" [-O ctl_cmd] [-o option] [-p port] [-Q query_option] [-R address]\n"
206" [-S ctl_path] [-W host:port] [-w local_tun[:remote_tun]]\n"
207" [user@]hostname [command]\n"
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800208 );
209 exit(255);
210}
211
212static int ssh_session(void);
213static int ssh_session2(void);
214static void load_public_identity_files(void);
215static void main_sigchld_handler(int);
216
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800217/* ~/ expand a list of paths. NB. assumes path[n] is heap-allocated. */
218static void
219tilde_expand_paths(char **paths, u_int num_paths)
220{
221 u_int i;
222 char *cp;
223
224 for (i = 0; i < num_paths; i++) {
225 cp = tilde_expand_filename(paths[i], original_real_uid);
Adam Langleyd0592972015-03-30 14:49:51 -0700226 free(paths[i]);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800227 paths[i] = cp;
228 }
229}
230
231/*
Adam Langleyd0592972015-03-30 14:49:51 -0700232 * Attempt to resolve a host name / port to a set of addresses and
233 * optionally return any CNAMEs encountered along the way.
234 * Returns NULL on failure.
235 * NB. this function must operate with a options having undefined members.
236 */
237static struct addrinfo *
238resolve_host(const char *name, int port, int logerr, char *cname, size_t clen)
239{
240 char strport[NI_MAXSERV];
241 struct addrinfo hints, *res;
242 int gaierr, loglevel = SYSLOG_LEVEL_DEBUG1;
243
244 if (port <= 0)
245 port = default_ssh_port();
246
Greg Hartman9768ca42017-06-22 20:49:52 -0700247 snprintf(strport, sizeof strport, "%d", port);
Adam Langleyd0592972015-03-30 14:49:51 -0700248 memset(&hints, 0, sizeof(hints));
249 hints.ai_family = options.address_family == -1 ?
250 AF_UNSPEC : options.address_family;
251 hints.ai_socktype = SOCK_STREAM;
252 if (cname != NULL)
253 hints.ai_flags = AI_CANONNAME;
254 if ((gaierr = getaddrinfo(name, strport, &hints, &res)) != 0) {
255 if (logerr || (gaierr != EAI_NONAME && gaierr != EAI_NODATA))
256 loglevel = SYSLOG_LEVEL_ERROR;
257 do_log2(loglevel, "%s: Could not resolve hostname %.100s: %s",
258 __progname, name, ssh_gai_strerror(gaierr));
259 return NULL;
260 }
261 if (cname != NULL && res->ai_canonname != NULL) {
262 if (strlcpy(cname, res->ai_canonname, clen) >= clen) {
263 error("%s: host \"%s\" cname \"%s\" too long (max %lu)",
264 __func__, name, res->ai_canonname, (u_long)clen);
265 if (clen > 0)
266 *cname = '\0';
267 }
268 }
269 return res;
270}
271
272/*
273 * Attempt to resolve a numeric host address / port to a single address.
274 * Returns a canonical address string.
275 * Returns NULL on failure.
276 * NB. this function must operate with a options having undefined members.
277 */
278static struct addrinfo *
279resolve_addr(const char *name, int port, char *caddr, size_t clen)
280{
281 char addr[NI_MAXHOST], strport[NI_MAXSERV];
282 struct addrinfo hints, *res;
283 int gaierr;
284
285 if (port <= 0)
286 port = default_ssh_port();
287 snprintf(strport, sizeof strport, "%u", port);
288 memset(&hints, 0, sizeof(hints));
289 hints.ai_family = options.address_family == -1 ?
290 AF_UNSPEC : options.address_family;
291 hints.ai_socktype = SOCK_STREAM;
292 hints.ai_flags = AI_NUMERICHOST|AI_NUMERICSERV;
293 if ((gaierr = getaddrinfo(name, strport, &hints, &res)) != 0) {
294 debug2("%s: could not resolve name %.100s as address: %s",
295 __func__, name, ssh_gai_strerror(gaierr));
296 return NULL;
297 }
298 if (res == NULL) {
299 debug("%s: getaddrinfo %.100s returned no addresses",
300 __func__, name);
301 return NULL;
302 }
303 if (res->ai_next != NULL) {
304 debug("%s: getaddrinfo %.100s returned multiple addresses",
305 __func__, name);
306 goto fail;
307 }
308 if ((gaierr = getnameinfo(res->ai_addr, res->ai_addrlen,
309 addr, sizeof(addr), NULL, 0, NI_NUMERICHOST)) != 0) {
310 debug("%s: Could not format address for name %.100s: %s",
311 __func__, name, ssh_gai_strerror(gaierr));
312 goto fail;
313 }
314 if (strlcpy(caddr, addr, clen) >= clen) {
315 error("%s: host \"%s\" addr \"%s\" too long (max %lu)",
316 __func__, name, addr, (u_long)clen);
317 if (clen > 0)
318 *caddr = '\0';
319 fail:
320 freeaddrinfo(res);
321 return NULL;
322 }
323 return res;
324}
325
326/*
327 * Check whether the cname is a permitted replacement for the hostname
328 * and perform the replacement if it is.
329 * NB. this function must operate with a options having undefined members.
330 */
331static int
Greg Hartman9768ca42017-06-22 20:49:52 -0700332check_follow_cname(int direct, char **namep, const char *cname)
Adam Langleyd0592972015-03-30 14:49:51 -0700333{
334 int i;
335 struct allowed_cname *rule;
336
337 if (*cname == '\0' || options.num_permitted_cnames == 0 ||
338 strcmp(*namep, cname) == 0)
339 return 0;
340 if (options.canonicalize_hostname == SSH_CANONICALISE_NO)
341 return 0;
342 /*
343 * Don't attempt to canonicalize names that will be interpreted by
Greg Hartman9768ca42017-06-22 20:49:52 -0700344 * a proxy or jump host unless the user specifically requests so.
Adam Langleyd0592972015-03-30 14:49:51 -0700345 */
Greg Hartman9768ca42017-06-22 20:49:52 -0700346 if (!direct &&
Adam Langleyd0592972015-03-30 14:49:51 -0700347 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS)
348 return 0;
349 debug3("%s: check \"%s\" CNAME \"%s\"", __func__, *namep, cname);
350 for (i = 0; i < options.num_permitted_cnames; i++) {
351 rule = options.permitted_cnames + i;
Greg Hartmanccacbc92016-02-03 09:59:44 -0800352 if (match_pattern_list(*namep, rule->source_list, 1) != 1 ||
353 match_pattern_list(cname, rule->target_list, 1) != 1)
Adam Langleyd0592972015-03-30 14:49:51 -0700354 continue;
355 verbose("Canonicalized DNS aliased hostname "
356 "\"%s\" => \"%s\"", *namep, cname);
357 free(*namep);
358 *namep = xstrdup(cname);
359 return 1;
360 }
361 return 0;
362}
363
364/*
365 * Attempt to resolve the supplied hostname after applying the user's
366 * canonicalization rules. Returns the address list for the host or NULL
367 * if no name was found after canonicalization.
368 * NB. this function must operate with a options having undefined members.
369 */
370static struct addrinfo *
371resolve_canonicalize(char **hostp, int port)
372{
Greg Hartman9768ca42017-06-22 20:49:52 -0700373 int i, direct, ndots;
Adam Langleyd0592972015-03-30 14:49:51 -0700374 char *cp, *fullhost, newname[NI_MAXHOST];
375 struct addrinfo *addrs;
376
377 if (options.canonicalize_hostname == SSH_CANONICALISE_NO)
378 return NULL;
379
380 /*
381 * Don't attempt to canonicalize names that will be interpreted by
382 * a proxy unless the user specifically requests so.
383 */
Greg Hartman9768ca42017-06-22 20:49:52 -0700384 direct = option_clear_or_none(options.proxy_command) &&
385 options.jump_host == NULL;
386 if (!direct &&
Adam Langleyd0592972015-03-30 14:49:51 -0700387 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS)
388 return NULL;
389
390 /* Try numeric hostnames first */
391 if ((addrs = resolve_addr(*hostp, port,
392 newname, sizeof(newname))) != NULL) {
393 debug2("%s: hostname %.100s is address", __func__, *hostp);
394 if (strcasecmp(*hostp, newname) != 0) {
395 debug2("%s: canonicalised address \"%s\" => \"%s\"",
396 __func__, *hostp, newname);
397 free(*hostp);
398 *hostp = xstrdup(newname);
399 }
400 return addrs;
401 }
402
Greg Hartman9768ca42017-06-22 20:49:52 -0700403 /* If domain name is anchored, then resolve it now */
404 if ((*hostp)[strlen(*hostp) - 1] == '.') {
405 debug3("%s: name is fully qualified", __func__);
406 fullhost = xstrdup(*hostp);
407 if ((addrs = resolve_host(fullhost, port, 0,
408 newname, sizeof(newname))) != NULL)
409 goto found;
410 free(fullhost);
411 goto notfound;
412 }
413
Adam Langleyd0592972015-03-30 14:49:51 -0700414 /* Don't apply canonicalization to sufficiently-qualified hostnames */
415 ndots = 0;
416 for (cp = *hostp; *cp != '\0'; cp++) {
417 if (*cp == '.')
418 ndots++;
419 }
420 if (ndots > options.canonicalize_max_dots) {
421 debug3("%s: not canonicalizing hostname \"%s\" (max dots %d)",
422 __func__, *hostp, options.canonicalize_max_dots);
423 return NULL;
424 }
425 /* Attempt each supplied suffix */
426 for (i = 0; i < options.num_canonical_domains; i++) {
427 *newname = '\0';
428 xasprintf(&fullhost, "%s.%s.", *hostp,
429 options.canonical_domains[i]);
430 debug3("%s: attempting \"%s\" => \"%s\"", __func__,
431 *hostp, fullhost);
432 if ((addrs = resolve_host(fullhost, port, 0,
433 newname, sizeof(newname))) == NULL) {
434 free(fullhost);
435 continue;
436 }
Greg Hartman9768ca42017-06-22 20:49:52 -0700437 found:
Adam Langleyd0592972015-03-30 14:49:51 -0700438 /* Remove trailing '.' */
439 fullhost[strlen(fullhost) - 1] = '\0';
440 /* Follow CNAME if requested */
Greg Hartman9768ca42017-06-22 20:49:52 -0700441 if (!check_follow_cname(direct, &fullhost, newname)) {
Adam Langleyd0592972015-03-30 14:49:51 -0700442 debug("Canonicalized hostname \"%s\" => \"%s\"",
443 *hostp, fullhost);
444 }
445 free(*hostp);
446 *hostp = fullhost;
447 return addrs;
448 }
Greg Hartman9768ca42017-06-22 20:49:52 -0700449 notfound:
Adam Langleyd0592972015-03-30 14:49:51 -0700450 if (!options.canonicalize_fallback_local)
451 fatal("%s: Could not resolve host \"%s\"", __progname, *hostp);
452 debug2("%s: host %s not found in any suffix", __func__, *hostp);
453 return NULL;
454}
455
456/*
457 * Read per-user configuration file. Ignore the system wide config
458 * file if the user specifies a config file on the command line.
459 */
460static void
461process_config_files(const char *host_arg, struct passwd *pw, int post_canon)
462{
463 char buf[PATH_MAX];
464 int r;
465
466 if (config != NULL) {
467 if (strcasecmp(config, "none") != 0 &&
468 !read_config_file(config, pw, host, host_arg, &options,
469 SSHCONF_USERCONF | (post_canon ? SSHCONF_POSTCANON : 0)))
470 fatal("Can't open user config file %.100s: "
471 "%.100s", config, strerror(errno));
472 } else {
473 r = snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir,
474 _PATH_SSH_USER_CONFFILE);
475 if (r > 0 && (size_t)r < sizeof(buf))
476 (void)read_config_file(buf, pw, host, host_arg,
477 &options, SSHCONF_CHECKPERM | SSHCONF_USERCONF |
478 (post_canon ? SSHCONF_POSTCANON : 0));
479
480 /* Read systemwide configuration file after user config. */
481 (void)read_config_file(_PATH_HOST_CONFIG_FILE, pw,
482 host, host_arg, &options,
483 post_canon ? SSHCONF_POSTCANON : 0);
484 }
485}
486
487/* Rewrite the port number in an addrinfo list of addresses */
488static void
489set_addrinfo_port(struct addrinfo *addrs, int port)
490{
491 struct addrinfo *addr;
492
493 for (addr = addrs; addr != NULL; addr = addr->ai_next) {
494 switch (addr->ai_family) {
495 case AF_INET:
496 ((struct sockaddr_in *)addr->ai_addr)->
497 sin_port = htons(port);
498 break;
499 case AF_INET6:
500 ((struct sockaddr_in6 *)addr->ai_addr)->
501 sin6_port = htons(port);
502 break;
503 }
504 }
505}
506
507/*
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800508 * Main program for the ssh client.
509 */
510int
511main(int ac, char **av)
512{
Greg Hartman9768ca42017-06-22 20:49:52 -0700513 struct ssh *ssh = NULL;
514 int i, r, opt, exit_status, use_syslog, direct, config_test = 0;
Adam Langleyd0592972015-03-30 14:49:51 -0700515 char *p, *cp, *line, *argv0, buf[PATH_MAX], *host_arg, *logfile;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800516 char thishost[NI_MAXHOST], shorthost[NI_MAXHOST], portstr[NI_MAXSERV];
Greg Hartman9768ca42017-06-22 20:49:52 -0700517 char cname[NI_MAXHOST], uidstr[32], *conn_hash_hex;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800518 struct stat st;
519 struct passwd *pw;
Adam Langleyd0592972015-03-30 14:49:51 -0700520 int timeout_ms;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800521 extern int optind, optreset;
522 extern char *optarg;
Adam Langleyd0592972015-03-30 14:49:51 -0700523 struct Forward fwd;
524 struct addrinfo *addrs = NULL;
525 struct ssh_digest_ctx *md;
526 u_char conn_hash[SSH_DIGEST_MAX_LENGTH];
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800527
Greg Hartman9768ca42017-06-22 20:49:52 -0700528 ssh_malloc_init(); /* must be called before any mallocs */
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800529 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
530 sanitise_stdfd();
531
532 __progname = ssh_get_progname(av[0]);
533
534#ifndef HAVE_SETPROCTITLE
535 /* Prepare for later setproctitle emulation */
536 /* Save argv so it isn't clobbered by setproctitle() emulation */
537 saved_av = xcalloc(ac + 1, sizeof(*saved_av));
538 for (i = 0; i < ac; i++)
539 saved_av[i] = xstrdup(av[i]);
540 saved_av[i] = NULL;
541 compat_init_setproctitle(ac, av);
542 av = saved_av;
543#endif
544
545 /*
546 * Discard other fds that are hanging around. These can cause problem
547 * with backgrounded ssh processes started by ControlPersist.
548 */
549 closefrom(STDERR_FILENO + 1);
550
551 /*
552 * Save the original real uid. It will be needed later (uid-swapping
553 * may clobber the real uid).
554 */
555 original_real_uid = getuid();
556 original_effective_uid = geteuid();
557
558 /*
559 * Use uid-swapping to give up root privileges for the duration of
560 * option processing. We will re-instantiate the rights when we are
561 * ready to create the privileged port, and will permanently drop
562 * them when the port has been created (actually, when the connection
563 * has been made, as we may need to create the port several times).
564 */
565 PRIV_END;
566
567#ifdef HAVE_SETRLIMIT
568 /* If we are installed setuid root be careful to not drop core. */
569 if (original_real_uid != original_effective_uid) {
570 struct rlimit rlim;
571 rlim.rlim_cur = rlim.rlim_max = 0;
572 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
573 fatal("setrlimit failed: %.100s", strerror(errno));
574 }
575#endif
576 /* Get user data. */
577 pw = getpwuid(original_real_uid);
578 if (!pw) {
Adam Langleyd0592972015-03-30 14:49:51 -0700579 logit("No user exists for uid %lu", (u_long)original_real_uid);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800580 exit(255);
581 }
582 /* Take a copy of the returned structure. */
583 pw = pwcopy(pw);
584
585 /*
586 * Set our umask to something reasonable, as some files are created
587 * with the default umask. This will make them world-readable but
588 * writable only by the owner, which is ok for all files for which we
589 * don't set the modes explicitly.
590 */
591 umask(022);
592
Greg Hartman9768ca42017-06-22 20:49:52 -0700593 msetlocale();
594
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800595 /*
596 * Initialize option structure to indicate that no values have been
597 * set.
598 */
599 initialize_options(&options);
600
601 /* Parse command-line arguments. */
602 host = NULL;
603 use_syslog = 0;
Adam Langleyd0592972015-03-30 14:49:51 -0700604 logfile = NULL;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800605 argv0 = av[0];
606
607 again:
608 while ((opt = getopt(ac, av, "1246ab:c:e:fgi:kl:m:no:p:qstvx"
Greg Hartman9768ca42017-06-22 20:49:52 -0700609 "ACD:E:F:GI:J:KL:MNO:PQ:R:S:TVw:W:XYy")) != -1) {
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800610 switch (opt) {
611 case '1':
612 options.protocol = SSH_PROTO_1;
613 break;
614 case '2':
615 options.protocol = SSH_PROTO_2;
616 break;
617 case '4':
618 options.address_family = AF_INET;
619 break;
620 case '6':
621 options.address_family = AF_INET6;
622 break;
623 case 'n':
624 stdin_null_flag = 1;
625 break;
626 case 'f':
627 fork_after_authentication_flag = 1;
628 stdin_null_flag = 1;
629 break;
630 case 'x':
631 options.forward_x11 = 0;
632 break;
633 case 'X':
634 options.forward_x11 = 1;
635 break;
636 case 'y':
637 use_syslog = 1;
638 break;
Adam Langleyd0592972015-03-30 14:49:51 -0700639 case 'E':
Greg Hartman9768ca42017-06-22 20:49:52 -0700640 logfile = optarg;
Adam Langleyd0592972015-03-30 14:49:51 -0700641 break;
642 case 'G':
643 config_test = 1;
644 break;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800645 case 'Y':
646 options.forward_x11 = 1;
647 options.forward_x11_trusted = 1;
648 break;
649 case 'g':
Adam Langleyd0592972015-03-30 14:49:51 -0700650 options.fwd_opts.gateway_ports = 1;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800651 break;
652 case 'O':
Greg Hartman9768ca42017-06-22 20:49:52 -0700653 if (options.stdio_forward_host != NULL)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800654 fatal("Cannot specify multiplexing "
655 "command with -W");
656 else if (muxclient_command != 0)
657 fatal("Multiplexing command already specified");
658 if (strcmp(optarg, "check") == 0)
659 muxclient_command = SSHMUX_COMMAND_ALIVE_CHECK;
660 else if (strcmp(optarg, "forward") == 0)
661 muxclient_command = SSHMUX_COMMAND_FORWARD;
662 else if (strcmp(optarg, "exit") == 0)
663 muxclient_command = SSHMUX_COMMAND_TERMINATE;
664 else if (strcmp(optarg, "stop") == 0)
665 muxclient_command = SSHMUX_COMMAND_STOP;
Adam Langleyd0592972015-03-30 14:49:51 -0700666 else if (strcmp(optarg, "cancel") == 0)
667 muxclient_command = SSHMUX_COMMAND_CANCEL_FWD;
Greg Hartman9768ca42017-06-22 20:49:52 -0700668 else if (strcmp(optarg, "proxy") == 0)
669 muxclient_command = SSHMUX_COMMAND_PROXY;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800670 else
671 fatal("Invalid multiplex command.");
672 break;
673 case 'P': /* deprecated */
674 options.use_privileged_port = 0;
675 break;
Adam Langleyd0592972015-03-30 14:49:51 -0700676 case 'Q':
677 cp = NULL;
678 if (strcmp(optarg, "cipher") == 0)
679 cp = cipher_alg_list('\n', 0);
680 else if (strcmp(optarg, "cipher-auth") == 0)
681 cp = cipher_alg_list('\n', 1);
682 else if (strcmp(optarg, "mac") == 0)
683 cp = mac_alg_list('\n');
684 else if (strcmp(optarg, "kex") == 0)
685 cp = kex_alg_list('\n');
686 else if (strcmp(optarg, "key") == 0)
Greg Hartman9768ca42017-06-22 20:49:52 -0700687 cp = sshkey_alg_list(0, 0, 0, '\n');
Adam Langleyd0592972015-03-30 14:49:51 -0700688 else if (strcmp(optarg, "key-cert") == 0)
Greg Hartman9768ca42017-06-22 20:49:52 -0700689 cp = sshkey_alg_list(1, 0, 0, '\n');
Adam Langleyd0592972015-03-30 14:49:51 -0700690 else if (strcmp(optarg, "key-plain") == 0)
Greg Hartman9768ca42017-06-22 20:49:52 -0700691 cp = sshkey_alg_list(0, 1, 0, '\n');
Adam Langleyd0592972015-03-30 14:49:51 -0700692 else if (strcmp(optarg, "protocol-version") == 0) {
693#ifdef WITH_SSH1
694 cp = xstrdup("1\n2");
695#else
696 cp = xstrdup("2");
697#endif
698 }
699 if (cp == NULL)
700 fatal("Unsupported query \"%s\"", optarg);
701 printf("%s\n", cp);
702 free(cp);
703 exit(0);
704 break;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800705 case 'a':
706 options.forward_agent = 0;
707 break;
708 case 'A':
709 options.forward_agent = 1;
710 break;
711 case 'k':
712 options.gss_deleg_creds = 0;
713 break;
714 case 'K':
715 options.gss_authentication = 1;
716 options.gss_deleg_creds = 1;
717 break;
718 case 'i':
Greg Hartman9768ca42017-06-22 20:49:52 -0700719 p = tilde_expand_filename(optarg, original_real_uid);
720 if (stat(p, &st) < 0)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800721 fprintf(stderr, "Warning: Identity file %s "
Greg Hartman9768ca42017-06-22 20:49:52 -0700722 "not accessible: %s.\n", p,
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800723 strerror(errno));
Greg Hartman9768ca42017-06-22 20:49:52 -0700724 else
725 add_identity_file(&options, NULL, p, 1);
726 free(p);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800727 break;
728 case 'I':
729#ifdef ENABLE_PKCS11
Greg Hartman9768ca42017-06-22 20:49:52 -0700730 free(options.pkcs11_provider);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800731 options.pkcs11_provider = xstrdup(optarg);
732#else
733 fprintf(stderr, "no support for PKCS#11.\n");
734#endif
735 break;
Greg Hartman9768ca42017-06-22 20:49:52 -0700736 case 'J':
737 if (options.jump_host != NULL)
738 fatal("Only a single -J option permitted");
739 if (options.proxy_command != NULL)
740 fatal("Cannot specify -J with ProxyCommand");
741 if (parse_jump(optarg, &options, 1) == -1)
742 fatal("Invalid -J argument");
743 options.proxy_command = xstrdup("none");
744 break;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800745 case 't':
746 if (options.request_tty == REQUEST_TTY_YES)
747 options.request_tty = REQUEST_TTY_FORCE;
748 else
749 options.request_tty = REQUEST_TTY_YES;
750 break;
751 case 'v':
752 if (debug_flag == 0) {
753 debug_flag = 1;
754 options.log_level = SYSLOG_LEVEL_DEBUG1;
755 } else {
Greg Hartman9768ca42017-06-22 20:49:52 -0700756 if (options.log_level < SYSLOG_LEVEL_DEBUG3) {
757 debug_flag++;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800758 options.log_level++;
Greg Hartman9768ca42017-06-22 20:49:52 -0700759 }
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800760 }
Adam Langleyd0592972015-03-30 14:49:51 -0700761 break;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800762 case 'V':
763 fprintf(stderr, "%s, %s\n",
Adam Langleyd0592972015-03-30 14:49:51 -0700764 SSH_RELEASE,
765#ifdef WITH_OPENSSL
766 SSLeay_version(SSLEAY_VERSION)
767#else
768 "without OpenSSL"
769#endif
770 );
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800771 if (opt == 'V')
772 exit(0);
773 break;
774 case 'w':
775 if (options.tun_open == -1)
776 options.tun_open = SSH_TUNMODE_DEFAULT;
777 options.tun_local = a2tun(optarg, &options.tun_remote);
778 if (options.tun_local == SSH_TUNID_ERR) {
779 fprintf(stderr,
780 "Bad tun device '%s'\n", optarg);
781 exit(255);
782 }
783 break;
784 case 'W':
Greg Hartman9768ca42017-06-22 20:49:52 -0700785 if (options.stdio_forward_host != NULL)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800786 fatal("stdio forward already specified");
787 if (muxclient_command != 0)
788 fatal("Cannot specify stdio forward with -O");
789 if (parse_forward(&fwd, optarg, 1, 0)) {
Greg Hartman9768ca42017-06-22 20:49:52 -0700790 options.stdio_forward_host = fwd.listen_host;
791 options.stdio_forward_port = fwd.listen_port;
Adam Langleyd0592972015-03-30 14:49:51 -0700792 free(fwd.connect_host);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800793 } else {
794 fprintf(stderr,
795 "Bad stdio forwarding specification '%s'\n",
796 optarg);
797 exit(255);
798 }
799 options.request_tty = REQUEST_TTY_NO;
800 no_shell_flag = 1;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800801 break;
802 case 'q':
803 options.log_level = SYSLOG_LEVEL_QUIET;
804 break;
805 case 'e':
806 if (optarg[0] == '^' && optarg[2] == 0 &&
807 (u_char) optarg[1] >= 64 &&
808 (u_char) optarg[1] < 128)
809 options.escape_char = (u_char) optarg[1] & 31;
810 else if (strlen(optarg) == 1)
811 options.escape_char = (u_char) optarg[0];
812 else if (strcmp(optarg, "none") == 0)
813 options.escape_char = SSH_ESCAPECHAR_NONE;
814 else {
815 fprintf(stderr, "Bad escape character '%s'.\n",
816 optarg);
817 exit(255);
818 }
819 break;
820 case 'c':
Greg Hartmanccacbc92016-02-03 09:59:44 -0800821 if (ciphers_valid(*optarg == '+' ?
822 optarg + 1 : optarg)) {
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800823 /* SSH2 only */
Greg Hartman9768ca42017-06-22 20:49:52 -0700824 free(options.ciphers);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800825 options.ciphers = xstrdup(optarg);
826 options.cipher = SSH_CIPHER_INVALID;
Greg Hartmanccacbc92016-02-03 09:59:44 -0800827 break;
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800828 }
Greg Hartmanccacbc92016-02-03 09:59:44 -0800829 /* SSH1 only */
830 options.cipher = cipher_number(optarg);
831 if (options.cipher == -1) {
832 fprintf(stderr, "Unknown cipher type '%s'\n",
833 optarg);
834 exit(255);
835 }
836 if (options.cipher == SSH_CIPHER_3DES)
837 options.ciphers = xstrdup("3des-cbc");
838 else if (options.cipher == SSH_CIPHER_BLOWFISH)
839 options.ciphers = xstrdup("blowfish-cbc");
840 else
841 options.ciphers = xstrdup(KEX_CLIENT_ENCRYPT);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800842 break;
843 case 'm':
Greg Hartman9768ca42017-06-22 20:49:52 -0700844 if (mac_valid(optarg)) {
845 free(options.macs);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800846 options.macs = xstrdup(optarg);
Greg Hartman9768ca42017-06-22 20:49:52 -0700847 } else {
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800848 fprintf(stderr, "Unknown mac type '%s'\n",
849 optarg);
850 exit(255);
851 }
852 break;
853 case 'M':
854 if (options.control_master == SSHCTL_MASTER_YES)
855 options.control_master = SSHCTL_MASTER_ASK;
856 else
857 options.control_master = SSHCTL_MASTER_YES;
858 break;
859 case 'p':
860 options.port = a2port(optarg);
861 if (options.port <= 0) {
862 fprintf(stderr, "Bad port '%s'\n", optarg);
863 exit(255);
864 }
865 break;
866 case 'l':
867 options.user = optarg;
868 break;
869
870 case 'L':
871 if (parse_forward(&fwd, optarg, 0, 0))
872 add_local_forward(&options, &fwd);
873 else {
874 fprintf(stderr,
875 "Bad local forwarding specification '%s'\n",
876 optarg);
877 exit(255);
878 }
879 break;
880
881 case 'R':
882 if (parse_forward(&fwd, optarg, 0, 1)) {
883 add_remote_forward(&options, &fwd);
884 } else {
885 fprintf(stderr,
886 "Bad remote forwarding specification "
887 "'%s'\n", optarg);
888 exit(255);
889 }
890 break;
891
892 case 'D':
893 if (parse_forward(&fwd, optarg, 1, 0)) {
894 add_local_forward(&options, &fwd);
895 } else {
896 fprintf(stderr,
897 "Bad dynamic forwarding specification "
898 "'%s'\n", optarg);
899 exit(255);
900 }
901 break;
902
903 case 'C':
904 options.compression = 1;
905 break;
906 case 'N':
907 no_shell_flag = 1;
908 options.request_tty = REQUEST_TTY_NO;
909 break;
910 case 'T':
911 options.request_tty = REQUEST_TTY_NO;
912 break;
913 case 'o':
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800914 line = xstrdup(optarg);
Adam Langleyd0592972015-03-30 14:49:51 -0700915 if (process_config_line(&options, pw,
916 host ? host : "", host ? host : "", line,
917 "command-line", 0, NULL, SSHCONF_USERCONF) != 0)
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800918 exit(255);
Adam Langleyd0592972015-03-30 14:49:51 -0700919 free(line);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800920 break;
921 case 's':
922 subsystem_flag = 1;
923 break;
924 case 'S':
Greg Hartman9768ca42017-06-22 20:49:52 -0700925 free(options.control_path);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800926 options.control_path = xstrdup(optarg);
927 break;
928 case 'b':
929 options.bind_address = optarg;
930 break;
931 case 'F':
932 config = optarg;
933 break;
934 default:
935 usage();
936 }
937 }
938
939 ac -= optind;
940 av += optind;
941
942 if (ac > 0 && !host) {
943 if (strrchr(*av, '@')) {
944 p = xstrdup(*av);
945 cp = strrchr(p, '@');
946 if (cp == NULL || cp == p)
947 usage();
948 options.user = p;
949 *cp = '\0';
Adam Langleyd0592972015-03-30 14:49:51 -0700950 host = xstrdup(++cp);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800951 } else
Adam Langleyd0592972015-03-30 14:49:51 -0700952 host = xstrdup(*av);
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800953 if (ac > 1) {
954 optind = optreset = 1;
955 goto again;
956 }
957 ac--, av++;
958 }
959
960 /* Check that we got a host name. */
961 if (!host)
962 usage();
963
Adam Langleyd0592972015-03-30 14:49:51 -0700964 host_arg = xstrdup(host);
965
966#ifdef WITH_OPENSSL
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800967 OpenSSL_add_all_algorithms();
968 ERR_load_crypto_strings();
Adam Langleyd0592972015-03-30 14:49:51 -0700969#endif
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800970
971 /* Initialize the command to execute on remote host. */
972 buffer_init(&command);
973
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800974 /*
975 * Save the command to execute on the remote host in a buffer. There
976 * is no limit on the length of the command, except by the maximum
977 * packet size. Also sets the tty flag if there is no command.
978 */
979 if (!ac) {
980 /* No command specified - execute shell on a tty. */
Greg Hartmanbd77cf72015-02-25 13:21:06 -0800981 if (subsystem_flag) {
982 fprintf(stderr,
983 "You must specify a subsystem to invoke.\n");
984 usage();
985 }
986 } else {
987 /* A command has been specified. Store it into the buffer. */
988 for (i = 0; i < ac; i++) {
989 if (i)
990 buffer_append(&command, " ", 1);
991 buffer_append(&command, av[i], strlen(av[i]));
992 }
993 }
994
995 /* Cannot fork to background if no command. */
996 if (fork_after_authentication_flag && buffer_len(&command) == 0 &&
997 !no_shell_flag)
998 fatal("Cannot fork into background without a command "
999 "to execute.");
1000
Adam Langleyd0592972015-03-30 14:49:51 -07001001 /*
1002 * Initialize "log" output. Since we are the client all output
1003 * goes to stderr unless otherwise specified by -y or -E.
1004 */
1005 if (use_syslog && logfile != NULL)
1006 fatal("Can't specify both -y and -E");
Greg Hartman9768ca42017-06-22 20:49:52 -07001007 if (logfile != NULL)
Adam Langleyd0592972015-03-30 14:49:51 -07001008 log_redirect_stderr_to(logfile);
Adam Langleyd0592972015-03-30 14:49:51 -07001009 log_init(argv0,
1010 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level,
1011 SYSLOG_FACILITY_USER, !use_syslog);
1012
1013 if (debug_flag)
1014 logit("%s, %s", SSH_RELEASE,
1015#ifdef WITH_OPENSSL
1016 SSLeay_version(SSLEAY_VERSION)
1017#else
1018 "without OpenSSL"
1019#endif
1020 );
1021
1022 /* Parse the configuration files */
1023 process_config_files(host_arg, pw, 0);
1024
1025 /* Hostname canonicalisation needs a few options filled. */
1026 fill_default_options_for_canonicalization(&options);
1027
1028 /* If the user has replaced the hostname then take it into use now */
1029 if (options.hostname != NULL) {
1030 /* NB. Please keep in sync with readconf.c:match_cfg_line() */
1031 cp = percent_expand(options.hostname,
1032 "h", host, (char *)NULL);
1033 free(host);
1034 host = cp;
1035 free(options.hostname);
1036 options.hostname = xstrdup(host);
1037 }
1038
1039 /* If canonicalization requested then try to apply it */
1040 lowercase(host);
1041 if (options.canonicalize_hostname != SSH_CANONICALISE_NO)
1042 addrs = resolve_canonicalize(&host, options.port);
1043
1044 /*
1045 * If CanonicalizePermittedCNAMEs have been specified but
1046 * other canonicalization did not happen (by not being requested
1047 * or by failing with fallback) then the hostname may still be changed
1048 * as a result of CNAME following.
1049 *
1050 * Try to resolve the bare hostname name using the system resolver's
1051 * usual search rules and then apply the CNAME follow rules.
1052 *
1053 * Skip the lookup if a ProxyCommand is being used unless the user
1054 * has specifically requested canonicalisation for this case via
1055 * CanonicalizeHostname=always
1056 */
Greg Hartman9768ca42017-06-22 20:49:52 -07001057 direct = option_clear_or_none(options.proxy_command) &&
1058 options.jump_host == NULL;
1059 if (addrs == NULL && options.num_permitted_cnames != 0 && (direct ||
1060 options.canonicalize_hostname == SSH_CANONICALISE_ALWAYS)) {
Adam Langleyd0592972015-03-30 14:49:51 -07001061 if ((addrs = resolve_host(host, options.port,
1062 option_clear_or_none(options.proxy_command),
1063 cname, sizeof(cname))) == NULL) {
1064 /* Don't fatal proxied host names not in the DNS */
1065 if (option_clear_or_none(options.proxy_command))
1066 cleanup_exit(255); /* logged in resolve_host */
1067 } else
Greg Hartman9768ca42017-06-22 20:49:52 -07001068 check_follow_cname(direct, &host, cname);
Adam Langleyd0592972015-03-30 14:49:51 -07001069 }
1070
1071 /*
1072 * If canonicalisation is enabled then re-parse the configuration
1073 * files as new stanzas may match.
1074 */
1075 if (options.canonicalize_hostname != 0) {
1076 debug("Re-reading configuration after hostname "
1077 "canonicalisation");
1078 free(options.hostname);
1079 options.hostname = xstrdup(host);
1080 process_config_files(host_arg, pw, 1);
1081 /*
1082 * Address resolution happens early with canonicalisation
1083 * enabled and the port number may have changed since, so
1084 * reset it in address list
1085 */
1086 if (addrs != NULL && options.port > 0)
1087 set_addrinfo_port(addrs, options.port);
1088 }
1089
1090 /* Fill configuration defaults. */
1091 fill_default_options(&options);
1092
Greg Hartman9768ca42017-06-22 20:49:52 -07001093 /*
1094 * If ProxyJump option specified, then construct a ProxyCommand now.
1095 */
1096 if (options.jump_host != NULL) {
1097 char port_s[8];
1098
1099 /* Consistency check */
1100 if (options.proxy_command != NULL)
1101 fatal("inconsistent options: ProxyCommand+ProxyJump");
1102 /* Never use FD passing for ProxyJump */
1103 options.proxy_use_fdpass = 0;
1104 snprintf(port_s, sizeof(port_s), "%d", options.jump_port);
1105 xasprintf(&options.proxy_command,
1106 "ssh%s%s%s%s%s%s%s%s%s%.*s -W '[%%h]:%%p' %s",
1107 /* Optional "-l user" argument if jump_user set */
1108 options.jump_user == NULL ? "" : " -l ",
1109 options.jump_user == NULL ? "" : options.jump_user,
1110 /* Optional "-p port" argument if jump_port set */
1111 options.jump_port <= 0 ? "" : " -p ",
1112 options.jump_port <= 0 ? "" : port_s,
1113 /* Optional additional jump hosts ",..." */
1114 options.jump_extra == NULL ? "" : " -J ",
1115 options.jump_extra == NULL ? "" : options.jump_extra,
1116 /* Optional "-F" argumment if -F specified */
1117 config == NULL ? "" : " -F ",
1118 config == NULL ? "" : config,
1119 /* Optional "-v" arguments if -v set */
1120 debug_flag ? " -" : "",
1121 debug_flag, "vvv",
1122 /* Mandatory hostname */
1123 options.jump_host);
1124 debug("Setting implicit ProxyCommand from ProxyJump: %s",
1125 options.proxy_command);
1126 }
1127
Adam Langleyd0592972015-03-30 14:49:51 -07001128 if (options.port == 0)
1129 options.port = default_ssh_port();
1130 channel_set_af(options.address_family);
1131
1132 /* Tidy and check options */
1133 if (options.host_key_alias != NULL)
1134 lowercase(options.host_key_alias);
1135 if (options.proxy_command != NULL &&
1136 strcmp(options.proxy_command, "-") == 0 &&
1137 options.proxy_use_fdpass)
1138 fatal("ProxyCommand=- and ProxyUseFDPass are incompatible");
1139 if (options.control_persist &&
1140 options.update_hostkeys == SSH_UPDATE_HOSTKEYS_ASK) {
1141 debug("UpdateHostKeys=ask is incompatible with ControlPersist; "
1142 "disabling");
1143 options.update_hostkeys = 0;
1144 }
Greg Hartman9768ca42017-06-22 20:49:52 -07001145 if (options.connection_attempts <= 0)
1146 fatal("Invalid number of ConnectionAttempts");
Adam Langleyd0592972015-03-30 14:49:51 -07001147#ifndef HAVE_CYGWIN
1148 if (original_effective_uid != 0)
1149 options.use_privileged_port = 0;
1150#endif
1151
1152 /* reinit */
1153 log_init(argv0, options.log_level, SYSLOG_FACILITY_USER, !use_syslog);
1154
1155 if (options.request_tty == REQUEST_TTY_YES ||
1156 options.request_tty == REQUEST_TTY_FORCE)
1157 tty_flag = 1;
1158
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001159 /* Allocate a tty by default if no command specified. */
1160 if (buffer_len(&command) == 0)
1161 tty_flag = options.request_tty != REQUEST_TTY_NO;
1162
1163 /* Force no tty */
Greg Hartman9768ca42017-06-22 20:49:52 -07001164 if (options.request_tty == REQUEST_TTY_NO ||
1165 (muxclient_command && muxclient_command != SSHMUX_COMMAND_PROXY))
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001166 tty_flag = 0;
1167 /* Do not allocate a tty if stdin is not a tty. */
1168 if ((!isatty(fileno(stdin)) || stdin_null_flag) &&
1169 options.request_tty != REQUEST_TTY_FORCE) {
1170 if (tty_flag)
1171 logit("Pseudo-terminal will not be allocated because "
1172 "stdin is not a terminal.");
1173 tty_flag = 0;
1174 }
1175
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001176 seed_rng();
1177
1178 if (options.user == NULL)
1179 options.user = xstrdup(pw->pw_name);
1180
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001181 if (gethostname(thishost, sizeof(thishost)) == -1)
1182 fatal("gethostname: %s", strerror(errno));
1183 strlcpy(shorthost, thishost, sizeof(shorthost));
1184 shorthost[strcspn(thishost, ".")] = '\0';
1185 snprintf(portstr, sizeof(portstr), "%d", options.port);
Greg Hartman9768ca42017-06-22 20:49:52 -07001186 snprintf(uidstr, sizeof(uidstr), "%d", pw->pw_uid);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001187
Adam Langleyd0592972015-03-30 14:49:51 -07001188 if ((md = ssh_digest_start(SSH_DIGEST_SHA1)) == NULL ||
1189 ssh_digest_update(md, thishost, strlen(thishost)) < 0 ||
1190 ssh_digest_update(md, host, strlen(host)) < 0 ||
1191 ssh_digest_update(md, portstr, strlen(portstr)) < 0 ||
1192 ssh_digest_update(md, options.user, strlen(options.user)) < 0 ||
1193 ssh_digest_final(md, conn_hash, sizeof(conn_hash)) < 0)
1194 fatal("%s: mux digest failed", __func__);
1195 ssh_digest_free(md);
1196 conn_hash_hex = tohex(conn_hash, ssh_digest_bytes(SSH_DIGEST_SHA1));
1197
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001198 if (options.local_command != NULL) {
1199 debug3("expanding LocalCommand: %s", options.local_command);
1200 cp = options.local_command;
Adam Langleyd0592972015-03-30 14:49:51 -07001201 options.local_command = percent_expand(cp,
1202 "C", conn_hash_hex,
1203 "L", shorthost,
1204 "d", pw->pw_dir,
1205 "h", host,
1206 "l", thishost,
1207 "n", host_arg,
1208 "p", portstr,
1209 "r", options.user,
1210 "u", pw->pw_name,
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001211 (char *)NULL);
1212 debug3("expanded LocalCommand: %s", options.local_command);
Adam Langleyd0592972015-03-30 14:49:51 -07001213 free(cp);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001214 }
1215
1216 if (options.control_path != NULL) {
1217 cp = tilde_expand_filename(options.control_path,
1218 original_real_uid);
Adam Langleyd0592972015-03-30 14:49:51 -07001219 free(options.control_path);
1220 options.control_path = percent_expand(cp,
1221 "C", conn_hash_hex,
1222 "L", shorthost,
1223 "h", host,
1224 "l", thishost,
1225 "n", host_arg,
1226 "p", portstr,
1227 "r", options.user,
1228 "u", pw->pw_name,
Greg Hartman9768ca42017-06-22 20:49:52 -07001229 "i", uidstr,
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001230 (char *)NULL);
Adam Langleyd0592972015-03-30 14:49:51 -07001231 free(cp);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001232 }
Adam Langleyd0592972015-03-30 14:49:51 -07001233 free(conn_hash_hex);
1234
1235 if (config_test) {
1236 dump_client_config(&options, host);
1237 exit(0);
1238 }
1239
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001240 if (muxclient_command != 0 && options.control_path == NULL)
1241 fatal("No ControlPath specified for \"-O\" command");
Greg Hartman9768ca42017-06-22 20:49:52 -07001242 if (options.control_path != NULL) {
1243 int sock;
1244 if ((sock = muxclient(options.control_path)) >= 0) {
1245 packet_set_connection(sock, sock);
1246 ssh = active_state; /* XXX */
1247 enable_compat20(); /* XXX */
1248 packet_set_mux();
1249 goto skip_connect;
1250 }
1251 }
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001252
Adam Langleyd0592972015-03-30 14:49:51 -07001253 /*
1254 * If hostname canonicalisation was not enabled, then we may not
1255 * have yet resolved the hostname. Do so now.
1256 */
1257 if (addrs == NULL && options.proxy_command == NULL) {
Greg Hartman9768ca42017-06-22 20:49:52 -07001258 debug2("resolving \"%s\" port %d", host, options.port);
Adam Langleyd0592972015-03-30 14:49:51 -07001259 if ((addrs = resolve_host(host, options.port, 1,
1260 cname, sizeof(cname))) == NULL)
1261 cleanup_exit(255); /* resolve_host logs the error */
1262 }
1263
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001264 timeout_ms = options.connection_timeout * 1000;
1265
1266 /* Open a connection to the remote host. */
Adam Langleyd0592972015-03-30 14:49:51 -07001267 if (ssh_connect(host, addrs, &hostaddr, options.port,
1268 options.address_family, options.connection_attempts,
1269 &timeout_ms, options.tcp_keep_alive,
1270 options.use_privileged_port) != 0)
1271 exit(255);
1272
1273 if (addrs != NULL)
1274 freeaddrinfo(addrs);
1275
1276 packet_set_timeout(options.server_alive_interval,
1277 options.server_alive_count_max);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001278
Greg Hartman9768ca42017-06-22 20:49:52 -07001279 ssh = active_state; /* XXX */
1280
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001281 if (timeout_ms > 0)
1282 debug3("timeout: %d ms remain after connect", timeout_ms);
1283
1284 /*
1285 * If we successfully made the connection, load the host private key
1286 * in case we will need it later for combined rsa-rhosts
1287 * authentication. This must be done before releasing extra
1288 * privileges, because the file is only readable by root.
1289 * If we cannot access the private keys, load the public keys
1290 * instead and try to execute the ssh-keysign helper instead.
1291 */
1292 sensitive_data.nkeys = 0;
1293 sensitive_data.keys = NULL;
1294 sensitive_data.external_keysign = 0;
1295 if (options.rhosts_rsa_authentication ||
1296 options.hostbased_authentication) {
Adam Langleyd0592972015-03-30 14:49:51 -07001297 sensitive_data.nkeys = 9;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001298 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
1299 sizeof(Key));
1300 for (i = 0; i < sensitive_data.nkeys; i++)
1301 sensitive_data.keys[i] = NULL;
1302
1303 PRIV_START;
Greg Hartman9768ca42017-06-22 20:49:52 -07001304#if WITH_SSH1
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001305 sensitive_data.keys[0] = key_load_private_type(KEY_RSA1,
1306 _PATH_HOST_KEY_FILE, "", NULL, NULL);
Greg Hartman9768ca42017-06-22 20:49:52 -07001307#endif
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001308#ifdef OPENSSL_HAS_ECC
Adam Langleyd0592972015-03-30 14:49:51 -07001309 sensitive_data.keys[1] = key_load_private_cert(KEY_ECDSA,
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001310 _PATH_HOST_ECDSA_KEY_FILE, "", NULL);
1311#endif
Adam Langleyd0592972015-03-30 14:49:51 -07001312 sensitive_data.keys[2] = key_load_private_cert(KEY_ED25519,
1313 _PATH_HOST_ED25519_KEY_FILE, "", NULL);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001314 sensitive_data.keys[3] = key_load_private_cert(KEY_RSA,
1315 _PATH_HOST_RSA_KEY_FILE, "", NULL);
Adam Langleyd0592972015-03-30 14:49:51 -07001316 sensitive_data.keys[4] = key_load_private_cert(KEY_DSA,
1317 _PATH_HOST_DSA_KEY_FILE, "", NULL);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001318#ifdef OPENSSL_HAS_ECC
1319 sensitive_data.keys[5] = key_load_private_type(KEY_ECDSA,
1320 _PATH_HOST_ECDSA_KEY_FILE, "", NULL, NULL);
1321#endif
Adam Langleyd0592972015-03-30 14:49:51 -07001322 sensitive_data.keys[6] = key_load_private_type(KEY_ED25519,
1323 _PATH_HOST_ED25519_KEY_FILE, "", NULL, NULL);
1324 sensitive_data.keys[7] = key_load_private_type(KEY_RSA,
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001325 _PATH_HOST_RSA_KEY_FILE, "", NULL, NULL);
Adam Langleyd0592972015-03-30 14:49:51 -07001326 sensitive_data.keys[8] = key_load_private_type(KEY_DSA,
1327 _PATH_HOST_DSA_KEY_FILE, "", NULL, NULL);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001328 PRIV_END;
1329
1330 if (options.hostbased_authentication == 1 &&
1331 sensitive_data.keys[0] == NULL &&
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001332 sensitive_data.keys[5] == NULL &&
Adam Langleyd0592972015-03-30 14:49:51 -07001333 sensitive_data.keys[6] == NULL &&
1334 sensitive_data.keys[7] == NULL &&
1335 sensitive_data.keys[8] == NULL) {
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001336#ifdef OPENSSL_HAS_ECC
Adam Langleyd0592972015-03-30 14:49:51 -07001337 sensitive_data.keys[1] = key_load_cert(
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001338 _PATH_HOST_ECDSA_KEY_FILE);
1339#endif
Adam Langleyd0592972015-03-30 14:49:51 -07001340 sensitive_data.keys[2] = key_load_cert(
1341 _PATH_HOST_ED25519_KEY_FILE);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001342 sensitive_data.keys[3] = key_load_cert(
1343 _PATH_HOST_RSA_KEY_FILE);
Adam Langleyd0592972015-03-30 14:49:51 -07001344 sensitive_data.keys[4] = key_load_cert(
1345 _PATH_HOST_DSA_KEY_FILE);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001346#ifdef OPENSSL_HAS_ECC
1347 sensitive_data.keys[5] = key_load_public(
1348 _PATH_HOST_ECDSA_KEY_FILE, NULL);
1349#endif
1350 sensitive_data.keys[6] = key_load_public(
Adam Langleyd0592972015-03-30 14:49:51 -07001351 _PATH_HOST_ED25519_KEY_FILE, NULL);
1352 sensitive_data.keys[7] = key_load_public(
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001353 _PATH_HOST_RSA_KEY_FILE, NULL);
Adam Langleyd0592972015-03-30 14:49:51 -07001354 sensitive_data.keys[8] = key_load_public(
1355 _PATH_HOST_DSA_KEY_FILE, NULL);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001356 sensitive_data.external_keysign = 1;
1357 }
1358 }
1359 /*
1360 * Get rid of any extra privileges that we may have. We will no
1361 * longer need them. Also, extra privileges could make it very hard
1362 * to read identity files and other non-world-readable files from the
1363 * user's home directory if it happens to be on a NFS volume where
1364 * root is mapped to nobody.
1365 */
1366 if (original_effective_uid == 0) {
1367 PRIV_START;
1368 permanently_set_uid(pw);
1369 }
1370
1371 /*
1372 * Now that we are back to our own permissions, create ~/.ssh
1373 * directory if it doesn't already exist.
1374 */
Adam Langleyd0592972015-03-30 14:49:51 -07001375 if (config == NULL) {
1376 r = snprintf(buf, sizeof buf, "%s%s%s", pw->pw_dir,
1377 strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR);
1378 if (r > 0 && (size_t)r < sizeof(buf) && stat(buf, &st) < 0) {
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001379#ifdef WITH_SELINUX
Adam Langleyd0592972015-03-30 14:49:51 -07001380 ssh_selinux_setfscreatecon(buf);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001381#endif
Adam Langleyd0592972015-03-30 14:49:51 -07001382 if (mkdir(buf, 0700) < 0)
1383 error("Could not create directory '%.200s'.",
1384 buf);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001385#ifdef WITH_SELINUX
Adam Langleyd0592972015-03-30 14:49:51 -07001386 ssh_selinux_setfscreatecon(NULL);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001387#endif
Adam Langleyd0592972015-03-30 14:49:51 -07001388 }
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001389 }
1390 /* load options.identity_files */
1391 load_public_identity_files();
1392
Greg Hartman9768ca42017-06-22 20:49:52 -07001393 /* optionally set the SSH_AUTHSOCKET_ENV_NAME varibale */
1394 if (options.identity_agent &&
1395 strcmp(options.identity_agent, SSH_AUTHSOCKET_ENV_NAME) != 0) {
1396 if (strcmp(options.identity_agent, "none") == 0) {
1397 unsetenv(SSH_AUTHSOCKET_ENV_NAME);
1398 } else {
1399 p = tilde_expand_filename(options.identity_agent,
1400 original_real_uid);
1401 cp = percent_expand(p, "d", pw->pw_dir,
1402 "u", pw->pw_name, "l", thishost, "h", host,
1403 "r", options.user, (char *)NULL);
1404 setenv(SSH_AUTHSOCKET_ENV_NAME, cp, 1);
1405 free(cp);
1406 free(p);
1407 }
1408 }
1409
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001410 /* Expand ~ in known host file names. */
1411 tilde_expand_paths(options.system_hostfiles,
1412 options.num_system_hostfiles);
1413 tilde_expand_paths(options.user_hostfiles, options.num_user_hostfiles);
1414
1415 signal(SIGPIPE, SIG_IGN); /* ignore SIGPIPE early */
1416 signal(SIGCHLD, main_sigchld_handler);
1417
1418 /* Log into the remote system. Never returns if the login fails. */
1419 ssh_login(&sensitive_data, host, (struct sockaddr *)&hostaddr,
1420 options.port, pw, timeout_ms);
1421
1422 if (packet_connection_is_on_socket()) {
1423 verbose("Authenticated to %s ([%s]:%d).", host,
Greg Hartman9768ca42017-06-22 20:49:52 -07001424 ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001425 } else {
1426 verbose("Authenticated to %s (via proxy).", host);
1427 }
1428
1429 /* We no longer need the private host keys. Clear them now. */
1430 if (sensitive_data.nkeys != 0) {
1431 for (i = 0; i < sensitive_data.nkeys; i++) {
1432 if (sensitive_data.keys[i] != NULL) {
1433 /* Destroys contents safely */
1434 debug3("clear hostkey %d", i);
1435 key_free(sensitive_data.keys[i]);
1436 sensitive_data.keys[i] = NULL;
1437 }
1438 }
Adam Langleyd0592972015-03-30 14:49:51 -07001439 free(sensitive_data.keys);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001440 }
1441 for (i = 0; i < options.num_identity_files; i++) {
Adam Langleyd0592972015-03-30 14:49:51 -07001442 free(options.identity_files[i]);
1443 options.identity_files[i] = NULL;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001444 if (options.identity_keys[i]) {
1445 key_free(options.identity_keys[i]);
1446 options.identity_keys[i] = NULL;
1447 }
1448 }
Greg Hartman9768ca42017-06-22 20:49:52 -07001449 for (i = 0; i < options.num_certificate_files; i++) {
1450 free(options.certificate_files[i]);
1451 options.certificate_files[i] = NULL;
1452 }
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001453
Greg Hartman9768ca42017-06-22 20:49:52 -07001454 skip_connect:
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001455 exit_status = compat20 ? ssh_session2() : ssh_session();
1456 packet_close();
1457
1458 if (options.control_path != NULL && muxserver_sock != -1)
1459 unlink(options.control_path);
1460
1461 /* Kill ProxyCommand if it is running. */
1462 ssh_kill_proxy_command();
1463
1464 return exit_status;
1465}
1466
1467static void
1468control_persist_detach(void)
1469{
1470 pid_t pid;
Greg Hartman9768ca42017-06-22 20:49:52 -07001471 int devnull, keep_stderr;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001472
1473 debug("%s: backgrounding master process", __func__);
1474
1475 /*
1476 * master (current process) into the background, and make the
1477 * foreground process a client of the backgrounded master.
1478 */
1479 switch ((pid = fork())) {
1480 case -1:
1481 fatal("%s: fork: %s", __func__, strerror(errno));
1482 case 0:
1483 /* Child: master process continues mainloop */
1484 break;
1485 default:
1486 /* Parent: set up mux slave to connect to backgrounded master */
1487 debug2("%s: background process is %ld", __func__, (long)pid);
1488 stdin_null_flag = ostdin_null_flag;
1489 options.request_tty = orequest_tty;
1490 tty_flag = otty_flag;
1491 close(muxserver_sock);
1492 muxserver_sock = -1;
1493 options.control_master = SSHCTL_MASTER_NO;
1494 muxclient(options.control_path);
1495 /* muxclient() doesn't return on success. */
1496 fatal("Failed to connect to new control master");
1497 }
1498 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
1499 error("%s: open(\"/dev/null\"): %s", __func__,
1500 strerror(errno));
1501 } else {
Greg Hartman9768ca42017-06-22 20:49:52 -07001502 keep_stderr = log_is_on_stderr() && debug_flag;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001503 if (dup2(devnull, STDIN_FILENO) == -1 ||
Greg Hartman9768ca42017-06-22 20:49:52 -07001504 dup2(devnull, STDOUT_FILENO) == -1 ||
1505 (!keep_stderr && dup2(devnull, STDERR_FILENO) == -1))
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001506 error("%s: dup2: %s", __func__, strerror(errno));
1507 if (devnull > STDERR_FILENO)
1508 close(devnull);
1509 }
Adam Langleyd0592972015-03-30 14:49:51 -07001510 daemon(1, 1);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001511 setproctitle("%s [mux]", options.control_path);
1512}
1513
1514/* Do fork() after authentication. Used by "ssh -f" */
1515static void
1516fork_postauth(void)
1517{
1518 if (need_controlpersist_detach)
1519 control_persist_detach();
1520 debug("forking to background");
1521 fork_after_authentication_flag = 0;
1522 if (daemon(1, 1) < 0)
1523 fatal("daemon() failed: %.200s", strerror(errno));
1524}
1525
1526/* Callback for remote forward global requests */
1527static void
1528ssh_confirm_remote_forward(int type, u_int32_t seq, void *ctxt)
1529{
Adam Langleyd0592972015-03-30 14:49:51 -07001530 struct Forward *rfwd = (struct Forward *)ctxt;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001531
1532 /* XXX verbose() on failure? */
Adam Langleyd0592972015-03-30 14:49:51 -07001533 debug("remote forward %s for: listen %s%s%d, connect %s:%d",
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001534 type == SSH2_MSG_REQUEST_SUCCESS ? "success" : "failure",
Adam Langleyd0592972015-03-30 14:49:51 -07001535 rfwd->listen_path ? rfwd->listen_path :
1536 rfwd->listen_host ? rfwd->listen_host : "",
1537 (rfwd->listen_path || rfwd->listen_host) ? ":" : "",
1538 rfwd->listen_port, rfwd->connect_path ? rfwd->connect_path :
1539 rfwd->connect_host, rfwd->connect_port);
1540 if (rfwd->listen_path == NULL && rfwd->listen_port == 0) {
1541 if (type == SSH2_MSG_REQUEST_SUCCESS) {
1542 rfwd->allocated_port = packet_get_int();
1543 logit("Allocated port %u for remote forward to %s:%d",
1544 rfwd->allocated_port,
1545 rfwd->connect_host, rfwd->connect_port);
1546 channel_update_permitted_opens(rfwd->handle,
1547 rfwd->allocated_port);
1548 } else {
1549 channel_update_permitted_opens(rfwd->handle, -1);
1550 }
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001551 }
1552
1553 if (type == SSH2_MSG_REQUEST_FAILURE) {
Adam Langleyd0592972015-03-30 14:49:51 -07001554 if (options.exit_on_forward_failure) {
1555 if (rfwd->listen_path != NULL)
1556 fatal("Error: remote port forwarding failed "
1557 "for listen path %s", rfwd->listen_path);
1558 else
1559 fatal("Error: remote port forwarding failed "
1560 "for listen port %d", rfwd->listen_port);
1561 } else {
1562 if (rfwd->listen_path != NULL)
1563 logit("Warning: remote port forwarding failed "
1564 "for listen path %s", rfwd->listen_path);
1565 else
1566 logit("Warning: remote port forwarding failed "
1567 "for listen port %d", rfwd->listen_port);
1568 }
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001569 }
1570 if (++remote_forward_confirms_received == options.num_remote_forwards) {
1571 debug("All remote forwarding requests processed");
1572 if (fork_after_authentication_flag)
1573 fork_postauth();
1574 }
1575}
1576
1577static void
1578client_cleanup_stdio_fwd(int id, void *arg)
1579{
1580 debug("stdio forwarding: done");
1581 cleanup_exit(0);
1582}
1583
Adam Langleyd0592972015-03-30 14:49:51 -07001584static void
1585ssh_stdio_confirm(int id, int success, void *arg)
1586{
1587 if (!success)
1588 fatal("stdio forwarding failed");
1589}
1590
1591static void
1592ssh_init_stdio_forwarding(void)
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001593{
1594 Channel *c;
1595 int in, out;
1596
Greg Hartman9768ca42017-06-22 20:49:52 -07001597 if (options.stdio_forward_host == NULL)
Adam Langleyd0592972015-03-30 14:49:51 -07001598 return;
1599 if (!compat20)
1600 fatal("stdio forwarding require Protocol 2");
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001601
Greg Hartman9768ca42017-06-22 20:49:52 -07001602 debug3("%s: %s:%d", __func__, options.stdio_forward_host,
1603 options.stdio_forward_port);
Adam Langleyd0592972015-03-30 14:49:51 -07001604
1605 if ((in = dup(STDIN_FILENO)) < 0 ||
1606 (out = dup(STDOUT_FILENO)) < 0)
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001607 fatal("channel_connect_stdio_fwd: dup() in/out failed");
Greg Hartman9768ca42017-06-22 20:49:52 -07001608 if ((c = channel_connect_stdio_fwd(options.stdio_forward_host,
1609 options.stdio_forward_port, in, out)) == NULL)
Adam Langleyd0592972015-03-30 14:49:51 -07001610 fatal("%s: channel_connect_stdio_fwd failed", __func__);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001611 channel_register_cleanup(c->self, client_cleanup_stdio_fwd, 0);
Adam Langleyd0592972015-03-30 14:49:51 -07001612 channel_register_open_confirm(c->self, ssh_stdio_confirm, NULL);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001613}
1614
1615static void
1616ssh_init_forwarding(void)
1617{
1618 int success = 0;
1619 int i;
1620
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001621 /* Initiate local TCP/IP port forwardings. */
1622 for (i = 0; i < options.num_local_forwards; i++) {
1623 debug("Local connections to %.200s:%d forwarded to remote "
1624 "address %.200s:%d",
Adam Langleyd0592972015-03-30 14:49:51 -07001625 (options.local_forwards[i].listen_path != NULL) ?
1626 options.local_forwards[i].listen_path :
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001627 (options.local_forwards[i].listen_host == NULL) ?
Adam Langleyd0592972015-03-30 14:49:51 -07001628 (options.fwd_opts.gateway_ports ? "*" : "LOCALHOST") :
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001629 options.local_forwards[i].listen_host,
1630 options.local_forwards[i].listen_port,
Adam Langleyd0592972015-03-30 14:49:51 -07001631 (options.local_forwards[i].connect_path != NULL) ?
1632 options.local_forwards[i].connect_path :
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001633 options.local_forwards[i].connect_host,
1634 options.local_forwards[i].connect_port);
1635 success += channel_setup_local_fwd_listener(
Adam Langleyd0592972015-03-30 14:49:51 -07001636 &options.local_forwards[i], &options.fwd_opts);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001637 }
1638 if (i > 0 && success != i && options.exit_on_forward_failure)
1639 fatal("Could not request local forwarding.");
1640 if (i > 0 && success == 0)
1641 error("Could not request local forwarding.");
1642
1643 /* Initiate remote TCP/IP port forwardings. */
1644 for (i = 0; i < options.num_remote_forwards; i++) {
1645 debug("Remote connections from %.200s:%d forwarded to "
1646 "local address %.200s:%d",
Adam Langleyd0592972015-03-30 14:49:51 -07001647 (options.remote_forwards[i].listen_path != NULL) ?
1648 options.remote_forwards[i].listen_path :
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001649 (options.remote_forwards[i].listen_host == NULL) ?
1650 "LOCALHOST" : options.remote_forwards[i].listen_host,
1651 options.remote_forwards[i].listen_port,
Adam Langleyd0592972015-03-30 14:49:51 -07001652 (options.remote_forwards[i].connect_path != NULL) ?
1653 options.remote_forwards[i].connect_path :
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001654 options.remote_forwards[i].connect_host,
1655 options.remote_forwards[i].connect_port);
Adam Langleyd0592972015-03-30 14:49:51 -07001656 options.remote_forwards[i].handle =
1657 channel_request_remote_forwarding(
1658 &options.remote_forwards[i]);
1659 if (options.remote_forwards[i].handle < 0) {
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001660 if (options.exit_on_forward_failure)
1661 fatal("Could not request remote forwarding.");
1662 else
1663 logit("Warning: Could not request remote "
1664 "forwarding.");
Adam Langleyd0592972015-03-30 14:49:51 -07001665 } else {
1666 client_register_global_confirm(ssh_confirm_remote_forward,
1667 &options.remote_forwards[i]);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001668 }
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001669 }
1670
1671 /* Initiate tunnel forwarding. */
1672 if (options.tun_open != SSH_TUNMODE_NO) {
1673 if (client_request_tun_fwd(options.tun_open,
1674 options.tun_local, options.tun_remote) == -1) {
1675 if (options.exit_on_forward_failure)
1676 fatal("Could not request tunnel forwarding.");
1677 else
1678 error("Could not request tunnel forwarding.");
1679 }
1680 }
1681}
1682
1683static void
1684check_agent_present(void)
1685{
Adam Langleyd0592972015-03-30 14:49:51 -07001686 int r;
1687
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001688 if (options.forward_agent) {
1689 /* Clear agent forwarding if we don't have an agent. */
Adam Langleyd0592972015-03-30 14:49:51 -07001690 if ((r = ssh_get_authentication_socket(NULL)) != 0) {
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001691 options.forward_agent = 0;
Adam Langleyd0592972015-03-30 14:49:51 -07001692 if (r != SSH_ERR_AGENT_NOT_PRESENT)
1693 debug("ssh_get_authentication_socket: %s",
1694 ssh_err(r));
1695 }
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001696 }
1697}
1698
1699static int
1700ssh_session(void)
1701{
1702 int type;
1703 int interactive = 0;
1704 int have_tty = 0;
1705 struct winsize ws;
1706 char *cp;
1707 const char *display;
Greg Hartman9768ca42017-06-22 20:49:52 -07001708 char *proto = NULL, *data = NULL;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001709
1710 /* Enable compression if requested. */
1711 if (options.compression) {
1712 debug("Requesting compression at level %d.",
1713 options.compression_level);
1714
1715 if (options.compression_level < 1 ||
1716 options.compression_level > 9)
1717 fatal("Compression level must be from 1 (fast) to "
1718 "9 (slow, best).");
1719
1720 /* Send the request. */
1721 packet_start(SSH_CMSG_REQUEST_COMPRESSION);
1722 packet_put_int(options.compression_level);
1723 packet_send();
1724 packet_write_wait();
1725 type = packet_read();
1726 if (type == SSH_SMSG_SUCCESS)
1727 packet_start_compression(options.compression_level);
1728 else if (type == SSH_SMSG_FAILURE)
1729 logit("Warning: Remote host refused compression.");
1730 else
1731 packet_disconnect("Protocol error waiting for "
1732 "compression response.");
1733 }
1734 /* Allocate a pseudo tty if appropriate. */
1735 if (tty_flag) {
1736 debug("Requesting pty.");
1737
1738 /* Start the packet. */
1739 packet_start(SSH_CMSG_REQUEST_PTY);
1740
1741 /* Store TERM in the packet. There is no limit on the
1742 length of the string. */
1743 cp = getenv("TERM");
1744 if (!cp)
1745 cp = "";
1746 packet_put_cstring(cp);
1747
1748 /* Store window size in the packet. */
1749 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
1750 memset(&ws, 0, sizeof(ws));
1751 packet_put_int((u_int)ws.ws_row);
1752 packet_put_int((u_int)ws.ws_col);
1753 packet_put_int((u_int)ws.ws_xpixel);
1754 packet_put_int((u_int)ws.ws_ypixel);
1755
1756 /* Store tty modes in the packet. */
1757 tty_make_modes(fileno(stdin), NULL);
1758
1759 /* Send the packet, and wait for it to leave. */
1760 packet_send();
1761 packet_write_wait();
1762
1763 /* Read response from the server. */
1764 type = packet_read();
1765 if (type == SSH_SMSG_SUCCESS) {
1766 interactive = 1;
1767 have_tty = 1;
1768 } else if (type == SSH_SMSG_FAILURE)
1769 logit("Warning: Remote host failed or refused to "
1770 "allocate a pseudo tty.");
1771 else
1772 packet_disconnect("Protocol error waiting for pty "
1773 "request response.");
1774 }
1775 /* Request X11 forwarding if enabled and DISPLAY is set. */
1776 display = getenv("DISPLAY");
Greg Hartmanccacbc92016-02-03 09:59:44 -08001777 if (display == NULL && options.forward_x11)
1778 debug("X11 forwarding requested but DISPLAY not set");
Greg Hartman9768ca42017-06-22 20:49:52 -07001779 if (options.forward_x11 && client_x11_get_proto(display,
1780 options.xauth_location, options.forward_x11_trusted,
1781 options.forward_x11_timeout, &proto, &data) == 0) {
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001782 /* Request forwarding with authentication spoofing. */
1783 debug("Requesting X11 forwarding with authentication "
1784 "spoofing.");
1785 x11_request_forwarding_with_spoofing(0, display, proto,
1786 data, 0);
1787 /* Read response from the server. */
1788 type = packet_read();
1789 if (type == SSH_SMSG_SUCCESS) {
1790 interactive = 1;
1791 } else if (type == SSH_SMSG_FAILURE) {
1792 logit("Warning: Remote host denied X11 forwarding.");
1793 } else {
1794 packet_disconnect("Protocol error waiting for X11 "
1795 "forwarding");
1796 }
1797 }
1798 /* Tell the packet module whether this is an interactive session. */
1799 packet_set_interactive(interactive,
1800 options.ip_qos_interactive, options.ip_qos_bulk);
1801
1802 /* Request authentication agent forwarding if appropriate. */
1803 check_agent_present();
1804
1805 if (options.forward_agent) {
1806 debug("Requesting authentication agent forwarding.");
1807 auth_request_forwarding();
1808
1809 /* Read response from the server. */
1810 type = packet_read();
1811 packet_check_eom();
1812 if (type != SSH_SMSG_SUCCESS)
1813 logit("Warning: Remote host denied authentication agent forwarding.");
1814 }
1815
1816 /* Initiate port forwardings. */
Adam Langleyd0592972015-03-30 14:49:51 -07001817 ssh_init_stdio_forwarding();
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001818 ssh_init_forwarding();
1819
1820 /* Execute a local command */
1821 if (options.local_command != NULL &&
1822 options.permit_local_command)
1823 ssh_local_cmd(options.local_command);
1824
1825 /*
1826 * If requested and we are not interested in replies to remote
1827 * forwarding requests, then let ssh continue in the background.
1828 */
1829 if (fork_after_authentication_flag) {
1830 if (options.exit_on_forward_failure &&
1831 options.num_remote_forwards > 0) {
1832 debug("deferring postauth fork until remote forward "
1833 "confirmation received");
1834 } else
1835 fork_postauth();
1836 }
1837
1838 /*
1839 * If a command was specified on the command line, execute the
1840 * command now. Otherwise request the server to start a shell.
1841 */
1842 if (buffer_len(&command) > 0) {
1843 int len = buffer_len(&command);
1844 if (len > 900)
1845 len = 900;
1846 debug("Sending command: %.*s", len,
1847 (u_char *)buffer_ptr(&command));
1848 packet_start(SSH_CMSG_EXEC_CMD);
1849 packet_put_string(buffer_ptr(&command), buffer_len(&command));
1850 packet_send();
1851 packet_write_wait();
1852 } else {
1853 debug("Requesting shell.");
1854 packet_start(SSH_CMSG_EXEC_SHELL);
1855 packet_send();
1856 packet_write_wait();
1857 }
1858
1859 /* Enter the interactive session. */
1860 return client_loop(have_tty, tty_flag ?
1861 options.escape_char : SSH_ESCAPECHAR_NONE, 0);
1862}
1863
1864/* request pty/x11/agent/tcpfwd/shell for channel */
1865static void
1866ssh_session2_setup(int id, int success, void *arg)
1867{
1868 extern char **environ;
1869 const char *display;
1870 int interactive = tty_flag;
Greg Hartman9768ca42017-06-22 20:49:52 -07001871 char *proto = NULL, *data = NULL;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001872
1873 if (!success)
1874 return; /* No need for error message, channels code sens one */
1875
1876 display = getenv("DISPLAY");
Greg Hartmanccacbc92016-02-03 09:59:44 -08001877 if (display == NULL && options.forward_x11)
1878 debug("X11 forwarding requested but DISPLAY not set");
Greg Hartman9768ca42017-06-22 20:49:52 -07001879 if (options.forward_x11 && client_x11_get_proto(display,
1880 options.xauth_location, options.forward_x11_trusted,
1881 options.forward_x11_timeout, &proto, &data) == 0) {
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001882 /* Request forwarding with authentication spoofing. */
1883 debug("Requesting X11 forwarding with authentication "
1884 "spoofing.");
1885 x11_request_forwarding_with_spoofing(id, display, proto,
1886 data, 1);
1887 client_expect_confirm(id, "X11 forwarding", CONFIRM_WARN);
1888 /* XXX exit_on_forward_failure */
1889 interactive = 1;
1890 }
1891
1892 check_agent_present();
1893 if (options.forward_agent) {
1894 debug("Requesting authentication agent forwarding.");
1895 channel_request_start(id, "auth-agent-req@openssh.com", 0);
1896 packet_send();
1897 }
1898
Adam Langleyd0592972015-03-30 14:49:51 -07001899 /* Tell the packet module whether this is an interactive session. */
1900 packet_set_interactive(interactive,
1901 options.ip_qos_interactive, options.ip_qos_bulk);
1902
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001903 client_session2_setup(id, tty_flag, subsystem_flag, getenv("TERM"),
1904 NULL, fileno(stdin), &command, environ);
1905}
1906
1907/* open new channel for a session */
1908static int
1909ssh_session2_open(void)
1910{
1911 Channel *c;
1912 int window, packetmax, in, out, err;
1913
1914 if (stdin_null_flag) {
1915 in = open(_PATH_DEVNULL, O_RDONLY);
1916 } else {
1917 in = dup(STDIN_FILENO);
1918 }
1919 out = dup(STDOUT_FILENO);
1920 err = dup(STDERR_FILENO);
1921
1922 if (in < 0 || out < 0 || err < 0)
1923 fatal("dup() in/out/err failed");
1924
1925 /* enable nonblocking unless tty */
1926 if (!isatty(in))
1927 set_nonblock(in);
1928 if (!isatty(out))
1929 set_nonblock(out);
1930 if (!isatty(err))
1931 set_nonblock(err);
1932
1933 window = CHAN_SES_WINDOW_DEFAULT;
1934 packetmax = CHAN_SES_PACKET_DEFAULT;
1935 if (tty_flag) {
1936 window >>= 1;
1937 packetmax >>= 1;
1938 }
1939 c = channel_new(
1940 "session", SSH_CHANNEL_OPENING, in, out, err,
1941 window, packetmax, CHAN_EXTENDED_WRITE,
1942 "client-session", /*nonblock*/0);
1943
1944 debug3("ssh_session2_open: channel_new: %d", c->self);
1945
1946 channel_send_open(c->self);
1947 if (!no_shell_flag)
1948 channel_register_open_confirm(c->self,
1949 ssh_session2_setup, NULL);
1950
1951 return c->self;
1952}
1953
1954static int
1955ssh_session2(void)
1956{
1957 int id = -1;
1958
1959 /* XXX should be pre-session */
Adam Langleyd0592972015-03-30 14:49:51 -07001960 if (!options.control_persist)
1961 ssh_init_stdio_forwarding();
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001962 ssh_init_forwarding();
1963
1964 /* Start listening for multiplex clients */
Greg Hartman9768ca42017-06-22 20:49:52 -07001965 if (!packet_get_mux())
1966 muxserver_listen();
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001967
1968 /*
Adam Langleyd0592972015-03-30 14:49:51 -07001969 * If we are in control persist mode and have a working mux listen
1970 * socket, then prepare to background ourselves and have a foreground
1971 * client attach as a control slave.
1972 * NB. we must save copies of the flags that we override for
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001973 * the backgrounding, since we defer attachment of the slave until
1974 * after the connection is fully established (in particular,
1975 * async rfwd replies have been received for ExitOnForwardFailure).
1976 */
1977 if (options.control_persist && muxserver_sock != -1) {
1978 ostdin_null_flag = stdin_null_flag;
1979 ono_shell_flag = no_shell_flag;
1980 orequest_tty = options.request_tty;
1981 otty_flag = tty_flag;
1982 stdin_null_flag = 1;
1983 no_shell_flag = 1;
1984 tty_flag = 0;
1985 if (!fork_after_authentication_flag)
1986 need_controlpersist_detach = 1;
1987 fork_after_authentication_flag = 1;
1988 }
Adam Langleyd0592972015-03-30 14:49:51 -07001989 /*
1990 * ControlPersist mux listen socket setup failed, attempt the
1991 * stdio forward setup that we skipped earlier.
1992 */
1993 if (options.control_persist && muxserver_sock == -1)
1994 ssh_init_stdio_forwarding();
Greg Hartmanbd77cf72015-02-25 13:21:06 -08001995
1996 if (!no_shell_flag || (datafellows & SSH_BUG_DUMMYCHAN))
1997 id = ssh_session2_open();
Adam Langleyd0592972015-03-30 14:49:51 -07001998 else {
1999 packet_set_interactive(
2000 options.control_master == SSHCTL_MASTER_NO,
2001 options.ip_qos_interactive, options.ip_qos_bulk);
2002 }
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002003
2004 /* If we don't expect to open a new session, then disallow it */
2005 if (options.control_master == SSHCTL_MASTER_NO &&
2006 (datafellows & SSH_NEW_OPENSSH)) {
2007 debug("Requesting no-more-sessions@openssh.com");
2008 packet_start(SSH2_MSG_GLOBAL_REQUEST);
2009 packet_put_cstring("no-more-sessions@openssh.com");
2010 packet_put_char(0);
2011 packet_send();
2012 }
2013
2014 /* Execute a local command */
2015 if (options.local_command != NULL &&
2016 options.permit_local_command)
2017 ssh_local_cmd(options.local_command);
2018
2019 /*
2020 * If requested and we are not interested in replies to remote
2021 * forwarding requests, then let ssh continue in the background.
2022 */
2023 if (fork_after_authentication_flag) {
2024 if (options.exit_on_forward_failure &&
2025 options.num_remote_forwards > 0) {
2026 debug("deferring postauth fork until remote forward "
2027 "confirmation received");
2028 } else
2029 fork_postauth();
2030 }
2031
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002032 return client_loop(tty_flag, tty_flag ?
2033 options.escape_char : SSH_ESCAPECHAR_NONE, id);
2034}
2035
Greg Hartman9768ca42017-06-22 20:49:52 -07002036/* Loads all IdentityFile and CertificateFile keys */
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002037static void
2038load_public_identity_files(void)
2039{
2040 char *filename, *cp, thishost[NI_MAXHOST];
2041 char *pwdir = NULL, *pwname = NULL;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002042 Key *public;
2043 struct passwd *pw;
Greg Hartman9768ca42017-06-22 20:49:52 -07002044 int i;
2045 u_int n_ids, n_certs;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002046 char *identity_files[SSH_MAX_IDENTITY_FILES];
2047 Key *identity_keys[SSH_MAX_IDENTITY_FILES];
Greg Hartman9768ca42017-06-22 20:49:52 -07002048 char *certificate_files[SSH_MAX_CERTIFICATE_FILES];
2049 struct sshkey *certificates[SSH_MAX_CERTIFICATE_FILES];
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002050#ifdef ENABLE_PKCS11
2051 Key **keys;
2052 int nkeys;
2053#endif /* PKCS11 */
2054
Greg Hartman9768ca42017-06-22 20:49:52 -07002055 n_ids = n_certs = 0;
Adam Langleyd0592972015-03-30 14:49:51 -07002056 memset(identity_files, 0, sizeof(identity_files));
2057 memset(identity_keys, 0, sizeof(identity_keys));
Greg Hartman9768ca42017-06-22 20:49:52 -07002058 memset(certificate_files, 0, sizeof(certificate_files));
2059 memset(certificates, 0, sizeof(certificates));
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002060
2061#ifdef ENABLE_PKCS11
2062 if (options.pkcs11_provider != NULL &&
2063 options.num_identity_files < SSH_MAX_IDENTITY_FILES &&
2064 (pkcs11_init(!options.batch_mode) == 0) &&
2065 (nkeys = pkcs11_add_provider(options.pkcs11_provider, NULL,
2066 &keys)) > 0) {
2067 for (i = 0; i < nkeys; i++) {
2068 if (n_ids >= SSH_MAX_IDENTITY_FILES) {
2069 key_free(keys[i]);
2070 continue;
2071 }
2072 identity_keys[n_ids] = keys[i];
2073 identity_files[n_ids] =
2074 xstrdup(options.pkcs11_provider); /* XXX */
2075 n_ids++;
2076 }
Adam Langleyd0592972015-03-30 14:49:51 -07002077 free(keys);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002078 }
2079#endif /* ENABLE_PKCS11 */
2080 if ((pw = getpwuid(original_real_uid)) == NULL)
2081 fatal("load_public_identity_files: getpwuid failed");
2082 pwname = xstrdup(pw->pw_name);
2083 pwdir = xstrdup(pw->pw_dir);
2084 if (gethostname(thishost, sizeof(thishost)) == -1)
2085 fatal("load_public_identity_files: gethostname: %s",
2086 strerror(errno));
2087 for (i = 0; i < options.num_identity_files; i++) {
Adam Langleyd0592972015-03-30 14:49:51 -07002088 if (n_ids >= SSH_MAX_IDENTITY_FILES ||
2089 strcasecmp(options.identity_files[i], "none") == 0) {
2090 free(options.identity_files[i]);
Greg Hartman9768ca42017-06-22 20:49:52 -07002091 options.identity_files[i] = NULL;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002092 continue;
2093 }
2094 cp = tilde_expand_filename(options.identity_files[i],
2095 original_real_uid);
2096 filename = percent_expand(cp, "d", pwdir,
2097 "u", pwname, "l", thishost, "h", host,
2098 "r", options.user, (char *)NULL);
Adam Langleyd0592972015-03-30 14:49:51 -07002099 free(cp);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002100 public = key_load_public(filename, NULL);
2101 debug("identity file %s type %d", filename,
2102 public ? public->type : -1);
Adam Langleyd0592972015-03-30 14:49:51 -07002103 free(options.identity_files[i]);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002104 identity_files[n_ids] = filename;
2105 identity_keys[n_ids] = public;
2106
2107 if (++n_ids >= SSH_MAX_IDENTITY_FILES)
2108 continue;
2109
Greg Hartman9768ca42017-06-22 20:49:52 -07002110 /*
2111 * If no certificates have been explicitly listed then try
2112 * to add the default certificate variant too.
2113 */
2114 if (options.num_certificate_files != 0)
2115 continue;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002116 xasprintf(&cp, "%s-cert", filename);
2117 public = key_load_public(cp, NULL);
2118 debug("identity file %s type %d", cp,
2119 public ? public->type : -1);
2120 if (public == NULL) {
Adam Langleyd0592972015-03-30 14:49:51 -07002121 free(cp);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002122 continue;
2123 }
2124 if (!key_is_cert(public)) {
2125 debug("%s: key %s type %s is not a certificate",
2126 __func__, cp, key_type(public));
2127 key_free(public);
Adam Langleyd0592972015-03-30 14:49:51 -07002128 free(cp);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002129 continue;
2130 }
Greg Hartman9768ca42017-06-22 20:49:52 -07002131 /* NB. leave filename pointing to private key */
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002132 identity_files[n_ids] = xstrdup(filename);
Greg Hartman9768ca42017-06-22 20:49:52 -07002133 identity_keys[n_ids] = public;
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002134 n_ids++;
2135 }
Greg Hartman9768ca42017-06-22 20:49:52 -07002136
2137 if (options.num_certificate_files > SSH_MAX_CERTIFICATE_FILES)
2138 fatal("%s: too many certificates", __func__);
2139 for (i = 0; i < options.num_certificate_files; i++) {
2140 cp = tilde_expand_filename(options.certificate_files[i],
2141 original_real_uid);
2142 filename = percent_expand(cp, "d", pwdir,
2143 "u", pwname, "l", thishost, "h", host,
2144 "r", options.user, (char *)NULL);
2145 free(cp);
2146
2147 public = key_load_public(filename, NULL);
2148 debug("certificate file %s type %d", filename,
2149 public ? public->type : -1);
2150 free(options.certificate_files[i]);
2151 options.certificate_files[i] = NULL;
2152 if (public == NULL) {
2153 free(filename);
2154 continue;
2155 }
2156 if (!key_is_cert(public)) {
2157 debug("%s: key %s type %s is not a certificate",
2158 __func__, filename, key_type(public));
2159 key_free(public);
2160 free(filename);
2161 continue;
2162 }
2163 certificate_files[n_certs] = filename;
2164 certificates[n_certs] = public;
2165 ++n_certs;
2166 }
2167
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002168 options.num_identity_files = n_ids;
2169 memcpy(options.identity_files, identity_files, sizeof(identity_files));
2170 memcpy(options.identity_keys, identity_keys, sizeof(identity_keys));
2171
Greg Hartman9768ca42017-06-22 20:49:52 -07002172 options.num_certificate_files = n_certs;
2173 memcpy(options.certificate_files,
2174 certificate_files, sizeof(certificate_files));
2175 memcpy(options.certificates, certificates, sizeof(certificates));
2176
Adam Langleyd0592972015-03-30 14:49:51 -07002177 explicit_bzero(pwname, strlen(pwname));
2178 free(pwname);
2179 explicit_bzero(pwdir, strlen(pwdir));
2180 free(pwdir);
Greg Hartmanbd77cf72015-02-25 13:21:06 -08002181}
2182
2183static void
2184main_sigchld_handler(int sig)
2185{
2186 int save_errno = errno;
2187 pid_t pid;
2188 int status;
2189
2190 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 ||
2191 (pid < 0 && errno == EINTR))
2192 ;
2193
2194 signal(sig, main_sigchld_handler);
2195 errno = save_errno;
2196}