Fixes for Heimdal (macOS) builds from Stefan.
[mech_eap.git] / mech_eap / get_mic.c
1 /*
2  * Copyright (c) 2011, 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 /*
34  * Message protection services: make a message integerity check.
35  */
36
37 #include "gssapiP_eap.h"
38
39 static OM_uint32
40 gssEapGetMIC(OM_uint32 *minor,
41              gss_ctx_id_t ctx,
42              gss_qop_t qop_req,
43              gss_iov_buffer_desc *iov,
44              int iov_count)
45 {
46     OM_uint32 major;
47
48     if (ctx == GSS_C_NO_CONTEXT) {
49         *minor = EINVAL;
50         return GSS_S_CALL_INACCESSIBLE_READ | GSS_S_NO_CONTEXT;
51     }
52
53     if (qop_req != GSS_C_QOP_DEFAULT) {
54         *minor = GSSEAP_UNKNOWN_QOP;
55         return GSS_S_UNAVAILABLE;
56     }
57
58     *minor = 0;
59
60     GSSEAP_MUTEX_LOCK(&ctx->mutex);
61
62     if (!CTX_IS_ESTABLISHED(ctx)) {
63         major = GSS_S_NO_CONTEXT;
64         *minor = GSSEAP_CONTEXT_INCOMPLETE;
65         goto cleanup;
66     }
67
68     major = gssEapWrapOrGetMIC(minor, ctx, FALSE, NULL,
69                                iov, iov_count, TOK_TYPE_MIC);
70     if (GSS_ERROR(major))
71         goto cleanup;
72
73 cleanup:
74     GSSEAP_MUTEX_UNLOCK(&ctx->mutex);
75
76     return major;
77 }
78
79 OM_uint32 GSSAPI_CALLCONV
80 gss_get_mic(OM_uint32 *minor,
81 #ifdef HAVE_HEIMDAL_VERSION
82             gss_const_ctx_id_t ctx,
83 #else
84             gss_ctx_id_t ctx,
85 #endif
86             gss_qop_t qop_req,
87 #ifdef HAVE_HEIMDAL_VERSION
88             const gss_buffer_t message_buffer,
89 #else
90             gss_buffer_t message_buffer,
91 #endif
92             gss_buffer_t message_token)
93 {
94     OM_uint32 major;
95     gss_iov_buffer_desc iov[2];
96
97     iov[0].type = GSS_IOV_BUFFER_TYPE_DATA;
98     iov[0].buffer = *message_buffer;
99
100     iov[1].type = GSS_IOV_BUFFER_TYPE_MIC_TOKEN | GSS_IOV_BUFFER_FLAG_ALLOCATE;
101     iov[1].buffer.value = NULL;
102     iov[1].buffer.length = 0;
103
104     major = gssEapGetMIC(minor, (gss_ctx_id_t)ctx, qop_req, iov, 2);
105     if (major == GSS_S_COMPLETE)
106         *message_token = iov[1].buffer;
107
108     return major;
109 }
110
111 OM_uint32 GSSAPI_CALLCONV
112 gss_get_mic_iov(OM_uint32 *minor,
113                 gss_ctx_id_t ctx,
114                 gss_qop_t qop_req,
115                 gss_iov_buffer_desc *iov,
116                 int iov_count)
117 {
118     return gssEapGetMIC(minor, ctx, qop_req, iov, iov_count);
119 }