If the packet fails verification, silently drop it.
[freeradius.git] / src / modules / rlm_eap / radeapclient.c
1 /*
2  * radeapclient.c       EAP specific radius packet debug tool.
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 2000  The FreeRADIUS server project
21  * Copyright 2000  Miquel van Smoorenburg <miquels@cistron.nl>
22  * Copyright 2000  Alan DeKok <aland@ox.org>
23  */
24 static const char rcsid[] = "$Id$";
25
26 #include "autoconf.h"
27
28 #include <stdio.h>
29 #include <stdlib.h>
30
31 #if HAVE_UNISTD_H
32 #       include <unistd.h>
33 #endif
34
35 #include <string.h>
36 #include <ctype.h>
37 #include <netdb.h>
38 #include <sys/socket.h>
39
40 #if HAVE_NETINET_IN_H
41 #       include <netinet/in.h>
42 #endif
43
44 #if HAVE_SYS_SELECT_H
45 #       include <sys/select.h>
46 #endif
47
48 #if HAVE_GETOPT_H
49 #       include <getopt.h>
50 #endif
51
52 #include "conf.h"
53 #include "radpaths.h"
54 #include "missing.h"
55 #include "../../include/md5.h"
56
57 #include "eap_types.h"
58 #include "eap_sim.h"
59
60 extern int sha1_data_problems;
61
62 static int retries = 10;
63 static float timeout = 3;
64 static const char *secret = NULL;
65 static int do_output = 1;
66 static int do_summary = 0;
67 static int filedone = 0;
68 static int totalapp = 0;
69 static int totaldeny = 0;
70 static char filesecret[256];
71 const char *radius_dir = RADDBDIR;
72 const char *progname = "radeapclient";
73 /* lrad_randctx randctx; */
74
75
76 radlog_dest_t radlog_dest = RADLOG_STDERR;
77 const char *radlog_dir = NULL;
78 int debug_flag = 0;
79 struct main_config_t mainconfig;
80 char password[256];
81
82 struct eapsim_keys eapsim_mk;
83
84 static void NEVER_RETURNS usage(void)
85 {
86         fprintf(stderr, "Usage: radeapclient [options] server[:port] <command> [<secret>]\n");
87
88         fprintf(stderr, "  <command>    One of auth, acct, status, or disconnect.\n");
89         fprintf(stderr, "  -c count    Send each packet 'count' times.\n");
90         fprintf(stderr, "  -d raddb    Set dictionary directory.\n");
91         fprintf(stderr, "  -f file     Read packets from file, not stdin.\n");
92         fprintf(stderr, "  -r retries  If timeout, retry sending the packet 'retries' times.\n");
93         fprintf(stderr, "  -t timeout  Wait 'timeout' seconds before retrying (may be a floating point number).\n");
94         fprintf(stderr, "  -i id       Set request id to 'id'.  Values may be 0..255\n");
95         fprintf(stderr, "  -S file     read secret from file, not command line.\n");
96         fprintf(stderr, "  -q          Do not print anything out.\n");
97         fprintf(stderr, "  -s          Print out summary information of auth results.\n");
98         fprintf(stderr, "  -v          Show program version information.\n");
99         fprintf(stderr, "  -x          Debugging mode.\n");
100
101         exit(1);
102 }
103
104 int radlog(int lvl, const char *msg, ...)
105 {
106         va_list ap;
107         int r;
108
109         r = lvl; /* shut up compiler */
110
111         va_start(ap, msg);
112         r = vfprintf(stderr, msg, ap);
113         va_end(ap);
114         fputc('\n', stderr);
115
116         return r;
117 }
118
119 static int getport(const char *name)
120 {
121         struct  servent         *svp;
122
123         svp = getservbyname (name, "udp");
124         if (!svp) {
125                 return 0;
126         }
127
128         return ntohs(svp->s_port);
129 }
130
131 static int send_packet(RADIUS_PACKET *req, RADIUS_PACKET **rep)
132 {
133         int i;
134         struct timeval  tv;
135
136         for (i = 0; i < retries; i++) {
137                 fd_set          rdfdesc;
138
139                 rad_send(req, NULL, secret);
140
141                 /* And wait for reply, timing out as necessary */
142                 FD_ZERO(&rdfdesc);
143                 FD_SET(req->sockfd, &rdfdesc);
144
145                 tv.tv_sec = (int)timeout;
146                 tv.tv_usec = 1000000 * (timeout - (int) timeout);
147
148                 /* Something's wrong if we don't get exactly one fd. */
149                 if (select(req->sockfd + 1, &rdfdesc, NULL, NULL, &tv) != 1) {
150                         continue;
151                 }
152
153                 *rep = rad_recv(req->sockfd);
154                 if (*rep != NULL) {
155                         /*
156                          *      If we get a response from a machine
157                          *      which we did NOT send a request to,
158                          *      then complain.
159                          */
160                         if (((*rep)->src_ipaddr != req->dst_ipaddr) ||
161                             ((*rep)->src_port != req->dst_port)) {
162                                 char src[64], dst[64];
163
164                                 ip_ntoa(src, (*rep)->src_ipaddr);
165                                 ip_ntoa(dst, req->dst_ipaddr);
166                                 fprintf(stderr, "radclient: ERROR: Sent request to host %s port %d, got response from host %s port %d\n!",
167                                         dst, req->dst_port,
168                                         src, (*rep)->src_port);
169                                 exit(1);
170                         }
171                         break;
172                 } else {        /* NULL: couldn't receive the packet */
173                         librad_perror("radclient:");
174                         exit(1);
175                 }
176         }
177
178         /* No response or no data read (?) */
179         if (i == retries) {
180                 fprintf(stderr, "radclient: no response from server\n");
181                 exit(1);
182         }
183
184         /*
185          *      FIXME: Discard the packet & listen for another.
186          *
187          *      Hmm... we should really be using eapol_test, which does
188          *      a lot more than radeapclient.
189          */
190         if (rad_verify(*rep, req, secret) != 0) {
191                 librad_perror("rad_verify");
192                 exit(1);
193         }
194
195         if (rad_decode(*rep, req, secret) != 0) {
196                 librad_perror("rad_decode");
197                 exit(1);
198         }
199
200         /* libradius debug already prints out the value pairs for us */
201         if (!librad_debug && do_output) {
202                 printf("Received response ID %d, code %d, length = %d\n",
203                                 (*rep)->id, (*rep)->code, (*rep)->data_len);
204                 vp_printlist(stdout, (*rep)->vps);
205         }
206         if((*rep)->code == PW_AUTHENTICATION_ACK) {
207                 totalapp++;
208         } else {
209                 totaldeny++;
210         }
211
212         return 0;
213 }
214
215 static void cleanresp(RADIUS_PACKET *resp)
216 {
217         VALUE_PAIR *vpnext, *vp, **last;
218
219
220         /*
221          * maybe should just copy things we care about, or keep
222          * a copy of the original input and start from there again?
223          */
224         pairdelete(&resp->vps, PW_EAP_MESSAGE);
225         pairdelete(&resp->vps, ATTRIBUTE_EAP_BASE+PW_EAP_IDENTITY);
226
227         last = &resp->vps;
228         for(vp = *last; vp != NULL; vp = vpnext)
229         {
230                 vpnext = vp->next;
231
232                 if((vp->attribute > ATTRIBUTE_EAP_BASE &&
233                     vp->attribute <= ATTRIBUTE_EAP_BASE+256) ||
234                    (vp->attribute > ATTRIBUTE_EAP_SIM_BASE &&
235                     vp->attribute <= ATTRIBUTE_EAP_SIM_BASE+256))
236                 {
237                         *last = vpnext;
238                         pairbasicfree(vp);
239                 } else {
240                         last = &vp->next;
241                 }
242         }
243 }
244
245 /*
246  * we got an EAP-Request/Sim/Start message in a legal state.
247  *
248  * pick a supported version, put it into the reply, and insert a nonce.
249  */
250 static int process_eap_start(RADIUS_PACKET *req,
251                              RADIUS_PACKET *rep)
252 {
253         VALUE_PAIR *vp, *newvp;
254         VALUE_PAIR *anyidreq_vp, *fullauthidreq_vp, *permanentidreq_vp;
255         uint16_t *versions, selectedversion;
256         unsigned int i,versioncount;
257
258         /* form new response clear of any EAP stuff */
259         cleanresp(rep);
260
261         if((vp = pairfind(req->vps, ATTRIBUTE_EAP_SIM_BASE+PW_EAP_SIM_VERSION_LIST)) == NULL) {
262                 fprintf(stderr, "illegal start message has no VERSION_LIST\n");
263                 return 0;
264         }
265
266         versions = (uint16_t *)vp->strvalue;
267
268         /* verify that the attribute length is big enough for a length field */
269         if(vp->length < 4)
270         {
271                 fprintf(stderr, "start message has illegal VERSION_LIST. Too short: %d\n", vp->length);
272                 return 0;
273         }
274
275         versioncount = ntohs(versions[0])/2;
276         /* verify that the attribute length is big enough for the given number
277          * of versions present.
278          */
279         if((unsigned)vp->length <= (versioncount*2 + 2))
280         {
281                 fprintf(stderr, "start message is too short. Claimed %d versions does not fit in %d bytes\n", versioncount, vp->length);
282                 return 0;
283         }
284
285         /*
286          * record the versionlist for the MK calculation.
287          */
288         eapsim_mk.versionlistlen = versioncount*2;
289         memcpy(eapsim_mk.versionlist, (unsigned char *)(versions+1),
290                eapsim_mk.versionlistlen);
291
292         /* walk the version list, and pick the one we support, which
293          * at present, is 1, EAP_SIM_VERSION.
294          */
295         selectedversion=0;
296         for(i=0; i < versioncount; i++)
297         {
298                 if(ntohs(versions[i+1]) == EAP_SIM_VERSION)
299                 {
300                         selectedversion=EAP_SIM_VERSION;
301                         break;
302                 }
303         }
304         if(selectedversion == 0)
305         {
306                 fprintf(stderr, "eap-sim start message. No compatible version found. We need %d\n", EAP_SIM_VERSION);
307                 for(i=0; i < versioncount; i++)
308                 {
309                         fprintf(stderr, "\tfound version %d\n",
310                                 ntohs(versions[i+1]));
311                 }
312         }
313
314         /*
315          * now make sure that we have only FULLAUTH_ID_REQ.
316          * I think that it actually might not matter - we can answer in
317          * anyway we like, but it is illegal to have more than one
318          * present.
319          */
320         anyidreq_vp = pairfind(req->vps, ATTRIBUTE_EAP_SIM_BASE+PW_EAP_SIM_ANY_ID_REQ);
321         fullauthidreq_vp = pairfind(req->vps, ATTRIBUTE_EAP_SIM_BASE+PW_EAP_SIM_FULLAUTH_ID_REQ);
322         permanentidreq_vp = pairfind(req->vps, ATTRIBUTE_EAP_SIM_BASE+PW_EAP_SIM_PERMANENT_ID_REQ);
323
324         if(fullauthidreq_vp == NULL ||
325            anyidreq_vp != NULL ||
326            permanentidreq_vp != NULL) {
327                 fprintf(stderr, "start message has %sanyidreq, %sfullauthid and %spermanentid. Illegal combination.\n",
328                         (anyidreq_vp != NULL ? "a " : "no "),
329                         (fullauthidreq_vp != NULL ? "a " : "no "),
330                         (permanentidreq_vp != NULL ? "a " : "no "));
331                 return 0;
332         }
333
334         /* okay, we have just any_id_req there, so fill in response */
335
336         /* mark the subtype as being EAP-SIM/Response/Start */
337         newvp = paircreate(ATTRIBUTE_EAP_SIM_SUBTYPE, PW_TYPE_INTEGER);
338         newvp->lvalue = eapsim_start;
339         pairreplace(&(rep->vps), newvp);
340
341         /* insert selected version into response. */
342         newvp = paircreate(ATTRIBUTE_EAP_SIM_BASE+PW_EAP_SIM_SELECTED_VERSION,
343                            PW_TYPE_OCTETS);
344         versions = (uint16_t *)newvp->strvalue;
345         versions[0] = htons(selectedversion);
346         newvp->length = 2;
347         pairreplace(&(rep->vps), newvp);
348
349         /* record the selected version */
350         memcpy(eapsim_mk.versionselect, (unsigned char *)versions, 2);
351
352         vp = newvp = NULL;
353
354         {
355                 uint32_t nonce[4];
356                 /*
357                  * insert a nonce_mt that we make up.
358                  */
359                 newvp = paircreate(ATTRIBUTE_EAP_SIM_BASE+PW_EAP_SIM_NONCE_MT,
360                                    PW_TYPE_OCTETS);
361                 newvp->strvalue[0]=0;
362                 newvp->strvalue[1]=0;
363                 newvp->length = 18;  /* 16 bytes of nonce + padding */
364
365                 nonce[0]=lrad_rand();
366                 nonce[1]=lrad_rand();
367                 nonce[2]=lrad_rand();
368                 nonce[3]=lrad_rand();
369                 memcpy(&newvp->strvalue[2], nonce, 16);
370                 pairreplace(&(rep->vps), newvp);
371
372                 /* also keep a copy of the nonce! */
373                 memcpy(eapsim_mk.nonce_mt, nonce, 16);
374         }
375
376         {
377                 uint16_t *pidlen, idlen;
378
379                 /*
380                  * insert the identity here.
381                  */
382                 vp = pairfind(rep->vps, PW_USER_NAME);
383                 if(vp == NULL)
384                 {
385                         fprintf(stderr, "eap-sim: We need to have a User-Name attribute!\n");
386                         return 0;
387                 }
388                 newvp = paircreate(ATTRIBUTE_EAP_SIM_BASE+PW_EAP_SIM_IDENTITY,
389                                    PW_TYPE_OCTETS);
390                 idlen = strlen(vp->strvalue);
391                 pidlen = (uint16_t *)newvp->strvalue;
392                 *pidlen = htons(idlen);
393                 newvp->length = idlen + 2;
394
395                 memcpy(&newvp->strvalue[2], vp->strvalue, idlen);
396                 pairreplace(&(rep->vps), newvp);
397
398                 /* record it */
399                 memcpy(eapsim_mk.identity, vp->strvalue, idlen);
400                 eapsim_mk.identitylen = idlen;
401         }
402
403         return 1;
404 }
405
406 /*
407  * we got an EAP-Request/Sim/Challenge message in a legal state.
408  *
409  * use the RAND challenge to produce the SRES result, and then
410  * use that to generate a new MAC.
411  *
412  * for the moment, we ignore the RANDs, then just plug in the SRES
413  * values.
414  *
415  */
416 static int process_eap_challenge(RADIUS_PACKET *req,
417                                  RADIUS_PACKET *rep)
418 {
419         VALUE_PAIR *newvp;
420         VALUE_PAIR *mac, *randvp;
421         VALUE_PAIR *sres1,*sres2,*sres3;
422         VALUE_PAIR *Kc1, *Kc2, *Kc3;
423         uint8_t calcmac[20];
424
425         /* look for the AT_MAC and the challenge data */
426         mac   = pairfind(req->vps, ATTRIBUTE_EAP_SIM_BASE+PW_EAP_SIM_MAC);
427         randvp= pairfind(req->vps, ATTRIBUTE_EAP_SIM_BASE+PW_EAP_SIM_RAND);
428         if(mac == NULL || rand == NULL) {
429                 fprintf(stderr, "radeapclient: challenge message needs to contain RAND and MAC\n");
430                 return 0;
431         }
432
433         /*
434          * compare RAND with randX, to verify this is the right response
435          * to this challenge.
436          */
437         {
438           VALUE_PAIR *randcfgvp[3];
439           unsigned char *randcfg[3];
440
441           randcfg[0] = &randvp->strvalue[2];
442           randcfg[1] = &randvp->strvalue[2+EAPSIM_RAND_SIZE];
443           randcfg[2] = &randvp->strvalue[2+EAPSIM_RAND_SIZE*2];
444
445           randcfgvp[0] = pairfind(rep->vps, ATTRIBUTE_EAP_SIM_RAND1);
446           randcfgvp[1] = pairfind(rep->vps, ATTRIBUTE_EAP_SIM_RAND2);
447           randcfgvp[2] = pairfind(rep->vps, ATTRIBUTE_EAP_SIM_RAND3);
448
449           if(randcfgvp[0] == NULL ||
450              randcfgvp[1] == NULL ||
451              randcfgvp[2] == NULL) {
452             fprintf(stderr, "radeapclient: needs to have rand1, 2 and 3 set.\n");
453             return 0;
454           }
455
456           if(memcmp(randcfg[0], randcfgvp[0]->strvalue, EAPSIM_RAND_SIZE)!=0 ||
457              memcmp(randcfg[1], randcfgvp[1]->strvalue, EAPSIM_RAND_SIZE)!=0 ||
458              memcmp(randcfg[2], randcfgvp[2]->strvalue, EAPSIM_RAND_SIZE)!=0) {
459             int rnum,i,j;
460
461             fprintf(stderr, "radeapclient: one of rand 1,2,3 didn't match\n");
462             for(rnum = 0; rnum < 3; rnum++) {
463               fprintf(stderr, "received   rand %d: ", rnum);
464               j=0;
465               for (i = 0; i < EAPSIM_RAND_SIZE; i++) {
466                 if(j==4) {
467                   printf("_");
468                   j=0;
469                 }
470                 j++;
471
472                 fprintf(stderr, "%02x", randcfg[rnum][i]);
473               }
474               fprintf(stderr, "\nconfigured rand %d: ", rnum);
475               j=0;
476               for (i = 0; i < EAPSIM_RAND_SIZE; i++) {
477                 if(j==4) {
478                   printf("_");
479                   j=0;
480                 }
481                 j++;
482
483                 fprintf(stderr, "%02x", randcfgvp[rnum]->strvalue[i]);
484               }
485               fprintf(stderr, "\n");
486             }
487             return 0;
488           }
489         }
490
491         /*
492          * now dig up the sres values from the response packet,
493          * which were put there when we read things in.
494          *
495          * Really, they should be calculated from the RAND!
496          *
497          */
498         sres1 = pairfind(rep->vps, ATTRIBUTE_EAP_SIM_SRES1);
499         sres2 = pairfind(rep->vps, ATTRIBUTE_EAP_SIM_SRES2);
500         sres3 = pairfind(rep->vps, ATTRIBUTE_EAP_SIM_SRES3);
501
502         if(sres1 == NULL ||
503            sres2 == NULL ||
504            sres3 == NULL) {
505                 fprintf(stderr, "radeapclient: needs to have sres1, 2 and 3 set.\n");
506                 return 0;
507         }
508         memcpy(eapsim_mk.sres[0], sres1->strvalue, sizeof(eapsim_mk.sres[0]));
509         memcpy(eapsim_mk.sres[1], sres2->strvalue, sizeof(eapsim_mk.sres[1]));
510         memcpy(eapsim_mk.sres[2], sres3->strvalue, sizeof(eapsim_mk.sres[2]));
511
512         Kc1 = pairfind(rep->vps, ATTRIBUTE_EAP_SIM_KC1);
513         Kc2 = pairfind(rep->vps, ATTRIBUTE_EAP_SIM_KC2);
514         Kc3 = pairfind(rep->vps, ATTRIBUTE_EAP_SIM_KC3);
515
516         if(Kc1 == NULL ||
517            Kc2 == NULL ||
518            Kc3 == NULL) {
519                 fprintf(stderr, "radeapclient: needs to have Kc1, 2 and 3 set.\n");
520                 return 0;
521         }
522         memcpy(eapsim_mk.Kc[0], Kc1->strvalue, sizeof(eapsim_mk.Kc[0]));
523         memcpy(eapsim_mk.Kc[1], Kc2->strvalue, sizeof(eapsim_mk.Kc[1]));
524         memcpy(eapsim_mk.Kc[2], Kc3->strvalue, sizeof(eapsim_mk.Kc[2]));
525
526         /* all set, calculate keys */
527         eapsim_calculate_keys(&eapsim_mk);
528
529         if(debug_flag) {
530           eapsim_dump_mk(&eapsim_mk);
531         }
532
533         /* verify the MAC, now that we have all the keys. */
534         if(eapsim_checkmac(req->vps, eapsim_mk.K_aut,
535                            eapsim_mk.nonce_mt, sizeof(eapsim_mk.nonce_mt),
536                            calcmac)) {
537                 printf("MAC check succeed\n");
538         } else {
539                 int i, j;
540                 j=0;
541                 printf("calculated MAC (");
542                 for (i = 0; i < 20; i++) {
543                         if(j==4) {
544                                 printf("_");
545                                 j=0;
546                         }
547                         j++;
548
549                         printf("%02x", calcmac[i]);
550                 }
551                 printf(" did not match\n");
552                 return 0;
553         }
554
555         /* form new response clear of any EAP stuff */
556         cleanresp(rep);
557
558         /* mark the subtype as being EAP-SIM/Response/Start */
559         newvp = paircreate(ATTRIBUTE_EAP_SIM_SUBTYPE, PW_TYPE_INTEGER);
560         newvp->lvalue = eapsim_challenge;
561         pairreplace(&(rep->vps), newvp);
562
563         /*
564          * fill the SIM_MAC with a field that will in fact get appended
565          * to the packet before the MAC is calculated
566          */
567         newvp = paircreate(ATTRIBUTE_EAP_SIM_BASE+PW_EAP_SIM_MAC,
568                            PW_TYPE_OCTETS);
569         memcpy(newvp->strvalue+EAPSIM_SRES_SIZE*0, sres1->strvalue, EAPSIM_SRES_SIZE);
570         memcpy(newvp->strvalue+EAPSIM_SRES_SIZE*1, sres2->strvalue, EAPSIM_SRES_SIZE);
571         memcpy(newvp->strvalue+EAPSIM_SRES_SIZE*2, sres3->strvalue, EAPSIM_SRES_SIZE);
572         newvp->length = EAPSIM_SRES_SIZE*3;
573         pairreplace(&(rep->vps), newvp);
574
575         newvp = paircreate(ATTRIBUTE_EAP_SIM_KEY, PW_TYPE_OCTETS);
576         memcpy(newvp->strvalue,    eapsim_mk.K_aut, EAPSIM_AUTH_SIZE);
577         newvp->length = EAPSIM_AUTH_SIZE;
578         pairreplace(&(rep->vps), newvp);
579
580         return 1;
581 }
582
583 /*
584  * this code runs the EAP-SIM client state machine.
585  * the *request* is from the server.
586  * the *reponse* is to the server.
587  *
588  */
589 static int respond_eap_sim(RADIUS_PACKET *req,
590                            RADIUS_PACKET *resp)
591 {
592         enum eapsim_clientstates state, newstate;
593         enum eapsim_subtype subtype;
594         VALUE_PAIR *vp, *statevp, *radstate, *eapid;
595         char statenamebuf[32], subtypenamebuf[32];
596
597         if ((radstate = paircopy2(req->vps, PW_STATE)) == NULL)
598         {
599                 return 0;
600         }
601
602         if ((eapid = paircopy2(req->vps, ATTRIBUTE_EAP_ID)) == NULL)
603         {
604                 return 0;
605         }
606
607         /* first, dig up the state from the request packet, setting
608          * outselves to be in EAP-SIM-Start state if there is none.
609          */
610
611         if((statevp = pairfind(resp->vps, ATTRIBUTE_EAP_SIM_STATE)) == NULL)
612         {
613                 /* must be initial request */
614                 statevp = paircreate(ATTRIBUTE_EAP_SIM_STATE, PW_TYPE_INTEGER);
615                 statevp->lvalue = eapsim_client_init;
616                 pairreplace(&(resp->vps), statevp);
617         }
618         state = statevp->lvalue;
619
620         /*
621          * map the attributes, and authenticate them.
622          */
623         unmap_eapsim_types(req);
624
625         printf("<+++ EAP-sim decoded packet:\n");
626         vp_printlist(stdout, req->vps);
627
628         if((vp = pairfind(req->vps, ATTRIBUTE_EAP_SIM_SUBTYPE)) == NULL)
629         {
630                 return 0;
631         }
632         subtype = vp->lvalue;
633
634         /*
635          * look for the appropriate state, and process incoming message
636          */
637         switch(state) {
638         case eapsim_client_init:
639                 switch(subtype) {
640                 case eapsim_start:
641                         newstate = process_eap_start(req, resp);
642                         break;
643
644                 case eapsim_challenge:
645                 case eapsim_notification:
646                 case eapsim_reauth:
647                 default:
648                         fprintf(stderr, "radeapclient: sim in state %s message %s is illegal. Reply dropped.\n",
649                                 sim_state2name(state, statenamebuf, sizeof(statenamebuf)),
650                                 sim_subtype2name(subtype, subtypenamebuf, sizeof(subtypenamebuf)));
651                         /* invalid state, drop message */
652                         return 0;
653                 }
654                 break;
655
656         case eapsim_client_start:
657                 switch(subtype) {
658                 case eapsim_start:
659                         /* NOT SURE ABOUT THIS ONE, retransmit, I guess */
660                         newstate = process_eap_start(req, resp);
661                         break;
662
663                 case eapsim_challenge:
664                         newstate = process_eap_challenge(req, resp);
665                         break;
666
667                 default:
668                         fprintf(stderr, "radeapclient: sim in state %s message %s is illegal. Reply dropped.\n",
669                                 sim_state2name(state, statenamebuf, sizeof(statenamebuf)),
670                                 sim_subtype2name(subtype, subtypenamebuf, sizeof(subtypenamebuf)));
671                         /* invalid state, drop message */
672                         return 0;
673                 }
674                 break;
675
676
677         default:
678                 fprintf(stderr, "radeapclient: sim in illegal state %s\n",
679                         sim_state2name(state, statenamebuf, sizeof(statenamebuf)));
680                 return 0;
681         }
682
683         /* copy the eap state object in */
684         pairreplace(&(resp->vps), eapid);
685
686         /* update stete info, and send new packet */
687         map_eapsim_types(resp);
688
689         /* copy the radius state object in */
690         pairreplace(&(resp->vps), radstate);
691
692         statevp->lvalue = newstate;
693         return 1;
694 }
695
696 static int respond_eap_md5(RADIUS_PACKET *req,
697                            RADIUS_PACKET *rep)
698 {
699         VALUE_PAIR *vp, *id, *state;
700         int valuesize, namesize;
701         unsigned char identifier;
702         unsigned char *value;
703         unsigned char *name;
704         MD5_CTX context;
705         char    response[16];
706
707         cleanresp(rep);
708
709         if ((state = paircopy2(req->vps, PW_STATE)) == NULL)
710         {
711                 fprintf(stderr, "radeapclient: no state attribute found\n");
712                 return 0;
713         }
714
715         if ((id = paircopy2(req->vps, ATTRIBUTE_EAP_ID)) == NULL)
716         {
717                 fprintf(stderr, "radeapclient: no EAP-ID attribute found\n");
718                 return 0;
719         }
720         identifier = id->lvalue;
721
722         if ((vp = pairfind(req->vps, ATTRIBUTE_EAP_BASE+PW_EAP_MD5)) == NULL)
723         {
724                 fprintf(stderr, "radeapclient: no EAP-MD5 attribute found\n");
725                 return 0;
726         }
727
728         /* got the details of the MD5 challenge */
729         valuesize = vp->strvalue[0];
730         value = &vp->strvalue[1];
731         name  = &vp->strvalue[valuesize+1];
732         namesize = vp->length - (valuesize + 1);
733
734         /* sanitize items */
735         if(valuesize > vp->length)
736         {
737                 fprintf(stderr, "radeapclient: md5 valuesize if too big (%d > %d)\n",
738                         valuesize, vp->length);
739                 return 0;
740         }
741
742         /* now do the CHAP operation ourself, rather than build the
743          * buffer. We could also call rad_chap_encode, but it wants
744          * a CHAP-Challenge, which we don't want to bother with.
745          */
746         librad_MD5Init(&context);
747         librad_MD5Update(&context, &identifier, 1);
748         librad_MD5Update(&context, password, strlen(password));
749         librad_MD5Update(&context, value, valuesize);
750         librad_MD5Final(response, &context);
751
752         vp = paircreate(ATTRIBUTE_EAP_BASE+PW_EAP_MD5, PW_TYPE_OCTETS);
753         vp->strvalue[0]=16;
754         memcpy(&vp->strvalue[1], response, 16);
755         vp->length = 17;
756
757         pairreplace(&(rep->vps), vp);
758
759         pairreplace(&(rep->vps), id);
760
761         /* copy the state object in */
762         pairreplace(&(rep->vps), state);
763
764         return 1;
765 }
766
767
768
769 static int sendrecv_eap(RADIUS_PACKET *rep)
770 {
771         RADIUS_PACKET *req = NULL;
772         VALUE_PAIR *vp, *vpnext;
773         int tried_eap_md5 = 0;
774
775         /*
776          *      Keep a copy of the the User-Password attribute.
777          */
778         if ((vp = pairfind(rep->vps, ATTRIBUTE_EAP_MD5_PASSWORD)) != NULL) {
779                 strNcpy(password, (char *)vp->strvalue, sizeof(vp->strvalue));
780
781         } else  if ((vp = pairfind(rep->vps, PW_PASSWORD)) != NULL) {
782                 strNcpy(password, (char *)vp->strvalue, sizeof(vp->strvalue));
783                 /*
784                  *      Otherwise keep a copy of the CHAP-Password attribute.
785                  */
786         } else if ((vp = pairfind(rep->vps, PW_CHAP_PASSWORD)) != NULL) {
787                 strNcpy(password, (char *)vp->strvalue, sizeof(vp->strvalue));
788         } else {
789                 *password = '\0';
790         }
791
792  again:
793         rep->id++;
794
795         printf("\n+++> About to send encoded packet:\n");
796         vp_printlist(stdout, rep->vps);
797
798         /*
799          * if there are EAP types, encode them into an EAP-Message
800          *
801          */
802         map_eap_types(rep);
803
804         /*
805          *  Fix up Digest-Attributes issues
806          */
807         for (vp = rep->vps; vp != NULL; vp = vp->next) {
808                 switch (vp->attribute) {
809                 default:
810                         break;
811
812                 case PW_DIGEST_REALM:
813                 case PW_DIGEST_NONCE:
814                 case PW_DIGEST_METHOD:
815                 case PW_DIGEST_URI:
816                 case PW_DIGEST_QOP:
817                 case PW_DIGEST_ALGORITHM:
818                 case PW_DIGEST_BODY_DIGEST:
819                 case PW_DIGEST_CNONCE:
820                 case PW_DIGEST_NONCE_COUNT:
821                 case PW_DIGEST_USER_NAME:
822                         /* overlapping! */
823                         memmove(&vp->strvalue[2], &vp->strvalue[0], vp->length);
824                         vp->strvalue[0] = vp->attribute - PW_DIGEST_REALM + 1;
825                         vp->length += 2;
826                         vp->strvalue[1] = vp->length;
827                         vp->attribute = PW_DIGEST_ATTRIBUTES;
828                         break;
829                 }
830         }
831
832         /*
833          *      If we've already sent a packet, free up the old
834          *      one, and ensure that the next packet has a unique
835          *      ID and authentication vector.
836          */
837         if (rep->data) {
838                 free(rep->data);
839                 rep->data = NULL;
840         }
841
842         librad_md5_calc(rep->vector, rep->vector,
843                         sizeof(rep->vector));
844
845         if (*password != '\0') {
846                 if ((vp = pairfind(rep->vps, PW_PASSWORD)) != NULL) {
847                         strNcpy((char *)vp->strvalue, password, strlen(password) + 1);
848                         vp->length = strlen(password);
849
850                 } else if ((vp = pairfind(rep->vps, PW_CHAP_PASSWORD)) != NULL) {
851                         strNcpy((char *)vp->strvalue, password, strlen(password) + 1);
852                         vp->length = strlen(password);
853
854                         rad_chap_encode(rep, (char *) vp->strvalue, rep->id, vp);
855                         vp->length = 17;
856                 }
857         } /* there WAS a password */
858
859         /* send the response, wait for the next request */
860         send_packet(rep, &req);
861
862         /* okay got back the packet, go and decode the EAP-Message. */
863         unmap_eap_types(req);
864
865         printf("<+++ EAP decoded packet:\n");
866         vp_printlist(stdout, req->vps);
867
868         /* now look for the code type. */
869         for (vp = req->vps; vp != NULL; vp = vpnext) {
870                 vpnext = vp->next;
871
872                 switch (vp->attribute) {
873                 default:
874                         break;
875
876                 case ATTRIBUTE_EAP_BASE+PW_EAP_MD5:
877                         if(respond_eap_md5(req, rep) && tried_eap_md5 < 3)
878                         {
879                                 tried_eap_md5++;
880                                 goto again;
881                         }
882                         break;
883
884                 case ATTRIBUTE_EAP_BASE+PW_EAP_SIM:
885                         if(respond_eap_sim(req, rep))
886                         {
887                                 goto again;
888                         }
889                         break;
890                 }
891         }
892
893         return 1;
894 }
895
896
897 int main(int argc, char **argv)
898 {
899         RADIUS_PACKET *req;
900         char *p;
901         int c;
902         int port = 0;
903         char *filename = NULL;
904         FILE *fp;
905         int count = 1;
906         int id;
907
908         id = ((int)getpid() & 0xff);
909         librad_debug = 0;
910
911         radlog_dest = RADLOG_STDERR;
912
913         while ((c = getopt(argc, argv, "c:d:f:hi:qst:r:S:xXv")) != EOF)
914         {
915                 switch(c) {
916                 case 'c':
917                         if (!isdigit((int) *optarg))
918                                 usage();
919                         count = atoi(optarg);
920                         break;
921                 case 'd':
922                         radius_dir = optarg;
923                         break;
924                 case 'f':
925                         filename = optarg;
926                         break;
927                 case 'q':
928                         do_output = 0;
929                         break;
930                 case 'x':
931                         debug_flag++;
932                         librad_debug++;
933                         break;
934
935                 case 'X':
936 #if 0
937                   sha1_data_problems = 1; /* for debugging only */
938 #endif
939                   break;
940
941
942
943                 case 'r':
944                         if (!isdigit((int) *optarg))
945                                 usage();
946                         retries = atoi(optarg);
947                         break;
948                 case 'i':
949                         if (!isdigit((int) *optarg))
950                                 usage();
951                         id = atoi(optarg);
952                         if ((id < 0) || (id > 255)) {
953                                 usage();
954                         }
955                         break;
956                 case 's':
957                         do_summary = 1;
958                         break;
959                 case 't':
960                         if (!isdigit((int) *optarg))
961                                 usage();
962                         timeout = atof(optarg);
963                         break;
964                 case 'v':
965                         printf("radclient: $Id$ built on " __DATE__ " at " __TIME__ "\n");
966                         exit(0);
967                         break;
968                case 'S':
969                        fp = fopen(optarg, "r");
970                        if (!fp) {
971                                fprintf(stderr, "radclient: Error opening %s: %s\n",
972                                        optarg, strerror(errno));
973                                exit(1);
974                        }
975                        if (fgets(filesecret, sizeof(filesecret), fp) == NULL) {
976                                fprintf(stderr, "radclient: Error reading %s: %s\n",
977                                        optarg, strerror(errno));
978                                exit(1);
979                        }
980                        fclose(fp);
981
982                        /* truncate newline */
983                        p = filesecret + strlen(filesecret) - 1;
984                        while ((p >= filesecret) &&
985                               (*p < ' ')) {
986                                *p = '\0';
987                                --p;
988                        }
989
990                        if (strlen(filesecret) < 2) {
991                                fprintf(stderr, "radclient: Secret in %s is too short\n", optarg);
992                                exit(1);
993                        }
994                        secret = filesecret;
995                        break;
996                 case 'h':
997                 default:
998                         usage();
999                         break;
1000                 }
1001         }
1002         argc -= (optind - 1);
1003         argv += (optind - 1);
1004
1005         if ((argc < 3)  ||
1006             ((secret == NULL) && (argc < 4))) {
1007                 usage();
1008         }
1009
1010         if (dict_init(radius_dir, RADIUS_DICTIONARY) < 0) {
1011                 librad_perror("radclient");
1012                 return 1;
1013         }
1014
1015         if ((req = rad_alloc(1)) == NULL) {
1016                 librad_perror("radclient");
1017                 exit(1);
1018         }
1019
1020 #if 0
1021         {
1022                 FILE *randinit;
1023
1024                 if((randinit = fopen("/dev/urandom", "r")) == NULL)
1025                 {
1026                         perror("/dev/urandom");
1027                 } else {
1028                         fread(randctx.randrsl, 256, 1, randinit);
1029                         fclose(randinit);
1030                 }
1031         }
1032         lrad_randinit(&randctx, 1);
1033 #endif
1034
1035         req->id = id;
1036
1037         /*
1038          *      Strip port from hostname if needed.
1039          */
1040         if ((p = strchr(argv[1], ':')) != NULL) {
1041                 *p++ = 0;
1042                 port = atoi(p);
1043         }
1044
1045         /*
1046          *      See what kind of request we want to send.
1047          */
1048         if (strcmp(argv[2], "auth") == 0) {
1049                 if (port == 0) port = getport("radius");
1050                 if (port == 0) port = PW_AUTH_UDP_PORT;
1051                 req->code = PW_AUTHENTICATION_REQUEST;
1052
1053         } else if (strcmp(argv[2], "acct") == 0) {
1054                 if (port == 0) port = getport("radacct");
1055                 if (port == 0) port = PW_ACCT_UDP_PORT;
1056                 req->code = PW_ACCOUNTING_REQUEST;
1057                 do_summary = 0;
1058
1059         } else if (strcmp(argv[2], "status") == 0) {
1060                 if (port == 0) port = getport("radius");
1061                 if (port == 0) port = PW_AUTH_UDP_PORT;
1062                 req->code = PW_STATUS_SERVER;
1063
1064         } else if (strcmp(argv[2], "disconnect") == 0) {
1065                 if (port == 0) port = PW_POD_UDP_PORT;
1066                 req->code = PW_DISCONNECT_REQUEST;
1067
1068         } else if (isdigit((int) argv[2][0])) {
1069                 if (port == 0) port = getport("radius");
1070                 if (port == 0) port = PW_AUTH_UDP_PORT;
1071                 req->code = atoi(argv[2]);
1072         } else {
1073                 usage();
1074         }
1075
1076         /*
1077          *      Ensure that the configuration is initialized.
1078          */
1079         memset(&mainconfig, 0, sizeof(mainconfig));
1080
1081         /*
1082          *      Resolve hostname.
1083          */
1084         req->dst_port = port;
1085         req->dst_ipaddr = ip_getaddr(argv[1]);
1086         if (req->dst_ipaddr == INADDR_NONE) {
1087                 fprintf(stderr, "radclient: Failed to find IP address for host %s\n", argv[1]);
1088                 exit(1);
1089         }
1090
1091         /*
1092          *      Add the secret.
1093          */
1094         if (argv[3]) secret = argv[3];
1095
1096         /*
1097          *      Read valuepairs.
1098          *      Maybe read them, from stdin, if there's no
1099          *      filename, or if the filename is '-'.
1100          */
1101         if (filename && (strcmp(filename, "-") != 0)) {
1102                 fp = fopen(filename, "r");
1103                 if (!fp) {
1104                         fprintf(stderr, "radclient: Error opening %s: %s\n",
1105                                 filename, strerror(errno));
1106                         exit(1);
1107                 }
1108         } else {
1109                 fp = stdin;
1110         }
1111
1112         /*
1113          *      Send request.
1114          */
1115         if ((req->sockfd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
1116                 perror("radclient: socket: ");
1117                 exit(1);
1118         }
1119
1120         while(!filedone) {
1121                 if(req->vps) pairfree(&req->vps);
1122
1123                 if ((req->vps = readvp2(fp, &filedone, "radeapclient:"))
1124                     == NULL) {
1125                         break;
1126                 }
1127
1128                 sendrecv_eap(req);
1129         }
1130
1131         if(do_summary) {
1132                 printf("\n\t   Total approved auths:  %d\n", totalapp);
1133                 printf("\t     Total denied auths:  %d\n", totaldeny);
1134         }
1135         return 0;
1136 }