perl -i -npe "s/[ \t]+$//g" `find src -name "*.[ch]" -print`
[freeradius.git] / src / modules / rlm_eap / types / rlm_eap_peap / peap.c
1 /*
2  * 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 #include "eap_tls.h"
23 #include "eap_peap.h"
24
25 /*
26  *      Send protected EAP-Failure
27  *
28  *       Result-TLV = Failure
29  */
30 static int eappeap_failure(EAP_HANDLER *handler, tls_session_t *tls_session)
31 {
32         uint8_t tlv_packet[11];
33
34         DEBUG2("  rlm_eap_peap: FAILURE");
35
36         tlv_packet[0] = PW_EAP_REQUEST;
37         tlv_packet[1] = handler->eap_ds->response->id +1;
38         tlv_packet[2] = 0;
39         tlv_packet[3] = 11;     /* length of this packet */
40         tlv_packet[4] = PW_EAP_TLV;
41         tlv_packet[5] = 0x80;
42         tlv_packet[6] = EAP_TLV_ACK_RESULT;
43         tlv_packet[7] = 0;
44         tlv_packet[8] = 2;      /* length of the data portion */
45         tlv_packet[9] = 0;
46         tlv_packet[10] = EAP_TLV_FAILURE;
47
48         record_plus(&tls_session->clean_in, tlv_packet, 11);
49
50         /*
51          *      FIXME: Check the return code.
52          */
53         tls_handshake_send(tls_session);
54         record_init(&tls_session->clean_in);
55
56         return 1;
57 }
58
59
60 /*
61  *      Send protected EAP-Success
62  *
63  *       Result-TLV = Success
64  */
65 static int eappeap_success(EAP_HANDLER *handler, tls_session_t *tls_session)
66 {
67         uint8_t tlv_packet[11];
68
69         DEBUG2("  rlm_eap_peap: SUCCESS");
70
71         tlv_packet[0] = PW_EAP_REQUEST;
72         tlv_packet[1] = handler->eap_ds->response->id +1;
73         tlv_packet[2] = 0;
74         tlv_packet[3] = 11;     /* length of this packet */
75         tlv_packet[4] = PW_EAP_TLV;
76         tlv_packet[5] = 0x80;   /* mandatory AVP */
77         tlv_packet[6] = EAP_TLV_ACK_RESULT;
78         tlv_packet[7] = 0;
79         tlv_packet[8] = 2;      /* length of the data portion */
80         tlv_packet[9] = 0;
81         tlv_packet[10] = EAP_TLV_SUCCESS;
82
83         record_plus(&tls_session->clean_in, tlv_packet, 11);
84
85         /*
86          *      FIXME: Check the return code.
87          */
88         tls_handshake_send(tls_session);
89         record_init(&tls_session->clean_in);
90
91         return 1;
92 }
93
94
95 /*
96  *      Verify the tunneled EAP message.
97  */
98 static int eapmessage_verify(const uint8_t *data, unsigned int data_len)
99 {
100         const eap_packet_t *eap_packet = (const eap_packet_t *) data;
101         uint8_t eap_type;
102         char identity[256];
103
104         if (!data || (data_len <= 1)) {
105                 return 0;
106         }
107
108         eap_type = *data;
109         switch (eap_type) {
110         case PW_EAP_IDENTITY:
111                 memcpy(identity, data + 1, data_len - 1);
112                 identity[data_len - 1] = '\0';
113                 DEBUG2("  rlm_eap_peap: Identity - %s", identity);
114                 return 1;
115                 break;
116
117                 /*
118                  *      If the first byte of the packet is
119                  *      EAP-Response, and the EAP data is a TLV,
120                  *      then it looks OK...
121                  */
122         case PW_EAP_RESPONSE:
123                 if (eap_packet->data[0] == PW_EAP_TLV) {
124                         DEBUG2("  rlm_eap_peap: Received EAP-TLV response.");
125                         return 1;
126                 }
127                 DEBUG2("  rlm_eap_peap: Got something weird.");
128                 break;
129
130
131                 /*
132                  *      We normally do Microsoft MS-CHAPv2 (26), versus
133                  *      Cisco MS-CHAPv2 (29).
134                  */
135         case PW_EAP_MSCHAPV2:
136         default:
137                 DEBUG2("  rlm_eap_peap: EAP type %s",
138                        eaptype_type2name(eap_type,
139                                          identity, sizeof(identity)));
140                 return 1;
141                 break;
142         }
143
144         return 0;
145 }
146
147 /*
148  *      Convert a pseudo-EAP packet to a list of VALUE_PAIR's.
149  */
150 static VALUE_PAIR *eap2vp(EAP_DS *eap_ds,
151                           const uint8_t *data, unsigned int data_len)
152 {
153         VALUE_PAIR *vp = NULL;
154
155         /*
156          *      Sanity check this...
157          */
158         if (data_len + EAP_HEADER_LEN > MAX_STRING_LEN) {
159                 radlog(L_ERR, "rlm_eap_peap: EAP Response packet is too large.  Code must be fixed to handle this.");
160                 return NULL;
161         }
162
163         vp = paircreate(PW_EAP_MESSAGE, PW_TYPE_OCTETS);
164         if (!vp) {
165                 DEBUG2("  rlm_eap_peap: Failure in creating VP");
166                 return NULL;
167         }
168
169         /*
170          *      Hand-build an EAP packet from the crap in PEAP version 0.
171          */
172         vp->strvalue[0] = PW_EAP_RESPONSE;
173         vp->strvalue[1] = eap_ds->response->id;
174         vp->strvalue[2] = 0;
175         vp->strvalue[3] = EAP_HEADER_LEN + data_len;
176
177         memcpy(vp->strvalue + EAP_HEADER_LEN, data, data_len);
178         vp->length = EAP_HEADER_LEN + data_len;
179
180         return vp;
181 }
182
183
184 /*
185  *      Convert a list of VALUE_PAIR's to an EAP packet, through the
186  *      simple expedient of dumping the EAP message
187  */
188 static int vp2eap(tls_session_t *tls_session, VALUE_PAIR *vp)
189 {
190         if (vp->next != NULL) {
191                 radlog(L_ERR, "rlm_eap_peap: EAP Request packet is too large.  Code must be fixed to handle this.");
192                 return 0;
193         }
194
195         /*
196          *      Skip the id, code, and length.  Just write the EAP
197          *      type & data to the client.
198          */
199 #ifndef NDEBUG
200         if (debug_flag > 2) {
201                 int i;
202                 int total = vp->length - 4;
203
204                 if (debug_flag > 0) for (i = 0; i < total; i++) {
205                         if ((i & 0x0f) == 0) printf("  PEAP tunnel data out %04x: ", i);
206
207                         printf("%02x ", vp->strvalue[i + 4]);
208
209                         if ((i & 0x0f) == 0x0f) printf("\n");
210                 }
211                 if ((total & 0x0f) != 0) printf("\n");
212         }
213 #endif
214
215         /*
216          *      Send the EAP data, WITHOUT the header.
217          */
218 #if 1
219         record_plus(&tls_session->clean_in, vp->strvalue + EAP_HEADER_LEN,
220                 vp->length - EAP_HEADER_LEN);
221 #else
222         record_plus(&tls_session->clean_in, vp->strvalue, vp->length);
223 #endif
224         tls_handshake_send(tls_session);
225         record_init(&tls_session->clean_in);
226
227         return 1;
228 }
229
230
231 /*
232  *      See if there's a TLV in the response.
233  */
234 static int eappeap_check_tlv(const uint8_t *data)
235 {
236         const eap_packet_t *eap_packet = (const eap_packet_t *) data;
237
238         /*
239          *      Look for success or failure.
240          */
241         if ((eap_packet->code == PW_EAP_RESPONSE) &&
242             (eap_packet->data[0] == PW_EAP_TLV)) {
243                 if (data[10] == EAP_TLV_SUCCESS) {
244                         return 1;
245                 }
246
247                 if (data[10] == EAP_TLV_FAILURE) {
248                         DEBUG2("  rlm_eap_peap: Client rejected our response.  The password is probably incorrect.");
249                         return 0;
250                 }
251         }
252
253         return 0;
254 }
255
256
257 /*
258  *      Use a reply packet to determine what to do.
259  */
260 static int process_reply(EAP_HANDLER *handler, tls_session_t *tls_session,
261                          REQUEST *request, RADIUS_PACKET *reply)
262 {
263         int rcode = RLM_MODULE_REJECT;
264         VALUE_PAIR *vp;
265         peap_tunnel_t *t = tls_session->opaque;
266
267         switch (reply->code) {
268         case PW_AUTHENTICATION_ACK:
269                 DEBUG2("  PEAP: Tunneled authentication was successful.");
270                 t->status = PEAP_STATUS_SENT_TLV_SUCCESS;
271                 eappeap_success(handler, tls_session);
272                 rcode = RLM_MODULE_HANDLED;
273
274                 /*
275                  *      If we've been told to use the attributes from
276                  *      the reply, then do so.
277                  *
278                  *      WARNING: This may leak information about the
279                  *      tunneled user!
280                  */
281                 if (t->use_tunneled_reply) {
282                         /*
283                          *      Clean up the tunneled reply.
284                          */
285                         pairdelete(&reply->vps, PW_PROXY_STATE);
286
287                         pairadd(&request->reply->vps, reply->vps);
288                         reply->vps = NULL;
289                 }
290                 break;
291
292         case PW_AUTHENTICATION_REJECT:
293                 DEBUG2("  PEAP: Tunneled authentication was rejected.");
294                 t->status = PEAP_STATUS_SENT_TLV_FAILURE;
295                 eappeap_failure(handler, tls_session);
296                 rcode = RLM_MODULE_HANDLED;
297                 break;
298
299         case PW_ACCESS_CHALLENGE:
300                 DEBUG2("  PEAP: Got tunneled Access-Challenge");
301
302                 /*
303                  *      Keep the State attribute, if necessary.
304                  *
305                  *      Get rid of the old State, too.
306                  */
307                 pairfree(&t->state);
308                 pairmove2(&t->state, &(reply->vps), PW_STATE);
309
310                 /*
311                  *      PEAP takes only EAP-Message attributes inside
312                  *      of the tunnel.  Any Reply-Message in the
313                  *      Access-Challenge is ignored.
314                  */
315                 vp = NULL;
316                 pairmove2(&vp, &(reply->vps), PW_EAP_MESSAGE);
317
318                 /*
319                  *      Handle the ACK, by tunneling any necessary reply
320                  *      VP's back to the client.
321                  */
322                 if (vp) {
323                         vp2eap(tls_session, vp);
324                         pairfree(&vp);
325                 }
326
327                 rcode = RLM_MODULE_HANDLED;
328                 break;
329
330         default:
331                 DEBUG2("  PEAP: Unknown RADIUS packet type %d: rejecting tunneled user", reply->code);
332                 rcode = RLM_MODULE_REJECT;
333                 break;
334         }
335
336         return rcode;
337 }
338
339
340 /*
341  *      Do post-proxy processing,
342  */
343 static int eappeap_postproxy(EAP_HANDLER *handler, void *data)
344 {
345         int rcode;
346         tls_session_t *tls_session = (tls_session_t *) data;
347
348         DEBUG2("  PEAP: Passing reply from proxy back into the tunnel.");
349
350         /*
351          *      If there was no EAP-Message in the reply packet, then
352          *      we know that we're supposed to re-run the "authenticate"
353          *      stage, in order to get the right kind of handling...
354          */
355
356         /*
357          *      Process the reply from the home server.
358          */
359         rcode = process_reply(handler, tls_session, handler->request,
360                               handler->request->proxy_reply);
361
362         /*
363          *      The proxy code uses the reply from the home server as
364          *      the basis for the reply to the NAS.  We don't want that,
365          *      so we toss it, after we've had our way with it.
366          */
367         pairfree(&handler->request->proxy_reply->vps);
368
369         switch (rcode) {
370         case RLM_MODULE_REJECT:
371                 DEBUG2("  PEAP: Reply was rejected");
372                 eaptls_fail(handler->eap_ds, 0);
373                 return 0;
374
375         case RLM_MODULE_HANDLED:
376                 DEBUG2("  PEAP: Reply was handled");
377                 eaptls_request(handler->eap_ds, tls_session);
378                 return 1;
379
380         case RLM_MODULE_OK:
381                 DEBUG2("  PEAP: Reply was OK");
382                 eaptls_success(handler->eap_ds, 0);
383                 eaptls_gen_mppe_keys(&handler->request->reply->vps,
384                                      tls_session->ssl,
385                                      "client EAP encryption");
386                 return 1;
387
388         default:
389                 DEBUG2("  PEAP: Reply was unknown.");
390                 break;
391         }
392
393         eaptls_fail(handler->eap_ds, 0);
394         return 0;
395 }
396
397
398 /*
399  *      Process the pseudo-EAP contents of the tunneled data.
400  */
401 int eappeap_process(EAP_HANDLER *handler, tls_session_t *tls_session)
402 {
403         int err;
404         peap_tunnel_t *t = tls_session->opaque;
405         REQUEST *fake;
406         VALUE_PAIR *vp;
407         int rcode = RLM_MODULE_REJECT;
408         const uint8_t *data;
409         unsigned int data_len;
410         unsigned char buffer[1024];
411 #ifndef NDEBUG
412         int i;
413 #endif
414
415         REQUEST *request = handler->request;
416         EAP_DS *eap_ds = handler->eap_ds;
417
418         /*
419          *      Grab the dirty data, and copy it to our buffer.
420          *
421          *      I *really* don't like these 'record_t' things...
422          */
423         data_len = record_minus(&tls_session->dirty_in, buffer, sizeof(buffer));
424         data = buffer;
425
426         /*
427          *      Write the data from the dirty buffer (i.e. packet
428          *      data) into the buffer which we will give to SSL for
429          *      decoding.
430          *
431          *      Some of this code COULD technically go into the TLS
432          *      module, in eaptls_process(), where it returns EAPTLS_OK.
433          *
434          *      Similarly, the writing of data to the SSL context could
435          *      go there, too...
436          */
437         BIO_write(tls_session->into_ssl, buffer, data_len);
438         record_init(&tls_session->clean_out);
439
440         /*
441          *      Read (and decrypt) the tunneled data from the SSL session,
442          *      and put it into the decrypted data buffer.
443          */
444         err = SSL_read(tls_session->ssl, tls_session->clean_out.data,
445                        sizeof(tls_session->clean_out.data));
446         if (err < 0) {
447                 /*
448                  *      FIXME: Call SSL_get_error() to see what went
449                  *      wrong.
450                  */
451                 radlog(L_INFO, "rlm_eap_peap: SSL_read Error");
452                 return RLM_MODULE_REJECT;
453         }
454
455         /*
456          *      If there's no data, maybe this is an ACK to an
457          *      MS-CHAP2-Success.
458          */
459         if (err == 0) {
460                 /*
461                  *      FIXME: Call SSL_get_error() to see what went
462                  *      wrong.
463                  */
464                 radlog(L_INFO, "rlm_eap_peap: No data inside of the tunnel.");
465                 return RLM_MODULE_REJECT;
466         }
467
468         data_len = tls_session->clean_out.used = err;
469         data = tls_session->clean_out.data;
470
471 #ifndef NDEBUG
472         if (debug_flag > 2) {
473                 for (i = 0; i < data_len; i++) {
474                         if ((i & 0x0f) == 0) printf("  PEAP tunnel data in %04x: ", i);
475
476                         printf("%02x ", data[i]);
477
478                         if ((i & 0x0f) == 0x0f) printf("\n");
479                 }
480                 if ((data_len & 0x0f) != 0) printf("\n");
481         }
482 #endif
483
484         if (!eapmessage_verify(data, data_len)) {
485                 return RLM_MODULE_REJECT;
486         }
487
488         DEBUG2("  rlm_eap_peap: Tunneled data is valid.");
489
490         /*
491          *      If we authenticated the user, then it's OK.
492          */
493         if (t->status == PEAP_STATUS_SENT_TLV_SUCCESS) {
494                 if (eappeap_check_tlv(data)) {
495                         DEBUG2("  rlm_eap_peap: Success");
496                         return RLM_MODULE_OK;
497                 }
498
499                 return RLM_MODULE_REJECT;
500
501         } else if (t->status == PEAP_STATUS_SENT_TLV_FAILURE) {
502                 DEBUG2("  rlm_eap_peap:  Had sent TLV failure, rejecting.");
503                 return RLM_MODULE_REJECT;
504         }
505
506         fake = request_alloc_fake(request);
507
508         rad_assert(fake->packet->vps == NULL);
509
510         fake->packet->vps = eap2vp(eap_ds, data, data_len);
511         if (!fake->packet->vps) {
512                 DEBUG2("  rlm_eap_peap: Unable to convert tunneled EAP packet to internal server data structures");
513                 return PW_AUTHENTICATION_REJECT;
514         }
515
516 #ifndef NDEBUG
517         if (debug_flag > 0) {
518           printf("  PEAP: Got tunneled EAP-Message\n");
519
520           for (vp = fake->packet->vps; vp != NULL; vp = vp->next) {
521             putchar('\t');vp_print(stdout, vp);putchar('\n');
522           }
523         }
524 #endif
525
526         /*
527          *      Tell the request that it's a fake one.
528          */
529         vp = pairmake("Freeradius-Proxied-To", "127.0.0.1", T_OP_EQ);
530         if (vp) {
531                 pairadd(&fake->packet->vps, vp);
532         }
533
534         /*
535          *      Update other items in the REQUEST data structure.
536          */
537         if (!t->username) {
538                 /*
539                  *      There's no User-Name in the tunneled session,
540                  *      so we add one here, by pulling it out of the
541                  *      EAP-Identity packet.
542                  */
543                 if ((data[0] == PW_EAP_IDENTITY) && (data_len > 1)) {
544                         t->username = pairmake("User-Name", "", T_OP_EQ);
545                         rad_assert(t->username != NULL);
546
547                         memcpy(t->username->strvalue, data+1, data_len - 1);
548                         t->username->length = data_len -1;
549                         t->username->strvalue[t->username->length] = 0;
550                         DEBUG2("  PEAP: Got tunneled identity of %s", t->username->strvalue);
551
552                         /*
553                          *      If there's a default EAP type,
554                          *      set it here.
555                          */
556                         if (t->default_eap_type != 0) {
557                           DEBUG2("  PEAP: Setting default EAP type for tunneled EAP session.");
558                           vp = pairmake("EAP-Type", "0", T_OP_EQ);
559                           vp->lvalue = t->default_eap_type;
560                           pairadd(&fake->config_items, vp);
561                         }
562                 }
563         } /* else there WAS a t->username */
564
565         if (t->username) {
566                 vp = paircopy(t->username);
567                 pairadd(&fake->packet->vps, vp);
568                 fake->username = pairfind(fake->packet->vps, PW_USER_NAME);
569         }
570
571         /*
572          *      Add the State attribute, too, if it exists.
573          */
574         if (t->state) {
575                 DEBUG2("  PEAP: Adding old state with %02x %02x",
576                        t->state->strvalue[0], t->state->strvalue[1]);
577                 vp = paircopy(t->state);
578                 if (vp) pairadd(&fake->packet->vps, vp);
579         }
580
581         /*
582          *      If this is set, we copy SOME of the request attributes
583          *      from outside of the tunnel to inside of the tunnel.
584          *
585          *      We copy ONLY those attributes which do NOT already
586          *      exist in the tunneled request.
587          *
588          *      This code is copied from ../rlm_eap_ttls/ttls.c
589          */
590         if (t->copy_request_to_tunnel) {
591                 VALUE_PAIR *copy;
592
593                 for (vp = request->packet->vps; vp != NULL; vp = vp->next) {
594                         /*
595                          *      The attribute is a server-side thingy,
596                          *      don't copy it.
597                          */
598                         if ((vp->attribute > 255) &&
599                             (((vp->attribute >> 16) & 0xffff) == 0)) {
600                                 continue;
601                         }
602
603                         /*
604                          *      The outside attribute is already in the
605                          *      tunnel, don't copy it.
606                          *
607                          *      This works for BOTH attributes which
608                          *      are originally in the tunneled request,
609                          *      AND attributes which are copied there
610                          *      from below.
611                          */
612                         if (pairfind(fake->packet->vps, vp->attribute)) {
613                                 continue;
614                         }
615
616                         /*
617                          *      Some attributes are handled specially.
618                          */
619                         switch (vp->attribute) {
620                                 /*
621                                  *      NEVER copy Message-Authenticator,
622                                  *      EAP-Message, or State.  They're
623                                  *      only for outside of the tunnel.
624                                  */
625                         case PW_USER_NAME:
626                         case PW_USER_PASSWORD:
627                         case PW_CHAP_PASSWORD:
628                         case PW_CHAP_CHALLENGE:
629                         case PW_PROXY_STATE:
630                         case PW_MESSAGE_AUTHENTICATOR:
631                         case PW_EAP_MESSAGE:
632                         case PW_STATE:
633                                 continue;
634                                 break;
635
636                                 /*
637                                  *      By default, copy it over.
638                                  */
639                         default:
640                                 break;
641                         }
642
643                         /*
644                          *      Don't copy from the head, we've already
645                          *      checked it.
646                          */
647                         copy = paircopy2(vp, vp->attribute);
648                         pairadd(&fake->packet->vps, copy);
649                 }
650         }
651
652 #ifndef NDEBUG
653         if (debug_flag > 0) {
654                 printf("  PEAP: Sending tunneled request\n");
655
656                 for (vp = fake->packet->vps; vp != NULL; vp = vp->next) {
657                         putchar('\t');vp_print(stdout, vp);putchar('\n');
658                 }
659         }
660 #endif
661
662         /*
663          *      Call authentication recursively, which will
664          *      do PAP, CHAP, MS-CHAP, etc.
665          */
666         rad_authenticate(fake);
667
668         /*
669          *      Note that we don't do *anything* with the reply
670          *      attributes.
671          */
672 #ifndef NDEBUG
673         if (debug_flag > 0) {
674                 printf("  PEAP: Got tunneled reply RADIUS code %d\n",
675                  fake->reply->code);
676
677                 for (vp = fake->reply->vps; vp != NULL; vp = vp->next) {
678                         putchar('\t');vp_print(stdout, vp);putchar('\n');
679                 }
680         }
681 #endif
682
683         /*
684          *      Decide what to do with the reply.
685          */
686         switch (fake->reply->code) {
687         case 0:                 /* No reply code, must be proxied... */
688                 vp = pairfind(fake->config_items, PW_PROXY_TO_REALM);
689
690                 if (vp) {
691                         eap_tunnel_data_t *tunnel;
692
693
694                         /*
695                          *      The tunneled request was NOT handled,
696                          *      it has to be proxied.  This means that
697                          *      the "authenticate" stage was never
698                          *      performed.
699                          *
700                          *      If we are told to NOT proxy the
701                          *      tunneled request as EAP, then this
702                          *      means that we've got to decode it,
703                          *      which means that we MUST run the
704                          *      "authenticate" portion by hand, here.
705                          *
706                          *      Once the tunneled EAP session is ALMOST
707                          *      done, THEN we proxy it...
708                          */
709                         if (!t->proxy_tunneled_request_as_eap) {
710                                 fake->options |= RAD_REQUEST_OPTION_PROXY_EAP;
711
712                                 /*
713                                  *      Hmm... should we check for
714                                  *      Auth-Type & EAP-Message here?
715                                  */
716
717
718                                 /*
719                                  *      Run the EAP authentication.
720                                  */
721                                 DEBUG2("  PEAP: Calling authenticate in order to initiate tunneled EAP session.");
722                                 rcode = module_authenticate(PW_AUTHTYPE_EAP, fake);
723                                 if (rcode != RLM_MODULE_HANDLED) {
724                                         DEBUG2("  PEAP: Can't handle the return code %d", rcode);
725                                         rcode = RLM_MODULE_REJECT;
726                                         goto done;
727                                 }
728
729                                 /*
730                                  *      The module decided it wasn't
731                                  *      done.  Handle it like normal.
732                                  */
733                                 if ((fake->options & RAD_REQUEST_OPTION_PROXY_EAP) == 0) {
734                                         DEBUG2("    PEAP: Cancelling proxy to realm %s until the tunneled EAP session has been established", vp->strvalue);
735                                         goto do_process;
736                                 }
737
738                                 /*
739                                  *      The module has decoded the
740                                  *      EAP-Message into another set
741                                  *      of attributes.
742                                  */
743                                 pairdelete(&fake->packet->vps,
744                                            PW_EAP_MESSAGE);
745                         }
746
747                         DEBUG2("  PEAP: Tunneled authentication will be proxied to %s", vp->strvalue);
748
749                         /*
750                          *      Tell the original request that it's going
751                          *      to be proxied.
752                          */
753                         pairmove2(&(request->config_items),
754                                   &(fake->config_items),
755                                   PW_PROXY_TO_REALM);
756
757                         /*
758                          *      Seed the proxy packet with the
759                          *      tunneled request.
760                          */
761                         rad_assert(request->proxy == NULL);
762                         request->proxy = fake->packet;
763                         fake->packet = NULL;
764
765                         /*
766                          *      Set up the callbacks for the tunnel
767                          */
768                         tunnel = rad_malloc(sizeof(*tunnel));
769                         memset(tunnel, 0, sizeof(*tunnel));
770
771                         tunnel->tls_session = tls_session;
772                         tunnel->callback = eappeap_postproxy;
773
774                         /*
775                          *      Associate the callback with the request.
776                          */
777                         rcode = request_data_add(request,
778                                                  request->proxy,
779                                                  REQUEST_DATA_EAP_TUNNEL_CALLBACK,
780                                                  tunnel, free);
781                         rad_assert(rcode == 0);
782
783                         /*
784                          *      Didn't authenticate the packet, but
785                          *      we're proxying it.
786                          */
787                         rcode = RLM_MODULE_UPDATED;
788
789                 } else {
790                         DEBUG2("  PEAP: Unknown RADIUS packet type %d: rejecting tunneled user", fake->reply->code);
791                         rcode = RLM_MODULE_REJECT;
792                 }
793                 break;
794
795         default:
796         do_process:
797                 rcode = process_reply(handler, tls_session, request,
798                                       fake->reply);
799                 break;
800         }
801
802  done:
803         request_free(&fake);
804
805         return rcode;
806 }