ee25c9bb6c593e260ae96a6a1cb27576617d9106
[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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  *
20  *   Copyright 2003 Alan DeKok <aland@freeradius.org>
21  *   Copyright 2006 The FreeRADIUS server project
22  */
23
24 #include <freeradius-devel/ident.h>
25 RCSID("$Id$")
26
27 #include "eap_peap.h"
28
29 /*
30  *      Send protected EAP-Failure
31  *
32  *       Result-TLV = Failure
33  */
34 static int eappeap_failure(EAP_HANDLER *handler, tls_session_t *tls_session)
35 {
36         uint8_t tlv_packet[11];
37         REQUEST *request = handler->request;
38
39         RDEBUG2("FAILURE");
40
41         tlv_packet[0] = PW_EAP_REQUEST;
42         tlv_packet[1] = handler->eap_ds->response->id +1;
43         tlv_packet[2] = 0;
44         tlv_packet[3] = 11;     /* length of this packet */
45         tlv_packet[4] = PW_EAP_TLV;
46         tlv_packet[5] = 0x80;
47         tlv_packet[6] = EAP_TLV_ACK_RESULT;
48         tlv_packet[7] = 0;
49         tlv_packet[8] = 2;      /* length of the data portion */
50         tlv_packet[9] = 0;
51         tlv_packet[10] = EAP_TLV_FAILURE;
52
53         (tls_session->record_plus)(&tls_session->clean_in, tlv_packet, 11);
54
55         /*
56          *      FIXME: Check the return code.
57          */
58         tls_handshake_send(tls_session);
59
60         return 1;
61 }
62
63
64 /*
65  *      Send protected EAP-Success
66  *
67  *       Result-TLV = Success
68  */
69 static int eappeap_success(EAP_HANDLER *handler, tls_session_t *tls_session)
70 {
71         uint8_t tlv_packet[11];
72         REQUEST *request = handler->request;
73
74         RDEBUG2("SUCCESS");
75
76         tlv_packet[0] = PW_EAP_REQUEST;
77         tlv_packet[1] = handler->eap_ds->response->id +1;
78         tlv_packet[2] = 0;
79         tlv_packet[3] = 11;     /* length of this packet */
80         tlv_packet[4] = PW_EAP_TLV;
81         tlv_packet[5] = 0x80;   /* mandatory AVP */
82         tlv_packet[6] = EAP_TLV_ACK_RESULT;
83         tlv_packet[7] = 0;
84         tlv_packet[8] = 2;      /* length of the data portion */
85         tlv_packet[9] = 0;
86         tlv_packet[10] = EAP_TLV_SUCCESS;
87
88         (tls_session->record_plus)(&tls_session->clean_in, tlv_packet, 11);
89
90         /*
91          *      FIXME: Check the return code.
92          */
93         tls_handshake_send(tls_session);
94
95         return 1;
96 }
97
98
99 /*
100  *      Verify the tunneled EAP message.
101  */
102 static int eapmessage_verify(REQUEST *request,
103                              const uint8_t *data, unsigned int data_len)
104 {
105         const eap_packet_t *eap_packet = (const eap_packet_t *) data;
106         uint8_t eap_type;
107         char buffer[256];
108
109         if (!data || (data_len <= 1)) {
110                 return 0;
111         }
112
113         eap_type = *data;
114         switch (eap_type) {
115         case PW_EAP_IDENTITY:
116                 RDEBUG2("Identity - %*s",
117                        data_len - 1, data + 1);
118                 return 1;
119                 break;
120
121                 /*
122                  *      If the first byte of the packet is
123                  *      EAP-Response, and the EAP data is a TLV,
124                  *      then it looks OK...
125                  */
126         case PW_EAP_RESPONSE:
127                 if (eap_packet->data[0] == PW_EAP_TLV) {
128                         RDEBUG2("Received EAP-TLV response.");
129                         return 1;
130                 }
131                 RDEBUG2("Got something weird.");
132                 break;
133
134
135                 /*
136                  *      We normally do Microsoft MS-CHAPv2 (26), versus
137                  *      Cisco MS-CHAPv2 (29).
138                  */
139         case PW_EAP_MSCHAPV2:
140         default:
141                 RDEBUG2("EAP type %s",
142                        eaptype_type2name(eap_type,
143                                          buffer, sizeof(buffer)));
144                 return 1;
145                 break;
146         }
147
148         return 0;
149 }
150
151 /*
152  *      Convert a pseudo-EAP packet to a list of VALUE_PAIR's.
153  */
154 static VALUE_PAIR *eap2vp(REQUEST *request, EAP_DS *eap_ds,
155                           const uint8_t *data, size_t data_len)
156 {
157         size_t total;
158         VALUE_PAIR *vp = NULL, *head, **tail;
159
160         if (data_len > 65535) return NULL; /* paranoia */
161
162         vp = paircreate(PW_EAP_MESSAGE, PW_TYPE_OCTETS);
163         if (!vp) {
164                 RDEBUG2("Failure in creating VP");
165                 return NULL;
166         }
167
168         total = data_len;
169         if (total > 249) total = 249;
170
171         /*
172          *      Hand-build an EAP packet from the crap in PEAP version 0.
173          */
174         vp->vp_octets[0] = PW_EAP_RESPONSE;
175         vp->vp_octets[1] = eap_ds->response->id;
176         vp->vp_octets[2] = (data_len + EAP_HEADER_LEN) >> 8;
177         vp->vp_octets[3] = (data_len + EAP_HEADER_LEN) & 0xff;
178
179         memcpy(vp->vp_octets + EAP_HEADER_LEN, data, total);
180         vp->length = EAP_HEADER_LEN + total;
181
182         head = vp;
183         tail = &(vp->next);
184         while (total < data_len) {
185                 int vp_len;
186
187
188                 vp = paircreate(PW_EAP_MESSAGE, PW_TYPE_OCTETS);
189                 if (!vp) {
190                         RDEBUG2("Failure in creating VP");
191                         pairfree(&head);
192                         return NULL;
193                 }
194                 vp_len = (data_len - total);
195                 if (vp_len > 253) vp_len = 253;
196
197                 memcpy(vp->vp_octets, data + total, vp_len);
198                 vp->length = vp_len;
199                 
200                 total += vp_len;
201                 *tail = vp;
202                 tail = &(vp->next);
203         }
204
205         return head;
206 }
207
208
209 /*
210  *      Convert a list of VALUE_PAIR's to an EAP packet, through the
211  *      simple expedient of dumping the EAP message
212  */
213 static int vp2eap(tls_session_t *tls_session, VALUE_PAIR *vp)
214 {
215         /*
216          *      Skip the id, code, and length.  Just write the EAP
217          *      type & data to the client.
218          */
219 #ifndef NDEBUG
220         if ((debug_flag > 2) && fr_log_fp) {
221                 size_t i, total;
222                 VALUE_PAIR *this;
223
224                 total = 0;
225
226                 for (this = vp; this != NULL; this = this->next) {
227                         int start = 0;
228
229                         if (this == vp) start = EAP_HEADER_LEN;
230                         
231                         for (i = start; i < vp->length; i++) {
232                                 if ((total & 0x0f) == 0) fprintf(fr_log_fp, "  PEAP tunnel data out %04x: ", total);
233
234                                 fprintf(fr_log_fp, "%02x ", vp->vp_octets[i]);
235                                 
236                                 if ((total & 0x0f) == 0x0f) fprintf(fr_log_fp, "\n");
237                                 total++;
238                         }
239                 }
240                 if ((total & 0x0f) != 0) fprintf(fr_log_fp, "\n");
241         }
242 #endif
243
244         /*
245          *      Send the EAP data, WITHOUT the header.
246          */
247         (tls_session->record_plus)(&tls_session->clean_in,
248                                    vp->vp_octets + EAP_HEADER_LEN,
249                                    vp->length - EAP_HEADER_LEN);
250         
251         /*
252          *      Send the rest of the EAP data.
253          */
254         for (vp = vp->next; vp != NULL; vp = vp->next) {
255                 (tls_session->record_plus)(&tls_session->clean_in,
256                                            vp->vp_octets, vp->length);
257         }
258
259         tls_handshake_send(tls_session);
260
261         return 1;
262 }
263
264
265 /*
266  *      See if there's a TLV in the response.
267  */
268 static int eappeap_check_tlv(REQUEST *request, const uint8_t *data)
269 {
270         const eap_packet_t *eap_packet = (const eap_packet_t *) data;
271
272         /*
273          *      Look for success or failure.
274          */
275         if ((eap_packet->code == PW_EAP_RESPONSE) &&
276             (eap_packet->data[0] == PW_EAP_TLV)) {
277                 if (data[10] == EAP_TLV_SUCCESS) {
278                         return 1;
279                 }
280
281                 if (data[10] == EAP_TLV_FAILURE) {
282                         RDEBUG2("Client rejected our response.  The password is probably incorrect.");
283                         return 0;
284                 }
285         }
286
287         return 0;
288 }
289
290
291 /*
292  *      Use a reply packet to determine what to do.
293  */
294 static int process_reply(EAP_HANDLER *handler, tls_session_t *tls_session,
295                          REQUEST *request, RADIUS_PACKET *reply)
296 {
297         int rcode = RLM_MODULE_REJECT;
298         VALUE_PAIR *vp;
299         peap_tunnel_t *t = tls_session->opaque;
300
301         if ((debug_flag > 0) && fr_log_fp) {
302                 RDEBUG("Got tunneled reply RADIUS code %d",
303                        reply->code);
304
305                 debug_pair_list(reply->vps);
306         }
307
308         switch (reply->code) {
309         case PW_AUTHENTICATION_ACK:
310                 RDEBUG2("Tunneled authentication was successful.");
311                 t->status = PEAP_STATUS_SENT_TLV_SUCCESS;
312                 eappeap_success(handler, tls_session);
313                 rcode = RLM_MODULE_HANDLED;
314
315                 /*
316                  *      If we've been told to use the attributes from
317                  *      the reply, then do so.
318                  *
319                  *      WARNING: This may leak information about the
320                  *      tunneled user!
321                  */
322                 if (t->use_tunneled_reply) {
323                         RDEBUG2("Saving tunneled attributes for later");
324
325                         /*
326                          *      Clean up the tunneled reply.
327                          */
328                         pairdelete(&reply->vps, PW_PROXY_STATE);
329                         pairdelete(&reply->vps, PW_EAP_MESSAGE);
330                         pairdelete(&reply->vps, PW_MESSAGE_AUTHENTICATOR);
331
332                         t->accept_vps = reply->vps;
333                         reply->vps = NULL;
334                 }
335                 break;
336
337         case PW_AUTHENTICATION_REJECT:
338                 RDEBUG2("Tunneled authentication was rejected.");
339                 t->status = PEAP_STATUS_SENT_TLV_FAILURE;
340                 eappeap_failure(handler, tls_session);
341                 rcode = RLM_MODULE_HANDLED;
342                 break;
343
344         case PW_ACCESS_CHALLENGE:
345                 RDEBUG2("Got tunneled Access-Challenge");
346
347                 /*
348                  *      Keep the State attribute, if necessary.
349                  *
350                  *      Get rid of the old State, too.
351                  */
352                 pairfree(&t->state);
353                 pairmove2(&t->state, &(reply->vps), PW_STATE);
354
355                 /*
356                  *      PEAP takes only EAP-Message attributes inside
357                  *      of the tunnel.  Any Reply-Message in the
358                  *      Access-Challenge is ignored.
359                  */
360                 vp = NULL;
361                 pairmove2(&vp, &(reply->vps), PW_EAP_MESSAGE);
362
363                 /*
364                  *      Handle EAP-MSCHAP-V2, where Access-Accept's
365                  *      from the home server may contain MS-CHAP-Success,
366                  *      which the module turns into challenges, so that
367                  *      the client may respond to the challenge with
368                  *      an "ack" packet.
369                  */
370                 if (t->home_access_accept && t->use_tunneled_reply) {
371                         RDEBUG2("Saving tunneled attributes for later");
372
373                         /*
374                          *      Clean up the tunneled reply.
375                          */
376                         pairdelete(&reply->vps, PW_PROXY_STATE);
377                         pairdelete(&reply->vps, PW_MESSAGE_AUTHENTICATOR);
378
379                         t->accept_vps = reply->vps;
380                         reply->vps = NULL;
381                 }
382
383                 /*
384                  *      Handle the ACK, by tunneling any necessary reply
385                  *      VP's back to the client.
386                  */
387                 if (vp) {
388                         vp2eap(tls_session, vp);
389                         pairfree(&vp);
390                 }
391
392                 rcode = RLM_MODULE_HANDLED;
393                 break;
394
395         default:
396                 RDEBUG2("Unknown RADIUS packet type %d: rejecting tunneled user", reply->code);
397                 rcode = RLM_MODULE_REJECT;
398                 break;
399         }
400
401         return rcode;
402 }
403
404
405 /*
406  *      Do post-proxy processing,
407  */
408 static int eappeap_postproxy(EAP_HANDLER *handler, void *data)
409 {
410         int rcode;
411         tls_session_t *tls_session = (tls_session_t *) data;
412         REQUEST *fake, *request = handler->request;
413
414         RDEBUG2("Passing reply from proxy back into the tunnel.");
415
416         /*
417          *      If there was a fake request associated with the proxied
418          *      request, do more processing of it.
419          */
420         fake = (REQUEST *) request_data_get(handler->request,
421                                             handler->request->proxy,
422                                             REQUEST_DATA_EAP_MSCHAP_TUNNEL_CALLBACK);
423
424         /*
425          *      Do the callback, if it exists, and if it was a success.
426          */
427         if (fake && (handler->request->proxy_reply->code == PW_AUTHENTICATION_ACK)) {
428                 REQUEST *request = handler->request;
429                 peap_tunnel_t *t = tls_session->opaque;
430
431                 t->home_access_accept = TRUE;
432
433                 /*
434                  *      Terrible hacks.
435                  */
436                 rad_assert(fake->packet == NULL);
437                 fake->packet = request->proxy;
438                 fake->packet->src_ipaddr = request->packet->src_ipaddr;
439                 request->proxy = NULL;
440
441                 rad_assert(fake->reply == NULL);
442                 fake->reply = request->proxy_reply;
443                 request->proxy_reply = NULL;
444
445                 if ((debug_flag > 0) && fr_log_fp) {
446                         fprintf(fr_log_fp, "server %s {\n", fake->server);
447                 }
448
449                 /*
450                  *      Perform a post-auth stage, which will get the EAP
451                  *      handler, too...
452                  */
453                 fake->options &= ~RAD_REQUEST_OPTION_PROXY_EAP;
454                 RDEBUG2("Passing reply back for EAP-MS-CHAP-V2");
455                 rcode = module_post_proxy(0, fake);
456
457                 /*
458                  *      FIXME: If rcode returns fail, do something
459                  *      intelligent...
460                  */
461                 rcode = rad_postauth(fake);
462
463                 if ((debug_flag > 0) && fr_log_fp) {
464                         fprintf(fr_log_fp, "} # server %s\n", fake->server);
465                         
466                         RDEBUG("Final reply from tunneled session code %d",
467                                fake->reply->code);
468                 
469                         debug_pair_list(fake->reply->vps);
470                 }
471
472                 /*
473                  *      Terrible hacks.
474                  */
475                 request->proxy = fake->packet;
476                 fake->packet = NULL;
477                 request->proxy_reply = fake->reply;
478                 fake->reply = NULL;
479
480                 /*
481                  *      And we're done with this request.
482                  */
483
484                 switch (rcode) {
485                 case RLM_MODULE_FAIL:
486                         request_free(&fake);
487                         eaptls_fail(handler, 0);
488                         return 0;
489                         break;
490
491                 default:  /* Don't Do Anything */
492                         RDEBUG2("Got reply %d", request->proxy_reply->code);
493                         break;
494                 }
495         }
496         request_free(&fake);    /* robust if fake == NULL */
497
498         /*
499          *      If there was no EAP-Message in the reply packet, then
500          *      we know that we're supposed to re-run the "authenticate"
501          *      stage, in order to get the right kind of handling...
502          */
503
504         /*
505          *      Process the reply from the home server.
506          */
507
508         rcode = process_reply(handler, tls_session, handler->request,
509                               handler->request->proxy_reply);
510
511         /*
512          *      The proxy code uses the reply from the home server as
513          *      the basis for the reply to the NAS.  We don't want that,
514          *      so we toss it, after we've had our way with it.
515          */
516         pairfree(&handler->request->proxy_reply->vps);
517
518         switch (rcode) {
519         case RLM_MODULE_REJECT:
520                 RDEBUG2("Reply was rejected");
521                 eaptls_fail(handler, 0);
522                 return 0;
523
524         case RLM_MODULE_HANDLED:
525                 RDEBUG2("Reply was handled");
526                 eaptls_request(handler->eap_ds, tls_session);
527                 return 1;
528
529         case RLM_MODULE_OK:
530                 RDEBUG2("Reply was OK");
531
532                 /*
533                  *      Success: Automatically return MPPE keys.
534                  */
535                 eaptls_success(handler, 0);
536                 return 1;
537
538         default:
539                 RDEBUG2("Reply was unknown.");
540                 break;
541         }
542
543         eaptls_fail(handler, 0);
544         return 0;
545 }
546
547 /*
548  *      Free a request.
549  */
550 static void my_request_free(void *data)
551 {
552         REQUEST *request = (REQUEST *)data;
553
554         request_free(&request);
555 }
556
557
558 /*
559  *      Process the pseudo-EAP contents of the tunneled data.
560  */
561 int eappeap_process(EAP_HANDLER *handler, tls_session_t *tls_session)
562 {
563         peap_tunnel_t *t = tls_session->opaque;
564         REQUEST *fake;
565         VALUE_PAIR *vp;
566         int rcode = RLM_MODULE_REJECT;
567         const uint8_t   *data;
568         unsigned int data_len;
569 #ifndef NDEBUG
570         size_t i;
571 #endif
572
573         REQUEST *request = handler->request;
574         EAP_DS *eap_ds = handler->eap_ds;
575
576         /*
577          *      Just look at the buffer directly, without doing
578          *      record_minus.  This lets us avoid another data copy.
579          */
580         data_len = tls_session->clean_out.used;
581         tls_session->clean_out.used = 0;
582         data = tls_session->clean_out.data;
583
584 #ifndef NDEBUG
585         if ((debug_flag > 2) && fr_log_fp) {
586                 for (i = 0; i < data_len; i++) {
587                         if ((i & 0x0f) == 0) fprintf(fr_log_fp, "  PEAP tunnel data in %04x: ", i);
588
589                         fprintf(fr_log_fp, "%02x ", data[i]);
590
591                         if ((i & 0x0f) == 0x0f) fprintf(fr_log_fp, "\n");
592                 }
593                 if ((data_len & 0x0f) != 0) fprintf(fr_log_fp, "\n");
594         }
595 #endif
596
597         if (!eapmessage_verify(request, data, data_len)) {
598                 RDEBUG2("Tunneled data is invalid.");
599                 return RLM_MODULE_REJECT;
600         }
601
602         /*
603          *      If we authenticated the user, then it's OK.
604          */
605         if (t->status == PEAP_STATUS_SENT_TLV_SUCCESS) {
606                 if (eappeap_check_tlv(request, data)) {
607                         RDEBUG2("Success");
608                         return RLM_MODULE_OK;
609                 }
610
611                 /*
612                  *      Otherwise, the client rejected the session
613                  *      resumption.  If the session is being re-used,
614                  *      we need to do a full authentication.
615                  *
616                  *      We do this by sending an EAP-Identity request
617                  *      inside of the PEAP tunnel.
618                  */
619                 if ((t->session_resumption_state != PEAP_RESUMPTION_NO) &&
620                     SSL_session_reused(tls_session->ssl)) {
621                         eap_packet_t eap_packet;
622                         
623                         RDEBUG2("Client rejected session resumption.  Re-starting full authentication");
624                         eap_packet.code = PW_EAP_REQUEST;
625                         eap_packet.id = handler->eap_ds->response->id + 1;
626                         eap_packet.length[0] = 0;
627                         eap_packet.length[1] = EAP_HEADER_LEN + 1;
628                         eap_packet.data[0] = PW_EAP_IDENTITY;
629                         
630                         /*
631                          *      Mark session resumption status.
632                          */
633                         t->status = 0;
634                         t->session_resumption_state = PEAP_RESUMPTION_NO;
635                         
636                         (tls_session->record_plus)(&tls_session->clean_in,
637                                                    &eap_packet,
638                                                    sizeof(eap_packet));
639                         tls_handshake_send(tls_session);
640                         return RLM_MODULE_HANDLED;
641                 }
642
643                 return RLM_MODULE_REJECT;
644
645         }
646
647         if (t->status == PEAP_STATUS_SENT_TLV_FAILURE) {
648                 RDEBUG2(" Had sent TLV failure.  User was rejected earlier in this session.");
649                 return RLM_MODULE_REJECT;
650         }
651
652         fake = request_alloc_fake(request);
653
654         rad_assert(fake->packet->vps == NULL);
655
656         fake->packet->vps = eap2vp(request, eap_ds, data, data_len);
657         if (!fake->packet->vps) {
658                 request_free(&fake);
659                 RDEBUG2("Unable to convert tunneled EAP packet to internal server data structures");
660                 return PW_AUTHENTICATION_REJECT;
661         }
662
663         if ((debug_flag > 0) && fr_log_fp) {
664                 RDEBUG("Got tunnled request");
665                 
666                 debug_pair_list(fake->packet->vps);
667
668                 fprintf(fr_log_fp, "server %s {\n", fake->server);
669         }
670
671         /*
672          *      Tell the request that it's a fake one.
673          */
674         vp = pairmake("Freeradius-Proxied-To", "127.0.0.1", T_OP_EQ);
675         if (vp) {
676                 pairadd(&fake->packet->vps, vp);
677         }
678
679         /*
680          *      Update other items in the REQUEST data structure.
681          */
682         if (!t->username) {
683                 /*
684                  *      There's no User-Name in the tunneled session,
685                  *      so we add one here, by pulling it out of the
686                  *      EAP-Identity packet.
687                  */
688                 if ((data[0] == PW_EAP_IDENTITY) && (data_len > 1)) {
689                         t->username = pairmake("User-Name", "", T_OP_EQ);
690                         rad_assert(t->username != NULL);
691
692                         memcpy(t->username->vp_strvalue, data + 1, data_len - 1);
693                         t->username->length = data_len - 1;
694                         t->username->vp_strvalue[t->username->length] = 0;
695                         DEBUG2("  PEAP: Got tunneled identity of %s", t->username->vp_strvalue);
696
697                         /*
698                          *      If there's a default EAP type,
699                          *      set it here.
700                          */
701                         if (t->default_eap_type != 0) {
702                                 DEBUG2("  PEAP: Setting default EAP type for tunneled EAP session.");
703                                 vp = pairmake("EAP-Type", "0", T_OP_EQ);
704                                 vp->vp_integer = t->default_eap_type;
705                                 pairadd(&fake->config_items, vp);
706                         }
707                 }
708         } /* else there WAS a t->username */
709
710         if (t->username) {
711                 vp = paircopy(t->username);
712                 pairadd(&fake->packet->vps, vp);
713                 fake->username = pairfind(fake->packet->vps, PW_USER_NAME);
714                 DEBUG2("  PEAP: Setting User-Name to %s",
715                        fake->username->vp_strvalue);
716         }
717
718         /*
719          *      Add the State attribute, too, if it exists.
720          */
721         if (t->state) {
722                 vp = paircopy(t->state);
723                 if (vp) pairadd(&fake->packet->vps, vp);
724         }
725
726         /*
727          *      If this is set, we copy SOME of the request attributes
728          *      from outside of the tunnel to inside of the tunnel.
729          *
730          *      We copy ONLY those attributes which do NOT already
731          *      exist in the tunneled request.
732          *
733          *      This code is copied from ../rlm_eap_ttls/ttls.c
734          */
735         if (t->copy_request_to_tunnel) {
736                 VALUE_PAIR *copy;
737
738                 for (vp = request->packet->vps; vp != NULL; vp = vp->next) {
739                         /*
740                          *      The attribute is a server-side thingy,
741                          *      don't copy it.
742                          */
743                         if ((vp->attribute > 255) &&
744                             (((vp->attribute >> 16) & 0xffff) == 0)) {
745                                 continue;
746                         }
747
748                         /*
749                          *      The outside attribute is already in the
750                          *      tunnel, don't copy it.
751                          *
752                          *      This works for BOTH attributes which
753                          *      are originally in the tunneled request,
754                          *      AND attributes which are copied there
755                          *      from below.
756                          */
757                         if (pairfind(fake->packet->vps, vp->attribute)) {
758                                 continue;
759                         }
760
761                         /*
762                          *      Some attributes are handled specially.
763                          */
764                         switch (vp->attribute) {
765                                 /*
766                                  *      NEVER copy Message-Authenticator,
767                                  *      EAP-Message, or State.  They're
768                                  *      only for outside of the tunnel.
769                                  */
770                         case PW_USER_NAME:
771                         case PW_USER_PASSWORD:
772                         case PW_CHAP_PASSWORD:
773                         case PW_CHAP_CHALLENGE:
774                         case PW_PROXY_STATE:
775                         case PW_MESSAGE_AUTHENTICATOR:
776                         case PW_EAP_MESSAGE:
777                         case PW_STATE:
778                                 continue;
779                                 break;
780
781                                 /*
782                                  *      By default, copy it over.
783                                  */
784                         default:
785                                 break;
786                         }
787
788                         /*
789                          *      Don't copy from the head, we've already
790                          *      checked it.
791                          */
792                         copy = paircopy2(vp, vp->attribute);
793                         pairadd(&fake->packet->vps, copy);
794                 }
795         }
796
797         if ((vp = pairfind(request->config_items, PW_VIRTUAL_SERVER)) != NULL) {
798                 fake->server = vp->vp_strvalue;
799
800         } else if (t->virtual_server) {
801                 fake->server = t->virtual_server;
802
803         } /* else fake->server == request->server */
804
805         if ((debug_flag > 0) && fr_log_fp) {
806                 fprintf(fr_log_fp, "Sending tunneled request\n");
807
808                 debug_pair_list(fake->packet->vps);
809
810                 fprintf(fr_log_fp, "server %s {\n", fake->server);
811         }
812
813         /*
814          *      Call authentication recursively, which will
815          *      do PAP, CHAP, MS-CHAP, etc.
816          */
817         rad_authenticate(fake);
818
819         /*
820          *      Note that we don't do *anything* with the reply
821          *      attributes.
822          */
823         if ((debug_flag > 0) && fr_log_fp) {
824                 fprintf(fr_log_fp, "} # server %s\n", fake->server);
825
826                 RDEBUG("Got tunneled reply code %d", fake->reply->code);
827                 
828                 debug_pair_list(fake->reply->vps);
829         }
830
831         /*
832          *      Decide what to do with the reply.
833          */
834         switch (fake->reply->code) {
835         case 0:                 /* No reply code, must be proxied... */
836                 vp = pairfind(fake->config_items, PW_PROXY_TO_REALM);
837
838                 if (vp) {
839                         eap_tunnel_data_t *tunnel;
840
841                         /*
842                          *      The tunneled request was NOT handled,
843                          *      it has to be proxied.  This means that
844                          *      the "authenticate" stage was never
845                          *      performed.
846                          *
847                          *      If we are told to NOT proxy the
848                          *      tunneled request as EAP, then this
849                          *      means that we've got to decode it,
850                          *      which means that we MUST run the
851                          *      "authenticate" portion by hand, here.
852                          *
853                          *      Once the tunneled EAP session is ALMOST
854                          *      done, THEN we proxy it...
855                          */
856                         if (!t->proxy_tunneled_request_as_eap) {
857                                 fake->options |= RAD_REQUEST_OPTION_PROXY_EAP;
858
859                                 /*
860                                  *      Hmm... should we check for
861                                  *      Auth-Type & EAP-Message here?
862                                  */
863
864
865                                 /*
866                                  *      Run the EAP authentication.
867                                  */
868                                 DEBUG2("  PEAP: Calling authenticate in order to initiate tunneled EAP session.");
869                                 rcode = module_authenticate(PW_AUTHTYPE_EAP, fake);
870                                 if (rcode == RLM_MODULE_OK) {
871                                         /*
872                                          *      Authentication succeeded! Rah!
873                                          */
874                                         fake->reply->code = PW_AUTHENTICATION_ACK;
875                                         goto do_process;
876                                 }
877
878                                 if (rcode != RLM_MODULE_HANDLED) {
879                                         DEBUG2("  PEAP: Can't handle the return code %d", rcode);
880                                         rcode = RLM_MODULE_REJECT;
881                                         goto done;
882                                 }
883
884                                 /*
885                                  *      The module decided it wasn't
886                                  *      done.  Handle it like normal.
887                                  */
888                                 if ((fake->options & RAD_REQUEST_OPTION_PROXY_EAP) == 0) {
889                                         DEBUG2("    PEAP: Cancelling proxy to realm %s until the tunneled EAP session has been established", vp->vp_strvalue);
890                                         goto do_process;
891                                 }
892
893                                 /*
894                                  *      The module has decoded the
895                                  *      EAP-Message into another set
896                                  *      of attributes.
897                                  */
898                                 pairdelete(&fake->packet->vps,
899                                            PW_EAP_MESSAGE);
900                         }
901
902                         DEBUG2("  PEAP: Tunneled authentication will be proxied to %s", vp->vp_strvalue);
903
904                         /*
905                          *      Tell the original request that it's going
906                          *      to be proxied.
907                          */
908                         pairmove2(&(request->config_items),
909                                   &(fake->config_items),
910                                   PW_PROXY_TO_REALM);
911
912                         /*
913                          *      Seed the proxy packet with the
914                          *      tunneled request.
915                          */
916                         rad_assert(request->proxy == NULL);
917                         request->proxy = fake->packet;
918                         fake->packet = NULL;
919                         rad_free(&fake->reply);
920                         fake->reply = NULL;
921
922                         /*
923                          *      Set up the callbacks for the tunnel
924                          */
925                         tunnel = rad_malloc(sizeof(*tunnel));
926                         memset(tunnel, 0, sizeof(*tunnel));
927
928                         tunnel->tls_session = tls_session;
929                         tunnel->callback = eappeap_postproxy;
930
931                         /*
932                          *      Associate the callback with the request.
933                          */
934                         rcode = request_data_add(request,
935                                                  request->proxy,
936                                                  REQUEST_DATA_EAP_TUNNEL_CALLBACK,
937                                                  tunnel, free);
938                         rad_assert(rcode == 0);
939
940                         /*
941                          *      We're not proxying it as EAP, so we've got
942                          *      to do the callback later.
943                          */
944                         if ((fake->options & RAD_REQUEST_OPTION_PROXY_EAP) != 0) {
945                                 DEBUG2("  PEAP: Remembering to do EAP-MS-CHAP-V2 post-proxy.");
946
947                                 /*
948                                  *      rlm_eap.c has taken care of associating
949                                  *      the handler with the fake request.
950                                  *
951                                  *      So we associate the fake request with
952                                  *      this request.
953                                  */
954                                 rcode = request_data_add(request,
955                                                          request->proxy,
956                                                          REQUEST_DATA_EAP_MSCHAP_TUNNEL_CALLBACK,
957                                                          fake, my_request_free);
958                                 rad_assert(rcode == 0);
959
960                                 /*
961                                  *      Do NOT free the fake request!
962                                  */
963                                 return RLM_MODULE_UPDATED;
964                         }
965
966                         /*
967                          *      Didn't authenticate the packet, but
968                          *      we're proxying it.
969                          */
970                         rcode = RLM_MODULE_UPDATED;
971
972                 } else {
973                         DEBUG2("  PEAP: Unknown RADIUS packet type %d: rejecting tunneled user", fake->reply->code);
974                         rcode = RLM_MODULE_REJECT;
975                 }
976                 break;
977
978         default:
979         do_process:
980                 rcode = process_reply(handler, tls_session, request,
981                                       fake->reply);
982                 break;
983         }
984
985  done:
986         request_free(&fake);
987
988         return rcode;
989 }