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