4 * @brief Interface eap_method_t.
9 * Copyright (C) 2006 Martin Willi
10 * Hochschule fuer Technik Rapperswil
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
19 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
26 typedef struct eap_method_t eap_method_t
;
27 typedef enum eap_role_t eap_role_t
;
28 typedef enum eap_type_t eap_type_t
;
29 typedef enum eap_code_t eap_code_t
;
32 #include <utils/identification.h>
33 #include <encoding/payloads/eap_payload.h>
36 * Role of an eap_method, SERVER or PEER (client)
45 * enum names for eap_role_t.
49 extern enum_name_t
*eap_role_names
;
52 * EAP types, defines the EAP method implementation
61 EAP_ONE_TIME_PASSWORD
= 5,
66 EAP_EXPERIMENTAL
= 255,
70 * enum names for eap_type_t.
74 extern enum_name_t
*eap_type_names
;
77 * EAP code, type of an EAP message
89 * enum names for eap_code_t.
93 extern enum_name_t
*eap_code_names
;
97 * @brief Interface of an EAP method for server and client side.
99 * An EAP method initiates an EAP exchange and processes requests and
100 * responses. An EAP method may need multiple exchanges before succeeding, and
101 * the eap_authentication may use multiple EAP methods to authenticate a peer.
102 * To accomplish these requirements, all EAP methods have their own
103 * implementation while the eap_authenticatior uses one or more of these
104 * EAP methods. Sending of EAP(SUCCESS/FAILURE) message is not the job
105 * of the method, the eap_authenticator does this.
106 * An EAP method may establish a MSK, this is used the complete the
107 * authentication. Even if a mutual EAP method is used, the traditional
108 * AUTH payloads are required. Only these include the nonces and messages from
109 * ike_sa_init and therefore prevent man in the middle attacks.
112 * - eap_method_create()
116 struct eap_method_t
{
119 * @brief Initiate the EAP exchange.
121 * initiate() is only useable for server implementations, as clients only
122 * reply to server requests.
123 * A eap_payload is created in "out" if result is NEED_MORE.
125 * @param this calling object
126 * @param out eap_payload to send to the client
128 * - NEED_MORE, if an other exchange is required
129 * - FAILED, if unable to create eap request payload
131 status_t (*initiate
) (eap_method_t
*this, eap_payload_t
**out
);
134 * @brief Process a received EAP message.
136 * A eap_payload is created in "out" if result is NEED_MORE.
138 * @param this calling object
139 * @param in eap_payload response received
140 * @param out created eap_payload to send
142 * - NEED_MORE, if an other exchange is required
143 * - FAILED, if EAP method failed
144 * - SUCCESS, if EAP method succeeded
146 status_t (*process
) (eap_method_t
*this, eap_payload_t
*in
,
147 eap_payload_t
**out
);
150 * @brief Get the EAP type implemented in this method.
152 * @param this calling object
153 * @param vendor pointer receiving vendor identifier for type, 0 for none
154 * @return type of the EAP method
156 eap_type_t (*get_type
) (eap_method_t
*this, u_int32_t
*vendor
);
159 * @brief Check if this EAP method authenticates the server.
161 * Some EAP methods provide mutual authentication and
162 * allow authentication using only EAP, if the peer supports it.
164 * @param this calling object
165 * @return TRUE if methods provides mutual authentication
167 bool (*is_mutual
) (eap_method_t
*this);
170 * @brief Get the MSK established by this EAP method.
172 * Not all EAP methods establish a shared secret.
174 * @param this calling object
175 * @param msk chunk receiving internal stored MSK
178 * - FAILED, if MSK not established (yet)
180 status_t (*get_msk
) (eap_method_t
*this, chunk_t
*msk
);
183 * @brief Destroys a eap_method_t object.
185 * @param this calling object
187 void (*destroy
) (eap_method_t
*this);
191 * @brief Creates an EAP method for a specific type and role.
193 * @param eap_type EAP type to use
194 * @param eap_vendor vendor identifier if a vendor specifc EAP type is used
195 * @param role role of the eap_method, server or peer
196 * @param server ID of acting server
197 * @param peer ID of involved peer (client)
198 * @return eap_method_t object
202 eap_method_t
*eap_method_create(eap_type_t eap_type
, u_int32_t eap_vendor
,
203 eap_role_t role
, identification_t
*server
,
204 identification_t
*peer
);
207 * @brief (Re-)Load all EAP modules in the EAP modules directory.
209 * For security reasons, the directory and all it's modules must be owned
210 * by root and must not be writeable by someone else.
212 * @param dir directory of the EAP modules
216 void eap_method_load(char *directory
);
219 * @brief Unload all loaded EAP modules
223 void eap_method_unload();
226 * @brief Constructor definition for a pluggable EAP module.
228 * Each EAP module must define a constructor function which will return
229 * an initialized object with the methods defined in eap_method_t. The
230 * constructor must be named eap_create() and it's signature must be equal
231 * to that of eap_constructor_t.
232 * A module may implement only a single role. If it does not support the role
233 * requested, NULL should be returned. Multiple modules are allowed of the
234 * same EAP type to support seperate implementations of peer/server.
236 * @param role role the module will play, peer or server
237 * @param server ID of the server to use for credential lookup
238 * @param peer ID of the peer to use for credential lookup
239 * @return implementation of the eap_method_t interface
243 typedef eap_method_t
*(*eap_constructor_t
)(eap_role_t role
,
244 identification_t
*server
,
245 identification_t
*peer
);
247 #endif /* EAP_METHOD_H_ */