667a7dd264333627c93da2daad053d8ff274fa67
[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                 peap_tunnel_t *t = tls_session->opaque;
429
430                 t->home_access_accept = TRUE;
431
432                 /*
433                  *      Terrible hacks.
434                  */
435                 rad_assert(fake->packet == NULL);
436                 fake->packet = request->proxy;
437                 fake->packet->src_ipaddr = request->packet->src_ipaddr;
438                 request->proxy = NULL;
439
440                 rad_assert(fake->reply == NULL);
441                 fake->reply = request->proxy_reply;
442                 request->proxy_reply = NULL;
443
444                 if ((debug_flag > 0) && fr_log_fp) {
445                         fprintf(fr_log_fp, "server %s {\n", fake->server);
446                 }
447
448                 /*
449                  *      Perform a post-auth stage, which will get the EAP
450                  *      handler, too...
451                  */
452                 fake->options &= ~RAD_REQUEST_OPTION_PROXY_EAP;
453                 RDEBUG2("Passing reply back for EAP-MS-CHAP-V2");
454                 rcode = module_post_proxy(0, fake);
455
456                 /*
457                  *      FIXME: If rcode returns fail, do something
458                  *      intelligent...
459                  */
460                 rcode = rad_postauth(fake);
461
462                 if ((debug_flag > 0) && fr_log_fp) {
463                         fprintf(fr_log_fp, "} # server %s\n", fake->server);
464                         
465                         RDEBUG("Final reply from tunneled session code %d",
466                                fake->reply->code);
467                 
468                         debug_pair_list(fake->reply->vps);
469                 }
470
471                 /*
472                  *      Terrible hacks.
473                  */
474                 request->proxy = fake->packet;
475                 fake->packet = NULL;
476                 request->proxy_reply = fake->reply;
477                 fake->reply = NULL;
478
479                 /*
480                  *      And we're done with this request.
481                  */
482
483                 switch (rcode) {
484                 case RLM_MODULE_FAIL:
485                         request_free(&fake);
486                         eaptls_fail(handler, 0);
487                         return 0;
488                         break;
489
490                 default:  /* Don't Do Anything */
491                         RDEBUG2("Got reply %d", request->proxy_reply->code);
492                         break;
493                 }
494         }
495         request_free(&fake);    /* robust if fake == NULL */
496
497         /*
498          *      If there was no EAP-Message in the reply packet, then
499          *      we know that we're supposed to re-run the "authenticate"
500          *      stage, in order to get the right kind of handling...
501          */
502
503         /*
504          *      Process the reply from the home server.
505          */
506
507         rcode = process_reply(handler, tls_session, handler->request,
508                               handler->request->proxy_reply);
509
510         /*
511          *      The proxy code uses the reply from the home server as
512          *      the basis for the reply to the NAS.  We don't want that,
513          *      so we toss it, after we've had our way with it.
514          */
515         pairfree(&handler->request->proxy_reply->vps);
516
517         switch (rcode) {
518         case RLM_MODULE_REJECT:
519                 RDEBUG2("Reply was rejected");
520                 eaptls_fail(handler, 0);
521                 return 0;
522
523         case RLM_MODULE_HANDLED:
524                 RDEBUG2("Reply was handled");
525                 eaptls_request(handler->eap_ds, tls_session);
526                 return 1;
527
528         case RLM_MODULE_OK:
529                 RDEBUG2("Reply was OK");
530
531                 /*
532                  *      Success: Automatically return MPPE keys.
533                  */
534                 return eaptls_success(handler, 0);
535
536         default:
537                 RDEBUG2("Reply was unknown.");
538                 break;
539         }
540
541         eaptls_fail(handler, 0);
542         return 0;
543 }
544
545 /*
546  *      Free a request.
547  */
548 static void my_request_free(void *data)
549 {
550         REQUEST *request = (REQUEST *)data;
551
552         request_free(&request);
553 }
554
555
556 /*
557  *      Process the pseudo-EAP contents of the tunneled data.
558  */
559 int eappeap_process(EAP_HANDLER *handler, tls_session_t *tls_session)
560 {
561         peap_tunnel_t *t = tls_session->opaque;
562         REQUEST *fake;
563         VALUE_PAIR *vp;
564         int rcode = RLM_MODULE_REJECT;
565         const uint8_t   *data;
566         unsigned int data_len;
567 #ifndef NDEBUG
568         size_t i;
569 #endif
570
571         REQUEST *request = handler->request;
572         EAP_DS *eap_ds = handler->eap_ds;
573
574         /*
575          *      Just look at the buffer directly, without doing
576          *      record_minus.  This lets us avoid another data copy.
577          */
578         data_len = tls_session->clean_out.used;
579         tls_session->clean_out.used = 0;
580         data = tls_session->clean_out.data;
581
582 #ifndef NDEBUG
583         if ((debug_flag > 2) && fr_log_fp) {
584                 for (i = 0; i < data_len; i++) {
585                         if ((i & 0x0f) == 0) fprintf(fr_log_fp, "  PEAP tunnel data in %04x: ", i);
586
587                         fprintf(fr_log_fp, "%02x ", data[i]);
588
589                         if ((i & 0x0f) == 0x0f) fprintf(fr_log_fp, "\n");
590                 }
591                 if ((data_len & 0x0f) != 0) fprintf(fr_log_fp, "\n");
592         }
593 #endif
594
595         if (!eapmessage_verify(request, data, data_len)) {
596                 RDEBUG2("Tunneled data is invalid.");
597                 return RLM_MODULE_REJECT;
598         }
599
600         /*
601          *      If we authenticated the user, then it's OK.
602          */
603         if (t->status == PEAP_STATUS_SENT_TLV_SUCCESS) {
604                 if (eappeap_check_tlv(request, data)) {
605                         RDEBUG2("Success");
606                         return RLM_MODULE_OK;
607                 }
608
609                 /*
610                  *      Otherwise, the client rejected the session
611                  *      resumption.  If the session is being re-used,
612                  *      we need to do a full authentication.
613                  *
614                  *      We do this by sending an EAP-Identity request
615                  *      inside of the PEAP tunnel.
616                  */
617                 if ((t->session_resumption_state != PEAP_RESUMPTION_NO) &&
618                     SSL_session_reused(tls_session->ssl)) {
619                         eap_packet_t eap_packet;
620                         
621                         RDEBUG2("Client rejected session resumption.  Re-starting full authentication");
622                         eap_packet.code = PW_EAP_REQUEST;
623                         eap_packet.id = handler->eap_ds->response->id + 1;
624                         eap_packet.length[0] = 0;
625                         eap_packet.length[1] = EAP_HEADER_LEN + 1;
626                         eap_packet.data[0] = PW_EAP_IDENTITY;
627                         
628                         /*
629                          *      Mark session resumption status.
630                          */
631                         t->status = 0;
632                         t->session_resumption_state = PEAP_RESUMPTION_NO;
633                         
634                         (tls_session->record_plus)(&tls_session->clean_in,
635                                                    &eap_packet,
636                                                    sizeof(eap_packet));
637                         tls_handshake_send(tls_session);
638                         return RLM_MODULE_HANDLED;
639                 }
640
641                 return RLM_MODULE_REJECT;
642
643         }
644
645         if (t->status == PEAP_STATUS_SENT_TLV_FAILURE) {
646                 RDEBUG2(" Had sent TLV failure.  User was rejected earlier in this session.");
647                 return RLM_MODULE_REJECT;
648         }
649
650         fake = request_alloc_fake(request);
651
652         rad_assert(fake->packet->vps == NULL);
653
654         fake->packet->vps = eap2vp(request, eap_ds, data, data_len);
655         if (!fake->packet->vps) {
656                 request_free(&fake);
657                 RDEBUG2("Unable to convert tunneled EAP packet to internal server data structures");
658                 return PW_AUTHENTICATION_REJECT;
659         }
660
661         if ((debug_flag > 0) && fr_log_fp) {
662                 RDEBUG("Got tunneled request");
663                 
664                 debug_pair_list(fake->packet->vps);
665
666                 fprintf(fr_log_fp, "server %s {\n",
667                         (fake->server == NULL) ? "" : fake->server);
668         }
669
670         /*
671          *      Tell the request that it's a fake one.
672          */
673         vp = pairmake("Freeradius-Proxied-To", "127.0.0.1", T_OP_EQ);
674         if (vp) {
675                 pairadd(&fake->packet->vps, vp);
676         }
677
678         /*
679          *      Update other items in the REQUEST data structure.
680          */
681         if (!t->username) {
682                 /*
683                  *      There's no User-Name in the tunneled session,
684                  *      so we add one here, by pulling it out of the
685                  *      EAP-Identity packet.
686                  */
687                 if ((data[0] == PW_EAP_IDENTITY) && (data_len > 1)) {
688                         t->username = pairmake("User-Name", "", T_OP_EQ);
689                         rad_assert(t->username != NULL);
690
691                         memcpy(t->username->vp_strvalue, data + 1, data_len - 1);
692                         t->username->length = data_len - 1;
693                         t->username->vp_strvalue[t->username->length] = 0;
694                         DEBUG2("  PEAP: Got tunneled identity of %s", t->username->vp_strvalue);
695
696                         /*
697                          *      If there's a default EAP type,
698                          *      set it here.
699                          */
700                         if (t->default_eap_type != 0) {
701                                 DEBUG2("  PEAP: Setting default EAP type for tunneled EAP session.");
702                                 vp = pairmake("EAP-Type", "0", T_OP_EQ);
703                                 vp->vp_integer = t->default_eap_type;
704                                 pairadd(&fake->config_items, vp);
705                         }
706                 }
707         } /* else there WAS a t->username */
708
709         if (t->username) {
710                 vp = paircopy(t->username);
711                 pairadd(&fake->packet->vps, vp);
712                 fake->username = pairfind(fake->packet->vps, PW_USER_NAME);
713                 DEBUG2("  PEAP: Setting User-Name to %s",
714                        fake->username->vp_strvalue);
715         }
716
717         /*
718          *      Add the State attribute, too, if it exists.
719          */
720         if (t->state) {
721                 vp = paircopy(t->state);
722                 if (vp) pairadd(&fake->packet->vps, vp);
723         }
724
725         /*
726          *      If this is set, we copy SOME of the request attributes
727          *      from outside of the tunnel to inside of the tunnel.
728          *
729          *      We copy ONLY those attributes which do NOT already
730          *      exist in the tunneled request.
731          *
732          *      This code is copied from ../rlm_eap_ttls/ttls.c
733          */
734         if (t->copy_request_to_tunnel) {
735                 VALUE_PAIR *copy;
736
737                 for (vp = request->packet->vps; vp != NULL; vp = vp->next) {
738                         /*
739                          *      The attribute is a server-side thingy,
740                          *      don't copy it.
741                          */
742                         if ((vp->attribute > 255) &&
743                             (((vp->attribute >> 16) & 0xffff) == 0)) {
744                                 continue;
745                         }
746
747                         /*
748                          *      The outside attribute is already in the
749                          *      tunnel, don't copy it.
750                          *
751                          *      This works for BOTH attributes which
752                          *      are originally in the tunneled request,
753                          *      AND attributes which are copied there
754                          *      from below.
755                          */
756                         if (pairfind(fake->packet->vps, vp->attribute)) {
757                                 continue;
758                         }
759
760                         /*
761                          *      Some attributes are handled specially.
762                          */
763                         switch (vp->attribute) {
764                                 /*
765                                  *      NEVER copy Message-Authenticator,
766                                  *      EAP-Message, or State.  They're
767                                  *      only for outside of the tunnel.
768                                  */
769                         case PW_USER_NAME:
770                         case PW_USER_PASSWORD:
771                         case PW_CHAP_PASSWORD:
772                         case PW_CHAP_CHALLENGE:
773                         case PW_PROXY_STATE:
774                         case PW_MESSAGE_AUTHENTICATOR:
775                         case PW_EAP_MESSAGE:
776                         case PW_STATE:
777                                 continue;
778                                 break;
779
780                                 /*
781                                  *      By default, copy it over.
782                                  */
783                         default:
784                                 break;
785                         }
786
787                         /*
788                          *      Don't copy from the head, we've already
789                          *      checked it.
790                          */
791                         copy = paircopy2(vp, vp->attribute);
792                         pairadd(&fake->packet->vps, copy);
793                 }
794         }
795
796         if ((vp = pairfind(request->config_items, PW_VIRTUAL_SERVER)) != NULL) {
797                 fake->server = vp->vp_strvalue;
798
799         } else if (t->virtual_server) {
800                 fake->server = t->virtual_server;
801
802         } /* else fake->server == request->server */
803
804         if ((debug_flag > 0) && fr_log_fp) {
805                 fprintf(fr_log_fp, "Sending tunneled request\n");
806
807                 debug_pair_list(fake->packet->vps);
808
809                 fprintf(fr_log_fp, "server %s {\n",
810                         (fake->server == NULL) ? "" : fake->server);
811         }
812
813         /*
814          *      Call authentication recursively, which will
815          *      do PAP, CHAP, MS-CHAP, etc.
816          */
817         request->process(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",
825                         (fake->server == NULL) ? "" : fake->server);
826
827                 RDEBUG("Got tunneled reply code %d", fake->reply->code);
828                 
829                 debug_pair_list(fake->reply->vps);
830         }
831
832         /*
833          *      Decide what to do with the reply.
834          */
835         switch (fake->reply->code) {
836         case 0:                 /* No reply code, must be proxied... */
837                 vp = pairfind(fake->config_items, PW_PROXY_TO_REALM);
838
839                 if (vp) {
840                         eap_tunnel_data_t *tunnel;
841
842                         /*
843                          *      The tunneled request was NOT handled,
844                          *      it has to be proxied.  This means that
845                          *      the "authenticate" stage was never
846                          *      performed.
847                          *
848                          *      If we are told to NOT proxy the
849                          *      tunneled request as EAP, then this
850                          *      means that we've got to decode it,
851                          *      which means that we MUST run the
852                          *      "authenticate" portion by hand, here.
853                          *
854                          *      Once the tunneled EAP session is ALMOST
855                          *      done, THEN we proxy it...
856                          */
857                         if (!t->proxy_tunneled_request_as_eap) {
858                                 fake->options |= RAD_REQUEST_OPTION_PROXY_EAP;
859
860                                 /*
861                                  *      Hmm... should we check for
862                                  *      Auth-Type & EAP-Message here?
863                                  */
864
865
866                                 /*
867                                  *      Run the EAP authentication.
868                                  */
869                                 DEBUG2("  PEAP: Calling authenticate in order to initiate tunneled EAP session.");
870                                 rcode = module_authenticate(PW_AUTHTYPE_EAP, fake);
871                                 if (rcode == RLM_MODULE_OK) {
872                                         /*
873                                          *      Authentication succeeded! Rah!
874                                          */
875                                         fake->reply->code = PW_AUTHENTICATION_ACK;
876                                         goto do_process;
877                                 }
878
879                                 if (rcode != RLM_MODULE_HANDLED) {
880                                         DEBUG2("  PEAP: Can't handle the return code %d", rcode);
881                                         rcode = RLM_MODULE_REJECT;
882                                         goto done;
883                                 }
884
885                                 /*
886                                  *      The module decided it wasn't
887                                  *      done.  Handle it like normal.
888                                  */
889                                 if ((fake->options & RAD_REQUEST_OPTION_PROXY_EAP) == 0) {
890                                         DEBUG2("    PEAP: Cancelling proxy to realm %s until the tunneled EAP session has been established", vp->vp_strvalue);
891                                         goto do_process;
892                                 }
893
894                                 /*
895                                  *      The module has decoded the
896                                  *      EAP-Message into another set
897                                  *      of attributes.
898                                  */
899                                 pairdelete(&fake->packet->vps,
900                                            PW_EAP_MESSAGE);
901                         }
902
903                         DEBUG2("  PEAP: Tunneled authentication will be proxied to %s", vp->vp_strvalue);
904
905                         /*
906                          *      Tell the original request that it's going
907                          *      to be proxied.
908                          */
909                         pairmove2(&(request->config_items),
910                                   &(fake->config_items),
911                                   PW_PROXY_TO_REALM);
912
913                         /*
914                          *      Seed the proxy packet with the
915                          *      tunneled request.
916                          */
917                         rad_assert(request->proxy == NULL);
918                         request->proxy = fake->packet;
919                         fake->packet = NULL;
920                         rad_free(&fake->reply);
921                         fake->reply = NULL;
922
923                         /*
924                          *      Set up the callbacks for the tunnel
925                          */
926                         tunnel = rad_malloc(sizeof(*tunnel));
927                         memset(tunnel, 0, sizeof(*tunnel));
928
929                         tunnel->tls_session = tls_session;
930                         tunnel->callback = eappeap_postproxy;
931
932                         /*
933                          *      Associate the callback with the request.
934                          */
935                         rcode = request_data_add(request,
936                                                  request->proxy,
937                                                  REQUEST_DATA_EAP_TUNNEL_CALLBACK,
938                                                  tunnel, free);
939                         rad_assert(rcode == 0);
940
941                         /*
942                          *      We're not proxying it as EAP, so we've got
943                          *      to do the callback later.
944                          */
945                         if ((fake->options & RAD_REQUEST_OPTION_PROXY_EAP) != 0) {
946                                 DEBUG2("  PEAP: Remembering to do EAP-MS-CHAP-V2 post-proxy.");
947
948                                 /*
949                                  *      rlm_eap.c has taken care of associating
950                                  *      the handler with the fake request.
951                                  *
952                                  *      So we associate the fake request with
953                                  *      this request.
954                                  */
955                                 rcode = request_data_add(request,
956                                                          request->proxy,
957                                                          REQUEST_DATA_EAP_MSCHAP_TUNNEL_CALLBACK,
958                                                          fake, my_request_free);
959                                 rad_assert(rcode == 0);
960
961                                 /*
962                                  *      Do NOT free the fake request!
963                                  */
964                                 return RLM_MODULE_UPDATED;
965                         }
966
967                         /*
968                          *      Didn't authenticate the packet, but
969                          *      we're proxying it.
970                          */
971                         rcode = RLM_MODULE_UPDATED;
972
973                 } else {
974                         DEBUG2("  PEAP: Unknown RADIUS packet type %d: rejecting tunneled user", fake->reply->code);
975                         rcode = RLM_MODULE_REJECT;
976                 }
977                 break;
978
979         default:
980         do_process:
981                 rcode = process_reply(handler, tls_session, request,
982                                       fake->reply);
983                 break;
984         }
985
986  done:
987         request_free(&fake);
988
989         return rcode;
990 }