preliminary work on fast reauth
[mech_eap.orig] / util_context.c
1 /*
2  * Copyright (c) 2010, 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 "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  */
32
33 #include "gssapiP_eap.h"
34
35 OM_uint32
36 gssEapAllocContext(OM_uint32 *minor,
37                    gss_ctx_id_t *pCtx)
38 {
39     OM_uint32 tmpMinor;
40     gss_ctx_id_t ctx;
41
42     assert(*pCtx == GSS_C_NO_CONTEXT);
43
44     ctx = (gss_ctx_id_t)GSSEAP_CALLOC(1, sizeof(*ctx));
45     if (ctx == NULL) {
46         *minor = ENOMEM;
47         return GSS_S_FAILURE;
48     }
49
50     if (GSSEAP_MUTEX_INIT(&ctx->mutex) != 0) {
51         *minor = errno;
52         gssEapReleaseContext(&tmpMinor, &ctx);
53         return GSS_S_FAILURE;
54     }
55
56     ctx->state = EAP_STATE_IDENTITY;
57
58     /*
59      * Integrity, confidentiality, sequencing and replay detection are
60      * always available.  Regardless of what flags are requested in
61      * GSS_Init_sec_context, implementations MUST set the flag corresponding
62      * to these services in the output of GSS_Init_sec_context and
63      * GSS_Accept_sec_context.
64     */
65     ctx->gssFlags = GSS_C_TRANS_FLAG    |   /* exporting contexts */
66                     GSS_C_INTEG_FLAG    |   /* integrity */
67                     GSS_C_CONF_FLAG     |   /* confidentiality */
68                     GSS_C_SEQUENCE_FLAG |   /* sequencing */
69                     GSS_C_REPLAY_FLAG;      /* replay detection */
70
71     *pCtx = ctx;
72
73     return GSS_S_COMPLETE;
74 }
75
76 static void
77 releaseInitiatorContext(struct gss_eap_initiator_ctx *ctx)
78 {
79     eap_peer_sm_deinit(ctx->eap);
80 }
81
82 static void
83 releaseAcceptorContext(struct gss_eap_acceptor_ctx *ctx)
84 {
85     OM_uint32 tmpMinor;
86
87     if (ctx->avps != NULL)
88         rc_avpair_free(ctx->avps);
89     if (ctx->radHandle != NULL)
90         rc_config_free(ctx->radHandle);
91
92     gss_release_buffer(&tmpMinor, &ctx->state);
93 }
94
95 OM_uint32
96 gssEapReleaseContext(OM_uint32 *minor,
97                      gss_ctx_id_t *pCtx)
98 {
99     OM_uint32 tmpMinor;
100     gss_ctx_id_t ctx = *pCtx;
101     krb5_context krbContext = NULL;
102
103     if (ctx == GSS_C_NO_CONTEXT) {
104         return GSS_S_COMPLETE;
105     }
106
107     gssEapKerberosInit(&tmpMinor, &krbContext);
108
109     if (ctx->flags & CTX_FLAG_KRB_REAUTH_GSS) {
110         gssDeleteSecContext(&tmpMinor, &ctx->kerberosCtx, GSS_C_NO_BUFFER);
111     } else if (CTX_IS_INITIATOR(ctx)) {
112         releaseInitiatorContext(&ctx->initiatorCtx);
113     } else {
114         releaseAcceptorContext(&ctx->acceptorCtx);
115     }
116
117     krb5_free_keyblock_contents(krbContext, &ctx->rfc3961Key);
118     gssEapReleaseName(&tmpMinor, &ctx->initiatorName);
119     gssEapReleaseName(&tmpMinor, &ctx->acceptorName);
120     gss_release_oid(&tmpMinor, &ctx->mechanismUsed);
121     sequenceFree(&tmpMinor, &ctx->seqState);
122
123     GSSEAP_MUTEX_DESTROY(&ctx->mutex);
124
125     memset(ctx, 0, sizeof(*ctx));
126     GSSEAP_FREE(ctx);
127     *pCtx = GSS_C_NO_CONTEXT;
128
129     *minor = 0;
130     return GSS_S_COMPLETE;
131 }
132
133 OM_uint32
134 gssEapMakeToken(OM_uint32 *minor,
135                 gss_ctx_id_t ctx,
136                 const gss_buffer_t innerToken,
137                 enum gss_eap_token_type tokenType,
138                 gss_buffer_t outputToken)
139 {
140     unsigned char *p;
141
142     outputToken->length = tokenSize(ctx->mechanismUsed, innerToken->length);
143     outputToken->value = GSSEAP_MALLOC(outputToken->length);
144     if (outputToken->value == NULL) {
145         *minor = ENOMEM;
146         return GSS_S_FAILURE;
147     }
148
149     p = (unsigned char *)outputToken->value;
150     makeTokenHeader(ctx->mechanismUsed, innerToken->length, &p, tokenType);
151     memcpy(p, innerToken->value, innerToken->length);
152
153     *minor = 0;
154     return GSS_S_COMPLETE;
155 }
156
157 OM_uint32
158 gssEapVerifyToken(OM_uint32 *minor,
159                   gss_ctx_id_t ctx,
160                   const gss_buffer_t inputToken,
161                   enum gss_eap_token_type tokenType,
162                   enum gss_eap_token_type *actualToken,
163                   gss_buffer_t innerInputToken)
164 {
165     OM_uint32 major;
166     size_t bodySize;
167     unsigned char *p = (unsigned char *)inputToken->value;
168     gss_OID_desc oidBuf;
169     gss_OID oid;
170
171     if (ctx->mechanismUsed != GSS_C_NO_OID) {
172         oid = ctx->mechanismUsed;
173     } else {
174         oidBuf.elements = NULL;
175         oidBuf.length = 0;
176         oid = &oidBuf;
177     }
178
179     major = verifyTokenHeader(minor, oid, &bodySize, &p,
180                               inputToken->length, tokenType,
181                               actualToken);
182     if (GSS_ERROR(major))
183         return GSS_S_DEFECTIVE_TOKEN;
184
185     if (ctx->mechanismUsed == GSS_C_NO_OID) {
186         if (!gssEapIsConcreteMechanismOid(oid))
187             return GSS_S_BAD_MECH;
188
189         if (!gssEapInternalizeOid(oid, &ctx->mechanismUsed)) {
190             major = duplicateOid(minor, oid, &ctx->mechanismUsed);
191             if (GSS_ERROR(major))
192                 return major;
193         }
194     }
195
196     innerInputToken->length = bodySize;
197     innerInputToken->value = p;
198
199     *minor = 0;
200     return GSS_S_COMPLETE;
201 }
202
203 OM_uint32
204 gssEapContextTime(OM_uint32 *minor,
205                   gss_ctx_id_t context_handle,
206                   OM_uint32 *time_rec)
207 {
208     if (context_handle == GSS_C_NO_CONTEXT) {
209         return GSS_S_NO_CONTEXT;
210     }
211
212     if (!CTX_IS_ESTABLISHED(context_handle)) {
213         return GSS_S_NO_CONTEXT;
214     }
215
216     *minor = 0;
217
218     if (context_handle->expiryTime == 0) {
219         *time_rec = GSS_C_INDEFINITE;
220     } else {
221         time_t now, lifetime;
222
223         time(&now);
224         lifetime = context_handle->expiryTime - now;
225         if (lifetime <= 0) {
226             *time_rec = 0;
227             return GSS_S_CONTEXT_EXPIRED;
228         }
229         *time_rec = lifetime;
230     }
231
232     return GSS_S_COMPLETE;
233 }