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