Merge branch 'master' into radius-new-client-pkcs12
[mech_eap.git] / 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 #ifdef HAVE_UNISTD_H
46 #include <unistd.h>
47 #endif
48 #ifdef HAVE_STDLIB_H
49 #include <stdlib.h>
50 #endif
51 #ifdef HAVE_STDARG_H
52 #include <stdarg.h>
53 #endif
54 #include <time.h>
55 #ifdef HAVE_SYS_PARAM_H
56 #include <sys/param.h>
57 #endif
58
59 #ifdef WIN32
60 #ifndef MAXHOSTNAMELEN
61 # include <WinSock2.h>
62 # define MAXHOSTNAMELEN NI_MAXHOST
63 #endif
64 #endif
65
66 /* GSS headers */
67 #include <gssapi/gssapi.h>
68 #include <gssapi/gssapi_krb5.h>
69 #ifdef HAVE_HEIMDAL_VERSION
70 typedef struct gss_any *gss_any_t;
71 #else
72 #include <gssapi/gssapi_ext.h>
73 #endif
74 #include "gssapi_eap.h"
75
76 #ifndef HAVE_GSS_INQUIRE_ATTRS_FOR_MECH
77 typedef const gss_OID_desc *gss_const_OID;
78 #endif
79
80 /* Kerberos headers */
81 #include <krb5.h>
82
83 /* EAP headers */
84 #include <includes.h>
85 #include <common.h>
86 #include <eap_peer/eap.h>
87 #include <eap_peer/eap_config.h>
88 #include <eap_peer/eap_methods.h>
89 #include <eap_common/eap_common.h>
90 #include <wpabuf.h>
91
92 #ifdef GSSEAP_ENABLE_ACCEPTOR
93 /* libradsec headers */
94 #include <radsec/radsec.h>
95 #include <radsec/request.h>
96 #include <radsec/radius.h>
97 #endif
98
99 #include "gsseap_err.h"
100 #include "radsec_err.h"
101 #include "util.h"
102
103 #ifdef __cplusplus
104 extern "C" {
105 #endif
106
107 /* These name flags are informative and not actually used by anything yet */
108 #define NAME_FLAG_NAI                       0x00000001
109 #define NAME_FLAG_SERVICE                   0x00000002
110 #define NAME_FLAG_COMPOSITE                 0x00000004
111
112 struct gss_eap_saml_attr_ctx;
113 struct gss_eap_attr_ctx;
114
115 #ifdef HAVE_HEIMDAL_VERSION
116 struct gss_name_t_desc_struct
117 #else
118 struct gss_name_struct
119 #endif
120 {
121     GSSEAP_MUTEX mutex; /* mutex protects attrCtx */
122     OM_uint32 flags;
123     gss_OID mechanismUsed; /* this is immutable */
124     krb5_principal krbPrincipal; /* this is immutable */
125 #ifdef GSSEAP_ENABLE_ACCEPTOR
126     struct gss_eap_attr_ctx *attrCtx;
127 #endif
128 };
129
130 #define CRED_FLAG_INITIATE                  0x00010000
131 #define CRED_FLAG_ACCEPT                    0x00020000
132 #define CRED_FLAG_PASSWORD                  0x00040000
133 #define CRED_FLAG_DEFAULT_CCACHE            0x00080000
134 #define CRED_FLAG_RESOLVED                  0x00100000
135 #define CRED_FLAG_TARGET                    0x00200000
136 #define CRED_FLAG_PUBLIC_MASK               0x0000FFFF
137
138 #ifdef HAVE_HEIMDAL_VERSION
139 struct gss_cred_id_t_desc_struct
140 #else
141 struct gss_cred_id_struct
142 #endif
143 {
144     GSSEAP_MUTEX mutex;
145     OM_uint32 flags;
146     gss_name_t name;
147     gss_name_t target; /* for initiator */
148     gss_buffer_desc password;
149     gss_OID_set mechanisms;
150     time_t expiryTime;
151     gss_buffer_desc radiusConfigFile;
152     gss_buffer_desc radiusConfigStanza;
153     gss_buffer_desc caCertificate;
154     gss_buffer_desc subjectNameConstraint;
155     gss_buffer_desc subjectAltNameConstraint;
156 #ifdef GSSEAP_ENABLE_REAUTH
157     krb5_ccache krbCredCache;
158     gss_cred_id_t reauthCred;
159 #endif
160 };
161
162 #define CTX_FLAG_INITIATOR                  0x00000001
163 #define CTX_FLAG_KRB_REAUTH                 0x00000002
164
165 #define CTX_IS_INITIATOR(ctx)               (((ctx)->flags & CTX_FLAG_INITIATOR) != 0)
166
167 #define CTX_IS_ESTABLISHED(ctx)             ((ctx)->state == GSSEAP_STATE_ESTABLISHED)
168
169 /* Initiator context flags */
170 #define CTX_FLAG_EAP_SUCCESS                0x00010000
171 #define CTX_FLAG_EAP_RESTART                0x00020000
172 #define CTX_FLAG_EAP_FAIL                   0x00040000
173 #define CTX_FLAG_EAP_RESP                   0x00080000
174 #define CTX_FLAG_EAP_NO_RESP                0x00100000
175 #define CTX_FLAG_EAP_REQ                    0x00200000
176 #define CTX_FLAG_EAP_PORT_ENABLED           0x00400000
177 #define CTX_FLAG_EAP_ALT_ACCEPT             0x00800000
178 #define CTX_FLAG_EAP_ALT_REJECT             0x01000000
179 #define CTX_FLAG_EAP_MASK                   0xFFFF0000
180
181 struct gss_eap_initiator_ctx {
182     unsigned int idleWhile;
183     struct eap_peer_config eapPeerConfig;
184     struct eap_sm *eap;
185     struct wpabuf reqData;
186 };
187
188 #ifdef GSSEAP_ENABLE_ACCEPTOR
189 struct gss_eap_acceptor_ctx {
190     struct rs_context *radContext;
191     struct rs_connection *radConn;
192     char *radServer;
193     gss_buffer_desc state;
194     rs_avp *vps;
195 };
196 #endif
197
198 #ifdef HAVE_HEIMDAL_VERSION
199 struct gss_ctx_id_t_desc_struct
200 #else
201 struct gss_ctx_id_struct
202 #endif
203 {
204     GSSEAP_MUTEX mutex;
205     enum gss_eap_state state;
206     OM_uint32 flags;
207     OM_uint32 gssFlags;
208     gss_OID mechanismUsed;
209     krb5_cksumtype checksumType;
210     krb5_enctype encryptionType;
211     krb5_keyblock rfc3961Key;
212     gss_name_t initiatorName;
213     gss_name_t acceptorName;
214     time_t expiryTime;
215     uint64_t sendSeq, recvSeq;
216     void *seqState;
217     gss_cred_id_t cred;
218     union {
219         struct gss_eap_initiator_ctx initiator;
220         #define initiatorCtx         ctxU.initiator
221 #ifdef GSSEAP_ENABLE_ACCEPTOR
222         struct gss_eap_acceptor_ctx  acceptor;
223         #define acceptorCtx          ctxU.acceptor
224 #endif
225 #ifdef GSSEAP_ENABLE_REAUTH
226         gss_ctx_id_t                 reauth;
227         #define reauthCtx            ctxU.reauth
228 #endif
229     } ctxU;
230     const struct gss_eap_token_buffer_set *inputTokens;
231     const struct gss_eap_token_buffer_set *outputTokens;
232 };
233
234 #define TOK_FLAG_SENDER_IS_ACCEPTOR         0x01
235 #define TOK_FLAG_WRAP_CONFIDENTIAL          0x02
236 #define TOK_FLAG_ACCEPTOR_SUBKEY            0x04
237
238 #define KEY_USAGE_ACCEPTOR_SEAL             22
239 #define KEY_USAGE_ACCEPTOR_SIGN             23
240 #define KEY_USAGE_INITIATOR_SEAL            24
241 #define KEY_USAGE_INITIATOR_SIGN            25
242
243 /* accept_sec_context.c */
244 OM_uint32
245 gssEapAcceptSecContext(OM_uint32 *minor,
246                        gss_ctx_id_t ctx,
247                        gss_cred_id_t cred,
248                        gss_buffer_t input_token,
249                        gss_channel_bindings_t input_chan_bindings,
250                        gss_name_t *src_name,
251                        gss_OID *mech_type,
252                        gss_buffer_t output_token,
253                        OM_uint32 *ret_flags,
254                        OM_uint32 *time_rec,
255                        gss_cred_id_t *delegated_cred_handle);
256
257 /* init_sec_context.c */
258 OM_uint32
259 gssEapInitSecContext(OM_uint32 *minor,
260                      gss_cred_id_t cred,
261                      gss_ctx_id_t ctx,
262                      gss_name_t target_name,
263                      gss_OID mech_type,
264                      OM_uint32 req_flags,
265                      OM_uint32 time_req,
266                      gss_channel_bindings_t input_chan_bindings,
267                      gss_buffer_t input_token,
268                      gss_OID *actual_mech_type,
269                      gss_buffer_t output_token,
270                      OM_uint32 *ret_flags,
271                      OM_uint32 *time_rec);
272
273 /* wrap_iov.c */
274 OM_uint32
275 gssEapWrapOrGetMIC(OM_uint32 *minor,
276                    gss_ctx_id_t ctx,
277                    int conf_req_flag,
278                    int *conf_state,
279                    gss_iov_buffer_desc *iov,
280                    int iov_count,
281                    enum gss_eap_token_type toktype);
282
283 OM_uint32
284 gssEapUnwrapOrVerifyMIC(OM_uint32 *minor_status,
285                         gss_ctx_id_t ctx,
286                         int *conf_state,
287                         gss_qop_t *qop_state,
288                         gss_iov_buffer_desc *iov,
289                         int iov_count,
290                         enum gss_eap_token_type toktype);
291
292 OM_uint32
293 gssEapWrapIovLength(OM_uint32 *minor,
294                     gss_ctx_id_t ctx,
295                     int conf_req_flag,
296                     gss_qop_t qop_req,
297                     int *conf_state,
298                     gss_iov_buffer_desc *iov,
299                     int iov_count);
300 OM_uint32
301 gssEapWrap(OM_uint32 *minor,
302            gss_ctx_id_t ctx,
303            int conf_req_flag,
304            gss_qop_t qop_req,
305            gss_buffer_t input_message_buffer,
306            int *conf_state,
307            gss_buffer_t output_message_buffer);
308
309 unsigned char
310 rfc4121Flags(gss_ctx_id_t ctx, int receiving);
311
312 /* display_status.c */
313 void
314 gssEapSaveStatusInfo(OM_uint32 minor, const char *format, ...);
315
316 OM_uint32
317 gssEapDisplayStatus(OM_uint32 *minor,
318                     OM_uint32 status_value,
319                     gss_buffer_t status_string);
320
321 #define IS_WIRE_ERROR(err)              ((err) > GSSEAP_RESERVED && \
322                                          (err) <= GSSEAP_RADIUS_PROT_FAILURE)
323
324 #ifdef GSSEAP_ENABLE_ACCEPTOR
325 #define IS_RADIUS_ERROR(err)            ((err) >= ERROR_TABLE_BASE_rse && \
326                                          (err) <= ERROR_TABLE_BASE_rse + RSE_MAX)
327 #else
328 #define IS_RADIUS_ERROR(err)            (0)
329 #endif
330
331 /* exchange_meta_data.c */
332 OM_uint32 GSSAPI_CALLCONV
333 gssEapExchangeMetaData(OM_uint32 *minor,
334                        gss_const_OID mech,
335                        gss_cred_id_t cred,
336                        gss_ctx_id_t *ctx,
337                        const gss_name_t name,
338                        OM_uint32 req_flags,
339                        gss_const_buffer_t meta_data);
340
341 /* export_sec_context.c */
342 OM_uint32
343 gssEapExportSecContext(OM_uint32 *minor,
344                        gss_ctx_id_t ctx,
345                        gss_buffer_t token);
346
347 /* import_sec_context.c */
348 OM_uint32
349 gssEapImportContext(OM_uint32 *minor,
350                     gss_buffer_t token,
351                     gss_ctx_id_t ctx);
352
353 /* inquire_sec_context_by_oid.c */
354 #define NEGOEX_INITIATOR_SALT      "gss-eap-negoex-initiator"
355 #define NEGOEX_INITIATOR_SALT_LEN  (sizeof(NEGOEX_INITIATOR_SALT) - 1)
356
357 #define NEGOEX_ACCEPTOR_SALT       "gss-eap-negoex-acceptor"
358 #define NEGOEX_ACCEPTOR_SALT_LEN   (sizeof(NEGOEX_ACCEPTOR_SALT) - 1)
359
360 /* pseudo_random.c */
361 OM_uint32
362 gssEapPseudoRandom(OM_uint32 *minor,
363                    gss_ctx_id_t ctx,
364                    int prf_key,
365                    const gss_buffer_t prf_in,
366                    ssize_t desired_output_len,
367                    gss_buffer_t prf_out);
368
369 /* query_mechanism_info.c */
370 OM_uint32
371 gssQueryMechanismInfo(OM_uint32 *minor,
372                       gss_const_OID mech_oid,
373                       unsigned char auth_scheme[16]);
374
375 /* query_meta_data.c */
376 OM_uint32
377 gssEapQueryMetaData(OM_uint32 *minor,
378                     gss_const_OID mech GSSEAP_UNUSED,
379                     gss_cred_id_t cred,
380                     gss_ctx_id_t *context_handle,
381                     const gss_name_t name,
382                     OM_uint32 req_flags GSSEAP_UNUSED,
383                     gss_buffer_t meta_data);
384
385 /* eap_mech.c */
386 OM_uint32
387 gssEapInitiatorInit(OM_uint32 *minor);
388
389 void
390 gssEapFinalize(void);
391
392 #ifdef __cplusplus
393 }
394 #endif
395
396 #endif /* _GSSAPIP_EAP_H_ */