remove ~/.gss_eap_id PKCS#12 directive for now
[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 /* FreeRADIUS headers */
94 #ifdef __cplusplus
95 extern "C" {
96 #ifndef WIN32
97 #define operator fr_operator
98 #endif
99 #endif
100 #include <freeradius/libradius.h>
101 #include <freeradius/radius.h>
102
103 #undef pid_t
104
105 /* libradsec headers */
106 #include <radsec/radsec.h>
107 #include <radsec/request.h>
108 #ifdef __cplusplus
109 #ifndef WIN32
110 #undef operator
111 #endif
112 }
113 #endif
114 #endif /* GSSEAP_ENABLE_ACCEPTOR */
115
116 #include "gsseap_err.h"
117 #include "radsec_err.h"
118 #include "util.h"
119
120 #ifdef __cplusplus
121 extern "C" {
122 #endif
123
124 /* These name flags are informative and not actually used by anything yet */
125 #define NAME_FLAG_NAI                       0x00000001
126 #define NAME_FLAG_SERVICE                   0x00000002
127 #define NAME_FLAG_COMPOSITE                 0x00000004
128
129 struct gss_eap_saml_attr_ctx;
130 struct gss_eap_attr_ctx;
131
132 #ifdef HAVE_HEIMDAL_VERSION
133 struct gss_name_t_desc_struct
134 #else
135 struct gss_name_struct
136 #endif
137 {
138     GSSEAP_MUTEX mutex; /* mutex protects attrCtx */
139     OM_uint32 flags;
140     gss_OID mechanismUsed; /* this is immutable */
141     krb5_principal krbPrincipal; /* this is immutable */
142 #ifdef GSSEAP_ENABLE_ACCEPTOR
143     struct gss_eap_attr_ctx *attrCtx;
144 #endif
145 };
146
147 #define CRED_FLAG_INITIATE                  0x00010000
148 #define CRED_FLAG_ACCEPT                    0x00020000
149 #define CRED_FLAG_PASSWORD                  0x00040000
150 #define CRED_FLAG_DEFAULT_CCACHE            0x00080000
151 #define CRED_FLAG_RESOLVED                  0x00100000
152 #define CRED_FLAG_TARGET                    0x00200000
153 #define CRED_FLAG_CERTIFICATE               0x00400000
154 #define CRED_FLAG_CONFIG_BLOB               0x00800000
155 #define CRED_FLAG_PUBLIC_MASK               0x0000FFFF
156
157 #ifdef HAVE_HEIMDAL_VERSION
158 struct gss_cred_id_t_desc_struct
159 #else
160 struct gss_cred_id_struct
161 #endif
162 {
163     GSSEAP_MUTEX mutex;
164     OM_uint32 flags;
165     gss_name_t name;
166     gss_name_t target; /* for initiator */
167     gss_buffer_desc password;
168     gss_OID_set mechanisms;
169     time_t expiryTime;
170     gss_buffer_desc radiusConfigFile;
171     gss_buffer_desc radiusConfigStanza;
172     gss_buffer_desc caCertificate;
173     gss_buffer_desc subjectNameConstraint;
174     gss_buffer_desc subjectAltNameConstraint;
175     gss_buffer_desc clientCertificate;
176     gss_buffer_desc privateKey;
177 #ifdef GSSEAP_ENABLE_REAUTH
178     krb5_ccache krbCredCache;
179     gss_cred_id_t reauthCred;
180 #endif
181 };
182
183 #define CTX_FLAG_INITIATOR                  0x00000001
184 #define CTX_FLAG_KRB_REAUTH                 0x00000002
185
186 #define CTX_IS_INITIATOR(ctx)               (((ctx)->flags & CTX_FLAG_INITIATOR) != 0)
187
188 #define CTX_IS_ESTABLISHED(ctx)             ((ctx)->state == GSSEAP_STATE_ESTABLISHED)
189
190 /* Initiator context flags */
191 #define CTX_FLAG_EAP_SUCCESS                0x00010000
192 #define CTX_FLAG_EAP_RESTART                0x00020000
193 #define CTX_FLAG_EAP_FAIL                   0x00040000
194 #define CTX_FLAG_EAP_RESP                   0x00080000
195 #define CTX_FLAG_EAP_NO_RESP                0x00100000
196 #define CTX_FLAG_EAP_REQ                    0x00200000
197 #define CTX_FLAG_EAP_PORT_ENABLED           0x00400000
198 #define CTX_FLAG_EAP_ALT_ACCEPT             0x00800000
199 #define CTX_FLAG_EAP_ALT_REJECT             0x01000000
200 #define CTX_FLAG_EAP_MASK                   0xFFFF0000
201
202 #define CONFIG_BLOB_CLIENT_CERT             0
203 #define CONFIG_BLOB_PRIVATE_KEY             1
204 #define CONFIG_BLOB_MAX                     2
205
206 struct gss_eap_initiator_ctx {
207     unsigned int idleWhile;
208     struct eap_peer_config eapPeerConfig;
209     struct eap_sm *eap;
210     struct wpabuf reqData;
211     struct wpa_config_blob configBlobs[CONFIG_BLOB_MAX];
212 };
213
214 #ifdef GSSEAP_ENABLE_ACCEPTOR
215 struct gss_eap_acceptor_ctx {
216     struct rs_context *radContext;
217     struct rs_connection *radConn;
218     char *radServer;
219     gss_buffer_desc state;
220     VALUE_PAIR *vps;
221 };
222 #endif
223
224 #ifdef HAVE_HEIMDAL_VERSION
225 struct gss_ctx_id_t_desc_struct
226 #else
227 struct gss_ctx_id_struct
228 #endif
229 {
230     GSSEAP_MUTEX mutex;
231     enum gss_eap_state state;
232     OM_uint32 flags;
233     OM_uint32 gssFlags;
234     gss_OID mechanismUsed;
235     krb5_cksumtype checksumType;
236     krb5_enctype encryptionType;
237     krb5_keyblock rfc3961Key;
238     gss_name_t initiatorName;
239     gss_name_t acceptorName;
240     time_t expiryTime;
241     uint64_t sendSeq, recvSeq;
242     void *seqState;
243     gss_cred_id_t cred;
244     union {
245         struct gss_eap_initiator_ctx initiator;
246         #define initiatorCtx         ctxU.initiator
247 #ifdef GSSEAP_ENABLE_ACCEPTOR
248         struct gss_eap_acceptor_ctx  acceptor;
249         #define acceptorCtx          ctxU.acceptor
250 #endif
251 #ifdef GSSEAP_ENABLE_REAUTH
252         gss_ctx_id_t                 reauth;
253         #define reauthCtx            ctxU.reauth
254 #endif
255     } ctxU;
256     const struct gss_eap_token_buffer_set *inputTokens;
257     const struct gss_eap_token_buffer_set *outputTokens;
258 };
259
260 #define TOK_FLAG_SENDER_IS_ACCEPTOR         0x01
261 #define TOK_FLAG_WRAP_CONFIDENTIAL          0x02
262 #define TOK_FLAG_ACCEPTOR_SUBKEY            0x04
263
264 #define KEY_USAGE_ACCEPTOR_SEAL             22
265 #define KEY_USAGE_ACCEPTOR_SIGN             23
266 #define KEY_USAGE_INITIATOR_SEAL            24
267 #define KEY_USAGE_INITIATOR_SIGN            25
268
269 /* accept_sec_context.c */
270 OM_uint32
271 gssEapAcceptSecContext(OM_uint32 *minor,
272                        gss_ctx_id_t ctx,
273                        gss_cred_id_t cred,
274                        gss_buffer_t input_token,
275                        gss_channel_bindings_t input_chan_bindings,
276                        gss_name_t *src_name,
277                        gss_OID *mech_type,
278                        gss_buffer_t output_token,
279                        OM_uint32 *ret_flags,
280                        OM_uint32 *time_rec,
281                        gss_cred_id_t *delegated_cred_handle);
282
283 /* init_sec_context.c */
284 OM_uint32
285 gssEapInitSecContext(OM_uint32 *minor,
286                      gss_cred_id_t cred,
287                      gss_ctx_id_t ctx,
288                      gss_name_t target_name,
289                      gss_OID mech_type,
290                      OM_uint32 req_flags,
291                      OM_uint32 time_req,
292                      gss_channel_bindings_t input_chan_bindings,
293                      gss_buffer_t input_token,
294                      gss_OID *actual_mech_type,
295                      gss_buffer_t output_token,
296                      OM_uint32 *ret_flags,
297                      OM_uint32 *time_rec);
298
299 /* wrap_iov.c */
300 OM_uint32
301 gssEapWrapOrGetMIC(OM_uint32 *minor,
302                    gss_ctx_id_t ctx,
303                    int conf_req_flag,
304                    int *conf_state,
305                    gss_iov_buffer_desc *iov,
306                    int iov_count,
307                    enum gss_eap_token_type toktype);
308
309 OM_uint32
310 gssEapUnwrapOrVerifyMIC(OM_uint32 *minor_status,
311                         gss_ctx_id_t ctx,
312                         int *conf_state,
313                         gss_qop_t *qop_state,
314                         gss_iov_buffer_desc *iov,
315                         int iov_count,
316                         enum gss_eap_token_type toktype);
317
318 OM_uint32
319 gssEapWrapIovLength(OM_uint32 *minor,
320                     gss_ctx_id_t ctx,
321                     int conf_req_flag,
322                     gss_qop_t qop_req,
323                     int *conf_state,
324                     gss_iov_buffer_desc *iov,
325                     int iov_count);
326 OM_uint32
327 gssEapWrap(OM_uint32 *minor,
328            gss_ctx_id_t ctx,
329            int conf_req_flag,
330            gss_qop_t qop_req,
331            gss_buffer_t input_message_buffer,
332            int *conf_state,
333            gss_buffer_t output_message_buffer);
334
335 unsigned char
336 rfc4121Flags(gss_ctx_id_t ctx, int receiving);
337
338 /* display_status.c */
339 void
340 gssEapSaveStatusInfo(OM_uint32 minor, const char *format, ...);
341
342 OM_uint32
343 gssEapDisplayStatus(OM_uint32 *minor,
344                     OM_uint32 status_value,
345                     gss_buffer_t status_string);
346
347 #define IS_WIRE_ERROR(err)              ((err) > GSSEAP_RESERVED && \
348                                          (err) <= GSSEAP_RADIUS_PROT_FAILURE)
349
350 /* upper bound of RADIUS error range must be kept in sync with radsec.h */
351 #define IS_RADIUS_ERROR(err)            ((err) >= ERROR_TABLE_BASE_rse && \
352                                          (err) <= ERROR_TABLE_BASE_rse + 20)
353
354 /* exchange_meta_data.c */
355 OM_uint32 GSSAPI_CALLCONV
356 gssEapExchangeMetaData(OM_uint32 *minor,
357                        gss_const_OID mech,
358                        gss_cred_id_t cred,
359                        gss_ctx_id_t *ctx,
360                        const gss_name_t name,
361                        OM_uint32 req_flags,
362                        gss_const_buffer_t meta_data);
363
364 /* export_sec_context.c */
365 OM_uint32
366 gssEapExportSecContext(OM_uint32 *minor,
367                        gss_ctx_id_t ctx,
368                        gss_buffer_t token);
369
370 /* import_sec_context.c */
371 OM_uint32
372 gssEapImportContext(OM_uint32 *minor,
373                     gss_buffer_t token,
374                     gss_ctx_id_t ctx);
375
376 /* inquire_sec_context_by_oid.c */
377 #define NEGOEX_INITIATOR_SALT      "gss-eap-negoex-initiator"
378 #define NEGOEX_INITIATOR_SALT_LEN  (sizeof(NEGOEX_INITIATOR_SALT) - 1)
379
380 #define NEGOEX_ACCEPTOR_SALT       "gss-eap-negoex-acceptor"
381 #define NEGOEX_ACCEPTOR_SALT_LEN   (sizeof(NEGOEX_ACCEPTOR_SALT) - 1)
382
383 /* pseudo_random.c */
384 OM_uint32
385 gssEapPseudoRandom(OM_uint32 *minor,
386                    gss_ctx_id_t ctx,
387                    int prf_key,
388                    const gss_buffer_t prf_in,
389                    ssize_t desired_output_len,
390                    gss_buffer_t prf_out);
391
392 /* query_mechanism_info.c */
393 OM_uint32
394 gssQueryMechanismInfo(OM_uint32 *minor,
395                       gss_const_OID mech_oid,
396                       unsigned char auth_scheme[16]);
397
398 /* query_meta_data.c */
399 OM_uint32
400 gssEapQueryMetaData(OM_uint32 *minor,
401                     gss_const_OID mech GSSEAP_UNUSED,
402                     gss_cred_id_t cred,
403                     gss_ctx_id_t *context_handle,
404                     const gss_name_t name,
405                     OM_uint32 req_flags GSSEAP_UNUSED,
406                     gss_buffer_t meta_data);
407
408 /* eap_mech.c */
409 OM_uint32
410 gssEapInitiatorInit(OM_uint32 *minor);
411
412 void
413 gssEapFinalize(void);
414
415 #ifdef __cplusplus
416 }
417 #endif
418
419 #endif /* _GSSAPIP_EAP_H_ */