806c5dd2b37d1932bb0e0e1fd033db6f4a85b025
[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 <time.h>
40
41 /* GSS includes */
42 #include <gssapi/gssapi.h>
43 #include <gssapi/gssapi_ext.h>
44 #include "gssapi_eap.h"
45
46 /* EAP includes */
47 #define IEEE8021X_EAPOL 1
48
49 #include <common.h>
50 #include <eap_peer/eap.h>
51 #include <eap_peer/eap_config.h>
52 #include <wpabuf.h>
53
54 /* Kerberos includes */
55 #include <krb5.h>
56 #include "util.h"
57
58 struct gss_name_struct {
59     OM_uint32 flags;
60     krb5_principal kerberosName;
61     void *aaa;
62     void *assertion;
63 };
64
65 #define CRED_FLAG_INITIATOR                 0x00000001
66 #define CRED_FLAG_ACCEPTOR                  0x00000002
67 #define CRED_FLAG_DEFAULT_IDENTITY          0x00000004
68 #define CRED_FLAG_PASSWORD                  0x00000008
69
70 struct gss_cred_id_struct {
71     OM_uint32 flags;
72     gss_name_t name;
73     gss_buffer_desc password;
74     time_t expiryTime;
75 };
76
77 #define CTX_FLAG_INITIATOR                  0x00000001
78
79 #define CTX_IS_INITIATOR(ctx)               (((ctx)->flags & CTX_FLAG_INITIATOR) != 0)
80
81 enum eap_gss_state {
82     EAP_STATE_AUTHENTICATE = 1,
83     EAP_STATE_KEY_TRANSPORT,
84     EAP_STATE_SECURE_ASSOCIATION,
85     EAP_STATE_GSS_CHANNEL_BINDINGS,
86     EAP_STATE_ESTABLISHED
87 };
88
89 #define CTX_IS_ESTABLISHED(ctx)             ((ctx)->state == EAP_STATE_ESTABLISHED)
90
91 /* Initiator context flags */
92 #define CTX_FLAG_EAP_SUCCESS                0x00010000
93 #define CTX_FLAG_EAP_RESTART                0x00020000
94 #define CTX_FLAG_EAP_FAIL                   0x00040000
95 #define CTX_FLAG_EAP_RESP                   0x00080000
96 #define CTX_FLAG_EAP_NO_RESP                0x00100000
97 #define CTX_FLAG_EAP_REQ                    0x00200000
98 #define CTX_FLAG_EAP_PORT_ENABLED           0x00400000
99 #define CTX_FLAG_EAP_ALT_ACCEPT             0x00800000
100 #define CTX_FLAG_EAP_ALT_REJECT             0x01000000
101
102 struct eap_gss_initiator_ctx {
103     struct wpabuf *eapReqData;
104     unsigned int idleWhile;
105     struct eap_peer_config eapConfig;
106     struct eap_sm *eap;
107 };
108
109 /* Acceptor context flags */
110 struct eap_gss_acceptor_ctx {
111 };
112
113 struct gss_ctx_id_struct {
114     enum eap_gss_state state;
115     OM_uint32 flags;
116     OM_uint32 gssFlags;
117     krb5_context kerberosCtx;
118     gss_OID mechanismUsed;
119     krb5_enctype encryptionType;
120     krb5_cksumtype checksumType;
121     krb5_keyblock *rfc3961Key;
122     gss_name_t initiatorName;
123     gss_name_t acceptorName;
124     time_t expiryTime;
125     union {
126         struct eap_gss_initiator_ctx initiator;
127         #define initiatorCtx         ctxU.initiator
128         struct eap_gss_acceptor_ctx  acceptor;
129         #define acceptorCtx          ctxU.acceptor
130     } ctxU;
131     uint64_t sendSeq, recvSeq;
132     void *seqState;
133 };
134
135 #define TOK_FLAG_SENDER_IS_ACCEPTOR         0x01
136 #define TOK_FLAG_WRAP_CONFIDENTIAL          0x02
137 #define TOK_FLAG_ACCEPTOR_SUBKEY            0x04
138
139 #define KEY_USAGE_ACCEPTOR_SEAL             512
140 #define KEY_USAGE_ACCEPTOR_SIGN             513
141 #define KEY_USAGE_INITIATOR_SEAL            514
142 #define KEY_USAGE_INITIATOR_SIGN            515
143
144 enum gss_eap_token_type {
145     TOK_TYPE_EAP_RESP  = 0x0601,
146     TOK_TYPE_EAP_REQ   = 0x0602,
147     TOK_TYPE_GSS_CB    = 0x0603,
148     TOK_TYPE_MIC       = 0x0404,
149     TOK_TYPE_WRAP      = 0x0504,
150     TOK_TYPE_DELETE    = 0x0405,
151     TOK_TYPE_NONE      = 0xFFFF
152 };
153
154 /* wrap_iov.c */
155 OM_uint32
156 gssEapWrapOrGetMIC(OM_uint32 *minor,
157                    gss_ctx_id_t ctx,
158                    int conf_req_flag,
159                    int *conf_state,
160                    gss_iov_buffer_desc *iov,
161                    int iov_count,
162                    enum gss_eap_token_type toktype);
163
164 OM_uint32
165 gssEapUnwrapOrVerifyMIC(OM_uint32 *minor_status,
166                         gss_ctx_id_t ctx,
167                         int *conf_state,
168                         gss_qop_t *qop_state,
169                         gss_iov_buffer_desc *iov,
170                         int iov_count,
171                         enum gss_eap_token_type toktype);
172
173
174 #endif /* _GSSAPIP_EAP_H_ */