Added flag RSRC_CONF to the directives definitions so they can be set in the
[mod_auth_kerb.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-rc6"
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 | RSRC_CONF, usage)
147 #else
148 #define command(name, func, var, type, usage)           \
149   { name, func,                                         \
150     (void*)XtOffsetOf(kerb_auth_config, var),           \
151     OR_AUTHCFG | RSRC_CONF, 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 #ifdef HEIMDAL
531    /* XXX Do I ever want to support Heimdal 0.4 ??? */
532    krb5_data_free(&req);
533 #else
534    krb5_free_data_contents(context, &req);
535 #endif
536    if (auth_context)
537       krb5_auth_con_free (context, auth_context);
538    if (new_creds)
539       krb5_free_creds (context, new_creds);
540    if (ap_req_keytab == NULL && keytab)
541       krb5_kt_close (context, keytab);
542    if (local_ccache)
543       krb5_cc_destroy (context, local_ccache);
544
545    return ret;
546 }
547
548 /* Inspired by krb5_verify_user from Heimdal */
549 static krb5_error_code
550 verify_krb5_user(request_rec *r, krb5_context context, krb5_principal principal,
551                  const char *password, const char *service, krb5_keytab keytab,
552                  int krb_verify_kdc, krb5_ccache *ccache)
553 {
554    krb5_creds creds;
555    krb5_principal server = NULL;
556    krb5_error_code ret;
557    krb5_ccache ret_ccache = NULL;
558
559    /* XXX error messages shouldn't be logged here (and in the while() loop in
560     * authenticate_user_krb5pwd() as weell), in order to avoid confusing log
561     * entries when using multiple realms */
562
563    memset(&creds, 0, sizeof(creds));
564
565    ret = krb5_get_init_creds_password(context, &creds, principal, 
566                                       (char *)password, NULL,
567                                       NULL, 0, NULL, NULL);
568    if (ret) {
569       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
570                  "krb5_get_init_creds_password() failed: %s",
571                  krb5_get_err_text(context, ret));
572       return ret;
573    }
574
575    ret = krb5_sname_to_principal(context, ap_get_server_name(r), service, 
576                                  KRB5_NT_SRV_HST, &server);
577    if (ret) {
578       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
579                  "krb5_sname_to_principal() failed: %s",
580                  krb5_get_err_text(context, ret));
581       goto end;
582    }
583    /* XXX log_debug: lookig for <server_princ> in keytab */
584
585    /* XXX
586    {
587       char *realm;
588
589       krb5_get_default_realm(context, &realm);
590       log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
591                  "trying to verify password using key for %s/%s@%s",
592                  service, ap_get_server_name(r), realm);
593    }
594    */
595
596    if (krb_verify_kdc &&
597        (ret = verify_krb5_init_creds(context, &creds, server, keytab))) {
598        log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
599                   "failed to verify krb5 credentials: %s",
600                   krb5_get_err_text(context, ret));
601        goto end;
602    }
603
604    ret = krb5_cc_resolve(context, "MEMORY:", &ret_ccache);
605    if (ret) {
606       log_rerror(APLOG_MARK, APLOG_ERR, 0, r, 
607                  "generating new memory ccache failed: %s",
608                  krb5_get_err_text(context, ret));
609       goto end;
610    }
611
612    ret = krb5_cc_initialize(context, ret_ccache, principal);
613    if (ret) {
614       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
615                  "krb5_cc_initialize() failed: %s",
616                  krb5_get_err_text(context, ret));
617       goto end;
618    }
619
620    ret = krb5_cc_store_cred(context, ret_ccache, &creds);
621    if (ret) {
622       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
623                  "krb5_cc_store_cred() failed: %s",
624                  krb5_get_err_text(context, ret));
625       goto end;
626    }
627    *ccache = ret_ccache;
628    ret_ccache = NULL;
629
630 end:
631    krb5_free_cred_contents(context, &creds);
632    if (server)
633       krb5_free_principal(context, server);
634    if (ret_ccache)
635       krb5_cc_destroy(context, ret_ccache);
636
637    return ret;
638 }
639
640 static int
641 krb5_cache_cleanup(void *data)
642 {
643    krb5_context context;
644    krb5_ccache  cache;
645    krb5_error_code problem;
646    char *cache_name = (char *) data;
647
648    problem = krb5_init_context(&context);
649    if (problem) {
650       /* ap_log_error(APLOG_MARK, APLOG_ERR, 0, NULL, "krb5_init_context() failed"); */
651       return HTTP_INTERNAL_SERVER_ERROR;
652    }
653
654    problem = krb5_cc_resolve(context, cache_name, &cache);
655    if (problem) {
656       /* log_error(APLOG_MARK, APLOG_ERR, 0, NULL, 
657                 "krb5_cc_resolve() failed (%s: %s)",
658                 cache_name, krb5_get_err_text(context, problem)); */
659       return HTTP_INTERNAL_SERVER_ERROR;
660    }
661
662    krb5_cc_destroy(context, cache);
663    krb5_free_context(context);
664    return OK;
665 }
666
667 static int
668 create_krb5_ccache(krb5_context kcontext,
669                    request_rec *r,
670                    kerb_auth_config *conf,
671                    krb5_principal princ,
672                    krb5_ccache *ccache)
673 {
674    char *ccname;
675    int fd;
676    krb5_error_code problem;
677    int ret;
678    krb5_ccache tmp_ccache = NULL;
679
680    ccname = ap_psprintf(r->pool, "FILE:%s/krb5cc_apache_XXXXXX", P_tmpdir);
681    fd = mkstemp(ccname + strlen("FILE:"));
682    if (fd < 0) {
683       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
684                  "mkstemp() failed: %s", strerror(errno));
685       ret = HTTP_INTERNAL_SERVER_ERROR;
686       goto end;
687    }
688    close(fd);
689
690    problem = krb5_cc_resolve(kcontext, ccname, &tmp_ccache);
691    if (problem) {
692       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
693                  "krb5_cc_resolve() failed: %s",
694                  krb5_get_err_text(kcontext, problem));
695       ret = HTTP_INTERNAL_SERVER_ERROR;
696       unlink(ccname);
697       goto end;
698    }
699
700    problem = krb5_cc_initialize(kcontext, tmp_ccache, princ);
701    if (problem) {
702       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
703                  "Cannot initialize krb5 ccache %s: krb5_cc_initialize() failed: %s",
704                  ccname, krb5_get_err_text(kcontext, problem));
705       ret = HTTP_INTERNAL_SERVER_ERROR;
706       goto end;
707    }
708
709    ap_table_setn(r->subprocess_env, "KRB5CCNAME", ccname);
710    ap_register_cleanup(r->pool, ccname,
711                        krb5_cache_cleanup, ap_null_cleanup);
712
713    *ccache = tmp_ccache;
714    tmp_ccache = NULL;
715
716    ret = OK;
717
718 end:
719    if (tmp_ccache)
720       krb5_cc_destroy(kcontext, tmp_ccache);
721
722    return ret;
723 }
724
725 static int
726 store_krb5_creds(krb5_context kcontext,
727                  request_rec *r,
728                  kerb_auth_config *conf,
729                  krb5_ccache delegated_cred)
730 {
731    char errstr[1024];
732    krb5_error_code problem;
733    krb5_principal princ;
734    krb5_ccache ccache;
735    int ret;
736
737    problem = krb5_cc_get_principal(kcontext, delegated_cred, &princ);
738    if (problem) {
739       snprintf(errstr, sizeof(errstr), "krb5_cc_get_principal() failed: %s",
740                krb5_get_err_text(kcontext, problem));
741       return HTTP_INTERNAL_SERVER_ERROR;
742    }
743
744    ret = create_krb5_ccache(kcontext, r, conf, princ, &ccache);
745    if (ret) {
746       krb5_free_principal(kcontext, princ);
747       return ret;
748    }
749
750 #ifdef HEIMDAL
751    problem = krb5_cc_copy_cache(kcontext, delegated_cred, ccache);
752 #else
753    problem = krb5_cc_copy_creds(kcontext, delegated_cred, ccache);
754 #endif
755    krb5_free_principal(kcontext, princ);
756    if (problem) {
757       snprintf(errstr, sizeof(errstr), "Failed to store credentials: %s",
758                krb5_get_err_text(kcontext, problem));
759       krb5_cc_destroy(kcontext, ccache);
760       return HTTP_INTERNAL_SERVER_ERROR;
761    }
762
763    krb5_cc_close(kcontext, ccache);
764    return OK;
765 }
766
767
768 int authenticate_user_krb5pwd(request_rec *r,
769                               kerb_auth_config *conf,
770                               const char *auth_line)
771 {
772    const char      *sent_pw = NULL; 
773    const char      *sent_name = NULL;
774    const char      *realms = NULL;
775    krb5_context    kcontext = NULL;
776    krb5_error_code code;
777    krb5_principal  client = NULL;
778    krb5_ccache     ccache = NULL;
779    krb5_keytab     keytab = NULL;
780    int             ret;
781    char            *name = NULL;
782    int             all_principals_unkown;
783
784    code = krb5_init_context(&kcontext);
785    if (code) {
786       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
787                  "Cannot initialize Kerberos5 context (%d)", code);
788       return HTTP_INTERNAL_SERVER_ERROR;
789    }
790
791    sent_pw = ap_pbase64decode(r->pool, auth_line);
792    sent_name = ap_getword (r->pool, &sent_pw, ':');
793    /* do not allow user to override realm setting of server */
794    if (strchr(sent_name, '@')) {
795       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
796                  "specifying realm in user name is prohibited");
797       ret = HTTP_UNAUTHORIZED;
798       goto end;
799    }
800
801    if (sent_pw == NULL || *sent_pw == '\0') {
802       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
803                  "empty passwords are not accepted");
804       ret = HTTP_UNAUTHORIZED;
805       goto end;
806    }
807
808    if (conf->krb_5_keytab)
809       krb5_kt_resolve(kcontext, conf->krb_5_keytab, &keytab);
810
811    all_principals_unkown = 1;
812    realms = conf->krb_auth_realms;
813    do {
814       if (realms && (code = krb5_set_default_realm(kcontext,
815                                            ap_getword_white(r->pool, &realms)))){
816          log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
817                     "krb5_set_default_realm() failed: %s",
818                     krb5_get_err_text(kcontext, code));
819          continue;
820       }
821
822       if (client) {
823          krb5_free_principal(kcontext, client);
824          client = NULL;
825       }
826       code = krb5_parse_name(kcontext, sent_name, &client);
827       if (code) {
828          log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
829                     "krb5_parse_name() failed: %s",
830                     krb5_get_err_text(kcontext, code));
831          continue;
832       }
833
834       code = verify_krb5_user(r, kcontext, client, sent_pw, 
835                               conf->krb_service_name, 
836                               keytab, conf->krb_verify_kdc, &ccache);
837       if (!conf->krb_authoritative && code) {
838          /* if we're not authoritative, we allow authentication to pass on
839           * to another modules if (and only if) the user is not known to us */
840          if (all_principals_unkown && code != KRB5KDC_ERR_C_PRINCIPAL_UNKNOWN)
841             all_principals_unkown = 0;
842       }
843
844       if (code == 0)
845          break;
846
847       /* ap_getword_white() used above shifts the parameter, so it's not
848          needed to touch the realms variable */
849    } while (realms && *realms);
850
851    memset((char *)sent_pw, 0, strlen(sent_pw));
852
853    if (code) {
854       if (!conf->krb_authoritative && all_principals_unkown == 1 && code == KRB5KDC_ERR_C_PRINCIPAL_UNKNOWN)
855          ret = DECLINED;
856       else
857          ret = HTTP_UNAUTHORIZED;
858
859       goto end;
860    }
861
862    code = krb5_unparse_name(kcontext, client, &name);
863    if (code) {
864       log_rerror(APLOG_MARK, APLOG_ERR, 0, r, "krb5_unparse_name() failed: %s",
865                  krb5_get_err_text(kcontext, code));
866       ret = HTTP_UNAUTHORIZED;
867       goto end;
868    }
869    MK_USER = ap_pstrdup (r->pool, name);
870    MK_AUTH_TYPE = "Basic";
871    free(name);
872
873    if (conf->krb_save_credentials)
874       store_krb5_creds(kcontext, r, conf, ccache);
875
876    ret = OK;
877
878 end:
879    log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
880               "kerb_authenticate_user_krb5pwd ret=%d user=%s authtype=%s",
881               ret, (MK_USER)?MK_USER:"(NULL)", MK_AUTH_TYPE);
882    if (client)
883       krb5_free_principal(kcontext, client);
884    if (ccache)
885       krb5_cc_destroy(kcontext, ccache);
886    if (keytab)
887       krb5_kt_close(kcontext, keytab);
888    krb5_free_context(kcontext);
889
890    return ret;
891 }
892
893 /*********************************************************************
894  * GSSAPI Authentication
895  ********************************************************************/
896
897 static const char *
898 get_gss_error(MK_POOL *p, OM_uint32 err_maj, OM_uint32 err_min, char *prefix)
899 {
900    OM_uint32 maj_stat, min_stat; 
901    OM_uint32 msg_ctx = 0;
902    gss_buffer_desc status_string;
903    char *err_msg;
904
905    err_msg = ap_pstrdup(p, prefix);
906    do {
907       maj_stat = gss_display_status (&min_stat,
908                                      err_maj,
909                                      GSS_C_GSS_CODE,
910                                      GSS_C_NO_OID,
911                                      &msg_ctx,
912                                      &status_string);
913       if (GSS_ERROR(maj_stat))
914          break;
915       err_msg = ap_pstrcat(p, err_msg, ": ", (char*) status_string.value, NULL);
916       gss_release_buffer(&min_stat, &status_string);
917       
918       maj_stat = gss_display_status (&min_stat,
919                                      err_min,
920                                      GSS_C_MECH_CODE,
921                                      GSS_C_NULL_OID,
922                                      &msg_ctx,
923                                      &status_string);
924       if (!GSS_ERROR(maj_stat)) {
925          err_msg = ap_pstrcat(p, err_msg,
926                               " (", (char*) status_string.value, ")", NULL);
927          gss_release_buffer(&min_stat, &status_string);
928       }
929    } while (!GSS_ERROR(maj_stat) && msg_ctx != 0);
930
931    return err_msg;
932 }
933
934 static int
935 store_gss_creds(request_rec *r, kerb_auth_config *conf, char *princ_name,
936                 gss_cred_id_t delegated_cred)
937 {
938    OM_uint32 maj_stat, min_stat;
939    krb5_principal princ = NULL;
940    krb5_ccache ccache = NULL;
941    krb5_error_code problem;
942    krb5_context context;
943    int ret = HTTP_INTERNAL_SERVER_ERROR;
944
945    problem = krb5_init_context(&context);
946    if (problem) {
947       log_rerror(APLOG_MARK, APLOG_ERR, 0, r, "Cannot initialize krb5 context");
948       return HTTP_INTERNAL_SERVER_ERROR;
949    }
950
951    problem = krb5_parse_name(context, princ_name, &princ);
952    if (problem) {
953       log_rerror(APLOG_MARK, APLOG_ERR, 0, r, 
954          "Cannot parse delegated username (%s)", krb5_get_err_text(context, problem));
955       goto end;
956    }
957
958    problem = create_krb5_ccache(context, r, conf, princ, &ccache);
959    if (problem) {
960       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
961          "Cannot create krb5 ccache (%s)", krb5_get_err_text(context, problem));
962       goto end;
963    }
964
965    maj_stat = gss_krb5_copy_ccache(&min_stat, delegated_cred, ccache);
966    if (GSS_ERROR(maj_stat)) {
967       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
968          "Cannot store delegated credential (%s)", 
969          get_gss_error(r->pool, maj_stat, min_stat, "gss_krb5_copy_ccache"));
970       goto end;
971    }
972
973    krb5_cc_close(context, ccache);
974    ccache = NULL;
975    ret = 0;
976
977 end:
978    if (princ)
979       krb5_free_principal(context, princ);
980    if (ccache)
981       krb5_cc_destroy(context, ccache);
982    krb5_free_context(context);
983    return ret;
984 }
985
986 static int
987 get_gss_creds(request_rec *r,
988               kerb_auth_config *conf,
989               gss_cred_id_t *server_creds)
990 {
991    gss_buffer_desc token = GSS_C_EMPTY_BUFFER;
992    OM_uint32 major_status, minor_status, minor_status2;
993    gss_name_t server_name = GSS_C_NO_NAME;
994    char buf[1024];
995
996    snprintf(buf, sizeof(buf), "%s@%s", conf->krb_service_name,
997             ap_get_server_name(r));
998
999    token.value = buf;
1000    token.length = strlen(buf) + 1;
1001
1002    major_status = gss_import_name(&minor_status, &token,
1003                                   GSS_C_NT_HOSTBASED_SERVICE,
1004                                   &server_name);
1005    memset(&token, 0, sizeof(token));
1006    if (GSS_ERROR(major_status)) {
1007       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
1008                  "%s", get_gss_error(r->pool, major_status, minor_status,
1009                  "gss_import_name() failed"));
1010       return HTTP_INTERNAL_SERVER_ERROR;
1011    }
1012
1013    major_status = gss_display_name(&minor_status, server_name, &token, NULL);
1014    if (GSS_ERROR(major_status)) {
1015       /* Perhaps we could just ignore this error but it's safer to give up now,
1016          I think */
1017       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
1018                  "%s", get_gss_error(r->pool, major_status, minor_status,
1019                                      "gss_display_name() failed"));
1020       return HTTP_INTERNAL_SERVER_ERROR;
1021    }
1022
1023    log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, "Acquiring creds for %s",
1024               token.value);
1025    gss_release_buffer(&minor_status, &token);
1026    
1027    major_status = gss_acquire_cred(&minor_status, server_name, GSS_C_INDEFINITE,
1028                                    GSS_C_NO_OID_SET, GSS_C_ACCEPT,
1029                                    server_creds, NULL, NULL);
1030    gss_release_name(&minor_status2, &server_name);
1031    if (GSS_ERROR(major_status)) {
1032       log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
1033                  "%s", get_gss_error(r->pool, major_status, minor_status,
1034                                      "gss_acquire_cred() failed"));
1035       return HTTP_INTERNAL_SERVER_ERROR;
1036    }
1037
1038 #ifndef HEIMDAL
1039    /*
1040     * With MIT Kerberos 5 1.3.x the gss_cred_id_t is the same as
1041     * krb5_gss_cred_id_t and krb5_gss_cred_id_rec contains a pointer to
1042     * the replay cache.
1043     * This allows us to override the replay cache function vector with
1044     * our own one.
1045     * Note that this is a dirty hack to get things working and there may
1046     * well be unknown side-effects.
1047     */
1048    {
1049       krb5_gss_cred_id_t gss_creds = (krb5_gss_cred_id_t) *server_creds;
1050
1051       if (gss_creds && gss_creds->rcache && gss_creds->rcache->ops &&
1052           gss_creds->rcache->ops->type &&  
1053           memcmp(gss_creds->rcache->ops->type, "dfl", 3) == 0)
1054           /* Override the rcache operations */
1055          gss_creds->rcache->ops = &mod_auth_kerb_rc_ops;
1056    }
1057 #endif
1058    
1059    return 0;
1060 }
1061
1062 static int
1063 cmp_gss_type(gss_buffer_t token, gss_OID oid)
1064 {
1065    unsigned char *p;
1066    size_t len;
1067
1068    if (token->length == 0)
1069       return GSS_S_DEFECTIVE_TOKEN;
1070
1071    p = token->value;
1072    if (*p++ != 0x60)
1073       return GSS_S_DEFECTIVE_TOKEN;
1074    len = *p++;
1075    if (len & 0x80) {
1076       if ((len & 0x7f) > 4)
1077          return GSS_S_DEFECTIVE_TOKEN;
1078       p += len & 0x7f;
1079    }
1080    if (*p++ != 0x06)
1081       return GSS_S_DEFECTIVE_TOKEN;
1082
1083    if (((OM_uint32) *p++) != oid->length)
1084       return GSS_S_DEFECTIVE_TOKEN;
1085
1086    return memcmp(p, oid->elements, oid->length);
1087 }
1088
1089 static int
1090 authenticate_user_gss(request_rec *r, kerb_auth_config *conf,
1091                       const char *auth_line, char **negotiate_ret_value)
1092 {
1093   OM_uint32 major_status, minor_status, minor_status2;
1094   gss_buffer_desc input_token = GSS_C_EMPTY_BUFFER;
1095   gss_buffer_desc output_token = GSS_C_EMPTY_BUFFER;
1096   const char *auth_param = NULL;
1097   int ret;
1098   gss_name_t client_name = GSS_C_NO_NAME;
1099   gss_cred_id_t delegated_cred = GSS_C_NO_CREDENTIAL;
1100   OM_uint32 (*accept_sec_token)();
1101   gss_OID_desc spnego_oid;
1102   gss_ctx_id_t context = GSS_C_NO_CONTEXT;
1103   gss_cred_id_t server_creds = GSS_C_NO_CREDENTIAL;
1104
1105   *negotiate_ret_value = "\0";
1106
1107   spnego_oid.length = 6;
1108   spnego_oid.elements = (void *)"\x2b\x06\x01\x05\x05\x02";
1109
1110   if (conf->krb_5_keytab) {
1111      char *ktname;
1112      /* we don't use the ap_* calls here, since the string passed to putenv()
1113       * will become part of the enviroment and shouldn't be free()ed by apache
1114       */
1115      ktname = malloc(strlen("KRB5_KTNAME=") + strlen(conf->krb_5_keytab) + 1);
1116      if (ktname == NULL) {
1117         log_rerror(APLOG_MARK, APLOG_ERR, 0, r, "malloc() failed: not enough memory");
1118         ret = HTTP_INTERNAL_SERVER_ERROR;
1119         goto end;
1120      }
1121      sprintf(ktname, "KRB5_KTNAME=%s", conf->krb_5_keytab);
1122      putenv(ktname);
1123   }
1124
1125   ret = get_gss_creds(r, conf, &server_creds);
1126   if (ret)
1127      goto end;
1128
1129   /* ap_getword() shifts parameter */
1130   auth_param = ap_getword_white(r->pool, &auth_line);
1131   if (auth_param == NULL) {
1132      log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
1133                 "No Authorization parameter in request from client");
1134      ret = HTTP_UNAUTHORIZED;
1135      goto end;
1136   }
1137
1138   input_token.length = ap_base64decode_len(auth_param) + 1;
1139   input_token.value = ap_pcalloc(r->connection->pool, input_token.length);
1140   if (input_token.value == NULL) {
1141      log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
1142                 "ap_pcalloc() failed (not enough memory)");
1143      ret = HTTP_INTERNAL_SERVER_ERROR;
1144      goto end;
1145   }
1146   input_token.length = ap_base64decode(input_token.value, auth_param);
1147
1148   accept_sec_token = (cmp_gss_type(&input_token, &spnego_oid) == 0) ?
1149                         gss_accept_sec_context_spnego : gss_accept_sec_context;
1150
1151   /* pridat: Read client Negotiate data of length XXX, prefix YYY */
1152   log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, "Verifying client data using %s",
1153              (accept_sec_token == gss_accept_sec_context)
1154                ? "KRB5 GSS-API"
1155                : "SPNEGO GSS-API");
1156
1157   major_status = accept_sec_token(&minor_status,
1158                                   &context,
1159                                   server_creds,
1160                                   &input_token,
1161                                   GSS_C_NO_CHANNEL_BINDINGS,
1162                                   &client_name,
1163                                   NULL,
1164                                   &output_token,
1165                                   NULL,
1166                                   NULL,
1167                                   &delegated_cred);
1168   log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
1169              "Verification returned code %d", major_status);
1170   if (output_token.length) {
1171      char *token = NULL;
1172      size_t len;
1173      
1174      len = ap_base64encode_len(output_token.length) + 1;
1175      token = ap_pcalloc(r->connection->pool, len + 1);
1176      if (token == NULL) {
1177         log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
1178                    "ap_pcalloc() failed (not enough memory)");
1179         ret = HTTP_INTERNAL_SERVER_ERROR;
1180         gss_release_buffer(&minor_status2, &output_token);
1181         goto end;
1182      }
1183      ap_base64encode(token, output_token.value, output_token.length);
1184      token[len] = '\0';
1185      *negotiate_ret_value = token;
1186      log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
1187                 "GSS-API token of length %d bytes will be sent back",
1188                 major_status, output_token.length);
1189      gss_release_buffer(&minor_status2, &output_token);
1190   }
1191
1192   if (GSS_ERROR(major_status)) {
1193      if (input_token.length > 7 && memcmp(input_token.value, "NTLMSSP", 7) == 0)
1194         log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
1195                   "Warning: received token seems to be NTLM, which isn't supported by the Kerberos module. Check your IE configuration.");
1196
1197      log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
1198                 "%s", get_gss_error(r->pool, major_status, minor_status,
1199                                     "gss_accept_sec_context() failed"));
1200      /* Don't offer the Negotiate method again if call to GSS layer failed */
1201      *negotiate_ret_value = NULL;
1202      ret = HTTP_UNAUTHORIZED;
1203      goto end;
1204   }
1205
1206 #if 0
1207   /* This is a _Kerberos_ module so multiple authentication rounds aren't
1208    * supported. If we wanted a generic GSS authentication we would have to do
1209    * some magic with exporting context etc. */
1210   if (major_status & GSS_S_CONTINUE_NEEDED) {
1211      ret = HTTP_UNAUTHORIZED;
1212      goto end;
1213   }
1214 #endif
1215
1216   major_status = gss_display_name(&minor_status, client_name, &output_token, NULL);
1217   gss_release_name(&minor_status, &client_name); 
1218   if (GSS_ERROR(major_status)) {
1219     log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
1220                "%s", get_gss_error(r->pool, major_status, minor_status,
1221                                    "gss_export_name() failed"));
1222     ret = HTTP_INTERNAL_SERVER_ERROR;
1223     goto end;
1224   }
1225
1226   MK_AUTH_TYPE = "Negotiate";
1227   MK_USER = ap_pstrdup(r->pool, output_token.value);
1228
1229   if (conf->krb_save_credentials && delegated_cred != GSS_C_NO_CREDENTIAL)
1230      store_gss_creds(r, conf, (char *)output_token.value, delegated_cred);
1231
1232   if (*negotiate_ret_value)
1233      set_kerb_auth_headers(r, conf, 0, 0, *negotiate_ret_value);
1234
1235   gss_release_buffer(&minor_status, &output_token);
1236
1237   ret = OK;
1238
1239 end:
1240   if (delegated_cred)
1241      gss_release_cred(&minor_status, &delegated_cred);
1242
1243   if (output_token.length) 
1244      gss_release_buffer(&minor_status, &output_token);
1245
1246   if (client_name != GSS_C_NO_NAME)
1247      gss_release_name(&minor_status, &client_name);
1248
1249   if (server_creds != GSS_C_NO_CREDENTIAL)
1250      gss_release_cred(&minor_status, &server_creds);
1251
1252   if (context != GSS_C_NO_CONTEXT)
1253      gss_delete_sec_context(&minor_status, &context, GSS_C_NO_BUFFER);
1254
1255   return ret;
1256 }
1257 #endif /* KRB5 */
1258
1259 static int
1260 already_succeeded(request_rec *r)
1261 {
1262    if (ap_is_initial_req(r) || MK_AUTH_TYPE == NULL)
1263       return 0;
1264    if (strcmp(MK_AUTH_TYPE, "Negotiate") ||
1265        (strcmp(MK_AUTH_TYPE, "Basic") && strchr(MK_USER, '@')))
1266       return 1;
1267    return 0;
1268 }
1269
1270 static void
1271 set_kerb_auth_headers(request_rec *r, const kerb_auth_config *conf,
1272                       int use_krb4, int use_krb5pwd, char *negotiate_ret_value)
1273 {
1274    const char *auth_name = NULL;
1275    int set_basic = 0;
1276    char *negoauth_param;
1277    const char *header_name = 
1278       (r->proxyreq == PROXYREQ_PROXY) ? "Proxy-Authenticate" : "WWW-Authenticate";
1279
1280    /* get the user realm specified in .htaccess */
1281    auth_name = ap_auth_name(r);
1282
1283    /* XXX should the WWW-Authenticate header be cleared first?
1284     * apache in the proxy mode should retain client's authN headers? */
1285 #ifdef KRB5
1286    if (negotiate_ret_value != NULL && conf->krb_method_gssapi) {
1287       negoauth_param = (*negotiate_ret_value == '\0') ? "Negotiate" :
1288                   ap_pstrcat(r->pool, "Negotiate ", negotiate_ret_value, NULL);
1289       ap_table_add(r->err_headers_out, header_name, negoauth_param);
1290    }
1291    if ((use_krb5pwd && conf->krb_method_k5pass) || conf->krb_delegate_basic) {
1292       ap_table_add(r->err_headers_out, header_name,
1293                    ap_pstrcat(r->pool, "Basic realm=\"", auth_name, "\"", NULL));
1294       set_basic = 1;
1295    }
1296 #endif
1297
1298 #ifdef KRB4
1299    if (!set_basic && 
1300        ((use_krb4 && conf->krb_method_k4pass) || conf->krb_delegate_basic))
1301       ap_table_add(r->err_headers_out, header_name,
1302                   ap_pstrcat(r->pool, "Basic realm=\"", auth_name, "\"", NULL));
1303 #endif
1304 }
1305
1306 int kerb_authenticate_user(request_rec *r)
1307 {
1308    kerb_auth_config *conf = 
1309       (kerb_auth_config *) ap_get_module_config(r->per_dir_config,
1310                                                 &auth_kerb_module);
1311    const char *auth_type = NULL;
1312    const char *auth_line = NULL;
1313    const char *type = NULL;
1314    int use_krb5 = 0, use_krb4 = 0;
1315    int ret;
1316    static int last_return = HTTP_UNAUTHORIZED;
1317    char *negotiate_ret_value = NULL;
1318
1319    /* get the type specified in .htaccess */
1320    type = ap_auth_type(r);
1321
1322    log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
1323               "kerb_authenticate_user entered with user %s and auth_type %s",
1324               (MK_USER)?MK_USER:"(NULL)",type?type:"(NULL)");
1325
1326    if (type && strcasecmp(type, "Kerberos") == 0)
1327       use_krb5 = use_krb4 = 1;
1328    else if(type && strcasecmp(type, "KerberosV5") == 0)
1329       use_krb5 = 1;
1330    else if(type && strcasecmp(type, "KerberosV4") == 0)
1331       use_krb4 = 1;
1332    else
1333       return DECLINED;
1334
1335    /* get what the user sent us in the HTTP header */
1336    auth_line = MK_TABLE_GET(r->headers_in, (r->proxyreq == PROXYREQ_PROXY)
1337                                             ? "Proxy-Authorization"
1338                                             : "Authorization");
1339    if (!auth_line) {
1340       set_kerb_auth_headers(r, conf, use_krb4, use_krb5, 
1341                             (use_krb5) ? "\0" : NULL);
1342       return HTTP_UNAUTHORIZED;
1343    }
1344    auth_type = ap_getword_white(r->pool, &auth_line);
1345
1346    /* If we are delegating Basic to other modules, DECLINE the request */
1347    if (conf->krb_delegate_basic &&
1348 #ifdef KRB5
1349        !conf->krb_method_k5pass &&
1350 #endif
1351 #ifdef KRB4
1352        !conf->krb_method_k4pass &&
1353 #endif
1354        (strcasecmp(auth_type, "Basic") == 0))
1355        return DECLINED;
1356
1357    if (already_succeeded(r))
1358       return last_return;
1359
1360    ret = HTTP_UNAUTHORIZED;
1361
1362 #ifdef KRB5
1363    if (use_krb5 && conf->krb_method_gssapi &&
1364        strcasecmp(auth_type, "Negotiate") == 0) {
1365       ret = authenticate_user_gss(r, conf, auth_line, &negotiate_ret_value);
1366    } else if (use_krb5 && conf->krb_method_k5pass &&
1367               strcasecmp(auth_type, "Basic") == 0) {
1368        ret = authenticate_user_krb5pwd(r, conf, auth_line);
1369    }
1370 #endif
1371
1372 #ifdef KRB4
1373    if (ret == HTTP_UNAUTHORIZED && use_krb4 && conf->krb_method_k4pass &&
1374        strcasecmp(auth_type, "Basic") == 0)
1375       ret = authenticate_user_krb4pwd(r, conf, auth_line);
1376 #endif
1377
1378    if (ret == HTTP_UNAUTHORIZED)
1379       set_kerb_auth_headers(r, conf, use_krb4, use_krb5, negotiate_ret_value);
1380
1381    /* XXX log_debug: if ret==OK, log(user XY authenticated) */
1382
1383    last_return = ret;
1384    return ret;
1385 }
1386
1387
1388 /*************************************************************************** 
1389  Module Setup/Configuration
1390  ***************************************************************************/
1391 #ifndef STANDARD20_MODULE_STUFF
1392 module MODULE_VAR_EXPORT auth_kerb_module = {
1393         STANDARD_MODULE_STUFF,
1394         NULL,                           /*      module initializer            */
1395         kerb_dir_create_config,         /*      per-directory config creator  */
1396         NULL,                           /*      per-directory config merger   */
1397         NULL,                           /*      per-server    config creator  */
1398         NULL,                           /*      per-server    config merger   */
1399         kerb_auth_cmds,                 /*      command table                 */
1400         NULL,                           /* [ 9] content handlers              */
1401         NULL,                           /* [ 2] URI-to-filename translation   */
1402         kerb_authenticate_user,         /* [ 5] check/validate user_id        */
1403         NULL,                           /* [ 6] check user_id is valid *here* */
1404         NULL,                           /* [ 4] check access by host address  */
1405         NULL,                           /* [ 7] MIME type checker/setter      */
1406         NULL,                           /* [ 8] fixups                        */
1407         NULL,                           /* [10] logger                        */
1408         NULL,                           /* [ 3] header parser                 */
1409         NULL,                           /*      process initialization        */
1410         NULL,                           /*      process exit/cleanup          */
1411         NULL                            /* [ 1] post read_request handling    */
1412 #ifdef EAPI
1413        ,NULL,                           /* EAPI: add_module                   */
1414         NULL,                           /* EAPI: remove_module                */
1415         NULL,                           /* EAPI: rewrite_command              */
1416         NULL                            /* EAPI: new_connection               */
1417 #endif
1418 };
1419 #else
1420 static int
1421 kerb_init_handler(apr_pool_t *p, apr_pool_t *plog,
1422                   apr_pool_t *ptemp, server_rec *s)
1423 {
1424    ap_add_version_component(p, "mod_auth_kerb/" MODAUTHKERB_VERSION);
1425    return OK;
1426 }
1427
1428 void kerb_register_hooks(apr_pool_t *p)
1429 {
1430    ap_hook_post_config(kerb_init_handler, NULL, NULL, APR_HOOK_MIDDLE);
1431    ap_hook_check_user_id(kerb_authenticate_user, NULL, NULL, APR_HOOK_MIDDLE);
1432 }
1433
1434 module AP_MODULE_DECLARE_DATA auth_kerb_module =
1435 {
1436    STANDARD20_MODULE_STUFF,
1437    kerb_dir_create_config,      /* create per-dir    conf structures  */
1438    NULL,                        /* merge  per-dir    conf structures  */
1439    NULL,                        /* create per-server conf structures  */
1440    NULL,                        /* merge  per-server conf structures  */
1441    kerb_auth_cmds,              /* table of configuration directives  */
1442    kerb_register_hooks          /* register hooks                     */
1443 };
1444 #endif