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