Other Windows changes and debug comments
[moonshot.git] / moonshot / mech_eap / gssapiP_eap.h
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 #ifndef _GSSAPIP_EAP_H_
34 #define _GSSAPIP_EAP_H_ 1
35
36 #include "config.h"
37
38 #ifdef HAVE_HEIMDAL_VERSION
39 #define KRB5_DEPRECATED         /* so we can use krb5_free_unparsed_name() */
40 #endif
41
42 #include <assert.h>
43 #include <string.h>
44 #include <errno.h>
45 #if defined(HAVE_UNISTD_H)
46 #include <unistd.h>
47 #endif
48 #include <stdlib.h>
49 #include <stdarg.h>
50 #include <time.h>
51 #if defined(HAVE_SYS_PARAM_H)
52 #include <sys/param.h>
53 #endif
54
55 /* GSS headers */
56 #include <gssapi/gssapi.h>
57 #include <gssapi/gssapi_krb5.h>
58 #ifdef HAVE_HEIMDAL_VERSION
59 typedef struct gss_any *gss_any_t;
60 #else
61 #include <gssapi/gssapi_ext.h>
62 #endif
63 #include "gssapi_eap.h"
64
65 #ifndef HAVE_GSS_INQUIRE_ATTRS_FOR_MECH
66 typedef const gss_OID_desc *gss_const_OID;
67 #endif
68
69 /* Kerberos headers */
70 #include <krb5.h>
71
72 /* EAP headers */
73 #include <common.h>
74 #include <eap_peer/eap.h>
75 #include <eap_peer/eap_config.h>
76 #include <eap_peer/eap_methods.h>
77 #include <eap_common/eap_common.h>
78 #include <wpabuf.h>
79
80 #ifdef GSSEAP_ENABLE_ACCEPTOR
81 /* FreeRADIUS headers */
82 #ifdef __cplusplus
83 extern "C" {
84 #define operator fr_operator
85 #endif
86 #include <freeradius/libradius.h>
87 #include <freeradius/radius.h>
88
89 ////Because freeradius/autoconf.h is evil!
90 ////#undef uint16_t
91 ////#undef uint32_t
92 ////#undef uint8_t
93 #undef pid_t
94
95 #include <radsec/radsec.h>
96 #include <radsec/request.h>
97 #ifdef __cplusplus
98 #undef operator
99 }
100 #endif
101 #endif /*GSSEAP_ENABLE_ACCEPTOR*/
102
103 #include "gsseap_err.h"
104 #include "radsec_err.h"
105 #include "util.h"
106
107 #ifdef __cplusplus
108 extern "C" {
109 #endif
110
111 /* These name flags are informative and not actually used by anything yet */
112 #define NAME_FLAG_NAI                       0x00000001
113 #define NAME_FLAG_SERVICE                   0x00000002
114 #define NAME_FLAG_COMPOSITE                 0x00000004
115
116 struct gss_eap_saml_attr_ctx;
117 struct gss_eap_attr_ctx;
118
119 #ifdef HAVE_HEIMDAL_VERSION
120 struct gss_name_t_desc_struct
121 #else
122 struct gss_name_struct
123 #endif
124 {
125     GSSEAP_MUTEX mutex; /* mutex protects attrCtx */
126     OM_uint32 flags;
127     gss_OID mechanismUsed; /* this is immutable */
128     krb5_principal krbPrincipal; /* this is immutable */
129     struct gss_eap_attr_ctx *attrCtx;
130 };
131
132 #define CRED_FLAG_INITIATE                  0x00010000
133 #define CRED_FLAG_ACCEPT                    0x00020000
134 #define CRED_FLAG_DEFAULT_IDENTITY          0x00040000
135 #define CRED_FLAG_PASSWORD                  0x00080000
136 #define CRED_FLAG_DEFAULT_CCACHE            0x00100000
137 #define CRED_FLAG_PUBLIC_MASK               0x0000FFFF
138
139 #ifdef HAVE_HEIMDAL_VERSION
140 struct gss_cred_id_t_desc_struct
141 #else
142 struct gss_cred_id_struct
143 #endif
144 {
145     GSSEAP_MUTEX mutex;
146     OM_uint32 flags;
147     gss_name_t name;
148     gss_buffer_desc password;
149     gss_OID_set mechanisms;
150     time_t expiryTime;
151     char *radiusConfigFile;
152     char *radiusConfigStanza;
153 #ifdef GSSEAP_ENABLE_REAUTH
154     krb5_ccache krbCredCache;
155     gss_cred_id_t reauthCred;
156 #endif
157 };
158
159 #define CTX_FLAG_INITIATOR                  0x00000001
160 #define CTX_FLAG_KRB_REAUTH                 0x00000002
161
162 #define CTX_IS_INITIATOR(ctx)               (((ctx)->flags & CTX_FLAG_INITIATOR) != 0)
163
164 #define CTX_IS_ESTABLISHED(ctx)             ((ctx)->state == GSSEAP_STATE_ESTABLISHED)
165
166 /* Initiator context flags */
167 #define CTX_FLAG_EAP_SUCCESS                0x00010000
168 #define CTX_FLAG_EAP_RESTART                0x00020000
169 #define CTX_FLAG_EAP_FAIL                   0x00040000
170 #define CTX_FLAG_EAP_RESP                   0x00080000
171 #define CTX_FLAG_EAP_NO_RESP                0x00100000
172 #define CTX_FLAG_EAP_REQ                    0x00200000
173 #define CTX_FLAG_EAP_PORT_ENABLED           0x00400000
174 #define CTX_FLAG_EAP_ALT_ACCEPT             0x00800000
175 #define CTX_FLAG_EAP_ALT_REJECT             0x01000000
176 #define CTX_FLAG_EAP_MASK                   0xFFFF0000
177
178 struct gss_eap_initiator_ctx {
179     unsigned int idleWhile;
180     struct eap_peer_config eapPeerConfig;
181     struct eap_sm *eap;
182     struct wpabuf reqData;
183 };
184
185 #ifdef GSSEAP_ENABLE_ACCEPTOR
186 struct gss_eap_acceptor_ctx {
187     struct rs_context *radContext;
188     struct rs_connection *radConn;
189     char *radServer;
190     gss_buffer_desc state;
191     VALUE_PAIR *vps;
192 };
193 #endif
194
195 #ifdef HAVE_HEIMDAL_VERSION
196 struct gss_ctx_id_t_desc_struct
197 #else
198 struct gss_ctx_id_struct
199 #endif
200 {
201     GSSEAP_MUTEX mutex;
202     enum gss_eap_state state;
203     OM_uint32 flags;
204     OM_uint32 gssFlags;
205     gss_OID mechanismUsed;
206     krb5_cksumtype checksumType;
207     krb5_enctype encryptionType;
208     krb5_keyblock rfc3961Key;
209     gss_name_t initiatorName;
210     gss_name_t acceptorName;
211     time_t expiryTime;
212     uint64_t sendSeq, recvSeq;
213     void *seqState;
214     gss_cred_id_t defaultCred;
215     union {
216         struct gss_eap_initiator_ctx initiator;
217         #define initiatorCtx         ctxU.initiator
218 #ifdef GSSEAP_ENABLE_ACCEPTOR
219         struct gss_eap_acceptor_ctx  acceptor;
220         #define acceptorCtx          ctxU.acceptor
221 #endif
222 #ifdef GSSEAP_ENABLE_REAUTH
223         gss_ctx_id_t                 reauth;
224         #define reauthCtx            ctxU.reauth
225 #endif
226     } ctxU;
227 };
228
229 #define TOK_FLAG_SENDER_IS_ACCEPTOR         0x01
230 #define TOK_FLAG_WRAP_CONFIDENTIAL          0x02
231 #define TOK_FLAG_ACCEPTOR_SUBKEY            0x04
232
233 #define KEY_USAGE_ACCEPTOR_SEAL             22
234 #define KEY_USAGE_ACCEPTOR_SIGN             23
235 #define KEY_USAGE_INITIATOR_SEAL            24
236 #define KEY_USAGE_INITIATOR_SIGN            25
237
238 /* wrap_iov.c */
239 OM_uint32
240 gssEapWrapOrGetMIC(OM_uint32 *minor,
241                    gss_ctx_id_t ctx,
242                    int conf_req_flag,
243                    int *conf_state,
244                    gss_iov_buffer_desc *iov,
245                    int iov_count,
246                    enum gss_eap_token_type toktype);
247
248 OM_uint32
249 gssEapUnwrapOrVerifyMIC(OM_uint32 *minor_status,
250                         gss_ctx_id_t ctx,
251                         int *conf_state,
252                         gss_qop_t *qop_state,
253                         gss_iov_buffer_desc *iov,
254                         int iov_count,
255                         enum gss_eap_token_type toktype);
256
257 OM_uint32
258 gssEapWrapIovLength(OM_uint32 *minor,
259                     gss_ctx_id_t ctx,
260                     int conf_req_flag,
261                     gss_qop_t qop_req,
262                     int *conf_state,
263                     gss_iov_buffer_desc *iov,
264                     int iov_count);
265 OM_uint32
266 gssEapWrap(OM_uint32 *minor,
267            gss_ctx_id_t ctx,
268            int conf_req_flag,
269            gss_qop_t qop_req,
270            gss_buffer_t input_message_buffer,
271            int *conf_state,
272            gss_buffer_t output_message_buffer);
273
274 unsigned char
275 rfc4121Flags(gss_ctx_id_t ctx, int receiving);
276
277 /* display_status.c */
278 void
279 gssEapSaveStatusInfo(OM_uint32 minor, const char *format, ...);
280
281 #define IS_WIRE_ERROR(err)              ((err) > GSSEAP_RESERVED && \
282                                          (err) <= GSSEAP_RADIUS_PROT_FAILURE)
283
284 /* export_sec_context.c */
285 OM_uint32
286 gssEapExportSecContext(OM_uint32 *minor,
287                        gss_ctx_id_t ctx,
288                        gss_buffer_t token);
289
290
291 #ifdef __cplusplus
292 }
293 #endif
294
295 #endif /* _GSSAPIP_EAP_H_ */