Merge branch 'oldradius'
[mech_eap.git] / 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 <assert.h>
37 #include <string.h>
38 #include <errno.h>
39 #include <unistd.h>
40 #include <stdlib.h>
41 #include <time.h>
42
43 /* GSS includes */
44 #include <gssapi/gssapi.h>
45 #include <gssapi/gssapi_ext.h>
46 #include "gssapi_eap.h"
47
48 /* Kerberos includes */
49 #include <krb5.h>
50
51 /* EAP includes */
52 #ifndef __cplusplus
53 #include <common.h>
54 #include <eap_peer/eap.h>
55 #include <eap_peer/eap_config.h>
56 #include <crypto/tls.h>
57 #include <wpabuf.h>
58 #endif
59
60 #include <freeradius-client.h>
61 #include <freeradius/radius.h>
62
63 #include "util.h"
64
65 /* These name flags are informative and not actually used by anything yet */
66 #define NAME_FLAG_NAI                       0x00000001
67 #define NAME_FLAG_SERVICE                   0x00000002
68 #define NAME_FLAG_COMPOSITE                 0x00000004
69
70 struct gss_eap_saml_attr_ctx;
71 struct gss_eap_attr_ctx;
72
73 struct gss_name_struct {
74     GSSEAP_MUTEX mutex; /* mutex protects attrCtx */
75     OM_uint32 flags;
76     krb5_principal krbPrincipal; /* this is immutable */
77     struct gss_eap_attr_ctx *attrCtx;
78 };
79
80 #define CRED_FLAG_INITIATE                  0x00000001
81 #define CRED_FLAG_ACCEPT                    0x00000002
82 #define CRED_FLAG_DEFAULT_IDENTITY          0x00000004
83 #define CRED_FLAG_PASSWORD                  0x00000008
84
85 struct gss_cred_id_struct {
86     GSSEAP_MUTEX mutex;
87     OM_uint32 flags;
88     gss_name_t name;
89     gss_buffer_desc password;
90     gss_OID_set mechanisms;
91     time_t expiryTime;
92     char *radiusConfigFile;
93 };
94
95 #define CTX_FLAG_INITIATOR                  0x00000001
96
97 #define CTX_IS_INITIATOR(ctx)               (((ctx)->flags & CTX_FLAG_INITIATOR) != 0)
98
99 enum gss_eap_state {
100     EAP_STATE_IDENTITY = 0,
101     EAP_STATE_AUTHENTICATE,
102     EAP_STATE_GSS_CHANNEL_BINDINGS,
103     EAP_STATE_ESTABLISHED
104 };
105
106 #define CTX_IS_ESTABLISHED(ctx)             ((ctx)->state == EAP_STATE_ESTABLISHED)
107
108 /* Initiator context flags */
109 #define CTX_FLAG_EAP_SUCCESS                0x00010000
110 #define CTX_FLAG_EAP_RESTART                0x00020000
111 #define CTX_FLAG_EAP_FAIL                   0x00040000
112 #define CTX_FLAG_EAP_RESP                   0x00080000
113 #define CTX_FLAG_EAP_NO_RESP                0x00100000
114 #define CTX_FLAG_EAP_REQ                    0x00200000
115 #define CTX_FLAG_EAP_PORT_ENABLED           0x00400000
116 #define CTX_FLAG_EAP_ALT_ACCEPT             0x00800000
117 #define CTX_FLAG_EAP_ALT_REJECT             0x01000000
118 #define CTX_FLAG_EAP_MASK                   0xFFFF0000
119
120 struct gss_eap_initiator_ctx {
121     unsigned int idleWhile;
122 #ifndef __cplusplus
123     struct eap_peer_config eapPeerConfig;
124     struct eap_sm *eap;
125     struct wpabuf reqData;
126 #endif
127 };
128
129 struct gss_eap_acceptor_ctx {
130     rc_handle *radHandle;
131     int lastStatus;
132     VALUE_PAIR *avps;
133     gss_buffer_desc state;
134 };
135
136 struct gss_ctx_id_struct {
137     GSSEAP_MUTEX mutex;
138     enum gss_eap_state state;
139     OM_uint32 flags;
140     OM_uint32 gssFlags;
141     gss_OID mechanismUsed;
142     krb5_cksumtype checksumType;
143     krb5_enctype encryptionType;
144     krb5_keyblock rfc3961Key;
145     gss_name_t initiatorName;
146     gss_name_t acceptorName;
147     time_t expiryTime;
148     uint64_t sendSeq, recvSeq;
149     void *seqState;
150     union {
151         struct gss_eap_initiator_ctx initiator;
152         #define initiatorCtx         ctxU.initiator
153         struct gss_eap_acceptor_ctx  acceptor;
154         #define acceptorCtx          ctxU.acceptor
155     } ctxU;
156 };
157
158 #define TOK_FLAG_SENDER_IS_ACCEPTOR         0x01
159 #define TOK_FLAG_WRAP_CONFIDENTIAL          0x02
160 #define TOK_FLAG_ACCEPTOR_SUBKEY            0x04
161
162 #define KEY_USAGE_ACCEPTOR_SEAL             22
163 #define KEY_USAGE_ACCEPTOR_SIGN             23
164 #define KEY_USAGE_INITIATOR_SEAL            24
165 #define KEY_USAGE_INITIATOR_SIGN            25
166 #define KEY_USAGE_CHANNEL_BINDINGS          64
167
168 /* wrap_iov.c */
169 OM_uint32
170 gssEapWrapOrGetMIC(OM_uint32 *minor,
171                    gss_ctx_id_t ctx,
172                    int conf_req_flag,
173                    int *conf_state,
174                    gss_iov_buffer_desc *iov,
175                    int iov_count,
176                    enum gss_eap_token_type toktype);
177
178 OM_uint32
179 gssEapUnwrapOrVerifyMIC(OM_uint32 *minor_status,
180                         gss_ctx_id_t ctx,
181                         int *conf_state,
182                         gss_qop_t *qop_state,
183                         gss_iov_buffer_desc *iov,
184                         int iov_count,
185                         enum gss_eap_token_type toktype);
186
187 #endif /* _GSSAPIP_EAP_H_ */