perl -i -npe "s/[ \t]+$//g" `find src -name "*.[ch]" -print`
[freeradius.git] / src / modules / rlm_eap / types / rlm_eap_peap / rlm_eap_peap.c
1 /*
2  * rlm_eap_peap.c  contains the interfaces that are called from eap
3  *
4  * Version:     $Id$
5  *
6  *   This program is free software; you can redistribute it and/or modify
7  *   it under the terms of the GNU General Public License as published by
8  *   the Free Software Foundation; either version 2 of the License, or
9  *   (at your option) any later version.
10  *
11  *   This program is distributed in the hope that it will be useful,
12  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *   GNU General Public License for more details.
15  *
16  *   You should have received a copy of the GNU General Public License
17  *   along with this program; if not, write to the Free Software
18  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  * Copyright 2003 Alan DeKok <aland@freeradius.org>
21  */
22
23 #include "autoconf.h"
24 #include "eap_tls.h"
25 #include "eap_peap.h"
26
27 typedef struct rlm_eap_peap_t {
28         /*
29          *      Default tunneled EAP type
30          */
31         char    *default_eap_type_name;
32         int     default_eap_type;
33
34         /*
35          *      Use the reply attributes from the tunneled session in
36          *      the non-tunneled reply to the client.
37          */
38         int     use_tunneled_reply;
39
40         /*
41          *      Use SOME of the request attributes from outside of the
42          *      tunneled session in the tunneled request
43          */
44         int     copy_request_to_tunnel;
45
46         /*
47          *      Proxy tunneled session as EAP, or as de-capsulated
48          *      protocol.
49          */
50         int     proxy_tunneled_request_as_eap;
51 } rlm_eap_peap_t;
52
53
54 static CONF_PARSER module_config[] = {
55         { "default_eap_type", PW_TYPE_STRING_PTR,
56           offsetof(rlm_eap_peap_t, default_eap_type_name), NULL, "mschapv2" },
57
58         { "copy_request_to_tunnel", PW_TYPE_BOOLEAN,
59           offsetof(rlm_eap_peap_t, copy_request_to_tunnel), NULL, "no" },
60
61         { "use_tunneled_reply", PW_TYPE_BOOLEAN,
62           offsetof(rlm_eap_peap_t, use_tunneled_reply), NULL, "no" },
63
64         { "proxy_tunneled_request_as_eap", PW_TYPE_BOOLEAN,
65           offsetof(rlm_eap_peap_t, proxy_tunneled_request_as_eap), NULL, "yes" },
66
67         { NULL, -1, 0, NULL, NULL }           /* end the list */
68 };
69
70 /*
71  *      Detach the module.
72  */
73 static int eappeap_detach(void *arg)
74 {
75         rlm_eap_peap_t *inst = (rlm_eap_peap_t *) arg;
76
77         if (inst->default_eap_type_name) free(inst->default_eap_type_name);
78
79         free(inst);
80
81         return 0;
82 }
83
84 /*
85  *      Attach the module.
86  */
87 static int eappeap_attach(CONF_SECTION *cs, void **instance)
88 {
89         rlm_eap_peap_t *inst;
90
91         inst = malloc(sizeof(*inst));
92         if (!inst) {
93                 radlog(L_ERR, "rlm_eap_peap: out of memory");
94                 return -1;
95         }
96         memset(inst, 0, sizeof(*inst));
97
98         /*
99          *      Parse the configuration attributes.
100          */
101         if (cf_section_parse(cs, inst, module_config) < 0) {
102                 eappeap_detach(inst);
103                 return -1;
104         }
105
106         /*
107          *      Convert the name to an integer, to make it easier to
108          *      handle.
109          */
110         inst->default_eap_type = eaptype_name2type(inst->default_eap_type_name);
111         if (inst->default_eap_type < 0) {
112                 radlog(L_ERR, "rlm_eap_peap: Unknown EAP type %s",
113                        inst->default_eap_type_name);
114                 eappeap_detach(inst);
115                 return -1;
116         }
117
118         *instance = inst;
119
120         return 0;
121 }
122
123 /*
124  *      Free the PEAP per-session data
125  */
126 static void peap_free(void *p)
127 {
128         peap_tunnel_t *t = (peap_tunnel_t *) p;
129
130         if (!t) return;
131
132         pairfree(&t->username);
133         pairfree(&t->state);
134
135         free(t);
136 }
137
138
139 /*
140  *      Free the PEAP per-session data
141  */
142 static peap_tunnel_t *peap_alloc(rlm_eap_peap_t *inst)
143 {
144         peap_tunnel_t *t;
145
146         t = rad_malloc(sizeof(*t));
147         memset(t, 0, sizeof(*t));
148
149         t->default_eap_type = inst->default_eap_type;
150         t->copy_request_to_tunnel = inst->copy_request_to_tunnel;
151         t->use_tunneled_reply = inst->use_tunneled_reply;
152         t->proxy_tunneled_request_as_eap = inst->proxy_tunneled_request_as_eap;
153
154         return t;
155 }
156
157 /*
158  *      Do authentication, by letting EAP-TLS do most of the work.
159  */
160 static int eappeap_authenticate(void *arg, EAP_HANDLER *handler)
161 {
162         int rcode;
163         eaptls_status_t status;
164         rlm_eap_peap_t *inst = (rlm_eap_peap_t *) arg;
165         tls_session_t *tls_session = (tls_session_t *) handler->opaque;
166
167         DEBUG2("  rlm_eap_peap: Authenticate");
168
169         status = eaptls_process(handler);
170         DEBUG2("  eaptls_process returned %d\n", status);
171         switch (status) {
172                 /*
173                  *      EAP-TLS handshake was successful, tell the
174                  *      client to keep talking.
175                  *
176                  *      If this was EAP-TLS, we would just return
177                  *      an EAP-TLS-Success packet here.
178                  */
179         case EAPTLS_SUCCESS:
180                 {
181                         eap_packet_t eap_packet;
182
183                         eap_packet.code = PW_EAP_REQUEST;
184                         eap_packet.id = handler->eap_ds->response->id + 1;
185                         eap_packet.length[0] = 0;
186                         eap_packet.length[1] = EAP_HEADER_LEN + 1;
187                         eap_packet.data[0] = PW_EAP_IDENTITY;
188
189                         record_plus(&tls_session->clean_in,
190                                     &eap_packet, sizeof(eap_packet));
191
192                         tls_handshake_send(tls_session);
193                         record_init(&tls_session->clean_in);
194                 }
195                 eaptls_request(handler->eap_ds, tls_session);
196                 DEBUG2("  rlm_eap_peap: EAPTLS_SUCCESS");
197                 return 1;
198
199                 /*
200                  *      The TLS code is still working on the TLS
201                  *      exchange, and it's a valid TLS request.
202                  *      do nothing.
203                  */
204         case EAPTLS_HANDLED:
205                 DEBUG2("  rlm_eap_peap: EAPTLS_HANDLED");
206                 return 1;
207
208                 /*
209                  *      Handshake is done, proceed with decoding tunneled
210                  *      data.
211                  */
212         case EAPTLS_OK:
213                 DEBUG2("  rlm_eap_peap: EAPTLS_OK");
214                 break;
215
216                 /*
217                  *      Anything else: fail.
218                  */
219         default:
220                 DEBUG2("  rlm_eap_peap: EAPTLS_OTHERS");
221                 return 0;
222         }
223
224         /*
225          *      Session is established, proceed with decoding
226          *      tunneled data.
227          */
228         DEBUG2("  rlm_eap_peap: Session established.  Decoding tunneled attributes.");
229
230         /*
231          *      We may need PEAP data associated with the session, so
232          *      allocate it here, if it wasn't already alloacted.
233          */
234         if (!tls_session->opaque) {
235                 tls_session->opaque = peap_alloc(inst);
236                 tls_session->free_opaque = peap_free;
237         }
238
239         /*
240          *      Process the PEAP portion of the request.
241          */
242         rcode = eappeap_process(handler, tls_session);
243         switch (rcode) {
244         case RLM_MODULE_REJECT:
245                 eaptls_fail(handler->eap_ds, 0);
246                 return 0;
247
248         case RLM_MODULE_HANDLED:
249                 eaptls_request(handler->eap_ds, tls_session);
250                 return 1;
251
252         case RLM_MODULE_OK:
253                 eaptls_success(handler->eap_ds, 0);
254                 eaptls_gen_mppe_keys(&handler->request->reply->vps,
255                                      tls_session->ssl,
256                                      "client EAP encryption");
257                 return 1;
258
259                 /*
260                  *      No response packet, MUST be proxying it.
261                  *      The main EAP module will take care of discovering
262                  *      that the request now has a "proxy" packet, and
263                  *      will proxy it, rather than returning an EAP packet.
264                  */
265         case RLM_MODULE_UPDATED:
266                 rad_assert(handler->request->proxy != NULL);
267                 return 1;
268                 break;
269
270         default:
271                 break;
272         }
273
274         eaptls_fail(handler->eap_ds, 0);
275         return 0;
276 }
277
278
279 /*
280  *      The module name should be the only globally exported symbol.
281  *      That is, everything else should be 'static'.
282  */
283 EAP_TYPE rlm_eap_peap = {
284         "eap_peap",
285         eappeap_attach,                 /* attach */
286         /*
287          *      Note! There is NO eappeap_initate() function, as the
288          *      main EAP module takes care of calling
289          *      eaptls_initiate().
290          *
291          *      This is because PEAP is a protocol on top of TLS, so
292          *      before we need to do PEAP, we've got to initiate a TLS
293          *      session.
294          */
295         NULL,                           /* Start the initial request */
296         NULL,                           /* authorization */
297         eappeap_authenticate,           /* authentication */
298         eappeap_detach                  /* detach */
299 };