xref: /freebsd/crypto/openssh/auth2.c (revision ee2ea5ceafed78a5bd9810beb9e3ca927180c226)
1 /*
2  * Copyright (c) 2000 Markus Friedl.  All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23  */
24 
25 #include "includes.h"
26 RCSID("$OpenBSD: auth2.c,v 1.85 2002/02/24 19:14:59 markus Exp $");
27 RCSID("$FreeBSD$");
28 
29 #include <openssl/evp.h>
30 
31 #include "ssh2.h"
32 #include "xmalloc.h"
33 #include "rsa.h"
34 #include "sshpty.h"
35 #include "packet.h"
36 #include "buffer.h"
37 #include "log.h"
38 #include "servconf.h"
39 #include "compat.h"
40 #include "channels.h"
41 #include "bufaux.h"
42 #include "auth.h"
43 #include "session.h"
44 #include "dispatch.h"
45 #include "key.h"
46 #include "cipher.h"
47 #include "kex.h"
48 #include "pathnames.h"
49 #include "uidswap.h"
50 #include "auth-options.h"
51 #include "misc.h"
52 #include "hostfile.h"
53 #include "canohost.h"
54 #include "match.h"
55 
56 #ifdef HAVE_LOGIN_CAP
57 #include <login_cap.h>
58 #endif /* HAVE_LOGIN_CAP */
59 
60 /* import */
61 extern ServerOptions options;
62 extern u_char *session_id2;
63 extern int session_id2_len;
64 
65 static Authctxt	*x_authctxt = NULL;
66 static int one = 1;
67 
68 typedef struct Authmethod Authmethod;
69 struct Authmethod {
70 	char	*name;
71 	int	(*userauth)(Authctxt *authctxt);
72 	int	*enabled;
73 };
74 
75 /* protocol */
76 
77 static void input_service_request(int, u_int32_t, void *);
78 static void input_userauth_request(int, u_int32_t, void *);
79 
80 /* helper */
81 static Authmethod *authmethod_lookup(const char *);
82 static char *authmethods_get(void);
83 static int user_key_allowed(struct passwd *, Key *);
84 static int hostbased_key_allowed(struct passwd *, const char *, char *, Key *);
85 
86 /* auth */
87 static void userauth_banner(void);
88 static int userauth_none(Authctxt *);
89 static int userauth_passwd(Authctxt *);
90 static int userauth_pubkey(Authctxt *);
91 static int userauth_hostbased(Authctxt *);
92 static int userauth_kbdint(Authctxt *);
93 
94 Authmethod authmethods[] = {
95 	{"none",
96 		userauth_none,
97 		&one},
98 	{"publickey",
99 		userauth_pubkey,
100 		&options.pubkey_authentication},
101 	{"password",
102 		userauth_passwd,
103 		&options.password_authentication},
104 	{"keyboard-interactive",
105 		userauth_kbdint,
106 		&options.kbd_interactive_authentication},
107 	{"hostbased",
108 		userauth_hostbased,
109 		&options.hostbased_authentication},
110 	{NULL, NULL, NULL}
111 };
112 
113 /*
114  * loop until authctxt->success == TRUE
115  */
116 
117 void
118 do_authentication2(void)
119 {
120 	Authctxt *authctxt = authctxt_new();
121 
122 	x_authctxt = authctxt;		/*XXX*/
123 
124 	/* challenge-response is implemented via keyboard interactive */
125 	if (options.challenge_response_authentication)
126 		options.kbd_interactive_authentication = 1;
127 
128 	dispatch_init(&dispatch_protocol_error);
129 	dispatch_set(SSH2_MSG_SERVICE_REQUEST, &input_service_request);
130 	dispatch_run(DISPATCH_BLOCK, &authctxt->success, authctxt);
131 	do_authenticated(authctxt);
132 }
133 
134 static void
135 input_service_request(int type, u_int32_t seq, void *ctxt)
136 {
137 	Authctxt *authctxt = ctxt;
138 	u_int len;
139 	int accept = 0;
140 	char *service = packet_get_string(&len);
141 	packet_check_eom();
142 
143 	if (authctxt == NULL)
144 		fatal("input_service_request: no authctxt");
145 
146 	if (strcmp(service, "ssh-userauth") == 0) {
147 		if (!authctxt->success) {
148 			accept = 1;
149 			/* now we can handle user-auth requests */
150 			dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &input_userauth_request);
151 		}
152 	}
153 	/* XXX all other service requests are denied */
154 
155 	if (accept) {
156 		packet_start(SSH2_MSG_SERVICE_ACCEPT);
157 		packet_put_cstring(service);
158 		packet_send();
159 		packet_write_wait();
160 	} else {
161 		debug("bad service request %s", service);
162 		packet_disconnect("bad service request %s", service);
163 	}
164 	xfree(service);
165 }
166 
167 static void
168 input_userauth_request(int type, u_int32_t seq, void *ctxt)
169 {
170 	Authctxt *authctxt = ctxt;
171 	Authmethod *m = NULL;
172 	char *user, *service, *method, *style = NULL;
173 	int authenticated = 0;
174 #ifdef HAVE_LOGIN_CAP
175 	login_cap_t *lc;
176 #endif /* HAVE_LOGIN_CAP */
177 #if defined(HAVE_LOGIN_CAP)
178 	const char *from_host, *from_ip;
179 
180 	from_host = get_canonical_hostname(options.verify_reverse_mapping);
181 	from_ip = get_remote_ipaddr();
182 #endif /* HAVE_LOGIN_CAP */
183 
184 	if (authctxt == NULL)
185 		fatal("input_userauth_request: no authctxt");
186 
187 	user = packet_get_string(NULL);
188 	service = packet_get_string(NULL);
189 	method = packet_get_string(NULL);
190 	debug("userauth-request for user %s service %s method %s", user, service, method);
191 	debug("attempt %d failures %d", authctxt->attempt, authctxt->failures);
192 
193 	if ((style = strchr(user, ':')) != NULL)
194 		*style++ = 0;
195 
196 	if (authctxt->attempt++ == 0) {
197 		/* setup auth context */
198 		struct passwd *pw = NULL;
199 		pw = getpwnam(user);
200 		if (pw && allowed_user(pw) && strcmp(service, "ssh-connection")==0) {
201 			authctxt->pw = pwcopy(pw);
202 			authctxt->valid = 1;
203 			debug2("input_userauth_request: setting up authctxt for %s", user);
204 #ifdef USE_PAM
205 			start_pam(pw);
206 #endif
207 		} else {
208 			log("input_userauth_request: illegal user %s", user);
209 			authctxt->pw = NULL;
210 		}
211 		setproctitle("%s", pw ? user : "unknown");
212 		authctxt->user = xstrdup(user);
213 		authctxt->service = xstrdup(service);
214 		authctxt->style = style ? xstrdup(style) : NULL;
215 	} else if (strcmp(user, authctxt->user) != 0 ||
216 	    strcmp(service, authctxt->service) != 0) {
217 		packet_disconnect("Change of username or service not allowed: "
218 		    "(%s,%s) -> (%s,%s)",
219 		    authctxt->user, authctxt->service, user, service);
220 	}
221 
222 #ifdef HAVE_LOGIN_CAP
223 	if (authctxt->pw != NULL) {
224 		lc = login_getpwclass(authctxt->pw);
225 		if (lc == NULL)
226 			lc = login_getclassbyname(NULL, authctxt->pw);
227 		if (!auth_hostok(lc, from_host, from_ip)) {
228 			log("Denied connection for %.200s from %.200s [%.200s].",
229 			    authctxt->pw->pw_name, from_host, from_ip);
230 			packet_disconnect("Sorry, you are not allowed to connect.");
231 		}
232 		if (!auth_timeok(lc, time(NULL))) {
233 			log("LOGIN %.200s REFUSED (TIME) FROM %.200s",
234 			    authctxt->pw->pw_name, from_host);
235 			packet_disconnect("Logins not available right now.");
236 		}
237 		login_close(lc);
238 		lc = NULL;
239 	}
240 #endif  /* HAVE_LOGIN_CAP */
241 	/* reset state */
242 	auth2_challenge_stop(authctxt);
243 	authctxt->postponed = 0;
244 
245 	/* try to authenticate user */
246 	m = authmethod_lookup(method);
247 	if (m != NULL) {
248 		debug2("input_userauth_request: try method %s", method);
249 		authenticated =	m->userauth(authctxt);
250 	}
251 #ifdef USE_PAM
252 	if (authenticated && authctxt->user && !do_pam_account(authctxt->user, NULL))
253 		authenticated = 0;
254 #endif /* USE_PAM */
255 	userauth_finish(authctxt, authenticated, method);
256 
257 	xfree(service);
258 	xfree(user);
259 	xfree(method);
260 }
261 
262 void
263 userauth_finish(Authctxt *authctxt, int authenticated, char *method)
264 {
265 	char *methods;
266 
267 	if (!authctxt->valid && authenticated)
268 		fatal("INTERNAL ERROR: authenticated invalid user %s",
269 		    authctxt->user);
270 
271 	/* Special handling for root */
272 	if (authenticated && authctxt->pw->pw_uid == 0 &&
273 	    !auth_root_allowed(method))
274 		authenticated = 0;
275 
276 	/* Log before sending the reply */
277 	auth_log(authctxt, authenticated, method, " ssh2");
278 
279 	if (authctxt->postponed)
280 		return;
281 
282 	/* XXX todo: check if multiple auth methods are needed */
283 	if (authenticated == 1) {
284 		/* turn off userauth */
285 		dispatch_set(SSH2_MSG_USERAUTH_REQUEST, &dispatch_protocol_ignore);
286 		packet_start(SSH2_MSG_USERAUTH_SUCCESS);
287 		packet_send();
288 		packet_write_wait();
289 		/* now we can break out */
290 		authctxt->success = 1;
291 	} else {
292 		if (authctxt->failures++ > AUTH_FAIL_MAX)
293 			packet_disconnect(AUTH_FAIL_MSG, authctxt->user);
294 		methods = authmethods_get();
295 		packet_start(SSH2_MSG_USERAUTH_FAILURE);
296 		packet_put_cstring(methods);
297 		packet_put_char(0);	/* XXX partial success, unused */
298 		packet_send();
299 		packet_write_wait();
300 		xfree(methods);
301 	}
302 }
303 
304 static void
305 userauth_banner(void)
306 {
307 	struct stat st;
308 	char *banner = NULL;
309 	off_t len, n;
310 	int fd;
311 
312 	if (options.banner == NULL || (datafellows & SSH_BUG_BANNER))
313 		return;
314 	if ((fd = open(options.banner, O_RDONLY)) < 0)
315 		return;
316 	if (fstat(fd, &st) < 0)
317 		goto done;
318 	len = st.st_size;
319 	banner = xmalloc(len + 1);
320 	if ((n = read(fd, banner, len)) < 0)
321 		goto done;
322 	banner[n] = '\0';
323 	packet_start(SSH2_MSG_USERAUTH_BANNER);
324 	packet_put_cstring(banner);
325 	packet_put_cstring("");		/* language, unused */
326 	packet_send();
327 	debug("userauth_banner: sent");
328 done:
329 	if (banner)
330 		xfree(banner);
331 	close(fd);
332 	return;
333 }
334 
335 static int
336 userauth_none(Authctxt *authctxt)
337 {
338 	/* disable method "none", only allowed one time */
339 	Authmethod *m = authmethod_lookup("none");
340 	if (m != NULL)
341 		m->enabled = NULL;
342 	packet_check_eom();
343 	userauth_banner();
344 #ifdef USE_PAM
345 	return authctxt->valid ? auth_pam_password(authctxt, "") : 0;
346 #else /* !USE_PAM */
347 	return authctxt->valid ? auth_password(authctxt, "") : 0;
348 #endif /* USE_PAM */
349 }
350 
351 static int
352 userauth_passwd(Authctxt *authctxt)
353 {
354 	char *password;
355 	int authenticated = 0;
356 	int change;
357 	u_int len;
358 	change = packet_get_char();
359 	if (change)
360 		log("password change not supported");
361 	password = packet_get_string(&len);
362 	packet_check_eom();
363 	if (authctxt->valid &&
364 #ifdef USE_PAM
365 	    auth_password(authctxt, password) == 1)
366 #else
367 	    auth_password(authctxt, password) == 1)
368 #endif
369 		authenticated = 1;
370 	memset(password, 0, len);
371 	xfree(password);
372 	return authenticated;
373 }
374 
375 static int
376 userauth_kbdint(Authctxt *authctxt)
377 {
378 	int authenticated = 0;
379 	char *lang, *devs;
380 
381 	lang = packet_get_string(NULL);
382 	devs = packet_get_string(NULL);
383 	packet_check_eom();
384 
385 	debug("keyboard-interactive devs %s", devs);
386 
387 	if (options.challenge_response_authentication)
388 		authenticated = auth2_challenge(authctxt, devs);
389 
390 	xfree(devs);
391 	xfree(lang);
392 	return authenticated;
393 }
394 
395 static int
396 userauth_pubkey(Authctxt *authctxt)
397 {
398 	Buffer b;
399 	Key *key = NULL;
400 	char *pkalg;
401 	u_char *pkblob, *sig;
402 	u_int alen, blen, slen;
403 	int have_sig, pktype;
404 	int authenticated = 0;
405 
406 	if (!authctxt->valid) {
407 		debug2("userauth_pubkey: disabled because of invalid user");
408 		return 0;
409 	}
410 	have_sig = packet_get_char();
411 	if (datafellows & SSH_BUG_PKAUTH) {
412 		debug2("userauth_pubkey: SSH_BUG_PKAUTH");
413 		/* no explicit pkalg given */
414 		pkblob = packet_get_string(&blen);
415 		buffer_init(&b);
416 		buffer_append(&b, pkblob, blen);
417 		/* so we have to extract the pkalg from the pkblob */
418 		pkalg = buffer_get_string(&b, &alen);
419 		buffer_free(&b);
420 	} else {
421 		pkalg = packet_get_string(&alen);
422 		pkblob = packet_get_string(&blen);
423 	}
424 	pktype = key_type_from_name(pkalg);
425 	if (pktype == KEY_UNSPEC) {
426 		/* this is perfectly legal */
427 		log("userauth_pubkey: unsupported public key algorithm: %s",
428 		    pkalg);
429 		goto done;
430 	}
431 	key = key_from_blob(pkblob, blen);
432 	if (key == NULL) {
433 		error("userauth_pubkey: cannot decode key: %s", pkalg);
434 		goto done;
435 	}
436 	if (key->type != pktype) {
437 		error("userauth_pubkey: type mismatch for decoded key "
438 		    "(received %d, expected %d)", key->type, pktype);
439 		goto done;
440 	}
441 	if (have_sig) {
442 		sig = packet_get_string(&slen);
443 		packet_check_eom();
444 		buffer_init(&b);
445 		if (datafellows & SSH_OLD_SESSIONID) {
446 			buffer_append(&b, session_id2, session_id2_len);
447 		} else {
448 			buffer_put_string(&b, session_id2, session_id2_len);
449 		}
450 		/* reconstruct packet */
451 		buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
452 		buffer_put_cstring(&b, authctxt->user);
453 		buffer_put_cstring(&b,
454 		    datafellows & SSH_BUG_PKSERVICE ?
455 		    "ssh-userauth" :
456 		    authctxt->service);
457 		if (datafellows & SSH_BUG_PKAUTH) {
458 			buffer_put_char(&b, have_sig);
459 		} else {
460 			buffer_put_cstring(&b, "publickey");
461 			buffer_put_char(&b, have_sig);
462 			buffer_put_cstring(&b, pkalg);
463 		}
464 		buffer_put_string(&b, pkblob, blen);
465 #ifdef DEBUG_PK
466 		buffer_dump(&b);
467 #endif
468 		/* test for correct signature */
469 		if (user_key_allowed(authctxt->pw, key) &&
470 		    key_verify(key, sig, slen, buffer_ptr(&b), buffer_len(&b)) == 1)
471 			authenticated = 1;
472 		buffer_clear(&b);
473 		xfree(sig);
474 	} else {
475 		debug("test whether pkalg/pkblob are acceptable");
476 		packet_check_eom();
477 
478 		/* XXX fake reply and always send PK_OK ? */
479 		/*
480 		 * XXX this allows testing whether a user is allowed
481 		 * to login: if you happen to have a valid pubkey this
482 		 * message is sent. the message is NEVER sent at all
483 		 * if a user is not allowed to login. is this an
484 		 * issue? -markus
485 		 */
486 		if (user_key_allowed(authctxt->pw, key)) {
487 			packet_start(SSH2_MSG_USERAUTH_PK_OK);
488 			packet_put_string(pkalg, alen);
489 			packet_put_string(pkblob, blen);
490 			packet_send();
491 			packet_write_wait();
492 			authctxt->postponed = 1;
493 		}
494 	}
495 	if (authenticated != 1)
496 		auth_clear_options();
497 done:
498 	debug2("userauth_pubkey: authenticated %d pkalg %s", authenticated, pkalg);
499 	if (key != NULL)
500 		key_free(key);
501 	xfree(pkalg);
502 	xfree(pkblob);
503 	return authenticated;
504 }
505 
506 static int
507 userauth_hostbased(Authctxt *authctxt)
508 {
509 	Buffer b;
510 	Key *key = NULL;
511 	char *pkalg, *cuser, *chost, *service;
512 	u_char *pkblob, *sig;
513 	u_int alen, blen, slen;
514 	int pktype;
515 	int authenticated = 0;
516 
517 	if (!authctxt->valid) {
518 		debug2("userauth_hostbased: disabled because of invalid user");
519 		return 0;
520 	}
521 	pkalg = packet_get_string(&alen);
522 	pkblob = packet_get_string(&blen);
523 	chost = packet_get_string(NULL);
524 	cuser = packet_get_string(NULL);
525 	sig = packet_get_string(&slen);
526 
527 	debug("userauth_hostbased: cuser %s chost %s pkalg %s slen %d",
528 	    cuser, chost, pkalg, slen);
529 #ifdef DEBUG_PK
530 	debug("signature:");
531 	buffer_init(&b);
532 	buffer_append(&b, sig, slen);
533 	buffer_dump(&b);
534 	buffer_free(&b);
535 #endif
536 	pktype = key_type_from_name(pkalg);
537 	if (pktype == KEY_UNSPEC) {
538 		/* this is perfectly legal */
539 		log("userauth_hostbased: unsupported "
540 		    "public key algorithm: %s", pkalg);
541 		goto done;
542 	}
543 	key = key_from_blob(pkblob, blen);
544 	if (key == NULL) {
545 		error("userauth_hostbased: cannot decode key: %s", pkalg);
546 		goto done;
547 	}
548 	if (key->type != pktype) {
549 		error("userauth_hostbased: type mismatch for decoded key "
550 		    "(received %d, expected %d)", key->type, pktype);
551 		goto done;
552 	}
553 	service = datafellows & SSH_BUG_HBSERVICE ? "ssh-userauth" :
554 	    authctxt->service;
555 	buffer_init(&b);
556 	buffer_put_string(&b, session_id2, session_id2_len);
557 	/* reconstruct packet */
558 	buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
559 	buffer_put_cstring(&b, authctxt->user);
560 	buffer_put_cstring(&b, service);
561 	buffer_put_cstring(&b, "hostbased");
562 	buffer_put_string(&b, pkalg, alen);
563 	buffer_put_string(&b, pkblob, blen);
564 	buffer_put_cstring(&b, chost);
565 	buffer_put_cstring(&b, cuser);
566 #ifdef DEBUG_PK
567 	buffer_dump(&b);
568 #endif
569 	/* test for allowed key and correct signature */
570 	if (hostbased_key_allowed(authctxt->pw, cuser, chost, key) &&
571 	    key_verify(key, sig, slen, buffer_ptr(&b), buffer_len(&b)) == 1)
572 		authenticated = 1;
573 
574 	buffer_clear(&b);
575 done:
576 	debug2("userauth_hostbased: authenticated %d", authenticated);
577 	if (key != NULL)
578 		key_free(key);
579 	xfree(pkalg);
580 	xfree(pkblob);
581 	xfree(cuser);
582 	xfree(chost);
583 	xfree(sig);
584 	return authenticated;
585 }
586 
587 /* get current user */
588 
589 struct passwd*
590 auth_get_user(void)
591 {
592 	return (x_authctxt != NULL && x_authctxt->valid) ? x_authctxt->pw : NULL;
593 }
594 
595 #define	DELIM	","
596 
597 static char *
598 authmethods_get(void)
599 {
600 	Authmethod *method = NULL;
601 	Buffer b;
602 	char *list;
603 
604 	buffer_init(&b);
605 	for (method = authmethods; method->name != NULL; method++) {
606 		if (strcmp(method->name, "none") == 0)
607 			continue;
608 		if (method->enabled != NULL && *(method->enabled) != 0) {
609 			if (buffer_len(&b) > 0)
610 				buffer_append(&b, ",", 1);
611 			buffer_append(&b, method->name, strlen(method->name));
612 		}
613 	}
614 	buffer_append(&b, "\0", 1);
615 	list = xstrdup(buffer_ptr(&b));
616 	buffer_free(&b);
617 	return list;
618 }
619 
620 static Authmethod *
621 authmethod_lookup(const char *name)
622 {
623 	Authmethod *method = NULL;
624 	if (name != NULL)
625 		for (method = authmethods; method->name != NULL; method++)
626 			if (method->enabled != NULL &&
627 			    *(method->enabled) != 0 &&
628 			    strcmp(name, method->name) == 0)
629 				return method;
630 	debug2("Unrecognized authentication method name: %s", name ? name : "NULL");
631 	return NULL;
632 }
633 
634 /* return 1 if user allows given key */
635 static int
636 user_key_allowed2(struct passwd *pw, Key *key, char *file)
637 {
638 	char line[8192];
639 	int found_key = 0;
640 	FILE *f;
641 	u_long linenum = 0;
642 	struct stat st;
643 	Key *found;
644 	char *fp;
645 
646 	if (pw == NULL)
647 		return 0;
648 
649 	/* Temporarily use the user's uid. */
650 	temporarily_use_uid(pw);
651 
652 	debug("trying public key file %s", file);
653 
654 	/* Fail quietly if file does not exist */
655 	if (stat(file, &st) < 0) {
656 		/* Restore the privileged uid. */
657 		restore_uid();
658 		return 0;
659 	}
660 	/* Open the file containing the authorized keys. */
661 	f = fopen(file, "r");
662 	if (!f) {
663 		/* Restore the privileged uid. */
664 		restore_uid();
665 		return 0;
666 	}
667 	if (options.strict_modes &&
668 	    secure_filename(f, file, pw, line, sizeof(line)) != 0) {
669 		fclose(f);
670 		log("Authentication refused: %s", line);
671 		restore_uid();
672 		return 0;
673 	}
674 
675 	found_key = 0;
676 	found = key_new(key->type);
677 
678 	while (fgets(line, sizeof(line), f)) {
679 		char *cp, *options = NULL;
680 		linenum++;
681 		/* Skip leading whitespace, empty and comment lines. */
682 		for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
683 			;
684 		if (!*cp || *cp == '\n' || *cp == '#')
685 			continue;
686 
687 		if (key_read(found, &cp) != 1) {
688 			/* no key?  check if there are options for this key */
689 			int quoted = 0;
690 			debug2("user_key_allowed: check options: '%s'", cp);
691 			options = cp;
692 			for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
693 				if (*cp == '\\' && cp[1] == '"')
694 					cp++;	/* Skip both */
695 				else if (*cp == '"')
696 					quoted = !quoted;
697 			}
698 			/* Skip remaining whitespace. */
699 			for (; *cp == ' ' || *cp == '\t'; cp++)
700 				;
701 			if (key_read(found, &cp) != 1) {
702 				debug2("user_key_allowed: advance: '%s'", cp);
703 				/* still no key?  advance to next line*/
704 				continue;
705 			}
706 		}
707 		if (key_equal(found, key) &&
708 		    auth_parse_options(pw, options, file, linenum) == 1) {
709 			found_key = 1;
710 			debug("matching key found: file %s, line %lu",
711 			    file, linenum);
712 			fp = key_fingerprint(found, SSH_FP_MD5, SSH_FP_HEX);
713 			verbose("Found matching %s key: %s",
714 			    key_type(found), fp);
715 			xfree(fp);
716 			break;
717 		}
718 	}
719 	restore_uid();
720 	fclose(f);
721 	key_free(found);
722 	if (!found_key)
723 		debug2("key not found");
724 	return found_key;
725 }
726 
727 /* check whether given key is in .ssh/authorized_keys* */
728 static int
729 user_key_allowed(struct passwd *pw, Key *key)
730 {
731 	int success;
732 	char *file;
733 
734 	file = authorized_keys_file(pw);
735 	success = user_key_allowed2(pw, key, file);
736 	xfree(file);
737 	if (success)
738 		return success;
739 
740 	/* try suffix "2" for backward compat, too */
741 	file = authorized_keys_file2(pw);
742 	success = user_key_allowed2(pw, key, file);
743 	xfree(file);
744 	return success;
745 }
746 
747 /* return 1 if given hostkey is allowed */
748 static int
749 hostbased_key_allowed(struct passwd *pw, const char *cuser, char *chost,
750     Key *key)
751 {
752 	const char *resolvedname, *ipaddr, *lookup;
753 	HostStatus host_status;
754 	int len;
755 
756 	resolvedname = get_canonical_hostname(options.verify_reverse_mapping);
757 	ipaddr = get_remote_ipaddr();
758 
759 	debug2("userauth_hostbased: chost %s resolvedname %s ipaddr %s",
760 	    chost, resolvedname, ipaddr);
761 
762 	if (options.hostbased_uses_name_from_packet_only) {
763 		if (auth_rhosts2(pw, cuser, chost, chost) == 0)
764 			return 0;
765 		lookup = chost;
766 	} else {
767 		if (((len = strlen(chost)) > 0) && chost[len - 1] == '.') {
768 			debug2("stripping trailing dot from chost %s", chost);
769 			chost[len - 1] = '\0';
770 		}
771 		if (strcasecmp(resolvedname, chost) != 0)
772 			log("userauth_hostbased mismatch: "
773 			    "client sends %s, but we resolve %s to %s",
774 			    chost, ipaddr, resolvedname);
775 		if (auth_rhosts2(pw, cuser, resolvedname, ipaddr) == 0)
776 			return 0;
777 		lookup = resolvedname;
778 	}
779 	debug2("userauth_hostbased: access allowed by auth_rhosts2");
780 
781 	host_status = check_key_in_hostfiles(pw, key, lookup,
782 	    _PATH_SSH_SYSTEM_HOSTFILE,
783 	    options.ignore_user_known_hosts ? NULL : _PATH_SSH_USER_HOSTFILE);
784 
785 	/* backward compat if no key has been found. */
786 	if (host_status == HOST_NEW)
787 		host_status = check_key_in_hostfiles(pw, key, lookup,
788 		    _PATH_SSH_SYSTEM_HOSTFILE2,
789 		    options.ignore_user_known_hosts ? NULL :
790 		    _PATH_SSH_USER_HOSTFILE2);
791 
792 	return (host_status == HOST_OK);
793 }
794