Delete unused variable
[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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23  *
24  * Copyright 2000,2006  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 <freeradius-devel/ident.h>
30 RCSID("$Id$")
31
32 #include <freeradius-devel/radiusd.h>
33 #include <freeradius-devel/rad_assert.h>
34
35 #ifdef HAVE_DIRENT_H
36 #include <dirent.h>
37 #endif
38
39 #ifdef HAVE_SYS_STAT_H
40 #include <sys/stat.h>
41 #endif
42
43 #include <ctype.h>
44
45 typedef enum conf_type {
46         CONF_ITEM_INVALID = 0,
47         CONF_ITEM_PAIR,
48         CONF_ITEM_SECTION,
49         CONF_ITEM_DATA
50 } CONF_ITEM_TYPE;
51
52 struct conf_item {
53         struct conf_item *next;
54         struct conf_part *parent;
55         int lineno;
56         const char *filename;
57         CONF_ITEM_TYPE type;
58 };
59 struct conf_pair {
60         CONF_ITEM item;
61         const char *attr;
62         const char *value;
63         FR_TOKEN operator;
64         FR_TOKEN value_type;
65 };
66 struct conf_part {
67         CONF_ITEM item;
68         const char *name1;
69         const char *name2;
70         struct conf_item *children;
71         struct conf_item *tail; /* for speed */
72         CONF_SECTION    *template;
73         rbtree_t        *pair_tree; /* and a partridge.. */
74         rbtree_t        *section_tree; /* no jokes here */
75         rbtree_t        *name2_tree; /* for sections of the same name2 */
76         rbtree_t        *data_tree;
77         void            *base;
78         int depth;
79         const CONF_PARSER *variables;
80 };
81
82
83 /*
84  *      Internal data that is associated with a configuration section,
85  *      so that we don't have to track it separately.
86  */
87 struct conf_data {
88         CONF_ITEM  item;
89         const char *name;
90         int        flag;
91         void       *data;       /* user data */
92         void       (*free)(void *); /* free user data function */
93 };
94
95
96 static int cf_data_add_internal(CONF_SECTION *cs, const char *name,
97                                 void *data, void (*data_free)(void *),
98                                 int flag);
99 static void *cf_data_find_internal(CONF_SECTION *cs, const char *name,
100                                    int flag);
101
102 int cf_log_config = 1;
103 int cf_log_modules = 1;
104
105 /*
106  *      Isolate the scary casts in these tiny provably-safe functions
107  */
108 CONF_PAIR *cf_itemtopair(CONF_ITEM *ci)
109 {
110         if (ci == NULL)
111                 return NULL;
112         rad_assert(ci->type == CONF_ITEM_PAIR);
113         return (CONF_PAIR *)ci;
114 }
115 CONF_SECTION *cf_itemtosection(CONF_ITEM *ci)
116 {
117         if (ci == NULL)
118                 return NULL;
119         rad_assert(ci->type == CONF_ITEM_SECTION);
120         return (CONF_SECTION *)ci;
121 }
122 CONF_ITEM *cf_pairtoitem(CONF_PAIR *cp)
123 {
124         if (cp == NULL)
125                 return NULL;
126         return (CONF_ITEM *)cp;
127 }
128 CONF_ITEM *cf_sectiontoitem(CONF_SECTION *cs)
129 {
130         if (cs == NULL)
131                 return NULL;
132         return (CONF_ITEM *)cs;
133 }
134
135 static CONF_DATA *cf_itemtodata(CONF_ITEM *ci)
136 {
137         if (ci == NULL)
138                 return NULL;
139         rad_assert(ci->type == CONF_ITEM_DATA);
140         return (CONF_DATA *)ci;
141 }
142 static CONF_ITEM *cf_datatoitem(CONF_DATA *cd)
143 {
144         if (cd == NULL)
145                 return NULL;
146         return (CONF_ITEM *)cd;
147 }
148
149 /*
150  *      Create a new CONF_PAIR
151  */
152 static CONF_PAIR *cf_pair_alloc(const char *attr, const char *value,
153                                 FR_TOKEN operator, FR_TOKEN value_type,
154                                 CONF_SECTION *parent)
155 {
156         char *p;
157         size_t attr_len, value_len = 0;
158         CONF_PAIR *cp;
159
160         if (!attr) return NULL;
161         attr_len = strlen(attr) + 1;
162         if (value) value_len = strlen(value) + 1;
163
164         p = rad_malloc(sizeof(*cp) + attr_len + value_len);
165
166         cp = (CONF_PAIR *) p;
167         memset(cp, 0, sizeof(*cp));
168         cp->item.type = CONF_ITEM_PAIR;
169         cp->item.parent = parent;
170
171         p += sizeof(*cp);
172         memcpy(p, attr, attr_len);
173         cp->attr = p;
174
175         if (value) {
176                 p += attr_len;
177                 memcpy(p, value, value_len);
178                 cp->value = p;
179         }
180         cp->value_type = value_type;
181         cp->operator = operator;
182
183         return cp;
184 }
185
186 /*
187  *      Free a CONF_PAIR
188  */
189 void cf_pair_free(CONF_PAIR **cp)
190 {
191         if (!cp || !*cp) return;
192
193         /*
194          *      attr && value are allocated contiguous with cp.
195          */
196
197 #ifndef NDEBUG
198         memset(*cp, 0, sizeof(*cp));
199 #endif
200         free(*cp);
201
202         *cp = NULL;
203 }
204
205
206 static void cf_data_free(CONF_DATA **cd)
207 {
208         if (!cd || !*cd) return;
209
210         /* name is allocated contiguous with cd */
211         if (!(*cd)->free) {
212                 free((*cd)->data);
213         } else {
214                 ((*cd)->free)((*cd)->data);
215         }
216 #ifndef NDEBUG
217         memset(*cd, 0, sizeof(*cd));
218 #endif
219         free(*cd);
220         *cd = NULL;
221 }
222
223 /*
224  *      rbtree callback function
225  */
226 static int pair_cmp(const void *a, const void *b)
227 {
228         const CONF_PAIR *one = a;
229         const CONF_PAIR *two = b;
230
231         return strcmp(one->attr, two->attr);
232 }
233
234
235 /*
236  *      rbtree callback function
237  */
238 static int section_cmp(const void *a, const void *b)
239 {
240         const CONF_SECTION *one = a;
241         const CONF_SECTION *two = b;
242
243         return strcmp(one->name1, two->name1);
244 }
245
246
247 /*
248  *      rbtree callback function
249  */
250 static int name2_cmp(const void *a, const void *b)
251 {
252         const CONF_SECTION *one = a;
253         const CONF_SECTION *two = b;
254
255         rad_assert(strcmp(one->name1, two->name1) == 0);
256
257         if (!one->name2 && !two->name2) return 0;
258         if (!one->name2) return -1;
259         if (!two->name2) return +1;
260
261         return strcmp(one->name2, two->name2);
262 }
263
264
265 /*
266  *      rbtree callback function
267  */
268 static int data_cmp(const void *a, const void *b)
269 {
270         int rcode;
271
272         const CONF_DATA *one = a;
273         const CONF_DATA *two = b;
274
275         rcode = one->flag - two->flag;
276         if (rcode != 0) return rcode;
277
278         return strcmp(one->name, two->name);
279 }
280
281
282 /*
283  *      Free strings we've parsed into data structures.
284  */
285 void cf_section_parse_free(CONF_SECTION *cs, void *base)
286 {
287         int i;
288         const CONF_PARSER *variables = cs->variables;
289
290         /*
291          *      Don't automatically free the strings if we're being
292          *      called from a module.  This is also for clients.c,
293          *      where client_free() expects to be able to free the
294          *      client structure.  If we moved everything to key off
295          *      of the config files, we might solve some problems...
296          */
297         if (!variables) return;
298
299         /*
300          *      Free up dynamically allocated string pointers.
301          */
302         for (i = 0; variables[i].name != NULL; i++) {
303                 char **p;
304
305                 if ((variables[i].type != PW_TYPE_STRING_PTR) &&
306                     (variables[i].type != PW_TYPE_FILENAME)) {
307                         continue;
308                 }
309
310                 /*
311                  *      No base struct offset, data must be the pointer.
312                  *      If data doesn't exist, ignore the entry, there
313                  *      must be something wrong.
314                  */
315                 if (!base) {
316                         if (!variables[i].data) {
317                                 continue;
318                         }
319
320                         p = (char **) variables[i].data;;
321
322                 } else if (variables[i].data) {
323                         p = (char **) variables[i].data;;
324
325                 } else {
326                         p = (char **) (((char *)base) + variables[i].offset);
327                 }
328
329                 free(*p);
330                 *p = NULL;
331         }
332 }
333
334
335 /*
336  *      Free a CONF_SECTION
337  */
338 void cf_section_free(CONF_SECTION **cs)
339 {
340         CONF_ITEM       *ci, *next;
341
342         if (!cs || !*cs) return;
343
344         cf_section_parse_free(*cs, (*cs)->base);
345
346         for (ci = (*cs)->children; ci; ci = next) {
347                 next = ci->next;
348
349                 switch (ci->type) {
350                 case CONF_ITEM_PAIR: {
351                                 CONF_PAIR *pair = cf_itemtopair(ci);
352                                 cf_pair_free(&pair);
353                         }
354                         break;
355
356                 case CONF_ITEM_SECTION: {
357                                 CONF_SECTION *section = cf_itemtosection(ci);
358                                 cf_section_free(&section);
359                         }
360                         break;
361
362                 case CONF_ITEM_DATA: {
363                                 CONF_DATA *data = cf_itemtodata(ci);
364                                 cf_data_free(&data);
365                         }
366                         break;
367
368                 default:        /* should really be an error. */
369                         break;
370                 }
371         }
372
373         /*
374          *      Name1 and name2 are allocated contiguous with
375          *      cs.
376          */
377         if ((*cs)->pair_tree)
378                 rbtree_free((*cs)->pair_tree);
379         if ((*cs)->section_tree)
380                 rbtree_free((*cs)->section_tree);
381         if ((*cs)->name2_tree)
382                 rbtree_free((*cs)->name2_tree);
383         if ((*cs)->data_tree)
384                 rbtree_free((*cs)->data_tree);
385
386         /*
387          * And free the section
388          */
389 #ifndef NDEBUG
390         memset(*cs, 0, sizeof(*cs));
391 #endif
392         free(*cs);
393
394         *cs = NULL;
395 }
396
397
398 /*
399  *      Allocate a CONF_SECTION
400  */
401 static CONF_SECTION *cf_section_alloc(const char *name1, const char *name2,
402                                       CONF_SECTION *parent)
403 {
404         size_t name1_len, name2_len = 0;
405         char *p;
406         CONF_SECTION    *cs;
407
408         if (!name1) return NULL;
409
410         name1_len = strlen(name1) + 1;
411         if (name2) name2_len = strlen(name2) + 1;
412
413         p = rad_malloc(sizeof(*cs) + name1_len + name2_len);
414
415         cs = (CONF_SECTION *) p;
416         memset(cs, 0, sizeof(*cs));
417         cs->item.type = CONF_ITEM_SECTION;
418         cs->item.parent = parent;
419
420         p += sizeof(*cs);
421         memcpy(p, name1, name1_len);
422         cs->name1 = p;
423
424         if (name2 && *name2) {
425                 p += name1_len;
426                 memcpy(p, name2, name2_len);
427                 cs->name2 = p;
428         }
429
430         cs->pair_tree = rbtree_create(pair_cmp, NULL, 0);
431         if (!cs->pair_tree) {
432                 cf_section_free(&cs);
433                 return NULL;
434         }
435
436         /*
437          *      Don't create a data tree, it may not be needed.
438          */
439
440         /*
441          *      Don't create the section tree here, it may not
442          *      be needed.
443          */
444
445         if (parent) cs->depth = parent->depth + 1;
446
447         return cs;
448 }
449
450
451 /*
452  *      Add an item to a configuration section.
453  */
454 static void cf_item_add(CONF_SECTION *cs, CONF_ITEM *ci)
455 {
456         if (!cs->children) {
457                 rad_assert(cs->tail == NULL);
458                 cs->children = ci;
459         } else {
460                 rad_assert(cs->tail != NULL);
461                 cs->tail->next = ci;
462         }
463
464         /*
465          *      Update the trees (and tail) for each item added.
466          */
467         for (/* nothing */; ci != NULL; ci = ci->next) {
468                 cs->tail = ci;
469
470                 /*
471                  *      For fast lookups, pair's and sections get
472                  *      added to rbtree's.
473                  */
474                 switch (ci->type) {
475                         case CONF_ITEM_PAIR:
476                                 rbtree_insert(cs->pair_tree, ci);
477                                 break;
478
479                         case CONF_ITEM_SECTION: {
480                                 CONF_SECTION *cs_new = cf_itemtosection(ci);
481
482                                 if (!cs->section_tree) {
483                                         cs->section_tree = rbtree_create(section_cmp, NULL, 0);
484                                         /* ignore any errors */
485                                 }
486
487                                 if (cs->section_tree) {
488                                         rbtree_insert(cs->section_tree, cs_new);                                }
489
490                                 /*
491                                  *      Two names: find the named instance.
492                                  */
493                                 {
494                                         CONF_SECTION *old_cs;
495
496                                         /*
497                                          *      Find the FIRST
498                                          *      CONF_SECTION having
499                                          *      the given name1, and
500                                          *      create a new tree
501                                          *      under it.
502                                          */
503                                         old_cs = rbtree_finddata(cs->section_tree, cs_new);
504                                         if (!old_cs) return; /* this is a bad error! */
505
506                                         if (!old_cs->name2_tree) {
507                                                 old_cs->name2_tree = rbtree_create(name2_cmp,
508                                                                                    NULL, 0);
509                                         }
510                                         if (old_cs->name2_tree) {
511                                                 rbtree_insert(old_cs->name2_tree, cs_new);
512                                         }
513                                 } /* had a name2 */
514                                 break;
515                         } /* was a section */
516
517                         case CONF_ITEM_DATA:
518                                 if (!cs->data_tree) {
519                                         cs->data_tree = rbtree_create(data_cmp, NULL, 0);
520                                 }
521                                 if (cs->data_tree) {
522                                         rbtree_insert(cs->data_tree, ci);
523                                 }
524                                 break;
525
526                         default: /* FIXME: assert & error! */
527                                 break;
528
529                 } /* switch over conf types */
530         } /* loop over ci */
531 }
532
533
534 CONF_ITEM *cf_reference_item(const CONF_SECTION *parentcs,
535                              CONF_SECTION *outercs,
536                              const char *ptr)
537 {
538         CONF_PAIR *cp;
539         CONF_SECTION *next;
540         const CONF_SECTION *cs = outercs;
541         char name[8192];
542         char *p;
543
544         strlcpy(name, ptr, sizeof(name));
545         p = name;
546
547         /*
548          *      ".foo" means "foo from the current section"
549          */
550         if (*p == '.') {
551                 p++;
552                 
553                 /*
554                  *      ..foo means "foo from the section
555                  *      enclosing this section" (etc.)
556                  */
557                 while (*p == '.') {
558                         if (cs->item.parent)
559                                 cs = cs->item.parent;
560                         p++;
561                 }
562
563                 /*
564                  *      "foo.bar.baz" means "from the root"
565                  */
566         } else if (strchr(p, '.') != NULL) {
567                 cs = parentcs;
568         }
569
570         while (*p) {
571                 char *q, *r;
572
573                 r = strchr(p, '[');
574                 q = strchr(p, '.');
575                 if (!r && !q) break;
576
577                 if (r && q > r) q = NULL;
578                 if (q && q < r) r = NULL;
579
580                 /*
581                  *      Split off name2.
582                  */
583                 if (r) {
584                         q = strchr(r + 1, ']');
585                         if (!q) return NULL; /* parse error */
586
587                         /*
588                          *      Points to foo[bar]xx: parse error,
589                          *      it should be foo[bar] or foo[bar].baz
590                          */
591                         if (q[1] && q[1] != '.') goto no_such_item;
592
593                         *r = '\0';
594                         *q = '\0';
595                         next = cf_section_sub_find_name2(cs, p, r + 1);
596                         *r = '[';
597                         *q = ']';
598
599                         /*
600                          *      Points to a named instance of a section.
601                          */
602                         if (!q[1]) {
603                                 if (!next) goto no_such_item;
604                                 return cf_sectiontoitem(next);
605                         }
606
607                         q++;    /* ensure we skip the ']' and '.' */
608
609                 } else {
610                         *q = '\0';
611                         next = cf_section_sub_find(cs, p);
612                         *q = '.';
613                 }
614
615                 if (!next) break; /* it MAY be a pair in this section! */
616
617                 cs = next;
618                 p = q + 1;
619         }
620
621         if (!*p) goto no_such_item;
622
623  retry:
624         /*
625          *      Find it in the current referenced
626          *      section.
627          */
628         cp = cf_pair_find(cs, p);
629         if (cp) return cf_pairtoitem(cp);
630
631         next = cf_section_sub_find(cs, p);
632         if (next) return cf_sectiontoitem(next);
633         
634         /*
635          *      "foo" is "in the current section, OR in main".
636          */
637         if ((p == name) && (cs != parentcs)) {
638                 cs = parentcs;
639                 goto retry;
640         }
641
642 no_such_item:
643         DEBUG2("WARNING: No such configuration item %s", ptr);
644         return NULL;
645 }
646
647
648 CONF_SECTION *cf_top_section(CONF_SECTION *cs)
649 {
650         while (cs->item.parent != NULL) {
651                 cs = cs->item.parent;
652         }
653
654         return cs;
655 }
656
657
658 /*
659  *      Expand the variables in an input string.
660  */
661 static const char *cf_expand_variables(const char *cf, int *lineno,
662                                        CONF_SECTION *outercs,
663                                        char *output, const char *input)
664 {
665         char *p;
666         const char *end, *ptr;
667         const CONF_SECTION *parentcs;
668         char name[8192];
669
670         /*
671          *      Find the master parent conf section.
672          *      We can't use mainconfig.config, because we're in the
673          *      process of re-building it, and it isn't set up yet...
674          */
675         parentcs = cf_top_section(outercs);
676
677         p = output;
678         ptr = input;
679         while (*ptr) {
680                 /*
681                  *      Ignore anything other than "${"
682                  */
683                 if ((*ptr == '$') && (ptr[1] == '{')) {
684                         CONF_ITEM *ci;
685                         CONF_PAIR *cp;
686
687                         /*
688                          *      FIXME: Add support for ${foo:-bar},
689                          *      like in xlat.c
690                          */
691
692                         /*
693                          *      Look for trailing '}', and log a
694                          *      warning for anything that doesn't match,
695                          *      and exit with a fatal error.
696                          */
697                         end = strchr(ptr, '}');
698                         if (end == NULL) {
699                                 *p = '\0';
700                                 radlog(L_INFO, "%s[%d]: Variable expansion missing }",
701                                        cf, *lineno);
702                                 return NULL;
703                         }
704
705                         ptr += 2;
706
707                         /*
708                          *      Can't really happen because input lines are
709                          *      capped at 8k, which is sizeof(name)
710                          */
711                         if ((size_t) (end - ptr) >= sizeof(name)) {
712                                 radlog(L_ERR, "%s[%d]: Reference string is too large",
713                                        cf, *lineno);
714                                 return NULL;
715                         }
716
717                         memcpy(name, ptr, end - ptr);
718                         name[end - ptr] = '\0';
719
720                         ci = cf_reference_item(parentcs, outercs, name);
721                         if (!ci || (ci->type != CONF_ITEM_PAIR)) {
722                                 radlog(L_ERR, "%s[%d]: Reference \"%s\" not found",
723                                        cf, *lineno, input);
724                                 return NULL;
725                         }
726
727                         /*
728                          *  Substitute the value of the variable.
729                          */
730                         cp = cf_itemtopair(ci);
731                         strcpy(p, cp->value);
732                         p += strlen(p);
733                         ptr = end + 1;
734
735                 } else if (memcmp(ptr, "$ENV{", 5) == 0) {
736                         char *env;
737
738                         ptr += 5;
739
740                         /*
741                          *      Look for trailing '}', and log a
742                          *      warning for anything that doesn't match,
743                          *      and exit with a fatal error.
744                          */
745                         end = strchr(ptr, '}');
746                         if (end == NULL) {
747                                 *p = '\0';
748                                 radlog(L_INFO, "%s[%d]: Environment variable expansion missing }",
749                                        cf, *lineno);
750                                 return NULL;
751                         }
752
753                         /*
754                          *      Can't really happen because input lines are
755                          *      capped at 8k, which is sizeof(name)
756                          */
757                         if ((size_t) (end - ptr) >= sizeof(name)) {
758                                 radlog(L_ERR, "%s[%d]: Environment variable name is too large",
759                                        cf, *lineno);
760                                 return NULL;
761                         }
762
763                         memcpy(name, ptr, end - ptr);
764                         name[end - ptr] = '\0';
765
766                         /*
767                          *      Get the environment variable.
768                          *      If none exists, then make it an empty string.
769                          */
770                         env = getenv(name);
771                         if (env == NULL) {
772                                 *name = '\0';
773                                 env = name;
774                         }
775
776                         strcpy(p, env);
777                         p += strlen(p);
778                         ptr = end + 1;
779
780                 } else {
781                         /*
782                          *      Copy it over verbatim.
783                          */
784                         *(p++) = *(ptr++);
785                 }
786         } /* loop over all of the input string. */
787
788         *p = '\0';
789
790         return output;
791 }
792
793
794 /*
795  *      Parses an item (not a CONF_ITEM) into the specified format,
796  *      with a default value.
797  *
798  *      Returns -1 on error, 0 for correctly parsed, and 1 if the
799  *      default value was used.  Note that the default value will be
800  *      used ONLY if the CONF_PAIR is NULL.
801  */
802 int cf_item_parse(CONF_SECTION *cs, const char *name,
803                   int type, void *data, const char *dflt)
804 {
805         int rcode = 0;
806         char **q;
807         const char *value;
808         fr_ipaddr_t ipaddr;
809         const CONF_PAIR *cp;
810         char ipbuf[128];
811
812         cp = cf_pair_find(cs, name);
813         if (cp) {
814                 value = cp->value;
815
816         } else if (!dflt) {
817                 return 1;       /* nothing to parse, return default value */
818
819         } else {
820                 rcode = 1;
821                 value = dflt;
822         }
823
824         if (!value) {
825                 return 0;
826         }
827
828         switch (type) {
829         case PW_TYPE_BOOLEAN:
830                 /*
831                  *      Allow yes/no and on/off
832                  */
833                 if ((strcasecmp(value, "yes") == 0) ||
834                     (strcasecmp(value, "on") == 0)) {
835                         *(int *)data = 1;
836                 } else if ((strcasecmp(value, "no") == 0) ||
837                            (strcasecmp(value, "off") == 0)) {
838                         *(int *)data = 0;
839                 } else {
840                         *(int *)data = 0;
841                         radlog(L_ERR, "Bad value \"%s\" for boolean variable %s", value, name);
842                         return -1;
843                 }
844                 cf_log_info(cs, "\t%s = %s", name, value);
845                 break;
846
847         case PW_TYPE_INTEGER:
848                 *(int *)data = strtol(value, 0, 0);
849                 cf_log_info(cs, "\t%s = %d", name, *(int *)data);
850                 break;
851
852         case PW_TYPE_STRING_PTR:
853                 q = (char **) data;
854                 if (*q != NULL) {
855                         free(*q);
856                 }
857
858                 /*
859                  *      Expand variables which haven't already been
860                  *      expanded automagically when the configuration
861                  *      file was read.
862                  */
863                 if (value == dflt) {
864                         char buffer[8192];
865
866                         int lineno = cs->item.lineno;
867
868                         /*
869                          *      FIXME: sizeof(buffer)?
870                          */
871                         value = cf_expand_variables("?",
872                                                     &lineno,
873                                                     cs, buffer, value);
874                         if (!value) return -1;
875                 }
876
877                 cf_log_info(cs, "\t%s = \"%s\"", name, value ? value : "(null)");
878                 *q = value ? strdup(value) : NULL;
879                 break;
880
881                 /*
882                  *      This is the same as PW_TYPE_STRING_PTR,
883                  *      except that we also "stat" the file, and
884                  *      cache the result.
885                  */
886         case PW_TYPE_FILENAME:
887                 q = (char **) data;
888                 if (*q != NULL) {
889                         free(*q);
890                 }
891
892                 /*
893                  *      Expand variables which haven't already been
894                  *      expanded automagically when the configuration
895                  *      file was read.
896                  */
897                 if (value == dflt) {
898                         char buffer[8192];
899
900                         int lineno = cs->item.lineno;
901
902                         /*
903                          *      FIXME: sizeof(buffer)?
904                          */
905                         value = cf_expand_variables("?",
906                                                     &lineno,
907                                                     cs, buffer, value);
908                         if (!value) return -1;
909                 }
910
911                 cf_log_info(cs, "\t%s = \"%s\"", name, value ? value : "(null)");
912                 *q = value ? strdup(value) : NULL;
913
914                 /*
915                  *      And now we "stat" the file.
916                  *
917                  *      FIXME: This appears to leak memory on exit,
918                  *      and we don't use this information.  So it's
919                  *      commented out for now.
920                  */
921                 if (0 && *q) {
922                         struct stat buf;
923
924                         if (stat(*q, &buf) == 0) {
925                                 time_t *mtime;
926
927                                 mtime = rad_malloc(sizeof(*mtime));
928                                 *mtime = buf.st_mtime;
929                                 /* FIXME: error? */
930                                 cf_data_add_internal(cs, *q, mtime, free,
931                                                      PW_TYPE_FILENAME);
932                         }
933                 }
934                 break;
935
936         case PW_TYPE_IPADDR:
937                 /*
938                  *      Allow '*' as any address
939                  */
940                 if (strcmp(value, "*") == 0) {
941                         *(uint32_t *) data = htonl(INADDR_ANY);
942                         cf_log_info(cs, "\t%s = *", name);
943                         break;
944                 }
945                 if (ip_hton(value, AF_INET, &ipaddr) < 0) {
946                         radlog(L_ERR, "Can't find IP address for host %s", value);
947                         return -1;
948                 }
949                 
950                 if (strspn(value, "0123456789.") == strlen(value)) {
951                         cf_log_info(cs, "\t%s = %s", name, value);
952                 } else {
953                         cf_log_info(cs, "\t%s = %s IP address [%s]", name, value,
954                                ip_ntoh(&ipaddr, ipbuf, sizeof(ipbuf)));
955                 }
956                 *(uint32_t *) data = ipaddr.ipaddr.ip4addr.s_addr;
957                 break;
958
959         case PW_TYPE_IPV6ADDR:
960                 if (ip_hton(value, AF_INET6, &ipaddr) < 0) {
961                         radlog(L_ERR, "Can't find IPv6 address for host %s", value);
962                         return -1;
963                 }
964                 cf_log_info(cs, "\t%s = %s IPv6 address [%s]", name, value,
965                                ip_ntoh(&ipaddr, ipbuf, sizeof(ipbuf)));
966                 memcpy(data, &ipaddr.ipaddr.ip6addr,
967                        sizeof(ipaddr.ipaddr.ip6addr));
968                 break;
969
970         default:
971                 radlog(L_ERR, "type %d not supported yet", type);
972                 return -1;
973                 break;
974         } /* switch over variable type */
975
976         return rcode;
977 }
978
979 static const char *parse_spaces = "                                                                                                                                                                                                                                                                ";
980
981 /*
982  *      Parse a configuration section into user-supplied variables.
983  */
984 int cf_section_parse(CONF_SECTION *cs, void *base,
985                      const CONF_PARSER *variables)
986 {
987         int i;
988         void *data;
989
990         cs->variables = variables; /* this doesn't hurt anything */
991
992         if (!cs->name2) {
993                 cf_log_info(cs, "%.*s%s {", cs->depth, parse_spaces,
994                        cs->name1);
995         } else {
996                 cf_log_info(cs, "%.*s%s %s {", cs->depth, parse_spaces,
997                        cs->name1, cs->name2);
998         }
999
1000         /*
1001          *      Handle the known configuration parameters.
1002          */
1003         for (i = 0; variables[i].name != NULL; i++) {
1004                 /*
1005                  *      Handle subsections specially
1006                  */
1007                 if (variables[i].type == PW_TYPE_SUBSECTION) {
1008                         CONF_SECTION *subcs;
1009                         subcs = cf_section_sub_find(cs, variables[i].name);
1010
1011                         /*
1012                          *      If the configuration section is NOT there,
1013                          *      then ignore it.
1014                          *
1015                          *      FIXME! This is probably wrong... we should
1016                          *      probably set the items to their default values.
1017                          */
1018                         if (!subcs) continue;
1019
1020                         if (!variables[i].dflt) {
1021                                 DEBUG2("Internal sanity check 1 failed in cf_section_parse");
1022                                 goto error;
1023                         }
1024
1025                         if (cf_section_parse(subcs, base,
1026                                              (const CONF_PARSER *) variables[i].dflt) < 0) {
1027                                 goto error;
1028                         }
1029                         continue;
1030                 } /* else it's a CONF_PAIR */
1031
1032                 if (variables[i].data) {
1033                         data = variables[i].data; /* prefer this. */
1034                 } else if (base) {
1035                         data = ((char *)base) + variables[i].offset;
1036                 } else {
1037                         DEBUG2("Internal sanity check 2 failed in cf_section_parse");
1038                         goto error;
1039                 }
1040
1041                 /*
1042                  *      Parse the pair we found, or a default value.
1043                  */
1044                 if (cf_item_parse(cs, variables[i].name, variables[i].type,
1045                                   data, variables[i].dflt) < 0) {
1046                         goto error;
1047                 }
1048         } /* for all variables in the configuration section */
1049
1050         cf_log_info(cs, "%.*s}", cs->depth, parse_spaces);
1051
1052         cs->base = base;
1053
1054         return 0;
1055
1056  error:
1057         cf_log_info(cs, "%.*s}", cs->depth, parse_spaces);
1058         cf_section_parse_free(cs, base);
1059         return -1;
1060 }
1061
1062
1063 /*
1064  *      Sanity check the "if" or "elsif", presuming that the first '('
1065  *      has already been eaten.
1066  *
1067  *      We're not really parsing it here, just checking if it's mostly
1068  *      well-formed.
1069  */
1070 static int condition_looks_ok(const char **ptr)
1071 {
1072         int num_braces = 1;
1073         int quote = 0;
1074         const char *p = *ptr;
1075
1076         while (*p) {
1077                 if (quote) {
1078                         if (*p == quote) {
1079                                 p++;
1080                                 quote = 0;
1081                                 continue;
1082                         }
1083
1084                         if (*p == '\\') {
1085                                 if (!p[1]) {
1086                                         return 0; /* no trailing slash */
1087                                 }
1088                                 p += 2;
1089                                 continue;
1090                         }
1091                         p++;
1092                         continue;
1093                 }
1094
1095                 switch (*p) {
1096                 case '\\':
1097                         if (!p[1]) {
1098                                 return 0; /* no trailing slash */
1099                         }
1100                         p += 2;
1101                         continue;
1102
1103                 case '(':
1104                         num_braces++;
1105                         p++;
1106                         continue;
1107
1108                 case ')':
1109                         if (num_braces == 1) {
1110                                 const char *q = p + 1;
1111
1112                                 /*
1113                                  *      Validate that there isn't much
1114                                  *      else after the closing brace.
1115                                  */
1116                                 while ((*q == ' ') || (*q == '\t')) q++;
1117
1118                                 /*
1119                                  *      Parse error.
1120                                  */
1121                                 if (*q != '{') {
1122                                         return 0;
1123                                 }
1124
1125                                 *ptr = p + 1; /* include the trailing ')' */
1126                                 return 1;
1127                         }
1128                         num_braces--;
1129                         p++;
1130                         continue;
1131
1132                 case '"':
1133                 case '\'':
1134                 case '/':
1135                 case '`':
1136                         quote = *p;
1137                         /* FALL-THROUGH */
1138
1139                 default:
1140                         p++;
1141                         break;
1142                 }
1143         }
1144
1145         return 0;
1146 }
1147
1148
1149 static const char *cf_local_file(CONF_SECTION *cs, const char *local,
1150                                  char *buffer, size_t bufsize)
1151 {
1152         size_t dirsize;
1153         const char *p;
1154         CONF_SECTION *parentcs = cf_top_section(cs);
1155
1156         p = strrchr(parentcs->item.filename, FR_DIR_SEP);
1157         if (!p) return local;
1158
1159         dirsize = (p - parentcs->item.filename) + 1;
1160
1161         if ((dirsize + strlen(local)) >= bufsize) {
1162                 return NULL;
1163         }
1164
1165         memcpy(buffer, parentcs->item.filename, dirsize);
1166         strlcpy(buffer + dirsize, local, bufsize - dirsize);
1167
1168         return buffer;
1169 }
1170
1171
1172 /*
1173  *      Read a part of the config file.
1174  */
1175 static int cf_section_read(const char *filename, int *lineno, FILE *fp,
1176                            CONF_SECTION *current)
1177
1178 {
1179         CONF_SECTION *this, *css;
1180         CONF_PAIR *cpn;
1181         const char *ptr;
1182         const char *value;
1183         char buf[8192];
1184         char buf1[8192];
1185         char buf2[8192];
1186         char buf3[8192];
1187         int t1, t2, t3;
1188         char *cbuf = buf;
1189         size_t len;
1190
1191         this = current;         /* add items here */
1192
1193         /*
1194          *      Read, checking for line continuations ('\\' at EOL)
1195          */
1196         for (;;) {
1197                 int eof;
1198
1199                 /*
1200                  *      Get data, and remember if we are at EOF.
1201                  */
1202                 eof = (fgets(cbuf, sizeof(buf) - (cbuf - buf), fp) == NULL);
1203                 (*lineno)++;
1204
1205                 /*
1206                  *      We read the entire 8k worth of data: complain.
1207                  *      Note that we don't care if the last character
1208                  *      is \n: it's still forbidden.  This means that
1209                  *      the maximum allowed length of text is 8k-1, which
1210                  *      should be plenty.
1211                  */
1212                 len = strlen(cbuf);
1213                 if ((cbuf + len + 1) >= (buf + sizeof(buf))) {
1214                         radlog(L_ERR, "%s[%d]: Line too long",
1215                                filename, *lineno);
1216                         return -1;
1217                 }
1218
1219                 /*
1220                  *      Not doing continuations: check for edge
1221                  *      conditions.
1222                  */
1223                 if (cbuf == buf) {
1224                         if (eof) break;
1225                         
1226                         ptr = buf;
1227                         while (*ptr && isspace((int) *ptr)) ptr++;
1228
1229                         if (!*ptr || (*ptr == '#')) continue;
1230
1231                 } else if (eof || (len == 0)) {
1232                         radlog(L_ERR, "%s[%d]: Continuation at EOF is illegal",
1233                                filename, *lineno);
1234                         return -1;
1235                 }
1236
1237                 /*
1238                  *      See if there's a continuation.
1239                  */
1240                 while ((len > 0) &&
1241                        ((cbuf[len - 1] == '\n') || (cbuf[len - 1] == '\r'))) {
1242                         len--;
1243                         cbuf[len] = '\0';
1244                 }
1245
1246                 if ((len > 0) && (cbuf[len - 1] == '\\')) {
1247                         cbuf[len - 1] = '\0';
1248                         cbuf += len - 1;
1249                         continue;
1250                 }
1251
1252                 ptr = cbuf = buf;
1253                 t1 = gettoken(&ptr, buf1, sizeof(buf1));
1254
1255                 /*
1256                  *      The caller eats "name1 name2 {", and calls us
1257                  *      for the data inside of the section.  So if we
1258                  *      receive a closing brace, then it must mean the
1259                  *      end of the section.
1260                  */
1261                if (t1 == T_RCBRACE) {
1262                        if (this == current) {
1263                                radlog(L_ERR, "%s[%d]: Too many closing braces",
1264                                       filename, *lineno);
1265                                return -1;
1266
1267                        }
1268                        this = this->item.parent;
1269                        continue;
1270                 }
1271
1272                 /*
1273                  *      Allow for $INCLUDE files
1274                  *
1275                  *      This *SHOULD* work for any level include.
1276                  *      I really really really hate this file.  -cparker
1277                  */
1278                if ((strcasecmp(buf1, "$INCLUDE") == 0) ||
1279                    (strcasecmp(buf1, "$-INCLUDE") == 0)) {
1280                        int relative = 1;
1281
1282                         t2 = getword(&ptr, buf2, sizeof(buf2));
1283
1284                         if (buf2[0] == '$') relative = 0;
1285
1286                         value = cf_expand_variables(filename, lineno, this, buf, buf2);
1287                         if (!value) return -1;
1288
1289                         if (!FR_DIR_IS_RELATIVE(value)) relative = 0;
1290
1291                         if (relative) {
1292                                 value = cf_local_file(current, value, buf3,
1293                                                       sizeof(buf3));
1294                                 if (!value) {
1295                                         radlog(L_ERR, "%s[%d]: Directories too deep.",
1296                                                filename, *lineno);
1297                                         return -1;
1298                                 }
1299                         }
1300
1301
1302 #ifdef HAVE_DIRENT_H
1303                         /*
1304                          *      $INCLUDE foo/
1305                          *
1306                          *      Include ALL non-"dot" files in the directory.
1307                          *      careful!
1308                          */
1309                         if (value[strlen(value) - 1] == '/') {
1310                                 DIR             *dir;
1311                                 struct dirent   *dp;
1312                                 struct stat stat_buf;
1313
1314                                 DEBUG2("including files in directory %s", value );
1315                                 dir = opendir(value);
1316                                 if (!dir) {
1317                                         radlog(L_ERR, "%s[%d]: Error reading directory %s: %s",
1318                                                filename, *lineno, value,
1319                                                strerror(errno));
1320                                         return -1;
1321                                 }
1322
1323                                 /*
1324                                  *      Read the directory, ignoring "." files.
1325                                  */
1326                                 while ((dp = readdir(dir)) != NULL) {
1327                                         const char *p;
1328
1329                                         if (dp->d_name[0] == '.') continue;
1330
1331                                         /*
1332                                          *      Check for valid characters
1333                                          */
1334                                         for (p = dp->d_name; *p != '\0'; p++) {
1335                                                 if (isalpha((int)*p) ||
1336                                                     isdigit((int)*p) ||
1337                                                     (*p == '-') ||
1338                                                     (*p == '_') ||
1339                                                     (*p == '.')) continue;
1340                                                 break;
1341                                         }
1342                                         if (*p != '\0') continue;
1343
1344                                         snprintf(buf2, sizeof(buf2), "%s%s",
1345                                                  value, dp->d_name);
1346                                         if ((stat(buf2, &stat_buf) != 0) ||
1347                                             S_ISDIR(stat_buf.st_mode)) continue;
1348                                         /*
1349                                          *      Read the file into the current
1350                                          *      configuration sectoin.
1351                                          */
1352                                         if (cf_file_include(buf2, this) < 0) {
1353                                                 closedir(dir);
1354                                                 return -1;
1355                                         }
1356                                 }
1357                                 closedir(dir);
1358                         }  else
1359 #endif
1360                         { /* it was a normal file */
1361                                 if (buf1[1] == '-') {
1362                                         struct stat statbuf;
1363
1364                                         if (stat(value, &statbuf) < 0) {
1365                                                 DEBUG("WARNING: Not including file %s: %s", value, strerror(errno));
1366                                                 continue;
1367                                         }
1368                                 }
1369
1370                                 if (cf_file_include(value, this) < 0) {
1371                                         return -1;
1372                                 }
1373                         }
1374                         continue;
1375                 } /* we were in an include */
1376
1377                if (strcasecmp(buf1, "$template") == 0) {
1378                        CONF_ITEM *ci;
1379                        CONF_SECTION *parentcs;
1380                        t2 = getword(&ptr, buf2, sizeof(buf2));
1381
1382                        parentcs = cf_top_section(current);
1383
1384                        ci = cf_reference_item(parentcs, this, buf2);
1385                        if (!ci || (ci->type != CONF_ITEM_SECTION)) {
1386                                 radlog(L_ERR, "%s[%d]: Reference \"%s\" not found",
1387                                        filename, *lineno, buf2);
1388                                 return -1;
1389                        }
1390                        
1391                        if (this->template) {
1392                                 radlog(L_ERR, "%s[%d]: Section already has a template",
1393                                        filename, *lineno);
1394                                 return -1;
1395                        }
1396
1397                        this->template = cf_itemtosection(ci);
1398                        continue;
1399                }
1400
1401                 /*
1402                  *      Ensure that the user can't add CONF_PAIRs
1403                  *      with 'internal' names;
1404                  */
1405                 if (buf1[0] == '_') {
1406                         radlog(L_ERR, "%s[%d]: Illegal configuration pair name \"%s\"",
1407                                         filename, *lineno, buf1);
1408                         return -1;
1409                 }
1410
1411                 /*
1412                  *      Grab the next token.
1413                  */
1414                 t2 = gettoken(&ptr, buf2, sizeof(buf2));
1415                 switch (t2) {
1416                 case T_EOL:
1417                 case T_HASH:
1418                         t2 = T_OP_EQ;
1419                         value = NULL;
1420                         goto do_set;
1421
1422                 case T_OP_ADD:
1423                 case T_OP_CMP_EQ:
1424                 case T_OP_SUB:
1425                 case T_OP_LE:
1426                 case T_OP_GE:
1427                         if (!this || (strcmp(this->name1, "update") != 0)) {
1428                                 radlog(L_ERR, "%s[%d]: Invalid operator in assignment",
1429                                        filename, *lineno);
1430                                 return -1;
1431                         }
1432
1433                 case T_OP_EQ:
1434                 case T_OP_SET:
1435                 do_set:
1436                         t3 = getstring(&ptr, buf3, sizeof(buf3));
1437
1438                         /*
1439                          *      Handle variable substitution via ${foo}
1440                          */
1441                         if ((t3 == T_BARE_WORD) ||
1442                             (t3 == T_DOUBLE_QUOTED_STRING)) {
1443                                 value = cf_expand_variables(filename, lineno, this,
1444                                                             buf, buf3);
1445                                 if (!value) return -1;
1446                         } else if ((t3 == T_EOL) ||
1447                                    (t3 == T_HASH)) {
1448                                 value = NULL;
1449                         } else {
1450                                 value = buf3;
1451                         }
1452                         
1453                         /*
1454                          *      Add this CONF_PAIR to our CONF_SECTION
1455                          */
1456                         cpn = cf_pair_alloc(buf1, value, t2, t3, this);
1457                         cpn->item.filename = filename;
1458                         cpn->item.lineno = *lineno;
1459                         cf_item_add(this, cf_pairtoitem(cpn));
1460                         continue;
1461
1462                         /*
1463                          *      This horrible code is here to support
1464                          *      if/then/else failover in the
1465                          *      authorize, etc. sections.  It makes no
1466                          *      sense anywhere else.
1467                          */
1468                 case T_LBRACE:
1469                         if ((strcmp(buf1, "if") == 0) ||
1470                             (strcmp(buf1, "elsif") == 0)) {
1471                                 const char *end = ptr;
1472                                 CONF_SECTION *server;
1473
1474                                 if (!condition_looks_ok(&end)) {
1475                                         radlog(L_ERR, "%s[%d]: Parse error in condition at: %s",
1476                                                filename, *lineno, ptr);
1477                                         return -1;
1478                                 }
1479
1480                                 if ((size_t) (end - ptr) >= (sizeof(buf2) - 1)) {
1481                                         radlog(L_ERR, "%s[%d]: Statement too complicated after \"%s\"",
1482                                                filename, *lineno, buf1);
1483                                         return -1;
1484                                 }
1485
1486                                 /*
1487                                  *      More sanity checking.  This is
1488                                  *      getting to be a horrible hack.
1489                                  */
1490                                 server = this;
1491                                 while (server) {
1492                                         if (strcmp(server->name1, "server") == 0) break;
1493                                         server = server->item.parent;
1494                                 }
1495                                 
1496                                 if (0 && !server) {
1497                                         radlog(L_ERR, "%s[%d]: Processing directives such as \"%s\" cannot be used here.",
1498                                                filename, *lineno, buf1);
1499                                         return -1;
1500                                 }
1501
1502                                 buf2[0] = '(';
1503                                 memcpy(buf2 + 1, ptr, end - ptr);
1504                                 buf2[end - ptr + 1] = '\0';
1505                                 ptr = end + 1;
1506                                 t2 = T_BARE_WORD;
1507                                 goto section_alloc;
1508
1509                         } else {
1510                                 radlog(L_ERR, "%s[%d]: Parse error after \"%s\"",
1511                                        filename, *lineno, buf1);
1512                                 return -1;
1513                         }
1514
1515                         /* FALL-THROUGH */
1516
1517                         /*
1518                          *      No '=', must be a section or sub-section.
1519                          */
1520                 case T_BARE_WORD:
1521                 case T_DOUBLE_QUOTED_STRING:
1522                 case T_SINGLE_QUOTED_STRING:
1523                         t3 = gettoken(&ptr, buf3, sizeof(buf3));
1524                         if (t3 != T_LCBRACE) {
1525                                 radlog(L_ERR, "%s[%d]: Expecting section start brace '{' after \"%s %s\"",
1526                                        filename, *lineno, buf1, buf2);
1527                                 return -1;
1528                         }
1529
1530                 case T_LCBRACE:
1531                 section_alloc:
1532                         css = cf_section_alloc(buf1,
1533                                                t2 == T_LCBRACE ? NULL : buf2,
1534                                                this);
1535                         if (!css) {
1536                                 radlog(L_ERR, "%s[%d]: Failed allocating memory for section",
1537                                                 filename, *lineno);
1538                                 return -1;
1539                         }
1540                         cf_item_add(this, cf_sectiontoitem(css));
1541                         css->item.filename = filename;
1542                         css->item.lineno = *lineno;
1543
1544                         /*
1545                          *      The current section is now the child section.
1546                          */
1547                         this = css;
1548                         continue;
1549
1550                 default:
1551                         radlog(L_ERR, "%s[%d]: Parse error after \"%s\"",
1552                                filename, *lineno, buf1);
1553                         return -1;
1554                 }
1555         }
1556
1557         /*
1558          *      See if EOF was unexpected ..
1559          */
1560         if (feof(fp) && (this != current)) {
1561                 radlog(L_ERR, "%s[%d]: EOF reached without closing brace for section %s starting at line %d",
1562                        filename, *lineno,
1563                        cf_section_name1(this), cf_section_lineno(this));
1564                 return -1;
1565         }
1566
1567         return 0;
1568 }
1569
1570 /*
1571  *      Include one config file in another.
1572  */
1573 int cf_file_include(const char *filename, CONF_SECTION *cs)
1574 {
1575         FILE            *fp;
1576         int             lineno = 0;
1577         struct stat     statbuf;
1578         time_t          *mtime;
1579         CONF_DATA       *cd;
1580
1581         DEBUG2( "including configuration file %s", filename);
1582
1583         if (stat(filename, &statbuf) == 0) {
1584 #ifdef S_IWOTH
1585                 if ((statbuf.st_mode & S_IWOTH) != 0) {
1586                         radlog(L_ERR|L_CONS, "Configuration file %s is globally writable.  Refusing to start due to insecure configuration.",
1587                                filename);
1588                         return -1;
1589                 }
1590 #endif
1591
1592 #ifdef S_IROTH
1593                 if (0 && (statbuf.st_mode & S_IROTH) != 0) {
1594                         radlog(L_ERR|L_CONS, "Configuration file %s is globally readable.  Refusing to start due to insecure configuration.",
1595                                filename);
1596                         return -1;
1597                 }
1598 #endif
1599         }
1600
1601         fp = fopen(filename, "r");
1602         if (!fp) {
1603                 radlog(L_ERR|L_CONS, "Unable to open file \"%s\": %s",
1604                        filename, strerror(errno));
1605                 return -1;
1606         }
1607
1608         /*
1609          *      Add the filename to the section
1610          */
1611         mtime = rad_malloc(sizeof(*mtime));
1612         *mtime = statbuf.st_mtime;
1613
1614         if (cf_data_add_internal(cs, filename, mtime, free,
1615                                  PW_TYPE_FILENAME) < 0) {
1616                 fclose(fp);
1617                 radlog(L_ERR|L_CONS, "Internal error open file \"%s\"",
1618                        filename);
1619                 return -1;
1620         }
1621
1622         cd = cf_data_find_internal(cs, filename, PW_TYPE_FILENAME);
1623         if (!cd) {
1624                 fclose(fp);
1625                 radlog(L_ERR|L_CONS, "Internal error open file \"%s\"",
1626                        filename);
1627                 return -1;
1628         }
1629
1630         if (!cs->item.filename) cs->item.filename = filename;
1631
1632         /*
1633          *      Read the section.  It's OK to have EOF without a
1634          *      matching close brace.
1635          */
1636         if (cf_section_read(cd->name, &lineno, fp, cs) < 0) {
1637                 fclose(fp);
1638                 return -1;
1639         }
1640
1641         fclose(fp);
1642         return 0;
1643 }
1644
1645 /*
1646  *      Bootstrap a config file.
1647  */
1648 CONF_SECTION *cf_file_read(const char *filename)
1649 {
1650         char *p;
1651         CONF_PAIR *cp;
1652         CONF_SECTION *cs;
1653
1654         cs = cf_section_alloc("main", NULL, NULL);
1655         if (!cs) return NULL;
1656
1657         cp = cf_pair_alloc("confdir", filename, T_OP_SET, T_BARE_WORD, cs);
1658         if (!cp) return NULL;
1659
1660         p = strrchr(cp->value, FR_DIR_SEP);
1661         if (p) *p = '\0';
1662
1663         cp->item.filename = "internal";
1664         cp->item.lineno = 0;
1665         cf_item_add(cs, cf_pairtoitem(cp));
1666
1667         if (cf_file_include(filename, cs) < 0) {
1668                 cf_section_free(&cs);
1669                 return NULL;
1670         }
1671
1672         return cs;
1673 }
1674
1675 /*
1676  * Return a CONF_PAIR within a CONF_SECTION.
1677  */
1678 CONF_PAIR *cf_pair_find(const CONF_SECTION *cs, const char *name)
1679 {
1680         CONF_ITEM       *ci;
1681         CONF_PAIR       *cp = NULL;
1682
1683         if (!cs) return NULL;
1684
1685         /*
1686          *      Find the name in the tree, for speed.
1687          */
1688         if (name) {
1689                 CONF_PAIR mycp;
1690
1691                 mycp.attr = name;
1692                 cp = rbtree_finddata(cs->pair_tree, &mycp);
1693         } else {
1694                 /*
1695                  *      Else find the first one that matches
1696                  */
1697                 for (ci = cs->children; ci; ci = ci->next) {
1698                         if (ci->type == CONF_ITEM_PAIR) {
1699                                 return cf_itemtopair(ci);
1700                         }
1701                 }
1702         }
1703
1704         if (cp || !cs->template) return cp;
1705
1706         return cf_pair_find(cs->template, name);
1707 }
1708
1709 /*
1710  * Return the attr of a CONF_PAIR
1711  */
1712
1713 const char *cf_pair_attr(CONF_PAIR *pair)
1714 {
1715         return (pair ? pair->attr : NULL);
1716 }
1717
1718 /*
1719  * Return the value of a CONF_PAIR
1720  */
1721
1722 const char *cf_pair_value(CONF_PAIR *pair)
1723 {
1724         return (pair ? pair->value : NULL);
1725 }
1726
1727 /*
1728  *      Copied here for error reporting.
1729  */
1730 extern void librad_log(const char *, ...);
1731
1732 /*
1733  * Turn a CONF_PAIR into a VALUE_PAIR
1734  * For now, ignore the "value_type" field...
1735  */
1736 VALUE_PAIR *cf_pairtovp(CONF_PAIR *pair)
1737 {
1738         VALUE_PAIR *vp;
1739
1740         if (!pair) {
1741                 librad_log("Internal error");
1742                 return NULL;
1743         }
1744
1745         if (!pair->value) {
1746                 librad_log("No value given for attribute %s", pair->attr);
1747                 return NULL;
1748         }
1749
1750         /*
1751          *      pairmake handles tags.  pairalloc() doesn't.
1752          */
1753         vp = pairmake(pair->attr, NULL, pair->operator);
1754         if (!vp) {
1755                 return NULL;
1756         }
1757
1758         if (pair->value_type == T_BARE_WORD) {
1759                 if ((vp->type == PW_TYPE_STRING) && 
1760                     (pair->value[0] == '0') && (pair->value[1] == 'x')) {
1761                         vp->type = PW_TYPE_OCTETS;
1762                 }
1763                 if (!pairparsevalue(vp, pair->value)) {
1764                         pairfree(&vp);
1765                         return NULL;
1766                 }
1767                 vp->flags.do_xlat = 0;
1768           
1769         } else if (pair->value_type == T_SINGLE_QUOTED_STRING) {
1770                 if (!pairparsevalue(vp, pair->value)) {
1771                         pairfree(&vp);
1772                         return NULL;
1773                 }
1774                 vp->flags.do_xlat = 0;
1775         } else {
1776                 vp->flags.do_xlat = 1;
1777         }
1778
1779         return vp;
1780 }
1781
1782 /*
1783  * Return the first label of a CONF_SECTION
1784  */
1785
1786 const char *cf_section_name1(const CONF_SECTION *cs)
1787 {
1788         return (cs ? cs->name1 : NULL);
1789 }
1790
1791 /*
1792  * Return the second label of a CONF_SECTION
1793  */
1794
1795 const char *cf_section_name2(const CONF_SECTION *cs)
1796 {
1797         return (cs ? cs->name2 : NULL);
1798 }
1799
1800 /*
1801  * Find a value in a CONF_SECTION
1802  */
1803 const char *cf_section_value_find(const CONF_SECTION *cs, const char *attr)
1804 {
1805         CONF_PAIR       *cp;
1806
1807         cp = cf_pair_find(cs, attr);
1808
1809         return (cp ? cp->value : NULL);
1810 }
1811
1812 /*
1813  * Return the next pair after a CONF_PAIR
1814  * with a certain name (char *attr) If the requested
1815  * attr is NULL, any attr matches.
1816  */
1817
1818 CONF_PAIR *cf_pair_find_next(const CONF_SECTION *cs,
1819                              CONF_PAIR *pair, const char *attr)
1820 {
1821         CONF_ITEM       *ci;
1822
1823         /*
1824          * If pair is NULL this must be a first time run
1825          * Find the pair with correct name
1826          */
1827
1828         if (pair == NULL){
1829                 return cf_pair_find(cs, attr);
1830         }
1831
1832         ci = cf_pairtoitem(pair)->next;
1833
1834         for (; ci; ci = ci->next) {
1835                 if (ci->type != CONF_ITEM_PAIR)
1836                         continue;
1837                 if (attr == NULL || strcmp(cf_itemtopair(ci)->attr, attr) == 0)
1838                         break;
1839         }
1840
1841         return cf_itemtopair(ci);
1842 }
1843
1844 /*
1845  * Find a CONF_SECTION, or return the root if name is NULL
1846  */
1847
1848 CONF_SECTION *cf_section_find(const char *name)
1849 {
1850         if (name)
1851                 return cf_section_sub_find(mainconfig.config, name);
1852         else
1853                 return mainconfig.config;
1854 }
1855
1856 /*
1857  * Find a sub-section in a section
1858  */
1859
1860 CONF_SECTION *cf_section_sub_find(const CONF_SECTION *cs, const char *name)
1861 {
1862         CONF_ITEM *ci;
1863
1864         /*
1865          *      Do the fast lookup if possible.
1866          */
1867         if (name && cs->section_tree) {
1868                 CONF_SECTION mycs;
1869
1870                 mycs.name1 = name;
1871                 mycs.name2 = NULL;
1872                 return rbtree_finddata(cs->section_tree, &mycs);
1873         }
1874
1875         for (ci = cs->children; ci; ci = ci->next) {
1876                 if (ci->type != CONF_ITEM_SECTION)
1877                         continue;
1878                 if (strcmp(cf_itemtosection(ci)->name1, name) == 0)
1879                         break;
1880         }
1881
1882         return cf_itemtosection(ci);
1883
1884 }
1885
1886
1887 /*
1888  *      Find a CONF_SECTION with both names.
1889  */
1890 CONF_SECTION *cf_section_sub_find_name2(const CONF_SECTION *cs,
1891                                         const char *name1, const char *name2)
1892 {
1893         CONF_ITEM    *ci;
1894
1895         if (!cs) cs = mainconfig.config;
1896
1897         if (name1 && (cs->section_tree)) {
1898                 CONF_SECTION mycs, *master_cs;
1899
1900                 mycs.name1 = name1;
1901                 mycs.name2 = name2;
1902
1903                 master_cs = rbtree_finddata(cs->section_tree, &mycs);
1904                 if (master_cs) {
1905                         return rbtree_finddata(master_cs->name2_tree, &mycs);
1906                 }
1907         }
1908
1909         /*
1910          *      Else do it the old-fashioned way.
1911          */
1912         for (ci = cs->children; ci; ci = ci->next) {
1913                 CONF_SECTION *subcs;
1914
1915                 if (ci->type != CONF_ITEM_SECTION)
1916                         continue;
1917
1918                 subcs = cf_itemtosection(ci);
1919                 if (!name1) {
1920                         if (!subcs->name2) {
1921                                 if (strcmp(subcs->name1, name2) == 0) break;
1922                         } else {
1923                                 if (strcmp(subcs->name2, name2) == 0) break;
1924                         }
1925                         continue; /* don't do the string comparisons below */
1926                 }
1927
1928                 if ((strcmp(subcs->name1, name1) == 0) &&
1929                     (subcs->name2 != NULL) &&
1930                     (strcmp(subcs->name2, name2) == 0))
1931                         break;
1932         }
1933
1934         return cf_itemtosection(ci);
1935 }
1936
1937 /*
1938  * Return the next subsection after a CONF_SECTION
1939  * with a certain name1 (char *name1). If the requested
1940  * name1 is NULL, any name1 matches.
1941  */
1942
1943 CONF_SECTION *cf_subsection_find_next(CONF_SECTION *section,
1944                                       CONF_SECTION *subsection,
1945                                       const char *name1)
1946 {
1947         CONF_ITEM       *ci;
1948
1949         /*
1950          * If subsection is NULL this must be a first time run
1951          * Find the subsection with correct name
1952          */
1953
1954         if (subsection == NULL){
1955                 ci = section->children;
1956         } else {
1957                 ci = cf_sectiontoitem(subsection)->next;
1958         }
1959
1960         for (; ci; ci = ci->next) {
1961                 if (ci->type != CONF_ITEM_SECTION)
1962                         continue;
1963                 if ((name1 == NULL) ||
1964                     (strcmp(cf_itemtosection(ci)->name1, name1) == 0))
1965                         break;
1966         }
1967
1968         return cf_itemtosection(ci);
1969 }
1970
1971
1972 /*
1973  * Return the next section after a CONF_SECTION
1974  * with a certain name1 (char *name1). If the requested
1975  * name1 is NULL, any name1 matches.
1976  */
1977
1978 CONF_SECTION *cf_section_find_next(CONF_SECTION *section,
1979                                    CONF_SECTION *subsection,
1980                                    const char *name1)
1981 {
1982         if (!section->item.parent) return NULL;
1983
1984         return cf_subsection_find_next(section->item.parent, subsection, name1);
1985 }
1986
1987 /*
1988  * Return the next item after a CONF_ITEM.
1989  */
1990
1991 CONF_ITEM *cf_item_find_next(CONF_SECTION *section, CONF_ITEM *item)
1992 {
1993         /*
1994          * If item is NULL this must be a first time run
1995          * Return the first item
1996          */
1997
1998         if (item == NULL) {
1999                 return section->children;
2000         } else {
2001                 return item->next;
2002         }
2003 }
2004
2005 int cf_section_lineno(CONF_SECTION *section)
2006 {
2007         return cf_sectiontoitem(section)->lineno;
2008 }
2009
2010 const char *cf_pair_filename(CONF_PAIR *pair)
2011 {
2012         return cf_pairtoitem(pair)->filename;
2013 }
2014
2015 const char *cf_section_filename(CONF_SECTION *section)
2016 {
2017         return cf_sectiontoitem(section)->filename;
2018 }
2019
2020 int cf_pair_lineno(CONF_PAIR *pair)
2021 {
2022         return cf_pairtoitem(pair)->lineno;
2023 }
2024
2025 int cf_item_is_section(CONF_ITEM *item)
2026 {
2027         return item->type == CONF_ITEM_SECTION;
2028 }
2029 int cf_item_is_pair(CONF_ITEM *item)
2030 {
2031         return item->type == CONF_ITEM_PAIR;
2032 }
2033
2034
2035 static CONF_DATA *cf_data_alloc(CONF_SECTION *parent, const char *name,
2036                                 void *data, void (*data_free)(void *))
2037 {
2038         char *p;
2039         size_t name_len;
2040         CONF_DATA *cd;
2041
2042         name_len = strlen(name) + 1;
2043
2044         p = rad_malloc(sizeof(*cd) + name_len);
2045         cd = (CONF_DATA *) p;
2046         memset(cd, 0, sizeof(*cd));
2047
2048         cd->item.type = CONF_ITEM_DATA;
2049         cd->item.parent = parent;
2050         cd->data = data;
2051         cd->free = data_free;
2052
2053         p += sizeof(*cd);
2054         memcpy(p, name, name_len);
2055         cd->name = p;
2056         return cd;
2057 }
2058
2059
2060 static void *cf_data_find_internal(CONF_SECTION *cs, const char *name,
2061                                    int flag)
2062 {
2063         if (!cs || !name) return NULL;
2064
2065         /*
2066          *      Find the name in the tree, for speed.
2067          */
2068         if (cs->data_tree) {
2069                 CONF_DATA mycd;
2070
2071                 mycd.name = name;
2072                 mycd.flag = flag;
2073                 return rbtree_finddata(cs->data_tree, &mycd);
2074         }
2075
2076         return NULL;
2077 }
2078
2079 /*
2080  *      Find data from a particular section.
2081  */
2082 void *cf_data_find(CONF_SECTION *cs, const char *name)
2083 {
2084         CONF_DATA *cd = cf_data_find_internal(cs, name, 0);
2085
2086         if (cd) return cd->data;
2087         return NULL;
2088 }
2089
2090
2091 /*
2092  *      Add named data to a configuration section.
2093  */
2094 static int cf_data_add_internal(CONF_SECTION *cs, const char *name,
2095                                 void *data, void (*data_free)(void *),
2096                                 int flag)
2097 {
2098         CONF_DATA *cd;
2099
2100         if (!cs || !name) return -1;
2101
2102         /*
2103          *      Already exists.  Can't add it.
2104          */
2105         if (cf_data_find_internal(cs, name, flag) != NULL) return -1;
2106
2107         cd = cf_data_alloc(cs, name, data, data_free);
2108         if (!cd) return -1;
2109         cd->flag = flag;
2110
2111         cf_item_add(cs, cf_datatoitem(cd));
2112
2113         return 0;
2114 }
2115
2116 /*
2117  *      Add named data to a configuration section.
2118  */
2119 int cf_data_add(CONF_SECTION *cs, const char *name,
2120                 void *data, void (*data_free)(void *))
2121 {
2122         return cf_data_add_internal(cs, name, data, data_free, 0);
2123 }
2124
2125 #if 0
2126 /*
2127  *      Copy CONF_DATA from src to dst
2128  */
2129 static void cf_section_copy_data(CONF_SECTION *s, CONF_SECTION *d)
2130 {
2131
2132         CONF_ITEM *cd, *next, **last;
2133
2134         /*
2135          *      Don't check if s->data_tree is NULL.  It's child
2136          *      sections may have data, even if this section doesn't.
2137          */
2138
2139         rad_assert(d->data_tree == NULL);
2140         d->data_tree = s->data_tree;
2141         s->data_tree = NULL;
2142
2143         /*
2144          *      Walk through src, moving CONF_ITEM_DATA
2145          *      to dst, by hand.
2146          */
2147         last = &(s->children);
2148         for (cd = s->children; cd != NULL; cd = next) {
2149                 next = cd->next;
2150
2151                 /*
2152                  *      Recursively copy data from child sections.
2153                  */
2154                 if (cd->type == CONF_ITEM_SECTION) {
2155                         CONF_SECTION *s1, *d1;
2156
2157                         s1 = cf_itemtosection(cd);
2158                         d1 = cf_section_sub_find_name2(d, s1->name1, s1->name2);
2159                         if (d1) {
2160                                 cf_section_copy_data(s1, d1);
2161                         }
2162                         last = &(cd->next);
2163                         continue;
2164                 }
2165
2166                 /*
2167                  *      Not conf data, remember last ptr.
2168                  */
2169                 if (cd->type != CONF_ITEM_DATA) {
2170                         last = &(cd->next);
2171                         continue;
2172                 }
2173
2174                 /*
2175                  *      Remove it from the src list
2176                  */
2177                 *last = cd->next;
2178                 cd->next = NULL;
2179
2180                 /*
2181                  *      Add it to the dst list
2182                  */
2183                 if (!d->children) {
2184                         rad_assert(d->tail == NULL);
2185                         d->children = cd;
2186                 } else {
2187                         rad_assert(d->tail != NULL);
2188                         d->tail->next = cd;
2189                 }
2190                 d->tail = cd;
2191         }
2192 }
2193
2194 /*
2195  *      For a CONF_DATA element, stat the filename, if necessary.
2196  */
2197 static int filename_stat(void *context, void *data)
2198 {
2199         struct stat buf;
2200         CONF_DATA *cd = data;
2201
2202         context = context;      /* -Wunused */
2203
2204         if (cd->flag != PW_TYPE_FILENAME) return 0;
2205
2206         if (stat(cd->name, &buf) < 0) return -1;
2207
2208         if (buf.st_mtime != *(time_t *) cd->data) return -1;
2209
2210         return 0;
2211 }
2212
2213
2214 /*
2215  *      Compare two CONF_SECTIONS.  The items MUST be in the same
2216  *      order.
2217  */
2218 static int cf_section_cmp(CONF_SECTION *a, CONF_SECTION *b)
2219 {
2220         CONF_ITEM *ca = a->children;
2221         CONF_ITEM *cb = b->children;
2222
2223         while (1) {
2224                 CONF_PAIR *pa, *pb;
2225
2226                 /*
2227                  *      Done.  Stop.
2228                  */
2229                 if (!ca && !cb) break;
2230
2231                 /*
2232                  *      Skip CONF_DATA.
2233                  */
2234                 if (ca && ca->type == CONF_ITEM_DATA) {
2235                         ca = ca->next;
2236                         continue;
2237                 }
2238                 if (cb && cb->type == CONF_ITEM_DATA) {
2239                         cb = cb->next;
2240                         continue;
2241                 }
2242
2243                 /*
2244                  *      One is smaller than the other.  Exit.
2245                  */
2246                 if (!ca || !cb) return 0;
2247
2248                 if (ca->type != cb->type) return 0;
2249
2250                 /*
2251                  *      Deal with subsections.
2252                  */
2253                 if (ca->type == CONF_ITEM_SECTION) {
2254                         CONF_SECTION *sa = cf_itemtosection(ca);
2255                         CONF_SECTION *sb = cf_itemtosection(cb);
2256
2257                         if (!cf_section_cmp(sa, sb)) return 0;
2258                         goto next;
2259                 }
2260
2261                 rad_assert(ca->type == CONF_ITEM_PAIR);
2262
2263                 pa = cf_itemtopair(ca);
2264                 pb = cf_itemtopair(cb);
2265
2266                 /*
2267                  *      Different attr and/or value, Exit.
2268                  */
2269                 if ((strcmp(pa->attr, pb->attr) != 0) ||
2270                     (strcmp(pa->value, pb->value) != 0)) return 0;
2271
2272
2273                 /*
2274                  *      And go to the next element.
2275                  */
2276         next:
2277                 ca = ca->next;
2278                 cb = cb->next;
2279         }
2280
2281         /*
2282          *      Walk over the CONF_DATA, stat'ing PW_TYPE_FILENAME.
2283          */
2284         if (a->data_tree &&
2285             (rbtree_walk(a->data_tree, InOrder, filename_stat, NULL) != 0)) {
2286                 return 0;
2287         }
2288
2289         /*
2290          *      They must be the same, say so.
2291          */
2292         return 1;
2293 }
2294
2295
2296 /*
2297  *      Migrate CONF_DATA from one section to another.
2298  */
2299 int cf_section_migrate(CONF_SECTION *dst, CONF_SECTION *src)
2300 {
2301         CONF_ITEM *ci;
2302         CONF_SECTION *s, *d;
2303
2304         for (ci = src->children; ci != NULL; ci = ci->next) {
2305                 if (ci->type != CONF_ITEM_SECTION)
2306                         continue;
2307
2308                 s = cf_itemtosection(ci);
2309                 d = cf_section_sub_find_name2(dst, s->name1, s->name2);
2310
2311                 if (!d) continue; /* not in new one, don't migrate it */
2312
2313                 /*
2314                  *      A section of the same name is in BOTH src & dst,
2315                  *      compare the CONF_PAIR's.  If they're all the same,
2316                  *      then copy the CONF_DATA from one to the other.
2317                  */
2318                 if (cf_section_cmp(s, d)) {
2319                         cf_section_copy_data(s, d);
2320                 }
2321         }
2322
2323         return 1;               /* rcode means anything? */
2324 }
2325 #endif
2326
2327 int cf_section_template(CONF_SECTION *cs, CONF_SECTION *template)
2328 {
2329         if (!cs || !template || cs->template || template->template) return -1;
2330
2331         cs->template = template;
2332
2333         return 0;
2334 }
2335
2336
2337 /*
2338  *      This is here to make the rest of the code easier to read.  It
2339  *      ties conffile.c to log.c, but it means we don't have to
2340  *      pollute every other function with the knowledge of the
2341  *      configuration internals.
2342  */
2343 void cf_log_err(CONF_ITEM *ci, const char *fmt, ...)
2344 {
2345         va_list ap;
2346         char buffer[256];
2347
2348         va_start(ap, fmt);
2349         vsnprintf(buffer, sizeof(buffer), fmt, ap);
2350         va_end(ap);
2351
2352         radlog(L_ERR, "%s[%d]: %s", ci->filename, ci->lineno, buffer);
2353 }
2354
2355
2356 void cf_log_info(UNUSED CONF_SECTION *cs, const char *fmt, ...)
2357 {
2358         va_list ap;
2359
2360         va_start(ap, fmt);
2361         if (debug_flag > 1 && cf_log_config) vradlog(L_DBG, fmt, ap);
2362         va_end(ap);
2363 }
2364
2365 /*
2366  *      Wrapper to simplify the code.
2367  */
2368 void cf_log_module(UNUSED CONF_SECTION *cs, const char *fmt, ...)
2369 {
2370         va_list ap;
2371         char buffer[256];
2372
2373         va_start(ap, fmt);
2374         if (debug_flag > 1 && cf_log_modules) {
2375                 vsnprintf(buffer, sizeof(buffer), fmt, ap);
2376
2377                 radlog(L_DBG, " Module: %s", buffer);
2378         }
2379         va_end(ap);
2380 }
2381
2382
2383 #if 0
2384 /*
2385  * JMG dump_config tries to dump the config structure in a readable format
2386  *
2387 */
2388
2389 static int dump_config_section(CONF_SECTION *cs, int indent)
2390 {
2391         CONF_SECTION    *scs;
2392         CONF_PAIR       *cp;
2393         CONF_ITEM       *ci;
2394
2395         /* The DEBUG macro doesn't let me
2396          *   for(i=0;i<indent;++i) debugputchar('\t');
2397          * so I had to get creative. --Pac. */
2398
2399         for (ci = cs->children; ci; ci = ci->next) {
2400                 switch (ci->type) {
2401                 case CONF_ITEM_PAIR:
2402                         cp=cf_itemtopair(ci);
2403                         DEBUG("%.*s%s = %s",
2404                                 indent, "\t\t\t\t\t\t\t\t\t\t\t",
2405                                 cp->attr, cp->value);
2406                         break;
2407
2408                 case CONF_ITEM_SECTION:
2409                         scs=cf_itemtosection(ci);
2410                         DEBUG("%.*s%s %s%s{",
2411                                 indent, "\t\t\t\t\t\t\t\t\t\t\t",
2412                                 scs->name1,
2413                                 scs->name2 ? scs->name2 : "",
2414                                 scs->name2 ?  " " : "");
2415                         dump_config_section(scs, indent+1);
2416                         DEBUG("%.*s}",
2417                                 indent, "\t\t\t\t\t\t\t\t\t\t\t");
2418                         break;
2419
2420                 default:        /* FIXME: Do more! */
2421                         break;
2422                 }
2423         }
2424
2425         return 0;
2426 }
2427
2428 int dump_config(CONF_SECTION *cs)
2429 {
2430         return dump_config_section(cs, 0);
2431 }
2432 #endif