70adfb2574eb49dfaafebba00cca86ac2fff1b9a
[freeradius.git] / src / lib / dict.c
1 /*
2  * dict.c       Routines to read the dictionary file.
3  *
4  * Version:     $Id$
5  *
6  *   This library is free software; you can redistribute it and/or
7  *   modify it under the terms of the GNU Lesser General Public
8  *   License as published by the Free Software Foundation; either
9  *   version 2.1 of the License, or (at your option) any later version.
10  *
11  *   This library is distributed in the hope that it will be useful,
12  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  *   Lesser General Public License for more details.
15  *
16  *   You should have received a copy of the GNU Lesser General Public
17  *   License along with this library; if not, write to the Free Software
18  *   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  *
20  * Copyright 2000,2006  The FreeRADIUS server project
21  */
22 RCSID("$Id$")
23
24 #include        <freeradius-devel/libradius.h>
25
26 #ifdef WITH_DHCP
27 #include        <freeradius-devel/dhcp.h>
28 #endif
29
30 #include        <ctype.h>
31
32 #ifdef HAVE_MALLOC_H
33 #include        <malloc.h>
34 #endif
35
36 #ifdef HAVE_SYS_STAT_H
37 #include        <sys/stat.h>
38 #endif
39
40 static fr_hash_table_t *vendors_byname = NULL;
41 static fr_hash_table_t *vendors_byvalue = NULL;
42
43 static fr_hash_table_t *attributes_byname = NULL;
44 static fr_hash_table_t *attributes_byvalue = NULL;
45
46 static fr_hash_table_t *attributes_combo = NULL;
47
48 static fr_hash_table_t *values_byvalue = NULL;
49 static fr_hash_table_t *values_byname = NULL;
50
51 static DICT_ATTR *dict_base_attrs[256];
52
53 /*
54  *      For faster HUP's, we cache the stat information for
55  *      files we've $INCLUDEd
56  */
57 typedef struct dict_stat_t {
58         struct dict_stat_t *next;
59         struct stat stat_buf;
60 } dict_stat_t;
61
62 static dict_stat_t *stat_head = NULL;
63 static dict_stat_t *stat_tail = NULL;
64
65 typedef struct value_fixup_t {
66         char            attrstr[DICT_ATTR_MAX_NAME_LEN];
67         DICT_VALUE      *dval;
68         struct value_fixup_t *next;
69 } value_fixup_t;
70
71
72 /*
73  *      So VALUEs in the dictionary can have forward references.
74  */
75 static value_fixup_t *value_fixup = NULL;
76
77 const FR_NAME_NUMBER dict_attr_types[] = {
78         { "integer",    PW_TYPE_INTEGER },
79         { "string",     PW_TYPE_STRING },
80         { "ipaddr",     PW_TYPE_IPV4_ADDR },
81         { "date",       PW_TYPE_DATE },
82         { "abinary",    PW_TYPE_ABINARY },
83         { "octets",     PW_TYPE_OCTETS },
84         { "ifid",       PW_TYPE_IFID },
85         { "ipv6addr",   PW_TYPE_IPV6_ADDR },
86         { "ipv6prefix", PW_TYPE_IPV6_PREFIX },
87         { "byte",       PW_TYPE_BYTE },
88         { "short",      PW_TYPE_SHORT },
89         { "ether",      PW_TYPE_ETHERNET },
90         { "combo-ip",   PW_TYPE_COMBO_IP_ADDR },
91         { "tlv",        PW_TYPE_TLV },
92         { "signed",     PW_TYPE_SIGNED },
93         { "extended",   PW_TYPE_EXTENDED },
94         { "long-extended",      PW_TYPE_LONG_EXTENDED },
95         { "evs",        PW_TYPE_EVS },
96         { "uint8",      PW_TYPE_BYTE },
97         { "uint16",     PW_TYPE_SHORT },
98         { "uint32",     PW_TYPE_INTEGER },
99         { "int32",      PW_TYPE_SIGNED },
100         { "integer64",  PW_TYPE_INTEGER64 },
101         { "uint64",     PW_TYPE_INTEGER64 },
102         { "ipv4prefix", PW_TYPE_IPV4_PREFIX },
103         { "cidr",       PW_TYPE_IPV4_PREFIX },
104         { "vsa",        PW_TYPE_VSA },
105         { NULL, 0 }
106 };
107
108 /*
109  *      Map data types to min / max data sizes.
110  */
111 const size_t dict_attr_sizes[PW_TYPE_MAX][2] = {
112         [PW_TYPE_INVALID]       = {~0, 0},
113         [PW_TYPE_STRING]        = {0, ~0},
114         [PW_TYPE_INTEGER]       = {4, 4 },
115         [PW_TYPE_IPV4_ADDR]     = {4, 4},
116         [PW_TYPE_DATE]          = {4, 4},
117         [PW_TYPE_ABINARY]       = {32, ~0},
118         [PW_TYPE_OCTETS]        = {0, ~0},
119         [PW_TYPE_IFID]          = {8, 8},
120         [PW_TYPE_IPV6_ADDR]     = {16, 16},
121         [PW_TYPE_IPV6_PREFIX]   = {2, 18},
122         [PW_TYPE_BYTE]          = {1, 1},
123         [PW_TYPE_SHORT]         = {2, 2},
124         [PW_TYPE_ETHERNET]      = {6, 6},
125         [PW_TYPE_SIGNED]        = {4, 4},
126         [PW_TYPE_COMBO_IP_ADDR] = {4, 16},
127         [PW_TYPE_TLV]           = {2, ~0},
128         [PW_TYPE_EXTENDED]      = {2, ~0},
129         [PW_TYPE_LONG_EXTENDED] = {3, ~0},
130         [PW_TYPE_EVS]           = {6, ~0},
131         [PW_TYPE_INTEGER64]     = {8, 8},
132         [PW_TYPE_IPV4_PREFIX]   = {6, 6},
133         [PW_TYPE_VSA]           = {4, ~0}
134 };
135
136 /*
137  *      For packing multiple TLV numbers into one 32-bit integer.  The
138  *      first 3 bytes are just the 8-bit number.  The next two are
139  *      more limited.  We only allow 31 attributes nested 3 layers
140  *      deep, and only 7 nested 4 layers deep.  This should be
141  *      sufficient for most purposes.
142  *
143  *      For TLVs and extended attributes, we packet the base attribute
144  *      number into the upper 8 bits of the "vendor" field.
145  *
146  *      e.g.    OID             attribute       vendor
147  *              241.1           1               (241 << 24)
148  *              241.26.9.1      1               (241 << 24) | (9)
149  *              241.1.2         1 | (2 << 8)    (241 << 24)
150  */
151 #define MAX_TLV_NEST (4)
152 /*
153  *      Bit packing:
154  *      8 bits of base attribute
155  *      8 bits for nested TLV 1
156  *      8 bits for nested TLV 2
157  *      5 bits for nested TLV 3
158  *      3 bits for nested TLV 4
159  */
160 int const fr_attr_max_tlv = MAX_TLV_NEST;
161 int const fr_attr_shift[MAX_TLV_NEST + 1] = { 0, 8, 16, 24, 29 };
162
163 unsigned const fr_attr_mask[MAX_TLV_NEST + 1] = { 0xff, 0xff, 0xff, 0x1f, 0x07 };
164
165 /*
166  *      attr & fr_attr_parent_mask[i] == Nth parent of attr
167  */
168 static unsigned int const fr_attr_parent_mask[MAX_TLV_NEST + 1] = { 0, 0x000000ff, 0x0000ffff, 0x00ffffff, 0x1fffffff };
169
170 /*
171  *      Create the hash of the name.
172  *
173  *      We copy the hash function here because it's substantially faster.
174  */
175 #define FNV_MAGIC_INIT (0x811c9dc5)
176 #define FNV_MAGIC_PRIME (0x01000193)
177
178 static uint32_t dict_hashname(char const *name)
179 {
180         uint32_t hash = FNV_MAGIC_INIT;
181         char const *p;
182
183         for (p = name; *p != '\0'; p++) {
184                 int c = *(unsigned char const *) p;
185                 if (isalpha(c)) c = tolower(c);
186
187                 hash *= FNV_MAGIC_PRIME;
188                 hash ^= (uint32_t ) (c & 0xff);
189         }
190
191         return hash;
192 }
193
194
195 /*
196  *      Hash callback functions.
197  */
198 static uint32_t dict_attr_name_hash(void const *data)
199 {
200         return dict_hashname(((DICT_ATTR const *)data)->name);
201 }
202
203 static int dict_attr_name_cmp(void const *one, void const *two)
204 {
205         DICT_ATTR const *a = one;
206         DICT_ATTR const *b = two;
207
208         return strcasecmp(a->name, b->name);
209 }
210
211 static uint32_t dict_attr_value_hash(void const *data)
212 {
213         uint32_t hash;
214         DICT_ATTR const *attr = data;
215
216         hash = fr_hash(&attr->vendor, sizeof(attr->vendor));
217         return fr_hash_update(&attr->attr, sizeof(attr->attr), hash);
218 }
219
220 static int dict_attr_value_cmp(void const *one, void const *two)
221 {
222         DICT_ATTR const *a = one;
223         DICT_ATTR const *b = two;
224
225         if (a->vendor < b->vendor) return -1;
226         if (a->vendor > b->vendor) return +1;
227
228         return a->attr - b->attr;
229 }
230
231 static uint32_t dict_attr_combo_hash(void const *data)
232 {
233         uint32_t hash;
234         DICT_ATTR const *attr = data;
235
236         hash = fr_hash(&attr->vendor, sizeof(attr->vendor));
237         hash = fr_hash_update(&attr->type, sizeof(attr->type), hash);
238         return fr_hash_update(&attr->attr, sizeof(attr->attr), hash);
239 }
240
241 static int dict_attr_combo_cmp(void const *one, void const *two)
242 {
243         DICT_ATTR const *a = one;
244         DICT_ATTR const *b = two;
245
246         if (a->type < b->type) return -1;
247         if (a->type > b->type) return +1;
248
249         if (a->vendor < b->vendor) return -1;
250         if (a->vendor > b->vendor) return +1;
251
252         return a->attr - b->attr;
253 }
254
255 static uint32_t dict_vendor_name_hash(void const *data)
256 {
257         return dict_hashname(((DICT_VENDOR const *)data)->name);
258 }
259
260 static int dict_vendor_name_cmp(void const *one, void const *two)
261 {
262         DICT_VENDOR const *a = one;
263         DICT_VENDOR const *b = two;
264
265         return strcasecmp(a->name, b->name);
266 }
267
268 static uint32_t dict_vendor_value_hash(void const *data)
269 {
270         return fr_hash(&(((DICT_VENDOR const *)data)->vendorpec),
271                          sizeof(((DICT_VENDOR const *)data)->vendorpec));
272 }
273
274 static int dict_vendor_value_cmp(void const *one, void const *two)
275 {
276         DICT_VENDOR const *a = one;
277         DICT_VENDOR const *b = two;
278
279         return a->vendorpec - b->vendorpec;
280 }
281
282 static uint32_t dict_value_name_hash(void const *data)
283 {
284         uint32_t hash;
285         DICT_VALUE const *dval = data;
286
287         hash = dict_hashname(dval->name);
288         hash = fr_hash_update(&dval->vendor, sizeof(dval->vendor), hash);
289         return fr_hash_update(&dval->attr, sizeof(dval->attr), hash);
290 }
291
292 static int dict_value_name_cmp(void const *one, void const *two)
293 {
294         int rcode;
295         DICT_VALUE const *a = one;
296         DICT_VALUE const *b = two;
297
298         rcode = a->attr - b->attr;
299         if (rcode != 0) return rcode;
300
301         rcode = a->vendor - b->vendor;
302         if (rcode != 0) return rcode;
303
304         return strcasecmp(a->name, b->name);
305 }
306
307 static uint32_t dict_value_value_hash(void const *data)
308 {
309         uint32_t hash;
310         DICT_VALUE const *dval = data;
311
312         hash = fr_hash(&dval->attr, sizeof(dval->attr));
313         hash = fr_hash_update(&dval->vendor, sizeof(dval->vendor), hash);
314         return fr_hash_update(&dval->value, sizeof(dval->value), hash);
315 }
316
317 static int dict_value_value_cmp(void const *one, void const *two)
318 {
319         int rcode;
320         DICT_VALUE const *a = one;
321         DICT_VALUE const *b = two;
322
323         if (a->vendor < b->vendor) return -1;
324         if (a->vendor > b->vendor) return +1;
325
326         rcode = a->attr - b->attr;
327         if (rcode != 0) return rcode;
328
329         return a->value - b->value;
330 }
331
332
333 /*
334  *      Free the list of stat buffers
335  */
336 static void dict_stat_free(void)
337 {
338         dict_stat_t *this, *next;
339
340         if (!stat_head) {
341                 stat_tail = NULL;
342                 return;
343         }
344
345         for (this = stat_head; this != NULL; this = next) {
346                 next = this->next;
347                 free(this);
348         }
349
350         stat_head = stat_tail = NULL;
351 }
352
353
354 /*
355  *      Add an entry to the list of stat buffers.
356  */
357 static void dict_stat_add(struct stat const *stat_buf)
358 {
359         dict_stat_t *this;
360
361         this = malloc(sizeof(*this));
362         if (!this) return;
363         memset(this, 0, sizeof(*this));
364
365         memcpy(&(this->stat_buf), stat_buf, sizeof(this->stat_buf));
366
367         if (!stat_head) {
368                 stat_head = stat_tail = this;
369         } else {
370                 stat_tail->next = this;
371                 stat_tail = this;
372         }
373 }
374
375
376 /*
377  *      See if any dictionaries have changed.  If not, don't
378  *      do anything.
379  */
380 static int dict_stat_check(char const *dir, char const *file)
381 {
382         struct stat stat_buf;
383         dict_stat_t *this;
384         char buffer[2048];
385
386         /*
387          *      Nothing cached, all files are new.
388          */
389         if (!stat_head) return 0;
390
391         /*
392          *      Stat the file.
393          */
394         snprintf(buffer, sizeof(buffer), "%s/%s", dir, file);
395         if (stat(buffer, &stat_buf) < 0) return 0;
396
397         /*
398          *      Find the cache entry.
399          *      FIXME: use a hash table.
400          *      FIXME: check dependencies, via children.
401          *             if A loads B and B changes, we probably want
402          *             to reload B at the minimum.
403          */
404         for (this = stat_head; this != NULL; this = this->next) {
405                 if (this->stat_buf.st_dev != stat_buf.st_dev) continue;
406                 if (this->stat_buf.st_ino != stat_buf.st_ino) continue;
407
408                 /*
409                  *      The file has changed.  Re-read it.
410                  */
411                 if (this->stat_buf.st_mtime < stat_buf.st_mtime) return 0;
412
413                 /*
414                  *      The file is the same.  Ignore it.
415                  */
416                 return 1;
417         }
418
419         /*
420          *      Not in the cache.
421          */
422         return 0;
423 }
424
425 typedef struct fr_pool_t {
426         void    *page_end;
427         void    *free_ptr;
428         struct fr_pool_t *page_free;
429         struct fr_pool_t *page_next;
430 } fr_pool_t;
431
432 #define FR_POOL_SIZE (32768)
433 #define FR_ALLOC_ALIGN (8)
434
435 static fr_pool_t *dict_pool = NULL;
436
437 static fr_pool_t *fr_pool_create(void)
438 {
439         fr_pool_t *fp = malloc(FR_POOL_SIZE);
440
441         if (!fp) return NULL;
442
443         memset(fp, 0, FR_POOL_SIZE);
444
445         fp->page_end = ((uint8_t *) fp) + FR_POOL_SIZE;
446         fp->free_ptr = ((uint8_t *) fp) + sizeof(*fp);
447         fp->page_free = fp;
448         fp->page_next = NULL;
449         return fp;
450 }
451
452 static void fr_pool_delete(fr_pool_t **pfp)
453 {
454         fr_pool_t *fp, *next;
455
456         if (!pfp || !*pfp) return;
457
458         for (fp = *pfp; fp != NULL; fp = next) {
459                 next = fp->page_next;
460                 fp->page_next = NULL;
461                 free(fp);
462         }
463         *pfp = NULL;
464 }
465
466
467 static void *fr_pool_alloc(size_t size)
468 {
469         void *ptr;
470
471         if (size == 0) return NULL;
472
473         if (size > 256) return NULL; /* shouldn't happen */
474
475         if (!dict_pool) {
476                 dict_pool = fr_pool_create();
477                 if (!dict_pool) return NULL;
478         }
479
480         if ((size & (FR_ALLOC_ALIGN - 1)) != 0) {
481                 size += FR_ALLOC_ALIGN - (size & (FR_ALLOC_ALIGN - 1));
482         }
483
484         if ((((uint8_t *) dict_pool->page_free->free_ptr) + size) > (uint8_t *) dict_pool->page_free->page_end) {
485                 dict_pool->page_free->page_next = fr_pool_create();
486                 if (!dict_pool->page_free->page_next) return NULL;
487                 dict_pool->page_free = dict_pool->page_free->page_next;
488         }
489
490         ptr = dict_pool->page_free->free_ptr;
491         dict_pool->page_free->free_ptr = ((uint8_t *) dict_pool->page_free->free_ptr) + size;
492
493         return ptr;
494 }
495
496
497 static void fr_pool_free(UNUSED void *ptr)
498 {
499         /*
500          *      Place-holder for later code.
501          */
502 }
503
504 /*
505  *      Free the dictionary_attributes and dictionary_values lists.
506  */
507 void dict_free(void)
508 {
509         /*
510          *      Free the tables
511          */
512         fr_hash_table_free(vendors_byname);
513         fr_hash_table_free(vendors_byvalue);
514         vendors_byname = NULL;
515         vendors_byvalue = NULL;
516
517         fr_hash_table_free(attributes_byname);
518         fr_hash_table_free(attributes_byvalue);
519         fr_hash_table_free(attributes_combo);
520         attributes_byname = NULL;
521         attributes_byvalue = NULL;
522         attributes_combo = NULL;
523
524         fr_hash_table_free(values_byname);
525         fr_hash_table_free(values_byvalue);
526         values_byname = NULL;
527         values_byvalue = NULL;
528
529         memset(dict_base_attrs, 0, sizeof(dict_base_attrs));
530
531         fr_pool_delete(&dict_pool);
532
533         dict_stat_free();
534 }
535
536 /*
537  *      Add vendor to the list.
538  */
539 int dict_addvendor(char const *name, unsigned int value)
540 {
541         size_t length;
542         DICT_VENDOR *dv;
543
544         if (value >= FR_MAX_VENDOR) {
545                 fr_strerror_printf("dict_addvendor: Cannot handle vendor ID larger than 2^24");
546                 return -1;
547         }
548
549         if ((length = strlen(name)) >= DICT_VENDOR_MAX_NAME_LEN) {
550                 fr_strerror_printf("dict_addvendor: vendor name too long");
551                 return -1;
552         }
553
554         if ((dv = fr_pool_alloc(sizeof(*dv) + length)) == NULL) {
555                 fr_strerror_printf("dict_addvendor: out of memory");
556                 return -1;
557         }
558
559         strcpy(dv->name, name);
560         dv->vendorpec  = value;
561         dv->type = dv->length = 1; /* defaults */
562
563         if (!fr_hash_table_insert(vendors_byname, dv)) {
564                 DICT_VENDOR *old_dv;
565
566                 old_dv = fr_hash_table_finddata(vendors_byname, dv);
567                 if (!old_dv) {
568                         fr_strerror_printf("dict_addvendor: Failed inserting vendor name %s", name);
569                         return -1;
570                 }
571                 if (old_dv->vendorpec != dv->vendorpec) {
572                         fr_strerror_printf("dict_addvendor: Duplicate vendor name %s", name);
573                         return -1;
574                 }
575
576                 /*
577                  *      Already inserted.  Discard the duplicate entry.
578                  */
579                 fr_pool_free(dv);
580                 return 0;
581         }
582
583         /*
584          *      Insert the SAME pointer (not free'd when this table is
585          *      deleted), into another table.
586          *
587          *      We want this behaviour because we want OLD names for
588          *      the attributes to be read from the configuration
589          *      files, but when we're printing them, (and looking up
590          *      by value) we want to use the NEW name.
591          */
592         if (!fr_hash_table_replace(vendors_byvalue, dv)) {
593                 fr_strerror_printf("dict_addvendor: Failed inserting vendor %s",
594                            name);
595                 return -1;
596         }
597
598         return 0;
599 }
600
601 const int dict_attr_allowed_chars[256] = {
602 /* 0x   0  1  2  3  4  5  6  7  8  9  a  b  c  d  e  f */
603 /* 0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
604 /* 1 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
605 /* 2 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1,
606 /* 3 */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0,
607 /* 4 */ 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
608 /* 5 */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1,
609 /* 6 */ 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
610 /* 7 */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0,
611 /* 8 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
612 /* 9 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
613 /* a */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
614 /* b */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
615 /* c */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
616 /* d */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
617 /* e */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
618 /* f */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
619 };
620
621 /*
622  *      [a-zA-Z0-9_-:.]+
623  */
624 int dict_valid_name(char const *name)
625 {
626         uint8_t const *p;
627
628         for (p = (uint8_t const *) name; *p != '\0'; p++) {
629                 if (!dict_attr_allowed_chars[*p]) {
630                         char buff[5];
631
632                         fr_prints(buff, sizeof(buff), (char const *)p, 1, '\'');
633                         fr_strerror_printf("Invalid character '%s' in attribute", buff);
634
635                         return -(p - (uint8_t const *)name);
636                 }
637         }
638
639         return 0;
640 }
641
642
643 /*
644  *      Find the parent of the attr/vendor.
645  */
646 static DICT_ATTR const *dict_parent(unsigned int attr, unsigned int vendor)
647 {
648         int i;
649         unsigned int base_vendor;
650
651         /*
652          *      RFC attributes can't be of type "tlv", except for dictionary.rfc6930
653          */
654         if (!vendor) {
655 #ifdef PW_IPV6_6RD_CONFIGURATION
656                 if (attr == PW_IPV6_6RD_CONFIGURATION) return NULL;
657
658                 if (((attr & 0xff) == PW_IPV6_6RD_CONFIGURATION) &&
659                     (attr >> 8) < 4) {
660                         return dict_attrbyvalue(PW_IPV6_6RD_CONFIGURATION, 0);
661                 }
662 #endif
663                 return NULL;
664         }
665
666         base_vendor = vendor & (FR_MAX_VENDOR - 1);
667
668         /*
669          *      It's a real vendor.
670          */
671         if (base_vendor != 0) {
672                 DICT_VENDOR const *dv;
673
674                 dv = dict_vendorbyvalue(base_vendor);
675                 if (!dv) return NULL;
676
677                 /*
678                  *      Only standard format attributes can be of type "tlv",
679                  *      Except for DHCP.  <sigh>
680                  */
681                 if ((vendor != 54) && ((dv->type != 1) || (dv->length != 1))) return NULL;
682
683                 for (i = MAX_TLV_NEST; i > 0; i--) {
684                         unsigned int parent;
685
686                         parent = attr & fr_attr_parent_mask[i];
687
688                         if (parent != attr) return dict_attrbyvalue(parent, vendor); /* not base_vendor */
689                 }
690
691                 /*
692                  *      It was a top-level VSA.  There's no parent.
693                  *      We COULD return the appropriate enclosing VSA
694                  *      (26, or 241.26, etc.) but that's not what we
695                  *      want.
696                  */
697                 return NULL;
698         }
699
700         /*
701          *      It's an extended attribute.  Return the base Extended-Attr-X
702          */
703         if (attr < 256) return dict_attrbyvalue((vendor / FR_MAX_VENDOR) & 0xff, 0);
704
705         /*
706          *      Figure out which attribute it is.
707          */
708         for (i = MAX_TLV_NEST; i > 0; i--) {
709                 unsigned int parent;
710
711                 parent = attr & fr_attr_parent_mask[i];
712                 if (parent != attr) return dict_attrbyvalue(parent, vendor); /* not base_vendor */
713         }
714
715         return NULL;
716 }
717
718
719 /** Add an attribute to the dictionary
720  *
721  * @return 0 on success -1 on failure.
722  */
723 int dict_addattr(char const *name, int attr, unsigned int vendor, PW_TYPE type,
724                  ATTR_FLAGS flags)
725 {
726         size_t namelen;
727         DICT_ATTR const *parent;
728         DICT_ATTR *n;
729         static int      max_attr = 0;
730
731         namelen = strlen(name);
732         if (namelen >= DICT_ATTR_MAX_NAME_LEN) {
733                 fr_strerror_printf("dict_addattr: attribute name too long");
734                 return -1;
735         }
736
737         if (dict_valid_name(name) < 0) return -1;
738
739         if (flags.has_tag &&
740             !((type == PW_TYPE_INTEGER) || (type == PW_TYPE_STRING))) {
741                 fr_strerror_printf("dict_addattr: Only 'integer' and 'string' attributes can have tags");
742                 return -1;
743         }
744
745         /*
746          *      Disallow attributes of type zero.
747          */
748         if (!attr && !vendor) {
749                 fr_strerror_printf("dict_addattr: Attribute 0 is invalid and cannot be used");
750                 return -1;
751         }
752
753         /*
754          *      If the attr is '-1', that means use a pre-existing
755          *      one (if it already exists).  If one does NOT already exist,
756          *      then create a new attribute, with a non-conflicting value,
757          *      and use that.
758          */
759         if (attr == -1) {
760                 if (dict_attrbyname(name)) {
761                         return 0; /* exists, don't add it again */
762                 }
763
764                 attr = ++max_attr;
765
766         } else if (vendor == 0) {
767                 /*
768                  *  Update 'max_attr'
769                  */
770                 if (attr > max_attr) {
771                         max_attr = attr;
772                 }
773         }
774
775         /*
776          *      Check the parent attribute, and set the various flags
777          *      based on the parents values.  It's OK for the caller
778          *      to not set them, as we'll set them.  But if the caller
779          *      sets them when he's not supposed to set them, that's
780          *      an error.
781          */
782         parent = dict_parent(attr, vendor);
783         if (parent) {
784                 /*
785                  *      We're still in the same space and the parent isn't a TLV.  That's an error.
786                  *
787                  *      Otherwise, dict_parent() has taken us from an Extended sub-attribute to
788                  *      a *the* Extended attribute, whish isn't what we want here.
789                  */
790                 if ((vendor == parent->vendor) && (parent->type != PW_TYPE_TLV)) {
791                         fr_strerror_printf("dict_addattr: Attribute %s has parent attribute %s which is not of type 'tlv'",
792                                            name, parent->name);
793                         return -1;
794                 }
795
796                 flags.extended |= parent->flags.extended;
797                 flags.long_extended |= parent->flags.long_extended;
798                 flags.evs |= parent->flags.evs;
799         }
800
801         /*
802          *      Manually extended flags for extended attributes.  We
803          *      can't expect the caller to know all of the details of the flags.
804          */
805         if (vendor >= FR_MAX_VENDOR) {
806                 DICT_ATTR const *da;
807
808                 /*
809                  *      Trying to manually create an extended
810                  *      attribute, but the parent extended attribute
811                  *      doesn't exist?  That's an error.
812                  */
813                 da = dict_attrbyvalue(vendor / FR_MAX_VENDOR, 0);
814                 if (!da) {
815                         fr_strerror_printf("Extended attributes must be defined from the extended space");
816                         return -1;
817                 }
818
819                 flags.extended |= da->flags.extended;
820                 flags.long_extended |= da->flags.long_extended;
821                 flags.evs |= da->flags.evs;
822
823                 /*
824                  *      There's still a real vendor.  Since it's an
825                  *      extended attribute, set the EVS flag.
826                  */
827                 if ((vendor & (FR_MAX_VENDOR -1)) != 0) flags.evs = 1;
828         }
829
830         /*
831          *      Additional checks for extended attributes.
832          */
833         if (flags.extended || flags.long_extended || flags.evs) {
834                 if (vendor && (vendor < FR_MAX_VENDOR)) {
835                         fr_strerror_printf("dict_addattr: VSAs cannot use the \"extended\" or \"evs\" attribute formats");
836                         return -1;
837                 }
838                 if (flags.has_tag
839 #ifdef WITH_DHCP
840                     || flags.array
841 #endif
842                     || ((flags.encrypt != FLAG_ENCRYPT_NONE) && (flags.encrypt != FLAG_ENCRYPT_TUNNEL_PASSWORD))) {
843                         fr_strerror_printf("dict_addattr: The \"extended\" attributes MUST NOT have any flags set");
844                         return -1;
845                 }
846         }
847
848         if (flags.evs) {
849                 if (!(flags.extended || flags.long_extended)) {
850                         fr_strerror_printf("dict_addattr: Attributes of type \"evs\" MUST have a parent of type \"extended\"");
851                         return -1;
852                 }
853         }
854
855         /*
856          *      Do various sanity checks.
857          */
858         if (attr < 0) {
859                 fr_strerror_printf("dict_addattr: ATTRIBUTE has invalid number (less than zero)");
860                 return -1;
861         }
862
863         if (flags.has_tlv && flags.length) {
864                 fr_strerror_printf("TLVs cannot have a fixed length");
865                 return -1;
866         }
867
868         if (vendor && flags.concat) {
869                 fr_strerror_printf("VSAs cannot have the \"concat\" flag set");
870                 return -1;
871         }
872
873         if (flags.concat && (type != PW_TYPE_OCTETS)) {
874                 fr_strerror_printf("The \"concat\" flag can only be set for attributes of type \"octets\"");
875                 return -1;
876         }
877
878         if (flags.concat && (flags.has_tag || flags.array || flags.is_tlv || flags.has_tlv ||
879                              flags.length || flags.evs || flags.extended || flags.long_extended ||
880                              (flags.encrypt != FLAG_ENCRYPT_NONE))) {
881                 fr_strerror_printf("The \"concat\" flag cannot be used with any other flag");
882                 return -1;
883         }
884
885         if (flags.length && (type != PW_TYPE_OCTETS)) {
886                 fr_strerror_printf("The \"length\" flag can only be set for attributes of type \"octets\"");
887                 return -1;
888         }
889
890         if (flags.length && (flags.has_tag || flags.array || flags.is_tlv || flags.has_tlv ||
891                              flags.concat || flags.evs || flags.extended || flags.long_extended ||
892                              (flags.encrypt > FLAG_ENCRYPT_USER_PASSWORD))) {
893                 fr_strerror_printf("The \"length\" flag cannot be used with any other flag");
894                 return -1;
895         }
896
897         /*
898          *      Force "length" for data types of fixed length;
899          */
900         switch (type) {
901         case PW_TYPE_BYTE:
902                 flags.length = 1;
903                 break;
904
905         case PW_TYPE_SHORT:
906                 flags.length = 2;
907                 break;
908
909         case PW_TYPE_DATE:
910         case PW_TYPE_IPV4_ADDR:
911         case PW_TYPE_INTEGER:
912         case PW_TYPE_SIGNED:
913                 flags.length = 4;
914                 break;
915
916         case PW_TYPE_INTEGER64:
917                 flags.length = 8;
918                 break;
919
920         case PW_TYPE_ETHERNET:
921                 flags.length = 6;
922                 break;
923
924         case PW_TYPE_IFID:
925                 flags.length = 8;
926                 break;
927
928         case PW_TYPE_IPV6_ADDR:
929                 flags.length = 16;
930                 break;
931
932         case PW_TYPE_EXTENDED:
933                 if ((vendor != 0) || (attr < 241)) {
934                         fr_strerror_printf("Attributes of type \"extended\" MUST be "
935                                            "RFC attributes with value >= 241.");
936                         return -1;
937                 }
938
939                 flags.length = 0;
940                 flags.extended = 1;
941                 break;
942
943         case PW_TYPE_LONG_EXTENDED:
944                 if ((vendor != 0) || (attr < 241)) {
945                         fr_strerror_printf("Attributes of type \"long-extended\" MUST "
946                                            "be RFC attributes with value >= 241.");
947                         return -1;
948                 }
949
950                 flags.length = 0;
951                 flags.extended = 1;
952                 flags.long_extended = 1;
953                 break;
954
955         case PW_TYPE_EVS:
956                 if (attr != PW_VENDOR_SPECIFIC) {
957                         fr_strerror_printf("Attributes of type \"evs\" MUST have "
958                                            "attribute code 26.");
959                         return -1;
960                 }
961
962                 flags.length = 0;
963                 flags.extended = 1;
964                 flags.evs = 1;
965                 break;
966
967         case PW_TYPE_STRING:
968         case PW_TYPE_OCTETS:
969         case PW_TYPE_TLV:
970                 flags.is_pointer = true;
971                 break;
972
973         default:
974                 break;
975         }
976
977         /*
978          *      Stupid hacks for MS-CHAP-MPPE-Keys.  The User-Password
979          *      encryption method has no provisions for encoding the
980          *      length of the data.  For User-Password, the data is
981          *      (presumably) all printable non-zero data.  For
982          *      MS-CHAP-MPPE-Keys, the data is binary crap.  So... we
983          *      MUST specify a length in the dictionary.
984          */
985         if ((flags.encrypt == FLAG_ENCRYPT_USER_PASSWORD) && (type != PW_TYPE_STRING)) {
986                 if (type != PW_TYPE_OCTETS) {
987                         fr_strerror_printf("The \"encrypt=1\" flag cannot be used with non-string data types");
988                         return -1;
989                 }
990
991                 if (flags.length == 0) {
992                         fr_strerror_printf("The \"encrypt=1\" flag MUST be used with an explicit length for 'octets' data types");
993                         return -1;
994                 }
995         }
996
997         if ((vendor & (FR_MAX_VENDOR -1)) != 0) {
998                 DICT_VENDOR *dv;
999                 static DICT_VENDOR *last_vendor = NULL;
1000
1001                 if (flags.has_tlv && (flags.encrypt != FLAG_ENCRYPT_NONE)) {
1002                         fr_strerror_printf("TLV's cannot be encrypted");
1003                         return -1;
1004                 }
1005
1006                 if (flags.is_tlv && flags.has_tag) {
1007                         fr_strerror_printf("Sub-TLV's cannot have a tag");
1008                         return -1;
1009                 }
1010
1011                 if (flags.has_tlv && flags.has_tag) {
1012                         fr_strerror_printf("TLV's cannot have a tag");
1013                         return -1;
1014                 }
1015
1016                 /*
1017                  *      Most ATTRIBUTEs are bunched together by
1018                  *      VENDOR.  We can save a lot of lookups on
1019                  *      dictionary initialization by caching the last
1020                  *      vendor.
1021                  */
1022                 if (last_vendor &&
1023                     ((vendor & (FR_MAX_VENDOR - 1)) == last_vendor->vendorpec)) {
1024                         dv = last_vendor;
1025                 } else {
1026                         /*
1027                          *      Ignore the high byte (sigh)
1028                          */
1029                         dv = dict_vendorbyvalue(vendor & (FR_MAX_VENDOR - 1));
1030                         last_vendor = dv;
1031                 }
1032
1033                 /*
1034                  *      If the vendor isn't defined, die.
1035                  */
1036                 if (!dv) {
1037                         fr_strerror_printf("dict_addattr: Unknown vendor %u",
1038                                            vendor & (FR_MAX_VENDOR - 1));
1039                         return -1;
1040                 }
1041
1042                 if (!attr && dv->type != 1) {
1043                         fr_strerror_printf("dict_addattr: Attribute %s cannot have value zero",
1044                                            name);
1045                         return -1;
1046                 }
1047
1048                 /*
1049                  *      FIXME: Switch over dv->type, and limit things
1050                  *      properly.
1051                  */
1052                 if ((dv->type == 1) && (attr >= 256) && !flags.is_tlv) {
1053                         fr_strerror_printf("dict_addattr: ATTRIBUTE has invalid number (larger than 255)");
1054                         return -1;
1055                 } /* else 256..65535 are allowed */
1056
1057                 /*
1058                  *      <sigh> Alvarion, being *again* a horribly
1059                  *      broken vendor, has re-used the WiMAX format in
1060                  *      their proprietary vendor space.  This re-use
1061                  *      means that there are *multiple* conflicting
1062                  *      Alvarion dictionaries.
1063                  */
1064                 flags.wimax = dv->flags;
1065         } /* it's a VSA of some kind */
1066
1067         /*
1068          *      Create a new attribute for the list
1069          */
1070         if ((n = fr_pool_alloc(sizeof(*n) + namelen)) == NULL) {
1071         oom:
1072                 fr_strerror_printf("dict_addattr: out of memory");
1073                 return -1;
1074         }
1075
1076         memcpy(n->name, name, namelen);
1077         n->name[namelen] = '\0';
1078         n->attr = attr;
1079         n->vendor = vendor;
1080         n->type = type;
1081         n->flags = flags;
1082
1083         /*
1084          *      Insert the attribute, only if it's not a duplicate.
1085          */
1086         if (!fr_hash_table_insert(attributes_byname, n)) {
1087                 DICT_ATTR       *a;
1088
1089                 /*
1090                  *      If the attribute has identical number, then
1091                  *      ignore the duplicate.
1092                  */
1093                 a = fr_hash_table_finddata(attributes_byname, n);
1094                 if (a && (strcasecmp(a->name, n->name) == 0)) {
1095                         if (a->attr != n->attr) {
1096                                 fr_strerror_printf("dict_addattr: Duplicate attribute name %s", name);
1097                                 fr_pool_free(n);
1098                                 return -1;
1099                         }
1100
1101                         /*
1102                          *      Same name, same vendor, same attr,
1103                          *      maybe the flags and/or type is
1104                          *      different.  Let the new value
1105                          *      over-ride the old one.
1106                          */
1107                 }
1108
1109
1110                 fr_hash_table_delete(attributes_byvalue, a);
1111
1112                 if (!fr_hash_table_replace(attributes_byname, n)) {
1113                         fr_strerror_printf("dict_addattr: Internal error storing attribute %s", name);
1114                         fr_pool_free(n);
1115                         return -1;
1116                 }
1117         }
1118
1119         /*
1120          *      Insert the SAME pointer (not free'd when this entry is
1121          *      deleted), into another table.
1122          *
1123          *      We want this behaviour because we want OLD names for
1124          *      the attributes to be read from the configuration
1125          *      files, but when we're printing them, (and looking up
1126          *      by value) we want to use the NEW name.
1127          */
1128         if (!fr_hash_table_replace(attributes_byvalue, n)) {
1129                 fr_strerror_printf("dict_addattr: Failed inserting attribute name %s", name);
1130                 return -1;
1131         }
1132
1133         /*
1134          *      Hacks for combo-IP
1135          */
1136         if (n->type == PW_TYPE_COMBO_IP_ADDR) {
1137                 DICT_ATTR *v4, *v6;
1138
1139                 v4 = fr_pool_alloc(sizeof(*v4) + namelen);
1140                 if (!v4) goto oom;
1141
1142                 v6 = fr_pool_alloc(sizeof(*v6) + namelen);
1143                 if (!v6) goto oom;
1144
1145                 memcpy(v4, n, sizeof(*v4) + namelen);
1146                 v4->type = PW_TYPE_IPV4_ADDR;
1147
1148                 memcpy(v6, n, sizeof(*v6) + namelen);
1149                 v6->type = PW_TYPE_IPV6_ADDR;
1150                 if (!fr_hash_table_replace(attributes_combo, v4)) {
1151                         fr_strerror_printf("dict_addattr: Failed inserting attribute name %s - IPv4", name);
1152                         return -1;
1153                 }
1154
1155                 if (!fr_hash_table_replace(attributes_combo, v6)) {
1156                         fr_strerror_printf("dict_addattr: Failed inserting attribute name %s - IPv6", name);
1157                         return -1;
1158                 }
1159         }
1160
1161         if (!vendor && (attr > 0) && (attr < 256)) {
1162                  dict_base_attrs[attr] = n;
1163         }
1164
1165         return 0;
1166 }
1167
1168
1169 /*
1170  *      Add a value for an attribute to the dictionary.
1171  */
1172 int dict_addvalue(char const *namestr, char const *attrstr, int value)
1173 {
1174         size_t          length;
1175         DICT_ATTR const *da;
1176         DICT_VALUE      *dval;
1177
1178         static DICT_ATTR const *last_attr = NULL;
1179
1180         if (!*namestr) {
1181                 fr_strerror_printf("dict_addvalue: empty names are not permitted");
1182                 return -1;
1183         }
1184
1185         if ((length = strlen(namestr)) >= DICT_VALUE_MAX_NAME_LEN) {
1186                 fr_strerror_printf("dict_addvalue: value name too long");
1187                 return -1;
1188         }
1189
1190         if ((dval = fr_pool_alloc(sizeof(*dval) + length)) == NULL) {
1191                 fr_strerror_printf("dict_addvalue: out of memory");
1192                 return -1;
1193         }
1194         memset(dval, 0, sizeof(*dval));
1195
1196         strcpy(dval->name, namestr);
1197         dval->value = value;
1198
1199         /*
1200          *      Most VALUEs are bunched together by ATTRIBUTE.  We can
1201          *      save a lot of lookups on dictionary initialization by
1202          *      caching the last attribute.
1203          */
1204         if (last_attr && (strcasecmp(attrstr, last_attr->name) == 0)) {
1205                 da = last_attr;
1206         } else {
1207                 da = dict_attrbyname(attrstr);
1208                 last_attr = da;
1209         }
1210
1211         /*
1212          *      Remember which attribute is associated with this
1213          *      value, if possible.
1214          */
1215         if (da) {
1216                 if (da->flags.has_value_alias) {
1217                         fr_strerror_printf("dict_addvalue: Cannot add VALUE for ATTRIBUTE \"%s\": It already has a VALUE-ALIAS", attrstr);
1218                         return -1;
1219                 }
1220
1221                 dval->attr = da->attr;
1222                 dval->vendor = da->vendor;
1223
1224                 /*
1225                  *      Enforce valid values
1226                  *
1227                  *      Don't worry about fixups...
1228                  */
1229                 switch (da->type) {
1230                 case PW_TYPE_BYTE:
1231                         if (value > 255) {
1232                                 fr_pool_free(dval);
1233                                 fr_strerror_printf("dict_addvalue: ATTRIBUTEs of type 'byte' cannot have VALUEs larger than 255");
1234                                 return -1;
1235                         }
1236                         break;
1237                 case PW_TYPE_SHORT:
1238                         if (value > 65535) {
1239                                 fr_pool_free(dval);
1240                                 fr_strerror_printf("dict_addvalue: ATTRIBUTEs of type 'short' cannot have VALUEs larger than 65535");
1241                                 return -1;
1242                         }
1243                         break;
1244
1245                         /*
1246                          *      Allow octets for now, because
1247                          *      of dictionary.cablelabs
1248                          */
1249                 case PW_TYPE_OCTETS:
1250
1251                 case PW_TYPE_INTEGER:
1252                         break;
1253
1254                 case PW_TYPE_INTEGER64:
1255                 default:
1256                         fr_pool_free(dval);
1257                         fr_strerror_printf("dict_addvalue: VALUEs cannot be defined for attributes of type '%s'",
1258                                    fr_int2str(dict_attr_types, da->type, "?Unknown?"));
1259                         return -1;
1260                 }
1261         } else {
1262                 value_fixup_t *fixup;
1263
1264                 fixup = (value_fixup_t *) malloc(sizeof(*fixup));
1265                 if (!fixup) {
1266                         fr_pool_free(dval);
1267                         fr_strerror_printf("dict_addvalue: out of memory");
1268                         return -1;
1269                 }
1270                 memset(fixup, 0, sizeof(*fixup));
1271
1272                 strlcpy(fixup->attrstr, attrstr, sizeof(fixup->attrstr));
1273                 fixup->dval = dval;
1274
1275                 /*
1276                  *      Insert to the head of the list.
1277                  */
1278                 fixup->next = value_fixup;
1279                 value_fixup = fixup;
1280
1281                 return 0;
1282         }
1283
1284         /*
1285          *      Add the value into the dictionary.
1286          */
1287         {
1288                 DICT_ATTR *tmp;
1289                 memcpy(&tmp, &dval, sizeof(tmp));
1290
1291                 if (!fr_hash_table_insert(values_byname, tmp)) {
1292                         if (da) {
1293                                 DICT_VALUE *old;
1294
1295                                 /*
1296                                  *      Suppress duplicates with the same
1297                                  *      name and value.  There are lots in
1298                                  *      dictionary.ascend.
1299                                  */
1300                                 old = dict_valbyname(da->attr, da->vendor, namestr);
1301                                 if (old && (old->value == dval->value)) {
1302                                         fr_pool_free(dval);
1303                                         return 0;
1304                                 }
1305                         }
1306
1307                         fr_pool_free(dval);
1308                         fr_strerror_printf("dict_addvalue: Duplicate value name %s for attribute %s", namestr, attrstr);
1309                         return -1;
1310                 }
1311         }
1312
1313         /*
1314          *      There are multiple VALUE's, keyed by attribute, so we
1315          *      take care of that here.
1316          */
1317         if (!fr_hash_table_replace(values_byvalue, dval)) {
1318                 fr_strerror_printf("dict_addvalue: Failed inserting value %s",
1319                            namestr);
1320                 return -1;
1321         }
1322
1323         return 0;
1324 }
1325
1326 static int sscanf_i(char const *str, unsigned int *pvalue)
1327 {
1328         int rcode = 0;
1329         int base = 10;
1330         static char const *tab = "0123456789";
1331
1332         if ((str[0] == '0') &&
1333             ((str[1] == 'x') || (str[1] == 'X'))) {
1334                 tab = "0123456789abcdef";
1335                 base = 16;
1336
1337                 str += 2;
1338         }
1339
1340         while (*str) {
1341                 char const *c;
1342
1343                 if (*str == '.') break;
1344
1345                 c = memchr(tab, tolower((int) *str), base);
1346                 if (!c) return 0;
1347
1348                 rcode *= base;
1349                 rcode += (c - tab);
1350                 str++;
1351         }
1352
1353         *pvalue = rcode;
1354         return 1;
1355 }
1356
1357
1358 /*
1359  *      Get the OID based on various pieces of information.
1360  *
1361  *      Remember, the packing format is weird.
1362  *
1363  *      Vendor  Attribute
1364  *      ------  ---------
1365  *      00VID   000000AA        normal VSA for vendor VID
1366  *      00VID   AABBCCDD        normal VSAs with TLVs
1367  *      EE000   000000AA        extended attr (241.1)
1368  *      EE000   AABBCCDD        extended attr with TLVs
1369  *      EEVID   000000AA        EVS with vendor VID, attr AAA
1370  *      EEVID   AABBCCDD        EVS with TLVs
1371  *
1372  *      <whew>!  Are we crazy, or what?
1373  */
1374 int dict_str2oid(char const *ptr, unsigned int *pvalue, unsigned int *pvendor,
1375                  int tlv_depth)
1376 {
1377         char const *p;
1378         unsigned int attr;
1379         DICT_ATTR const *da = NULL;
1380
1381 #ifdef WITH_DICT_OID_DEBUG
1382         fprintf(stderr, "PARSING %s tlv_depth %d pvalue %08x pvendor %08x\n", ptr,
1383                 tlv_depth, *pvalue, *pvendor);
1384 #endif
1385
1386         if (tlv_depth > fr_attr_max_tlv) {
1387                 fr_strerror_printf("Too many sub-attributes");
1388                 return -1;
1389         }
1390
1391         /*
1392          *      No vendor, try to do basic parsing.
1393          */
1394         if (!*pvendor && !*pvalue) {
1395                 /*
1396                  *      Can't call us with a pre-parsed value and no vendor.
1397                  */
1398                 if (tlv_depth != 0) {
1399                         fr_strerror_printf("Invalid call with wrong TLV depth %d", tlv_depth);
1400                         return -1;
1401                 }
1402
1403                 p = strchr(ptr, '.');
1404                 if (!sscanf_i(ptr, &attr)) {
1405                         fr_strerror_printf("Invalid data '%s' in attribute identifier", ptr);
1406                         return -1;
1407                 }
1408
1409                 /*
1410                  *      Normal attribute with no OID.  Return it.
1411                  */
1412                 if (!p) {
1413                         *pvalue = attr;
1414                         goto done;
1415                 }
1416
1417                 /*
1418                  *      We have an OID, look up the attribute to see what it is.
1419                  */
1420                 if (attr != PW_VENDOR_SPECIFIC) {
1421                         da = dict_attrbyvalue(attr, 0);
1422                         if (!da) {
1423                                 *pvalue = attr;
1424                                 goto done;
1425                         }
1426
1427                         /*
1428                          *      Standard attributes (including internal
1429                          *      ones) can have TLVs, but only for some
1430                          *      of them.
1431                          */
1432                         if (!da->flags.extended) {
1433 #ifdef PW_IPV6_6RD_CONFIGURATION
1434                                 if (attr == PW_IPV6_6RD_CONFIGURATION) {
1435                                         *pvalue = attr;
1436                                         ptr = p + 1;
1437                                         tlv_depth = 1;
1438                                         goto keep_parsing;
1439                                 }
1440 #endif
1441                                 fr_strerror_printf("Standard attributes cannot use OIDs");
1442                                 return -1;
1443                         }
1444
1445                         *pvendor = attr * FR_MAX_VENDOR;
1446                         ptr = p + 1;
1447                 } /* and fall through to re-parsing the VSA */
1448
1449                 /*
1450                  *      Look for the attribute number.
1451                  */
1452                 if (!sscanf_i(ptr, &attr)) {
1453                         fr_strerror_printf("Invalid data '%s' in attribute identifier", ptr);
1454                         return -1;
1455                 }
1456
1457                 p = strchr(ptr, '.');
1458
1459                 /*
1460                  *      Handle VSAs.  Either in the normal space, or in the extended space.
1461                  */
1462                 if (attr == PW_VENDOR_SPECIFIC) {
1463                         if (!p) {
1464                                 *pvalue = attr;
1465                                 goto done;
1466                         }
1467                         ptr = p + 1;
1468
1469                         if (!sscanf_i(ptr, &attr)) {
1470                                 fr_strerror_printf("Invalid data '%s' in vendor identifier", ptr);
1471                                 return -1;
1472                         }
1473
1474                         p = strchr(ptr, '.');
1475                         if (!p) {
1476                                 fr_strerror_printf("Cannot define VENDOR in an ATTRIBUTE");
1477                                 return -1;
1478                         }
1479                         ptr = p + 1;
1480
1481                         *pvendor |= attr;
1482                 } else {
1483                         *pvalue = attr;
1484                 }
1485         } /* fall through to processing an OID with pre-defined *pvendor and *pvalue */
1486
1487 keep_parsing:
1488 #ifdef WITH_DICT_OID_DEBUG
1489         fprintf(stderr, "KEEP PARSING %s tlv_depth %d pvalue %08x pvendor %08x\n", ptr,
1490                 tlv_depth, *pvalue, *pvendor);
1491 #endif
1492
1493         /*
1494          *      Check the vendor.  Only RFC format attributes can have TLVs.
1495          */
1496         if (*pvendor) {
1497                 DICT_VENDOR const *dv = NULL;
1498
1499                 dv = dict_vendorbyvalue(*pvendor);
1500                 if (dv && (dv->type != 1)) {
1501                         if (*pvalue || (tlv_depth != 0)) {
1502                                 fr_strerror_printf("Attribute cannot have TLVs");
1503                                 return -1;
1504                         }
1505
1506                         if (!sscanf_i(ptr, &attr)) {
1507                                 fr_strerror_printf("Invalid data '%s' in attribute identifier", ptr);
1508                                 return -1;
1509                         }
1510
1511                         if ((dv->type < 3) && (attr > (unsigned int) (1 << (8 * dv->type)))) {
1512                                 fr_strerror_printf("Number '%s' out of allowed range in attribute identifier", ptr);
1513                                 return -1;
1514                         }
1515                         
1516                         *pvalue = attr;
1517
1518 #ifdef WITH_DHCP
1519                         /*
1520                          *      DHCP attributes can have TLVs. <sigh>
1521                          */
1522                         if (*pvendor == 54) goto dhcp_skip;
1523 #endif
1524                         goto done;
1525                 }
1526         }
1527
1528         /*
1529          *      Parse the rest of the TLVs.
1530          */
1531         while (tlv_depth <= fr_attr_max_tlv) {
1532 #ifdef WITH_DICT_OID_DEBUG
1533                 fprintf(stderr, "TLV  PARSING %s tlv_depth %d pvalue %08x pvendor %08x\n", ptr,
1534                         tlv_depth, *pvalue, *pvendor);
1535 #endif
1536
1537                 if (!sscanf_i(ptr, &attr)) {
1538                         fr_strerror_printf("Invalid data '%s' in attribute identifier", ptr);
1539                         return -1;
1540                 }
1541
1542                 if (attr > fr_attr_mask[tlv_depth]) {
1543                         fr_strerror_printf("Number '%s' out of allowed range in attribute identifier", ptr);
1544                         return -1;
1545                 }
1546
1547                 attr <<= fr_attr_shift[tlv_depth];
1548                 *pvalue |= attr;
1549
1550 #ifdef WITH_DHCP
1551         dhcp_skip:
1552 #endif
1553                 p = strchr(ptr, '.');
1554                 if (!p) break;
1555
1556                 ptr = p + 1;
1557                 tlv_depth++;
1558         }
1559
1560 done:
1561 #ifdef WITH_DICT_OID_DEBUG
1562         fprintf(stderr, "RETURNING %08x %08x\n", *pvalue, *pvendor);
1563 #endif
1564         return 0;
1565 }
1566
1567
1568 /*
1569  *      Process the ATTRIBUTE command
1570  */
1571 static int process_attribute(char const* fn, int const line,
1572                              unsigned int block_vendor,
1573                              DICT_ATTR const *block_tlv, int tlv_depth,
1574                              char **argv, int argc)
1575 {
1576         int             oid = 0;
1577         unsigned int    vendor = 0;
1578         unsigned int    value;
1579         int             type;
1580         unsigned int    length;
1581         ATTR_FLAGS      flags;
1582         char            *p;
1583
1584         if ((argc < 3) || (argc > 4)) {
1585                 fr_strerror_printf("dict_init: %s[%d]: invalid ATTRIBUTE line",
1586                         fn, line);
1587                 return -1;
1588         }
1589
1590         /*
1591          *      Dictionaries need to have real names, not shitty ones.
1592          */
1593         if (strncmp(argv[0], "Attr-", 5) == 0) {
1594                 fr_strerror_printf("dict_init: %s[%d]: Invalid attribute name",
1595                                    fn, line);
1596                 return -1;
1597         }
1598
1599         memset(&flags, 0, sizeof(flags));
1600
1601         /*
1602          *      Look for OIDs before doing anything else.
1603          */
1604         if (strchr(argv[1], '.') != NULL) oid = 1;
1605
1606         {
1607                 DICT_ATTR const *da;
1608
1609                 vendor = block_vendor;
1610
1611                 if (!block_tlv) {
1612                         value = 0;
1613                 } else {
1614                         value = block_tlv->attr;
1615                 }
1616
1617                 /*
1618                  *      Parse OID.
1619                  */
1620                 if (dict_str2oid(argv[1], &value, &vendor, tlv_depth) < 0) {
1621                         char buffer[256];
1622
1623                         strlcpy(buffer, fr_strerror(), sizeof(buffer));
1624
1625                         fr_strerror_printf("dict_init: %s[%d]: Invalid attribute identifier: %s", fn, line, buffer);
1626                         return -1;
1627                 }
1628                 block_vendor = vendor;
1629
1630                 if (oid) {
1631                         /*
1632                          *      Set the flags based on the parents flags.
1633                          */
1634                         da = dict_parent(value, vendor);
1635                         if (!da) {
1636                                 fr_strerror_printf("dict_init: %s[%d]: Parent attribute for %08x,%08x is undefined.", fn, line, value, vendor);
1637                                 return -1;
1638                         }
1639
1640                         flags.extended = da->flags.extended;
1641                         flags.long_extended = da->flags.long_extended;
1642                         flags.evs = da->flags.evs;
1643                         if (da->flags.has_tlv) flags.is_tlv = 1;
1644                 }
1645         }
1646
1647         if (strncmp(argv[2], "octets[", 7) != 0) {
1648                 /*
1649                  *      find the type of the attribute.
1650                  */
1651                 type = fr_str2int(dict_attr_types, argv[2], -1);
1652                 if (type < 0) {
1653                         fr_strerror_printf("dict_init: %s[%d]: invalid type \"%s\"",
1654                                            fn, line, argv[2]);
1655                         return -1;
1656                 }
1657
1658         } else {
1659                 type = PW_TYPE_OCTETS;
1660
1661                 p = strchr(argv[2] + 7, ']');
1662                 if (!p) {
1663                         fr_strerror_printf("dict_init: %s[%d]: Invalid format for octets", fn, line);
1664                         return -1;
1665                 }
1666
1667                 *p = 0;
1668
1669                 if (!sscanf_i(argv[2] + 7, &length)) {
1670                         fr_strerror_printf("dict_init: %s[%d]: invalid length", fn, line);
1671                         return -1;
1672                 }
1673
1674                 if ((length == 0) || (length > 253)) {
1675                         fr_strerror_printf("dict_init: %s[%d]: invalid length", fn, line);
1676                         return -1;
1677                 }
1678
1679                 flags.length = length;
1680         }
1681
1682         /*
1683          *      Parse options.
1684          */
1685         if (argc >= 4) {
1686                 char *key, *next, *last;
1687
1688                 /*
1689                  *      Keep it real.
1690                  */
1691                 if (flags.extended) {
1692                         fr_strerror_printf("dict_init: %s[%d]: Extended attributes cannot use flags", fn, line);
1693                         return -1;
1694                 }
1695
1696                 key = argv[3];
1697                 do {
1698                         next = strchr(key, ',');
1699                         if (next) *(next++) = '\0';
1700
1701                         /*
1702                          *      Boolean flag, means this is a tagged
1703                          *      attribute.
1704                          */
1705                         if ((strcmp(key, "has_tag") == 0) || (strcmp(key, "has_tag=1") == 0)) {
1706                                 flags.has_tag = 1;
1707
1708                         /*
1709                          *      Encryption method, defaults to 0 (none).
1710                          *      Currently valid is just type 2,
1711                          *      Tunnel-Password style, which can only
1712                          *      be applied to strings.
1713                          */
1714                         } else if (strncmp(key, "encrypt=", 8) == 0) {
1715                                 flags.encrypt = strtol(key + 8, &last, 0);
1716                                 if (*last) {
1717                                         fr_strerror_printf("dict_init: %s[%d] invalid option %s",
1718                                                            fn, line, key);
1719                                         return -1;
1720                                 }
1721
1722                                 if ((flags.encrypt == FLAG_ENCRYPT_ASCEND_SECRET) &&
1723                                     (type != PW_TYPE_STRING)) {
1724                                         fr_strerror_printf("dict_init: %s[%d] Only \"string\" types can have the "
1725                                                            "\"encrypt=3\" flag set", fn, line);
1726                                         return -1;
1727                                 }
1728
1729                         } else if (strncmp(key, "array", 6) == 0) {
1730                                 flags.array = 1;
1731
1732                                 switch (type) {
1733                                 case PW_TYPE_IPV4_ADDR:
1734                                 case PW_TYPE_IPV6_ADDR:
1735                                 case PW_TYPE_BYTE:
1736                                 case PW_TYPE_SHORT:
1737                                 case PW_TYPE_INTEGER:
1738                                 case PW_TYPE_DATE:
1739                                 case PW_TYPE_STRING:
1740                                         break;
1741
1742                                 default:
1743                                         fr_strerror_printf("dict_init: %s[%d] \"%s\" type cannot have the "
1744                                                            "\"array\" flag set",
1745                                                            fn, line,
1746                                                            fr_int2str(dict_attr_types, type, "<UNKNOWN>"));
1747                                         return -1;
1748                                 }
1749
1750                         } else if (strncmp(key, "concat", 7) == 0) {
1751                                 flags.concat = 1;
1752
1753                                 if (type != PW_TYPE_OCTETS) {
1754                                         fr_strerror_printf("dict_init: %s[%d] Only \"octets\" type can have the "
1755                                                            "\"concat\" flag set", fn, line);
1756                                         return -1;
1757                                 }
1758
1759                         } else if (strncmp(key, "virtual", 8) == 0) {
1760                                 flags.virtual = 1;
1761
1762                                 if (vendor != 0) {
1763                                         fr_strerror_printf("dict_init: %s[%d] VSAs cannot have the \"virtual\" "
1764                                                            "flag set", fn, line);
1765                                         return -1;
1766                                 }
1767
1768                                 if (value < 256) {
1769                                         fr_strerror_printf("dict_init: %s[%d] Standard attributes cannot "
1770                                                            "have the \"virtual\" flag set", fn, line);
1771                                         return -1;
1772                                 }
1773
1774                         /*
1775                          *      The only thing is the vendor name,
1776                          *      and it's a known name: allow it.
1777                          */
1778                         } else if ((key == argv[3]) && !next) {
1779                                 if (oid) {
1780                                         fr_strerror_printf("dict_init: %s[%d] New-style attributes cannot use "
1781                                                            "a vendor flag", fn, line);
1782                                         return -1;
1783                                 }
1784
1785                                 if (block_vendor) {
1786                                         fr_strerror_printf("dict_init: %s[%d] Vendor flag inside of \"BEGIN-VENDOR\" "
1787                                                            "is not allowed", fn, line);
1788                                         return -1;
1789                                 }
1790
1791                                 vendor = dict_vendorbyname(key);
1792                                 if (!vendor) goto unknown;
1793                                 break;
1794
1795                         } else {
1796                         unknown:
1797                                 fr_strerror_printf("dict_init: %s[%d]: unknown option \"%s\"", fn, line, key);
1798                                 return -1;
1799                         }
1800
1801                         key = next;
1802                         if (key && !*key) break;
1803                 } while (key);
1804         }
1805
1806         if (block_vendor) vendor = block_vendor;
1807
1808         /*
1809          *      Special checks for tags, they make our life much more
1810          *      difficult.
1811          */
1812         if (flags.has_tag) {
1813                 /*
1814                  *      Only string, octets, and integer can be tagged.
1815                  */
1816                 switch (type) {
1817                 case PW_TYPE_STRING:
1818                 case PW_TYPE_INTEGER:
1819                         break;
1820
1821                 default:
1822                         fr_strerror_printf("dict_init: %s[%d]: Attributes of type %s cannot be tagged.",
1823                                    fn, line,
1824                                    fr_int2str(dict_attr_types, type, "?Unknown?"));
1825                         return -1;
1826                 }
1827         }
1828
1829         if (type == PW_TYPE_TLV) {
1830                 if (vendor && (vendor < FR_MAX_VENDOR)
1831 #ifdef WITH_DHCP
1832                     && (vendor != DHCP_MAGIC_VENDOR)
1833 #endif
1834                         ) {
1835                         DICT_VENDOR *dv;
1836
1837                         dv = dict_vendorbyvalue(vendor);
1838                         if (!dv || (dv->type != 1) || (dv->length != 1)) {
1839                                 fr_strerror_printf("dict_init: %s[%d]: Type \"tlv\" can only be for \"format=1,1\".",
1840                                                    fn, line);
1841                                 return -1;
1842                         }
1843
1844                 }
1845                 flags.has_tlv = 1;
1846         }
1847
1848         if (block_tlv) {
1849                 /*
1850                  *      TLV's can be only one octet.
1851                  */
1852                 if ((value == 0) || ((value & ~fr_attr_mask[tlv_depth]) != 0)) {
1853                         fr_strerror_printf( "dict_init: %s[%d]: sub-tlv has invalid attribute number",
1854                                             fn, line);
1855                         return -1;
1856                 }
1857
1858                 /*
1859                  *      Shift the value left.
1860                  */
1861                 value <<= fr_attr_shift[tlv_depth];
1862                 value |= block_tlv->attr;
1863                 flags.is_tlv = 1;
1864         }
1865
1866 #ifdef WITH_DICTIONARY_WARNINGS
1867         /*
1868          *      Hack to help us discover which vendors have illegal
1869          *      attributes.
1870          */
1871         if (!vendor && (value < 256) &&
1872             !strstr(fn, "rfc") && !strstr(fn, "illegal")) {
1873                 fprintf(stderr, "WARNING: Illegal Attribute %s in %s\n",
1874                         argv[0], fn);
1875         }
1876 #endif
1877
1878         /*
1879          *      Add it in.
1880          */
1881         if (dict_addattr(argv[0], value, vendor, type, flags) < 0) {
1882                 char buffer[256];
1883
1884                 strlcpy(buffer, fr_strerror(), sizeof(buffer));
1885
1886                 fr_strerror_printf("dict_init: %s[%d]: %s",
1887                                    fn, line, buffer);
1888                 return -1;
1889         }
1890
1891         return 0;
1892 }
1893
1894
1895 /*
1896  *      Process the VALUE command
1897  */
1898 static int process_value(char const* fn, int const line, char **argv,
1899                          int argc)
1900 {
1901         unsigned int    value;
1902
1903         if (argc != 3) {
1904                 fr_strerror_printf("dict_init: %s[%d]: invalid VALUE line",
1905                         fn, line);
1906                 return -1;
1907         }
1908         /*
1909          *      For Compatibility, skip "Server-Config"
1910          */
1911         if (strcasecmp(argv[0], "Server-Config") == 0)
1912                 return 0;
1913
1914         /*
1915          *      Validate all entries
1916          */
1917         if (!sscanf_i(argv[2], &value)) {
1918                 fr_strerror_printf("dict_init: %s[%d]: invalid value",
1919                         fn, line);
1920                 return -1;
1921         }
1922
1923         if (dict_addvalue(argv[1], argv[0], value) < 0) {
1924                 char buffer[256];
1925
1926                 strlcpy(buffer, fr_strerror(), sizeof(buffer));
1927
1928                 fr_strerror_printf("dict_init: %s[%d]: %s",
1929                                    fn, line, buffer);
1930                 return -1;
1931         }
1932
1933         return 0;
1934 }
1935
1936
1937 /*
1938  *      Process the VALUE-ALIAS command
1939  *
1940  *      This allows VALUE mappings to be shared among multiple
1941  *      attributes.
1942  */
1943 static int process_value_alias(char const* fn, int const line, char **argv,
1944                                int argc)
1945 {
1946         DICT_ATTR const *my_da, *da;
1947         DICT_VALUE *dval;
1948
1949         if (argc != 2) {
1950                 fr_strerror_printf("dict_init: %s[%d]: invalid VALUE-ALIAS line",
1951                         fn, line);
1952                 return -1;
1953         }
1954
1955         my_da = dict_attrbyname(argv[0]);
1956         if (!my_da) {
1957                 fr_strerror_printf("dict_init: %s[%d]: ATTRIBUTE \"%s\" does not exist",
1958                            fn, line, argv[1]);
1959                 return -1;
1960         }
1961
1962         if (my_da->flags.has_value_alias) {
1963                 fr_strerror_printf("dict_init: %s[%d]: Cannot add VALUE-ALIAS to ATTRIBUTE \"%s\" with pre-existing VALUE-ALIAS",
1964                            fn, line, argv[0]);
1965                 return -1;
1966         }
1967
1968         da = dict_attrbyname(argv[1]);
1969         if (!da) {
1970                 fr_strerror_printf("dict_init: %s[%d]: Cannot find ATTRIBUTE \"%s\" for alias",
1971                            fn, line, argv[1]);
1972                 return -1;
1973         }
1974
1975         if (da->flags.has_value_alias) {
1976                 fr_strerror_printf("dict_init: %s[%d]: Cannot add VALUE-ALIAS to ATTRIBUTE \"%s\" which itself has a VALUE-ALIAS",
1977                            fn, line, argv[1]);
1978                 return -1;
1979         }
1980
1981         if (my_da->type != da->type) {
1982                 fr_strerror_printf("dict_init: %s[%d]: Cannot add VALUE-ALIAS between attributes of differing type",
1983                            fn, line);
1984                 return -1;
1985         }
1986
1987         if ((dval = fr_pool_alloc(sizeof(*dval))) == NULL) {
1988                 fr_strerror_printf("dict_addvalue: out of memory");
1989                 return -1;
1990         }
1991
1992         dval->name[0] = '\0';   /* empty name */
1993         dval->attr = my_da->attr;
1994         dval->vendor = my_da->vendor;
1995         dval->value = da->attr;
1996
1997         if (!fr_hash_table_insert(values_byname, dval)) {
1998                 fr_strerror_printf("dict_init: %s[%d]: Error create alias",
1999                            fn, line);
2000                 fr_pool_free(dval);
2001                 return -1;
2002         }
2003
2004         return 0;
2005 }
2006
2007
2008 static int parse_format(char const *fn, int line, char const *format, int *pvalue, int *ptype, int *plength, bool *pcontinuation)
2009 {
2010         char const *p;
2011         int type, length;
2012         bool continuation = false;
2013
2014         if (strncasecmp(format, "format=", 7) != 0) {
2015                 fr_strerror_printf("dict_init: %s[%d]: Invalid format for VENDOR.  Expected \"format=\", got \"%s\"",
2016                                    fn, line, format);
2017                 return -1;
2018         }
2019
2020         p = format + 7;
2021         if ((strlen(p) < 3) ||
2022             !isdigit((int) p[0]) ||
2023             (p[1] != ',') ||
2024             !isdigit((int) p[2]) ||
2025             (p[3] && (p[3] != ','))) {
2026                 fr_strerror_printf("dict_init: %s[%d]: Invalid format for VENDOR.  Expected text like \"1,1\", got \"%s\"",
2027                                    fn, line, p);
2028                 return -1;
2029         }
2030
2031         type = (int) (p[0] - '0');
2032         length = (int) (p[2] - '0');
2033
2034         if ((type != 1) && (type != 2) && (type != 4)) {
2035                 fr_strerror_printf("dict_init: %s[%d]: invalid type value %d for VENDOR",
2036                                    fn, line, type);
2037                 return -1;
2038         }
2039
2040         if ((length != 0) && (length != 1) && (length != 2)) {
2041                 fr_strerror_printf("dict_init: %s[%d]: invalid length value %d for VENDOR",
2042                                    fn, line, length);
2043                 return -1;
2044         }
2045
2046         if (p[3] == ',') {
2047                 if (!p[4]) {
2048                         fr_strerror_printf("dict_init: %s[%d]: Invalid format for VENDOR.  Expected text like \"1,1\", got \"%s\"",
2049                                            fn, line, p);
2050                         return -1;
2051                 }
2052
2053                 if ((p[4] != 'c') ||
2054                     (p[5] != '\0')) {
2055                         fr_strerror_printf("dict_init: %s[%d]: Invalid format for VENDOR.  Expected text like \"1,1\", got \"%s\"",
2056                                            fn, line, p);
2057                         return -1;
2058                 }
2059                 continuation = true;
2060
2061                 if ((*pvalue != VENDORPEC_WIMAX) ||
2062                     (type != 1) || (length != 1)) {
2063                         fr_strerror_printf("dict_init: %s[%d]: Only WiMAX VSAs can have continuations",
2064                                            fn, line);
2065                         return -1;
2066                 }
2067         }
2068
2069         *ptype = type;
2070         *plength = length;
2071         *pcontinuation = continuation;
2072         return 0;
2073 }
2074
2075
2076 /*
2077  *      Process the VENDOR command
2078  */
2079 static int process_vendor(char const* fn, int const line, char **argv,
2080                           int argc)
2081 {
2082         int             value;
2083         int             type, length;
2084         bool            continuation = false;
2085         DICT_VENDOR     *dv;
2086
2087         if ((argc < 2) || (argc > 3)) {
2088                 fr_strerror_printf( "dict_init: %s[%d] invalid VENDOR entry",
2089                             fn, line);
2090                 return -1;
2091         }
2092
2093         /*
2094          *       Validate all entries
2095          */
2096         if (!isdigit((int) argv[1][0])) {
2097                 fr_strerror_printf("dict_init: %s[%d]: invalid value",
2098                         fn, line);
2099                 return -1;
2100         }
2101         value = atoi(argv[1]);
2102
2103         /* Create a new VENDOR entry for the list */
2104         if (dict_addvendor(argv[0], value) < 0) {
2105                 char buffer[256];
2106
2107                 strlcpy(buffer, fr_strerror(), sizeof(buffer));
2108
2109                 fr_strerror_printf("dict_init: %s[%d]: %s",
2110                            fn, line, buffer);
2111                 return -1;
2112         }
2113
2114         /*
2115          *      Look for a format statement.  Allow it to over-ride the hard-coded formats below.
2116          */
2117         if (argc == 3) {
2118                 if (parse_format(fn, line, argv[2], &value, &type, &length, &continuation) < 0) {
2119                         return -1;
2120                 }
2121
2122         } else if (value == VENDORPEC_USR) { /* catch dictionary screw-ups */
2123                 type = 4;
2124                 length = 0;
2125
2126         } else if (value == VENDORPEC_LUCENT) {
2127                 type = 2;
2128                 length = 1;
2129
2130         } else if (value == VENDORPEC_STARENT) {
2131                 type = 2;
2132                 length = 2;
2133
2134         } else {
2135                 type = length = 1;
2136         }
2137
2138         dv = dict_vendorbyvalue(value);
2139         if (!dv) {
2140                 fr_strerror_printf("dict_init: %s[%d]: Failed adding format for VENDOR",
2141                                    fn, line);
2142                 return -1;
2143         }
2144
2145         dv->type = type;
2146         dv->length = length;
2147         dv->flags = continuation;
2148
2149         return 0;
2150 }
2151
2152 /*
2153  *      String split routine.  Splits an input string IN PLACE
2154  *      into pieces, based on spaces.
2155  */
2156 int str2argv(char *str, char **argv, int max_argc)
2157 {
2158         int argc = 0;
2159
2160         while (*str) {
2161                 if (argc >= max_argc) break;
2162
2163                 /*
2164                  *      Chop out comments early.
2165                  */
2166                 if (*str == '#') {
2167                         *str = '\0';
2168                         break;
2169                 }
2170
2171                 while ((*str == ' ') ||
2172                        (*str == '\t') ||
2173                        (*str == '\r') ||
2174                        (*str == '\n')) *(str++) = '\0';
2175
2176                 if (!*str) break;
2177
2178                 argv[argc] = str;
2179                 argc++;
2180
2181                 while (*str &&
2182                        (*str != ' ') &&
2183                        (*str != '\t') &&
2184                        (*str != '\r') &&
2185                        (*str != '\n')) str++;
2186         }
2187
2188         return argc;
2189 }
2190
2191 static int my_dict_init(char const *parent, char const *filename,
2192                         char const *src_file, int src_line);
2193
2194 int dict_read(char const *dir, char const *filename)
2195 {
2196         if (!attributes_byname) {
2197                 fr_strerror_printf("Must call dict_init() before dict_read()");
2198                 return -1;
2199         }
2200
2201         return my_dict_init(dir, filename, NULL, 0);
2202 }
2203
2204
2205 #define MAX_ARGV (16)
2206
2207 /*
2208  *      Initialize the dictionary.
2209  */
2210 static int my_dict_init(char const *parent, char const *filename,
2211                         char const *src_file, int src_line)
2212 {
2213         FILE    *fp;
2214         char    dir[256], fn[256];
2215         char    buf[256];
2216         char    *p;
2217         int     line = 0;
2218         unsigned int    vendor;
2219         unsigned int    block_vendor;
2220         struct stat statbuf;
2221         char    *argv[MAX_ARGV];
2222         int     argc;
2223         DICT_ATTR const *da, *block_tlv[MAX_TLV_NEST + 1];
2224         int     which_block_tlv = 0;
2225
2226         block_tlv[0] = NULL;
2227         block_tlv[1] = NULL;
2228         block_tlv[2] = NULL;
2229         block_tlv[3] = NULL;
2230
2231         if ((strlen(parent) + 3 + strlen(filename)) > sizeof(dir)) {
2232                 fr_strerror_printf("dict_init: filename name too long");
2233                 return -1;
2234         }
2235
2236         /*
2237          *      If it's an absolute dir, forget the parent dir,
2238          *      and remember the new one.
2239          *
2240          *      If it's a relative dir, tack on the current filename
2241          *      to the parent dir.  And use that.
2242          */
2243         if (!FR_DIR_IS_RELATIVE(filename)) {
2244                 strlcpy(dir, filename, sizeof(dir));
2245                 p = strrchr(dir, FR_DIR_SEP);
2246                 if (p) {
2247                         p[1] = '\0';
2248                 } else {
2249                         strlcat(dir, "/", sizeof(dir));
2250                 }
2251
2252                 strlcpy(fn, filename, sizeof(fn));
2253         } else {
2254                 strlcpy(dir, parent, sizeof(dir));
2255                 p = strrchr(dir, FR_DIR_SEP);
2256                 if (p) {
2257                         if (p[1]) strlcat(dir, "/", sizeof(dir));
2258                 } else {
2259                         strlcat(dir, "/", sizeof(dir));
2260                 }
2261                 strlcat(dir, filename, sizeof(dir));
2262                 p = strrchr(dir, FR_DIR_SEP);
2263                 if (p) {
2264                         p[1] = '\0';
2265                 } else {
2266                         strlcat(dir, "/", sizeof(dir));
2267                 }
2268
2269                 p = strrchr(filename, FR_DIR_SEP);
2270                 if (p) {
2271                         snprintf(fn, sizeof(fn), "%s%s", dir, p);
2272                 } else {
2273                         snprintf(fn, sizeof(fn), "%s%s", dir, filename);
2274                 }
2275
2276         }
2277
2278         /*
2279          *      Check if we've loaded this file before.  If so, ignore it.
2280          */
2281         p = strrchr(fn, FR_DIR_SEP);
2282         if (p) {
2283                 *p = '\0';
2284                 if (dict_stat_check(fn, p + 1)) {
2285                         *p = FR_DIR_SEP;
2286                         return 0;
2287                 }
2288                 *p = FR_DIR_SEP;
2289         }
2290
2291         if ((fp = fopen(fn, "r")) == NULL) {
2292                 if (!src_file) {
2293                         fr_strerror_printf("dict_init: Couldn't open dictionary \"%s\": %s",
2294                                    fn, fr_syserror(errno));
2295                 } else {
2296                         fr_strerror_printf("dict_init: %s[%d]: Couldn't open dictionary \"%s\": %s",
2297                                    src_file, src_line, fn, fr_syserror(errno));
2298                 }
2299                 return -2;
2300         }
2301
2302         stat(fn, &statbuf); /* fopen() guarantees this will succeed */
2303         if (!S_ISREG(statbuf.st_mode)) {
2304                 fclose(fp);
2305                 fr_strerror_printf("dict_init: Dictionary \"%s\" is not a regular file",
2306                            fn);
2307                 return -1;
2308         }
2309
2310         /*
2311          *      Globally writable dictionaries means that users can control
2312          *      the server configuration with little difficulty.
2313          */
2314 #ifdef S_IWOTH
2315         if ((statbuf.st_mode & S_IWOTH) != 0) {
2316                 fclose(fp);
2317                 fr_strerror_printf("dict_init: Dictionary \"%s\" is globally writable.  Refusing to start due to insecure configuration.",
2318                            fn);
2319                 return -1;
2320         }
2321 #endif
2322
2323         dict_stat_add(&statbuf);
2324
2325         /*
2326          *      Seed the random pool with data.
2327          */
2328         fr_rand_seed(&statbuf, sizeof(statbuf));
2329
2330         block_vendor = 0;
2331
2332         while (fgets(buf, sizeof(buf), fp) != NULL) {
2333                 line++;
2334                 if (buf[0] == '#' || buf[0] == 0 ||
2335                     buf[0] == '\n' || buf[0] == '\r')
2336                         continue;
2337
2338                 /*
2339                  *  Comment characters should NOT be appearing anywhere but
2340                  *  as start of a comment;
2341                  */
2342                 p = strchr(buf, '#');
2343                 if (p) *p = '\0';
2344
2345                 argc = str2argv(buf, argv, MAX_ARGV);
2346                 if (argc == 0) continue;
2347
2348                 if (argc == 1) {
2349                         fr_strerror_printf( "dict_init: %s[%d] invalid entry",
2350                                     fn, line);
2351                         fclose(fp);
2352                         return -1;
2353                 }
2354
2355                 /*
2356                  *      Process VALUE lines.
2357                  */
2358                 if (strcasecmp(argv[0], "VALUE") == 0) {
2359                         if (process_value(fn, line,
2360                                           argv + 1, argc - 1) == -1) {
2361                                 fclose(fp);
2362                                 return -1;
2363                         }
2364                         continue;
2365                 }
2366
2367                 /*
2368                  *      Perhaps this is an attribute.
2369                  */
2370                 if (strcasecmp(argv[0], "ATTRIBUTE") == 0) {
2371                         if (process_attribute(fn, line, block_vendor,
2372                                               block_tlv[which_block_tlv],
2373                                               which_block_tlv,
2374                                               argv + 1, argc - 1) == -1) {
2375                                 fclose(fp);
2376                                 return -1;
2377                         }
2378                         continue;
2379                 }
2380
2381                 /*
2382                  *      See if we need to import another dictionary.
2383                  */
2384                 if (strcasecmp(argv[0], "$INCLUDE") == 0) {
2385                         if (my_dict_init(dir, argv[1], fn, line) < 0) {
2386                                 fclose(fp);
2387                                 return -1;
2388                         }
2389                         continue;
2390                 } /* $INCLUDE */
2391
2392                 /*
2393                  *      Optionally include a dictionary
2394                  */
2395                 if (strcasecmp(argv[0], "$INCLUDE-") == 0) {
2396                         int rcode = my_dict_init(dir, argv[1], fn, line);
2397
2398                         if (rcode == -2) continue;
2399
2400                         if (rcode < 0) {
2401                                 fclose(fp);
2402                                 return -1;
2403                         }
2404                         continue;
2405                 } /* $INCLUDE- */
2406
2407                 if (strcasecmp(argv[0], "VALUE-ALIAS") == 0) {
2408                         if (process_value_alias(fn, line,
2409                                                 argv + 1, argc - 1) == -1) {
2410                                 fclose(fp);
2411                                 return -1;
2412                         }
2413                         continue;
2414                 }
2415
2416                 /*
2417                  *      Process VENDOR lines.
2418                  */
2419                 if (strcasecmp(argv[0], "VENDOR") == 0) {
2420                         if (process_vendor(fn, line,
2421                                            argv + 1, argc - 1) == -1) {
2422                                 fclose(fp);
2423                                 return -1;
2424                         }
2425                         continue;
2426                 }
2427
2428                 if (strcasecmp(argv[0], "BEGIN-TLV") == 0) {
2429                         if (argc != 2) {
2430                                 fr_strerror_printf(
2431                                 "dict_init: %s[%d] invalid BEGIN-TLV entry",
2432                                         fn, line);
2433                                 fclose(fp);
2434                                 return -1;
2435                         }
2436
2437                         da = dict_attrbyname(argv[1]);
2438                         if (!da) {
2439                                 fr_strerror_printf(
2440                                         "dict_init: %s[%d]: unknown attribute %s",
2441                                         fn, line, argv[1]);
2442                                 fclose(fp);
2443                                 return -1;
2444                         }
2445
2446                         if (da->type != PW_TYPE_TLV) {
2447                                 fr_strerror_printf(
2448                                         "dict_init: %s[%d]: attribute %s is not of type tlv",
2449                                         fn, line, argv[1]);
2450                                 fclose(fp);
2451                                 return -1;
2452                         }
2453
2454                         if (which_block_tlv >= MAX_TLV_NEST) {
2455                                 fr_strerror_printf(
2456                                         "dict_init: %s[%d]: TLVs are nested too deep",
2457                                         fn, line);
2458                                 fclose(fp);
2459                                 return -1;
2460                         }
2461
2462
2463                         block_tlv[++which_block_tlv] = da;
2464                         continue;
2465                 } /* BEGIN-TLV */
2466
2467                 if (strcasecmp(argv[0], "END-TLV") == 0) {
2468                         if (argc != 2) {
2469                                 fr_strerror_printf(
2470                                 "dict_init: %s[%d] invalid END-TLV entry",
2471                                         fn, line);
2472                                 fclose(fp);
2473                                 return -1;
2474                         }
2475
2476                         da = dict_attrbyname(argv[1]);
2477                         if (!da) {
2478                                 fr_strerror_printf(
2479                                         "dict_init: %s[%d]: unknown attribute %s",
2480                                         fn, line, argv[1]);
2481                                 fclose(fp);
2482                                 return -1;
2483                         }
2484
2485                         if (da != block_tlv[which_block_tlv]) {
2486                                 fr_strerror_printf(
2487                                         "dict_init: %s[%d]: END-TLV %s does not match any previous BEGIN-TLV",
2488                                         fn, line, argv[1]);
2489                                 fclose(fp);
2490                                 return -1;
2491                         }
2492                         block_tlv[which_block_tlv--] = NULL;
2493                         continue;
2494                 } /* END-VENDOR */
2495
2496                 if (strcasecmp(argv[0], "BEGIN-VENDOR") == 0) {
2497                         if (argc < 2) {
2498                                 fr_strerror_printf(
2499                                 "dict_init: %s[%d] invalid BEGIN-VENDOR entry",
2500                                         fn, line);
2501                                 fclose(fp);
2502                                 return -1;
2503                         }
2504
2505                         vendor = dict_vendorbyname(argv[1]);
2506                         if (!vendor) {
2507                                 fr_strerror_printf(
2508                                         "dict_init: %s[%d]: unknown vendor %s",
2509                                         fn, line, argv[1]);
2510                                 fclose(fp);
2511                                 return -1;
2512                         }
2513
2514                         block_vendor = vendor;
2515
2516                         /*
2517                          *      Check for extended attr VSAs
2518                          *
2519                          *      BEGIN-VENDOR foo format=Foo-Encapsulation-Attr
2520                          */
2521                         if (argc > 2) {
2522                                 if (strncmp(argv[2], "format=", 7) != 0) {
2523                                         fr_strerror_printf(
2524                                                 "dict_init: %s[%d]: Invalid format %s",
2525                                                 fn, line, argv[2]);
2526                                         fclose(fp);
2527                                         return -1;
2528                                 }
2529
2530                                 p = argv[2] + 7;
2531                                 da = dict_attrbyname(p);
2532                                 if (!da) {
2533                                         fr_strerror_printf("dict_init: %s[%d]: Invalid format for BEGIN-VENDOR: unknown attribute \"%s\"",
2534                                                            fn, line, p);
2535                                         fclose(fp);
2536                                         return -1;
2537                                 }
2538
2539                                 if (!da->flags.evs) {
2540                                         fr_strerror_printf("dict_init: %s[%d]: Invalid format for BEGIN-VENDOR.  Attribute \"%s\" is not of \"evs\" data type",
2541                                                            fn, line, p);
2542                                         fclose(fp);
2543                                         return -1;
2544                                 }
2545
2546                                 /*
2547                                  *      Pack the encapsulating
2548                                  *      attribute into the upper 8
2549                                  *      bits of the vendor ID
2550                                  */
2551                                 block_vendor |= da->vendor;
2552                         }
2553
2554                         continue;
2555                 } /* BEGIN-VENDOR */
2556
2557                 if (strcasecmp(argv[0], "END-VENDOR") == 0) {
2558                         if (argc != 2) {
2559                                 fr_strerror_printf(
2560                                 "dict_init: %s[%d] invalid END-VENDOR entry",
2561                                         fn, line);
2562                                 fclose(fp);
2563                                 return -1;
2564                         }
2565
2566                         vendor = dict_vendorbyname(argv[1]);
2567                         if (!vendor) {
2568                                 fr_strerror_printf(
2569                                         "dict_init: %s[%d]: unknown vendor %s",
2570                                         fn, line, argv[1]);
2571                                 fclose(fp);
2572                                 return -1;
2573                         }
2574
2575                         if (vendor != (block_vendor & (FR_MAX_VENDOR - 1))) {
2576                                 fr_strerror_printf(
2577                                         "dict_init: %s[%d]: END-VENDOR %s does not match any previous BEGIN-VENDOR",
2578                                         fn, line, argv[1]);
2579                                 fclose(fp);
2580                                 return -1;
2581                         }
2582                         block_vendor = 0;
2583                         continue;
2584                 } /* END-VENDOR */
2585
2586                 /*
2587                  *      Any other string: We don't recognize it.
2588                  */
2589                 fr_strerror_printf("dict_init: %s[%d] invalid keyword \"%s\"",
2590                            fn, line, argv[0]);
2591                 fclose(fp);
2592                 return -1;
2593         }
2594         fclose(fp);
2595         return 0;
2596 }
2597
2598
2599 /*
2600  *      Empty callback for hash table initialization.
2601  */
2602 static int null_callback(UNUSED void *ctx, UNUSED void *data)
2603 {
2604         return 0;
2605 }
2606
2607
2608 /*
2609  *      Initialize the directory, then fix the attr member of
2610  *      all attributes.
2611  */
2612 int dict_init(char const *dir, char const *fn)
2613 {
2614         /*
2615          *      Check if we need to change anything.  If not, don't do
2616          *      anything.
2617          */
2618         if (dict_stat_check(dir, fn)) {
2619                 return 0;
2620         }
2621
2622         /*
2623          *      Free the dictionaries, and the stat cache.
2624          */
2625         dict_free();
2626
2627         /*
2628          *      Create the table of vendor by name.   There MAY NOT
2629          *      be multiple vendors of the same name.
2630          *
2631          *      Each vendor is malloc'd, so the free function is free.
2632          */
2633         vendors_byname = fr_hash_table_create(dict_vendor_name_hash,
2634                                                 dict_vendor_name_cmp,
2635                                                 fr_pool_free);
2636         if (!vendors_byname) {
2637                 return -1;
2638         }
2639
2640         /*
2641          *      Create the table of vendors by value.  There MAY
2642          *      be vendors of the same value.  If there are, we
2643          *      pick the latest one.
2644          */
2645         vendors_byvalue = fr_hash_table_create(dict_vendor_value_hash,
2646                                                  dict_vendor_value_cmp,
2647                                                  fr_pool_free);
2648         if (!vendors_byvalue) {
2649                 return -1;
2650         }
2651
2652         /*
2653          *      Create the table of attributes by name.   There MAY NOT
2654          *      be multiple attributes of the same name.
2655          *
2656          *      Each attribute is malloc'd, so the free function is free.
2657          */
2658         attributes_byname = fr_hash_table_create(dict_attr_name_hash,
2659                                                    dict_attr_name_cmp,
2660                                                    fr_pool_free);
2661         if (!attributes_byname) {
2662                 return -1;
2663         }
2664
2665         /*
2666          *      Create the table of attributes by value.  There MAY
2667          *      be attributes of the same value.  If there are, we
2668          *      pick the latest one.
2669          */
2670         attributes_byvalue = fr_hash_table_create(dict_attr_value_hash,
2671                                                     dict_attr_value_cmp,
2672                                                     fr_pool_free);
2673         if (!attributes_byvalue) {
2674                 return -1;
2675         }
2676
2677         /*
2678          *      Horrible hacks for combo-IP.
2679          */
2680         attributes_combo = fr_hash_table_create(dict_attr_combo_hash,
2681                                                 dict_attr_combo_cmp,
2682                                                 fr_pool_free);
2683         if (!attributes_combo) {
2684                 return -1;
2685         }
2686
2687         values_byname = fr_hash_table_create(dict_value_name_hash,
2688                                                dict_value_name_cmp,
2689                                                fr_pool_free);
2690         if (!values_byname) {
2691                 return -1;
2692         }
2693
2694         values_byvalue = fr_hash_table_create(dict_value_value_hash,
2695                                                 dict_value_value_cmp,
2696                                                 fr_pool_free);
2697         if (!values_byvalue) {
2698                 return -1;
2699         }
2700
2701         value_fixup = NULL;     /* just to be safe. */
2702
2703         if (my_dict_init(dir, fn, NULL, 0) < 0)
2704                 return -1;
2705
2706         if (value_fixup) {
2707                 DICT_ATTR const *a;
2708                 value_fixup_t *this, *next;
2709
2710                 for (this = value_fixup; this != NULL; this = next) {
2711                         next = this->next;
2712
2713                         a = dict_attrbyname(this->attrstr);
2714                         if (!a) {
2715                                 fr_strerror_printf(
2716                                         "dict_init: No ATTRIBUTE \"%s\" defined for VALUE \"%s\"",
2717                                         this->attrstr, this->dval->name);
2718                                 return -1; /* leak, but they should die... */
2719                         }
2720
2721                         this->dval->attr = a->attr;
2722
2723                         /*
2724                          *      Add the value into the dictionary.
2725                          */
2726                         if (!fr_hash_table_replace(values_byname,
2727                                                      this->dval)) {
2728                                 fr_strerror_printf("dict_addvalue: Duplicate value name %s for attribute %s", this->dval->name, a->name);
2729                                 return -1;
2730                         }
2731
2732                         /*
2733                          *      Allow them to use the old name, but
2734                          *      prefer the new name when printing
2735                          *      values.
2736                          */
2737                         if (!fr_hash_table_finddata(values_byvalue, this->dval)) {
2738                                 fr_hash_table_replace(values_byvalue,
2739                                                         this->dval);
2740                         }
2741                         free(this);
2742
2743                         /*
2744                          *      Just so we don't lose track of things.
2745                          */
2746                         value_fixup = next;
2747                 }
2748         }
2749
2750         /*
2751          *      Walk over all of the hash tables to ensure they're
2752          *      initialized.  We do this because the threads may perform
2753          *      lookups, and we don't want multi-threaded re-ordering
2754          *      of the table entries.  That would be bad.
2755          */
2756         fr_hash_table_walk(vendors_byname, null_callback, NULL);
2757         fr_hash_table_walk(vendors_byvalue, null_callback, NULL);
2758
2759         fr_hash_table_walk(attributes_byname, null_callback, NULL);
2760         fr_hash_table_walk(attributes_byvalue, null_callback, NULL);
2761
2762         fr_hash_table_walk(values_byvalue, null_callback, NULL);
2763         fr_hash_table_walk(values_byname, null_callback, NULL);
2764
2765         return 0;
2766 }
2767
2768 static size_t print_attr_oid(char *buffer, size_t size, unsigned int attr,
2769                              int dv_type)
2770 {
2771         int nest;
2772         size_t outlen;
2773         size_t len;
2774
2775         switch (dv_type) {
2776         default:
2777         case 1:
2778                 len = snprintf(buffer, size, "%u", attr & 0xff);
2779                 break;
2780
2781         case 4:
2782                 return snprintf(buffer, size, "%u", attr);
2783
2784         case 2:
2785                 return snprintf(buffer, size, "%u", attr & 0xffff);
2786
2787         }
2788
2789         if ((attr >> 8) == 0) return len;
2790
2791         outlen = len;
2792         buffer += len;
2793         size -= len;
2794
2795         for (nest = 1; nest <= fr_attr_max_tlv; nest++) {
2796                 if (((attr >> fr_attr_shift[nest]) & fr_attr_mask[nest]) == 0) break;
2797
2798                 len = snprintf(buffer, size, ".%u",
2799                                (attr >> fr_attr_shift[nest]) & fr_attr_mask[nest]);
2800
2801                 outlen = len;
2802                 buffer += len;
2803                 size -= len;
2804         }
2805
2806         return outlen;
2807 }
2808
2809 /** Free dynamically allocated (unknown attributes)
2810  *
2811  * If the da was dynamically allocated it will be freed, else the function
2812  * will return without doing anything.
2813  *
2814  * @param da to free.
2815  */
2816 void dict_attr_free(DICT_ATTR const **da)
2817 {
2818         DICT_ATTR **tmp;
2819
2820         if (!da || !*da) return;
2821
2822         /* Don't free real DAs */
2823         if (!(*da)->flags.is_unknown) {
2824                 return;
2825         }
2826
2827         memcpy(&tmp, &da, sizeof(*tmp));
2828         talloc_free(*tmp);
2829
2830         *tmp = NULL;
2831 }
2832
2833
2834 /** Initialises a dictionary attr for unknown attributes
2835  *
2836  * Initialises a dict attr for an unknown attribute/vendor/type without adding
2837  * it to dictionary pools/hashes.
2838  *
2839  * @param[in,out] da struct to initialise, must be at least DICT_ATTR_SIZE bytes.
2840  * @param[in] attr number.
2841  * @param[in] vendor number.
2842  * @return 0 on success.
2843  */
2844 int dict_unknown_from_fields(DICT_ATTR *da, unsigned int attr, unsigned int vendor)
2845 {
2846         char *p;
2847         int dv_type = 1;
2848         size_t len = 0;
2849         size_t bufsize = DICT_ATTR_MAX_NAME_LEN;
2850
2851         memset(da, 0, DICT_ATTR_SIZE);
2852
2853         da->attr = attr;
2854         da->vendor = vendor;
2855         da->type = PW_TYPE_OCTETS;
2856         da->flags.is_unknown = true;
2857         da->flags.is_pointer = true;
2858
2859         /*
2860          *      Unknown attributes of the "WiMAX" vendor get marked up
2861          *      as being for WiMAX.
2862          */
2863         if (vendor == VENDORPEC_WIMAX) {
2864                 da->flags.wimax = 1;
2865         }
2866
2867         p = da->name;
2868
2869         len = snprintf(p, bufsize, "Attr-");
2870         p += len;
2871         bufsize -= len;
2872
2873         if (vendor > FR_MAX_VENDOR) {
2874                 len = snprintf(p, bufsize, "%u.", vendor / FR_MAX_VENDOR);
2875                 p += len;
2876                 bufsize -= len;
2877                 vendor &= (FR_MAX_VENDOR) - 1;
2878         }
2879
2880         if (vendor) {
2881                 DICT_VENDOR *dv;
2882
2883                 /*
2884                  *      dv_type is the length of the vendor's type field
2885                  *      RFC 2865 never defined a mandatory length, so
2886                  *      different vendors have different length type fields.
2887                  */
2888                 dv = dict_vendorbyvalue(vendor);
2889                 if (dv) {
2890                         dv_type = dv->type;
2891                 }
2892                 len = snprintf(p, bufsize, "26.%u.", vendor);
2893
2894                 p += len;
2895                 bufsize -= len;
2896         }
2897
2898         print_attr_oid(p, bufsize , attr, dv_type);
2899
2900         return 0;
2901 }
2902
2903 /** Allocs a dictionary attr for unknown attributes
2904  *
2905  * Allocs a dict attr for an unknown attribute/vendor/type without adding
2906  * it to dictionary pools/hashes.
2907  *
2908  * @param[in] ctx to allocate DA in.
2909  * @param[in] attr number.
2910  * @param[in] vendor number.
2911  * @return 0 on success.
2912  */
2913 DICT_ATTR const *dict_unknown_afrom_fields(TALLOC_CTX *ctx, unsigned int attr, unsigned int vendor)
2914 {
2915         uint8_t *p;
2916         DICT_ATTR *da;
2917
2918         p = talloc_zero_array(ctx, uint8_t, DICT_ATTR_SIZE);
2919         if (!p) {
2920                 fr_strerror_printf("Out of memory");
2921                 return NULL;
2922         }
2923         da = (DICT_ATTR *) p;
2924         talloc_set_type(da, DICT_ATTR);
2925
2926         if (dict_unknown_from_fields(da, attr, vendor) < 0) {
2927                 talloc_free(p);
2928                 return NULL;
2929         }
2930
2931         return da;
2932 }
2933
2934 /** Create a DICT_ATTR from an ASCII attribute and value
2935  *
2936  * Where the attribute name is in the form:
2937  *  - Attr-%d
2938  *  - Attr-%d.%d.%d...
2939  *  - Vendor-%d-Attr-%d
2940  *  - VendorName-Attr-%d
2941  *
2942  * @param[in] da to initialise.
2943  * @param[in] name of attribute.
2944  * @return 0 on success -1 on failure.
2945  */
2946 int dict_unknown_from_str(DICT_ATTR *da, char const *name)
2947 {
2948         unsigned int    attr = 0, vendor = 0;
2949
2950         char const      *p = name;
2951         char            *q;
2952
2953         if (dict_valid_name(name) < 0) return -1;
2954
2955         /*
2956          *      Pull off vendor prefix first.
2957          */
2958         if (strncasecmp(p, "Attr-", 5) != 0) {
2959                 if (strncasecmp(p, "Vendor-", 7) == 0) {
2960                         vendor = (int) strtol(p + 7, &q, 10);
2961                         if ((vendor == 0) || (vendor > FR_MAX_VENDOR)) {
2962                                 fr_strerror_printf("Invalid vendor value in attribute name \"%s\"", name);
2963
2964                                 return -1;
2965                         }
2966
2967                         p = q;
2968
2969                 /* must be vendor name */
2970                 } else {
2971                         char buffer[256];
2972
2973                         q = strchr(p, '-');
2974
2975                         if (!q) {
2976                                 fr_strerror_printf("Invalid vendor name in attribute name \"%s\"", name);
2977                                 return -1;
2978                         }
2979
2980                         if ((size_t) (q - p) >= sizeof(buffer)) {
2981                                 fr_strerror_printf("Vendor name too long in attribute name \"%s\"", name);
2982
2983                                 return -1;
2984                         }
2985
2986                         memcpy(buffer, p, (q - p));
2987                         buffer[q - p] = '\0';
2988
2989                         vendor = dict_vendorbyname(buffer);
2990                         if (!vendor) {
2991                                 fr_strerror_printf("Unknown name \"%s\"", name);
2992
2993                                 return -1;
2994                         }
2995
2996                         p = q;
2997                 }
2998
2999                 if (*p != '-') {
3000                         fr_strerror_printf("Invalid text following vendor definition in attribute name \"%s\"", name);
3001
3002                         return -1;
3003                 }
3004                 p++;
3005         }
3006
3007         /*
3008          *      Attr-%d
3009          */
3010         if (strncasecmp(p, "Attr-", 5) != 0) {
3011                 fr_strerror_printf("Unknown attribute \"%s\"", name);
3012
3013                 return -1;
3014         }
3015
3016         /*
3017          *      Parse the OID, with a (possibly) pre-defined vendor.
3018          */
3019         if (dict_str2oid(p + 5, &attr, &vendor, 0) < 0) {
3020                 return -1;
3021         }
3022
3023         return dict_unknown_from_fields(da, attr, vendor);
3024 }
3025
3026 /** Create a DICT_ATTR from an ASCII attribute and value
3027  *
3028  * Where the attribute name is in the form:
3029  *  - Attr-%d
3030  *  - Attr-%d.%d.%d...
3031  *  - Vendor-%d-Attr-%d
3032  *  - VendorName-Attr-%d
3033  *
3034  * @param[in] ctx to alloc new attribute in.
3035  * @param[in] name of attribute.
3036  * @return 0 on success -1 on failure.
3037  */
3038 DICT_ATTR const *dict_unknown_afrom_str(TALLOC_CTX *ctx, char const *name)
3039 {
3040         uint8_t *p;
3041         DICT_ATTR *da;
3042
3043         p = talloc_zero_array(ctx, uint8_t, DICT_ATTR_SIZE);
3044         if (!p) {
3045                 fr_strerror_printf("Out of memory");
3046                 return NULL;
3047         }
3048         da = (DICT_ATTR *) p;
3049         talloc_set_type(da, DICT_ATTR);
3050
3051         if (dict_unknown_from_str(da, name) < 0) {
3052                 talloc_free(p);
3053                 return NULL;
3054         }
3055
3056         return da;
3057 }
3058
3059 /** Create a dictionary attribute by name embedded in another string
3060  *
3061  * Find the first invalid attribute name char in the string pointed
3062  * to by name.
3063  *
3064  * Copy the characters between the start of the name string and the first
3065  * none dict_attr_allowed_char to a buffer and initialise da as an
3066  * unknown attribute.
3067  *
3068  * @param[out] da to initialise.
3069  * @param[in,out] name string start.
3070  * @return 0 on success or -1 on error;
3071  */
3072 int dict_unknown_from_substr(DICT_ATTR *da, char const **name)
3073 {
3074         char const *p;
3075         size_t len;
3076         char buffer[DICT_ATTR_MAX_NAME_LEN + 1];
3077
3078         if (!name || !*name) return -1;
3079
3080         /*
3081          *      Advance p until we get something that's not part of
3082          *      the dictionary attribute name.
3083          */
3084         for (p = *name; dict_attr_allowed_chars[(int) *p] || (*p == '.' ) || (*p == '-'); p++);
3085
3086         len = p - *name;
3087         if (len > DICT_ATTR_MAX_NAME_LEN) {
3088                 fr_strerror_printf("Attribute name too long");
3089
3090                 return -1;
3091         }
3092         if (len == 0) {
3093                 fr_strerror_printf("Invalid attribute name");
3094                 return -1;
3095         }
3096         strlcpy(buffer, *name, len + 1);
3097
3098         if (dict_unknown_from_str(da, buffer) < 0) return -1;
3099
3100         *name = p;
3101
3102         return 0;
3103 }
3104
3105 /*
3106  *      Get an attribute by its numerical value.
3107  */
3108 DICT_ATTR const *dict_attrbyvalue(unsigned int attr, unsigned int vendor)
3109 {
3110         DICT_ATTR da;
3111
3112         if ((attr > 0) && (attr < 256) && !vendor) return dict_base_attrs[attr];
3113
3114         da.attr = attr;
3115         da.vendor = vendor;
3116
3117         return fr_hash_table_finddata(attributes_byvalue, &da);
3118 }
3119
3120
3121 /** Get an attribute by its numerical value and data type
3122  *
3123  * Used only for COMBO_IP
3124  *
3125  * @return The attribute, or NULL if not found
3126  */
3127 DICT_ATTR const *dict_attrbytype(unsigned int attr, unsigned int vendor,
3128                                  PW_TYPE type)
3129 {
3130         DICT_ATTR da;
3131
3132         da.attr = attr;
3133         da.vendor = vendor;
3134         da.type = type;
3135
3136         return fr_hash_table_finddata(attributes_combo, &da);
3137 }
3138
3139 /** Using a parent and attr/vendor, find a child attr/vendor
3140  *
3141  */
3142 int dict_attr_child(DICT_ATTR const *parent,
3143                     unsigned int *pattr, unsigned int *pvendor)
3144 {
3145         unsigned int attr, vendor;
3146         DICT_ATTR da;
3147
3148         if (!parent || !pattr || !pvendor) return false;
3149
3150         attr = *pattr;
3151         vendor = *pvendor;
3152
3153         /*
3154          *      Only some types can have children
3155          */
3156         switch (parent->type) {
3157         default: return false;
3158
3159         case PW_TYPE_VSA:
3160         case PW_TYPE_TLV:
3161         case PW_TYPE_EVS:
3162         case PW_TYPE_EXTENDED:
3163         case PW_TYPE_LONG_EXTENDED:
3164           break;
3165         }
3166
3167         if ((vendor == 0) && (parent->vendor != 0)) return false;
3168
3169         /*
3170          *      Bootstrap by starting off with the parents values.
3171          */
3172         da.attr = parent->attr;
3173         da.vendor = parent->vendor;
3174
3175         /*
3176          *      Do various butchery to insert the "attr" value.
3177          *
3178          *      00VID   000000AA        normal VSA for vendor VID
3179          *      00VID   DDCCBBAA        normal VSAs with TLVs
3180          *      EE000   000000AA        extended attr (241.1)
3181          *      EE000   DDCCBBAA        extended attr with TLVs
3182          *      EEVID   000000AA        EVS with vendor VID, attr AAA
3183          *      EEVID   DDCCBBAA        EVS with TLVs
3184          */
3185         if (!da.vendor) {
3186                 da.vendor = parent->attr * FR_MAX_VENDOR;
3187                 da.vendor |= vendor;
3188                 da.attr = attr;
3189
3190         } else {
3191                 int i;
3192
3193                 /*
3194                  *      Trying to nest too deep.  It's an error
3195                  */
3196                 if (parent->attr & (fr_attr_mask[MAX_TLV_NEST] << fr_attr_shift[MAX_TLV_NEST])) {
3197                         return false;
3198                 }
3199
3200                 for (i = MAX_TLV_NEST - 1; i >= 0; i--) {
3201                         if ((parent->attr & (fr_attr_mask[i] << fr_attr_shift[i]))) {
3202                                 da.attr |= (attr & fr_attr_mask[i + 1]) << fr_attr_shift[i + 1];
3203                                 goto find;
3204                         }
3205                 }
3206
3207                 return false;
3208         }
3209
3210 find:
3211 #if 0
3212         fprintf(stderr, "LOOKING FOR %08x %08x + %08x %08x --> %08x %08x\n",
3213                 parent->vendor, parent->attr, attr, vendor,
3214                 da.vendor, da.attr);
3215 #endif
3216
3217         *pattr = da.attr;
3218         *pvendor = da.vendor;
3219         return true;
3220 }
3221
3222 /*
3223  *      Get an attribute by it's numerical value, and the parent
3224  */
3225 DICT_ATTR const *dict_attrbyparent(DICT_ATTR const *parent, unsigned int attr, unsigned int vendor)
3226 {
3227         unsigned int my_attr, my_vendor;
3228         DICT_ATTR da;
3229
3230         my_attr = attr;
3231         my_vendor = vendor;
3232
3233         if (!dict_attr_child(parent, &my_attr, &my_vendor)) return NULL;
3234
3235         da.attr = my_attr;
3236         da.vendor = my_vendor;
3237
3238         return fr_hash_table_finddata(attributes_byvalue, &da);
3239 }
3240
3241
3242 /*
3243  *      Get an attribute by its name.
3244  */
3245 DICT_ATTR const *dict_attrbyname(char const *name)
3246 {
3247         DICT_ATTR *da;
3248         uint32_t buffer[(sizeof(*da) + DICT_ATTR_MAX_NAME_LEN + 3)/4];
3249
3250         if (!name) return NULL;
3251
3252         da = (DICT_ATTR *) buffer;
3253         strlcpy(da->name, name, DICT_ATTR_MAX_NAME_LEN + 1);
3254
3255         return fr_hash_table_finddata(attributes_byname, da);
3256 }
3257
3258 /** Look up a dictionary attribute by name embedded in another string
3259  *
3260  * Find the first invalid attribute name char in the string pointed
3261  * to by name.
3262  *
3263  * Copy the characters between the start of the name string and the first
3264  * none dict_attr_allowed_char to a buffer and perform a dictionary lookup
3265  * using that value.
3266  *
3267  * If the attribute exists, advance the pointer pointed to by name
3268  * to the first none dict_attr_allowed_char char, and return the DA.
3269  *
3270  * If the attribute does not exist, don't advance the pointer and return
3271  * NULL.
3272  *
3273  * @param[in,out] name string start.
3274  * @return NULL if no attributes matching the name could be found, else
3275  */
3276 DICT_ATTR const *dict_attrbyname_substr(char const **name)
3277 {
3278         DICT_ATTR *find;
3279         DICT_ATTR const *da;
3280         char const *p;
3281         size_t len;
3282         uint32_t buffer[(sizeof(*find) + DICT_ATTR_MAX_NAME_LEN + 3)/4];
3283
3284         if (!name || !*name) return NULL;
3285
3286         find = (DICT_ATTR *) buffer;
3287
3288         /*
3289          *      Advance p until we get something that's not part of
3290          *      the dictionary attribute name.
3291          */
3292         for (p = *name; dict_attr_allowed_chars[(int) *p]; p++);
3293
3294         len = p - *name;
3295         if (len > DICT_ATTR_MAX_NAME_LEN) {
3296                 fr_strerror_printf("Attribute name too long");
3297
3298                 return NULL;
3299         }
3300         strlcpy(find->name, *name, len + 1);
3301
3302         da = fr_hash_table_finddata(attributes_byname, find);
3303         if (!da) {
3304                 fr_strerror_printf("Unknown attribute \"%s\"", find->name);
3305                 return NULL;
3306         }
3307         *name = p;
3308
3309         return da;
3310 }
3311
3312 /*
3313  *      Associate a value with an attribute and return it.
3314  */
3315 DICT_VALUE *dict_valbyattr(unsigned int attr, unsigned int vendor, int value)
3316 {
3317         DICT_VALUE dval, *dv;
3318
3319         /*
3320          *      First, look up aliases.
3321          */
3322         dval.attr = attr;
3323         dval.vendor = vendor;
3324         dval.name[0] = '\0';
3325
3326         /*
3327          *      Look up the attribute alias target, and use
3328          *      the correct attribute number if found.
3329          */
3330         dv = fr_hash_table_finddata(values_byname, &dval);
3331         if (dv) dval.attr = dv->value;
3332
3333         dval.value = value;
3334
3335         return fr_hash_table_finddata(values_byvalue, &dval);
3336 }
3337
3338 /*
3339  *      Associate a value with an attribute and return it.
3340  */
3341 char const *dict_valnamebyattr(unsigned int attr, unsigned int vendor, int value)
3342 {
3343         DICT_VALUE *dv;
3344
3345         dv = dict_valbyattr(attr, vendor, value);
3346         if (!dv) return "";
3347
3348         return dv->name;
3349 }
3350
3351 /*
3352  *      Get a value by its name, keyed off of an attribute.
3353  */
3354 DICT_VALUE *dict_valbyname(unsigned int attr, unsigned int vendor, char const *name)
3355 {
3356         DICT_VALUE *my_dv, *dv;
3357         uint32_t buffer[(sizeof(*my_dv) + DICT_VALUE_MAX_NAME_LEN + 3)/4];
3358
3359         if (!name) return NULL;
3360
3361         my_dv = (DICT_VALUE *) buffer;
3362         my_dv->attr = attr;
3363         my_dv->vendor = vendor;
3364         my_dv->name[0] = '\0';
3365
3366         /*
3367          *      Look up the attribute alias target, and use
3368          *      the correct attribute number if found.
3369          */
3370         dv = fr_hash_table_finddata(values_byname, my_dv);
3371         if (dv) my_dv->attr = dv->value;
3372
3373         strlcpy(my_dv->name, name, DICT_VALUE_MAX_NAME_LEN + 1);
3374
3375         return fr_hash_table_finddata(values_byname, my_dv);
3376 }
3377
3378 /*
3379  *      Get the vendor PEC based on the vendor name
3380  *
3381  *      This is efficient only for small numbers of vendors.
3382  */
3383 int dict_vendorbyname(char const *name)
3384 {
3385         DICT_VENDOR *dv;
3386         size_t buffer[(sizeof(*dv) + DICT_VENDOR_MAX_NAME_LEN + sizeof(size_t) - 1) / sizeof(size_t)];
3387
3388         if (!name) return 0;
3389
3390         dv = (DICT_VENDOR *) buffer;
3391         strlcpy(dv->name, name, DICT_VENDOR_MAX_NAME_LEN + 1);
3392
3393         dv = fr_hash_table_finddata(vendors_byname, dv);
3394         if (!dv) return 0;
3395
3396         return dv->vendorpec;
3397 }
3398
3399 /*
3400  *      Return the vendor struct based on the PEC.
3401  */
3402 DICT_VENDOR *dict_vendorbyvalue(int vendorpec)
3403 {
3404         DICT_VENDOR dv;
3405
3406         dv.vendorpec = vendorpec;
3407
3408         return fr_hash_table_finddata(vendors_byvalue, &dv);
3409 }
3410
3411 /** Converts an unknown to a known by adding it to the internal dictionaries.
3412  *
3413  * Does not free old DICT_ATTR, that is left up to the caller.
3414  *
3415  * @param old unknown attribute to add.
3416  * @return existing DICT_ATTR if old was found in a dictionary, else the new entry in the dictionary
3417  *         representing old.
3418  */
3419 DICT_ATTR const *dict_unknown_add(DICT_ATTR const *old)
3420 {
3421         DICT_ATTR const *da, *parent;
3422         ATTR_FLAGS flags;
3423
3424         if (!old) return NULL;
3425
3426         if (!old->flags.is_unknown) return old;
3427
3428         da = dict_attrbyvalue(old->attr, old->vendor);
3429         if (da) return da;
3430
3431         memcpy(&flags, &old->flags, sizeof(flags));
3432         flags.is_unknown = false;
3433
3434         parent = dict_parent(old->attr, old->vendor);
3435         if (parent) {
3436                 if (parent->flags.has_tlv) flags.is_tlv = true;
3437                 flags.evs = parent->flags.evs;
3438                 flags.extended = parent->flags.extended;
3439                 flags.long_extended = parent->flags.long_extended;
3440         }
3441
3442         if (dict_addattr(old->name, old->attr, old->vendor, old->type, flags) < 0) {
3443                 return NULL;
3444         }
3445
3446         da = dict_attrbyvalue(old->attr, old->vendor);
3447         return da;
3448 }