Merge branch 'gssweb-apache' of moonshot.suchdamage.org:/srv/git/mod_auth_kerb into...
[mod_auth_kerb.cvs/.git] / mod_auth_gssweb.c
1 /*
2  * Copyright (c) 2012, 2013, 2014 JANET(UK)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * 3. Neither the name of JANET(UK) nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
25  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
31  * OF THE POSSIBILITY OF SUCH DAMAGE.
32  *
33  * NOTE: Some code in this module was derived from code in
34  * mod_auth_gssapi.c which is copyrighted by CESNET.  See that file
35  * for full copyright details.
36  *
37  * NOTE: Portions of the code in this file were derived from example
38  * code distributed under the Apache 2.0 license:
39  *     http://www.apache.org/licenses/LICENSE-2.0
40  * 
41  * This module implements the Apache server side of the GSSWeb
42  * authentiction type which allows Moonshot to be used for
43  * authentication in web applications.  The module consists of two
44  * components: the hook function (gssweb_authenticate_user) that does
45  * most of the work, and an output filter (gssweb_authenticate_filter)
46  * that is registered by the hook function to send the output token
47  * back to the client in a json message that wraps the original
48  * response content.
49  *
50  * This module uses a simple protocol between the client and server
51  * to exchange GSS tokens and nonce information.  The protocol is 
52  * described in the protocol.txt file included with module source.
53  */
54
55 #include <stdio.h>
56 #include "mod_auth_gssweb.h"
57
58 module AP_MODULE_DECLARE_DATA auth_gssweb_module;
59
60 #define command(name, func, var, type, usage)           \
61   AP_INIT_ ## type (name, (void*) func,                 \
62         (void*)APR_OFFSETOF(gss_auth_config, var),      \
63         OR_AUTHCFG | RSRC_CONF, usage)
64
65 static const command_rec gssweb_config_cmds[] = {
66     command("GSSServiceName", ap_set_string_slot, service_name,
67             TAKE1, "Service name used for Apache authentication."),
68
69     { NULL }
70 };
71   
72 #define DEFAULT_ENCTYPE         "application/x-www-form-urlencoded"
73 #define GSS_MAX_TOKEN_SIZE      4096    //TBD -- check this value
74
75 /* gssweb_read_req() -- reads the request data into a buffer 
76  */
77 static int gssweb_read_req(request_rec *r, const char **rbuf, apr_off_t *size)
78 {
79   int rc = OK;
80
81   if((rc = ap_setup_client_block(r, REQUEST_CHUNKED_ERROR))) {
82     return(rc);
83   }
84   
85   if(ap_should_client_block(r)) {
86
87     char         argsbuffer[HUGE_STRING_LEN];
88     apr_off_t    rsize, len_read, rpos = 0;
89     apr_off_t    length = r->remaining;
90
91     *rbuf = (const char *) apr_pcalloc(r->pool, (apr_size_t) (length + 1));
92     *size = length;
93     while((len_read = ap_get_client_block(r, argsbuffer, sizeof(argsbuffer))) > 0) {
94       if((rpos + len_read) > length) {
95         rsize = length - rpos;
96       }
97       else {
98         rsize = len_read;
99       }
100       
101       memcpy((char *) *rbuf + rpos, argsbuffer, (size_t) rsize);
102       rpos += rsize;
103     }
104   }
105   return(rc);
106 }
107
108 /* gssweb_get_post_data() -- Gets the token and nonce from the request
109  * data.
110  */
111 static int gssweb_get_post_data(request_rec *r, int *nonce, gss_buffer_desc *input_token)
112 {
113   const char *data;
114   apr_off_t datalen;
115   const char *key, *val, *type;
116   int rc = 0;
117
118   *nonce = 0;
119   input_token->length = 0;
120   input_token->value = NULL;
121
122   if(r->method_number != M_POST) {
123     gss_log(APLOG_MARK, APLOG_DEBUG, 0, r, "gssweb_get_post_data: Request data is not a POST, declining.");
124     return DECLINED;
125   }
126
127   type = apr_table_get(r->headers_in, "Content-Type");
128   if(strcasecmp(type, DEFAULT_ENCTYPE) != 0) {
129     gss_log(APLOG_MARK, APLOG_DEBUG, 0, r, "gssweb_get_post_data: Unexpected content type, declining.");
130     return DECLINED;
131   }
132
133   if((rc = gssweb_read_req(r, &data, &datalen)) != OK) {
134     gss_log(APLOG_MARK, APLOG_DEBUG, 0, r, "gssweb_get_post_data: Data read error, rc = %d", rc);
135     return rc;
136   }
137
138   while(*data && (val = ap_getword(r->pool, &data, '&'))) { 
139     gss_log(APLOG_MARK, APLOG_DEBUG, 0, r, "gssweb_get_post_data: obtained val from ap_getword() (%s)", val);
140     key = ap_getword(r->pool, &val, '=');
141     ap_unescape_url((char*)key);
142     ap_unescape_url((char*)val);
143     if (0 == strcasecmp(key, "token")) {
144       gss_log(APLOG_MARK, APLOG_DEBUG, 0, r, "gssweb_get_post_data: found token (%s)", val);
145       input_token->value = malloc(strlen(val));
146       input_token->length = apr_base64_decode(input_token->value, val);
147       gss_log(APLOG_MARK, APLOG_DEBUG, 0, r, "gssweb_get_post_data: Token successfully decoded.");
148     }
149     else if (0 == strcasecmp(key, "nonce")) {
150       gss_log(APLOG_MARK, APLOG_DEBUG, 0, r, "gssweb_get_post_data: found nonce (%s)", val);
151       *nonce = atoi(val);
152     }
153     else {
154       gss_log(APLOG_MARK, APLOG_DEBUG, 0, r, "gssweb_get_post_data: unknown key (%s)", key);
155     }
156   }
157   if ((0 == *nonce) || (0 == input_token->length)) {
158     gss_log(APLOG_MARK, APLOG_DEBUG, 0, r, "gssweb_get_post_data: nonce (%d) or token len (%d) is 0, declining", *nonce, input_token->length);
159     return DECLINED;
160   }
161   else {
162     gss_log(APLOG_MARK, APLOG_DEBUG, 0, r, "gssweb_get_post_data: returning nonce (%d) and token (%d bytes)", *nonce, input_token->length);
163     return OK;
164   }
165 }
166
167 /* gssweb_authenticate_filter() -- Output filter for gssweb authentication.
168  * Wraps original response in JSON -- adding JSON to the beginning of the 
169  * response, escapes double quotes in the original response, and adds JSON
170  * to the end of the response.  Handles responses that involve more than
171  * one filter call by maintaining state until an EOS bucket is received.
172  */
173 static apr_status_t gssweb_authenticate_filter (ap_filter_t *f,
174                                         apr_bucket_brigade *brig_in)
175 {
176   request_rec *r = f->r;
177   conn_rec *c = r->connection;
178   apr_bucket_brigade *brig_out;
179   apr_bucket *bkt_in = NULL;
180   apr_bucket *bkt_out = NULL;
181   apr_bucket *bkt_eos = NULL;
182   const char *data = NULL;
183   apr_size_t len = 0;
184   apr_size_t enc_len = 0;
185   char *buf = NULL;
186   char *stoken = NULL;
187   apr_size_t n = 0;
188   gss_conn_ctx conn_ctx = NULL;
189   const char *c_type = NULL;
190   const char *c_len = NULL;
191   apr_status_t ret = 0;
192
193   gss_log(APLOG_MARK, APLOG_DEBUG, 0, f->r, "Entering GSSWeb filter");
194
195   /* get the context from the request */
196   conn_ctx = gss_retrieve_conn_ctx(r);
197   if (NULL == conn_ctx) {
198     gss_log(APLOG_MARK, APLOG_ERR, 0, r, "gssweb_authenticate_filter: Failed to find valid context.");
199     apr_brigade_cleanup(brig_in);
200     return HTTP_INTERNAL_SERVER_ERROR;
201   }
202     
203   /* if this is the first call for a response, send opening JSON block */
204   if (GSS_FILT_NEW == conn_ctx->filter_stat) {
205     if (NULL == (brig_out = apr_brigade_create(r->pool, c->bucket_alloc))) {
206       conn_ctx->filter_stat = GSS_FILT_ERROR;
207       gss_log(APLOG_MARK, APLOG_ERR, 0, r, "gssweb_authenticate_filter: Unable to allocate output brigade (opening)");
208       apr_brigade_cleanup(brig_in);
209       return HTTP_INTERNAL_SERVER_ERROR;
210     }
211
212     len = apr_base64_encode_len(conn_ctx->output_token.length);
213     if (NULL == (data = apr_bucket_alloc(len+1024, c->bucket_alloc)) ||
214         NULL == (stoken = apr_bucket_alloc(len+1, c->bucket_alloc))) {
215       gss_log(APLOG_MARK, APLOG_ERR, 0, r, "gssweb_authenticate_filter: Unable to allocate space for opening json block");
216       apr_brigade_cleanup(brig_in);
217       apr_brigade_cleanup(brig_out);
218       return HTTP_INTERNAL_SERVER_ERROR;
219     }
220
221     apr_base64_encode_binary(stoken, conn_ctx->output_token.value, conn_ctx->output_token.length);
222     snprintf((char *)data, len+1024, 
223              "{\"gssweb\": {\n\"token\": \"%s\",\n\"nonce\": \"%d\"},\n\"application\": {\n\"data\": \"", 
224              stoken, conn_ctx->nonce);
225     gss_log(APLOG_MARK, APLOG_DEBUG, 0, r, "gssweb_authenticate_filter: Sending (%d bytes): %s", strlen(data), data);
226     
227     bkt_out = apr_bucket_heap_create(data, strlen(data), apr_bucket_free,
228                                      c->bucket_alloc);
229     APR_BRIGADE_INSERT_TAIL(brig_out, bkt_out);
230     if (0 != (ret = ap_pass_brigade(f->next, brig_out))) {
231       apr_brigade_cleanup(brig_in);
232       apr_brigade_cleanup(brig_out);
233       return ret;
234     }
235
236     conn_ctx->filter_stat = GSS_FILT_INPROGRESS;
237   }
238
239   /* loop through the app data buckets, escaping and sending each one */
240   for (bkt_in = APR_BRIGADE_FIRST(brig_in);
241        bkt_in != APR_BRIGADE_SENTINEL(brig_in);
242        bkt_in = APR_BUCKET_NEXT(bkt_in))
243     {
244       if (NULL == (brig_out = apr_brigade_create(r->pool, c->bucket_alloc))) {
245             gss_log(APLOG_MARK, APLOG_ERR, 0, r, "gssweb_authenticate_filter: Unable to allocate brigade (loop)");
246             conn_ctx->filter_stat = GSS_FILT_ERROR;
247             apr_brigade_cleanup(brig_in);
248             return HTTP_INTERNAL_SERVER_ERROR;
249       }
250
251       /* if this is an EOS, send the JSON closing block */
252       if(APR_BUCKET_IS_EOS(bkt_in))
253         {
254           /* create and add the JSON closing block */
255           
256           if (NULL == (data = apr_bucket_alloc(1024, c->bucket_alloc))) {
257               gss_log(APLOG_MARK, APLOG_ERR, 0, r, "gssweb_authenticate_filter: Unable to allocate space for closing json block");
258               apr_brigade_cleanup(brig_in);
259               apr_brigade_cleanup(brig_out);
260               return HTTP_INTERNAL_SERVER_ERROR;
261           }
262
263           c_type = apr_table_get(r->headers_in, "Content-Type");
264           c_len = apr_table_get(r->headers_in, "Content-Length");
265           snprintf((char *)data, 1024, "\",\n\"content-type\": \"%s\",\n\"content-length\": \"%s\"\n}\n}", c_type, c_len);
266           gss_log(APLOG_MARK, APLOG_DEBUG, 0, r, "gssweb_authenticate_filter: Sending (%d bytes) %s", strlen(data), data);
267
268           bkt_out = apr_bucket_heap_create(data, strlen(data), apr_bucket_free,
269                                            c->bucket_alloc);
270           APR_BRIGADE_INSERT_TAIL(brig_out, bkt_out);
271
272           /* Indicate that the next filter call is a new response */
273           conn_ctx->filter_stat = GSS_FILT_NEW;
274           
275           /* set EOS in the outbound brigade */
276           bkt_eos = apr_bucket_eos_create(c->bucket_alloc);
277           APR_BRIGADE_INSERT_TAIL (brig_out, bkt_eos);
278           
279           /* pass the brigade */
280           gss_log(APLOG_MARK, APLOG_DEBUG, 0, r, "gssweb_authenticate_filter: Sending: EOS");
281           if (0 != (ret = ap_pass_brigade(f->next, brig_out))) {
282             conn_ctx->filter_stat = GSS_FILT_ERROR;
283             apr_brigade_cleanup(brig_in);
284             apr_brigade_cleanup(brig_out);
285             return ret;
286           }
287           break;
288         }
289
290       /* Read application data from each input bucket */
291       apr_bucket_read(bkt_in, &data, &len, APR_BLOCK_READ);
292       gss_log(APLOG_MARK, APLOG_DEBUG, 0, r, "gssweb_authenticate_filter: Application Data (%d bytes): %s", len, data);
293
294       /* Base64 encode the data */
295       enc_len = apr_base64_encode_len(len);
296       if (NULL == (buf = apr_bucket_alloc(enc_len, c->bucket_alloc))) {
297         gss_log(APLOG_MARK, APLOG_ERR, 0, r, "gssweb_authenticate_filter: Unable to allocate space for application data");
298         apr_brigade_cleanup(brig_in);
299         apr_brigade_cleanup(brig_out);
300         return HTTP_INTERNAL_SERVER_ERROR;
301       }
302       enc_len = apr_base64_encode_binary(buf, data, len);
303
304       /* Put the data in a bucket and add it to the the output brigade */
305       bkt_out = apr_bucket_heap_create(buf, enc_len-1, apr_bucket_free, c->bucket_alloc);
306       buf[enc_len] = '\0';
307       gss_log(APLOG_MARK, APLOG_DEBUG, 0, r, "gssweb_authenticate_filter: Sending (%d bytes):", enc_len, buf);
308       APR_BRIGADE_INSERT_TAIL(brig_out, bkt_out);
309
310       /* Send the output brigade */
311       gss_log(APLOG_MARK, APLOG_DEBUG, 0, r, "gssweb_authenticate_filter: Passing the application data brigade");
312       if (OK != (ret = ap_pass_brigade(f->next, brig_out))) {
313         apr_brigade_cleanup(brig_in);
314         apr_brigade_cleanup(brig_out);
315         return ret;
316       }
317     }
318
319   /* Make sure we don't see the same data again */
320   apr_brigade_cleanup(brig_in);
321   return OK;
322 }
323
324 /* gssweb_add_filter() -- Hook to add our output filter to the request
325  * (r). Called for all error responses through the
326  * gssweb_insert_error_filter hook.
327  */
328 static void
329 gssweb_add_filter(request_rec *r) 
330 {
331   gss_conn_ctx conn_ctx = NULL;
332
333   /* Get the context for this request, if any */
334   conn_ctx = gss_retrieve_conn_ctx(r);
335
336   /* Add the output filter */
337   ap_add_output_filter("gssweb_auth_filter", (void *)conn_ctx, r, r->connection);
338   return;
339 }
340
341 /* gssweb_authenticate_user() -- Hook to perform actual user
342  * authentication.  Will be called once for each round trip in the GSS
343  * authentication loop.  Reads the tokend from the request, calls
344  * gss_accept_sec_context(), and stores the output token and context
345  * in the user data areas.  Adds output filter to send the GSS
346  * output token back to the client.
347  */
348 static int
349 gssweb_authenticate_user(request_rec *r) 
350 {
351   const char *auth_line = NULL;
352   char *auth_type = NULL;
353   char *negotiate_ret_value = NULL;
354   gss_conn_ctx conn_ctx = NULL;
355   int ret;
356   OM_uint32 major_status, minor_status, minor_status2;
357   gss_buffer_desc input_token = GSS_C_EMPTY_BUFFER;
358   gss_buffer_desc output_token = GSS_C_EMPTY_BUFFER;
359   gss_name_t client_name = GSS_C_NO_NAME;
360   gss_cred_id_t delegated_cred = GSS_C_NO_CREDENTIAL;
361   OM_uint32 ret_flags = 0;
362   unsigned int nonce;
363   int release_output_token = 1;
364   gss_auth_config *conf = NULL;
365
366   gss_log(APLOG_MARK, APLOG_DEBUG, 0, r, "Entering GSSWeb authentication");
367
368   /* Get the module configuration */
369   conf = (gss_auth_config *) ap_get_module_config(r->per_dir_config,
370                                                   &auth_gssweb_module);
371
372   /* Check if this is for our auth type */
373   auth_type = (char *)ap_auth_type(r);
374   if (auth_type == NULL || strcasecmp(auth_type, "GSSWeb") != 0) {
375         gss_log(APLOG_MARK, APLOG_DEBUG, 0, r,
376                 "gssweb_authenticate_user: AuthType '%s' is not GSSWeb, bailing out",
377                 (auth_type) ? auth_type : "(NULL)");
378         ret = DECLINED;
379         goto end;
380   }
381
382   /* Read the token and nonce from the POST */
383   if (0 != gssweb_get_post_data(r, &nonce, &input_token)) {
384     gss_log(APLOG_MARK, APLOG_ERR, 0, r, "gssweb_authenticate_user: Unable to read nonce or input token.");
385     ret = HTTP_UNAUTHORIZED;
386     goto end;
387   }
388   gss_log(APLOG_MARK, APLOG_DEBUG, 0, r, "gssweb_authenticate_user: GSSWeb nonce value = %u.", nonce);
389
390   /* Retrieve the existing context (if any) and see if it matches this request */
391   gss_log(APLOG_MARK, APLOG_DEBUG, 0, r, "gssweb_authenticate_user: Attempting to retrieve GSS context");
392   conn_ctx = gss_retrieve_conn_ctx(r);
393
394   /* If there is no matching context, create a new one */
395   if ((NULL == conn_ctx) || 
396       (conn_ctx->nonce != nonce)) {
397     gss_log(APLOG_MARK, APLOG_DEBUG, 0, r, "gssweb_authenticate_user: Creating a new GSS context");
398     if (conn_ctx)
399       gss_cleanup_conn_ctx(conn_ctx);
400     if (NULL == (conn_ctx = gss_create_conn_ctx (r, conf))) {
401       gss_log(APLOG_MARK, APLOG_ERR, 0, r, "gssweb_authenticate_user: Failed to create GSS context");
402       ret = HTTP_INTERNAL_SERVER_ERROR;
403       goto end;
404     }
405   }
406
407   if (NULL == conn_ctx) {
408       gss_log(APLOG_MARK, APLOG_ERR, 0, r, "gssweb_authenticate_user: ERROR -- no GSS context");
409       goto end;
410   }
411
412   /* If the output filter reported an internal server error, return it */
413   if (GSS_FILT_ERROR == conn_ctx->filter_stat) {
414     ret = HTTP_INTERNAL_SERVER_ERROR;
415     gss_log(APLOG_MARK, APLOG_ERR, 0, r,
416             "gssweb_authenticate_user: Output filter returned error, reporting.");
417     goto end;
418   }
419
420   /* Add the output filter to this request (only applies to non-error returns) */
421   ap_add_output_filter("gssweb_auth_filter", (void *)conn_ctx, r, r->connection);
422
423   /* Call gss_accept_sec_context */
424   major_status = gss_accept_sec_context(&minor_status,
425                                         &conn_ctx->context,
426                                         conn_ctx->server_creds,
427                                         &input_token,
428                                         GSS_C_NO_CHANNEL_BINDINGS,
429                                         NULL,
430                                         NULL,
431                                         &output_token,
432                                         &ret_flags,
433                                         NULL,
434                                         &delegated_cred);
435   gss_log(APLOG_MARK, APLOG_DEBUG, 0, r,
436           "gssweb_authenticate_user: Client %s us their credential",
437           (ret_flags & GSS_C_DELEG_FLAG) ? "delegated" : "didn't delegate");
438   if (output_token.length >= 4) {
439     gss_log(APLOG_MARK, APLOG_DEBUG, 0, r, "gssweb_authenticate_user: First four bytes of output token are: %.2x %.2x %.2x %.2x", ((char *)output_token.value)[0], ((char *)output_token.value)[1], ((char *)output_token.value)[2], ((char *)output_token.value)[3]);
440   } else {
441     gss_log(APLOG_MARK, APLOG_DEBUG, 0, r, "gssweb_authenticate_user: No output token");
442   }
443  
444   if (GSS_ERROR(major_status)) {
445     gss_log(APLOG_MARK, APLOG_ERR, 0, r,
446             "%s", get_gss_error(r, major_status, minor_status,
447                                 "gssweb_authenticate_user: Failed to establish authentication"));
448     gss_delete_sec_context(&minor_status, &conn_ctx->context, GSS_C_NO_BUFFER);
449     conn_ctx->context = GSS_C_NO_CONTEXT;
450     conn_ctx->state = GSS_CTX_EMPTY;
451     ret = HTTP_UNAUTHORIZED;
452     goto end;
453     gss_log(APLOG_MARK, APLOG_DEBUG, 0, r, "gssweb_authenticate_user: Decoding ouput token.");
454   }
455
456   gss_log(APLOG_MARK, APLOG_DEBUG, 0, r, "gssweb_authenticate_user: Got sec context, storing nonce and output token.");
457
458   /* Store the nonce & ouput token in the stored context */
459   conn_ctx->nonce = nonce;
460   conn_ctx->output_token = output_token;
461   release_output_token = 0;
462
463   /* If we aren't done yet, go around again */
464   if (major_status & GSS_S_CONTINUE_NEEDED) {
465     conn_ctx->state = GSS_CTX_IN_PROGRESS;
466     ret = HTTP_UNAUTHORIZED;
467     goto end;
468   }
469
470   conn_ctx->state = GSS_CTX_ESTABLISHED;
471         r->user = apr_pstrdup(r->pool, conn_ctx->user);
472         r->ap_auth_type = "GSSWeb";
473   ret = OK;
474
475  end:
476   if (delegated_cred)
477     gss_release_cred(&minor_status, &delegated_cred);
478   
479   if ((release_output_token) && (output_token.length))
480     gss_release_buffer(&minor_status, &output_token);
481     
482   if (client_name != GSS_C_NO_NAME)
483     gss_release_name(&minor_status, &client_name);
484
485   return ret;
486 }
487
488 static void
489 gssweb_register_hooks(apr_pool_t *p)
490 {
491   /* register the gssweb output filter */
492   ap_register_output_filter("gssweb_auth_filter", gssweb_authenticate_filter, NULL, AP_FTYPE_RESOURCE);
493
494   /* register hooks */
495   ap_hook_check_user_id(gssweb_authenticate_user, NULL, NULL, APR_HOOK_MIDDLE);
496   ap_hook_insert_error_filter(gssweb_add_filter, NULL, NULL, APR_HOOK_MIDDLE);
497 }
498
499 module AP_MODULE_DECLARE_DATA auth_gssweb_module = {
500     STANDARD20_MODULE_STUFF,
501     gss_config_dir_create,
502     NULL,
503     NULL,
504     NULL,
505     gssweb_config_cmds,
506     gssweb_register_hooks
507 };