]> andersk Git - openssh.git/blob - auth2.c
- markus@cvs.openbsd.org 2001/12/09 18:45:56
[openssh.git] / auth2.c
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.75 2001/12/09 18:45:56 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 */
56 extern ServerOptions options;
57 extern u_char *session_id2;
58 extern int session_id2_len;
59
60 static Authctxt *x_authctxt = NULL;
61 static int one = 1;
62
63 typedef struct Authmethod Authmethod;
64 struct Authmethod {
65         char    *name;
66         int     (*userauth)(Authctxt *authctxt);
67         int     *enabled;
68 };
69
70 /* protocol */
71
72 static void input_service_request(int, int, void *);
73 static void input_userauth_request(int, int, void *);
74 static void protocol_error(int, int, void *);
75
76 /* helper */
77 static Authmethod *authmethod_lookup(const char *);
78 static char *authmethods_get(void);
79 static int user_key_allowed(struct passwd *, Key *);
80 static int hostbased_key_allowed(struct passwd *, const char *, char *, Key *);
81
82 /* auth */
83 static void userauth_banner(void);
84 static int userauth_none(Authctxt *);
85 static int userauth_passwd(Authctxt *);
86 static int userauth_pubkey(Authctxt *);
87 static int userauth_hostbased(Authctxt *);
88 static int userauth_kbdint(Authctxt *);
89
90 Authmethod 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
113 void
114 do_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
132 static void
133 protocol_error(int type, int plen, void *ctxt)
134 {
135         log("auth: protocol error: type %d plen %d", type, plen);
136         packet_start(SSH2_MSG_UNIMPLEMENTED);
137         packet_put_int(0);
138         packet_send();
139         packet_write_wait();
140 }
141
142 static void
143 input_service_request(int type, int plen, void *ctxt)
144 {
145         Authctxt *authctxt = ctxt;
146         u_int len;
147         int accept = 0;
148         char *service = packet_get_string(&len);
149         packet_done();
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
175 static void
176 input_userauth_request(int type, int plen, 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
239 void
240 userauth_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
293 static void
294 userauth_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");
317 done:
318         if (banner)
319                 xfree(banner);
320         close(fd);
321         return;
322 }
323
324 static int
325 userauth_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_done();
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->pw_uid) == 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
350 static int
351 userauth_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_done();
362         if (authctxt->valid &&
363 #ifdef HAVE_CYGWIN
364                 check_nt_auth(1, authctxt->pw->pw_uid) &&
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
379 static int
380 userauth_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_done();
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->pw_uid) == 0)
402                 return(0);
403 #endif
404         return authenticated;
405 }
406
407 static int
408 userauth_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_done();
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_done();
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->pw_uid) == 0)
508                 return(0);
509 #endif
510         return authenticated;
511 }
512
513 static int
514 userauth_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
578 done:
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
590 struct passwd*
591 auth_get_user(void)
592 {
593         return (x_authctxt != NULL && x_authctxt->valid) ? x_authctxt->pw : NULL;
594 }
595
596 #define DELIM   ","
597
598 static char *
599 authmethods_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
630 static Authmethod *
631 authmethod_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 */
645 static int
646 user_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
655         if (pw == NULL)
656                 return 0;
657
658         /* Temporarily use the user's uid. */
659         temporarily_use_uid(pw);
660
661         debug("trying public key file %s", file);
662
663         /* Fail quietly if file does not exist */
664         if (stat(file, &st) < 0) {
665                 /* Restore the privileged uid. */
666                 restore_uid();
667                 return 0;
668         }
669         /* Open the file containing the authorized keys. */
670         f = fopen(file, "r");
671         if (!f) {
672                 /* Restore the privileged uid. */
673                 restore_uid();
674                 return 0;
675         }
676         if (options.strict_modes &&
677             secure_filename(f, file, pw, line, sizeof(line)) != 0) {
678                 fclose(f);
679                 log("Authentication refused: %s", line);
680                 restore_uid();
681                 return 0;
682         }
683
684         found_key = 0;
685         found = key_new(key->type);
686
687         while (fgets(line, sizeof(line), f)) {
688                 char *cp, *options = NULL;
689                 linenum++;
690                 /* Skip leading whitespace, empty and comment lines. */
691                 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
692                         ;
693                 if (!*cp || *cp == '\n' || *cp == '#')
694                         continue;
695
696                 if (key_read(found, &cp) != 1) {
697                         /* no key?  check if there are options for this key */
698                         int quoted = 0;
699                         debug2("user_key_allowed: check options: '%s'", cp);
700                         options = cp;
701                         for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
702                                 if (*cp == '\\' && cp[1] == '"')
703                                         cp++;   /* Skip both */
704                                 else if (*cp == '"')
705                                         quoted = !quoted;
706                         }
707                         /* Skip remaining whitespace. */
708                         for (; *cp == ' ' || *cp == '\t'; cp++)
709                                 ;
710                         if (key_read(found, &cp) != 1) {
711                                 debug2("user_key_allowed: advance: '%s'", cp);
712                                 /* still no key?  advance to next line*/
713                                 continue;
714                         }
715                 }
716                 if (key_equal(found, key) &&
717                     auth_parse_options(pw, options, file, linenum) == 1) {
718                         found_key = 1;
719                         debug("matching key found: file %s, line %lu",
720                             file, linenum);
721                         break;
722                 }
723         }
724         restore_uid();
725         fclose(f);
726         key_free(found);
727         if (!found_key)
728                 debug2("key not found");
729         return found_key;
730 }
731
732 /* check whether given key is in .ssh/authorized_keys* */
733 static int
734 user_key_allowed(struct passwd *pw, Key *key)
735 {
736         int success;
737         char *file;
738
739         file = authorized_keys_file(pw);
740         success = user_key_allowed2(pw, key, file);
741         xfree(file);
742         if (success)
743                 return success;
744
745         /* try suffix "2" for backward compat, too */
746         file = authorized_keys_file2(pw);
747         success = user_key_allowed2(pw, key, file);
748         xfree(file);
749         return success;
750 }
751
752 /* return 1 if given hostkey is allowed */
753 static int
754 hostbased_key_allowed(struct passwd *pw, const char *cuser, char *chost,
755     Key *key)
756 {
757         const char *resolvedname, *ipaddr, *lookup;
758         HostStatus host_status;
759         int len;
760
761         resolvedname = get_canonical_hostname(options.reverse_mapping_check);
762         ipaddr = get_remote_ipaddr();
763
764         debug2("userauth_hostbased: chost %s resolvedname %s ipaddr %s",
765             chost, resolvedname, ipaddr);
766
767         if (options.hostbased_uses_name_from_packet_only) {
768                 if (auth_rhosts2(pw, cuser, chost, chost) == 0)
769                         return 0;
770                 lookup = chost;
771         } else {
772                 if (((len = strlen(chost)) > 0) && chost[len - 1] == '.') {
773                         debug2("stripping trailing dot from chost %s", chost);
774                         chost[len - 1] = '\0';
775                 }
776                 if (strcasecmp(resolvedname, chost) != 0)
777                         log("userauth_hostbased mismatch: "
778                             "client sends %s, but we resolve %s to %s",
779                             chost, ipaddr, resolvedname);
780                 if (auth_rhosts2(pw, cuser, resolvedname, ipaddr) == 0)
781                         return 0;
782                 lookup = resolvedname;
783         }
784         debug2("userauth_hostbased: access allowed by auth_rhosts2");
785
786         host_status = check_key_in_hostfiles(pw, key, lookup,
787             _PATH_SSH_SYSTEM_HOSTFILE,
788             options.ignore_user_known_hosts ? NULL : _PATH_SSH_USER_HOSTFILE);
789
790         /* backward compat if no key has been found. */
791         if (host_status == HOST_NEW)
792                 host_status = check_key_in_hostfiles(pw, key, lookup,
793                     _PATH_SSH_SYSTEM_HOSTFILE2,
794                     options.ignore_user_known_hosts ? NULL :
795                     _PATH_SSH_USER_HOSTFILE2);
796
797         return (host_status == HOST_OK);
798 }
799
This page took 3.298336 seconds and 5 git commands to generate.