Added a new directive (KrbDelegateBasic), which can be used to pass on authentication...
[mod_auth_kerb.cvs/.git] / src / mod_auth_kerb.c
1 /*
2  * Daniel Kouril <kouril@users.sourceforge.net>
3  *
4  * Source and Documentation can be found at:
5  * http://modauthkerb.sourceforge.net/
6  *
7  * Based on work by
8  *   James E. Robinson, III <james@ncstate.net>
9  *   Daniel Henninger <daniel@ncsu.edu>
10  *   Ludek Sulak <xsulak@fi.muni.cz>
11  */
12
13 /*
14  * Copyright (c) 2004 Masarykova universita
15  * (Masaryk University, Brno, Czech Republic)
16  * All rights reserved.
17  *
18  * Redistribution and use in source and binary forms, with or without
19  * modification, are permitted provided that the following conditions are met:
20  *
21  * 1. Redistributions of source code must retain the above copyright notice,
22  *    this list of conditions and the following disclaimer.
23  *
24  * 2. Redistributions in binary form must reproduce the above copyright
25  *    notice, this list of conditions and the following disclaimer in the
26  *    documentation and/or other materials provided with the distribution.
27  *
28  * 3. Neither the name of the University nor the names of its contributors may
29  *    be used to endorse or promote products derived from this software
30  *    without specific prior written permission.
31  *
32  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
33  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
34  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
35  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
36  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
37  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
38  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
39  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
40  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
41  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
42  * POSSIBILITY OF SUCH DAMAGE.
43  */
44
45 #ident "$Id$"
46
47 #include "config.h"
48
49 #define MODAUTHKERB_VERSION "5.0-rc5"
50
51 #include <httpd.h>
52 #include <http_config.h>
53 #include <http_core.h>
54 #include <http_log.h>
55 #include <http_protocol.h>
56 #include <http_request.h>
57
58 #ifdef STANDARD20_MODULE_STUFF
59 #include <ap_compat.h>
60 #include <apr_strings.h>
61 #include <apr_base64.h>
62 #endif
63
64 #ifdef KRB5
65 #include <krb5.h>
66 #ifdef HEIMDAL
67 #  include <gssapi.h>
68 #else
69 #  include <gssapi/gssapi.h>
70 #  include <gssapi/gssapi_generic.h>
71 #  include <gssapi/gssapi_krb5.h>
72 #  define GSS_C_NT_USER_NAME gss_nt_user_name
73 #  define GSS_C_NT_HOSTBASED_SERVICE gss_nt_service_name
74 #  define krb5_get_err_text(context,code) error_message(code)
75 #endif
76 #include "spnegokrb5.h"
77 #endif /* KRB5 */
78
79 #ifdef KRB4
80 /* Prevent warning about closesocket redefinition (Apache's ap_config.h and 
81  * MIT Kerberos' port-sockets.h both define it as close) */
82 #ifdef closesocket
83 #  undef closesocket
84 #endif
85 #include <krb.h>
86 #include <netdb.h> /* gethostbyname() */
87 #endif /* KRB4 */
88
89 /* XXX remove dependency on unistd.h ??? */
90 #include <unistd.h>
91
92 #ifdef STANDARD20_MODULE_STUFF
93 module AP_MODULE_DECLARE_DATA auth_kerb_module;
94 #else
95 module auth_kerb_module;
96 #endif
97
98 /*************************************************************************** 
99  Macros To Ease Compatibility
100  ***************************************************************************/
101 #ifdef STANDARD20_MODULE_STUFF
102 #define MK_POOL apr_pool_t
103 #define MK_TABLE_GET apr_table_get
104 #define MK_USER r->user
105 #define MK_AUTH_TYPE r->ap_auth_type
106 #else
107 #define MK_POOL pool
108 #define MK_TABLE_GET ap_table_get
109 #define MK_USER r->connection->user
110 #define MK_AUTH_TYPE r->connection->ap_auth_type
111 #define PROXYREQ_PROXY STD_PROXY
112 #endif
113
114 /*************************************************************************** 
115  Auth Configuration Structure
116  ***************************************************************************/
117 typedef struct {
118         char *krb_auth_realms;
119         int krb_save_credentials;
120         int krb_verify_kdc;
121         char *krb_service_name;
122         int krb_authoritative;
123         int krb_delegate_basic;
124 #ifdef KRB5
125         char *krb_5_keytab;
126         int krb_method_gssapi;
127         int krb_method_k5pass;
128 #endif
129 #ifdef KRB4
130         char *krb_4_srvtab;
131         int krb_method_k4pass;
132 #endif
133 } kerb_auth_config;
134
135 static void
136 set_kerb_auth_headers(request_rec *r, const kerb_auth_config *conf,
137                       int use_krb4, int use_krb5pwd, char *negotiate_ret_value);
138
139 static const char*
140 krb5_save_realms(cmd_parms *cmd, kerb_auth_config *sec, char *arg);
141
142 #ifdef STANDARD20_MODULE_STUFF
143 #define command(name, func, var, type, usage)           \
144   AP_INIT_ ## type (name, func,                         \
145         (void*)APR_XtOffsetOf(kerb_auth_config, var),   \
146         OR_AUTHCFG, usage)
147 #else
148 #define command(name, func, var, type, usage)           \
149   { name, func,                                         \
150     (void*)XtOffsetOf(kerb_auth_config, var),           \
151     OR_AUTHCFG, type, usage }
152 #endif
153
154 static const command_rec kerb_auth_cmds[] = {
155    command("KrbAuthRealms", krb5_save_realms, krb_auth_realms,
156      RAW_ARGS, "Realms to attempt authentication against (can be multiple)."),
157
158    command("KrbAuthRealm", krb5_save_realms, krb_auth_realms,
159      RAW_ARGS, "Alias for KrbAuthRealms."),
160
161    command("KrbSaveCredentials", ap_set_flag_slot, krb_save_credentials,
162      FLAG, "Save and store credentials/tickets retrieved during auth."),
163
164    command("KrbVerifyKDC", ap_set_flag_slot, krb_verify_kdc,
165      FLAG, "Verify tickets against keytab to prevent KDC spoofing attacks."),
166
167    command("KrbServiceName", ap_set_string_slot, krb_service_name,
168      TAKE1, "Service name to be used by Apache for authentication."),
169
170    command("KrbAuthoritative", ap_set_flag_slot, krb_authoritative,
171      FLAG, "Set to 'off' to allow access control to be passed along to lower modules iff the UserID is not known to this module."),
172
173    command("KrbDelegateBasic", ap_set_flag_slot, krb_delegate_basic,
174      FLAG, "Always offer Basic authentication regardless of KrbMethodK5Pass and pass on authentication to lower modules if Basic headers arrive."),
175
176 #ifdef KRB5
177    command("Krb5Keytab", ap_set_file_slot, krb_5_keytab,
178      TAKE1, "Location of Kerberos V5 keytab file."),
179
180    command("KrbMethodNegotiate", ap_set_flag_slot, krb_method_gssapi,
181      FLAG, "Enable Negotiate authentication method."),
182
183    command("KrbMethodK5Passwd", ap_set_flag_slot, krb_method_k5pass,
184      FLAG, "Enable Kerberos V5 password authentication."),
185 #endif 
186
187 #ifdef KRB4
188    command("Krb4Srvtab", ap_set_file_slot, krb_4_srvtab,
189      TAKE1, "Location of Kerberos V4 srvtab file."),
190
191    command("KrbMethodK4Passwd", ap_set_flag_slot, krb_method_k4pass,
192      FLAG, "Enable Kerberos V4 password authentication."),
193 #endif
194
195    { NULL }
196 };
197
198 #if defined(KRB5) && !defined(HEIMDAL)
199 /* Needed to work around problems with replay caches */
200 #include "mit-internals.h"
201
202 /* This is our replacement krb5_rc_store function */
203 static krb5_error_code
204 mod_auth_kerb_rc_store(krb5_context context, krb5_rcache rcache,
205                        krb5_donot_replay_internal *donot_replay)
206 {
207    return 0;
208 }
209
210 /* And this is the operations vector for our replay cache */
211 const krb5_rc_ops_internal mod_auth_kerb_rc_ops = {
212   0,
213   "dfl",
214   krb5_rc_dfl_init,
215   krb5_rc_dfl_recover,
216   krb5_rc_dfl_destroy,
217   krb5_rc_dfl_close,
218   mod_auth_kerb_rc_store,
219   krb5_rc_dfl_expunge,
220   krb5_rc_dfl_get_span,
221   krb5_rc_dfl_get_name,
222   krb5_rc_dfl_resolve
223 };
224 #endif
225
226
227 /*************************************************************************** 
228  Auth Configuration Initialization
229  ***************************************************************************/
230 static void *kerb_dir_create_config(MK_POOL *p, char *d)
231 {
232         kerb_auth_config *rec;
233
234         rec = (kerb_auth_config *) ap_pcalloc(p, sizeof(kerb_auth_config));
235         ((kerb_auth_config *)rec)->krb_verify_kdc = 1;
236         ((kerb_auth_config *)rec)->krb_service_name = "HTTP";
237         ((kerb_auth_config *)rec)->krb_authoritative = 1;
238         ((kerb_auth_config *)rec)->krb_delegate_basic = 0;
239 #ifdef KRB5
240         ((kerb_auth_config *)rec)->krb_method_k5pass = 1;
241         ((kerb_auth_config *)rec)->krb_method_gssapi = 1;
242 #endif
243 #ifdef KRB4
244         ((kerb_auth_config *)rec)->krb_method_k4pass = 1;
245 #endif
246         return rec;
247 }
248
249 static const char*
250 krb5_save_realms(cmd_parms *cmd, kerb_auth_config *sec, char *arg)
251 {
252    sec->krb_auth_realms= ap_pstrdup(cmd->pool, arg);
253    return NULL;
254 }
255
256 void log_rerror(const char *file, int line, int level, int status,
257                 const request_rec *r, const char *fmt, ...)
258 {
259    char errstr[1024];
260    va_list ap;
261
262    va_start(ap, fmt);
263    vsnprintf(errstr, sizeof(errstr), fmt, ap);
264    va_end(ap);
265
266    
267 #ifdef STANDARD20_MODULE_STUFF
268    ap_log_rerror(file, line, level | APLOG_NOERRNO, status, r, "%s", errstr);
269 #else
270    ap_log_rerror(file, line, level | APLOG_NOERRNO, r, "%s", errstr);
271 #endif
272 }
273
274 #ifdef KRB4
275 /*************************************************************************** 
276  Username/Password Validation for Krb4
277  ***************************************************************************/
278 static int
279 verify_krb4_user(request_rec *r, char *name, char *instance, char *realm,
280                  char *password, char *linstance, char *srvtab, int krb_verify_kdc)
281 {
282    int ret;
283    char *phost;
284    unsigned long addr;
285    struct hostent *hp;
286    const char *hostname;
287    KTEXT_ST ticket;
288    AUTH_DAT authdata;
289    char lrealm[REALM_SZ];
290
291    ret = krb_get_pw_in_tkt(name, instance, realm, "krbtgt", realm, 
292                            DEFAULT_TKT_LIFE, password);
293    if (ret) {
294       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
295                  "Cannot get krb4 ticket: krb_get_pw_in_tkt() failed: %s",
296                  krb_get_err_text(ret));
297       return ret;
298    }
299
300    if (!krb_verify_kdc)
301       return ret;
302
303    hostname = ap_get_server_name(r);
304
305    hp = gethostbyname(hostname);
306    if (hp == NULL) {
307       dest_tkt();
308       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
309                  "Cannot verify krb4 ticket: gethostbyname() failed: %s",
310                  hstrerror(h_errno));
311       return h_errno;
312    }
313    memcpy(&addr, hp->h_addr, sizeof(addr));
314
315    phost = krb_get_phost((char *)hostname);
316
317    krb_get_lrealm(lrealm, 1);
318
319    ret = krb_mk_req(&ticket, linstance, phost, lrealm, 0);
320    if (ret) {
321       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
322                  "Cannot verify krb4 ticket: krb_mk_req() failed: %s",
323                  krb_get_err_text(ret));
324       dest_tkt();
325       return ret;
326    }
327
328    ret = krb_rd_req(&ticket, linstance, phost, addr, &authdata, srvtab);
329    if (ret) {
330       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
331                  "Cannot verify krb4 ticket: krb_rd_req() failed: %s",
332                  krb_get_err_text(ret));
333       dest_tkt();
334    }
335
336    return ret;
337 }
338
339 static int
340 krb4_cache_cleanup(void *data)
341 {
342    char *tkt_file = (char *) data;
343    
344    krb_set_tkt_string(tkt_file);
345    dest_tkt();
346    return OK;
347 }
348
349 static int 
350 authenticate_user_krb4pwd(request_rec *r,
351                           kerb_auth_config *conf,
352                           const char *auth_line)
353 {
354    int ret;
355    const char *sent_pw;
356    const char *sent_name;
357    char *sent_instance;
358    char tkt_file[32];
359    char *tkt_file_p = NULL;
360    int fd;
361    const char *realms;
362    const char *realm;
363    char *user;
364    char lrealm[REALM_SZ];
365    int all_principals_unkown;
366
367    sent_pw = ap_pbase64decode(r->pool, auth_line);
368    sent_name = ap_getword (r->pool, &sent_pw, ':');
369
370    /* do not allow user to override realm setting of server */
371    if (strchr(sent_name, '@')) {
372       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
373                  "specifying realm in user name is prohibited");
374       return HTTP_UNAUTHORIZED;
375    }
376
377    sent_instance = strchr(sent_name, '.');
378    if (sent_instance)
379       *sent_instance++ = '\0'; 
380
381    snprintf(tkt_file, sizeof(tkt_file), "/tmp/apache_tkt_XXXXXX");
382    fd = mkstemp(tkt_file);
383    if (fd < 0) {
384       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
385                  "Cannot create krb4 ccache: mkstemp() failed: %s",
386                  strerror(errno));
387       return HTTP_INTERNAL_SERVER_ERROR;
388    }
389
390    tkt_file_p = ap_pstrdup(r->pool, tkt_file);
391    ap_register_cleanup(r->pool, tkt_file_p,
392                        krb4_cache_cleanup, ap_null_cleanup);
393
394    krb_set_tkt_string(tkt_file);
395
396    all_principals_unkown = 1;
397    realms = conf->krb_auth_realms;
398    do {
399       memset(lrealm, 0, sizeof(lrealm));
400       realm = NULL;
401       if (realms)
402          realm = ap_getword_white(r->pool, &realms);
403
404       if (realm == NULL) {
405          ret = krb_get_lrealm(lrealm, 1);
406          if (ret)
407             break;
408          realm = lrealm;
409       }
410
411       ret = verify_krb4_user(r, (char *)sent_name, 
412                              (sent_instance) ? sent_instance : "",
413                              (char *)realm, (char *)sent_pw,
414                              conf->krb_service_name,
415                              conf->krb_4_srvtab, conf->krb_verify_kdc);
416       if (!conf->krb_authoritative && ret) {
417          /* if we're not authoritative, we allow authentication to pass on
418           * to another modules if (and only if) the user is not known to us */
419          if (all_principals_unkown && ret != KDC_PR_UNKNOWN)
420             all_principals_unkown = 0;
421       }
422
423       if (ret == 0)
424          break;
425    } while (realms && *realms);
426
427    if (ret) {
428       /* XXX log only in the verify_krb4_user() call */
429       log_rerror(APLOG_MARK, APLOG_ERR, 0, r, "Verifying krb4 password failed");
430       ret = (!conf->krb_authoritative && all_principals_unkown == 1 && ret == KDC_PR_UNKNOWN) ?
431                  DECLINED : HTTP_UNAUTHORIZED;
432       goto end;
433    }
434
435    user = ap_pstrdup(r->pool, sent_name);
436    if (sent_instance)
437       user = ap_pstrcat(r->pool, user, ".", sent_instance, NULL);
438    user = ap_pstrcat(r->pool, user, "@", realm, NULL);
439
440    MK_USER = user;
441    MK_AUTH_TYPE = "Basic";
442    ap_table_setn(r->subprocess_env, "KRBTKFILE", tkt_file_p);
443
444    if (!conf->krb_save_credentials)
445       krb4_cache_cleanup(tkt_file);
446
447 end:
448    if (ret)
449       krb4_cache_cleanup(tkt_file);
450    close(fd);
451    tf_close();
452
453    return ret;
454 }
455 #endif /* KRB4 */
456
457 #ifdef KRB5
458 /*************************************************************************** 
459  Username/Password Validation for Krb5
460  ***************************************************************************/
461
462 /* MIT kerberos uses replay cache checks even during credential verification
463  * (i.e. in krb5_verify_init_creds()), which is obviosuly useless. In order to
464  * avoid problems with multiple apache processes accessing the same rcache file
465  * we had to use this call instead, which is only a bit modified version of
466  * krb5_verify_init_creds() */
467 static krb5_error_code
468 verify_krb5_init_creds(krb5_context context, krb5_creds *creds,
469                        krb5_principal ap_req_server, krb5_keytab ap_req_keytab)
470 {
471    krb5_error_code ret;
472    krb5_data req;
473    krb5_ccache local_ccache = NULL;
474    krb5_creds *new_creds = NULL;
475    krb5_auth_context auth_context = NULL;
476    krb5_keytab keytab = NULL;
477
478    memset(&req, 0, sizeof(req));
479
480    if (ap_req_keytab == NULL) {
481       ret = krb5_kt_default (context, &keytab);
482       if (ret)
483          return ret;
484    } else
485       keytab = ap_req_keytab;
486
487    ret = krb5_cc_resolve(context, "MEMORY:", &local_ccache);
488    if (ret)
489       return ret;
490
491    ret = krb5_cc_initialize(context, local_ccache, creds->client);
492    if (ret)
493       goto end;
494
495    ret = krb5_cc_store_cred (context, local_ccache, creds);
496    if (ret)
497       goto end;
498
499    if (!krb5_principal_compare (context, ap_req_server, creds->server)) {
500       krb5_creds match_cred;
501
502       memset (&match_cred, 0, sizeof(match_cred));
503
504       match_cred.client = creds->client;
505       match_cred.server = ap_req_server;
506
507       ret = krb5_get_credentials (context, 0, local_ccache, 
508                                   &match_cred, &new_creds);
509       if (ret)
510          goto end;
511       creds = new_creds;
512    }
513
514    ret = krb5_mk_req_extended (context, &auth_context, 0, NULL, creds, &req);
515    if (ret)
516       goto end;
517
518    krb5_auth_con_free (context, auth_context);
519    auth_context = NULL;
520    ret = krb5_auth_con_init(context, &auth_context);
521    if (ret)
522       goto end;
523    /* use KRB5_AUTH_CONTEXT_DO_SEQUENCE to skip replay cache checks */
524    krb5_auth_con_setflags(context, auth_context, KRB5_AUTH_CONTEXT_DO_SEQUENCE);
525
526    ret = krb5_rd_req (context, &auth_context, &req, ap_req_server,
527                       keytab, 0, NULL);
528
529 end:
530    krb5_free_data_contents(context, &req);
531    if (auth_context)
532       krb5_auth_con_free (context, auth_context);
533    if (new_creds)
534       krb5_free_creds (context, new_creds);
535    if (ap_req_keytab == NULL && keytab)
536       krb5_kt_close (context, keytab);
537    if (local_ccache)
538       krb5_cc_destroy (context, local_ccache);
539
540    return ret;
541 }
542
543 /* Inspired by krb5_verify_user from Heimdal */
544 static krb5_error_code
545 verify_krb5_user(request_rec *r, krb5_context context, krb5_principal principal,
546                  const char *password, const char *service, krb5_keytab keytab,
547                  int krb_verify_kdc, krb5_ccache *ccache)
548 {
549    krb5_creds creds;
550    krb5_principal server = NULL;
551    krb5_error_code ret;
552    krb5_ccache ret_ccache = NULL;
553
554    /* XXX error messages shouldn't be logged here (and in the while() loop in
555     * authenticate_user_krb5pwd() as weell), in order to avoid confusing log
556     * entries when using multiple realms */
557
558    memset(&creds, 0, sizeof(creds));
559
560    ret = krb5_get_init_creds_password(context, &creds, principal, 
561                                       (char *)password, NULL,
562                                       NULL, 0, NULL, NULL);
563    if (ret) {
564       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
565                  "krb5_get_init_creds_password() failed: %s",
566                  krb5_get_err_text(context, ret));
567       return ret;
568    }
569
570    ret = krb5_sname_to_principal(context, ap_get_server_name(r), service, 
571                                  KRB5_NT_UNKNOWN, &server);
572    if (ret) {
573       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
574                  "krb5_sname_to_principal() failed: %s",
575                  krb5_get_err_text(context, ret));
576       goto end;
577    }
578    /* XXX log_debug: lookig for <server_princ> in keytab */
579
580    /* XXX
581    {
582       char *realm;
583
584       krb5_get_default_realm(context, &realm);
585       log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
586                  "trying to verify password using key for %s/%s@%s",
587                  service, ap_get_server_name(r), realm);
588    }
589    */
590
591    if (krb_verify_kdc &&
592        (ret = verify_krb5_init_creds(context, &creds, server, keytab))) {
593        log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
594                   "failed to verify krb5 credentials: %s",
595                   krb5_get_err_text(context, ret));
596        goto end;
597    }
598
599    ret = krb5_cc_resolve(context, "MEMORY:", &ret_ccache);
600    if (ret) {
601       log_rerror(APLOG_MARK, APLOG_ERR, 0, r, 
602                  "generating new memory ccache failed: %s",
603                  krb5_get_err_text(context, ret));
604       goto end;
605    }
606
607    ret = krb5_cc_initialize(context, ret_ccache, principal);
608    if (ret) {
609       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
610                  "krb5_cc_initialize() failed: %s",
611                  krb5_get_err_text(context, ret));
612       goto end;
613    }
614
615    ret = krb5_cc_store_cred(context, ret_ccache, &creds);
616    if (ret) {
617       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
618                  "krb5_cc_store_cred() failed: %s",
619                  krb5_get_err_text(context, ret));
620       goto end;
621    }
622    *ccache = ret_ccache;
623    ret_ccache = NULL;
624
625 end:
626    krb5_free_cred_contents(context, &creds);
627    if (server)
628       krb5_free_principal(context, server);
629    if (ret_ccache)
630       krb5_cc_destroy(context, ret_ccache);
631
632    return ret;
633 }
634
635 static int
636 krb5_cache_cleanup(void *data)
637 {
638    krb5_context context;
639    krb5_ccache  cache;
640    krb5_error_code problem;
641    char *cache_name = (char *) data;
642
643    problem = krb5_init_context(&context);
644    if (problem) {
645       /* ap_log_error(APLOG_MARK, APLOG_ERR, 0, NULL, "krb5_init_context() failed"); */
646       return HTTP_INTERNAL_SERVER_ERROR;
647    }
648
649    problem = krb5_cc_resolve(context, cache_name, &cache);
650    if (problem) {
651       /* log_error(APLOG_MARK, APLOG_ERR, 0, NULL, 
652                 "krb5_cc_resolve() failed (%s: %s)",
653                 cache_name, krb5_get_err_text(context, problem)); */
654       return HTTP_INTERNAL_SERVER_ERROR;
655    }
656
657    krb5_cc_destroy(context, cache);
658    krb5_free_context(context);
659    return OK;
660 }
661
662 static int
663 create_krb5_ccache(krb5_context kcontext,
664                    request_rec *r,
665                    kerb_auth_config *conf,
666                    krb5_principal princ,
667                    krb5_ccache *ccache)
668 {
669    char *ccname;
670    int fd;
671    krb5_error_code problem;
672    int ret;
673    krb5_ccache tmp_ccache = NULL;
674
675    ccname = ap_psprintf(r->pool, "FILE:%s/krb5cc_apache_XXXXXX", P_tmpdir);
676    fd = mkstemp(ccname + strlen("FILE:"));
677    if (fd < 0) {
678       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
679                  "mkstemp() failed: %s", strerror(errno));
680       ret = HTTP_INTERNAL_SERVER_ERROR;
681       goto end;
682    }
683    close(fd);
684
685    problem = krb5_cc_resolve(kcontext, ccname, &tmp_ccache);
686    if (problem) {
687       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
688                  "krb5_cc_resolve() failed: %s",
689                  krb5_get_err_text(kcontext, problem));
690       ret = HTTP_INTERNAL_SERVER_ERROR;
691       unlink(ccname);
692       goto end;
693    }
694
695    problem = krb5_cc_initialize(kcontext, tmp_ccache, princ);
696    if (problem) {
697       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
698                  "Cannot initialize krb5 ccache %s: krb5_cc_initialize() failed: %s",
699                  ccname, krb5_get_err_text(kcontext, problem));
700       ret = HTTP_INTERNAL_SERVER_ERROR;
701       goto end;
702    }
703
704    ap_table_setn(r->subprocess_env, "KRB5CCNAME", ccname);
705    ap_register_cleanup(r->pool, ccname,
706                        krb5_cache_cleanup, ap_null_cleanup);
707
708    *ccache = tmp_ccache;
709    tmp_ccache = NULL;
710
711    ret = OK;
712
713 end:
714    if (tmp_ccache)
715       krb5_cc_destroy(kcontext, tmp_ccache);
716
717    return ret;
718 }
719
720 static int
721 store_krb5_creds(krb5_context kcontext,
722                  request_rec *r,
723                  kerb_auth_config *conf,
724                  krb5_ccache delegated_cred)
725 {
726    char errstr[1024];
727    krb5_error_code problem;
728    krb5_principal princ;
729    krb5_ccache ccache;
730    int ret;
731
732    problem = krb5_cc_get_principal(kcontext, delegated_cred, &princ);
733    if (problem) {
734       snprintf(errstr, sizeof(errstr), "krb5_cc_get_principal() failed: %s",
735                krb5_get_err_text(kcontext, problem));
736       return HTTP_INTERNAL_SERVER_ERROR;
737    }
738
739    ret = create_krb5_ccache(kcontext, r, conf, princ, &ccache);
740    if (ret) {
741       krb5_free_principal(kcontext, princ);
742       return ret;
743    }
744
745 #ifdef HEIMDAL
746    problem = krb5_cc_copy_cache(kcontext, delegated_cred, ccache);
747 #else
748    problem = krb5_cc_copy_creds(kcontext, delegated_cred, ccache);
749 #endif
750    krb5_free_principal(kcontext, princ);
751    if (problem) {
752       snprintf(errstr, sizeof(errstr), "Failed to store credentials: %s",
753                krb5_get_err_text(kcontext, problem));
754       krb5_cc_destroy(kcontext, ccache);
755       return HTTP_INTERNAL_SERVER_ERROR;
756    }
757
758    krb5_cc_close(kcontext, ccache);
759    return OK;
760 }
761
762
763 int authenticate_user_krb5pwd(request_rec *r,
764                               kerb_auth_config *conf,
765                               const char *auth_line)
766 {
767    const char      *sent_pw = NULL; 
768    const char      *sent_name = NULL;
769    const char      *realms = NULL;
770    krb5_context    kcontext = NULL;
771    krb5_error_code code;
772    krb5_principal  client = NULL;
773    krb5_ccache     ccache = NULL;
774    krb5_keytab     keytab = NULL;
775    int             ret;
776    char            *name = NULL;
777    int             all_principals_unkown;
778
779    code = krb5_init_context(&kcontext);
780    if (code) {
781       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
782                  "Cannot initialize Kerberos5 context (%d)", code);
783       return HTTP_INTERNAL_SERVER_ERROR;
784    }
785
786    sent_pw = ap_pbase64decode(r->pool, auth_line);
787    sent_name = ap_getword (r->pool, &sent_pw, ':');
788    /* do not allow user to override realm setting of server */
789    if (strchr(sent_name, '@')) {
790       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
791                  "specifying realm in user name is prohibited");
792       ret = HTTP_UNAUTHORIZED;
793       goto end;
794    }
795
796    if (sent_pw == NULL || *sent_pw == '\0') {
797       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
798                  "empty passwords are not accepted");
799       ret = HTTP_UNAUTHORIZED;
800       goto end;
801    }
802
803    if (conf->krb_5_keytab)
804       krb5_kt_resolve(kcontext, conf->krb_5_keytab, &keytab);
805
806    all_principals_unkown = 1;
807    realms = conf->krb_auth_realms;
808    do {
809       if (realms && (code = krb5_set_default_realm(kcontext,
810                                            ap_getword_white(r->pool, &realms)))){
811          log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
812                     "krb5_set_default_realm() failed: %s",
813                     krb5_get_err_text(kcontext, code));
814          continue;
815       }
816
817       if (client) {
818          krb5_free_principal(kcontext, client);
819          client = NULL;
820       }
821       code = krb5_parse_name(kcontext, sent_name, &client);
822       if (code) {
823          log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
824                     "krb5_parse_name() failed: %s",
825                     krb5_get_err_text(kcontext, code));
826          continue;
827       }
828
829       code = verify_krb5_user(r, kcontext, client, sent_pw, 
830                               conf->krb_service_name, 
831                               keytab, conf->krb_verify_kdc, &ccache);
832       if (!conf->krb_authoritative && code) {
833          /* if we're not authoritative, we allow authentication to pass on
834           * to another modules if (and only if) the user is not known to us */
835          if (all_principals_unkown && code != KRB5KDC_ERR_C_PRINCIPAL_UNKNOWN)
836             all_principals_unkown = 0;
837       }
838
839       if (code == 0)
840          break;
841
842       /* ap_getword_white() used above shifts the parameter, so it's not
843          needed to touch the realms variable */
844    } while (realms && *realms);
845
846    memset((char *)sent_pw, 0, strlen(sent_pw));
847
848    if (code) {
849       if (!conf->krb_authoritative && all_principals_unkown == 1 && code == KRB5KDC_ERR_C_PRINCIPAL_UNKNOWN)
850          ret = DECLINED;
851       else
852          ret = HTTP_UNAUTHORIZED;
853
854       goto end;
855    }
856
857    code = krb5_unparse_name(kcontext, client, &name);
858    if (code) {
859       log_rerror(APLOG_MARK, APLOG_ERR, 0, r, "krb5_unparse_name() failed: %s",
860                  krb5_get_err_text(kcontext, code));
861       ret = HTTP_UNAUTHORIZED;
862       goto end;
863    }
864    MK_USER = ap_pstrdup (r->pool, name);
865    MK_AUTH_TYPE = "Basic";
866    free(name);
867
868    if (conf->krb_save_credentials)
869       store_krb5_creds(kcontext, r, conf, ccache);
870
871    ret = OK;
872
873 end:
874    if (client)
875       krb5_free_principal(kcontext, client);
876    if (ccache)
877       krb5_cc_destroy(kcontext, ccache);
878    if (keytab)
879       krb5_kt_close(kcontext, keytab);
880    krb5_free_context(kcontext);
881
882    return ret;
883 }
884
885 /*********************************************************************
886  * GSSAPI Authentication
887  ********************************************************************/
888
889 static const char *
890 get_gss_error(MK_POOL *p, OM_uint32 err_maj, OM_uint32 err_min, char *prefix)
891 {
892    OM_uint32 maj_stat, min_stat; 
893    OM_uint32 msg_ctx = 0;
894    gss_buffer_desc status_string;
895    char *err_msg;
896
897    err_msg = ap_pstrdup(p, prefix);
898    do {
899       maj_stat = gss_display_status (&min_stat,
900                                      err_maj,
901                                      GSS_C_GSS_CODE,
902                                      GSS_C_NO_OID,
903                                      &msg_ctx,
904                                      &status_string);
905       if (GSS_ERROR(maj_stat))
906          break;
907       err_msg = ap_pstrcat(p, err_msg, ": ", (char*) status_string.value, NULL);
908       gss_release_buffer(&min_stat, &status_string);
909       
910       maj_stat = gss_display_status (&min_stat,
911                                      err_min,
912                                      GSS_C_MECH_CODE,
913                                      GSS_C_NULL_OID,
914                                      &msg_ctx,
915                                      &status_string);
916       if (!GSS_ERROR(maj_stat)) {
917          err_msg = ap_pstrcat(p, err_msg,
918                               " (", (char*) status_string.value, ")", NULL);
919          gss_release_buffer(&min_stat, &status_string);
920       }
921    } while (!GSS_ERROR(maj_stat) && msg_ctx != 0);
922
923    return err_msg;
924 }
925
926 static int
927 store_gss_creds(request_rec *r, kerb_auth_config *conf, char *princ_name,
928                 gss_cred_id_t delegated_cred)
929 {
930    OM_uint32 maj_stat, min_stat;
931    krb5_principal princ = NULL;
932    krb5_ccache ccache = NULL;
933    krb5_error_code problem;
934    krb5_context context;
935    int ret = HTTP_INTERNAL_SERVER_ERROR;
936
937    problem = krb5_init_context(&context);
938    if (problem) {
939       log_rerror(APLOG_MARK, APLOG_ERR, 0, r, "Cannot initialize krb5 context");
940       return HTTP_INTERNAL_SERVER_ERROR;
941    }
942
943    problem = krb5_parse_name(context, princ_name, &princ);
944    if (problem) {
945       log_rerror(APLOG_MARK, APLOG_ERR, 0, r, 
946          "Cannot parse delegated username (%s)", krb5_get_err_text(context, problem));
947       goto end;
948    }
949
950    problem = create_krb5_ccache(context, r, conf, princ, &ccache);
951    if (problem) {
952       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
953          "Cannot create krb5 ccache (%s)", krb5_get_err_text(context, problem));
954       goto end;
955    }
956
957    maj_stat = gss_krb5_copy_ccache(&min_stat, delegated_cred, ccache);
958    if (GSS_ERROR(maj_stat)) {
959       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
960          "Cannot store delegated credential (%s)", 
961          get_gss_error(r->pool, maj_stat, min_stat, "gss_krb5_copy_ccache"));
962       goto end;
963    }
964
965    krb5_cc_close(context, ccache);
966    ccache = NULL;
967    ret = 0;
968
969 end:
970    if (princ)
971       krb5_free_principal(context, princ);
972    if (ccache)
973       krb5_cc_destroy(context, ccache);
974    krb5_free_context(context);
975    return ret;
976 }
977
978 static int
979 get_gss_creds(request_rec *r,
980               kerb_auth_config *conf,
981               gss_cred_id_t *server_creds)
982 {
983    gss_buffer_desc input_token = GSS_C_EMPTY_BUFFER;
984    OM_uint32 major_status, minor_status, minor_status2;
985    gss_name_t server_name = GSS_C_NO_NAME;
986    char buf[1024];
987
988    snprintf(buf, sizeof(buf), "%s@%s", conf->krb_service_name,
989          ap_get_server_name(r));
990
991    input_token.value = buf;
992    input_token.length = strlen(buf) + 1;
993
994    major_status = gss_import_name(&minor_status, &input_token,
995                                   GSS_C_NT_HOSTBASED_SERVICE,
996                                   &server_name);
997    if (GSS_ERROR(major_status)) {
998       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
999                  "%s", get_gss_error(r->pool, major_status, minor_status,
1000                  "gss_import_name() failed"));
1001       return HTTP_INTERNAL_SERVER_ERROR;
1002    }
1003
1004    log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, "Acquiring creds for %s", buf);
1005    
1006    major_status = gss_acquire_cred(&minor_status, server_name, GSS_C_INDEFINITE,
1007                                    GSS_C_NO_OID_SET, GSS_C_ACCEPT,
1008                                    server_creds, NULL, NULL);
1009    gss_release_name(&minor_status2, &server_name);
1010    if (GSS_ERROR(major_status)) {
1011       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
1012                  "%s", get_gss_error(r->pool, major_status, minor_status,
1013                                      "gss_acquire_cred() failed"));
1014       return HTTP_INTERNAL_SERVER_ERROR;
1015    }
1016
1017 #ifndef HEIMDAL
1018    /*
1019     * With MIT Kerberos 5 1.3.x the gss_cred_id_t is the same as
1020     * krb5_gss_cred_id_t and krb5_gss_cred_id_rec contains a pointer to
1021     * the replay cache.
1022     * This allows us to override the replay cache function vector with
1023     * our own one.
1024     * Note that this is a dirty hack to get things working and there may
1025     * well be unknown side-effects.
1026     */
1027    {
1028       krb5_gss_cred_id_t gss_creds = (krb5_gss_cred_id_t) *server_creds;
1029
1030       if (gss_creds && gss_creds->rcache && gss_creds->rcache->ops &&
1031           gss_creds->rcache->ops->type &&  
1032           memcmp(gss_creds->rcache->ops->type, "dfl", 3) == 0)
1033           /* Override the rcache operations */
1034          gss_creds->rcache->ops = &mod_auth_kerb_rc_ops;
1035    }
1036 #endif
1037    
1038    return 0;
1039 }
1040
1041 static int
1042 cmp_gss_type(gss_buffer_t token, gss_OID oid)
1043 {
1044    unsigned char *p;
1045    size_t len;
1046
1047    if (token->length == 0)
1048       return GSS_S_DEFECTIVE_TOKEN;
1049
1050    /* XXX if (token->value == NTLMSSP) log_debug("NTLM mechanism used"); */
1051
1052    p = token->value;
1053    if (*p++ != 0x60)
1054       return GSS_S_DEFECTIVE_TOKEN;
1055    len = *p++;
1056    if (len & 0x80) {
1057       if ((len & 0x7f) > 4)
1058          return GSS_S_DEFECTIVE_TOKEN;
1059       p += len & 0x7f;
1060    }
1061    if (*p++ != 0x06)
1062       return GSS_S_DEFECTIVE_TOKEN;
1063
1064    if (((OM_uint32) *p++) != oid->length)
1065       return GSS_S_DEFECTIVE_TOKEN;
1066
1067    return memcmp(p, oid->elements, oid->length);
1068 }
1069
1070 static int
1071 authenticate_user_gss(request_rec *r, kerb_auth_config *conf,
1072                       const char *auth_line, char **negotiate_ret_value)
1073 {
1074   OM_uint32 major_status, minor_status, minor_status2;
1075   gss_buffer_desc input_token = GSS_C_EMPTY_BUFFER;
1076   gss_buffer_desc output_token = GSS_C_EMPTY_BUFFER;
1077   const char *auth_param = NULL;
1078   int ret;
1079   gss_name_t client_name = GSS_C_NO_NAME;
1080   gss_cred_id_t delegated_cred = GSS_C_NO_CREDENTIAL;
1081   OM_uint32 (*accept_sec_token)();
1082   gss_OID_desc spnego_oid;
1083   gss_ctx_id_t context = GSS_C_NO_CONTEXT;
1084   gss_cred_id_t server_creds = GSS_C_NO_CREDENTIAL;
1085
1086   *negotiate_ret_value = "\0";
1087
1088   spnego_oid.length = 6;
1089   spnego_oid.elements = (void *)"\x2b\x06\x01\x05\x05\x02";
1090
1091   if (conf->krb_5_keytab) {
1092      char *ktname;
1093      /* we don't use the ap_* calls here, since the string passed to putenv()
1094       * will become part of the enviroment and shouldn't be free()ed by apache
1095       */
1096      ktname = malloc(strlen("KRB5_KTNAME=") + strlen(conf->krb_5_keytab) + 1);
1097      if (ktname == NULL) {
1098         log_rerror(APLOG_MARK, APLOG_ERR, 0, r, "malloc() failed: not enough memory");
1099         ret = HTTP_INTERNAL_SERVER_ERROR;
1100         goto end;
1101      }
1102      sprintf(ktname, "KRB5_KTNAME=%s", conf->krb_5_keytab);
1103      putenv(ktname);
1104   }
1105
1106   ret = get_gss_creds(r, conf, &server_creds);
1107   if (ret)
1108      goto end;
1109
1110   /* ap_getword() shifts parameter */
1111   auth_param = ap_getword_white(r->pool, &auth_line);
1112   if (auth_param == NULL) {
1113      log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
1114                 "No Authorization parameter in request from client");
1115      ret = HTTP_UNAUTHORIZED;
1116      goto end;
1117   }
1118
1119   input_token.length = ap_base64decode_len(auth_param) + 1;
1120   input_token.value = ap_pcalloc(r->connection->pool, input_token.length);
1121   if (input_token.value == NULL) {
1122      log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
1123                 "ap_pcalloc() failed (not enough memory)");
1124      ret = HTTP_INTERNAL_SERVER_ERROR;
1125      goto end;
1126   }
1127   input_token.length = ap_base64decode(input_token.value, auth_param);
1128
1129   accept_sec_token = (cmp_gss_type(&input_token, &spnego_oid) == 0) ?
1130                         gss_accept_sec_context_spnego : gss_accept_sec_context;
1131
1132   major_status = accept_sec_token(&minor_status,
1133                                   &context,
1134                                   server_creds,
1135                                   &input_token,
1136                                   GSS_C_NO_CHANNEL_BINDINGS,
1137                                   &client_name,
1138                                   NULL,
1139                                   &output_token,
1140                                   NULL,
1141                                   NULL,
1142                                   &delegated_cred);
1143   if (output_token.length) {
1144      char *token = NULL;
1145      size_t len;
1146      
1147      len = ap_base64encode_len(output_token.length) + 1;
1148      token = ap_pcalloc(r->connection->pool, len + 1);
1149      if (token == NULL) {
1150         log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
1151                    "ap_pcalloc() failed (not enough memory)");
1152         ret = HTTP_INTERNAL_SERVER_ERROR;
1153         gss_release_buffer(&minor_status2, &output_token);
1154         goto end;
1155      }
1156      ap_base64encode(token, output_token.value, output_token.length);
1157      token[len] = '\0';
1158      *negotiate_ret_value = token;
1159      gss_release_buffer(&minor_status2, &output_token);
1160   }
1161
1162   if (GSS_ERROR(major_status)) {
1163      log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
1164                 "%s", get_gss_error(r->pool, major_status, minor_status,
1165                                     "gss_accept_sec_context() failed"));
1166      /* Don't offer the Negotiate method again if call to GSS layer failed */
1167      *negotiate_ret_value = NULL;
1168      ret = HTTP_UNAUTHORIZED;
1169      goto end;
1170   }
1171
1172 #if 0
1173   /* This is a _Kerberos_ module so multiple authentication rounds aren't
1174    * supported. If we wanted a generic GSS authentication we would have to do
1175    * some magic with exporting context etc. */
1176   if (major_status & GSS_S_CONTINUE_NEEDED) {
1177      ret = HTTP_UNAUTHORIZED;
1178      goto end;
1179   }
1180 #endif
1181
1182   major_status = gss_display_name(&minor_status, client_name, &output_token, NULL);
1183   gss_release_name(&minor_status, &client_name); 
1184   if (GSS_ERROR(major_status)) {
1185     log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
1186                "%s", get_gss_error(r->pool, major_status, minor_status,
1187                                    "gss_export_name() failed"));
1188     ret = HTTP_INTERNAL_SERVER_ERROR;
1189     goto end;
1190   }
1191
1192   MK_AUTH_TYPE = "Negotiate";
1193   MK_USER = ap_pstrdup(r->pool, output_token.value);
1194
1195   if (conf->krb_save_credentials && delegated_cred != GSS_C_NO_CREDENTIAL)
1196      store_gss_creds(r, conf, (char *)output_token.value, delegated_cred);
1197
1198   if (*negotiate_ret_value)
1199      set_kerb_auth_headers(r, conf, 0, 0, *negotiate_ret_value);
1200
1201   gss_release_buffer(&minor_status, &output_token);
1202
1203   ret = OK;
1204
1205 end:
1206   if (delegated_cred)
1207      gss_release_cred(&minor_status, &delegated_cred);
1208
1209   if (output_token.length) 
1210      gss_release_buffer(&minor_status, &output_token);
1211
1212   if (client_name != GSS_C_NO_NAME)
1213      gss_release_name(&minor_status, &client_name);
1214
1215   if (server_creds != GSS_C_NO_CREDENTIAL)
1216      gss_release_cred(&minor_status, &server_creds);
1217
1218   if (context != GSS_C_NO_CONTEXT)
1219      gss_delete_sec_context(&minor_status, &context, GSS_C_NO_BUFFER);
1220
1221   return ret;
1222 }
1223 #endif /* KRB5 */
1224
1225 static int
1226 already_succeeded(request_rec *r)
1227 {
1228    if (ap_is_initial_req(r) || MK_AUTH_TYPE == NULL)
1229       return 0;
1230    if (strcmp(MK_AUTH_TYPE, "Negotiate") ||
1231        (strcmp(MK_AUTH_TYPE, "Basic") && strchr(MK_USER, '@')))
1232       return 1;
1233    return 0;
1234 }
1235
1236 static void
1237 set_kerb_auth_headers(request_rec *r, const kerb_auth_config *conf,
1238                       int use_krb4, int use_krb5pwd, char *negotiate_ret_value)
1239 {
1240    const char *auth_name = NULL;
1241    int set_basic = 0;
1242    char *negoauth_param;
1243    const char *header_name = 
1244       (r->proxyreq == PROXYREQ_PROXY) ? "Proxy-Authenticate" : "WWW-Authenticate";
1245
1246    /* get the user realm specified in .htaccess */
1247    auth_name = ap_auth_name(r);
1248
1249    /* XXX should the WWW-Authenticate header be cleared first?
1250     * apache in the proxy mode should retain client's authN headers? */
1251 #ifdef KRB5
1252    if (negotiate_ret_value != NULL && conf->krb_method_gssapi) {
1253       negoauth_param = (*negotiate_ret_value == '\0') ? "Negotiate" :
1254                   ap_pstrcat(r->pool, "Negotiate ", negotiate_ret_value, NULL);
1255       ap_table_add(r->err_headers_out, header_name, negoauth_param);
1256    }
1257    if ((use_krb5pwd && conf->krb_method_k5pass) || conf->krb_delegate_basic) {
1258       ap_table_add(r->err_headers_out, header_name,
1259                    ap_pstrcat(r->pool, "Basic realm=\"", auth_name, "\"", NULL));
1260       set_basic = 1;
1261    }
1262 #endif
1263
1264 #ifdef KRB4
1265    if (!set_basic && 
1266        ((use_krb4 && conf->krb_method_k4pass) || conf->krb_delegate_basic))
1267       ap_table_add(r->err_headers_out, header_name,
1268                   ap_pstrcat(r->pool, "Basic realm=\"", auth_name, "\"", NULL));
1269 #endif
1270 }
1271
1272 int kerb_authenticate_user(request_rec *r)
1273 {
1274    kerb_auth_config *conf = 
1275       (kerb_auth_config *) ap_get_module_config(r->per_dir_config,
1276                                                 &auth_kerb_module);
1277    const char *auth_type = NULL;
1278    const char *auth_line = NULL;
1279    const char *type = NULL;
1280    int use_krb5 = 0, use_krb4 = 0;
1281    int ret;
1282    static int last_return = HTTP_UNAUTHORIZED;
1283    char *negotiate_ret_value = NULL;
1284
1285    /* get the type specified in .htaccess */
1286    type = ap_auth_type(r);
1287
1288    if (type && strcasecmp(type, "Kerberos") == 0)
1289       use_krb5 = use_krb4 = 1;
1290    else if(type && strcasecmp(type, "KerberosV5") == 0)
1291       use_krb4 = 0;
1292    else if(type && strcasecmp(type, "KerberosV4") == 0)
1293       use_krb5 = 0;
1294    else
1295       return DECLINED;
1296
1297    /* get what the user sent us in the HTTP header */
1298    auth_line = MK_TABLE_GET(r->headers_in, (r->proxyreq == PROXYREQ_PROXY)
1299                                             ? "Proxy-Authorization"
1300                                             : "Authorization");
1301    if (!auth_line) {
1302       set_kerb_auth_headers(r, conf, use_krb4, use_krb5, 
1303                             (use_krb5) ? "\0" : NULL);
1304       return HTTP_UNAUTHORIZED;
1305    }
1306    auth_type = ap_getword_white(r->pool, &auth_line);
1307
1308    /* If we are delegating Basic to other modules, DECLINE the request */
1309    if (conf->krb_delegate_basic &&
1310 #ifdef KRB5
1311        !conf->krb_method_k5pass &&
1312 #endif
1313 #ifdef KRB4
1314        !conf->krb_method_k4pass &&
1315 #endif
1316        (strcasecmp(auth_type, "Basic") == 0))
1317        return DECLINED;
1318
1319    if (already_succeeded(r))
1320       return last_return;
1321
1322    ret = HTTP_UNAUTHORIZED;
1323
1324 #ifdef KRB5
1325    if (use_krb5 && conf->krb_method_gssapi &&
1326        strcasecmp(auth_type, "Negotiate") == 0) {
1327       ret = authenticate_user_gss(r, conf, auth_line, &negotiate_ret_value);
1328    } else if (use_krb5 && conf->krb_method_k5pass &&
1329               strcasecmp(auth_type, "Basic") == 0) {
1330        ret = authenticate_user_krb5pwd(r, conf, auth_line);
1331    }
1332 #endif
1333
1334 #ifdef KRB4
1335    if (ret == HTTP_UNAUTHORIZED && use_krb4 && conf->krb_method_k4pass &&
1336        strcasecmp(auth_type, "Basic") == 0)
1337       ret = authenticate_user_krb4pwd(r, conf, auth_line);
1338 #endif
1339
1340    if (ret == HTTP_UNAUTHORIZED)
1341       set_kerb_auth_headers(r, conf, use_krb4, use_krb5, negotiate_ret_value);
1342
1343    /* XXX log_debug: if ret==OK, log(user XY authenticated) */
1344
1345    last_return = ret;
1346    return ret;
1347 }
1348
1349
1350 /*************************************************************************** 
1351  Module Setup/Configuration
1352  ***************************************************************************/
1353 #ifndef STANDARD20_MODULE_STUFF
1354 module MODULE_VAR_EXPORT auth_kerb_module = {
1355         STANDARD_MODULE_STUFF,
1356         NULL,                           /*      module initializer            */
1357         kerb_dir_create_config,         /*      per-directory config creator  */
1358         NULL,                           /*      per-directory config merger   */
1359         NULL,                           /*      per-server    config creator  */
1360         NULL,                           /*      per-server    config merger   */
1361         kerb_auth_cmds,                 /*      command table                 */
1362         NULL,                           /* [ 9] content handlers              */
1363         NULL,                           /* [ 2] URI-to-filename translation   */
1364         kerb_authenticate_user,         /* [ 5] check/validate user_id        */
1365         NULL,                           /* [ 6] check user_id is valid *here* */
1366         NULL,                           /* [ 4] check access by host address  */
1367         NULL,                           /* [ 7] MIME type checker/setter      */
1368         NULL,                           /* [ 8] fixups                        */
1369         NULL,                           /* [10] logger                        */
1370         NULL,                           /* [ 3] header parser                 */
1371         NULL,                           /*      process initialization        */
1372         NULL,                           /*      process exit/cleanup          */
1373         NULL                            /* [ 1] post read_request handling    */
1374 #ifdef EAPI
1375        ,NULL,                           /* EAPI: add_module                   */
1376         NULL,                           /* EAPI: remove_module                */
1377         NULL,                           /* EAPI: rewrite_command              */
1378         NULL                            /* EAPI: new_connection               */
1379 #endif
1380 };
1381 #else
1382 static int
1383 kerb_init_handler(apr_pool_t *p, apr_pool_t *plog,
1384                   apr_pool_t *ptemp, server_rec *s)
1385 {
1386    ap_add_version_component(p, "mod_auth_kerb/" MODAUTHKERB_VERSION);
1387    return OK;
1388 }
1389
1390 void kerb_register_hooks(apr_pool_t *p)
1391 {
1392    ap_hook_post_config(kerb_init_handler, NULL, NULL, APR_HOOK_MIDDLE);
1393    ap_hook_check_user_id(kerb_authenticate_user, NULL, NULL, APR_HOOK_MIDDLE);
1394 }
1395
1396 module AP_MODULE_DECLARE_DATA auth_kerb_module =
1397 {
1398    STANDARD20_MODULE_STUFF,
1399    kerb_dir_create_config,      /* create per-dir    conf structures  */
1400    NULL,                        /* merge  per-dir    conf structures  */
1401    NULL,                        /* create per-server conf structures  */
1402    NULL,                        /* merge  per-server conf structures  */
1403    kerb_auth_cmds,              /* table of configuration directives  */
1404    kerb_register_hooks          /* register hooks                     */
1405 };
1406 #endif