757649b49d8d66dbbd4c051882eff70ffe1a0e07
[mech_eap.orig] / gssapiP_eap.h
1 /*
2  * Copyright (c) 2010, 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 #include <assert.h>
38 #include <string.h>
39 #include <errno.h>
40 #include <unistd.h>
41 #include <stdlib.h>
42 #include <time.h>
43
44 /* GSS includes */
45 #include <gssapi/gssapi.h>
46 #include <gssapi/gssapi_krb5.h>
47 #include <gssapi/gssapi_ext.h>
48 #include "gssapi_eap.h"
49
50 /* Kerberos includes */
51 #include <krb5.h>
52
53 /* EAP includes */
54 #ifndef __cplusplus
55 #include <common.h>
56 #include <eap_peer/eap.h>
57 #include <eap_peer/eap_config.h>
58 #include <crypto/tls.h>
59 #include <wpabuf.h>
60 #endif
61
62 #include <freeradius-client.h>
63 #include <freeradius/radius.h>
64
65 #include "util.h"
66
67 /* These name flags are informative and not actually used by anything yet */
68 #define NAME_FLAG_NAI                       0x00000001
69 #define NAME_FLAG_SERVICE                   0x00000002
70 #define NAME_FLAG_COMPOSITE                 0x00000004
71
72 struct gss_eap_saml_attr_ctx;
73 struct gss_eap_attr_ctx;
74
75 struct gss_name_struct {
76     GSSEAP_MUTEX mutex; /* mutex protects attrCtx */
77     OM_uint32 flags;
78     krb5_principal krbPrincipal; /* this is immutable */
79     struct gss_eap_attr_ctx *attrCtx;
80 };
81
82 #define CRED_FLAG_INITIATE                  0x00010000
83 #define CRED_FLAG_ACCEPT                    0x00020000
84 #define CRED_FLAG_DEFAULT_IDENTITY          0x00040000
85 #define CRED_FLAG_PASSWORD                  0x00080000
86 #define CRED_FLAG_DEFAULT_CCACHE            0x00100000
87 #define CRED_FLAG_PUBLIC_MASK               0x0000FFFF
88
89 struct gss_cred_id_struct {
90     GSSEAP_MUTEX mutex;
91     OM_uint32 flags;
92     gss_name_t name;
93     gss_buffer_desc password;
94     gss_OID_set mechanisms;
95     time_t expiryTime;
96     char *radiusConfigFile;
97 #ifdef GSSEAP_ENABLE_REAUTH
98     krb5_ccache krbCredCache;
99     gss_cred_id_t krbCred;
100 #endif
101 };
102
103 #define CTX_FLAG_INITIATOR                  0x00000001
104 #define CTX_FLAG_KRB_REAUTH_GSS             0x00000002
105
106 #define CTX_IS_INITIATOR(ctx)               (((ctx)->flags & CTX_FLAG_INITIATOR) != 0)
107
108 enum gss_eap_state {
109     EAP_STATE_IDENTITY = 0,
110     EAP_STATE_AUTHENTICATE,
111     EAP_STATE_EXTENSIONS_REQ,
112     EAP_STATE_EXTENSIONS_RESP,
113     EAP_STATE_ESTABLISHED,
114 #ifdef GSSEAP_ENABLE_REAUTH
115     EAP_STATE_KRB_REAUTH_GSS
116 #endif
117 };
118
119 #define CTX_IS_ESTABLISHED(ctx)             ((ctx)->state == EAP_STATE_ESTABLISHED)
120
121 /* Initiator context flags */
122 #define CTX_FLAG_EAP_SUCCESS                0x00010000
123 #define CTX_FLAG_EAP_RESTART                0x00020000
124 #define CTX_FLAG_EAP_FAIL                   0x00040000
125 #define CTX_FLAG_EAP_RESP                   0x00080000
126 #define CTX_FLAG_EAP_NO_RESP                0x00100000
127 #define CTX_FLAG_EAP_REQ                    0x00200000
128 #define CTX_FLAG_EAP_PORT_ENABLED           0x00400000
129 #define CTX_FLAG_EAP_ALT_ACCEPT             0x00800000
130 #define CTX_FLAG_EAP_ALT_REJECT             0x01000000
131 #define CTX_FLAG_EAP_MASK                   0xFFFF0000
132
133 struct gss_eap_initiator_ctx {
134     gss_cred_id_t defaultCred;
135     unsigned int idleWhile;
136 #ifndef __cplusplus
137     struct eap_peer_config eapPeerConfig;
138     struct eap_sm *eap;
139     struct wpabuf reqData;
140 #endif
141 };
142
143 struct gss_eap_acceptor_ctx {
144     rc_handle *radHandle;
145     char *radServer;
146     gss_buffer_desc state;
147     VALUE_PAIR *avps;
148 };
149
150 struct gss_ctx_id_struct {
151     GSSEAP_MUTEX mutex;
152     enum gss_eap_state state;
153     OM_uint32 flags;
154     OM_uint32 gssFlags;
155     gss_OID mechanismUsed;
156     krb5_cksumtype checksumType;
157     krb5_enctype encryptionType;
158     krb5_keyblock rfc3961Key;
159     gss_name_t initiatorName;
160     gss_name_t acceptorName;
161     time_t expiryTime;
162     uint64_t sendSeq, recvSeq;
163     void *seqState;
164     union {
165         struct gss_eap_initiator_ctx initiator;
166         #define initiatorCtx         ctxU.initiator
167         struct gss_eap_acceptor_ctx  acceptor;
168         #define acceptorCtx          ctxU.acceptor
169 #ifdef GSSEAP_ENABLE_REAUTH
170         gss_ctx_id_t                 kerberos;
171         #define kerberosCtx          ctxU.kerberos
172 #endif
173     } ctxU;
174 };
175
176 #define TOK_FLAG_SENDER_IS_ACCEPTOR         0x01
177 #define TOK_FLAG_WRAP_CONFIDENTIAL          0x02
178 #define TOK_FLAG_ACCEPTOR_SUBKEY            0x04
179
180 #define KEY_USAGE_ACCEPTOR_SEAL             22
181 #define KEY_USAGE_ACCEPTOR_SIGN             23
182 #define KEY_USAGE_INITIATOR_SEAL            24
183 #define KEY_USAGE_INITIATOR_SIGN            25
184 #define KEY_USAGE_CHANNEL_BINDINGS          64
185
186 /* wrap_iov.c */
187 OM_uint32
188 gssEapWrapOrGetMIC(OM_uint32 *minor,
189                    gss_ctx_id_t ctx,
190                    int conf_req_flag,
191                    int *conf_state,
192                    gss_iov_buffer_desc *iov,
193                    int iov_count,
194                    enum gss_eap_token_type toktype);
195
196 OM_uint32
197 gssEapUnwrapOrVerifyMIC(OM_uint32 *minor_status,
198                         gss_ctx_id_t ctx,
199                         int *conf_state,
200                         gss_qop_t *qop_state,
201                         gss_iov_buffer_desc *iov,
202                         int iov_count,
203                         enum gss_eap_token_type toktype);
204
205 OM_uint32
206 gssEapWrapIovLength(OM_uint32 *minor,
207                     gss_ctx_id_t ctx,
208                     int conf_req_flag,
209                     gss_qop_t qop_req,
210                     int *conf_state,
211                     gss_iov_buffer_desc *iov,
212                     int iov_count);
213 OM_uint32
214 gssEapWrap(OM_uint32 *minor,
215            gss_ctx_id_t ctx,
216            int conf_req_flag,
217            gss_qop_t qop_req,
218            gss_buffer_t input_message_buffer,
219            int *conf_state,
220            gss_buffer_t output_message_buffer);
221
222 unsigned char
223 rfc4121Flags(gss_ctx_id_t ctx, int receiving);
224
225 /* display_status.c */
226 void
227 gssEapSaveStatusInfo(OM_uint32 minor, const char *format, ...);
228
229 #endif /* _GSSAPIP_EAP_H_ */