xref: /openbsd-src/usr.bin/ssh/auth.c (revision c90a81c56dcebd6a1b73fe4aff9b03385b8e63b3)
1 /* $OpenBSD: auth.c,v 1.135 2019/01/17 04:20:53 djm Exp $ */
2 /*
3  * Copyright (c) 2000 Markus Friedl.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  */
25 
26 #include <sys/types.h>
27 #include <sys/stat.h>
28 #include <sys/socket.h>
29 #include <sys/wait.h>
30 
31 #include <errno.h>
32 #include <fcntl.h>
33 #include <login_cap.h>
34 #include <paths.h>
35 #include <pwd.h>
36 #include <stdarg.h>
37 #include <stdio.h>
38 #include <string.h>
39 #include <unistd.h>
40 #include <limits.h>
41 #include <netdb.h>
42 #include <time.h>
43 
44 #include "xmalloc.h"
45 #include "match.h"
46 #include "groupaccess.h"
47 #include "log.h"
48 #include "sshbuf.h"
49 #include "misc.h"
50 #include "servconf.h"
51 #include "sshkey.h"
52 #include "hostfile.h"
53 #include "auth.h"
54 #include "auth-options.h"
55 #include "canohost.h"
56 #include "uidswap.h"
57 #include "packet.h"
58 #ifdef GSSAPI
59 #include "ssh-gss.h"
60 #endif
61 #include "authfile.h"
62 #include "monitor_wrap.h"
63 #include "authfile.h"
64 #include "ssherr.h"
65 #include "compat.h"
66 #include "channels.h"
67 
68 /* import */
69 extern ServerOptions options;
70 extern int use_privsep;
71 extern struct sshauthopt *auth_opts;
72 
73 /* Debugging messages */
74 static struct sshbuf *auth_debug;
75 
76 /*
77  * Check if the user is allowed to log in via ssh. If user is listed
78  * in DenyUsers or one of user's groups is listed in DenyGroups, false
79  * will be returned. If AllowUsers isn't empty and user isn't listed
80  * there, or if AllowGroups isn't empty and one of user's groups isn't
81  * listed there, false will be returned.
82  * If the user's shell is not executable, false will be returned.
83  * Otherwise true is returned.
84  */
85 int
86 allowed_user(struct passwd * pw)
87 {
88 	struct ssh *ssh = active_state; /* XXX */
89 	struct stat st;
90 	const char *hostname = NULL, *ipaddr = NULL;
91 	int r;
92 	u_int i;
93 
94 	/* Shouldn't be called if pw is NULL, but better safe than sorry... */
95 	if (!pw || !pw->pw_name)
96 		return 0;
97 
98 	/*
99 	 * Deny if shell does not exist or is not executable unless we
100 	 * are chrooting.
101 	 */
102 	if (options.chroot_directory == NULL ||
103 	    strcasecmp(options.chroot_directory, "none") == 0) {
104 		char *shell = xstrdup((pw->pw_shell[0] == '\0') ?
105 		    _PATH_BSHELL : pw->pw_shell); /* empty = /bin/sh */
106 
107 		if (stat(shell, &st) != 0) {
108 			logit("User %.100s not allowed because shell %.100s "
109 			    "does not exist", pw->pw_name, shell);
110 			free(shell);
111 			return 0;
112 		}
113 		if (S_ISREG(st.st_mode) == 0 ||
114 		    (st.st_mode & (S_IXOTH|S_IXUSR|S_IXGRP)) == 0) {
115 			logit("User %.100s not allowed because shell %.100s "
116 			    "is not executable", pw->pw_name, shell);
117 			free(shell);
118 			return 0;
119 		}
120 		free(shell);
121 	}
122 
123 	if (options.num_deny_users > 0 || options.num_allow_users > 0 ||
124 	    options.num_deny_groups > 0 || options.num_allow_groups > 0) {
125 		hostname = auth_get_canonical_hostname(ssh, options.use_dns);
126 		ipaddr = ssh_remote_ipaddr(ssh);
127 	}
128 
129 	/* Return false if user is listed in DenyUsers */
130 	if (options.num_deny_users > 0) {
131 		for (i = 0; i < options.num_deny_users; i++) {
132 			r = match_user(pw->pw_name, hostname, ipaddr,
133 			    options.deny_users[i]);
134 			if (r < 0) {
135 				fatal("Invalid DenyUsers pattern \"%.100s\"",
136 				    options.deny_users[i]);
137 			} else if (r != 0) {
138 				logit("User %.100s from %.100s not allowed "
139 				    "because listed in DenyUsers",
140 				    pw->pw_name, hostname);
141 				return 0;
142 			}
143 		}
144 	}
145 	/* Return false if AllowUsers isn't empty and user isn't listed there */
146 	if (options.num_allow_users > 0) {
147 		for (i = 0; i < options.num_allow_users; i++) {
148 			r = match_user(pw->pw_name, hostname, ipaddr,
149 			    options.allow_users[i]);
150 			if (r < 0) {
151 				fatal("Invalid AllowUsers pattern \"%.100s\"",
152 				    options.allow_users[i]);
153 			} else if (r == 1)
154 				break;
155 		}
156 		/* i < options.num_allow_users iff we break for loop */
157 		if (i >= options.num_allow_users) {
158 			logit("User %.100s from %.100s not allowed because "
159 			    "not listed in AllowUsers", pw->pw_name, hostname);
160 			return 0;
161 		}
162 	}
163 	if (options.num_deny_groups > 0 || options.num_allow_groups > 0) {
164 		/* Get the user's group access list (primary and supplementary) */
165 		if (ga_init(pw->pw_name, pw->pw_gid) == 0) {
166 			logit("User %.100s from %.100s not allowed because "
167 			    "not in any group", pw->pw_name, hostname);
168 			return 0;
169 		}
170 
171 		/* Return false if one of user's groups is listed in DenyGroups */
172 		if (options.num_deny_groups > 0)
173 			if (ga_match(options.deny_groups,
174 			    options.num_deny_groups)) {
175 				ga_free();
176 				logit("User %.100s from %.100s not allowed "
177 				    "because a group is listed in DenyGroups",
178 				    pw->pw_name, hostname);
179 				return 0;
180 			}
181 		/*
182 		 * Return false if AllowGroups isn't empty and one of user's groups
183 		 * isn't listed there
184 		 */
185 		if (options.num_allow_groups > 0)
186 			if (!ga_match(options.allow_groups,
187 			    options.num_allow_groups)) {
188 				ga_free();
189 				logit("User %.100s from %.100s not allowed "
190 				    "because none of user's groups are listed "
191 				    "in AllowGroups", pw->pw_name, hostname);
192 				return 0;
193 			}
194 		ga_free();
195 	}
196 	/* We found no reason not to let this user try to log on... */
197 	return 1;
198 }
199 
200 /*
201  * Formats any key left in authctxt->auth_method_key for inclusion in
202  * auth_log()'s message. Also includes authxtct->auth_method_info if present.
203  */
204 static char *
205 format_method_key(Authctxt *authctxt)
206 {
207 	const struct sshkey *key = authctxt->auth_method_key;
208 	const char *methinfo = authctxt->auth_method_info;
209 	char *fp, *cafp, *ret = NULL;
210 
211 	if (key == NULL)
212 		return NULL;
213 
214 	if (sshkey_is_cert(key)) {
215 		fp = sshkey_fingerprint(key,
216 		    options.fingerprint_hash, SSH_FP_DEFAULT);
217 		cafp = sshkey_fingerprint(key->cert->signature_key,
218 		    options.fingerprint_hash, SSH_FP_DEFAULT);
219 		xasprintf(&ret, "%s %s ID %s (serial %llu) CA %s %s%s%s",
220 		    sshkey_type(key), fp == NULL ? "(null)" : fp,
221 		    key->cert->key_id,
222 		    (unsigned long long)key->cert->serial,
223 		    sshkey_type(key->cert->signature_key),
224 		    cafp == NULL ? "(null)" : cafp,
225 		    methinfo == NULL ? "" : ", ",
226 		    methinfo == NULL ? "" : methinfo);
227 		free(fp);
228 		free(cafp);
229 	} else {
230 		fp = sshkey_fingerprint(key, options.fingerprint_hash,
231 		    SSH_FP_DEFAULT);
232 		xasprintf(&ret, "%s %s%s%s", sshkey_type(key),
233 		    fp == NULL ? "(null)" : fp,
234 		    methinfo == NULL ? "" : ", ",
235 		    methinfo == NULL ? "" : methinfo);
236 		free(fp);
237 	}
238 	return ret;
239 }
240 
241 void
242 auth_log(Authctxt *authctxt, int authenticated, int partial,
243     const char *method, const char *submethod)
244 {
245 	struct ssh *ssh = active_state; /* XXX */
246 	int level = SYSLOG_LEVEL_VERBOSE;
247 	const char *authmsg;
248 	char *extra = NULL;
249 
250 	if (use_privsep && !mm_is_monitor() && !authctxt->postponed)
251 		return;
252 
253 	/* Raise logging level */
254 	if (authenticated == 1 ||
255 	    !authctxt->valid ||
256 	    authctxt->failures >= options.max_authtries / 2 ||
257 	    strcmp(method, "password") == 0)
258 		level = SYSLOG_LEVEL_INFO;
259 
260 	if (authctxt->postponed)
261 		authmsg = "Postponed";
262 	else if (partial)
263 		authmsg = "Partial";
264 	else
265 		authmsg = authenticated ? "Accepted" : "Failed";
266 
267 	if ((extra = format_method_key(authctxt)) == NULL) {
268 		if (authctxt->auth_method_info != NULL)
269 			extra = xstrdup(authctxt->auth_method_info);
270 	}
271 
272 	do_log2(level, "%s %s%s%s for %s%.100s from %.200s port %d ssh2%s%s",
273 	    authmsg,
274 	    method,
275 	    submethod != NULL ? "/" : "", submethod == NULL ? "" : submethod,
276 	    authctxt->valid ? "" : "invalid user ",
277 	    authctxt->user,
278 	    ssh_remote_ipaddr(ssh),
279 	    ssh_remote_port(ssh),
280 	    extra != NULL ? ": " : "",
281 	    extra != NULL ? extra : "");
282 
283 	free(extra);
284 }
285 
286 void
287 auth_maxtries_exceeded(Authctxt *authctxt)
288 {
289 	struct ssh *ssh = active_state; /* XXX */
290 
291 	error("maximum authentication attempts exceeded for "
292 	    "%s%.100s from %.200s port %d ssh2",
293 	    authctxt->valid ? "" : "invalid user ",
294 	    authctxt->user,
295 	    ssh_remote_ipaddr(ssh),
296 	    ssh_remote_port(ssh));
297 	packet_disconnect("Too many authentication failures");
298 	/* NOTREACHED */
299 }
300 
301 /*
302  * Check whether root logins are disallowed.
303  */
304 int
305 auth_root_allowed(struct ssh *ssh, const char *method)
306 {
307 	switch (options.permit_root_login) {
308 	case PERMIT_YES:
309 		return 1;
310 	case PERMIT_NO_PASSWD:
311 		if (strcmp(method, "publickey") == 0 ||
312 		    strcmp(method, "hostbased") == 0 ||
313 		    strcmp(method, "gssapi-with-mic") == 0)
314 			return 1;
315 		break;
316 	case PERMIT_FORCED_ONLY:
317 		if (auth_opts->force_command != NULL) {
318 			logit("Root login accepted for forced command.");
319 			return 1;
320 		}
321 		break;
322 	}
323 	logit("ROOT LOGIN REFUSED FROM %.200s port %d",
324 	    ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
325 	return 0;
326 }
327 
328 
329 /*
330  * Given a template and a passwd structure, build a filename
331  * by substituting % tokenised options. Currently, %% becomes '%',
332  * %h becomes the home directory and %u the username.
333  *
334  * This returns a buffer allocated by xmalloc.
335  */
336 char *
337 expand_authorized_keys(const char *filename, struct passwd *pw)
338 {
339 	char *file, uidstr[32], ret[PATH_MAX];
340 	int i;
341 
342 	snprintf(uidstr, sizeof(uidstr), "%llu",
343 	    (unsigned long long)pw->pw_uid);
344 	file = percent_expand(filename, "h", pw->pw_dir,
345 	    "u", pw->pw_name, "U", uidstr, (char *)NULL);
346 
347 	/*
348 	 * Ensure that filename starts anchored. If not, be backward
349 	 * compatible and prepend the '%h/'
350 	 */
351 	if (path_absolute(file))
352 		return (file);
353 
354 	i = snprintf(ret, sizeof(ret), "%s/%s", pw->pw_dir, file);
355 	if (i < 0 || (size_t)i >= sizeof(ret))
356 		fatal("expand_authorized_keys: path too long");
357 	free(file);
358 	return (xstrdup(ret));
359 }
360 
361 char *
362 authorized_principals_file(struct passwd *pw)
363 {
364 	if (options.authorized_principals_file == NULL)
365 		return NULL;
366 	return expand_authorized_keys(options.authorized_principals_file, pw);
367 }
368 
369 /* return ok if key exists in sysfile or userfile */
370 HostStatus
371 check_key_in_hostfiles(struct passwd *pw, struct sshkey *key, const char *host,
372     const char *sysfile, const char *userfile)
373 {
374 	char *user_hostfile;
375 	struct stat st;
376 	HostStatus host_status;
377 	struct hostkeys *hostkeys;
378 	const struct hostkey_entry *found;
379 
380 	hostkeys = init_hostkeys();
381 	load_hostkeys(hostkeys, host, sysfile);
382 	if (userfile != NULL) {
383 		user_hostfile = tilde_expand_filename(userfile, pw->pw_uid);
384 		if (options.strict_modes &&
385 		    (stat(user_hostfile, &st) == 0) &&
386 		    ((st.st_uid != 0 && st.st_uid != pw->pw_uid) ||
387 		    (st.st_mode & 022) != 0)) {
388 			logit("Authentication refused for %.100s: "
389 			    "bad owner or modes for %.200s",
390 			    pw->pw_name, user_hostfile);
391 			auth_debug_add("Ignored %.200s: bad ownership or modes",
392 			    user_hostfile);
393 		} else {
394 			temporarily_use_uid(pw);
395 			load_hostkeys(hostkeys, host, user_hostfile);
396 			restore_uid();
397 		}
398 		free(user_hostfile);
399 	}
400 	host_status = check_key_in_hostkeys(hostkeys, key, &found);
401 	if (host_status == HOST_REVOKED)
402 		error("WARNING: revoked key for %s attempted authentication",
403 		    found->host);
404 	else if (host_status == HOST_OK)
405 		debug("%s: key for %s found at %s:%ld", __func__,
406 		    found->host, found->file, found->line);
407 	else
408 		debug("%s: key for host %s not found", __func__, host);
409 
410 	free_hostkeys(hostkeys);
411 
412 	return host_status;
413 }
414 
415 static FILE *
416 auth_openfile(const char *file, struct passwd *pw, int strict_modes,
417     int log_missing, char *file_type)
418 {
419 	char line[1024];
420 	struct stat st;
421 	int fd;
422 	FILE *f;
423 
424 	if ((fd = open(file, O_RDONLY|O_NONBLOCK)) == -1) {
425 		if (log_missing || errno != ENOENT)
426 			debug("Could not open %s '%s': %s", file_type, file,
427 			   strerror(errno));
428 		return NULL;
429 	}
430 
431 	if (fstat(fd, &st) < 0) {
432 		close(fd);
433 		return NULL;
434 	}
435 	if (!S_ISREG(st.st_mode)) {
436 		logit("User %s %s %s is not a regular file",
437 		    pw->pw_name, file_type, file);
438 		close(fd);
439 		return NULL;
440 	}
441 	unset_nonblock(fd);
442 	if ((f = fdopen(fd, "r")) == NULL) {
443 		close(fd);
444 		return NULL;
445 	}
446 	if (strict_modes &&
447 	    safe_path_fd(fileno(f), file, pw, line, sizeof(line)) != 0) {
448 		fclose(f);
449 		logit("Authentication refused: %s", line);
450 		auth_debug_add("Ignored %s: %s", file_type, line);
451 		return NULL;
452 	}
453 
454 	return f;
455 }
456 
457 
458 FILE *
459 auth_openkeyfile(const char *file, struct passwd *pw, int strict_modes)
460 {
461 	return auth_openfile(file, pw, strict_modes, 1, "authorized keys");
462 }
463 
464 FILE *
465 auth_openprincipals(const char *file, struct passwd *pw, int strict_modes)
466 {
467 	return auth_openfile(file, pw, strict_modes, 0,
468 	    "authorized principals");
469 }
470 
471 struct passwd *
472 getpwnamallow(const char *user)
473 {
474 	struct ssh *ssh = active_state; /* XXX */
475 	extern login_cap_t *lc;
476 	auth_session_t *as;
477 	struct passwd *pw;
478 	struct connection_info *ci = get_connection_info(1, options.use_dns);
479 
480 	ci->user = user;
481 	parse_server_match_config(&options, ci);
482 	log_change_level(options.log_level);
483 	process_permitopen(ssh, &options);
484 
485 	pw = getpwnam(user);
486 	if (pw == NULL) {
487 		logit("Invalid user %.100s from %.100s port %d",
488 		    user, ssh_remote_ipaddr(ssh), ssh_remote_port(ssh));
489 		return (NULL);
490 	}
491 	if (!allowed_user(pw))
492 		return (NULL);
493 	if ((lc = login_getclass(pw->pw_class)) == NULL) {
494 		debug("unable to get login class: %s", user);
495 		return (NULL);
496 	}
497 	if ((as = auth_open()) == NULL || auth_setpwd(as, pw) != 0 ||
498 	    auth_approval(as, lc, pw->pw_name, "ssh") <= 0) {
499 		debug("Approval failure for %s", user);
500 		pw = NULL;
501 	}
502 	if (as != NULL)
503 		auth_close(as);
504 	if (pw != NULL)
505 		return (pwcopy(pw));
506 	return (NULL);
507 }
508 
509 /* Returns 1 if key is revoked by revoked_keys_file, 0 otherwise */
510 int
511 auth_key_is_revoked(struct sshkey *key)
512 {
513 	char *fp = NULL;
514 	int r;
515 
516 	if (options.revoked_keys_file == NULL)
517 		return 0;
518 	if ((fp = sshkey_fingerprint(key, options.fingerprint_hash,
519 	    SSH_FP_DEFAULT)) == NULL) {
520 		r = SSH_ERR_ALLOC_FAIL;
521 		error("%s: fingerprint key: %s", __func__, ssh_err(r));
522 		goto out;
523 	}
524 
525 	r = sshkey_check_revoked(key, options.revoked_keys_file);
526 	switch (r) {
527 	case 0:
528 		break; /* not revoked */
529 	case SSH_ERR_KEY_REVOKED:
530 		error("Authentication key %s %s revoked by file %s",
531 		    sshkey_type(key), fp, options.revoked_keys_file);
532 		goto out;
533 	default:
534 		error("Error checking authentication key %s %s in "
535 		    "revoked keys file %s: %s", sshkey_type(key), fp,
536 		    options.revoked_keys_file, ssh_err(r));
537 		goto out;
538 	}
539 
540 	/* Success */
541 	r = 0;
542 
543  out:
544 	free(fp);
545 	return r == 0 ? 0 : 1;
546 }
547 
548 void
549 auth_debug_add(const char *fmt,...)
550 {
551 	char buf[1024];
552 	va_list args;
553 	int r;
554 
555 	if (auth_debug == NULL)
556 		return;
557 
558 	va_start(args, fmt);
559 	vsnprintf(buf, sizeof(buf), fmt, args);
560 	va_end(args);
561 	if ((r = sshbuf_put_cstring(auth_debug, buf)) != 0)
562 		fatal("%s: sshbuf_put_cstring: %s", __func__, ssh_err(r));
563 }
564 
565 void
566 auth_debug_send(void)
567 {
568 	struct ssh *ssh = active_state;		/* XXX */
569 	char *msg;
570 	int r;
571 
572 	if (auth_debug == NULL)
573 		return;
574 	while (sshbuf_len(auth_debug) != 0) {
575 		if ((r = sshbuf_get_cstring(auth_debug, &msg, NULL)) != 0)
576 			fatal("%s: sshbuf_get_cstring: %s",
577 			    __func__, ssh_err(r));
578 		ssh_packet_send_debug(ssh, "%s", msg);
579 		free(msg);
580 	}
581 }
582 
583 void
584 auth_debug_reset(void)
585 {
586 	if (auth_debug != NULL)
587 		sshbuf_reset(auth_debug);
588 	else if ((auth_debug = sshbuf_new()) == NULL)
589 		fatal("%s: sshbuf_new failed", __func__);
590 }
591 
592 struct passwd *
593 fakepw(void)
594 {
595 	static struct passwd fake;
596 
597 	memset(&fake, 0, sizeof(fake));
598 	fake.pw_name = "NOUSER";
599 	fake.pw_passwd =
600 	    "$2a$06$r3.juUaHZDlIbQaO2dS9FuYxL1W9M81R1Tc92PoSNmzvpEqLkLGrK";
601 	fake.pw_gecos = "NOUSER";
602 	fake.pw_uid = (uid_t)-1;
603 	fake.pw_gid = (gid_t)-1;
604 	fake.pw_class = "";
605 	fake.pw_dir = "/nonexist";
606 	fake.pw_shell = "/nonexist";
607 
608 	return (&fake);
609 }
610 
611 /*
612  * Returns the remote DNS hostname as a string. The returned string must not
613  * be freed. NB. this will usually trigger a DNS query the first time it is
614  * called.
615  * This function does additional checks on the hostname to mitigate some
616  * attacks on legacy rhosts-style authentication.
617  * XXX is RhostsRSAAuthentication vulnerable to these?
618  * XXX Can we remove these checks? (or if not, remove RhostsRSAAuthentication?)
619  */
620 
621 static char *
622 remote_hostname(struct ssh *ssh)
623 {
624 	struct sockaddr_storage from;
625 	socklen_t fromlen;
626 	struct addrinfo hints, *ai, *aitop;
627 	char name[NI_MAXHOST], ntop2[NI_MAXHOST];
628 	const char *ntop = ssh_remote_ipaddr(ssh);
629 
630 	/* Get IP address of client. */
631 	fromlen = sizeof(from);
632 	memset(&from, 0, sizeof(from));
633 	if (getpeername(ssh_packet_get_connection_in(ssh),
634 	    (struct sockaddr *)&from, &fromlen) < 0) {
635 		debug("getpeername failed: %.100s", strerror(errno));
636 		return strdup(ntop);
637 	}
638 
639 	debug3("Trying to reverse map address %.100s.", ntop);
640 	/* Map the IP address to a host name. */
641 	if (getnameinfo((struct sockaddr *)&from, fromlen, name, sizeof(name),
642 	    NULL, 0, NI_NAMEREQD) != 0) {
643 		/* Host name not found.  Use ip address. */
644 		return strdup(ntop);
645 	}
646 
647 	/*
648 	 * if reverse lookup result looks like a numeric hostname,
649 	 * someone is trying to trick us by PTR record like following:
650 	 *	1.1.1.10.in-addr.arpa.	IN PTR	2.3.4.5
651 	 */
652 	memset(&hints, 0, sizeof(hints));
653 	hints.ai_socktype = SOCK_DGRAM;	/*dummy*/
654 	hints.ai_flags = AI_NUMERICHOST;
655 	if (getaddrinfo(name, NULL, &hints, &ai) == 0) {
656 		logit("Nasty PTR record \"%s\" is set up for %s, ignoring",
657 		    name, ntop);
658 		freeaddrinfo(ai);
659 		return strdup(ntop);
660 	}
661 
662 	/* Names are stored in lowercase. */
663 	lowercase(name);
664 
665 	/*
666 	 * Map it back to an IP address and check that the given
667 	 * address actually is an address of this host.  This is
668 	 * necessary because anyone with access to a name server can
669 	 * define arbitrary names for an IP address. Mapping from
670 	 * name to IP address can be trusted better (but can still be
671 	 * fooled if the intruder has access to the name server of
672 	 * the domain).
673 	 */
674 	memset(&hints, 0, sizeof(hints));
675 	hints.ai_family = from.ss_family;
676 	hints.ai_socktype = SOCK_STREAM;
677 	if (getaddrinfo(name, NULL, &hints, &aitop) != 0) {
678 		logit("reverse mapping checking getaddrinfo for %.700s "
679 		    "[%s] failed.", name, ntop);
680 		return strdup(ntop);
681 	}
682 	/* Look for the address from the list of addresses. */
683 	for (ai = aitop; ai; ai = ai->ai_next) {
684 		if (getnameinfo(ai->ai_addr, ai->ai_addrlen, ntop2,
685 		    sizeof(ntop2), NULL, 0, NI_NUMERICHOST) == 0 &&
686 		    (strcmp(ntop, ntop2) == 0))
687 				break;
688 	}
689 	freeaddrinfo(aitop);
690 	/* If we reached the end of the list, the address was not there. */
691 	if (ai == NULL) {
692 		/* Address not found for the host name. */
693 		logit("Address %.100s maps to %.600s, but this does not "
694 		    "map back to the address.", ntop, name);
695 		return strdup(ntop);
696 	}
697 	return strdup(name);
698 }
699 
700 /*
701  * Return the canonical name of the host in the other side of the current
702  * connection.  The host name is cached, so it is efficient to call this
703  * several times.
704  */
705 
706 const char *
707 auth_get_canonical_hostname(struct ssh *ssh, int use_dns)
708 {
709 	static char *dnsname;
710 
711 	if (!use_dns)
712 		return ssh_remote_ipaddr(ssh);
713 	else if (dnsname != NULL)
714 		return dnsname;
715 	else {
716 		dnsname = remote_hostname(ssh);
717 		return dnsname;
718 	}
719 }
720 
721 /*
722  * Runs command in a subprocess with a minimal environment.
723  * Returns pid on success, 0 on failure.
724  * The child stdout and stderr maybe captured, left attached or sent to
725  * /dev/null depending on the contents of flags.
726  * "tag" is prepended to log messages.
727  * NB. "command" is only used for logging; the actual command executed is
728  * av[0].
729  */
730 pid_t
731 subprocess(const char *tag, struct passwd *pw, const char *command,
732     int ac, char **av, FILE **child, u_int flags)
733 {
734 	FILE *f = NULL;
735 	struct stat st;
736 	int fd, devnull, p[2], i;
737 	pid_t pid;
738 	char *cp, errmsg[512];
739 	u_int envsize;
740 	char **child_env;
741 
742 	if (child != NULL)
743 		*child = NULL;
744 
745 	debug3("%s: %s command \"%s\" running as %s (flags 0x%x)", __func__,
746 	    tag, command, pw->pw_name, flags);
747 
748 	/* Check consistency */
749 	if ((flags & SSH_SUBPROCESS_STDOUT_DISCARD) != 0 &&
750 	    (flags & SSH_SUBPROCESS_STDOUT_CAPTURE) != 0) {
751 		error("%s: inconsistent flags", __func__);
752 		return 0;
753 	}
754 	if (((flags & SSH_SUBPROCESS_STDOUT_CAPTURE) == 0) != (child == NULL)) {
755 		error("%s: inconsistent flags/output", __func__);
756 		return 0;
757 	}
758 
759 	/*
760 	 * If executing an explicit binary, then verify the it exists
761 	 * and appears safe-ish to execute
762 	 */
763 	if (!path_absolute(av[0])) {
764 		error("%s path is not absolute", tag);
765 		return 0;
766 	}
767 	temporarily_use_uid(pw);
768 	if (stat(av[0], &st) < 0) {
769 		error("Could not stat %s \"%s\": %s", tag,
770 		    av[0], strerror(errno));
771 		restore_uid();
772 		return 0;
773 	}
774 	if (safe_path(av[0], &st, NULL, 0, errmsg, sizeof(errmsg)) != 0) {
775 		error("Unsafe %s \"%s\": %s", tag, av[0], errmsg);
776 		restore_uid();
777 		return 0;
778 	}
779 	/* Prepare to keep the child's stdout if requested */
780 	if (pipe(p) != 0) {
781 		error("%s: pipe: %s", tag, strerror(errno));
782 		restore_uid();
783 		return 0;
784 	}
785 	restore_uid();
786 
787 	switch ((pid = fork())) {
788 	case -1: /* error */
789 		error("%s: fork: %s", tag, strerror(errno));
790 		close(p[0]);
791 		close(p[1]);
792 		return 0;
793 	case 0: /* child */
794 		/* Prepare a minimal environment for the child. */
795 		envsize = 5;
796 		child_env = xcalloc(sizeof(*child_env), envsize);
797 		child_set_env(&child_env, &envsize, "PATH", _PATH_STDPATH);
798 		child_set_env(&child_env, &envsize, "USER", pw->pw_name);
799 		child_set_env(&child_env, &envsize, "LOGNAME", pw->pw_name);
800 		child_set_env(&child_env, &envsize, "HOME", pw->pw_dir);
801 		if ((cp = getenv("LANG")) != NULL)
802 			child_set_env(&child_env, &envsize, "LANG", cp);
803 
804 		for (i = 0; i < NSIG; i++)
805 			signal(i, SIG_DFL);
806 
807 		if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
808 			error("%s: open %s: %s", tag, _PATH_DEVNULL,
809 			    strerror(errno));
810 			_exit(1);
811 		}
812 		if (dup2(devnull, STDIN_FILENO) == -1) {
813 			error("%s: dup2: %s", tag, strerror(errno));
814 			_exit(1);
815 		}
816 
817 		/* Set up stdout as requested; leave stderr in place for now. */
818 		fd = -1;
819 		if ((flags & SSH_SUBPROCESS_STDOUT_CAPTURE) != 0)
820 			fd = p[1];
821 		else if ((flags & SSH_SUBPROCESS_STDOUT_DISCARD) != 0)
822 			fd = devnull;
823 		if (fd != -1 && dup2(fd, STDOUT_FILENO) == -1) {
824 			error("%s: dup2: %s", tag, strerror(errno));
825 			_exit(1);
826 		}
827 		closefrom(STDERR_FILENO + 1);
828 
829 		/* Don't use permanently_set_uid() here to avoid fatal() */
830 		if (setresgid(pw->pw_gid, pw->pw_gid, pw->pw_gid) != 0) {
831 			error("%s: setresgid %u: %s", tag, (u_int)pw->pw_gid,
832 			    strerror(errno));
833 			_exit(1);
834 		}
835 		if (setresuid(pw->pw_uid, pw->pw_uid, pw->pw_uid) != 0) {
836 			error("%s: setresuid %u: %s", tag, (u_int)pw->pw_uid,
837 			    strerror(errno));
838 			_exit(1);
839 		}
840 		/* stdin is pointed to /dev/null at this point */
841 		if ((flags & SSH_SUBPROCESS_STDOUT_DISCARD) != 0 &&
842 		    dup2(STDIN_FILENO, STDERR_FILENO) == -1) {
843 			error("%s: dup2: %s", tag, strerror(errno));
844 			_exit(1);
845 		}
846 
847 		execve(av[0], av, child_env);
848 		error("%s exec \"%s\": %s", tag, command, strerror(errno));
849 		_exit(127);
850 	default: /* parent */
851 		break;
852 	}
853 
854 	close(p[1]);
855 	if ((flags & SSH_SUBPROCESS_STDOUT_CAPTURE) == 0)
856 		close(p[0]);
857 	else if ((f = fdopen(p[0], "r")) == NULL) {
858 		error("%s: fdopen: %s", tag, strerror(errno));
859 		close(p[0]);
860 		/* Don't leave zombie child */
861 		kill(pid, SIGTERM);
862 		while (waitpid(pid, NULL, 0) == -1 && errno == EINTR)
863 			;
864 		return 0;
865 	}
866 	/* Success */
867 	debug3("%s: %s pid %ld", __func__, tag, (long)pid);
868 	if (child != NULL)
869 		*child = f;
870 	return pid;
871 }
872 
873 /* These functions link key/cert options to the auth framework */
874 
875 /* Log sshauthopt options locally and (optionally) for remote transmission */
876 void
877 auth_log_authopts(const char *loc, const struct sshauthopt *opts, int do_remote)
878 {
879 	int do_env = options.permit_user_env && opts->nenv > 0;
880 	int do_permitopen = opts->npermitopen > 0 &&
881 	    (options.allow_tcp_forwarding & FORWARD_LOCAL) != 0;
882 	int do_permitlisten = opts->npermitlisten > 0 &&
883 	    (options.allow_tcp_forwarding & FORWARD_REMOTE) != 0;
884 	size_t i;
885 	char msg[1024], buf[64];
886 
887 	snprintf(buf, sizeof(buf), "%d", opts->force_tun_device);
888 	/* Try to keep this alphabetically sorted */
889 	snprintf(msg, sizeof(msg), "key options:%s%s%s%s%s%s%s%s%s%s%s%s%s",
890 	    opts->permit_agent_forwarding_flag ? " agent-forwarding" : "",
891 	    opts->force_command == NULL ? "" : " command",
892 	    do_env ?  " environment" : "",
893 	    opts->valid_before == 0 ? "" : "expires",
894 	    do_permitopen ?  " permitopen" : "",
895 	    do_permitlisten ?  " permitlisten" : "",
896 	    opts->permit_port_forwarding_flag ? " port-forwarding" : "",
897 	    opts->cert_principals == NULL ? "" : " principals",
898 	    opts->permit_pty_flag ? " pty" : "",
899 	    opts->force_tun_device == -1 ? "" : " tun=",
900 	    opts->force_tun_device == -1 ? "" : buf,
901 	    opts->permit_user_rc ? " user-rc" : "",
902 	    opts->permit_x11_forwarding_flag ? " x11-forwarding" : "");
903 
904 	debug("%s: %s", loc, msg);
905 	if (do_remote)
906 		auth_debug_add("%s: %s", loc, msg);
907 
908 	if (options.permit_user_env) {
909 		for (i = 0; i < opts->nenv; i++) {
910 			debug("%s: environment: %s", loc, opts->env[i]);
911 			if (do_remote) {
912 				auth_debug_add("%s: environment: %s",
913 				    loc, opts->env[i]);
914 			}
915 		}
916 	}
917 
918 	/* Go into a little more details for the local logs. */
919 	if (opts->valid_before != 0) {
920 		format_absolute_time(opts->valid_before, buf, sizeof(buf));
921 		debug("%s: expires at %s", loc, buf);
922 	}
923 	if (opts->cert_principals != NULL) {
924 		debug("%s: authorized principals: \"%s\"",
925 		    loc, opts->cert_principals);
926 	}
927 	if (opts->force_command != NULL)
928 		debug("%s: forced command: \"%s\"", loc, opts->force_command);
929 	if (do_permitopen) {
930 		for (i = 0; i < opts->npermitopen; i++) {
931 			debug("%s: permitted open: %s",
932 			    loc, opts->permitopen[i]);
933 		}
934 	}
935 	if (do_permitlisten) {
936 		for (i = 0; i < opts->npermitlisten; i++) {
937 			debug("%s: permitted listen: %s",
938 			    loc, opts->permitlisten[i]);
939 		}
940 	}
941 }
942 
943 /* Activate a new set of key/cert options; merging with what is there. */
944 int
945 auth_activate_options(struct ssh *ssh, struct sshauthopt *opts)
946 {
947 	struct sshauthopt *old = auth_opts;
948 	const char *emsg = NULL;
949 
950 	debug("%s: setting new authentication options", __func__);
951 	if ((auth_opts = sshauthopt_merge(old, opts, &emsg)) == NULL) {
952 		error("Inconsistent authentication options: %s", emsg);
953 		return -1;
954 	}
955 	return 0;
956 }
957 
958 /* Disable forwarding, etc for the session */
959 void
960 auth_restrict_session(struct ssh *ssh)
961 {
962 	struct sshauthopt *restricted;
963 
964 	debug("%s: restricting session", __func__);
965 
966 	/* A blank sshauthopt defaults to permitting nothing */
967 	restricted = sshauthopt_new();
968 	restricted->permit_pty_flag = 1;
969 	restricted->restricted = 1;
970 
971 	if (auth_activate_options(ssh, restricted) != 0)
972 		fatal("%s: failed to restrict session", __func__);
973 	sshauthopt_free(restricted);
974 }
975 
976 int
977 auth_authorise_keyopts(struct ssh *ssh, struct passwd *pw,
978     struct sshauthopt *opts, int allow_cert_authority, const char *loc)
979 {
980 	const char *remote_ip = ssh_remote_ipaddr(ssh);
981 	const char *remote_host = auth_get_canonical_hostname(ssh,
982 	    options.use_dns);
983 	time_t now = time(NULL);
984 	char buf[64];
985 
986 	/*
987 	 * Check keys/principals file expiry time.
988 	 * NB. validity interval in certificate is handled elsewhere.
989 	 */
990 	if (opts->valid_before && now > 0 &&
991 	    opts->valid_before < (uint64_t)now) {
992 		format_absolute_time(opts->valid_before, buf, sizeof(buf));
993 		debug("%s: entry expired at %s", loc, buf);
994 		auth_debug_add("%s: entry expired at %s", loc, buf);
995 		return -1;
996 	}
997 	/* Consistency checks */
998 	if (opts->cert_principals != NULL && !opts->cert_authority) {
999 		debug("%s: principals on non-CA key", loc);
1000 		auth_debug_add("%s: principals on non-CA key", loc);
1001 		/* deny access */
1002 		return -1;
1003 	}
1004 	/* cert-authority flag isn't valid in authorized_principals files */
1005 	if (!allow_cert_authority && opts->cert_authority) {
1006 		debug("%s: cert-authority flag invalid here", loc);
1007 		auth_debug_add("%s: cert-authority flag invalid here", loc);
1008 		/* deny access */
1009 		return -1;
1010 	}
1011 
1012 	/* Perform from= checks */
1013 	if (opts->required_from_host_keys != NULL) {
1014 		switch (match_host_and_ip(remote_host, remote_ip,
1015 		    opts->required_from_host_keys )) {
1016 		case 1:
1017 			/* Host name matches. */
1018 			break;
1019 		case -1:
1020 		default:
1021 			debug("%s: invalid from criteria", loc);
1022 			auth_debug_add("%s: invalid from criteria", loc);
1023 			/* FALLTHROUGH */
1024 		case 0:
1025 			logit("%s: Authentication tried for %.100s with "
1026 			    "correct key but not from a permitted "
1027 			    "host (host=%.200s, ip=%.200s, required=%.200s).",
1028 			    loc, pw->pw_name, remote_host, remote_ip,
1029 			    opts->required_from_host_keys);
1030 			auth_debug_add("%s: Your host '%.200s' is not "
1031 			    "permitted to use this key for login.",
1032 			    loc, remote_host);
1033 			/* deny access */
1034 			return -1;
1035 		}
1036 	}
1037 	/* Check source-address restriction from certificate */
1038 	if (opts->required_from_host_cert != NULL) {
1039 		switch (addr_match_cidr_list(remote_ip,
1040 		    opts->required_from_host_cert)) {
1041 		case 1:
1042 			/* accepted */
1043 			break;
1044 		case -1:
1045 		default:
1046 			/* invalid */
1047 			error("%s: Certificate source-address invalid",
1048 			    loc);
1049 			/* FALLTHROUGH */
1050 		case 0:
1051 			logit("%s: Authentication tried for %.100s with valid "
1052 			    "certificate but not from a permitted source "
1053 			    "address (%.200s).", loc, pw->pw_name, remote_ip);
1054 			auth_debug_add("%s: Your address '%.200s' is not "
1055 			    "permitted to use this certificate for login.",
1056 			    loc, remote_ip);
1057 			return -1;
1058 		}
1059 	}
1060 	/*
1061 	 *
1062 	 * XXX this is spammy. We should report remotely only for keys
1063 	 *     that are successful in actual auth attempts, and not PK_OK
1064 	 *     tests.
1065 	 */
1066 	auth_log_authopts(loc, opts, 1);
1067 
1068 	return 0;
1069 }
1070