Implement channel bindings
[mech_eap.git] / 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_AUTHENTICATE;
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 eap_gss_initiator_ctx *ctx)
78 {
79     eap_peer_sm_deinit(ctx->eap);
80 }
81
82 static void
83 releaseAcceptorContext(struct eap_gss_acceptor_ctx *ctx)
84 {
85     eap_server_sm_deinit(ctx->eap);
86     tls_deinit(ctx->tlsContext);
87 }
88
89 OM_uint32
90 gssEapReleaseContext(OM_uint32 *minor,
91                      gss_ctx_id_t *pCtx)
92 {
93     OM_uint32 tmpMinor;
94     gss_ctx_id_t ctx = *pCtx;
95     krb5_context krbContext = NULL;
96
97     if (ctx == GSS_C_NO_CONTEXT) {
98         return GSS_S_COMPLETE;
99     }
100
101     gssEapKerberosInit(&tmpMinor, &krbContext);
102
103     if (CTX_IS_INITIATOR(ctx)) {
104         releaseInitiatorContext(&ctx->initiatorCtx);
105     } else {
106         releaseAcceptorContext(&ctx->acceptorCtx);
107     }
108
109     krb5_free_keyblock_contents(krbContext, &ctx->rfc3961Key);
110     gssEapReleaseName(&tmpMinor, &ctx->initiatorName);
111     gssEapReleaseName(&tmpMinor, &ctx->acceptorName);
112     gss_release_oid(&tmpMinor, &ctx->mechanismUsed);
113     sequenceFree(&ctx->seqState);
114
115     GSSEAP_MUTEX_DESTROY(&ctx->mutex);
116
117     memset(ctx, 0, sizeof(*ctx));
118     GSSEAP_FREE(ctx);
119     *pCtx = GSS_C_NO_CONTEXT;
120
121     *minor = 0;
122     return GSS_S_COMPLETE;
123 }
124
125 OM_uint32
126 gssEapMakeToken(OM_uint32 *minor,
127                 gss_ctx_id_t ctx,
128                 const gss_buffer_t innerToken,
129                 enum gss_eap_token_type tokenType,
130                 gss_buffer_t outputToken)
131 {
132     unsigned char *p;
133
134     outputToken->length = tokenSize(ctx->mechanismUsed, innerToken->length);
135     outputToken->value = GSSEAP_MALLOC(outputToken->length);
136     if (outputToken->value == NULL) {
137         *minor = ENOMEM;
138         return GSS_S_FAILURE;
139     }
140
141     p = (unsigned char *)outputToken->value;
142     makeTokenHeader(ctx->mechanismUsed, innerToken->length, &p, tokenType);
143     memcpy(p, innerToken->value, innerToken->length);
144
145     *minor = 0;
146     return GSS_S_COMPLETE;
147 }
148
149 OM_uint32
150 gssEapVerifyToken(OM_uint32 *minor,
151                   gss_ctx_id_t ctx,
152                   const gss_buffer_t inputToken,
153                   enum gss_eap_token_type tokenType,
154                   gss_buffer_t innerInputToken)
155 {
156     OM_uint32 major;
157     size_t bodySize;
158     unsigned char *p = (unsigned char *)inputToken->value;
159     gss_OID_desc oidBuf;
160     gss_OID oid;
161
162     if (ctx->mechanismUsed != GSS_C_NO_OID) {
163         oid = ctx->mechanismUsed;
164     } else {
165         oidBuf.elements = NULL;
166         oidBuf.length = 0;
167         oid = &oidBuf;
168     }
169
170     major = verifyTokenHeader(minor, oid, &bodySize, &p,
171                               inputToken->length, tokenType);
172     if (GSS_ERROR(major))
173         return GSS_S_DEFECTIVE_TOKEN;
174
175     if (ctx->mechanismUsed == GSS_C_NO_OID) {
176         if (!gssEapIsConcreteMechanismOid(oid))
177             return GSS_S_BAD_MECH;
178
179         if (!gssEapInternalizeOid(oid, &ctx->mechanismUsed)) {
180             major = duplicateOid(minor, oid, &ctx->mechanismUsed);
181             if (GSS_ERROR(major))
182                 return major;
183         }
184     }
185
186     innerInputToken->length = bodySize;
187     innerInputToken->value = p;
188
189     *minor = 0;
190     return GSS_S_COMPLETE;
191 }