]> git.ozlabs.org Git - ppp.git/blob - pppd/plugins/radius/radius.c
pppd: Fix compilation on Linux when IPV6 is disabled (#360)
[ppp.git] / pppd / plugins / radius / radius.c
1 /***********************************************************************
2 *
3 * radius.c
4 *
5 * RADIUS plugin for pppd.  Performs PAP, CHAP, MS-CHAP, MS-CHAPv2
6 * authentication using RADIUS.
7 *
8 * Copyright (C) 2002 Roaring Penguin Software Inc.
9 *
10 * Based on a patch for ipppd, which is:
11 *    Copyright (C) 1996, Matjaz Godec <gody@elgo.si>
12 *    Copyright (C) 1996, Lars Fenneberg <in5y050@public.uni-hamburg.de>
13 *    Copyright (C) 1997, Miguel A.L. Paraz <map@iphil.net>
14 *
15 * Uses radiusclient library, which is:
16 *    Copyright (C) 1995,1996,1997,1998 Lars Fenneberg <lf@elemental.net>
17 *    Copyright (C) 2002 Roaring Penguin Software Inc.
18 *
19 * MPPE support is by Ralf Hofmann, <ralf.hofmann@elvido.net>, with
20 * modification from Frank Cusack, <frank@google.com>.
21 *
22 * This plugin may be distributed according to the terms of the GNU
23 * General Public License, version 2 or (at your option) any later version.
24 *
25 ***********************************************************************/
26 static char const RCSID[] =
27 "$Id: radius.c,v 1.32 2008/05/26 09:18:08 paulus Exp $";
28
29 #include <syslog.h>
30 #include <sys/types.h>
31 #include <sys/time.h>
32 #include <sys/param.h>
33 #include <string.h>
34 #include <netinet/in.h>
35 #include <stdlib.h>
36
37 #include <pppd/pppd.h>
38 #include <pppd/chap-new.h>
39 #ifdef PPP_WITH_CHAPMS
40 #include <pppd/chap_ms.h>
41 #ifdef PPP_WITH_MPPE
42 #include <pppd/mppe.h>
43 #include <pppd/md5.h>
44 #endif
45 #endif
46 #include <pppd/fsm.h>
47 #include <pppd/ipcp.h>
48
49 #include "radiusclient.h"
50
51 #define BUF_LEN 1024
52
53 #define MD5_HASH_SIZE   16
54
55 #define MSDNS 1
56
57 static char *config_file = NULL;
58 static int add_avp(char **);
59 static struct avpopt {
60     char *vpstr;
61     struct avpopt *next;
62 } *avpopt = NULL;
63 static bool portnummap = 0;
64
65 static option_t Options[] = {
66     { "radius-config-file", o_string, &config_file },
67     { "avpair", o_special, add_avp },
68     { "map-to-ttyname", o_bool, &portnummap,
69         "Set Radius NAS-Port attribute value via libradiusclient library", OPT_PRIO | 1 },
70     { "map-to-ifname", o_bool, &portnummap,
71         "Set Radius NAS-Port attribute to number as in interface name (Default)", OPT_PRIOSUB | 0 },
72     { NULL }
73 };
74
75 static int radius_secret_check(void);
76 static int radius_pap_auth(char *user,
77                            char *passwd,
78                            char **msgp,
79                            struct wordlist **paddrs,
80                            struct wordlist **popts);
81 static int radius_chap_verify(char *user, char *ourname, int id,
82                               struct chap_digest_type *digest,
83                               unsigned char *challenge,
84                               unsigned char *response,
85                               char *message, int message_space);
86
87 static void radius_ip_up(void *opaque, int arg);
88 static void radius_ip_down(void *opaque, int arg);
89 static void make_username_realm(char *user);
90 static int radius_setparams(VALUE_PAIR *vp, char *msg, REQUEST_INFO *req_info,
91                             struct chap_digest_type *digest,
92                             unsigned char *challenge,
93                             char *message, int message_space);
94 static void radius_choose_ip(u_int32_t *addrp);
95 static int radius_init(char *msg);
96 static int get_client_port(char *ifname);
97 static int radius_allowed_address(u_int32_t addr);
98 static void radius_acct_interim(void *);
99 #ifdef PPP_WITH_MPPE
100 static int radius_setmppekeys(VALUE_PAIR *vp, REQUEST_INFO *req_info,
101                               unsigned char *);
102 static int radius_setmppekeys2(VALUE_PAIR *vp, REQUEST_INFO *req_info);
103 #endif
104
105 #ifndef MAXSESSIONID
106 #define MAXSESSIONID 32
107 #endif
108
109 #ifndef MAXCLASSLEN
110 #define MAXCLASSLEN 500
111 #endif
112
113 struct radius_state {
114     int initialized;
115     int client_port;
116     int choose_ip;
117     int any_ip_addr_ok;
118     int done_chap_once;
119     u_int32_t ip_addr;
120     char user[MAXNAMELEN];
121     char config_file[MAXPATHLEN];
122     char session_id[MAXSESSIONID + 1];
123     time_t start_time;
124     int acct_interim_interval;
125     SERVER *authserver;         /* Authentication server to use */
126     SERVER *acctserver;         /* Accounting server to use */
127     int class_len;
128     char class[MAXCLASSLEN];
129     VALUE_PAIR *avp;    /* Additional (user supplied) vp's to send to server */
130 };
131
132 void (*radius_attributes_hook)(VALUE_PAIR *) = NULL;
133
134 /* The pre_auth_hook MAY set authserver and acctserver if it wants.
135    In that case, they override the values in the radiusclient.conf file */
136 void (*radius_pre_auth_hook)(char const *user,
137                              SERVER **authserver,
138                              SERVER **acctserver) = NULL;
139
140 static struct radius_state rstate;
141
142 char pppd_version[] = PPPD_VERSION;
143
144 /**********************************************************************
145 * %FUNCTION: plugin_init
146 * %ARGUMENTS:
147 *  None
148 * %RETURNS:
149 *  Nothing
150 * %DESCRIPTION:
151 *  Initializes RADIUS plugin.
152 ***********************************************************************/
153 void
154 plugin_init(void)
155 {
156     pap_check_hook = radius_secret_check;
157     pap_auth_hook = radius_pap_auth;
158
159     chap_check_hook = radius_secret_check;
160     chap_verify_hook = radius_chap_verify;
161
162     ip_choose_hook = radius_choose_ip;
163     allowed_address_hook = radius_allowed_address;
164
165     add_notifier(&ip_up_notifier, radius_ip_up, NULL);
166     add_notifier(&ip_down_notifier, radius_ip_down, NULL);
167
168     memset(&rstate, 0, sizeof(rstate));
169
170     strlcpy(rstate.config_file, "/etc/radiusclient/radiusclient.conf",
171             sizeof(rstate.config_file));
172
173     add_options(Options);
174
175     info("RADIUS plugin initialized.");
176 }
177
178 /**********************************************************************
179 * %FUNCTION: add_avp
180 * %ARGUMENTS:
181 *  argv -- the <attribute=value> pair to add
182 * %RETURNS:
183 *  1
184 * %DESCRIPTION:
185 *  Adds an av pair to be passed on to the RADIUS server on each request.
186 ***********************************************************************/
187 static int
188 add_avp(char **argv)
189 {
190     struct avpopt *p = malloc(sizeof(struct avpopt));
191
192     /* Append to a list of vp's for later parsing */
193     p->vpstr = strdup(*argv);
194     p->next = avpopt;
195     avpopt = p;
196
197     return 1;
198 }
199
200 /**********************************************************************
201 * %FUNCTION: radius_secret_check
202 * %ARGUMENTS:
203 *  None
204 * %RETURNS:
205 *  1 -- we are ALWAYS willing to supply a secret. :-)
206 * %DESCRIPTION:
207 * Tells pppd that we will try to authenticate the peer, and not to
208 * worry about looking in *-secrets file(s)
209 ***********************************************************************/
210 static int
211 radius_secret_check(void)
212 {
213     return 1;
214 }
215
216 /**********************************************************************
217 * %FUNCTION: radius_choose_ip
218 * %ARGUMENTS:
219 *  addrp -- where to store the IP address
220 * %RETURNS:
221 *  Nothing
222 * %DESCRIPTION:
223 *  If RADIUS server has specified an IP address, it is stored in *addrp.
224 ***********************************************************************/
225 static void
226 radius_choose_ip(u_int32_t *addrp)
227 {
228     if (rstate.choose_ip) {
229         *addrp = rstate.ip_addr;
230     }
231 }
232
233 /**********************************************************************
234 * %FUNCTION: radius_pap_auth
235 * %ARGUMENTS:
236 *  user -- user-name of peer
237 *  passwd -- password supplied by peer
238 *  msgp -- Message which will be sent in PAP response
239 *  paddrs -- set to a list of possible peer IP addresses
240 *  popts -- set to a list of additional pppd options
241 * %RETURNS:
242 *  1 if we can authenticate, -1 if we cannot.
243 * %DESCRIPTION:
244 * Performs PAP authentication using RADIUS
245 ***********************************************************************/
246 static int
247 radius_pap_auth(char *user,
248                 char *passwd,
249                 char **msgp,
250                 struct wordlist **paddrs,
251                 struct wordlist **popts)
252 {
253     VALUE_PAIR *send, *received;
254     UINT4 av_type;
255     int result;
256     static char radius_msg[BUF_LEN];
257
258     radius_msg[0] = 0;
259     *msgp = radius_msg;
260
261     if (radius_init(radius_msg) < 0) {
262         return 0;
263     }
264
265     /* Put user with potentially realm added in rstate.user */
266     make_username_realm(user);
267
268     if (radius_pre_auth_hook) {
269         radius_pre_auth_hook(rstate.user,
270                              &rstate.authserver,
271                              &rstate.acctserver);
272     }
273
274     send = NULL;
275     received = NULL;
276
277     /* Hack... the "port" is the ppp interface number.  Should really be
278        the tty */
279     rstate.client_port = get_client_port(portnummap ? devnam : ifname);
280
281     av_type = PW_FRAMED;
282     rc_avpair_add(&send, PW_SERVICE_TYPE, &av_type, 0, VENDOR_NONE);
283
284     av_type = PW_PPP;
285     rc_avpair_add(&send, PW_FRAMED_PROTOCOL, &av_type, 0, VENDOR_NONE);
286
287     rc_avpair_add(&send, PW_USER_NAME, rstate.user , 0, VENDOR_NONE);
288     rc_avpair_add(&send, PW_USER_PASSWORD, passwd, 0, VENDOR_NONE);
289     if (*remote_number) {
290         rc_avpair_add(&send, PW_CALLING_STATION_ID, remote_number, 0,
291                        VENDOR_NONE);
292     } else if (ipparam)
293         rc_avpair_add(&send, PW_CALLING_STATION_ID, ipparam, 0, VENDOR_NONE);
294
295     /* Add user specified vp's */
296     if (rstate.avp)
297         rc_avpair_insert(&send, NULL, rc_avpair_copy(rstate.avp));
298
299     if (rstate.authserver) {
300         result = rc_auth_using_server(rstate.authserver,
301                                       rstate.client_port, send,
302                                       &received, radius_msg, NULL);
303     } else {
304         result = rc_auth(rstate.client_port, send, &received, radius_msg, NULL);
305     }
306
307     if (result == OK_RC) {
308         if (radius_setparams(received, radius_msg, NULL, NULL, NULL, NULL, 0) < 0) {
309             result = ERROR_RC;
310         }
311     }
312
313     /* free value pairs */
314     rc_avpair_free(received);
315     rc_avpair_free(send);
316
317     return (result == OK_RC) ? 1 : 0;
318 }
319
320 /**********************************************************************
321 * %FUNCTION: radius_chap_verify
322 * %ARGUMENTS:
323 *  user -- name of the peer
324 *  ourname -- name for this machine
325 *  id -- the ID byte in the challenge
326 *  digest -- points to the structure representing the digest type
327 *  challenge -- the challenge string we sent (length in first byte)
328 *  response -- the response (hash) the peer sent back (length in 1st byte)
329 *  message -- space for a message to be returned to the peer
330 *  message_space -- number of bytes available at *message.
331 * %RETURNS:
332 *  1 if the response is good, 0 if it is bad
333 * %DESCRIPTION:
334 * Performs CHAP, MS-CHAP and MS-CHAPv2 authentication using RADIUS.
335 ***********************************************************************/
336 static int
337 radius_chap_verify(char *user, char *ourname, int id,
338                    struct chap_digest_type *digest,
339                    unsigned char *challenge, unsigned char *response,
340                    char *message, int message_space)
341 {
342     VALUE_PAIR *send, *received;
343     UINT4 av_type;
344     static char radius_msg[BUF_LEN];
345     int result;
346     int challenge_len, response_len;
347     u_char cpassword[MAX_RESPONSE_LEN + 1];
348 #ifdef PPP_WITH_MPPE
349     /* Need the RADIUS secret and Request Authenticator to decode MPPE */
350     REQUEST_INFO request_info, *req_info = &request_info;
351 #else
352     REQUEST_INFO *req_info = NULL;
353 #endif
354
355     challenge_len = *challenge++;
356     response_len = *response++;
357
358     radius_msg[0] = 0;
359
360     if (radius_init(radius_msg) < 0) {
361         error("%s", radius_msg);
362         return 0;
363     }
364
365     /* return error for types we can't handle */
366     if ((digest->code != CHAP_MD5)
367 #ifdef PPP_WITH_CHAPMS
368         && (digest->code != CHAP_MICROSOFT)
369         && (digest->code != CHAP_MICROSOFT_V2)
370 #endif
371         ) {
372         error("RADIUS: Challenge type %u unsupported", digest->code);
373         return 0;
374     }
375
376     /* Put user with potentially realm added in rstate.user */
377     if (!rstate.done_chap_once) {
378         make_username_realm(user);
379         rstate.client_port = get_client_port (portnummap ? devnam : ifname);
380         if (radius_pre_auth_hook) {
381             radius_pre_auth_hook(rstate.user,
382                                  &rstate.authserver,
383                                  &rstate.acctserver);
384         }
385     }
386
387     send = received = NULL;
388
389     av_type = PW_FRAMED;
390     rc_avpair_add (&send, PW_SERVICE_TYPE, &av_type, 0, VENDOR_NONE);
391
392     av_type = PW_PPP;
393     rc_avpair_add (&send, PW_FRAMED_PROTOCOL, &av_type, 0, VENDOR_NONE);
394
395     rc_avpair_add (&send, PW_USER_NAME, rstate.user , 0, VENDOR_NONE);
396
397     /*
398      * add the challenge and response fields
399      */
400     switch (digest->code) {
401     case CHAP_MD5:
402         /* CHAP-Challenge and CHAP-Password */
403         if (response_len != MD5_HASH_SIZE)
404             return 0;
405         cpassword[0] = id;
406         memcpy(&cpassword[1], response, MD5_HASH_SIZE);
407
408         rc_avpair_add(&send, PW_CHAP_CHALLENGE,
409                       challenge, challenge_len, VENDOR_NONE);
410         rc_avpair_add(&send, PW_CHAP_PASSWORD,
411                       cpassword, MD5_HASH_SIZE + 1, VENDOR_NONE);
412         break;
413
414 #ifdef PPP_WITH_CHAPMS
415     case CHAP_MICROSOFT:
416     {
417         /* MS-CHAP-Challenge and MS-CHAP-Response */
418         u_char *p = cpassword;
419
420         if (response_len != MS_CHAP_RESPONSE_LEN)
421             return 0;
422         *p++ = id;
423         /* The idiots use a different field order in RADIUS than PPP */
424         *p++ = response[MS_CHAP_USENT];
425         memcpy(p, response, MS_CHAP_LANMANRESP_LEN + MS_CHAP_NTRESP_LEN);
426
427         rc_avpair_add(&send, PW_MS_CHAP_CHALLENGE,
428                       challenge, challenge_len, VENDOR_MICROSOFT);
429         rc_avpair_add(&send, PW_MS_CHAP_RESPONSE,
430                       cpassword, MS_CHAP_RESPONSE_LEN + 1, VENDOR_MICROSOFT);
431         break;
432     }
433
434     case CHAP_MICROSOFT_V2:
435     {
436         /* MS-CHAP-Challenge and MS-CHAP2-Response */
437         u_char *p = cpassword;
438
439         if (response_len != MS_CHAP2_RESPONSE_LEN)
440             return 0;
441         *p++ = id;
442         /* The idiots use a different field order in RADIUS than PPP */
443         *p++ = response[MS_CHAP2_FLAGS];
444         memcpy(p, response, (MS_CHAP2_PEER_CHAL_LEN + MS_CHAP2_RESERVED_LEN
445                              + MS_CHAP2_NTRESP_LEN));
446
447         rc_avpair_add(&send, PW_MS_CHAP_CHALLENGE,
448                       challenge, challenge_len, VENDOR_MICROSOFT);
449         rc_avpair_add(&send, PW_MS_CHAP2_RESPONSE,
450                       cpassword, MS_CHAP2_RESPONSE_LEN + 1, VENDOR_MICROSOFT);
451         break;
452     }
453 #endif
454     }
455
456     if (*remote_number) {
457         rc_avpair_add(&send, PW_CALLING_STATION_ID, remote_number, 0,
458                        VENDOR_NONE);
459     } else if (ipparam)
460         rc_avpair_add(&send, PW_CALLING_STATION_ID, ipparam, 0, VENDOR_NONE);
461
462     /* Add user specified vp's */
463     if (rstate.avp)
464         rc_avpair_insert(&send, NULL, rc_avpair_copy(rstate.avp));
465
466     /*
467      * make authentication with RADIUS server
468      */
469
470     if (rstate.authserver) {
471         result = rc_auth_using_server(rstate.authserver,
472                                       rstate.client_port, send,
473                                       &received, radius_msg, req_info);
474     } else {
475         result = rc_auth(rstate.client_port, send, &received, radius_msg,
476                          req_info);
477     }
478
479     strlcpy(message, radius_msg, message_space);
480
481     if (result == OK_RC) {
482         if (!rstate.done_chap_once) {
483             if (radius_setparams(received, radius_msg, req_info, digest,
484                                  challenge, message, message_space) < 0) {
485                 error("%s", radius_msg);
486                 result = ERROR_RC;
487             } else {
488                 rstate.done_chap_once = 1;
489             }
490         }
491     }
492
493     rc_avpair_free(received);
494     rc_avpair_free (send);
495     return (result == OK_RC);
496 }
497
498 /**********************************************************************
499 * %FUNCTION: make_username_realm
500 * %ARGUMENTS:
501 *  user -- the user given to pppd
502 * %RETURNS:
503 *  Nothing
504 * %DESCRIPTION:
505 *  Copies user into rstate.user.  If it lacks a realm (no "@domain" part),
506 * then the default realm from the radiusclient config file is added.
507 ***********************************************************************/
508 static void
509 make_username_realm(char *user)
510 {
511     char *default_realm;
512
513     if ( user != NULL ) {
514         strlcpy(rstate.user, user, sizeof(rstate.user));
515     }  else {
516         rstate.user[0] = 0;
517     }
518
519     default_realm = rc_conf_str("default_realm");
520
521     if (!strchr(rstate.user, '@') &&
522         default_realm &&
523         (*default_realm != '\0')) {
524         strlcat(rstate.user, "@", sizeof(rstate.user));
525         strlcat(rstate.user, default_realm, sizeof(rstate.user));
526     }
527 }
528
529 /**********************************************************************
530 * %FUNCTION: radius_setparams
531 * %ARGUMENTS:
532 *  vp -- received value-pairs
533 *  msg -- buffer in which to place error message.  Holds up to BUF_LEN chars
534 * %RETURNS:
535 *  >= 0 on success; -1 on failure
536 * %DESCRIPTION:
537 *  Parses attributes sent by RADIUS server and sets them in pppd.
538 ***********************************************************************/
539 static int
540 radius_setparams(VALUE_PAIR *vp, char *msg, REQUEST_INFO *req_info,
541                  struct chap_digest_type *digest, unsigned char *challenge,
542                  char *message, int message_space)
543 {
544     u_int32_t remote;
545     int ms_chap2_success = 0;
546 #ifdef PPP_WITH_MPPE
547     int mppe_enc_keys = 0;      /* whether or not these were received */
548     int mppe_enc_policy = 0;
549     int mppe_enc_types = 0;
550 #endif
551 #ifdef MSDNS
552     ipcp_options *wo = &ipcp_wantoptions[0];
553     ipcp_options *ao = &ipcp_allowoptions[0];
554     int got_msdns_1 = 0;
555     int got_msdns_2 = 0;
556     int got_wins_1 = 0;
557     int got_wins_2 = 0;
558 #endif
559
560     /* Send RADIUS attributes to anyone else who might be interested */
561     if (radius_attributes_hook) {
562         (*radius_attributes_hook)(vp);
563     }
564
565     /*
566      * service type (if not framed then quit),
567      * new IP address (RADIUS can define static IP for some users),
568      */
569
570     while (vp) {
571         if (vp->vendorcode == VENDOR_NONE) {
572             switch (vp->attribute) {
573             case PW_SERVICE_TYPE:
574                 /* check for service type       */
575                 /* if not FRAMED then exit      */
576                 if (vp->lvalue != PW_FRAMED) {
577                     slprintf(msg, BUF_LEN, "RADIUS: wrong service type %ld for %s",
578                              vp->lvalue, rstate.user);
579                     return -1;
580                 }
581                 break;
582
583             case PW_FRAMED_PROTOCOL:
584                 /* check for framed protocol type       */
585                 /* if not PPP then also exit            */
586                 if (vp->lvalue != PW_PPP) {
587                     slprintf(msg, BUF_LEN, "RADIUS: wrong framed protocol %ld for %s",
588                              vp->lvalue, rstate.user);
589                     return -1;
590                 }
591                 break;
592
593             case PW_SESSION_TIMEOUT:
594                 /* Session timeout */
595                 maxconnect = vp->lvalue;
596                 break;
597            case PW_FILTER_ID:
598                /* packet filter, will be handled via ip-(up|down) script */
599                script_setenv("RADIUS_FILTER_ID", (char*) vp->strvalue, 1);
600                break;
601            case PW_FRAMED_ROUTE:
602                /* route, will be handled via ip-(up|down) script */
603                script_setenv("RADIUS_FRAMED_ROUTE", (char*) vp->strvalue, 1);
604                break;
605            case PW_IDLE_TIMEOUT:
606                /* idle parameter */
607                idle_time_limit = vp->lvalue;
608                break;
609             case PW_SESSION_OCTETS_LIMIT:
610                 /* Session traffic limit */
611                 maxoctets = vp->lvalue;
612                 break;
613             case PW_OCTETS_DIRECTION:
614                 /* Session traffic limit direction check */
615                 maxoctets_dir = ( vp->lvalue > 4 ) ? 0 : vp->lvalue ;
616                 break;
617             case PW_ACCT_INTERIM_INTERVAL:
618                 /* Send accounting updates every few seconds */
619                 rstate.acct_interim_interval = vp->lvalue;
620                 /* RFC says it MUST NOT be less than 60 seconds */
621                 /* We use "0" to signify not sending updates */
622                 if (rstate.acct_interim_interval &&
623                     rstate.acct_interim_interval < 60) {
624                     rstate.acct_interim_interval = 60;
625                 }
626                 break;
627             case PW_FRAMED_IP_ADDRESS:
628                 /* seting up remote IP addresses */
629                 remote = vp->lvalue;
630                 if (remote == 0xffffffff) {
631                     /* 0xffffffff means user should be allowed to select one */
632                     rstate.any_ip_addr_ok = 1;
633                 } else if (remote != 0xfffffffe) {
634                     /* 0xfffffffe means NAS should select an ip address */
635                     remote = htonl(vp->lvalue);
636                     if (bad_ip_adrs (remote)) {
637                         slprintf(msg, BUF_LEN, "RADIUS: bad remote IP address %I for %s",
638                                  remote, rstate.user);
639                         return -1;
640                     }
641                     rstate.choose_ip = 1;
642                     rstate.ip_addr = remote;
643                 }
644                 break;
645             case PW_NAS_IP_ADDRESS:
646                 wo->ouraddr = htonl(vp->lvalue);
647                 break;
648             case PW_CLASS:
649                 /* Save Class attribute to pass it in accounting request */
650                 if (vp->lvalue <= MAXCLASSLEN) {
651                     rstate.class_len=vp->lvalue;
652                     memcpy(rstate.class, vp->strvalue, rstate.class_len);
653                 } /* else too big for our buffer - ignore it */
654                 break;
655             case PW_FRAMED_MTU:
656                 netif_set_mtu(rstate.client_port,MIN(netif_get_mtu(rstate.client_port),vp->lvalue));
657                 break;
658             }
659
660
661         } else if (vp->vendorcode == VENDOR_MICROSOFT) {
662 #ifdef PPP_WITH_CHAPMS
663             switch (vp->attribute) {
664             case PW_MS_CHAP2_SUCCESS:
665                 if ((vp->lvalue != 43) || strncmp((char*) vp->strvalue + 1, "S=", 2)) {
666                     slprintf(msg,BUF_LEN,"RADIUS: bad MS-CHAP2-Success packet");
667                     return -1;
668                 }
669                 if (message != NULL)
670                     strlcpy(message, (char*) vp->strvalue + 1, message_space);
671                 ms_chap2_success = 1;
672                 break;
673
674 #ifdef PPP_WITH_MPPE
675             case PW_MS_CHAP_MPPE_KEYS:
676                 if (radius_setmppekeys(vp, req_info, challenge) < 0) {
677                     slprintf(msg, BUF_LEN,
678                              "RADIUS: bad MS-CHAP-MPPE-Keys attribute");
679                     return -1;
680                 }
681                 mppe_enc_keys = 1;
682                 break;
683
684             case PW_MS_MPPE_SEND_KEY:
685             case PW_MS_MPPE_RECV_KEY:
686                 if (radius_setmppekeys2(vp, req_info) < 0) {
687                     slprintf(msg, BUF_LEN,
688                              "RADIUS: bad MS-MPPE-%s-Key attribute",
689                              (vp->attribute == PW_MS_MPPE_SEND_KEY)?
690                              "Send": "Recv");
691                     return -1;
692                 }
693                 mppe_enc_keys = 1;
694                 break;
695
696             case PW_MS_MPPE_ENCRYPTION_POLICY:
697                 mppe_enc_policy = vp->lvalue;   /* save for later */
698                 break;
699
700             case PW_MS_MPPE_ENCRYPTION_TYPES:
701                 mppe_enc_types = vp->lvalue;    /* save for later */
702                 break;
703
704 #endif /* PPP_WITH_MPPE */
705 #ifdef MSDNS
706             case PW_MS_PRIMARY_DNS_SERVER:
707                 ao->dnsaddr[0] = htonl(vp->lvalue);
708                 got_msdns_1 = 1;
709                 if (!got_msdns_2)
710                     ao->dnsaddr[1] = ao->dnsaddr[0];
711                 break;
712             case PW_MS_SECONDARY_DNS_SERVER:
713                 ao->dnsaddr[1] = htonl(vp->lvalue);
714                 got_msdns_2 = 1;
715                 if (!got_msdns_1)
716                     ao->dnsaddr[0] = ao->dnsaddr[1];
717                 break;
718             case PW_MS_PRIMARY_NBNS_SERVER:
719                 ao->winsaddr[0] = htonl(vp->lvalue);
720                 got_wins_1 = 1;
721                 if (!got_wins_2)
722                     ao->winsaddr[1] = ao->winsaddr[0];
723                 break;
724             case PW_MS_SECONDARY_NBNS_SERVER:
725                 ao->winsaddr[1] = htonl(vp->lvalue);
726                 got_wins_2 = 1;
727                 if (!got_wins_1)
728                     ao->winsaddr[0] = ao->winsaddr[1];
729                 break;
730 #endif /* MSDNS */
731             }
732 #endif /* PPP_WITH_CHAPMS */
733         }
734         vp = vp->next;
735     }
736
737     /* Require a valid MS-CHAP2-SUCCESS for MS-CHAPv2 auth */
738     if (digest && (digest->code == CHAP_MICROSOFT_V2) && !ms_chap2_success)
739         return -1;
740
741 #ifdef PPP_WITH_MPPE
742     /*
743      * Require both policy and key attributes to indicate a valid key.
744      * Note that if the policy value was '0' we don't set the key!
745      */
746     if (mppe_enc_policy && mppe_enc_keys) {
747         /* Set/modify allowed encryption types. */
748         if (mppe_enc_types)
749             mppe_set_enc_types(mppe_enc_policy, mppe_enc_types);
750         return 0;
751     }
752     mppe_clear_keys();
753 #endif
754
755     return 0;
756 }
757
758 #ifdef PPP_WITH_MPPE
759 /**********************************************************************
760 * %FUNCTION: radius_setmppekeys
761 * %ARGUMENTS:
762 *  vp -- value pair holding MS-CHAP-MPPE-KEYS attribute
763 *  req_info -- radius request information used for encryption
764 * %RETURNS:
765 *  >= 0 on success; -1 on failure
766 * %DESCRIPTION:
767 *  Decrypt the "key" provided by the RADIUS server for MPPE encryption.
768 *  See RFC 2548.
769 ***********************************************************************/
770 static int
771 radius_setmppekeys(VALUE_PAIR *vp, REQUEST_INFO *req_info,
772                    unsigned char *challenge)
773 {
774     int i;
775     MD5_CTX Context;
776     u_char  plain[32];
777     u_char  buf[16];
778
779     if (vp->lvalue != 32) {
780         error("RADIUS: Incorrect attribute length (%d) for MS-CHAP-MPPE-Keys",
781               vp->lvalue);
782         return -1;
783     }
784
785     memcpy(plain, vp->strvalue, sizeof(plain));
786
787     MD5_Init(&Context);
788     MD5_Update(&Context, req_info->secret, strlen(req_info->secret));
789     MD5_Update(&Context, req_info->request_vector, AUTH_VECTOR_LEN);
790     MD5_Final(buf, &Context);
791
792     for (i = 0; i < 16; i++)
793         plain[i] ^= buf[i];
794
795     MD5_Init(&Context);
796     MD5_Update(&Context, req_info->secret, strlen(req_info->secret));
797     MD5_Update(&Context, vp->strvalue, 16);
798     MD5_Final(buf, &Context);
799
800     for(i = 0; i < 16; i++)
801         plain[i + 16] ^= buf[i];
802
803     /*
804      * Annoying.  The "key" returned is just the NTPasswordHashHash, which
805      * the NAS (us) doesn't need; we only need the start key.  So we have
806      * to generate the start key, sigh.  NB: We do not support the LM-Key.
807      */
808     mppe_set_chapv1(challenge, &plain[8]);
809
810     return 0;    
811 }
812
813 /**********************************************************************
814 * %FUNCTION: radius_setmppekeys2
815 * %ARGUMENTS:
816 *  vp -- value pair holding MS-MPPE-SEND-KEY or MS-MPPE-RECV-KEY attribute
817 *  req_info -- radius request information used for encryption
818 * %RETURNS:
819 *  >= 0 on success; -1 on failure
820 * %DESCRIPTION:
821 *  Decrypt the key provided by the RADIUS server for MPPE encryption.
822 *  See RFC 2548.
823 ***********************************************************************/
824 static int
825 radius_setmppekeys2(VALUE_PAIR *vp, REQUEST_INFO *req_info)
826 {
827     int i;
828     MD5_CTX Context;
829     u_char  *salt = vp->strvalue;
830     u_char  *crypt = vp->strvalue + 2;
831     u_char  plain[32];
832     u_char  buf[MD5_HASH_SIZE];
833     char    *type = "Send";
834
835     if (vp->attribute == PW_MS_MPPE_RECV_KEY)
836         type = "Recv";
837
838     if (vp->lvalue != 34) {
839         error("RADIUS: Incorrect attribute length (%d) for MS-MPPE-%s-Key",
840               vp->lvalue, type);
841         return -1;
842     }
843
844     if ((salt[0] & 0x80) == 0) {
845         error("RADIUS: Illegal salt value for MS-MPPE-%s-Key attribute", type);
846         return -1;
847     }
848
849     memcpy(plain, crypt, 32);
850
851     MD5_Init(&Context);
852     MD5_Update(&Context, req_info->secret, strlen(req_info->secret));
853     MD5_Update(&Context, req_info->request_vector, AUTH_VECTOR_LEN);
854     MD5_Update(&Context, salt, 2);
855     MD5_Final(buf, &Context);
856
857     for (i = 0; i < 16; i++)
858         plain[i] ^= buf[i];
859
860     if (plain[0] != 16) {
861         error("RADIUS: Incorrect key length (%d) for MS-MPPE-%s-Key attribute",
862               (int) plain[0], type);
863         return -1;
864     }
865
866     MD5_Init(&Context);
867     MD5_Update(&Context, req_info->secret, strlen(req_info->secret));
868     MD5_Update(&Context, crypt, 16);
869     MD5_Final(buf, &Context);
870
871     plain[16] ^= buf[0]; /* only need the first byte */
872
873     if (vp->attribute == PW_MS_MPPE_SEND_KEY)
874         mppe_set_keys(plain + 1, NULL, 16);
875     else
876         mppe_set_keys(NULL, plain + 1, 16);
877
878     return 0;
879 }
880 #endif /* PPP_WITH_MPPE */
881
882 /**********************************************************************
883 * %FUNCTION: radius_acct_start
884 * %ARGUMENTS:
885 *  None
886 * %RETURNS:
887 *  Nothing
888 * %DESCRIPTION:
889 *  Sends a "start" accounting message to the RADIUS server.
890 ***********************************************************************/
891 static void
892 radius_acct_start(void)
893 {
894     UINT4 av_type;
895     int result;
896     VALUE_PAIR *send = NULL;
897     ipcp_options *ho = &ipcp_hisoptions[0];
898     u_int32_t hisaddr;
899
900     if (!rstate.initialized) {
901         return;
902     }
903
904     rstate.start_time = time(NULL);
905
906     strlcpy(rstate.session_id, rc_mksid(), MAXSESSIONID);
907
908     rc_avpair_add(&send, PW_ACCT_SESSION_ID,
909                    rstate.session_id, 0, VENDOR_NONE);
910     rc_avpair_add(&send, PW_USER_NAME,
911                    rstate.user, 0, VENDOR_NONE);
912
913     if (rstate.class_len > 0)
914         rc_avpair_add(&send, PW_CLASS,
915                       rstate.class, rstate.class_len, VENDOR_NONE);
916
917     av_type = PW_STATUS_START;
918     rc_avpair_add(&send, PW_ACCT_STATUS_TYPE, &av_type, 0, VENDOR_NONE);
919
920     av_type = PW_FRAMED;
921     rc_avpair_add(&send, PW_SERVICE_TYPE, &av_type, 0, VENDOR_NONE);
922
923     av_type = PW_PPP;
924     rc_avpair_add(&send, PW_FRAMED_PROTOCOL, &av_type, 0, VENDOR_NONE);
925
926     if (*remote_number) {
927         rc_avpair_add(&send, PW_CALLING_STATION_ID,
928                        remote_number, 0, VENDOR_NONE);
929     } else if (ipparam)
930         rc_avpair_add(&send, PW_CALLING_STATION_ID, ipparam, 0, VENDOR_NONE);
931
932     av_type = PW_RADIUS;
933     rc_avpair_add(&send, PW_ACCT_AUTHENTIC, &av_type, 0, VENDOR_NONE);
934
935
936     av_type = ( using_pty ? PW_VIRTUAL : ( sync_serial ? PW_SYNC : PW_ASYNC ) );
937     rc_avpair_add(&send, PW_NAS_PORT_TYPE, &av_type, 0, VENDOR_NONE);
938
939     hisaddr = ho->hisaddr;
940     av_type = htonl(hisaddr);
941     rc_avpair_add(&send, PW_FRAMED_IP_ADDRESS , &av_type , 0, VENDOR_NONE);
942
943     /* Add user specified vp's */
944     if (rstate.avp)
945         rc_avpair_insert(&send, NULL, rc_avpair_copy(rstate.avp));
946
947     if (rstate.acctserver) {
948         result = rc_acct_using_server(rstate.acctserver,
949                                       rstate.client_port, send);
950     } else {
951         result = rc_acct(rstate.client_port, send);
952     }
953
954     rc_avpair_free(send);
955
956     if (result != OK_RC) {
957         /* RADIUS server could be down so make this a warning */
958         syslog(LOG_WARNING,
959                 "Accounting START failed for %s", rstate.user);
960     }
961
962     /* Kick off periodic accounting reports */
963     if (rstate.acct_interim_interval) {
964         TIMEOUT(radius_acct_interim, NULL, rstate.acct_interim_interval);
965     }
966 }
967
968 /**********************************************************************
969 * %FUNCTION: radius_acct_stop
970 * %ARGUMENTS:
971 *  None
972 * %RETURNS:
973 *  Nothing
974 * %DESCRIPTION:
975 *  Sends a "stop" accounting message to the RADIUS server.
976 ***********************************************************************/
977 static void
978 radius_acct_stop(void)
979 {
980     UINT4 av_type;
981     VALUE_PAIR *send = NULL;
982     ipcp_options *ho = &ipcp_hisoptions[0];
983     u_int32_t hisaddr;
984     int result;
985
986     if (!rstate.initialized) {
987         return;
988     }
989
990     if (rstate.acct_interim_interval)
991         UNTIMEOUT(radius_acct_interim, NULL);
992
993     rc_avpair_add(&send, PW_ACCT_SESSION_ID, rstate.session_id,
994                    0, VENDOR_NONE);
995
996     rc_avpair_add(&send, PW_USER_NAME, rstate.user, 0, VENDOR_NONE);
997
998     if (rstate.class_len > 0)
999         rc_avpair_add(&send, PW_CLASS,
1000                       rstate.class, rstate.class_len, VENDOR_NONE);
1001
1002     av_type = PW_STATUS_STOP;
1003     rc_avpair_add(&send, PW_ACCT_STATUS_TYPE, &av_type, 0, VENDOR_NONE);
1004
1005     av_type = PW_FRAMED;
1006     rc_avpair_add(&send, PW_SERVICE_TYPE, &av_type, 0, VENDOR_NONE);
1007
1008     av_type = PW_PPP;
1009     rc_avpair_add(&send, PW_FRAMED_PROTOCOL, &av_type, 0, VENDOR_NONE);
1010
1011     av_type = PW_RADIUS;
1012     rc_avpair_add(&send, PW_ACCT_AUTHENTIC, &av_type, 0, VENDOR_NONE);
1013
1014
1015     if (link_stats_valid) {
1016         av_type = link_connect_time;
1017         rc_avpair_add(&send, PW_ACCT_SESSION_TIME, &av_type, 0, VENDOR_NONE);
1018
1019         av_type = link_stats.bytes_out & 0xFFFFFFFF;
1020         rc_avpair_add(&send, PW_ACCT_OUTPUT_OCTETS, &av_type, 0, VENDOR_NONE);
1021
1022         if (link_stats.bytes_out > 0xFFFFFFFF) {
1023             av_type = link_stats.bytes_out >> 32;
1024             rc_avpair_add(&send, PW_ACCT_OUTPUT_GIGAWORDS, &av_type, 0, VENDOR_NONE);
1025         }
1026
1027         av_type = link_stats.bytes_in & 0xFFFFFFFF;
1028         rc_avpair_add(&send, PW_ACCT_INPUT_OCTETS, &av_type, 0, VENDOR_NONE);
1029
1030         if (link_stats.bytes_in > 0xFFFFFFFF) {
1031             av_type = link_stats.bytes_in >> 32;
1032             rc_avpair_add(&send, PW_ACCT_INPUT_GIGAWORDS, &av_type, 0, VENDOR_NONE);
1033         }
1034
1035         av_type = link_stats.pkts_out;
1036         rc_avpair_add(&send, PW_ACCT_OUTPUT_PACKETS, &av_type, 0, VENDOR_NONE);
1037
1038         av_type = link_stats.pkts_in;
1039         rc_avpair_add(&send, PW_ACCT_INPUT_PACKETS, &av_type, 0, VENDOR_NONE);
1040     }
1041
1042     if (*remote_number) {
1043         rc_avpair_add(&send, PW_CALLING_STATION_ID,
1044                        remote_number, 0, VENDOR_NONE);
1045     } else if (ipparam)
1046         rc_avpair_add(&send, PW_CALLING_STATION_ID, ipparam, 0, VENDOR_NONE);
1047
1048     av_type = ( using_pty ? PW_VIRTUAL : ( sync_serial ? PW_SYNC : PW_ASYNC ) );
1049     rc_avpair_add(&send, PW_NAS_PORT_TYPE, &av_type, 0, VENDOR_NONE);
1050
1051     av_type = PW_NAS_ERROR;
1052     switch( status ) {
1053         case EXIT_OK:
1054         case EXIT_USER_REQUEST:
1055             av_type = PW_USER_REQUEST;
1056             break;
1057
1058         case EXIT_HANGUP:
1059         case EXIT_PEER_DEAD:
1060         case EXIT_CONNECT_FAILED:
1061             av_type = PW_LOST_CARRIER;
1062             break;
1063
1064         case EXIT_INIT_FAILED:
1065         case EXIT_OPEN_FAILED:
1066         case EXIT_LOCK_FAILED:
1067         case EXIT_PTYCMD_FAILED:
1068             av_type = PW_PORT_ERROR;
1069             break;
1070
1071         case EXIT_PEER_AUTH_FAILED:
1072         case EXIT_AUTH_TOPEER_FAILED:
1073         case EXIT_NEGOTIATION_FAILED:
1074         case EXIT_CNID_AUTH_FAILED:
1075             av_type = PW_SERVICE_UNAVAILABLE;
1076             break;
1077
1078         case EXIT_IDLE_TIMEOUT:
1079             av_type = PW_ACCT_IDLE_TIMEOUT;
1080             break;
1081
1082         case EXIT_CALLBACK:
1083             av_type = PW_CALLBACK;
1084             break;
1085             
1086         case EXIT_CONNECT_TIME:
1087             av_type = PW_ACCT_SESSION_TIMEOUT;
1088             break;
1089             
1090         case EXIT_TRAFFIC_LIMIT:
1091             av_type = PW_NAS_REQUEST;
1092             break;
1093
1094         default:
1095             av_type = PW_NAS_ERROR;
1096             break;
1097     }
1098     rc_avpair_add(&send, PW_ACCT_TERMINATE_CAUSE, &av_type, 0, VENDOR_NONE);
1099
1100     hisaddr = ho->hisaddr;
1101     av_type = htonl(hisaddr);
1102     rc_avpair_add(&send, PW_FRAMED_IP_ADDRESS , &av_type , 0, VENDOR_NONE);
1103
1104     /* Add user specified vp's */
1105     if (rstate.avp)
1106         rc_avpair_insert(&send, NULL, rc_avpair_copy(rstate.avp));
1107
1108     if (rstate.acctserver) {
1109         result = rc_acct_using_server(rstate.acctserver,
1110                                       rstate.client_port, send);
1111     } else {
1112         result = rc_acct(rstate.client_port, send);
1113     }
1114
1115     if (result != OK_RC) {
1116         /* RADIUS server could be down so make this a warning */
1117         syslog(LOG_WARNING,
1118                 "Accounting STOP failed for %s", rstate.user);
1119     }
1120     rc_avpair_free(send);
1121 }
1122
1123 /**********************************************************************
1124 * %FUNCTION: radius_acct_interim
1125 * %ARGUMENTS:
1126 *  None
1127 * %RETURNS:
1128 *  Nothing
1129 * %DESCRIPTION:
1130 *  Sends an interim accounting message to the RADIUS server
1131 ***********************************************************************/
1132 static void
1133 radius_acct_interim(void *ignored)
1134 {
1135     UINT4 av_type;
1136     VALUE_PAIR *send = NULL;
1137     ipcp_options *ho = &ipcp_hisoptions[0];
1138     u_int32_t hisaddr;
1139     int result;
1140
1141     if (!rstate.initialized) {
1142         return;
1143     }
1144
1145     rc_avpair_add(&send, PW_ACCT_SESSION_ID, rstate.session_id,
1146                    0, VENDOR_NONE);
1147
1148     rc_avpair_add(&send, PW_USER_NAME, rstate.user, 0, VENDOR_NONE);
1149
1150     if (rstate.class_len > 0)
1151         rc_avpair_add(&send, PW_CLASS,
1152                       rstate.class, rstate.class_len, VENDOR_NONE);
1153
1154     av_type = PW_STATUS_ALIVE;
1155     rc_avpair_add(&send, PW_ACCT_STATUS_TYPE, &av_type, 0, VENDOR_NONE);
1156
1157     av_type = PW_FRAMED;
1158     rc_avpair_add(&send, PW_SERVICE_TYPE, &av_type, 0, VENDOR_NONE);
1159
1160     av_type = PW_PPP;
1161     rc_avpair_add(&send, PW_FRAMED_PROTOCOL, &av_type, 0, VENDOR_NONE);
1162
1163     av_type = PW_RADIUS;
1164     rc_avpair_add(&send, PW_ACCT_AUTHENTIC, &av_type, 0, VENDOR_NONE);
1165
1166     /* Update link stats */
1167     update_link_stats(0);
1168
1169     if (link_stats_valid) {
1170         link_stats_valid = 0; /* Force later code to update */
1171
1172         av_type = link_connect_time;
1173         rc_avpair_add(&send, PW_ACCT_SESSION_TIME, &av_type, 0, VENDOR_NONE);
1174
1175         av_type = link_stats.bytes_out & 0xFFFFFFFF;
1176         rc_avpair_add(&send, PW_ACCT_OUTPUT_OCTETS, &av_type, 0, VENDOR_NONE);
1177
1178         if (link_stats.bytes_out > 0xFFFFFFFF) {
1179             av_type = link_stats.bytes_out >> 32;
1180             rc_avpair_add(&send, PW_ACCT_OUTPUT_GIGAWORDS, &av_type, 0, VENDOR_NONE);
1181         }
1182
1183         av_type = link_stats.bytes_in & 0xFFFFFFFF;
1184         rc_avpair_add(&send, PW_ACCT_INPUT_OCTETS, &av_type, 0, VENDOR_NONE);
1185
1186         if (link_stats.bytes_in > 0xFFFFFFFF) {
1187             av_type = link_stats.bytes_in >> 32;
1188             rc_avpair_add(&send, PW_ACCT_INPUT_GIGAWORDS, &av_type, 0, VENDOR_NONE);
1189         }
1190
1191         av_type = link_stats.pkts_out;
1192         rc_avpair_add(&send, PW_ACCT_OUTPUT_PACKETS, &av_type, 0, VENDOR_NONE);
1193
1194         av_type = link_stats.pkts_in;
1195         rc_avpair_add(&send, PW_ACCT_INPUT_PACKETS, &av_type, 0, VENDOR_NONE);
1196     }
1197
1198     if (*remote_number) {
1199         rc_avpair_add(&send, PW_CALLING_STATION_ID,
1200                        remote_number, 0, VENDOR_NONE);
1201     } else if (ipparam)
1202         rc_avpair_add(&send, PW_CALLING_STATION_ID, ipparam, 0, VENDOR_NONE);
1203
1204     av_type = ( using_pty ? PW_VIRTUAL : ( sync_serial ? PW_SYNC : PW_ASYNC ) );
1205     rc_avpair_add(&send, PW_NAS_PORT_TYPE, &av_type, 0, VENDOR_NONE);
1206
1207     hisaddr = ho->hisaddr;
1208     av_type = htonl(hisaddr);
1209     rc_avpair_add(&send, PW_FRAMED_IP_ADDRESS , &av_type , 0, VENDOR_NONE);
1210
1211     /* Add user specified vp's */
1212     if (rstate.avp)
1213         rc_avpair_insert(&send, NULL, rc_avpair_copy(rstate.avp));
1214
1215     if (rstate.acctserver) {
1216         result = rc_acct_using_server(rstate.acctserver,
1217                                       rstate.client_port, send);
1218     } else {
1219         result = rc_acct(rstate.client_port, send);
1220     }
1221
1222     if (result != OK_RC) {
1223         /* RADIUS server could be down so make this a warning */
1224         syslog(LOG_WARNING,
1225                 "Interim accounting failed for %s", rstate.user);
1226     }
1227     rc_avpair_free(send);
1228
1229     /* Schedule another one */
1230     TIMEOUT(radius_acct_interim, NULL, rstate.acct_interim_interval);
1231 }
1232
1233 /**********************************************************************
1234 * %FUNCTION: radius_ip_up
1235 * %ARGUMENTS:
1236 *  opaque -- ignored
1237 *  arg -- ignored
1238 * %RETURNS:
1239 *  Nothing
1240 * %DESCRIPTION:
1241 *  Called when IPCP is up.  We'll do a start-accounting record.
1242 ***********************************************************************/
1243 static void
1244 radius_ip_up(void *opaque, int arg)
1245 {
1246     radius_acct_start();
1247 }
1248
1249 /**********************************************************************
1250 * %FUNCTION: radius_ip_down
1251 * %ARGUMENTS:
1252 *  opaque -- ignored
1253 *  arg -- ignored
1254 * %RETURNS:
1255 *  Nothing
1256 * %DESCRIPTION:
1257 *  Called when IPCP is down.  We'll do a stop-accounting record.
1258 ***********************************************************************/
1259 static void
1260 radius_ip_down(void *opaque, int arg)
1261 {
1262     radius_acct_stop();
1263 }
1264
1265 /**********************************************************************
1266 * %FUNCTION: radius_init
1267 * %ARGUMENTS:
1268 *  msg -- buffer of size BUF_LEN for error message
1269 * %RETURNS:
1270 *  negative on failure; non-negative on success
1271 * %DESCRIPTION:
1272 *  Initializes radiusclient library
1273 ***********************************************************************/
1274 static int
1275 radius_init(char *msg)
1276 {
1277     if (rstate.initialized) {
1278         return 0;
1279     }
1280
1281     if (config_file && *config_file) {
1282         strlcpy(rstate.config_file, config_file, MAXPATHLEN-1);
1283     }
1284
1285     rstate.initialized = 1;
1286
1287     if (rc_read_config(rstate.config_file) != 0) {
1288         slprintf(msg, BUF_LEN, "RADIUS: Can't read config file %s",
1289                  rstate.config_file);
1290         return -1;
1291     }
1292
1293     if (rc_read_dictionary(rc_conf_str("dictionary")) != 0) {
1294         slprintf(msg, BUF_LEN, "RADIUS: Can't read dictionary file %s",
1295                  rc_conf_str("dictionary"));
1296         return -1;
1297     }
1298
1299     if (rc_read_mapfile(rc_conf_str("mapfile")) != 0)   {
1300         slprintf(msg, BUF_LEN, "RADIUS: Can't read map file %s",
1301                  rc_conf_str("mapfile"));
1302         return -1;
1303     }
1304
1305     /* Add av pairs saved during option parsing */
1306     while (avpopt) {
1307         struct avpopt *n = avpopt->next;
1308
1309         rc_avpair_parse(avpopt->vpstr, &rstate.avp);
1310         free(avpopt->vpstr);
1311         free(avpopt);
1312         avpopt = n;
1313     }
1314     return 0;
1315 }
1316
1317 /**********************************************************************
1318 * %FUNCTION: get_client_port
1319 * %ARGUMENTS:
1320 *  ifname -- PPP interface name (e.g. "ppp7")
1321 * %RETURNS:
1322 *  The NAS port number (e.g. 7)
1323 * %DESCRIPTION:
1324 *  Extracts the port number from the interface name
1325 ***********************************************************************/
1326 static int
1327 get_client_port(char *ifname)
1328 {
1329     int port;
1330     if (sscanf(ifname, "ppp%d", &port) == 1) {
1331         return port;
1332     }
1333     return rc_map2id(ifname);
1334 }
1335
1336 /**********************************************************************
1337 * %FUNCTION: radius_allowed_address
1338 * %ARGUMENTS:
1339 *  addr -- IP address
1340 * %RETURNS:
1341 *  1 if we're allowed to use that IP address; 0 if not; -1 if we do
1342 *  not know.
1343 ***********************************************************************/
1344 static int
1345 radius_allowed_address(u_int32_t addr)
1346 {
1347     ipcp_options *wo = &ipcp_wantoptions[0];
1348
1349     if (!rstate.choose_ip) {
1350         /* If RADIUS server said any address is OK, then fine... */
1351         if (rstate.any_ip_addr_ok) {
1352             return 1;
1353         }
1354
1355         /* Sigh... if an address was supplied for remote host in pppd
1356            options, it has to match that.  */
1357         if (wo->hisaddr != 0 && wo->hisaddr == addr) {
1358             return 1;
1359         }
1360
1361         return 0;
1362     }
1363     if (addr == rstate.ip_addr) return 1;
1364     return 0;
1365 }
1366
1367 /* Useful for other plugins */
1368 char *radius_logged_in_user(void)
1369 {
1370     return rstate.user;
1371 }