Fix base64d() buffer size (CVE-2018-6789)
[exim.git] / src / src / auths / heimdal_gssapi.c
CommitLineData
dde3daac
PP
1/*************************************************
2* Exim - an Internet mail transport agent *
3*************************************************/
4
9242a7e8 5/* Copyright (c) University of Cambridge 1995 - 2017 */
dde3daac
PP
6/* See the file NOTICE for conditions of use and distribution. */
7
8/* Copyright (c) Twitter Inc 2012
9 Author: Phil Pennock <pdp@exim.org> */
f35771fe 10/* Copyright (c) Phil Pennock 2012 */
dde3daac 11
b245b4a5 12/* Interface to Heimdal library for GSSAPI authentication. */
dde3daac
PP
13
14/* Naming and rationale
15
16Sensibly, this integration would be deferred to a SASL library, but none
17of them appear to offer keytab file selection interfaces in their APIs. It
18might be that this driver only requires minor modification to work with MIT
19Kerberos.
20
21Heimdal provides a number of interfaces for various forms of authentication.
22As GS2 does not appear to provide keytab control interfaces either, we may
23end up supporting that too. It's possible that we could trivially expand to
24support NTLM support via Heimdal, etc. Rather than try to be too generic
25immediately, this driver is directly only supporting GSSAPI.
26
27Without rename, we could add an option for GS2 support in the future.
28*/
29
30/* Sources
31
32* mailcheck-imap (Perl, client-side, written by me years ago)
33* gsasl driver (GPL, server-side)
34* heimdal sources and man-pages, plus http://www.h5l.org/manual/
35* FreeBSD man-pages (very informative!)
36* http://www.ggf.org/documents/GFD.24.pdf confirming GSS_KRB5_REGISTER_ACCEPTOR_IDENTITY_X
b245b4a5
PP
37 semantics, that found by browsing Heimdal source to find how to set the keytab; however,
38 after multiple attempts I failed to get that to work and instead switched to
39 gsskrb5_register_acceptor_identity().
dde3daac
PP
40*/
41
42#include "../exim.h"
43
44#ifndef AUTH_HEIMDAL_GSSAPI
45/* dummy function to satisfy compilers when we link in an "empty" file. */
e1d15f5e
JH
46static void dummy(int x);
47static void dummy2(int x) { dummy(x-1); }
48static void dummy(int x) { dummy2(x-1); }
dde3daac
PP
49#else
50
51#include <gssapi/gssapi.h>
52#include <gssapi/gssapi_krb5.h>
53
54/* for the _init debugging */
55#include <krb5.h>
56
dde3daac
PP
57#include "heimdal_gssapi.h"
58
59/* Authenticator-specific options. */
60optionlist auth_heimdal_gssapi_options[] = {
61 { "server_hostname", opt_stringptr,
62 (void *)(offsetof(auth_heimdal_gssapi_options_block, server_hostname)) },
63 { "server_keytab", opt_stringptr,
64 (void *)(offsetof(auth_heimdal_gssapi_options_block, server_keytab)) },
dde3daac
PP
65 { "server_service", opt_stringptr,
66 (void *)(offsetof(auth_heimdal_gssapi_options_block, server_service)) }
67};
68
69int auth_heimdal_gssapi_options_count =
70 sizeof(auth_heimdal_gssapi_options)/sizeof(optionlist);
71
72/* Defaults for the authenticator-specific options. */
73auth_heimdal_gssapi_options_block auth_heimdal_gssapi_option_defaults = {
74 US"$primary_hostname", /* server_hostname */
75 NULL, /* server_keytab */
dde3daac
PP
76 US"smtp", /* server_service */
77};
78
d185889f
JH
79
80#ifdef MACRO_PREDEF
81
82/* Dummy values */
aab9a843
PP
83void auth_heimdal_gssapi_init(auth_instance *ablock) {}
84int auth_heimdal_gssapi_server(auth_instance *ablock, uschar *data) {return 0;}
85int auth_heimdal_gssapi_client(auth_instance *ablock, smtp_inblock *inblock,
d185889f 86 smtp_outblock *outblock, int timeout, uschar *buffer, int buffsize) {return 0;}
f9df71c0 87void auth_heimdal_gssapi_version_report(FILE *f) {}
d185889f
JH
88
89#else /*!MACRO_PREDEF*/
90
91
92
dde3daac
PP
93/* "Globals" for managing the heimdal_gssapi interface. */
94
dde3daac
PP
95/* Utility functions */
96static void
97 exim_heimdal_error_debug(const char *, krb5_context, krb5_error_code);
98static int
99 exim_gssapi_error_defer(uschar *, OM_uint32, OM_uint32, const char *, ...)
100 PRINTF_FUNCTION(4, 5);
101
102#define EmptyBuf(buf) do { buf.value = NULL; buf.length = 0; } while (0)
103
104
105/*************************************************
106* Initialization entry point *
107*************************************************/
108
109/* Called for each instance, after its options have been read, to
110enable consistency checks to be done, or anything else that needs
111to be set up. */
112
b245b4a5
PP
113/* Heimdal provides a GSSAPI extension method for setting the keytab;
114in the init, we mostly just use raw krb5 methods so that we can report
dde3daac
PP
115the keytab contents, for -D+auth debugging. */
116
117void
118auth_heimdal_gssapi_init(auth_instance *ablock)
119{
120 krb5_context context;
121 krb5_keytab keytab;
122 krb5_kt_cursor cursor;
123 krb5_keytab_entry entry;
124 krb5_error_code krc;
125 char *principal, *enctype_s;
126 const char *k_keytab_typed_name = NULL;
127 auth_heimdal_gssapi_options_block *ob =
128 (auth_heimdal_gssapi_options_block *)(ablock->options_block);
129
130 ablock->server = FALSE;
131 ablock->client = FALSE;
132
133 if (!ob->server_service || !*ob->server_service) {
134 HDEBUG(D_auth) debug_printf("heimdal: missing server_service\n");
135 return;
136 }
137
138 krc = krb5_init_context(&context);
139 if (krc != 0) {
140 int kerr = errno;
141 HDEBUG(D_auth) debug_printf("heimdal: failed to initialise krb5 context: %s\n",
142 strerror(kerr));
143 return;
144 }
145
146 if (ob->server_keytab) {
147 k_keytab_typed_name = CCS string_sprintf("file:%s", expand_string(ob->server_keytab));
148 HDEBUG(D_auth) debug_printf("heimdal: using keytab %s\n", k_keytab_typed_name);
149 krc = krb5_kt_resolve(context, k_keytab_typed_name, &keytab);
150 if (krc) {
151 HDEBUG(D_auth) exim_heimdal_error_debug("krb5_kt_resolve", context, krc);
152 return;
153 }
154 } else {
155 HDEBUG(D_auth) debug_printf("heimdal: using system default keytab\n");
156 krc = krb5_kt_default(context, &keytab);
157 if (krc) {
158 HDEBUG(D_auth) exim_heimdal_error_debug("krb5_kt_default", context, krc);
159 return;
160 }
161 }
162
163 HDEBUG(D_auth) {
164 /* http://www.h5l.org/manual/HEAD/krb5/krb5_keytab_intro.html */
165 krc = krb5_kt_start_seq_get(context, keytab, &cursor);
166 if (krc)
167 exim_heimdal_error_debug("krb5_kt_start_seq_get", context, krc);
168 else {
169 while ((krc = krb5_kt_next_entry(context, keytab, &entry, &cursor)) == 0) {
170 principal = enctype_s = NULL;
171 krb5_unparse_name(context, entry.principal, &principal);
172 krb5_enctype_to_string(context, entry.keyblock.keytype, &enctype_s);
173 debug_printf("heimdal: keytab principal: %s vno=%d type=%s\n",
174 principal ? principal : "??",
175 entry.vno,
176 enctype_s ? enctype_s : "??");
177 free(principal);
178 free(enctype_s);
179 krb5_kt_free_entry(context, &entry);
180 }
181 krc = krb5_kt_end_seq_get(context, keytab, &cursor);
182 if (krc)
183 exim_heimdal_error_debug("krb5_kt_end_seq_get", context, krc);
184 }
185 }
186
187 krc = krb5_kt_close(context, keytab);
188 if (krc)
189 HDEBUG(D_auth) exim_heimdal_error_debug("krb5_kt_close", context, krc);
190
191 krb5_free_context(context);
192
193 /* RFC 4121 section 5.2, SHOULD support 64K input buffers */
194 if (big_buffer_size < (64 * 1024)) {
195 uschar *newbuf;
196 big_buffer_size = 64 * 1024;
197 newbuf = store_malloc(big_buffer_size);
198 store_free(big_buffer);
199 big_buffer = newbuf;
200 }
201
202 ablock->server = TRUE;
203}
204
205
206static void
207exim_heimdal_error_debug(const char *label,
208 krb5_context context, krb5_error_code err)
209{
210 const char *kerrsc;
211 kerrsc = krb5_get_error_message(context, err);
212 debug_printf("heimdal %s: %s\n", label, kerrsc ? kerrsc : "unknown error");
213 krb5_free_error_message(context, kerrsc);
214}
215
216/*************************************************
217* Server entry point *
218*************************************************/
219
220/* For interface, see auths/README */
221
222/* GSSAPI notes:
223OM_uint32: portable type for unsigned int32
224gss_buffer_desc / *gss_buffer_t: hold/point-to size_t .length & void *value
225 -- all strings/etc passed in should go through one of these
226 -- when allocated by gssapi, release with gss_release_buffer()
227*/
228
229int
230auth_heimdal_gssapi_server(auth_instance *ablock, uschar *initial_data)
231{
232 gss_name_t gclient = GSS_C_NO_NAME;
233 gss_name_t gserver = GSS_C_NO_NAME;
234 gss_cred_id_t gcred = GSS_C_NO_CREDENTIAL;
235 gss_ctx_id_t gcontext = GSS_C_NO_CONTEXT;
236 uschar *ex_server_str;
237 gss_buffer_desc gbufdesc = GSS_C_EMPTY_BUFFER;
238 gss_buffer_desc gbufdesc_in = GSS_C_EMPTY_BUFFER;
239 gss_buffer_desc gbufdesc_out = GSS_C_EMPTY_BUFFER;
240 gss_OID mech_type;
241 OM_uint32 maj_stat, min_stat;
242 int step, error_out, i;
243 uschar *tmp1, *tmp2, *from_client;
244 auth_heimdal_gssapi_options_block *ob =
245 (auth_heimdal_gssapi_options_block *)(ablock->options_block);
246 BOOL handled_empty_ir;
247 uschar *store_reset_point;
f35771fe 248 uschar *keytab;
dde3daac
PP
249 uschar sasl_config[4];
250 uschar requested_qop;
251
252 store_reset_point = store_get(0);
253
254 HDEBUG(D_auth)
255 debug_printf("heimdal: initialising auth context for %s\n", ablock->name);
256
257 /* Construct our gss_name_t gserver describing ourselves */
258 tmp1 = expand_string(ob->server_service);
259 tmp2 = expand_string(ob->server_hostname);
260 ex_server_str = string_sprintf("%s@%s", tmp1, tmp2);
261 gbufdesc.value = (void *) ex_server_str;
262 gbufdesc.length = Ustrlen(ex_server_str);
263 maj_stat = gss_import_name(&min_stat,
264 &gbufdesc, GSS_C_NT_HOSTBASED_SERVICE, &gserver);
265 if (GSS_ERROR(maj_stat))
266 return exim_gssapi_error_defer(store_reset_point, maj_stat, min_stat,
267 "gss_import_name(%s)", CS gbufdesc.value);
268
269 /* Use a specific keytab, if specified */
270 if (ob->server_keytab) {
f35771fe
PP
271 keytab = expand_string(ob->server_keytab);
272 maj_stat = gsskrb5_register_acceptor_identity(CCS keytab);
dde3daac
PP
273 if (GSS_ERROR(maj_stat))
274 return exim_gssapi_error_defer(store_reset_point, maj_stat, min_stat,
f35771fe
PP
275 "registering keytab \"%s\"", keytab);
276 HDEBUG(D_auth)
277 debug_printf("heimdal: using keytab \"%s\"\n", keytab);
dde3daac
PP
278 }
279
280 /* Acquire our credentials */
281 maj_stat = gss_acquire_cred(&min_stat,
282 gserver, /* desired name */
283 0, /* time */
284 GSS_C_NULL_OID_SET, /* desired mechs */
285 GSS_C_ACCEPT, /* cred usage */
286 &gcred, /* handle */
287 NULL /* actual mechs */,
288 NULL /* time rec */);
289 if (GSS_ERROR(maj_stat))
290 return exim_gssapi_error_defer(store_reset_point, maj_stat, min_stat,
291 "gss_acquire_cred(%s)", ex_server_str);
292
293 maj_stat = gss_release_name(&min_stat, &gserver);
294
f35771fe
PP
295 HDEBUG(D_auth) debug_printf("heimdal: have server credentials.\n");
296
dde3daac
PP
297 /* Loop talking to client */
298 step = 0;
299 from_client = initial_data;
300 handled_empty_ir = FALSE;
301 error_out = OK;
302
303 /* buffer sizes: auth_get_data() uses big_buffer, which we grow per
304 GSSAPI RFC in _init, if needed, to meet the SHOULD size of 64KB.
305 (big_buffer starts life at the MUST size of 16KB). */
306
307 /* step values
308 0: getting initial data from client to feed into GSSAPI
309 1: iterating for as long as GSS_S_CONTINUE_NEEDED
310 2: GSS_S_COMPLETE, SASL wrapping for authz and qop to send to client
311 3: unpick final auth message from client
312 4: break/finish (non-step)
313 */
314 while (step < 4) {
315 switch (step) {
316 case 0:
317 if (!from_client || *from_client == '\0') {
318 if (handled_empty_ir) {
319 HDEBUG(D_auth) debug_printf("gssapi: repeated empty input, grr.\n");
320 error_out = BAD64;
321 goto ERROR_OUT;
322 } else {
323 HDEBUG(D_auth) debug_printf("gssapi: missing initial response, nudging.\n");
324 error_out = auth_get_data(&from_client, US"", 0);
325 if (error_out != OK)
326 goto ERROR_OUT;
b245b4a5 327 handled_empty_ir = TRUE;
dde3daac
PP
328 continue;
329 }
330 }
331 /* We should now have the opening data from the client, base64-encoded. */
332 step += 1;
f35771fe 333 HDEBUG(D_auth) debug_printf("heimdal: have initial client data\n");
dde3daac
PP
334 break;
335
336 case 1:
f4d091fb 337 gbufdesc_in.length = b64decode(from_client, USS &gbufdesc_in.value);
dde3daac
PP
338 if (gclient) {
339 maj_stat = gss_release_name(&min_stat, &gclient);
340 gclient = GSS_C_NO_NAME;
341 }
342 maj_stat = gss_accept_sec_context(&min_stat,
343 &gcontext, /* context handle */
344 gcred, /* acceptor cred handle */
345 &gbufdesc_in, /* input from client */
346 GSS_C_NO_CHANNEL_BINDINGS, /* XXX fixme: use the channel bindings from GnuTLS */
347 &gclient, /* client identifier */
348 &mech_type, /* mechanism in use */
349 &gbufdesc_out, /* output to send to client */
350 NULL, /* return flags */
351 NULL, /* time rec */
352 NULL /* delegated cred_handle */
353 );
354 if (GSS_ERROR(maj_stat)) {
355 exim_gssapi_error_defer(NULL, maj_stat, min_stat,
356 "gss_accept_sec_context()");
357 error_out = FAIL;
358 goto ERROR_OUT;
359 }
360 if (&gbufdesc_out.length != 0) {
361 error_out = auth_get_data(&from_client,
362 gbufdesc_out.value, gbufdesc_out.length);
363 if (error_out != OK)
364 goto ERROR_OUT;
365
366 gss_release_buffer(&min_stat, &gbufdesc_out);
367 EmptyBuf(gbufdesc_out);
368 }
f35771fe 369 if (maj_stat == GSS_S_COMPLETE) {
dde3daac 370 step += 1;
f35771fe
PP
371 HDEBUG(D_auth) debug_printf("heimdal: GSS complete\n");
372 } else {
373 HDEBUG(D_auth) debug_printf("heimdal: need more data\n");
374 }
dde3daac
PP
375 break;
376
377 case 2:
378 memset(sasl_config, 0xFF, 4);
379 /* draft-ietf-sasl-gssapi-06.txt defines bitmasks for first octet
380 0x01 No security layer
381 0x02 Integrity protection
382 0x04 Confidentiality protection
383
b245b4a5 384 The remaining three octets are the maximum buffer size for wrapped
dde3daac
PP
385 content. */
386 sasl_config[0] = 0x01; /* Exim does not wrap/unwrap SASL layers after auth */
387 gbufdesc.value = (void *) sasl_config;
388 gbufdesc.length = 4;
389 maj_stat = gss_wrap(&min_stat,
390 gcontext,
391 0, /* conf_req_flag: integrity only */
392 GSS_C_QOP_DEFAULT, /* qop requested */
393 &gbufdesc, /* message to protect */
394 NULL, /* conf_state: no confidentiality applied */
395 &gbufdesc_out /* output buffer */
396 );
397 if (GSS_ERROR(maj_stat)) {
398 exim_gssapi_error_defer(NULL, maj_stat, min_stat,
399 "gss_wrap(SASL state after auth)");
400 error_out = FAIL;
401 goto ERROR_OUT;
402 }
f35771fe
PP
403
404 HDEBUG(D_auth) debug_printf("heimdal SASL: requesting QOP with no security layers\n");
405
dde3daac
PP
406 error_out = auth_get_data(&from_client,
407 gbufdesc_out.value, gbufdesc_out.length);
408 if (error_out != OK)
409 goto ERROR_OUT;
410
411 gss_release_buffer(&min_stat, &gbufdesc_out);
412 EmptyBuf(gbufdesc_out);
413 step += 1;
414 break;
415
416 case 3:
f4d091fb 417 gbufdesc_in.length = b64decode(from_client, USS &gbufdesc_in.value);
dde3daac
PP
418 maj_stat = gss_unwrap(&min_stat,
419 gcontext,
420 &gbufdesc_in, /* data from client */
421 &gbufdesc_out, /* results */
422 NULL, /* conf state */
423 NULL /* qop state */
424 );
425 if (GSS_ERROR(maj_stat)) {
426 exim_gssapi_error_defer(NULL, maj_stat, min_stat,
427 "gss_unwrap(final SASL message from client)");
428 error_out = FAIL;
429 goto ERROR_OUT;
430 }
c7955b11 431 if (gbufdesc_out.length < 4) {
dde3daac
PP
432 HDEBUG(D_auth)
433 debug_printf("gssapi: final message too short; "
c7955b11 434 "need flags, buf sizes and optional authzid\n");
dde3daac
PP
435 error_out = FAIL;
436 goto ERROR_OUT;
437 }
438
439 requested_qop = (CS gbufdesc_out.value)[0];
440 if ((requested_qop & 0x01) == 0) {
441 HDEBUG(D_auth)
442 debug_printf("gssapi: client requested security layers (%x)\n",
443 (unsigned int) requested_qop);
444 error_out = FAIL;
445 goto ERROR_OUT;
446 }
447
448 for (i = 0; i < AUTH_VARS; i++) auth_vars[i] = NULL;
449 expand_nmax = 0;
450
451 /* Identifiers:
452 The SASL provided identifier is an unverified authzid.
c7955b11
PP
453 GSSAPI provides us with a verified identifier, but it might be empty
454 for some clients.
dde3daac
PP
455 */
456
457 /* $auth2 is authzid requested at SASL layer */
c7955b11
PP
458 if (gbufdesc_out.length > 4) {
459 expand_nlength[2] = gbufdesc_out.length - 4;
460 auth_vars[1] = expand_nstring[2] =
461 string_copyn((US gbufdesc_out.value) + 4, expand_nlength[2]);
462 expand_nmax = 2;
463 }
dde3daac
PP
464
465 gss_release_buffer(&min_stat, &gbufdesc_out);
466 EmptyBuf(gbufdesc_out);
467
468 /* $auth1 is GSSAPI display name */
469 maj_stat = gss_display_name(&min_stat,
470 gclient,
471 &gbufdesc_out,
472 &mech_type);
473 if (GSS_ERROR(maj_stat)) {
474 auth_vars[1] = expand_nstring[2] = NULL;
475 expand_nmax = 0;
476 exim_gssapi_error_defer(NULL, maj_stat, min_stat,
477 "gss_display_name(client identifier)");
478 error_out = FAIL;
479 goto ERROR_OUT;
480 }
481
482 expand_nlength[1] = gbufdesc_out.length;
483 auth_vars[0] = expand_nstring[1] =
484 string_copyn(gbufdesc_out.value, gbufdesc_out.length);
485
c7955b11
PP
486 if (expand_nmax == 0) { /* should be: authzid was empty */
487 expand_nmax = 2;
488 expand_nlength[2] = expand_nlength[1];
489 auth_vars[1] = expand_nstring[2] = string_copyn(expand_nstring[1], expand_nlength[1]);
490 HDEBUG(D_auth)
491 debug_printf("heimdal SASL: empty authzid, set to dup of GSSAPI display name\n");
492 }
493
f35771fe
PP
494 HDEBUG(D_auth)
495 debug_printf("heimdal SASL: happy with client request\n"
496 " auth1 (verified GSSAPI display-name): \"%s\"\n"
497 " auth2 (unverified SASL requested authzid): \"%s\"\n",
498 auth_vars[0], auth_vars[1]);
499
dde3daac
PP
500 step += 1;
501 break;
502
503 } /* switch */
504 } /* while step */
505
506
507ERROR_OUT:
508 maj_stat = gss_release_cred(&min_stat, &gcred);
509 if (gclient) {
510 gss_release_name(&min_stat, &gclient);
511 gclient = GSS_C_NO_NAME;
512 }
513 if (gbufdesc_out.length) {
514 gss_release_buffer(&min_stat, &gbufdesc_out);
515 EmptyBuf(gbufdesc_out);
516 }
517 if (gcontext != GSS_C_NO_CONTEXT) {
518 gss_delete_sec_context(&min_stat, &gcontext, GSS_C_NO_BUFFER);
519 }
520
521 store_reset(store_reset_point);
522
523 if (error_out != OK)
524 return error_out;
525
526 /* Auth succeeded, check server_condition */
527 return auth_check_serv_cond(ablock);
528}
529
530
531static int
532exim_gssapi_error_defer(uschar *store_reset_point,
533 OM_uint32 major, OM_uint32 minor,
534 const char *format, ...)
535{
536 va_list ap;
537 uschar buffer[STRING_SPRINTF_BUFFER_SIZE];
538 OM_uint32 maj_stat, min_stat;
539 OM_uint32 msgcontext = 0;
540 gss_buffer_desc status_string;
541
542 va_start(ap, format);
543 if (!string_vformat(buffer, sizeof(buffer), format, ap))
544 log_write(0, LOG_MAIN|LOG_PANIC_DIE,
438257ba 545 "exim_gssapi_error_defer expansion larger than %lu",
dde3daac
PP
546 sizeof(buffer));
547 va_end(ap);
548
549 auth_defer_msg = NULL;
550
551 do {
552 maj_stat = gss_display_status(&min_stat,
553 major, GSS_C_GSS_CODE, GSS_C_NO_OID,
554 &msgcontext, &status_string);
555
556 if (auth_defer_msg == NULL) {
557 auth_defer_msg = string_copy(US status_string.value);
558 }
559
560 HDEBUG(D_auth) debug_printf("heimdal %s: %.*s\n",
561 buffer, (int)status_string.length, CS status_string.value);
562 gss_release_buffer(&min_stat, &status_string);
563
564 } while (msgcontext != 0);
565
566 if (store_reset_point)
567 store_reset(store_reset_point);
568 return DEFER;
569}
570
571
572/*************************************************
573* Client entry point *
574*************************************************/
575
576/* For interface, see auths/README */
577
578int
579auth_heimdal_gssapi_client(
580 auth_instance *ablock, /* authenticator block */
581 smtp_inblock *inblock, /* connection inblock */
582 smtp_outblock *outblock, /* connection outblock */
583 int timeout, /* command timeout */
584 uschar *buffer, /* buffer for reading response */
585 int buffsize) /* size of buffer */
586{
587 HDEBUG(D_auth)
588 debug_printf("Client side NOT IMPLEMENTED: you should not see this!\n");
589 /* NOT IMPLEMENTED */
590 return FAIL;
591}
592
593/*************************************************
594* Diagnostic API *
595*************************************************/
596
597void
598auth_heimdal_gssapi_version_report(FILE *f)
599{
600 /* No build-time constants available unless we link against libraries at
601 build-time and export the result as a string into a header ourselves. */
602 fprintf(f, "Library version: Heimdal: Runtime: %s\n"
603 " Build Info: %s\n",
604 heimdal_version, heimdal_long_version);
605}
606
d185889f 607#endif /*!MACRO_PREDEF*/
dde3daac
PP
608#endif /* AUTH_HEIMDAL_GSSAPI */
609
610/* End of heimdal_gssapi.c */