If both 'authhost' and 'accthost' in a realm are LOCAL, then we
[freeradius.git] / src / main / conffile.c
1 /*
2  * conffile.c   Read the radiusd.conf file.
3  *
4  *              Yep I should learn to use lex & yacc, or at least
5  *              write a decent parser. I know how to do that, really :)
6  *              miquels@cistron.nl
7  *
8  * Version:     $Id$
9  *
10  *   This program is free software; you can redistribute it and/or modify
11  *   it under the terms of the GNU General Public License as published by
12  *   the Free Software Foundation; either version 2 of the License, or
13  *   (at your option) any later version.
14  *
15  *   This program is distributed in the hope that it will be useful,
16  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  *   GNU General Public License for more details.
19  *
20  *   You should have received a copy of the GNU General Public License
21  *   along with this program; if not, write to the Free Software
22  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23  *
24  * Copyright 2000  The FreeRADIUS server project
25  * Copyright 2000  Miquel van Smoorenburg <miquels@cistron.nl>
26  * Copyright 2000  Alan DeKok <aland@ox.org>
27  */
28
29 #include "autoconf.h"
30 #include "libradius.h"
31
32 #include <stdlib.h>
33 #include <string.h>
34
35 #if HAVE_NETINET_IN_H
36 #       include <netinet/in.h>
37 #endif
38
39 #include "radiusd.h"
40 #include "rad_assert.h"
41 #include "conffile.h"
42 #include "token.h"
43 #include "modules.h"
44
45 static const char rcsid[] =
46 "$Id$";
47
48 #define xstrdup strdup
49
50 typedef enum conf_type {
51         CONF_ITEM_PAIR,
52         CONF_ITEM_SECTION
53 } CONF_ITEM_TYPE;
54
55 struct conf_item {
56         struct conf_item *next;
57         struct conf_part *parent;
58         int lineno;
59         CONF_ITEM_TYPE type;
60 };
61 struct conf_pair {
62         CONF_ITEM item;
63         char *attr;
64         char *value;
65         LRAD_TOKEN operator;
66 };
67 struct conf_part {
68         CONF_ITEM item;
69         char *name1;
70         char *name2;
71         struct conf_item *children;
72 };
73
74 CONF_SECTION *config = NULL;
75
76 /*
77  *      Yucky hacks.
78  */
79 extern RADCLIENT *clients;
80 extern REALM *realms;
81
82 static int generate_realms(const char *filename);
83 static int generate_clients(const char *filename);
84 static CONF_SECTION *conf_read(const char *fromfile, int fromline, 
85                                const char *conffile, CONF_SECTION *parent);
86
87 #ifndef RADIUS_CONFIG
88 #define RADIUS_CONFIG "radiusd.conf"
89 #endif
90
91 /*
92  *      Isolate the scary casts in these tiny provably-safe functions
93  */
94 CONF_PAIR *cf_itemtopair(CONF_ITEM *ci)
95 {
96         if (ci == NULL)
97                 return NULL;
98         rad_assert(ci->type == CONF_ITEM_PAIR);
99         return (CONF_PAIR *)ci;
100 }
101 CONF_SECTION *cf_itemtosection(CONF_ITEM *ci)
102 {
103         if (ci == NULL)
104                 return NULL;
105         rad_assert(ci->type == CONF_ITEM_SECTION);
106         return (CONF_SECTION *)ci;
107 }
108 CONF_ITEM *cf_pairtoitem(CONF_PAIR *cp)
109 {
110         if (cp == NULL)
111                 return NULL;
112         return (CONF_ITEM *)cp;
113 }
114 CONF_ITEM *cf_sectiontoitem(CONF_SECTION *cs)
115 {
116         if (cs == NULL)
117                 return NULL;
118         return (CONF_ITEM *)cs;
119 }
120
121 /*
122  *      Create a new CONF_PAIR
123  */
124 static CONF_PAIR *cf_pair_alloc(const char *attr, const char *value,
125                 LRAD_TOKEN operator, CONF_SECTION *parent)
126 {
127         CONF_PAIR *cp;
128
129         cp = (CONF_PAIR *)rad_malloc(sizeof(CONF_PAIR));
130         memset(cp, 0, sizeof(CONF_PAIR));
131         cp->item.type = CONF_ITEM_PAIR;
132         cp->item.parent = parent;
133         cp->attr = xstrdup(attr);
134         cp->value = xstrdup(value);
135         cp->operator = operator;
136
137         return cp;
138 }
139
140 /*
141  *      Free a CONF_PAIR
142  */
143 void cf_pair_free(CONF_PAIR **cp)
144 {
145         if (!cp || !*cp) return;
146
147         if ((*cp)->attr)
148                 free((*cp)->attr);
149         if ((*cp)->value)
150                 free((*cp)->value);
151
152 #ifndef NDEBUG
153         memset(*cp, 0, sizeof(*cp));
154 #endif
155         free(*cp);
156
157         *cp = NULL;
158 }
159
160 /*
161  *      Allocate a CONF_SECTION
162  */
163 static CONF_SECTION *cf_section_alloc(const char *name1, const char *name2,
164                 CONF_SECTION *parent)
165 {
166         CONF_SECTION    *cs;
167
168         if (name1 == NULL || !name1[0]) 
169                 name1 = "main";
170
171         cs = (CONF_SECTION *)rad_malloc(sizeof(CONF_SECTION));
172         memset(cs, 0, sizeof(CONF_SECTION));
173         cs->item.type = CONF_ITEM_SECTION;
174         cs->item.parent = parent;
175         cs->name1 = strdup(name1);
176         cs->name2 = (name2 && *name2) ? xstrdup(name2) : NULL;
177
178         return cs;
179 }
180
181 /*
182  *      Free a CONF_SECTION
183  */
184 void cf_section_free(CONF_SECTION **cs)
185 {
186         CONF_ITEM       *ci, *next;
187
188         if (!cs || !*cs) return;
189
190         for (ci = (*cs)->children; ci; ci = next) {
191                 next = ci->next;
192                 if (ci->type==CONF_ITEM_PAIR) {
193                         CONF_PAIR *pair = cf_itemtopair(ci);
194                         cf_pair_free(&pair);
195                 } else {
196                         CONF_SECTION *section = cf_itemtosection(ci);
197                         cf_section_free(&section);
198                 }
199         }
200
201         if ((*cs)->name1) 
202                 free((*cs)->name1);
203         if ((*cs)->name2) 
204                 free((*cs)->name2);
205
206         /*
207          * And free the section
208          */
209 #ifndef NDEBUG
210         memset(*cs, 0, sizeof(*cs));
211 #endif
212         free(*cs);
213
214         *cs = NULL;
215 }
216
217 /*
218  *      Add an item to a configuration section.
219  */
220 static void cf_item_add(CONF_SECTION *cs, CONF_ITEM *ci_new)
221 {
222         CONF_ITEM *ci;
223         
224         for (ci = cs->children; ci && ci->next; ci = ci->next)
225                 ;
226
227         if (ci == NULL)
228                 cs->children = ci_new;
229         else
230                 ci->next = ci_new;
231 }
232
233 /*
234  *      Expand the variables in an input string.
235  */
236 static const char *cf_expand_variables(const char *cf, int *lineno,
237                                        CONF_SECTION *cs,
238                                        char *output, const char *input)
239 {
240         char *p;
241         const char *end, *ptr;
242         char name[1024];
243         CONF_PAIR *cpn;
244         CONF_SECTION *outercs;
245
246         p = output;
247         ptr = input;
248         while (*ptr) {
249                 /*
250                  *      Ignore anything other than "${"
251                  */
252                 if ((*ptr == '$') && (ptr[1] == '{')) {
253                         /*
254                          *      Look for trailing '}', and log a
255                          *      warning for anything that doesn't match,
256                          *      and exit with a fatal error.
257                          */
258                         end = strchr(ptr, '}');
259                         if (end == NULL) {
260                                 *p = '\0';
261                                 radlog(L_INFO, "%s[%d]: Variable expansion missing }",
262                                        cf, *lineno);
263                                 return NULL;
264                         }
265                         
266                         ptr += 2;
267                         
268                         memcpy(name, ptr, end - ptr);
269                         name[end - ptr] = '\0';
270                         
271                         cpn = cf_pair_find(cs, name);
272                         
273                         /*
274                          *      Also look recursively up the section tree,
275                          *      so things like ${confdir} can be defined
276                          *      there and used inside the module config
277                          *      sections.
278                          */
279                         for (outercs=cs->item.parent; 
280                              (cpn == NULL) && (outercs != NULL);
281                              outercs=outercs->item.parent) {
282                                 cpn = cf_pair_find(outercs, name);
283                         }
284                         if (!cpn) {
285                                 radlog(L_ERR, "%s[%d]: Unknown variable \"%s\"",
286                                        cf, *lineno, name);
287                                 return NULL;
288                         }
289                         
290                         /*
291                          *  Substitute the value of the variable.
292                          */
293                         strcpy(p, cpn->value);
294                         p += strlen(p);
295                         ptr = end + 1;
296
297                 } else if (memcmp(ptr, "$ENV{", 5) == 0) {
298                         char *env;
299
300                         ptr += 5;
301
302                         /*
303                          *      Look for trailing '}', and log a
304                          *      warning for anything that doesn't match,
305                          *      and exit with a fatal error.
306                          */
307                         end = strchr(ptr, '}');
308                         if (end == NULL) {
309                                 *p = '\0';
310                                 radlog(L_INFO, "%s[%d]: Environment variable expansion missing }",
311                                        cf, *lineno);
312                                 return NULL;
313                         }
314                         
315                         memcpy(name, ptr, end - ptr);
316                         name[end - ptr] = '\0';
317                         
318                         /*
319                          *      Get the environment variable.
320                          *      If none exists, then make it an empty string.
321                          */
322                         env = getenv(name);
323                         if (env == NULL) {
324                                 *name = '\0';
325                                 env = name;
326                         }
327
328                         strcpy(p, env);
329                         p += strlen(p);
330                         ptr = end + 1;
331
332                 } else {
333                         /*
334                          *      Copy it over verbatim.
335                          */
336                         *(p++) = *(ptr++);
337                 }
338         } /* loop over all of the input string. */
339                 
340         *p = '\0';
341
342         return output;
343 }
344
345 /*
346  *      Parse a configuration section into user-supplied variables.
347  */
348 int cf_section_parse(CONF_SECTION *cs, void *base, const CONF_PARSER *variables)
349 {
350         int i;
351         int rcode;
352         char **q;
353         CONF_PAIR *cp;
354         CONF_SECTION *subsection;
355         uint32_t ipaddr;
356         char buffer[1024];
357         const char *value;
358         void *data;
359
360         /*
361          *      Handle the user-supplied variables.
362          */
363         for (i = 0; variables[i].name != NULL; i++) {
364                 value = variables[i].dflt;
365                 if (base) {
366                         data = ((char *)base) + variables[i].offset;
367                 } else {
368                         data = variables[i].data;
369                 }
370
371                 cp = cf_pair_find(cs, variables[i].name);
372                 if (cp) {
373                         value = cp->value;
374                 }
375                 
376                 switch (variables[i].type)
377                 {
378                 case PW_TYPE_SUBSECTION:
379                         subsection = cf_section_sub_find(cs,variables[i].name);
380
381                         /*
382                          *      If the configuration section is NOT there,
383                          *      then ignore it.
384                          *
385                          *      FIXME! This is probably wrong... we should
386                          *      probably set the items to their default values.
387                          */
388                         if (subsection == NULL) {
389                                 break;
390                         }
391
392                         rcode = cf_section_parse(subsection, base,
393                                         (CONF_PARSER *) data);
394                         if (rcode < 0) {
395                                 return -1;
396                         }
397                         break;
398
399                 case PW_TYPE_BOOLEAN:
400                         /*
401                          *      Allow yes/no and on/off
402                          */
403                         if ((strcasecmp(value, "yes") == 0) ||
404                                         (strcasecmp(value, "on") == 0)) {
405                                 *(int *)data = 1;
406                         } else if ((strcasecmp(value, "no") == 0) ||
407                                                 (strcasecmp(value, "off") == 0)) {
408                                 *(int *)data = 0;
409                         } else {
410                                 *(int *)data = 0;
411                                 radlog(L_ERR, "Bad value \"%s\" for boolean variable %s", value, variables[i].name);
412                                 return -1;
413                         }
414                         DEBUG2(" %s: %s = %s",
415                                         cs->name1,
416                                         variables[i].name,
417                                         value);
418                         break;
419
420                 case PW_TYPE_INTEGER:
421                         *(int *)data = strtol(value, 0, 0);
422                         DEBUG2(" %s: %s = %d",
423                                         cs->name1,
424                                         variables[i].name,
425                                         *(int *)data);
426                         break;
427                         
428                 case PW_TYPE_STRING_PTR:
429                         q = (char **) data;
430                         if (base == NULL && *q != NULL) {
431                                 free(*q);
432                         }
433
434                         /*
435                          *      Expand variables while parsing,
436                          *      but ONLY expand ones which haven't already
437                          *      been expanded.
438                          */
439                         if (value && (value == variables[i].dflt)) {
440                                 value = cf_expand_variables(NULL, 0, cs, buffer,value);
441                                 if (!value) {
442                                         return -1;
443                                 }
444                         }
445
446                         DEBUG2(" %s: %s = \"%s\"",
447                                         cs->name1,
448                                         variables[i].name,
449                                         value ? value : "(null)");
450                         *q = value ? strdup(value) : NULL;
451                         break;
452
453                 case PW_TYPE_IPADDR:
454                         /*
455                          *      Allow '*' as any address
456                          */
457                         if (strcmp(value, "*") == 0) {
458                                 *(uint32_t *) data = 0;
459                                 break;
460                         }
461                         ipaddr = ip_getaddr(value);
462                         if (ipaddr == 0) {
463                                 radlog(L_ERR, "Can't find IP address for host %s", value);
464                                 return -1;
465                         }
466                         DEBUG2(" %s: %s = %s IP address [%s]",
467                                         cs->name1,
468                                         variables[i].name,
469                                         value, ip_ntoa(buffer, ipaddr));
470                         *(uint32_t *) data = ipaddr;
471                         break;
472                         
473                 default:
474                         radlog(L_ERR, "type %d not supported yet", variables[i].type);
475                         return -1;
476                         break;
477                 } /* switch over variable type */
478         } /* for all variables in the configuration section */
479         
480         return 0;
481 }
482
483 /*
484  *      Read a part of the config file.
485  */
486 static CONF_SECTION *cf_section_read(const char *cf, int *lineno, FILE *fp,
487                 const char *name1, const char *name2,
488                 CONF_SECTION *parent)
489 {
490         CONF_SECTION *cs, *css;
491         CONF_PAIR *cpn;
492         char *ptr;
493         const char *value;
494         char buf[8192];
495         char buf1[1024];
496         char buf2[1024];
497         char buf3[1024];
498         int t1, t2, t3;
499         
500         /*
501          *      Ensure that the user can't add CONF_SECTIONs
502          *      with 'internal' names;
503          */
504         if ((name1 != NULL) && (name1[0] == '_')) {
505                 radlog(L_ERR, "%s[%d]: Illegal configuration section name",
506                         cf, *lineno);
507                 return NULL;
508         }
509
510         /*
511          *      Allocate new section.
512          */
513         cs = cf_section_alloc(name1, name2, parent);
514         cs->item.lineno = *lineno;
515
516         /*
517          *      Read.
518          */
519         while (fgets(buf, sizeof(buf), fp) != NULL) {
520                 (*lineno)++;
521                 ptr = buf;
522
523                 t1 = gettoken(&ptr, buf1, sizeof(buf1));
524
525                 /*
526                  *      Skip comments and blank lines immediately.
527                  */
528                 if ((*buf1 == '#') || (*buf1 == '\0')) {
529                         continue;
530                 }
531
532                 /*
533                  *      Allow for $INCLUDE files
534                  *
535                  *      This *SHOULD* work for any level include.  
536                  *      I really really really hate this file.  -cparker
537                  */
538                 if (strcasecmp(buf1, "$INCLUDE") == 0) {
539
540                         CONF_SECTION      *is;
541
542                         t2 = getword(&ptr, buf2, sizeof(buf2));
543
544                         value = cf_expand_variables(cf, lineno, cs, buf, buf2);
545                         if (value == NULL) {
546                                 cf_section_free(&cs);
547                                 return NULL;
548                         }
549
550                         DEBUG2( "Config:   including file: %s", value );
551
552                         if ((is = conf_read(cf, *lineno, value, parent)) == NULL) {
553                                 cf_section_free(&cs);
554                                 return NULL;
555                         }
556
557                         /*
558                          *      Add the included conf to our CONF_SECTION
559                          */
560                         if (is != NULL) {
561                                 if (is->children != NULL) {
562                                         CONF_ITEM *ci;
563                         
564                                         /*
565                                          *      Re-write the parent of the
566                                          *      moved children to be the
567                                          *      upper-layer section.
568                                          */
569                                         for (ci = is->children; ci; ci = ci->next) {
570                                                 ci->parent = cs;
571                                         }
572
573                                         /*
574                                          *      If there are children, then
575                                          *      move them up a layer.
576                                          */
577                                         if (is->children) {
578                                                 cf_item_add(cs, is->children);
579                                         }
580                                         is->children = NULL;
581                                 }
582                                 /*
583                                  *      Always free the section for the
584                                  *      $INCLUDEd file.
585                                  */
586                                 cf_section_free(&is);
587                         }
588
589                         continue;
590                 }
591
592                 /*
593                  *      No '=': must be a section or sub-section.
594                  */
595                 if (strchr(ptr, '=') == NULL) {
596                         t2 = gettoken(&ptr, buf2, sizeof(buf2));
597                         t3 = gettoken(&ptr, buf3, sizeof(buf3));
598                 } else {
599                         t2 = gettoken(&ptr, buf2, sizeof(buf2));
600                         t3 = getword(&ptr, buf3, sizeof(buf3));
601                 }
602
603                 /*
604                  *      See if it's the end of a section.
605                  */
606                 if (t1 == T_RCBRACE) {
607                         if (name1 == NULL || buf2[0]) {
608                                 radlog(L_ERR, "%s[%d]: Unexpected end of section",
609                                                 cf, *lineno);
610                                 cf_section_free(&cs);
611                                 return NULL;
612                         }
613                         return cs;
614                 }
615
616                 /*
617                  * Perhaps a subsection.
618                  */
619                 if (t2 == T_LCBRACE || t3 == T_LCBRACE) {
620                         css = cf_section_read(cf, lineno, fp, buf1,
621                                         t2==T_LCBRACE ? NULL : buf2, cs);
622                         if (css == NULL) {
623                                 cf_section_free(&cs);
624                                 return NULL;
625                         }
626                         cf_item_add(cs, cf_sectiontoitem(css));
627
628                         continue;
629                 }
630
631                 /*
632                  *      Ignore semi-colons.
633                  */
634                 if (*buf2 == ';') 
635                         *buf2 = '\0';
636
637                 /*
638                  *      Must be a normal attr = value line.
639                  */
640                 if (buf1[0] != 0 && buf2[0] == 0 && buf3[0] == 0) {
641                         t2 = T_OP_EQ;
642                 } else if (buf1[0] == 0 || buf2[0] == 0 || 
643                                         (t2 < T_EQSTART || t2 > T_EQEND)) {
644                         radlog(L_ERR, "%s[%d]: Line is not in 'attribute = value' format",
645                                         cf, *lineno);
646                         cf_section_free(&cs);
647                         return NULL;
648                 }
649
650                 /*
651                  *      Ensure that the user can't add CONF_PAIRs
652                  *      with 'internal' names;
653                  */
654                 if (buf1[0] == '_') {
655                         radlog(L_ERR, "%s[%d]: Illegal configuration pair name \"%s\"",
656                                         cf, *lineno, buf1);
657                         cf_section_free(&cs);
658                         return NULL;
659                 }
660                 
661                 /*
662                  *      Handle variable substitution via ${foo}
663                  */
664                 value = cf_expand_variables(cf, lineno, cs, buf, buf3);
665                 if (!value) {
666                         cf_section_free(&cs);
667                         return NULL;
668                 }
669
670
671                 /*
672                  *      Add this CONF_PAIR to our CONF_SECTION
673                  */
674                 cpn = cf_pair_alloc(buf1, value, t2, parent);
675                 cpn->item.lineno = *lineno;
676                 cf_item_add(cs, cf_pairtoitem(cpn));
677         }
678
679         /*
680          *      See if EOF was unexpected ..
681          */
682         if (name1 != NULL) {
683                 radlog(L_ERR, "%s[%d]: Unexpected end of file", cf, *lineno);
684                 cf_section_free(&cs);
685                 return NULL;
686         }
687
688         return cs;
689 }
690
691 /*
692  *      Read the config file.
693  */
694 static CONF_SECTION *conf_read(const char *fromfile, int fromline, 
695                                const char *conffile, CONF_SECTION *parent)
696 {
697         FILE            *fp;
698         int             lineno = 0;
699         CONF_SECTION    *cs;
700         
701         if ((fp = fopen(conffile, "r")) == NULL) {
702                 if (fromfile) {
703                         radlog(L_ERR|L_CONS, "%s[%d]: Unable to open file \"%s\": %s",
704                                         fromfile, fromline, conffile, strerror(errno));
705                 } else {
706                         radlog(L_ERR|L_CONS, "Unable to open file \"%s\": %s",
707                                         conffile, strerror(errno));
708                 }
709                 return NULL;
710         }
711
712         if(parent) {
713             cs = cf_section_read(conffile, &lineno, fp, NULL, NULL, parent);
714         } else {
715             cs = cf_section_read(conffile, &lineno, fp, NULL, NULL, NULL);
716         }
717
718         fclose(fp);
719
720         return cs;
721 }
722
723 /*
724  *      These are not used anywhere else..
725  */
726 static const char *localstatedir = NULL;
727 static const char *prefix = NULL;
728
729 static CONF_PARSER directory_config[] = {
730   /*
731    *    FIXME: 'prefix' is the ONLY one which should be configured
732    *    at compile time.  Hard-coding it here is bad.  It will be cleaned
733    *    up once we clean up the hard-coded defines for the locations of
734    *    the various files.
735    */
736         { "prefix",             PW_TYPE_STRING_PTR, 0, &prefix,            "/usr/local"},
737         { "localstatedir",      PW_TYPE_STRING_PTR, 0, &localstatedir,     "${prefix}/var"}, 
738         { "logdir",             PW_TYPE_STRING_PTR, 0, &radlog_dir,        "${localstatedir}/log"},
739         { "libdir",             PW_TYPE_STRING_PTR, 0, &radlib_dir,        "${prefix}/lib"},
740         { "radacctdir",         PW_TYPE_STRING_PTR, 0, &radacct_dir,       "${logdir}/radacct" },
741         { "hostname_lookups",   PW_TYPE_BOOLEAN,    0, &librad_dodns,      "no" },
742
743   /*
744    *    We don't allow re-defining this, as doing so will cause
745    *    all sorts of confusion.
746    */
747 #if 0
748         { "confdir",            PW_TYPE_STRING_PTR, 0, &radius_dir,        RADIUS_DIR },
749 #endif
750         { NULL, -1, 0, NULL, NULL }
751 };
752
753 int read_radius_conf_file(void)
754 {
755         char buffer[256];
756         CONF_SECTION *cs;
757
758         /* Lets go look for the new configuration files */
759         snprintf(buffer, sizeof(buffer), "%.200s/%.50s", radius_dir, RADIUS_CONFIG);
760         if ((cs = conf_read(NULL, 0, buffer, NULL)) == NULL) {
761                 return -1;
762         }
763
764         /*
765          *      Free the old configuration data, and replace it
766          *      with the new one.
767          */
768         cf_section_free(&config);
769         config = cs;
770         
771         /*
772          *      And parse the directory configuration values.
773          */
774         cs = cf_section_find(NULL);
775         if (cs == NULL)
776                 return -1;
777
778         /*
779          *      This allows us to figure out where, relative to
780          *      radiusd.conf, the other configuration files exist.
781          */
782         cf_section_parse(cs, NULL, directory_config);
783
784         /* Initialize the dictionary */
785         DEBUG2("read_config_files:  reading dictionary");
786         if (dict_init(radius_dir, RADIUS_DICTIONARY) != 0) {
787                 radlog(L_ERR|L_CONS, "Errors reading dictionary: %s",
788                                 librad_errstr);
789                 return -1;
790         }
791
792         /* old-style clients file */
793         snprintf(buffer, sizeof(buffer), "%.200s/%.50s", radius_dir, RADIUS_CLIENTS);
794         DEBUG2("read_config_files:  reading clients");
795         if (read_clients_file(buffer) < 0) {
796                 radlog(L_ERR|L_CONS, "Errors reading clients");
797                 return -1;
798         }
799
800         /*
801          *      Add to that, the *new* list of clients.
802          */
803         snprintf(buffer, sizeof(buffer), "%.200s/%.50s", radius_dir, RADIUS_CONFIG);
804         if (generate_clients(buffer) < 0) {
805                 return -1;
806         }
807
808         /* old-style realms file */
809         snprintf(buffer, sizeof(buffer), "%.200s/%.50s", radius_dir, RADIUS_REALMS);
810         DEBUG2("read_config_files:  reading realms");
811         if (read_realms_file(buffer) < 0) {
812                 radlog(L_ERR|L_CONS, "Errors reading realms");
813                 return -1;
814         }
815
816         /*
817          *      If there isn't any realms it isn't fatal..
818          */
819         snprintf(buffer, sizeof(buffer), "%.200s/%.50s", radius_dir, RADIUS_CONFIG);
820         if (generate_realms(buffer) < 0) {
821                 return -1;
822         }
823
824         /* old-style naslist file */
825         snprintf(buffer, sizeof(buffer), "%.200s/%.50s", radius_dir, RADIUS_NASLIST);
826         DEBUG2("read_config_files:  reading naslist");
827         if (read_naslist_file(buffer) < 0) {
828                 radlog(L_ERR|L_CONS, "Errors reading naslist");
829                 return -1;
830         }
831
832         return 0;       
833 }
834
835 /* JLN
836  * Create the linked list of realms from the new configuration type
837  * This way we don't have to change to much in the other source-files
838  */
839
840 static int generate_realms(const char *filename)
841 {
842         CONF_SECTION *cs;
843         REALM *my_realms = NULL;
844         REALM *c, **tail;
845         char *s, *authhost, *accthost;
846
847         tail = &my_realms;
848         for (cs = cf_subsection_find_next(config, NULL, "realm"); cs != NULL;
849                         cs = cf_subsection_find_next(config, cs, "realm")) {
850                 if (!cs->name2) {
851                         radlog(L_CONS|L_ERR, "%s[%d]: Missing realm name", filename, cs->item.lineno);
852                         return -1;
853                 }
854                 /*
855                  * We've found a realm, allocate space for it
856                  */
857                 c = rad_malloc(sizeof(REALM));
858                 memset(c, 0, sizeof(REALM));
859
860                 c->secret[0] = '\0';
861
862                 /*
863                  *      No authhost means LOCAL.
864                  */
865                 if ((authhost = cf_section_value_find(cs, "authhost")) == NULL) {
866                         c->ipaddr = htonl(INADDR_NONE);
867                         c->auth_port = auth_port;
868                 } else {
869                         if ((s = strchr(authhost, ':')) != NULL) {
870                                 *s++ = 0;
871                                 c->auth_port = atoi(s);
872                         } else {
873                                 c->auth_port = auth_port;
874                         }
875                         if (strcmp(authhost, "LOCAL") == 0) {
876                                 /*
877                                  *      Local realms don't have an IP address,
878                                  *      secret, or port.
879                                  */
880                                 c->ipaddr = htonl(INADDR_NONE);
881                                 c->auth_port = auth_port;
882                         } else {
883                                 c->ipaddr = ip_getaddr(authhost);
884                         }
885                 }
886
887                 /*
888                  *      No accthost means LOCAL
889                  */
890                 if ((accthost = cf_section_value_find(cs, "accthost")) == NULL) {
891                         c->acct_ipaddr = htonl(INADDR_NONE);
892                         c->acct_port = acct_port;
893                 } else {
894                         if ((s = strchr(accthost, ':')) != NULL) {
895                                 *s++ = 0;
896                                 c->acct_port = atoi(s); 
897                         } else {
898                                 c->acct_port = acct_port;
899                         }
900                         if (strcmp(accthost, "LOCAL") == 0) {
901                                 /*
902                                  *      Local realms don't have an IP address,
903                                  *      secret, or port.
904                                  */
905                                 c->acct_ipaddr = htonl(INADDR_NONE);
906                                 c->acct_port = acct_port;
907                         } else {
908                                 c->acct_ipaddr = ip_getaddr(accthost);
909                         }
910                 }
911
912                 /* 
913                  * Double check length, just to be sure!
914                  */
915                 if (strlen(authhost) >= sizeof(c->server)) {
916                         radlog(L_ERR, "%s[%d]: Server name of length %d is greater that allowed: %d",
917                                         filename, cs->item.lineno,
918                                         strlen(authhost), sizeof(c->server) - 1);
919                         return -1;
920                 }
921                 if (strlen(cs->name2) >= sizeof(c->realm)) {
922                         radlog(L_ERR, "%s[%d]: Realm name of length %d is greater than allowed %d",
923                                         filename, cs->item.lineno,
924                                         strlen(cs->name2), sizeof(c->server) - 1);
925                         return -1;
926                 }
927                 
928                 strcpy(c->realm, cs->name2);
929                 strcpy(c->server, authhost);    
930
931                 /*
932                  *      If one or the other of authentication/accounting
933                  *      servers is set to LOCALHOST, then don't require
934                  *      a shared secret.
935                  */
936                 if ((c->ipaddr != htonl(INADDR_NONE)) ||
937                     (c->acct_ipaddr != htonl(INADDR_NONE))) {
938                         if ((s = cf_section_value_find(cs, "secret")) == NULL ) {
939                                 radlog(L_ERR, "%s[%d]: No shared secret supplied for realm: %s",
940                                        filename, cs->item.lineno, cs->name2);
941                                 return -1;
942                         }
943                         
944                         if (strlen(s) >= sizeof(c->secret)) {
945                                 radlog(L_ERR, "%s[%d]: Secret of length %d is greater than the allowed maximum of %d.",
946                                        filename, cs->item.lineno,
947                                        strlen(s), sizeof(c->secret) - 1);
948                                 return -1;
949                         }
950                         strNcpy((char *)c->secret, s, sizeof(c->secret));
951                 }
952
953                 c->striprealm = 1;
954                 
955                 if ((cf_section_value_find(cs, "nostrip")) != NULL)
956                         c->striprealm = 0;
957                 if ((cf_section_value_find(cs, "noacct")) != NULL)
958                         c->acct_port = 0;
959                 if ((cf_section_value_find(cs, "trusted")) != NULL)
960                         c->trusted = 1;
961                 if ((cf_section_value_find(cs, "notrealm")) != NULL)
962                         c->notrealm = 1;
963                 if ((cf_section_value_find(cs, "notsuffix")) != NULL)
964                         c->notrealm = 1;
965                 c->active = TRUE;
966
967                 c->next = NULL;
968                 *tail = c;
969                 tail = &c->next;
970         }
971
972         /*
973          *      And make these realms preferred over the ones
974          *      in the 'realms' file.
975          */
976         *tail = realms;
977         realms = my_realms;
978
979         return 0;
980 }
981
982 /* JLN
983  * Create the linked list of realms from the new configuration type
984  * This way we don't have to change to much in the other source-files
985  */
986 static int generate_clients(const char *filename)
987 {
988         CONF_SECTION    *cs;
989         RADCLIENT       *c;
990         char            *hostnm, *secret, *shortnm, *netmask;
991
992         for (cs = cf_subsection_find_next(config, NULL, "client"); cs != NULL; 
993                         cs = cf_subsection_find_next(config, cs, "client")) {
994                 if (!cs->name2) {
995                         radlog(L_CONS|L_ERR, "%s[%d]: Missing client name", filename, cs->item.lineno);
996                         return -1;
997                 }
998                 /*
999                  * Check the lengths, we don't want any core dumps
1000                  */
1001                 hostnm = cs->name2;
1002
1003                 if((secret = cf_section_value_find(cs, "secret")) == NULL) {
1004                         radlog(L_ERR, "%s[%d]: Missing secret for client: %s",
1005                                 filename, cs->item.lineno, cs->name2);
1006                         return -1;
1007                 }
1008
1009                 if((shortnm = cf_section_value_find(cs, "shortname")) == NULL) {
1010                         radlog(L_ERR, "%s[%d]: Missing shortname for client: %s",
1011                                 filename, cs->item.lineno, cs->name2);
1012                         return -1;
1013                 }
1014
1015                 netmask = strchr(hostnm, '/');
1016
1017                 if (strlen(secret) >= sizeof(c->secret)) {
1018                         radlog(L_ERR, "%s[%d]: Secret of length %d is greater than the allowed maximum of %d.",
1019                                 filename, cs->item.lineno,
1020                                 strlen(secret), sizeof(c->secret) - 1);
1021                         return -1;
1022                 }
1023                 if (strlen(shortnm) > sizeof(c->shortname)) {
1024                         radlog(L_ERR, "%s[%d]: Client short name of length %d is greater than the allowed maximum of %d.",
1025                                         filename, cs->item.lineno,
1026                                         strlen(shortnm), sizeof(c->shortname) - 1);
1027                         return -1;
1028                 }
1029                 /*
1030                  * The size is fine.. Let's create the buffer
1031                  */
1032                 c = rad_malloc(sizeof(RADCLIENT));
1033
1034                 /*
1035                  *      Look for netmasks.
1036                  */
1037                 c->netmask = ~0;
1038                 if (netmask) {
1039                         int i, mask_length;
1040
1041                         mask_length = atoi(netmask + 1);
1042                         if ((mask_length <= 0) || (mask_length > 32)) {
1043                                 radlog(L_ERR, "%s[%d]: Invalid value '%s' for IP network mask.",
1044                                                 filename, cs->item.lineno, netmask + 1);
1045                                 return -1;
1046                         }
1047                         
1048                         c->netmask = (1 << 31);
1049                         for (i = 1; i < mask_length; i++) {
1050                                 c->netmask |= (c->netmask >> 1);
1051                         }
1052
1053                         *netmask = '\0';
1054                         c->netmask = htonl(c->netmask);
1055                 }
1056
1057                 c->ipaddr = ip_getaddr(hostnm);
1058                 if (c->ipaddr == INADDR_NONE) {
1059                         radlog(L_CONS|L_ERR, "%s[%d]: Failed to look up hostname %s",
1060                                         filename, cs->item.lineno, hostnm);
1061                         return -1;
1062                 }
1063
1064                 /*
1065                  *      Update the client name again...
1066                  */
1067                 if (netmask) {
1068                         *netmask = '/';
1069                         c->ipaddr &= c->netmask;
1070                         strcpy(c->longname, hostnm);
1071                 } else {
1072                         ip_hostname(c->longname, sizeof(c->longname),
1073                                         c->ipaddr);
1074                 }
1075
1076                 strcpy((char *)c->secret, secret);
1077                 strcpy(c->shortname, shortnm);
1078
1079                 c->next = clients;
1080                 clients = c;
1081         }
1082
1083         return 0;
1084 }
1085
1086 /* 
1087  * Return a CONF_PAIR within a CONF_SECTION.
1088  */
1089
1090 CONF_PAIR *cf_pair_find(CONF_SECTION *section, const char *name)
1091 {
1092         CONF_ITEM       *ci;
1093
1094         if (section == NULL) {
1095                 section = config;
1096         }
1097
1098         for (ci = section->children; ci; ci = ci->next) {
1099                 if (ci->type != CONF_ITEM_PAIR)
1100                         continue;
1101                 if (name == NULL || strcmp(cf_itemtopair(ci)->attr, name) == 0)
1102                         break;
1103         }
1104
1105         return cf_itemtopair(ci);
1106 }
1107
1108 /*
1109  * Return the attr of a CONF_PAIR
1110  */
1111
1112 char *cf_pair_attr(CONF_PAIR *pair)
1113 {
1114         return (pair ? pair->attr : NULL);
1115 }
1116
1117 /*
1118  * Return the value of a CONF_PAIR
1119  */
1120
1121 char *cf_pair_value(CONF_PAIR *pair)
1122 {
1123         return (pair ? pair->value : NULL);
1124 }
1125
1126 /*
1127  * Return the first label of a CONF_SECTION
1128  */
1129
1130 char *cf_section_name1(CONF_SECTION *section)
1131 {
1132         return (section ? section->name1 : NULL);
1133 }
1134
1135 /*
1136  * Return the second label of a CONF_SECTION
1137  */
1138
1139 char *cf_section_name2(CONF_SECTION *section)
1140 {
1141         return (section ? section->name2 : NULL);
1142 }
1143
1144 /* 
1145  * Find a value in a CONF_SECTION
1146  */
1147 char *cf_section_value_find(CONF_SECTION *section, const char *attr)
1148 {
1149         CONF_PAIR       *cp;
1150
1151         cp = cf_pair_find(section, attr);
1152
1153         return (cp ? cp->value : NULL);
1154 }
1155
1156 /*
1157  * Return the next pair after a CONF_PAIR
1158  * with a certain name (char *attr) If the requested
1159  * attr is NULL, any attr matches.
1160  */
1161
1162 CONF_PAIR *cf_pair_find_next(CONF_SECTION *section, CONF_PAIR *pair, const char *attr)
1163 {
1164         CONF_ITEM       *ci;
1165
1166         /*
1167          * If pair is NULL this must be a first time run
1168          * Find the pair with correct name
1169          */
1170
1171         if (pair == NULL){
1172                 return cf_pair_find(section, attr);
1173         }
1174
1175         ci = cf_pairtoitem(pair)->next;
1176
1177         for (; ci; ci = ci->next) {
1178                 if (ci->type != CONF_ITEM_PAIR)
1179                         continue;
1180                 if (attr == NULL || strcmp(cf_itemtopair(ci)->attr, attr) == 0)
1181                         break;
1182         }
1183
1184         return cf_itemtopair(ci);
1185 }
1186
1187 /*
1188  * Find a CONF_SECTION, or return the root if name is NULL
1189  */
1190
1191 CONF_SECTION *cf_section_find(const char *name)
1192 {
1193         if (name)
1194                 return cf_section_sub_find(config, name);
1195         else
1196                 return config;
1197 }
1198
1199 /*
1200  * Find a sub-section in a section
1201  */
1202
1203 CONF_SECTION *cf_section_sub_find(CONF_SECTION *section, const char *name)
1204 {
1205         CONF_ITEM *ci;
1206
1207         for (ci = section->children; ci; ci = ci->next) {
1208                 if (ci->type != CONF_ITEM_SECTION)
1209                         continue;
1210                 if (strcmp(cf_itemtosection(ci)->name1, name) == 0)
1211                         break;
1212         }
1213
1214         return cf_itemtosection(ci);
1215
1216 }
1217
1218 /*
1219  * Return the next subsection after a CONF_SECTION
1220  * with a certain name1 (char *name1). If the requested
1221  * name1 is NULL, any name1 matches.
1222  */
1223
1224 CONF_SECTION *cf_subsection_find_next(CONF_SECTION *section,
1225                 CONF_SECTION *subsection,
1226                 const char *name1)
1227 {
1228         CONF_ITEM       *ci;
1229
1230         /*
1231          * If subsection is NULL this must be a first time run
1232          * Find the subsection with correct name
1233          */
1234
1235         if (subsection == NULL){
1236                 ci = section->children;
1237         } else {
1238                 ci = cf_sectiontoitem(subsection)->next;
1239         }
1240
1241         for (; ci; ci = ci->next) {
1242                 if (ci->type != CONF_ITEM_SECTION)
1243                         continue;
1244                 if ((name1 == NULL) || 
1245                                 (strcmp(cf_itemtosection(ci)->name1, name1) == 0))
1246                         break;
1247         }
1248
1249         return cf_itemtosection(ci);
1250 }
1251
1252 /*
1253  * Return the next item after a CONF_ITEM.
1254  */
1255
1256 CONF_ITEM *cf_item_find_next(CONF_SECTION *section, CONF_ITEM *item)
1257 {
1258         /*
1259          * If item is NULL this must be a first time run
1260          * Return the first item
1261          */
1262
1263         if (item == NULL) {
1264                 return section->children;
1265         } else {
1266                 return item->next;
1267         }
1268 }
1269
1270 int cf_section_lineno(CONF_SECTION *section)
1271 {
1272         return cf_sectiontoitem(section)->lineno;
1273 }
1274
1275 int cf_pair_lineno(CONF_PAIR *pair)
1276 {
1277         return cf_pairtoitem(pair)->lineno;
1278 }
1279
1280 int cf_item_is_section(CONF_ITEM *item)
1281 {
1282         return item->type == CONF_ITEM_SECTION;
1283 }
1284
1285
1286 /* 
1287  * JMG dump_config tries to dump the config structure in a readable format
1288  * 
1289 */
1290
1291 static int dump_config_section(CONF_SECTION *cs, int indent)
1292 {
1293         CONF_SECTION    *scs;
1294         CONF_PAIR       *cp;
1295         CONF_ITEM       *ci;
1296
1297         /* The DEBUG macro doesn't let me
1298          *   for(i=0;i<indent;++i) debugputchar('\t');
1299          * so I had to get creative. --Pac. */
1300
1301         for (ci = cs->children; ci; ci = ci->next) {
1302                 if (ci->type == CONF_ITEM_PAIR) {
1303                         cp=cf_itemtopair(ci);
1304                         DEBUG("%.*s%s = %s",
1305                                 indent, "\t\t\t\t\t\t\t\t\t\t\t",
1306                                 cp->attr, cp->value);
1307                 } else {
1308                         scs=cf_itemtosection(ci);
1309                         DEBUG("%.*s%s %s%s{",
1310                                 indent, "\t\t\t\t\t\t\t\t\t\t\t",
1311                                 scs->name1,
1312                                 scs->name2 ? scs->name2 : "",
1313                                 scs->name2 ?  " " : "");
1314                         dump_config_section(scs, indent+1);
1315                         DEBUG("%.*s}",
1316                                 indent, "\t\t\t\t\t\t\t\t\t\t\t");
1317                 }
1318         }
1319
1320         return 0;
1321 }
1322
1323 int dump_config(void)
1324 {
1325         return dump_config_section(config, 0);
1326 }