aboutsummaryrefslogtreecommitdiff
path: root/src/lib/gssapi/krb5/accept_sec_context.c
blob: ee204d3e0ae6dfd186d7dd2b28db6c37788c3027 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
/*
 * Copyright 1993 by OpenVision Technologies, Inc.
 * 
 * Permission to use, copy, modify, distribute, and sell this software
 * and its documentation for any purpose is hereby granted without fee,
 * provided that the above copyright notice appears in all copies and
 * that both that copyright notice and this permission notice appear in
 * supporting documentation, and that the name of OpenVision not be used
 * in advertising or publicity pertaining to distribution of the software
 * without specific, written prior permission. OpenVision makes no
 * representations about the suitability of this software for any
 * purpose.  It is provided "as is" without express or implied warranty.
 * 
 * OPENVISION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
 * EVENT SHALL OPENVISION BE LIABLE FOR ANY SPECIAL, INDIRECT OR
 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
 * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
 * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 * PERFORMANCE OF THIS SOFTWARE.
 */

#include "k5-int.h"
#include "gssapiP_krb5.h"
#include <memory.h>

/*
 * $Id$
 */

#if 0

/* XXXX This widen/narrow stuff is bletcherous, but it seems to be
   necessary.  Perhaps there is a "better" way, but I don't know what it
   is */

#include <krb5/widen.h>
static krb5_error_code
rd_req_keyproc(krb5_pointer keyprocarg, krb5_principal server,
	       krb5_kvno kvno, krb5_keyblock **keyblock)
#include <krb5/narrow.h>
{
   krb5_error_code code;
   krb5_keytab_entry ktentry;

   if (code = krb5_kt_get_entry((krb5_keytab) keyprocarg, server, kvno,
				&ktentry))
      return(code);

   code = krb5_copy_keyblock(&ktentry.key, keyblock);

   (void) krb5_kt_free_entry(&ktentry);

   return(code);
}

#endif

/* Decode, decrypt and store the forwarded creds in the local ccache. */
static krb5_error_code
rd_and_store_for_creds(context, auth_context, inbuf, out_cred)
    krb5_context context;
    krb5_auth_context auth_context;
    krb5_data *inbuf;
    krb5_gss_cred_id_t *out_cred;
{
    krb5_creds ** creds;
    krb5_error_code retval;
    krb5_ccache ccache;
    krb5_gss_cred_id_t cred = NULL;
    extern krb5_cc_ops krb5_mcc_ops;

    if ((retval = krb5_rd_cred(context, auth_context, inbuf, &creds, NULL))) 
	return(retval);

    /* Lots of kludging going on here... Some day the ccache interface
       will be rewritten though */

    krb5_cc_register(context, &krb5_mcc_ops, 0);
    if ((retval = krb5_cc_resolve(context, "MEMORY:GSSAPI", &ccache)))
        goto cleanup;

    if ((retval = krb5_cc_gen_new(context, &ccache)))
        goto cleanup;
    
    if ((retval = krb5_cc_initialize(context, ccache, creds[0]->client)))
	goto cleanup;

    if ((retval = krb5_cc_store_cred(context, ccache, creds[0])))
	goto cleanup;

    /* generate a delegated credential handle */
    if (out_cred) {
      /* allocate memory for a cred_t... */
      if (!(cred =
	    (krb5_gss_cred_id_t) xmalloc(sizeof(krb5_gss_cred_id_rec)))) {
	retval = ENOMEM; /* out of memory? */
	goto cleanup;
      }

      /* zero it out... */
      memset(cred, 0, sizeof(krb5_gss_cred_id_rec));

      /* copy the client principle into it... */
      if ((retval =
	   krb5_copy_principal(context, creds[0]->client, &(cred->princ)))) {
	retval = ENOMEM; /* out of memory? */
	xfree(cred); /* clean up memory on failure */
	cred = NULL;
	goto cleanup;
      }

      cred->usage = GSS_C_INITIATE; /* we can't accept with this */
      /* cred->princ already set */
      cred->actual_mechs = gss_mech_set_krb5_both; /* both mechs work */
      cred->prerfc_mech = cred->rfc_mech = 1; /* Ibid. */
      cred->keytab = NULL; /* no keytab associated with this... */
      cred->ccache = ccache; /* but there is a credential cache */
      cred->tgt_expire = creds[0]->times.endtime; /* store the end time */
    }

    /* If there were errors, there might have been a memory leak
    if (!cred)
      if ((retval = krb5_cc_close(context, ccache)))
	goto cleanup;
	*/
cleanup:
    krb5_free_tgt_creds(context, creds);

    if (!cred && ccache)
      (void)krb5_cc_close(context, ccache);

    if (out_cred)
      *out_cred = cred; /* return credential */

    return retval;
}

OM_uint32
krb5_gss_accept_sec_context(minor_status, context_handle, 
			    verifier_cred_handle, input_token,
			    input_chan_bindings, src_name, mech_type,
			    output_token, ret_flags, time_rec,
			    delegated_cred_handle)
     OM_uint32 *minor_status;
     gss_ctx_id_t *context_handle;
     gss_cred_id_t verifier_cred_handle;
     gss_buffer_t input_token;
     gss_channel_bindings_t input_chan_bindings;
     gss_name_t *src_name;
     gss_OID *mech_type;
     gss_buffer_t output_token;
     OM_uint32 *ret_flags;
     OM_uint32 *time_rec;
     gss_cred_id_t *delegated_cred_handle;
{
   krb5_context context;
   unsigned char *ptr, *ptr2;
   char *sptr;
   long tmp;
   int bigend;
   krb5_gss_cred_id_t cred = 0;
   krb5_data ap_req;
   int i;
   krb5_error_code code;
   krb5_address addr, *paddr;
   krb5_authenticator *authdat = 0;
   krb5_checksum md5;
   krb5_principal name = NULL;
   int gss_flags = 0;
   int decode_req_message = 0;
   krb5_gss_ctx_id_rec *ctx = 0;
   krb5_enctype enctype;
   krb5_timestamp now;
   gss_buffer_desc token;
   int err;
   krb5_auth_context auth_context = NULL;
   krb5_ticket * ticket = NULL;
   int option_id;
   krb5_data option;
   krb5_auth_context auth_context_cred = NULL;
   const gss_OID_desc *mech_used = NULL;
   OM_uint32 major_status = GSS_S_FAILURE;
   krb5_error krb_error_data;
   krb5_data scratch;
   gss_cred_id_t cred_handle = NULL;
   krb5_gss_cred_id_t deleg_cred = NULL;

   if (GSS_ERROR(kg_get_context(minor_status, &context)))
      return(GSS_S_FAILURE);

   /* set up returns to be freeable */

   if (src_name)
      *src_name = (gss_name_t) NULL;
   output_token->length = 0;
   output_token->value = NULL;
   token.value = 0;
   md5.contents = 0;
   
   if (mech_type)
      *mech_type = GSS_C_NULL_OID;
   /* return a bogus cred handle */
   if (delegated_cred_handle)
      *delegated_cred_handle = GSS_C_NO_CREDENTIAL;

   /*
    * Context handle must be unspecified.  Actually, it must be
    * non-established, but currently, accept_sec_context never returns
    * a non-established context handle.
    */
   /*SUPPRESS 29*/
   if (*context_handle != GSS_C_NO_CONTEXT) {
      *minor_status = 0;
      return(GSS_S_FAILURE);
   }

   /* handle default cred handle */
   if (verifier_cred_handle == GSS_C_NO_CREDENTIAL) {
	   major_status = krb5_gss_acquire_cred(&code, GSS_C_NO_NAME,
				GSS_C_INDEFINITE, GSS_C_NO_OID_SET,
				GSS_C_ACCEPT, &cred_handle,
				NULL, NULL);
	   if (major_status != GSS_S_COMPLETE)
		   goto fail;
   } else
	   cred_handle = verifier_cred_handle;

   major_status = krb5_gss_validate_cred(minor_status, verifier_cred_handle);
   if (GSS_ERROR(major_status))
	   goto fail;

   cred = (krb5_gss_cred_id_t) cred_handle;

   /* make sure the supplied credentials are valid for accept */

   if ((cred->usage != GSS_C_ACCEPT) &&
       (cred->usage != GSS_C_BOTH)) {
	   code = 0;
	   major_status = GSS_S_NO_CRED;
	   goto fail;
   }

   /* verify the token's integrity, and leave the token in ap_req.
      figure out which mech oid was used, and save it */

   ptr = (unsigned char *) input_token->value;

   if ((err = g_verify_token_header((gss_OID) gss_mech_krb5, &(ap_req.length),
				    &ptr, KG_TOK_CTX_AP_REQ,
				    input_token->length))) {
	/*
	 * Previous versions of this library used the old mech_id
	 * and some broken behavior (wrong IV on checksum
	 * encryption).  We support the old mech_id for
	 * compatibility, and use it to decide when to use the
	 * old behavior.
	 */
	if (err != G_WRONG_MECH ||
	    (code = g_verify_token_header((gss_OID) gss_mech_krb5_old,
					  &(ap_req.length), 
					  &ptr, KG_TOK_CTX_AP_REQ,
					  input_token->length))) {
		major_status = GSS_S_DEFECTIVE_TOKEN;
		goto fail;
	} else {
#if 0	     /* Don't restrict mechanisms when accepting contexts */
	     if (! cred->prerfc_mech) {
		     code = G_WRONG_MECH;
		     major_status = GSS_S_DEFECTIVE_TOKEN;
		     goto fail;
	     }
#endif
	     mech_used = gss_mech_krb5_old;
	}
   } else {
#if 0	/* Don't restrict mechanisms when accepting contexts */
	if (! cred->rfc_mech) {
		code = G_WRONG_MECH;
		major_status = GSS_S_DEFECTIVE_TOKEN;
		goto fail;
	}
#endif
	mech_used = gss_mech_krb5;
   }

   sptr = (char *) ptr;
   TREAD_STR(sptr, ap_req.data, ap_req.length);
   decode_req_message = 1;

   /* construct the sender_addr */

   if ((input_chan_bindings != GSS_C_NO_CHANNEL_BINDINGS) &&
       (input_chan_bindings->initiator_addrtype == GSS_C_AF_INET)) {
      /* XXX is this right? */
      addr.addrtype = ADDRTYPE_INET;
      addr.length = input_chan_bindings->initiator_address.length;
      addr.contents = input_chan_bindings->initiator_address.value;

      paddr = &addr;
   } else {
      paddr = NULL;
   }

   /* decode the AP_REQ message */

   /* decode the message */

   if ((code = krb5_auth_con_init(context, &auth_context))) {
       *minor_status = code;
       return(GSS_S_FAILURE);
   }
   if ((code = krb5_auth_con_setrcache(context, auth_context, cred->rcache))) {
       *minor_status = code;
       return(GSS_S_FAILURE);
   }
   if ((code = krb5_rd_req(context, &auth_context, &ap_req, cred->princ,
			   cred->keytab, NULL, &ticket))) {
       major_status = GSS_S_FAILURE;
       goto fail;
   }

   krb5_auth_con_getauthenticator(context, auth_context, &authdat);

#if 0
   /* make sure the necessary parts of the authdat are present */

   if ((authdat->authenticator->subkey == NULL) ||
       (authdat->ticket->enc_part2 == NULL)) {
	   code = KG_NO_SUBKEY;
	   goto fail;
   }
#endif

   /* verify that the checksum is correct */

   /*
      The checksum may be either exactly 24 bytes, in which case
      no options are specified, or greater than 24 bytes, in which case
      one or more options are specified. Currently, the only valid
      option is KRB5_GSS_FOR_CREDS_OPTION ( = 1 ).
   */

   if ((authdat->checksum->checksum_type != CKSUMTYPE_KG_CB) ||
       (authdat->checksum->length < 24)) {
	   code = 0;
	   major_status = GSS_S_BAD_BINDINGS;
	   goto fail;
   }

   /*
      "Be liberal in what you accept, and
       conservative in what you send"
		-- rfc1123

       This code will let this acceptor interoperate with an initiator
       using little-endian or big-endian integer encoding.
   */

   ptr = (unsigned char *) authdat->checksum->contents;
   bigend = 0;

   TREAD_INT(ptr, tmp, bigend);

   if (tmp != krb5_checksum_size(context, CKSUMTYPE_RSA_MD5)) {
       ptr = (unsigned char *) authdat->checksum->contents;
       bigend = 1;

       TREAD_INT(ptr, tmp, bigend);

       if (tmp != krb5_checksum_size(context, CKSUMTYPE_RSA_MD5)) {
	   major_status = GSS_S_FAILURE;
	   code = KG_BAD_LENGTH;
	   goto fail;
       }
   }

   /* at this point, bigend is set according to the initiator's byte order */

   if ((code = kg_checksum_channel_bindings(context, input_chan_bindings, &md5,
					    bigend))) {
       major_status = GSS_S_BAD_BINDINGS;
       goto fail;
   }

   TREAD_STR(ptr, ptr2, md5.length);
   if (memcmp(ptr2, md5.contents, md5.length) != 0) {
	   code = 0;
	   major_status = GSS_S_BAD_BINDINGS;
	   goto fail;
   }

   xfree(md5.contents);
   md5.contents = 0;

   TREAD_INT(ptr, gss_flags, bigend);
   gss_flags &= ~GSS_C_DELEG_FLAG; /* mask out the delegation flag; if there's
				      a delegation, we'll set it below */
   decode_req_message = 0;

   /* if the checksum length > 24, there are options to process */

   if(authdat->checksum->length > 24) {

	i = authdat->checksum->length - 24;

	while(i>0) {

	    TREAD_INT16(ptr, option_id, bigend);

	    switch(option_id) {

		case KRB5_GSS_FOR_CREDS_OPTION:

		    TREAD_INT16(ptr, option.length, bigend);

		    /* have to use ptr2, since option.data is wrong type and
		       macro uses ptr as both lvalue and rvalue */

		    TREAD_STR(ptr, ptr2, bigend);
		    option.data = (char FAR *) ptr2;

		    /* get a temporary auth_context structure for the
		       call to rd_and_store_for_creds() and clear its flags */

		    if ((code = krb5_auth_con_init(context,
						   &auth_context_cred))) {
			major_status = GSS_S_FAILURE;
			goto fail;
		    }

		    krb5_auth_con_setflags(context, auth_context_cred, 0);

		    /* store the delegated credential */

		    rd_and_store_for_creds(context, auth_context_cred,
					   &option,
					   (delegated_cred_handle) ?
					   &deleg_cred : NULL);

		    i -= option.length + 4;

		    krb5_auth_con_free(context, auth_context_cred);

		    gss_flags |= GSS_C_DELEG_FLAG; /* got a delegation */

		    break;

		    /* default: */
		    /* unknown options aren't an error */

	    } /* switch */
	} /* while */
    } /* if */
			
   /* create the ctx struct and start filling it in */

   if ((ctx = (krb5_gss_ctx_id_rec *) xmalloc(sizeof(krb5_gss_ctx_id_rec)))
       == NULL) {
       major_status = GSS_S_FAILURE;
       code = ENOMEM;
       goto fail;
   }

   memset(ctx, 0, sizeof(krb5_gss_ctx_id_rec));
   ctx->mech_used = mech_used;
   ctx->auth_context = auth_context;
   ctx->initiate = 0;
   ctx->gss_flags = KG_IMPLFLAGS(gss_flags);
   ctx->seed_init = 0;
   ctx->big_endian = bigend;

   major_status = GSS_S_FAILURE;

   /* Intern the ctx pointer so that delete_sec_context works */
   if (! kg_save_ctx_id((gss_ctx_id_t) ctx)) {
	   code = G_VALIDATE_FAILED;
	   xfree(ctx);
	   ctx = 0;
	   goto fail;
   }
   
   if ((code = krb5_copy_principal(context, cred->princ, &ctx->here)))
	   goto fail;

   if ((code = krb5_copy_principal(context, authdat->client, &ctx->there)))
	   goto fail;

   /* done with authdat */
   krb5_free_authenticator(context, authdat);
   authdat = 0;

   if ((code = krb5_auth_con_getremotesubkey(context, auth_context,
					     &ctx->subkey)))
	   goto fail;

   /* use the session key if the subkey isn't present */

   if (ctx->subkey == NULL) {
       if ((code = krb5_auth_con_getkey(context, auth_context,
					&ctx->subkey)))
	       goto fail;
   }

   if (ctx->subkey == NULL) {
       /* this isn't a very good error, but it's not clear to me this
	  can actually happen */
       code = KRB5KDC_ERR_NULL_KEY;
       goto fail;
   }

   switch(ctx->subkey->enctype) {
   case ENCTYPE_DES_CBC_MD5:
   case ENCTYPE_DES_CBC_CRC:
       enctype = ENCTYPE_DES_CBC_RAW;
       ctx->signalg = 0;
       ctx->cksum_size = 8;
       ctx->sealalg = 0;
       break;
#if 0
   case ENCTYPE_DES3_CBC_MD5:
       enctype = ENCTYPE_DES3_CBC_RAW;
       ctx->signalg = 3;
       ctx->cksum_size = 16;
       ctx->sealalg = 1;
       break;
#endif
   default:
       code = KRB5_BAD_ENCTYPE;
       goto fail;
   }

   /* fill in the encryption descriptors */

   krb5_use_enctype(context, &ctx->enc.eblock, enctype);
   ctx->enc.processed = 0;

   if ((code = krb5_copy_keyblock(context, ctx->subkey, &ctx->enc.key)))
	   goto fail;

   for (i=0; i<ctx->enc.key->length; i++)
      /*SUPPRESS 113*/
      ctx->enc.key->contents[i] ^= 0xf0;

   krb5_use_enctype(context, &ctx->seq.eblock, enctype);
   ctx->seq.processed = 0;
   if ((code = krb5_copy_keyblock(context, ctx->subkey, &ctx->seq.key)))
	   goto fail;

   ctx->endtime = ticket->enc_part2->times.endtime;
   ctx->krb_flags = ticket->enc_part2->flags;

   krb5_free_ticket(context, ticket); /* Done with ticket */

   krb5_auth_con_getremoteseqnumber(context, auth_context, &ctx->seq_recv);

   if ((code = krb5_timeofday(context, &now)))
	   goto fail;

   if (ctx->endtime < now) {
	   code = 0;
	   major_status = GSS_S_CREDENTIALS_EXPIRED;
	   goto fail;
   }

   g_order_init(&(ctx->seqstate), ctx->seq_recv,
		(ctx->gss_flags & GSS_C_REPLAY_FLAG) != 0,
		(ctx->gss_flags & GSS_C_SEQUENCE_FLAG) != 0);

   /* at this point, the entire context structure is filled in, 
      so it can be released.  */

   /* generate an AP_REP if necessary */

   if (ctx->gss_flags & GSS_C_MUTUAL_FLAG) {
      krb5_data ap_rep;
      unsigned char * ptr;
      if ((code = krb5_mk_rep(context, auth_context, &ap_rep)))
	      goto fail;

      krb5_auth_con_getlocalseqnumber(context, auth_context, &ctx->seq_send);
      token.length = g_token_size((gss_OID) mech_used, ap_rep.length);

      if ((token.value = (unsigned char *) xmalloc(token.length)) == NULL) {
	      code = ENOMEM;
	      goto fail;
      }
      ptr = token.value;
      g_make_token_header((gss_OID) mech_used, ap_rep.length,
			  &ptr, KG_TOK_CTX_AP_REP);

      TWRITE_STR(ptr, ap_rep.data, ap_rep.length);
      xfree(ap_rep.data);
   } else {
      token.length = 0;
      token.value = NULL;
      ctx->seq_send = ctx->seq_recv;
   }

   /* set the return arguments */

   if (src_name) {
      if ((code = krb5_copy_principal(context, ctx->there, &name)))
	      goto fail;
      /* intern the src_name */
      if (! kg_save_name((gss_name_t) name)) {
	      code = G_VALIDATE_FAILED;
	      goto fail;
      }
   }

   if (mech_type)
      *mech_type = (gss_OID) mech_used;

   if (time_rec)
      *time_rec = ctx->endtime - now;

   if (ret_flags)
      *ret_flags = ctx->gss_flags;

   ctx->established = 1;
   *context_handle = ctx;
   *output_token = token;

   if (src_name)
      *src_name = (gss_name_t) name;

   if (delegated_cred_handle && deleg_cred) {
     if (!kg_save_cred_id((gss_cred_id_t) deleg_cred)) {
       code = G_VALIDATE_FAILED;
       goto fail;
     }

     *delegated_cred_handle = (gss_cred_id_t) deleg_cred;
   }

   /* finally! */

   *minor_status = 0;
   return(GSS_S_COMPLETE);

fail:
   if (authdat)
	   krb5_free_authenticator(context, authdat);
   if (ctx)
	   (void) krb5_gss_delete_sec_context(minor_status, 
					      (gss_ctx_id_t *) &ctx, NULL);
   if (token.value)
	   xfree(token.value);
   if (name) {
	 (void) kg_delete_name((gss_name_t) name);
	 krb5_free_principal(context, name);
   }
   if (md5.contents)
	 xfree(md5.contents);
   if (deleg_cred) { /* free memory associated with the deleg credential */
     if (deleg_cred->ccache)
       (void)krb5_cc_close(context, deleg_cred->ccache);
     if (deleg_cred->princ)
       krb5_free_principal(context, deleg_cred->princ);
     xfree(deleg_cred);
   }

   *minor_status = code;

   /*
    * If decode_req_message is set, then we need to decode the ap_req
    * message to determine whether or not to send a response token.
    * We need to do this because for some errors we won't be able to
    * decode the authenticator to read out the gss_flags field.
    */
   if (decode_req_message) {
	   krb5_ap_req 	* request;
	   
	   if (decode_krb5_ap_req(&ap_req, &request))
		   return (major_status);
	   if (request->ap_options & AP_OPTS_MUTUAL_REQUIRED)
		   gss_flags |= GSS_C_MUTUAL_FLAG;
	   krb5_free_ap_req(context, request);
   }

   if (cred && (gss_flags & GSS_C_MUTUAL_FLAG)) {
	   /*
	    * The client is expecting a response, so we can send an
	    * error token back
	    */
	   memset(&krb_error_data, 0, sizeof(krb_error_data));

	   code  -= ERROR_TABLE_BASE_krb5;
	   if (code < 0 || code > 128)
		   code = 60 /* KRB_ERR_GENERIC */;

	   krb_error_data.error = code;
	   (void) krb5_us_timeofday(context, &krb_error_data.stime,
				    &krb_error_data.susec);
	   krb_error_data.server = cred->princ;
	   
	   code = krb5_mk_error(context, &krb_error_data, &scratch);
	   if (code)
		   return (major_status);

	   token.length = g_token_size((gss_OID) mech_used, scratch.length);
	   token.value = (unsigned char *) xmalloc(token.length);
	   if (!token.value)
		   return (major_status);

	   ptr = token.value;
	   g_make_token_header((gss_OID) mech_used, scratch.length,
			       &ptr, KG_TOK_CTX_ERROR);

	   TWRITE_STR(ptr, scratch.data, scratch.length);
	   xfree(scratch.data);

	   *output_token = token;
   }
   if (!verifier_cred_handle && cred_handle) {
	   krb5_gss_release_cred(&code, cred_handle);
   }
   return (major_status);
}