heimdal: Fix 241482 Resource leak
[heimdal.git] / lib / gssapi / krb5 / init_sec_context.c
blob69e51f910d5c67e70f694e63347ec71a6b1e0df4
1 /*
2 * Copyright (c) 1997 - 2008 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
4 * All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
34 #include "gsskrb5_locl.h"
37 * copy the addresses from `input_chan_bindings' (if any) to
38 * the auth context `ac'
41 static OM_uint32
42 set_addresses (krb5_context context,
43 krb5_auth_context ac,
44 const gss_channel_bindings_t input_chan_bindings)
46 /* Port numbers are expected to be in application_data.value,
47 * initator's port first */
49 krb5_address initiator_addr, acceptor_addr;
50 krb5_error_code kret;
52 if (input_chan_bindings == GSS_C_NO_CHANNEL_BINDINGS
53 || input_chan_bindings->application_data.length !=
54 2 * sizeof(ac->local_port))
55 return 0;
57 memset(&initiator_addr, 0, sizeof(initiator_addr));
58 memset(&acceptor_addr, 0, sizeof(acceptor_addr));
60 ac->local_port =
61 *(int16_t *) input_chan_bindings->application_data.value;
63 ac->remote_port =
64 *((int16_t *) input_chan_bindings->application_data.value + 1);
66 kret = _gsskrb5i_address_to_krb5addr(context,
67 input_chan_bindings->acceptor_addrtype,
68 &input_chan_bindings->acceptor_address,
69 ac->remote_port,
70 &acceptor_addr);
71 if (kret)
72 return kret;
74 kret = _gsskrb5i_address_to_krb5addr(context,
75 input_chan_bindings->initiator_addrtype,
76 &input_chan_bindings->initiator_address,
77 ac->local_port,
78 &initiator_addr);
79 if (kret) {
80 krb5_free_address (context, &acceptor_addr);
81 return kret;
84 kret = krb5_auth_con_setaddrs(context,
85 ac,
86 &initiator_addr, /* local address */
87 &acceptor_addr); /* remote address */
89 krb5_free_address (context, &initiator_addr);
90 krb5_free_address (context, &acceptor_addr);
92 #if 0
93 free(input_chan_bindings->application_data.value);
94 input_chan_bindings->application_data.value = NULL;
95 input_chan_bindings->application_data.length = 0;
96 #endif
98 return kret;
101 OM_uint32
102 _gsskrb5_create_ctx(
103 OM_uint32 * minor_status,
104 gss_ctx_id_t * context_handle,
105 krb5_context context,
106 const gss_channel_bindings_t input_chan_bindings,
107 enum gss_ctx_id_t_state state)
109 krb5_error_code kret;
110 gsskrb5_ctx ctx;
112 *context_handle = NULL;
114 ctx = malloc(sizeof(*ctx));
115 if (ctx == NULL) {
116 *minor_status = ENOMEM;
117 return GSS_S_FAILURE;
119 ctx->auth_context = NULL;
120 ctx->deleg_auth_context = NULL;
121 ctx->source = NULL;
122 ctx->target = NULL;
123 ctx->kcred = NULL;
124 ctx->ccache = NULL;
125 ctx->state = state;
126 ctx->flags = 0;
127 ctx->more_flags = 0;
128 ctx->service_keyblock = NULL;
129 ctx->ticket = NULL;
130 krb5_data_zero(&ctx->fwd_data);
131 ctx->lifetime = GSS_C_INDEFINITE;
132 ctx->order = NULL;
133 ctx->crypto = NULL;
134 HEIMDAL_MUTEX_init(&ctx->ctx_id_mutex);
136 kret = krb5_auth_con_init (context, &ctx->auth_context);
137 if (kret) {
138 *minor_status = kret;
139 HEIMDAL_MUTEX_destroy(&ctx->ctx_id_mutex);
140 free(ctx);
141 return GSS_S_FAILURE;
144 kret = krb5_auth_con_init (context, &ctx->deleg_auth_context);
145 if (kret) {
146 *minor_status = kret;
147 krb5_auth_con_free(context, ctx->auth_context);
148 HEIMDAL_MUTEX_destroy(&ctx->ctx_id_mutex);
149 free(ctx);
150 return GSS_S_FAILURE;
153 kret = set_addresses(context, ctx->auth_context, input_chan_bindings);
154 if (kret) {
155 *minor_status = kret;
157 krb5_auth_con_free(context, ctx->auth_context);
158 krb5_auth_con_free(context, ctx->deleg_auth_context);
160 HEIMDAL_MUTEX_destroy(&ctx->ctx_id_mutex);
161 free(ctx);
162 return GSS_S_BAD_BINDINGS;
165 kret = set_addresses(context, ctx->deleg_auth_context, input_chan_bindings);
166 if (kret) {
167 *minor_status = kret;
169 krb5_auth_con_free(context, ctx->auth_context);
170 krb5_auth_con_free(context, ctx->deleg_auth_context);
172 HEIMDAL_MUTEX_destroy(&ctx->ctx_id_mutex);
173 free(ctx);
174 return GSS_S_BAD_BINDINGS;
178 * We need a sequence number
181 krb5_auth_con_addflags(context,
182 ctx->auth_context,
183 KRB5_AUTH_CONTEXT_DO_SEQUENCE |
184 KRB5_AUTH_CONTEXT_CLEAR_FORWARDED_CRED,
185 NULL);
188 * We need a sequence number
191 krb5_auth_con_addflags(context,
192 ctx->deleg_auth_context,
193 KRB5_AUTH_CONTEXT_DO_SEQUENCE |
194 KRB5_AUTH_CONTEXT_CLEAR_FORWARDED_CRED,
195 NULL);
197 *context_handle = (gss_ctx_id_t)ctx;
199 return GSS_S_COMPLETE;
203 static OM_uint32
204 gsskrb5_get_creds(
205 OM_uint32 * minor_status,
206 krb5_context context,
207 krb5_ccache ccache,
208 gsskrb5_ctx ctx,
209 gss_const_name_t target_name,
210 int use_dns,
211 OM_uint32 time_req,
212 OM_uint32 * time_rec)
214 OM_uint32 ret;
215 krb5_error_code kret;
216 krb5_creds this_cred;
217 OM_uint32 lifetime_rec;
219 if (ctx->target) {
220 krb5_free_principal(context, ctx->target);
221 ctx->target = NULL;
223 if (ctx->kcred) {
224 krb5_free_creds(context, ctx->kcred);
225 ctx->kcred = NULL;
228 ret = _gsskrb5_canon_name(minor_status, context, use_dns,
229 ctx->source, target_name, &ctx->target);
230 if (ret)
231 return ret;
233 memset(&this_cred, 0, sizeof(this_cred));
234 this_cred.client = ctx->source;
235 this_cred.server = ctx->target;
237 if (time_req && time_req != GSS_C_INDEFINITE) {
238 krb5_timestamp ts;
240 krb5_timeofday (context, &ts);
241 this_cred.times.endtime = ts + time_req;
242 } else {
243 this_cred.times.endtime = 0;
246 this_cred.session.keytype = KEYTYPE_NULL;
248 kret = krb5_get_credentials(context,
250 ccache,
251 &this_cred,
252 &ctx->kcred);
253 if (kret) {
254 *minor_status = kret;
255 return GSS_S_FAILURE;
258 ctx->lifetime = ctx->kcred->times.endtime;
260 ret = _gsskrb5_lifetime_left(minor_status, context,
261 ctx->lifetime, &lifetime_rec);
262 if (ret) return ret;
264 if (lifetime_rec == 0) {
265 *minor_status = 0;
266 return GSS_S_CONTEXT_EXPIRED;
269 if (time_rec) *time_rec = lifetime_rec;
271 return GSS_S_COMPLETE;
274 static OM_uint32
275 gsskrb5_initiator_ready(
276 OM_uint32 * minor_status,
277 gsskrb5_ctx ctx,
278 krb5_context context)
280 OM_uint32 ret;
281 int32_t seq_number;
282 int is_cfx = 0;
283 OM_uint32 flags = ctx->flags;
285 krb5_free_creds(context, ctx->kcred);
286 ctx->kcred = NULL;
288 if (ctx->more_flags & CLOSE_CCACHE)
289 krb5_cc_close(context, ctx->ccache);
290 ctx->ccache = NULL;
292 krb5_auth_con_getremoteseqnumber (context, ctx->auth_context, &seq_number);
294 _gsskrb5i_is_cfx(context, ctx, 0);
295 is_cfx = (ctx->more_flags & IS_CFX);
297 ret = _gssapi_msg_order_create(minor_status,
298 &ctx->order,
299 _gssapi_msg_order_f(flags),
300 seq_number, 0, is_cfx);
301 if (ret) return ret;
303 ctx->state = INITIATOR_READY;
304 ctx->more_flags |= OPEN;
306 return GSS_S_COMPLETE;
310 * handle delegated creds in init-sec-context
313 static void
314 do_delegation (krb5_context context,
315 krb5_auth_context ac,
316 krb5_ccache ccache,
317 krb5_creds *cred,
318 krb5_const_principal name,
319 krb5_data *fwd_data,
320 uint32_t flagmask,
321 uint32_t *flags)
323 krb5_creds creds;
324 KDCOptions fwd_flags;
325 krb5_error_code kret;
327 memset (&creds, 0, sizeof(creds));
328 krb5_data_zero (fwd_data);
330 kret = krb5_cc_get_principal(context, ccache, &creds.client);
331 if (kret)
332 goto out;
334 kret = krb5_make_principal(context,
335 &creds.server,
336 creds.client->realm,
337 KRB5_TGS_NAME,
338 creds.client->realm,
339 NULL);
340 if (kret)
341 goto out;
343 creds.times.endtime = 0;
345 memset(&fwd_flags, 0, sizeof(fwd_flags));
346 fwd_flags.forwarded = 1;
347 fwd_flags.forwardable = 1;
349 if ( /*target_name->name.name_type != KRB5_NT_SRV_HST ||*/
350 name->name.name_string.len < 2)
351 goto out;
353 kret = krb5_get_forwarded_creds(context,
355 ccache,
356 KDCOptions2int(fwd_flags),
357 name->name.name_string.val[1],
358 &creds,
359 fwd_data);
361 out:
362 if (kret)
363 *flags &= ~flagmask;
364 else
365 *flags |= flagmask;
367 if (creds.client)
368 krb5_free_principal(context, creds.client);
369 if (creds.server)
370 krb5_free_principal(context, creds.server);
374 * first stage of init-sec-context
377 static OM_uint32
378 init_auth
379 (OM_uint32 * minor_status,
380 gsskrb5_cred cred,
381 gsskrb5_ctx ctx,
382 krb5_context context,
383 gss_const_name_t name,
384 const gss_OID mech_type,
385 OM_uint32 req_flags,
386 OM_uint32 time_req,
387 const gss_buffer_t input_token,
388 gss_OID * actual_mech_type,
389 gss_buffer_t output_token,
390 OM_uint32 * ret_flags,
391 OM_uint32 * time_rec
394 OM_uint32 ret = GSS_S_FAILURE;
395 krb5_error_code kret;
396 krb5_data outbuf;
397 krb5_data fwd_data;
398 OM_uint32 lifetime_rec;
399 int allow_dns = 1;
401 krb5_data_zero(&outbuf);
402 krb5_data_zero(&fwd_data);
404 *minor_status = 0;
406 if (actual_mech_type)
407 *actual_mech_type = GSS_KRB5_MECHANISM;
409 if (cred == NULL) {
410 kret = krb5_cc_default (context, &ctx->ccache);
411 if (kret) {
412 *minor_status = kret;
413 ret = GSS_S_FAILURE;
414 goto failure;
416 ctx->more_flags |= CLOSE_CCACHE;
417 } else
418 ctx->ccache = cred->ccache;
420 kret = krb5_cc_get_principal (context, ctx->ccache, &ctx->source);
421 if (kret) {
422 *minor_status = kret;
423 ret = GSS_S_FAILURE;
424 goto failure;
428 * This is hideous glue for (NFS) clients that wants to limit the
429 * available enctypes to what it can support (encryption in
430 * kernel). If there is no enctypes selected for this credential,
431 * reset it to the default set of enctypes.
434 krb5_enctype *enctypes = NULL;
436 if (cred && cred->enctypes)
437 enctypes = cred->enctypes;
438 krb5_set_default_in_tkt_etypes(context, enctypes);
441 /* canon name if needed for client + target realm */
442 kret = krb5_cc_get_config(context, ctx->ccache, NULL,
443 "realm-config", &outbuf);
444 if (kret == 0) {
445 /* XXX 2 is no server canon */
446 if (outbuf.length < 1 || ((((unsigned char *)outbuf.data)[0]) & 2))
447 allow_dns = 0;
448 krb5_data_free(&outbuf);
452 * First we try w/o dns, hope that the KDC have register alias
453 * (and referrals if cross realm) for this principal. If that
454 * fails and if we are allowed to using this realm try again with
455 * DNS canonicalizion.
457 ret = gsskrb5_get_creds(minor_status, context, ctx->ccache,
458 ctx, name, 0, time_req,
459 time_rec);
460 if (ret && allow_dns)
461 ret = gsskrb5_get_creds(minor_status, context, ctx->ccache,
462 ctx, name, 1, time_req,
463 time_rec);
464 if (ret)
465 goto failure;
467 ctx->lifetime = ctx->kcred->times.endtime;
469 ret = _gss_DES3_get_mic_compat(minor_status, ctx, context);
470 if (ret)
471 goto failure;
473 ret = _gsskrb5_lifetime_left(minor_status,
474 context,
475 ctx->lifetime,
476 &lifetime_rec);
477 if (ret)
478 goto failure;
480 if (lifetime_rec == 0) {
481 *minor_status = 0;
482 ret = GSS_S_CONTEXT_EXPIRED;
483 goto failure;
486 krb5_auth_con_setkey(context,
487 ctx->auth_context,
488 &ctx->kcred->session);
490 kret = krb5_auth_con_generatelocalsubkey(context,
491 ctx->auth_context,
492 &ctx->kcred->session);
493 if(kret) {
494 *minor_status = kret;
495 ret = GSS_S_FAILURE;
496 goto failure;
499 return GSS_S_COMPLETE;
501 failure:
502 if (ctx->ccache && (ctx->more_flags & CLOSE_CCACHE))
503 krb5_cc_close(context, ctx->ccache);
504 ctx->ccache = NULL;
506 return ret;
510 static OM_uint32
511 init_auth_restart
512 (OM_uint32 * minor_status,
513 gsskrb5_cred cred,
514 gsskrb5_ctx ctx,
515 krb5_context context,
516 OM_uint32 req_flags,
517 const gss_channel_bindings_t input_chan_bindings,
518 const gss_buffer_t input_token,
519 gss_OID * actual_mech_type,
520 gss_buffer_t output_token,
521 OM_uint32 * ret_flags,
522 OM_uint32 * time_rec
525 OM_uint32 ret = GSS_S_FAILURE;
526 krb5_error_code kret;
527 krb5_flags ap_options;
528 krb5_data outbuf;
529 uint32_t flags;
530 krb5_data authenticator;
531 Checksum cksum;
532 krb5_enctype enctype;
533 krb5_data fwd_data, timedata;
534 int32_t offset = 0, oldoffset = 0;
535 uint32_t flagmask;
537 krb5_data_zero(&outbuf);
538 krb5_data_zero(&fwd_data);
540 *minor_status = 0;
543 * If the credential doesn't have ok-as-delegate, check if there
544 * is a realm setting and use that.
546 if (!ctx->kcred->flags.b.ok_as_delegate) {
547 krb5_data data;
549 ret = krb5_cc_get_config(context, ctx->ccache, NULL,
550 "realm-config", &data);
551 if (ret == 0) {
552 /* XXX 1 is use ok-as-delegate */
553 if (data.length < 1 || ((((unsigned char *)data.data)[0]) & 1) == 0)
554 req_flags &= ~(GSS_C_DELEG_FLAG|GSS_C_DELEG_POLICY_FLAG);
555 krb5_data_free(&data);
559 flagmask = 0;
561 /* if we used GSS_C_DELEG_POLICY_FLAG, trust KDC */
562 if ((req_flags & GSS_C_DELEG_POLICY_FLAG)
563 && ctx->kcred->flags.b.ok_as_delegate)
564 flagmask |= GSS_C_DELEG_FLAG | GSS_C_DELEG_POLICY_FLAG;
565 /* if there still is a GSS_C_DELEG_FLAG, use that */
566 if (req_flags & GSS_C_DELEG_FLAG)
567 flagmask |= GSS_C_DELEG_FLAG;
570 flags = 0;
571 ap_options = 0;
572 if (flagmask & GSS_C_DELEG_FLAG) {
573 do_delegation (context,
574 ctx->deleg_auth_context,
575 ctx->ccache, ctx->kcred, ctx->target,
576 &fwd_data, flagmask, &flags);
579 if (req_flags & GSS_C_MUTUAL_FLAG) {
580 flags |= GSS_C_MUTUAL_FLAG;
581 ap_options |= AP_OPTS_MUTUAL_REQUIRED;
584 if (req_flags & GSS_C_REPLAY_FLAG)
585 flags |= GSS_C_REPLAY_FLAG;
586 if (req_flags & GSS_C_SEQUENCE_FLAG)
587 flags |= GSS_C_SEQUENCE_FLAG;
588 #if 0
589 if (req_flags & GSS_C_ANON_FLAG)
590 ; /* XXX */
591 #endif
592 if (req_flags & GSS_C_DCE_STYLE) {
593 /* GSS_C_DCE_STYLE implies GSS_C_MUTUAL_FLAG */
594 flags |= GSS_C_DCE_STYLE | GSS_C_MUTUAL_FLAG;
595 ap_options |= AP_OPTS_MUTUAL_REQUIRED;
597 if (req_flags & GSS_C_IDENTIFY_FLAG)
598 flags |= GSS_C_IDENTIFY_FLAG;
599 if (req_flags & GSS_C_EXTENDED_ERROR_FLAG)
600 flags |= GSS_C_EXTENDED_ERROR_FLAG;
602 if (req_flags & GSS_C_CONF_FLAG) {
603 flags |= GSS_C_CONF_FLAG;
605 if (req_flags & GSS_C_INTEG_FLAG) {
606 flags |= GSS_C_INTEG_FLAG;
608 if (cred == NULL || !(cred->cred_flags & GSS_CF_NO_CI_FLAGS)) {
609 flags |= GSS_C_CONF_FLAG;
610 flags |= GSS_C_INTEG_FLAG;
612 flags |= GSS_C_TRANS_FLAG;
614 if (ret_flags)
615 *ret_flags = flags;
616 ctx->flags = flags;
617 ctx->more_flags |= LOCAL;
619 ret = _gsskrb5_create_8003_checksum (minor_status,
620 input_chan_bindings,
621 flags,
622 &fwd_data,
623 &cksum);
624 krb5_data_free (&fwd_data);
625 if (ret)
626 goto failure;
628 enctype = ctx->auth_context->keyblock->keytype;
630 ret = krb5_cc_get_config(context, ctx->ccache, ctx->target,
631 "time-offset", &timedata);
632 if (ret == 0) {
633 if (timedata.length == 4) {
634 const u_char *p = timedata.data;
635 offset = (p[0] <<24) | (p[1] << 16) | (p[2] << 8) | (p[3] << 0);
637 krb5_data_free(&timedata);
640 if (offset) {
641 krb5_get_kdc_sec_offset (context, &oldoffset, NULL);
642 krb5_set_kdc_sec_offset (context, offset, -1);
645 kret = _krb5_build_authenticator(context,
646 ctx->auth_context,
647 enctype,
648 ctx->kcred,
649 &cksum,
650 &authenticator,
651 KRB5_KU_AP_REQ_AUTH);
653 if (kret) {
654 if (offset)
655 krb5_set_kdc_sec_offset (context, oldoffset, -1);
656 *minor_status = kret;
657 ret = GSS_S_FAILURE;
658 goto failure;
661 kret = krb5_build_ap_req (context,
662 enctype,
663 ctx->kcred,
664 ap_options,
665 authenticator,
666 &outbuf);
667 if (offset)
668 krb5_set_kdc_sec_offset (context, oldoffset, -1);
669 if (kret) {
670 *minor_status = kret;
671 ret = GSS_S_FAILURE;
672 goto failure;
675 if (flags & GSS_C_DCE_STYLE) {
676 output_token->value = outbuf.data;
677 output_token->length = outbuf.length;
678 } else {
679 ret = _gsskrb5_encapsulate (minor_status, &outbuf, output_token,
680 (u_char *)(intptr_t)"\x01\x00",
681 GSS_KRB5_MECHANISM);
682 krb5_data_free (&outbuf);
683 if (ret)
684 goto failure;
687 free_Checksum(&cksum);
689 if (flags & GSS_C_MUTUAL_FLAG) {
690 ctx->state = INITIATOR_WAIT_FOR_MUTAL;
691 return GSS_S_CONTINUE_NEEDED;
694 return gsskrb5_initiator_ready(minor_status, ctx, context);
695 failure:
696 if (ctx->ccache && (ctx->more_flags & CLOSE_CCACHE))
697 krb5_cc_close(context, ctx->ccache);
698 ctx->ccache = NULL;
700 return ret;
703 static krb5_error_code
704 handle_error_packet(krb5_context context,
705 gsskrb5_ctx ctx,
706 krb5_data indata)
708 krb5_error_code kret;
709 KRB_ERROR error;
711 kret = krb5_rd_error(context, &indata, &error);
712 if (kret == 0) {
713 kret = krb5_error_from_rd_error(context, &error, NULL);
715 /* save the time skrew for this host */
716 if (kret == KRB5KRB_AP_ERR_SKEW) {
717 krb5_data timedata;
718 unsigned char p[4];
719 int32_t t = error.stime - time(NULL);
721 p[0] = (t >> 24) & 0xFF;
722 p[1] = (t >> 16) & 0xFF;
723 p[2] = (t >> 8) & 0xFF;
724 p[3] = (t >> 0) & 0xFF;
726 timedata.data = p;
727 timedata.length = sizeof(p);
729 krb5_cc_set_config(context, ctx->ccache, ctx->target,
730 "time-offset", &timedata);
732 if ((ctx->more_flags & RETRIED) == 0)
733 ctx->state = INITIATOR_RESTART;
734 ctx->more_flags |= RETRIED;
736 free_KRB_ERROR (&error);
738 return kret;
742 static OM_uint32
743 repl_mutual
744 (OM_uint32 * minor_status,
745 gsskrb5_ctx ctx,
746 krb5_context context,
747 const gss_OID mech_type,
748 OM_uint32 req_flags,
749 OM_uint32 time_req,
750 const gss_channel_bindings_t input_chan_bindings,
751 const gss_buffer_t input_token,
752 gss_OID * actual_mech_type,
753 gss_buffer_t output_token,
754 OM_uint32 * ret_flags,
755 OM_uint32 * time_rec
758 OM_uint32 ret;
759 krb5_error_code kret;
760 krb5_data indata;
761 krb5_ap_rep_enc_part *repl;
763 output_token->length = 0;
764 output_token->value = NULL;
766 if (actual_mech_type)
767 *actual_mech_type = GSS_KRB5_MECHANISM;
769 if (IS_DCE_STYLE(ctx)) {
770 /* There is no OID wrapping. */
771 indata.length = input_token->length;
772 indata.data = input_token->value;
773 kret = krb5_rd_rep(context,
774 ctx->auth_context,
775 &indata,
776 &repl);
777 if (kret) {
778 ret = _gsskrb5_decapsulate(minor_status,
779 input_token,
780 &indata,
781 "\x03\x00",
782 GSS_KRB5_MECHANISM);
783 if (ret == GSS_S_COMPLETE) {
784 *minor_status = handle_error_packet(context, ctx, indata);
785 } else {
786 *minor_status = kret;
788 return GSS_S_FAILURE;
790 } else {
791 ret = _gsskrb5_decapsulate (minor_status,
792 input_token,
793 &indata,
794 "\x02\x00",
795 GSS_KRB5_MECHANISM);
796 if (ret == GSS_S_DEFECTIVE_TOKEN) {
797 /* check if there is an error token sent instead */
798 ret = _gsskrb5_decapsulate (minor_status,
799 input_token,
800 &indata,
801 "\x03\x00",
802 GSS_KRB5_MECHANISM);
803 if (ret == GSS_S_COMPLETE) {
804 *minor_status = handle_error_packet(context, ctx, indata);
805 return GSS_S_FAILURE;
808 kret = krb5_rd_rep (context,
809 ctx->auth_context,
810 &indata,
811 &repl);
812 if (kret) {
813 *minor_status = kret;
814 return GSS_S_FAILURE;
818 krb5_free_ap_rep_enc_part (context,
819 repl);
821 *minor_status = 0;
822 if (time_rec) {
823 ret = _gsskrb5_lifetime_left(minor_status,
824 context,
825 ctx->lifetime,
826 time_rec);
827 } else {
828 ret = GSS_S_COMPLETE;
830 if (ret_flags)
831 *ret_flags = ctx->flags;
833 if (req_flags & GSS_C_DCE_STYLE) {
834 int32_t local_seq, remote_seq;
835 krb5_data outbuf;
838 * So DCE_STYLE is strange. The client echos the seq number
839 * that the server used in the server's mk_rep in its own
840 * mk_rep(). After when done, it resets to it's own seq number
841 * for the gss_wrap calls.
844 krb5_auth_con_getremoteseqnumber(context, ctx->auth_context, &remote_seq);
845 krb5_auth_con_getlocalseqnumber(context, ctx->auth_context, &local_seq);
846 krb5_auth_con_setlocalseqnumber(context, ctx->auth_context, remote_seq);
848 kret = krb5_mk_rep(context, ctx->auth_context, &outbuf);
849 if (kret) {
850 *minor_status = kret;
851 return GSS_S_FAILURE;
854 /* reset local seq number */
855 krb5_auth_con_setlocalseqnumber(context, ctx->auth_context, local_seq);
857 output_token->length = outbuf.length;
858 output_token->value = outbuf.data;
861 return gsskrb5_initiator_ready(minor_status, ctx, context);
865 * gss_init_sec_context
868 OM_uint32 GSSAPI_CALLCONV _gsskrb5_init_sec_context
869 (OM_uint32 * minor_status,
870 gss_const_cred_id_t cred_handle,
871 gss_ctx_id_t * context_handle,
872 gss_const_name_t target_name,
873 const gss_OID mech_type,
874 OM_uint32 req_flags,
875 OM_uint32 time_req,
876 const gss_channel_bindings_t input_chan_bindings,
877 const gss_buffer_t input_token,
878 gss_OID * actual_mech_type,
879 gss_buffer_t output_token,
880 OM_uint32 * ret_flags,
881 OM_uint32 * time_rec
884 krb5_context context;
885 gsskrb5_cred cred = (gsskrb5_cred)cred_handle;
886 gsskrb5_ctx ctx;
887 OM_uint32 ret;
889 GSSAPI_KRB5_INIT (&context);
891 output_token->length = 0;
892 output_token->value = NULL;
894 if (context_handle == NULL) {
895 *minor_status = 0;
896 return GSS_S_FAILURE | GSS_S_CALL_BAD_STRUCTURE;
899 if (ret_flags)
900 *ret_flags = 0;
901 if (time_rec)
902 *time_rec = 0;
904 if (target_name == GSS_C_NO_NAME) {
905 if (actual_mech_type)
906 *actual_mech_type = GSS_C_NO_OID;
907 *minor_status = 0;
908 return GSS_S_BAD_NAME;
911 if (mech_type != GSS_C_NO_OID &&
912 !gss_oid_equal(mech_type, GSS_KRB5_MECHANISM))
913 return GSS_S_BAD_MECH;
915 if (input_token == GSS_C_NO_BUFFER || input_token->length == 0) {
916 OM_uint32 ret1;
918 if (*context_handle != GSS_C_NO_CONTEXT) {
919 *minor_status = 0;
920 return GSS_S_FAILURE | GSS_S_CALL_BAD_STRUCTURE;
923 ret1 = _gsskrb5_create_ctx(minor_status,
924 context_handle,
925 context,
926 input_chan_bindings,
927 INITIATOR_START);
928 if (ret1)
929 return ret1;
932 if (*context_handle == GSS_C_NO_CONTEXT) {
933 *minor_status = 0;
934 return GSS_S_FAILURE | GSS_S_CALL_BAD_STRUCTURE;
937 ctx = (gsskrb5_ctx) *context_handle;
939 HEIMDAL_MUTEX_lock(&ctx->ctx_id_mutex);
941 again:
942 switch (ctx->state) {
943 case INITIATOR_START:
944 ret = init_auth(minor_status,
945 cred,
946 ctx,
947 context,
948 target_name,
949 mech_type,
950 req_flags,
951 time_req,
952 input_token,
953 actual_mech_type,
954 output_token,
955 ret_flags,
956 time_rec);
957 if (ret != GSS_S_COMPLETE)
958 break;
959 /* FALL THOUGH */
960 case INITIATOR_RESTART:
961 ret = init_auth_restart(minor_status,
962 cred,
963 ctx,
964 context,
965 req_flags,
966 input_chan_bindings,
967 input_token,
968 actual_mech_type,
969 output_token,
970 ret_flags,
971 time_rec);
972 break;
973 case INITIATOR_WAIT_FOR_MUTAL:
974 ret = repl_mutual(minor_status,
975 ctx,
976 context,
977 mech_type,
978 req_flags,
979 time_req,
980 input_chan_bindings,
981 input_token,
982 actual_mech_type,
983 output_token,
984 ret_flags,
985 time_rec);
986 if (ctx->state == INITIATOR_RESTART)
987 goto again;
988 break;
989 case INITIATOR_READY:
991 * If we get there, the caller have called
992 * gss_init_sec_context() one time too many.
994 _gsskrb5_set_status(EINVAL, "init_sec_context "
995 "called one time too many");
996 *minor_status = EINVAL;
997 ret = GSS_S_BAD_STATUS;
998 break;
999 default:
1000 _gsskrb5_set_status(EINVAL, "init_sec_context "
1001 "invalid state %d for client",
1002 (int)ctx->state);
1003 *minor_status = EINVAL;
1004 ret = GSS_S_BAD_STATUS;
1005 break;
1007 HEIMDAL_MUTEX_unlock(&ctx->ctx_id_mutex);
1009 /* destroy context in case of error */
1010 if (GSS_ERROR(ret)) {
1011 OM_uint32 min2;
1012 _gsskrb5_delete_sec_context(&min2, context_handle, GSS_C_NO_BUFFER);
1015 return ret;