Just another round of "quiet the gcc warnings"
[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 #include <assert.h>
35
36 #if HAVE_NETINET_IN_H
37 #       include <netinet/in.h>
38 #endif
39
40 #include "radiusd.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         int 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         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         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                 int 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 = xstrdup(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 || buf3[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
754 int read_radius_conf_file(void)
755 {
756         char buffer[256];
757         CONF_SECTION *cs;
758
759         /* Lets go look for the new configuration files */
760         snprintf(buffer, sizeof(buffer), "%.200s/%.50s", radius_dir, RADIUS_CONFIG);
761         if ((cs = conf_read(NULL, 0, buffer, NULL)) == NULL) {
762                 return -1;
763         }
764
765         /*
766          *      Free the old configuration data, and replace it
767          *      with the new one.
768          */
769         cf_section_free(&config);
770         config = cs;
771         
772         /*
773          *      And parse the directory configuration values.
774          */
775         cs = cf_section_find(NULL);
776         if (cs == NULL)
777                 return -1;
778
779         /*
780          *      This allows us to figure out where, relative to
781          *      radiusd.conf, the other configuration files exist.
782          */
783         cf_section_parse(cs, NULL, directory_config);
784
785         /* Initialize the dictionary */
786         DEBUG2("read_config_files:  reading dictionary");
787         if (dict_init(radius_dir, RADIUS_DICTIONARY) != 0) {
788                 radlog(L_ERR|L_CONS, "Errors reading dictionary: %s",
789                                 librad_errstr);
790                 return -1;
791         }
792
793         /* old-style clients file */
794         snprintf(buffer, sizeof(buffer), "%.200s/%.50s", radius_dir, RADIUS_CLIENTS);
795         DEBUG2("read_config_files:  reading clients");
796         if (read_clients_file(buffer) < 0) {
797                 radlog(L_ERR|L_CONS, "Errors reading clients");
798                 return -1;
799         }
800
801         /*
802          *      Add to that, the *new* list of clients.
803          */
804         snprintf(buffer, sizeof(buffer), "%.200s/%.50s", radius_dir, RADIUS_CONFIG);
805         if (generate_clients(buffer) < 0) {
806                 return -1;
807         }
808
809         /* old-style realms file */
810         snprintf(buffer, sizeof(buffer), "%.200s/%.50s", radius_dir, RADIUS_REALMS);
811         DEBUG2("read_config_files:  reading realms");
812         if (read_realms_file(buffer) < 0) {
813                 radlog(L_ERR|L_CONS, "Errors reading realms");
814                 return -1;
815         }
816
817         /*
818          *      If there isn't any realms it isn't fatal..
819          */
820         snprintf(buffer, sizeof(buffer), "%.200s/%.50s", radius_dir, RADIUS_CONFIG);
821         if (generate_realms(buffer) < 0) {
822                 return -1;
823         }
824
825         /* old-style naslist file */
826         snprintf(buffer, sizeof(buffer), "%.200s/%.50s", radius_dir, RADIUS_NASLIST);
827         DEBUG2("read_config_files:  reading naslist");
828         if (read_naslist_file(buffer) < 0) {
829                 radlog(L_ERR|L_CONS, "Errors reading naslist");
830                 return -1;
831         }
832
833         return 0;       
834 }
835
836 /* JLN
837  * Create the linked list of realms from the new configuration type
838  * This way we don't have to change to much in the other source-files
839  */
840
841 static int generate_realms(const char *filename)
842 {
843         CONF_SECTION *cs;
844         REALM *c;
845         char *s, *authhost, *accthost;
846
847         for (cs = cf_subsection_find_next(config, NULL, "realm"); cs != NULL;
848                         cs = cf_subsection_find_next(config, cs, "realm")) {
849                 if (!cs->name2) {
850                         radlog(L_CONS|L_ERR, "%s[%d]: Missing realm name", filename, cs->item.lineno);
851                         return -1;
852                 }
853                 /*
854                  * We've found a realm, allocate space for it
855                  */
856                 c = rad_malloc(sizeof(REALM));
857                 memset(c, 0, sizeof(REALM));
858                 /*
859                  * An authhost must exist in the configuration
860                  */
861                 if ((authhost = cf_section_value_find(cs, "authhost")) == NULL) {
862                         radlog(L_CONS|L_ERR, 
863                                 "%s[%d]: No authhost entry in realm", 
864                                 filename, cs->item.lineno);
865                         return -1;
866                 }
867                 if ((s = strchr(authhost, ':')) != NULL) {
868                         *s++ = 0;
869                         c->auth_port = atoi(s);
870                 } else {
871                         c->auth_port = auth_port;
872                 }
873                 accthost = cf_section_value_find(cs, "accthost");
874                 if ((s =strchr(accthost, ':')) != NULL) {
875                         *s++ = 0;
876                         c->acct_port = atoi(s); 
877                 } else {
878                         c->acct_port = acct_port;
879                 }
880                 if (strcmp(authhost, "LOCAL") != 0)
881                         c->ipaddr = ip_getaddr(authhost);
882
883                 /* 
884                  * Double check length, just to be sure!
885                  */
886                 if (strlen(authhost) >= sizeof(c->server)) {
887                         radlog(L_ERR, "%s[%d]: Server name of length %d is greater that allowed: %d",
888                                         filename, cs->item.lineno,
889                                         strlen(authhost), sizeof(c->server) - 1);
890                         return -1;
891                 }
892                 if (strlen(cs->name2) >= sizeof(c->realm)) {
893                         radlog(L_ERR, "%s[%d]: Realm name of length %d is greater than allowed %d",
894                                         filename, cs->item.lineno,
895                                         strlen(cs->name2), sizeof(c->server) - 1);
896                         return -1;
897                 }
898                 
899                 strcpy(c->realm, cs->name2);
900                 strcpy(c->server, authhost);    
901
902                 s = cf_section_value_find(cs, "secret");
903                 if (s == NULL) {
904                         radlog(L_ERR, "%s[%d]: No shared secret supplied for realm",
905                                         filename, cs->item.lineno);
906                         return -1;
907                 }
908
909                 if (strlen(s) >= sizeof(c->secret)) {
910                         radlog(L_ERR, "%s[%d]: Secret of length %d is greater than the allowed maximum of %d.",
911                                         filename, cs->item.lineno,
912                                         strlen(s), sizeof(c->secret) - 1);
913                         return -1;
914                 }
915                 strNcpy((char *)c->secret, s, sizeof(c->secret));
916
917                 c->striprealm = 1;
918                 
919                 if ((cf_section_value_find(cs, "nostrip")) != NULL)
920                         c->striprealm = 0;
921                 if ((cf_section_value_find(cs, "noacct")) != NULL)
922                         c->acct_port = 0;
923                 if ((cf_section_value_find(cs, "trusted")) != NULL)
924                         c->trusted = 1;
925                 if ((cf_section_value_find(cs, "notrealm")) != NULL)
926                         c->notrealm = 1;
927                 if ((cf_section_value_find(cs, "notsuffix")) != NULL)
928                         c->notrealm = 1;
929
930
931                 c->next = realms;
932                 realms = c;
933
934         }
935
936         return 0;
937 }
938
939 /* JLN
940  * Create the linked list of realms from the new configuration type
941  * This way we don't have to change to much in the other source-files
942  */
943 static int generate_clients(const char *filename)
944 {
945         CONF_SECTION    *cs;
946         RADCLIENT       *c;
947         char            *hostnm, *secret, *shortnm, *netmask;
948
949         for (cs = cf_subsection_find_next(config, NULL, "client"); cs != NULL; 
950                         cs = cf_subsection_find_next(config, cs, "client")) {
951                 if (!cs->name2) {
952                         radlog(L_CONS|L_ERR, "%s[%d]: Missing client name", filename, cs->item.lineno);
953                         return -1;
954                 }
955                 /*
956                  * Check the lengths, we don't want any core dumps
957                  */
958                 hostnm = cs->name2;
959                 secret = cf_section_value_find(cs, "secret");
960                 shortnm = cf_section_value_find(cs, "shortname");
961                 netmask = strchr(hostnm, '/');
962
963                 if (strlen(secret) >= sizeof(c->secret)) {
964                         radlog(L_ERR, "%s[%d]: Secret of length %d is greater than the allowed maximum of %d.",
965                                 filename, cs->item.lineno,
966                                 strlen(secret), sizeof(c->secret) - 1);
967                         return -1;
968                 }
969                 if (strlen(shortnm) > sizeof(c->shortname)) {
970                         radlog(L_ERR, "%s[%d]: Client short name of length %d is greater than the allowed maximum of %d.",
971                                         filename, cs->item.lineno,
972                                         strlen(shortnm), sizeof(c->shortname) - 1);
973                         return -1;
974                 }
975                 /*
976                  * The size is fine.. Let's create the buffer
977                  */
978                 c = rad_malloc(sizeof(RADCLIENT));
979
980                 /*
981                  *      Look for netmasks.
982                  */
983                 c->netmask = ~0;
984                 if (netmask) {
985                         int i, mask_length;
986
987                         mask_length = atoi(netmask + 1);
988                         if ((mask_length <= 0) || (mask_length > 32)) {
989                                 radlog(L_ERR, "%s[%d]: Invalid value '%s' for IP network mask.",
990                                                 filename, cs->item.lineno, netmask + 1);
991                                 return -1;
992                         }
993                         
994                         c->netmask = (1 << 31);
995                         for (i = 1; i < mask_length; i++) {
996                                 c->netmask |= (c->netmask >> 1);
997                         }
998
999                         *netmask = '\0';
1000                         c->netmask = htonl(c->netmask);
1001                 }
1002
1003                 c->ipaddr = ip_getaddr(hostnm);
1004                 if (c->ipaddr == INADDR_NONE) {
1005                         radlog(L_CONS|L_ERR, "%s[%d]: Failed to look up hostname %s",
1006                                         filename, cs->item.lineno, hostnm);
1007                         return -1;
1008                 }
1009
1010                 /*
1011                  *      Update the client name again...
1012                  */
1013                 if (netmask) {
1014                         *netmask = '/';
1015                         c->ipaddr &= c->netmask;
1016                         strcpy(c->longname, hostnm);
1017                 } else {
1018                         ip_hostname(c->longname, sizeof(c->longname),
1019                                         c->ipaddr);
1020                 }
1021
1022                 strcpy((char *)c->secret, secret);
1023                 strcpy(c->shortname, shortnm);
1024
1025                 c->next = clients;
1026                 clients = c;
1027         }
1028
1029         return 0;
1030 }
1031
1032 /* 
1033  * Return a CONF_PAIR within a CONF_SECTION.
1034  */
1035
1036 CONF_PAIR *cf_pair_find(CONF_SECTION *section, const char *name)
1037 {
1038         CONF_ITEM       *ci;
1039
1040         if (section == NULL) {
1041                 section = config;
1042         }
1043
1044         for (ci = section->children; ci; ci = ci->next) {
1045                 if (ci->type != CONF_ITEM_PAIR)
1046                         continue;
1047                 if (name == NULL || strcmp(cf_itemtopair(ci)->attr, name) == 0)
1048                         break;
1049         }
1050
1051         return cf_itemtopair(ci);
1052 }
1053
1054 /*
1055  * Return the attr of a CONF_PAIR
1056  */
1057
1058 char *cf_pair_attr(CONF_PAIR *pair)
1059 {
1060         return (pair ? pair->attr : NULL);
1061 }
1062
1063 /*
1064  * Return the value of a CONF_PAIR
1065  */
1066
1067 char *cf_pair_value(CONF_PAIR *pair)
1068 {
1069         return (pair ? pair->value : NULL);
1070 }
1071
1072 /*
1073  * Return the first label of a CONF_SECTION
1074  */
1075
1076 char *cf_section_name1(CONF_SECTION *section)
1077 {
1078         return (section ? section->name1 : NULL);
1079 }
1080
1081 /*
1082  * Return the second label of a CONF_SECTION
1083  */
1084
1085 char *cf_section_name2(CONF_SECTION *section)
1086 {
1087         return (section ? section->name2 : NULL);
1088 }
1089
1090 /* 
1091  * Find a value in a CONF_SECTION
1092  */
1093 char *cf_section_value_find(CONF_SECTION *section, const char *attr)
1094 {
1095         CONF_PAIR       *cp;
1096
1097         cp = cf_pair_find(section, attr);
1098
1099         return (cp ? cp->value : NULL);
1100 }
1101
1102 /*
1103  * Return the next pair after a CONF_PAIR
1104  * with a certain name (char *attr) If the requested
1105  * attr is NULL, any attr matches.
1106  */
1107
1108 CONF_PAIR *cf_pair_find_next(CONF_SECTION *section, CONF_PAIR *pair, const char *attr)
1109 {
1110         CONF_ITEM       *ci;
1111
1112         /*
1113          * If pair is NULL this must be a first time run
1114          * Find the pair with correct name
1115          */
1116
1117         if (pair == NULL){
1118                 return cf_pair_find(section, attr);
1119         }
1120
1121         ci = cf_pairtoitem(pair)->next;
1122
1123         for (; ci; ci = ci->next) {
1124                 if (ci->type != CONF_ITEM_PAIR)
1125                         continue;
1126                 if (attr == NULL || strcmp(cf_itemtopair(ci)->attr, attr) == 0)
1127                         break;
1128         }
1129
1130         return cf_itemtopair(ci);
1131 }
1132
1133 /*
1134  * Find a CONF_SECTION, or return the root if name is NULL
1135  */
1136
1137 CONF_SECTION *cf_section_find(const char *name)
1138 {
1139         if (name)
1140                 return cf_section_sub_find(config, name);
1141         else
1142                 return config;
1143 }
1144
1145 /*
1146  * Find a sub-section in a section
1147  */
1148
1149 CONF_SECTION *cf_section_sub_find(CONF_SECTION *section, const char *name)
1150 {
1151         CONF_ITEM *ci;
1152
1153         for (ci = section->children; ci; ci = ci->next) {
1154                 if (ci->type != CONF_ITEM_SECTION)
1155                         continue;
1156                 if (strcmp(cf_itemtosection(ci)->name1, name) == 0)
1157                         break;
1158         }
1159
1160         return cf_itemtosection(ci);
1161
1162 }
1163
1164 /*
1165  * Return the next subsection after a CONF_SECTION
1166  * with a certain name1 (char *name1). If the requested
1167  * name1 is NULL, any name1 matches.
1168  */
1169
1170 CONF_SECTION *cf_subsection_find_next(CONF_SECTION *section,
1171                 CONF_SECTION *subsection,
1172                 const char *name1)
1173 {
1174         CONF_ITEM       *ci;
1175
1176         /*
1177          * If subsection is NULL this must be a first time run
1178          * Find the subsection with correct name
1179          */
1180
1181         if (subsection == NULL){
1182                 ci = section->children;
1183         } else {
1184                 ci = cf_sectiontoitem(subsection)->next;
1185         }
1186
1187         for (; ci; ci = ci->next) {
1188                 if (ci->type != CONF_ITEM_SECTION)
1189                         continue;
1190                 if ((name1 == NULL) || 
1191                                 (strcmp(cf_itemtosection(ci)->name1, name1) == 0))
1192                         break;
1193         }
1194
1195         return cf_itemtosection(ci);
1196 }
1197
1198 /*
1199  * Return the next item after a CONF_ITEM.
1200  */
1201
1202 CONF_ITEM *cf_item_find_next(CONF_SECTION *section, CONF_ITEM *item)
1203 {
1204         /*
1205          * If item is NULL this must be a first time run
1206          * Return the first item
1207          */
1208
1209         if (item == NULL) {
1210                 return section->children;
1211         } else {
1212                 return item->next;
1213         }
1214 }
1215
1216 int cf_section_lineno(CONF_SECTION *section)
1217 {
1218         return cf_sectiontoitem(section)->lineno;
1219 }
1220
1221 int cf_pair_lineno(CONF_PAIR *pair)
1222 {
1223         return cf_pairtoitem(pair)->lineno;
1224 }
1225
1226 int cf_item_is_section(CONF_ITEM *item)
1227 {
1228         return item->type == CONF_ITEM_SECTION;
1229 }
1230
1231
1232 /* 
1233  * JMG dump_config tries to dump the config structure in a readable format
1234  * 
1235 */
1236
1237 static int dump_config_section(CONF_SECTION *cs, int indent)
1238 {
1239         CONF_SECTION    *scs;
1240         CONF_PAIR       *cp;
1241         CONF_ITEM       *ci;
1242
1243         /* The DEBUG macro doesn't let me
1244          *   for(i=0;i<indent;++i) debugputchar('\t');
1245          * so I had to get creative. --Pac. */
1246
1247         for (ci = cs->children; ci; ci = ci->next) {
1248                 if (ci->type == CONF_ITEM_PAIR) {
1249                         cp=cf_itemtopair(ci);
1250                         DEBUG("%.*s%s = %s",
1251                                 indent, "\t\t\t\t\t\t\t\t\t\t\t",
1252                                 cp->attr, cp->value);
1253                 } else {
1254                         scs=cf_itemtosection(ci);
1255                         DEBUG("%.*s%s %s%s{",
1256                                 indent, "\t\t\t\t\t\t\t\t\t\t\t",
1257                                 scs->name1,
1258                                 scs->name2 ? scs->name2 : "",
1259                                 scs->name2 ?  " " : "");
1260                         dump_config_section(scs, indent+1);
1261                         DEBUG("%.*s}",
1262                                 indent, "\t\t\t\t\t\t\t\t\t\t\t");
1263                 }
1264         }
1265
1266         return 0;
1267 }
1268
1269 int dump_config(void)
1270 {
1271         return dump_config_section(config, 0);
1272 }