-fixes
[oweals/gnunet.git] / src / util / configuration.c
1 /*
2      This file is part of GNUnet.
3      (C) 2006, 2007, 2008, 2009, 2013 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file src/util/configuration.c
23  * @brief configuration management
24  * @author Christian Grothoff
25  */
26
27 #include "platform.h"
28 #include "gnunet_util_lib.h"
29
30 #define LOG(kind,...) GNUNET_log_from (kind, "util", __VA_ARGS__)
31
32 #define LOG_STRERROR_FILE(kind,syscall,filename) GNUNET_log_from_strerror_file (kind, "util", syscall, filename)
33
34 /**
35  * @brief configuration entry
36  */
37 struct ConfigEntry
38 {
39
40   /**
41    * This is a linked list.
42    */
43   struct ConfigEntry *next;
44
45   /**
46    * key for this entry
47    */
48   char *key;
49
50   /**
51    * current, commited value
52    */
53   char *val;
54 };
55
56
57 /**
58  * @brief configuration section
59  */
60 struct ConfigSection
61 {
62   /**
63    * This is a linked list.
64    */
65   struct ConfigSection *next;
66
67   /**
68    * entries in the section
69    */
70   struct ConfigEntry *entries;
71
72   /**
73    * name of the section
74    */
75   char *name;
76 };
77
78
79 /**
80  * @brief configuration data
81  */
82 struct GNUNET_CONFIGURATION_Handle
83 {
84   /**
85    * Configuration sections.
86    */
87   struct ConfigSection *sections;
88
89   /**
90    * Modification indication since last save
91    * #GNUNET_NO if clean, #GNUNET_YES if dirty,
92    * #GNUNET_SYSERR on error (i.e. last save failed)
93    */
94   int dirty;
95
96 };
97
98
99 /**
100  * Used for diffing a configuration object against
101  * the default one
102  */
103 struct DiffHandle
104 {
105   const struct GNUNET_CONFIGURATION_Handle *cfg_default;
106
107   struct GNUNET_CONFIGURATION_Handle *cfgDiff;
108 };
109
110
111 /**
112  * Create a GNUNET_CONFIGURATION_Handle.
113  *
114  * @return fresh configuration object
115  */
116 struct GNUNET_CONFIGURATION_Handle *
117 GNUNET_CONFIGURATION_create ()
118 {
119   return GNUNET_new (struct GNUNET_CONFIGURATION_Handle);
120 }
121
122
123 /**
124  * Destroy configuration object.
125  *
126  * @param cfg configuration to destroy
127  */
128 void
129 GNUNET_CONFIGURATION_destroy (struct GNUNET_CONFIGURATION_Handle *cfg)
130 {
131   struct ConfigSection *sec;
132
133   while (NULL != (sec = cfg->sections))
134     GNUNET_CONFIGURATION_remove_section (cfg, sec->name);
135   GNUNET_free (cfg);
136 }
137
138
139 /**
140  * De-serializes configuration
141  *
142  * @param cfg configuration to update
143  * @param mem the memory block of serialized configuration
144  * @param size the size of the memory block
145  * @param allow_inline set to #GNUNET_YES if we recursively load configuration
146  *          from inlined configurations; #GNUNET_NO if not and raise warnings
147  *          when we come across them
148  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
149  */
150 int
151 GNUNET_CONFIGURATION_deserialize (struct GNUNET_CONFIGURATION_Handle *cfg,
152                                   const char *mem,
153                                   const size_t size,
154                                   int allow_inline)
155 {
156   char *line;
157   char *line_orig;
158   size_t line_size;
159   char *pos;
160   unsigned int nr;
161   size_t r_bytes;
162   size_t to_read;
163   size_t i;
164   int emptyline;
165   int ret;
166   char *section;
167   char *eq;
168   char *tag;
169   char *value;
170
171   LOG (GNUNET_ERROR_TYPE_DEBUG, "Deserializing config file\n");
172   ret = GNUNET_OK;
173   section = GNUNET_strdup ("");
174   nr = 0;
175   r_bytes = 0;
176   line_orig = NULL;
177   while (r_bytes < size)
178   {
179     GNUNET_free_non_null (line_orig);
180     /* fgets-like behaviour on buffer */
181     to_read = size - r_bytes;
182     pos = memchr (&mem[r_bytes], '\n', to_read);
183     if (NULL == pos)
184     {
185       line_orig = GNUNET_strndup (&mem[r_bytes], line_size = to_read);
186       r_bytes += line_size;
187     }
188     else
189     {
190       line_orig = GNUNET_strndup (&mem[r_bytes], line_size = (pos - &mem[r_bytes]));
191       r_bytes += line_size + 1;
192     }
193     line = line_orig;
194     /* increment line number */
195     nr++;
196     /* tabs and '\r' are whitespace */
197     emptyline = GNUNET_YES;
198     for (i = 0; i < line_size; i++)
199     {
200       if (line[i] == '\t')
201         line[i] = ' ';
202       if (line[i] == '\r')
203         line[i] = ' ';
204       if (' ' != line[i])
205         emptyline = GNUNET_NO;
206     }
207     /* ignore empty lines */
208     if (GNUNET_YES == emptyline)
209       continue;
210
211     /* remove tailing whitespace */
212     for (i = line_size - 1; (i >= 1) && (isspace ((unsigned char) line[i]));i--)
213       line[i] = '\0';
214
215     /* remove leading whitespace */
216     for (; line[0] != '\0' && (isspace ((unsigned char) line[0])); line++);
217
218     /* ignore comments */
219     if ( ('#' == line[0]) || ('%' == line[0]) )
220       continue;
221
222     /* handle special "@INLINE@" directive */
223     if (0 == strncasecmp (line,
224                           "@INLINE@ ",
225                           strlen ("@INLINE@ ")))
226     {
227       /* @INLINE@ value */
228       value = &line[strlen ("@INLINE@ ")];
229       if (GNUNET_YES == allow_inline)
230       {
231         if (GNUNET_OK != GNUNET_CONFIGURATION_parse (cfg, value))
232         {
233           ret = GNUNET_SYSERR;    /* failed to parse included config */
234           break;
235         }
236       }
237       else
238       {
239         LOG (GNUNET_ERROR_TYPE_DEBUG,
240              "Ignoring parsing @INLINE@ configurations, not allowed!\n");
241         ret = GNUNET_SYSERR;
242         break;
243       }
244       continue;
245     }
246     if ( ('[' == line[0]) && (']' == line[line_size - 1]) )
247     {
248       /* [value] */
249       line[line_size - 1] = '\0';
250       value = &line[1];
251       GNUNET_free (section);
252       section = GNUNET_strdup (value);
253       LOG (GNUNET_ERROR_TYPE_DEBUG,
254            "Config section `%s'\n",
255            section);
256       continue;
257     }
258     if (NULL != (eq = strchr (line, '=')))
259     {
260       /* tag = value */
261       tag = GNUNET_strndup (line, eq - line);
262       /* remove tailing whitespace */
263       for (i = strlen (tag) - 1; (i >= 1) && (isspace ((unsigned char) tag[i]));i--)
264         tag[i] = '\0';
265
266       /* Strip whitespace */
267       value = eq + 1;
268       while (isspace ((unsigned char) value[0]))
269         value++;
270       for (i = strlen (value) - 1; (i >= 1) && (isspace ((unsigned char) value[i]));i--)
271         value[i] = '\0';
272
273       /* remove quotes */
274       i = 0;
275       if ( ('"' == value[0]) &&
276            ('"' == value[strlen (value) - 1]) )
277       {
278         value[strlen (value) - 1] = '\0';
279         value++;
280       }
281       LOG (GNUNET_ERROR_TYPE_DEBUG, "Config value %s=\"%s\"\n", tag, value);
282       GNUNET_CONFIGURATION_set_value_string (cfg, section, tag, &value[i]);
283       GNUNET_free (tag);
284       continue;
285     }
286     /* parse error */
287     LOG (GNUNET_ERROR_TYPE_WARNING,
288          _("Syntax error while deserializing in line %u\n"),
289          nr);
290     ret = GNUNET_SYSERR;
291     break;
292   }
293   LOG (GNUNET_ERROR_TYPE_DEBUG, "Finished deserializing config\n");
294   GNUNET_free_non_null (line_orig);
295   GNUNET_free (section);
296   GNUNET_assert ( (GNUNET_OK != ret) || (r_bytes == size) );
297   return ret;
298 }
299
300
301 /**
302  * Parse a configuration file, add all of the options in the
303  * file to the configuration environment.
304  *
305  * @param cfg configuration to update
306  * @param filename name of the configuration file
307  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
308  */
309 int
310 GNUNET_CONFIGURATION_parse (struct GNUNET_CONFIGURATION_Handle *cfg,
311                             const char *filename)
312 {
313   uint64_t fs64;
314   size_t fs;
315   char *fn;
316   char *mem;
317   int dirty;
318   int ret;
319
320   LOG (GNUNET_ERROR_TYPE_DEBUG,
321        "Asked to parse config file `%s'\n",
322        filename);
323   fn = GNUNET_STRINGS_filename_expand (filename);
324   LOG (GNUNET_ERROR_TYPE_DEBUG,
325        "Config file name expanded to `%s'\n",
326        fn);
327   if (fn == NULL)
328     return GNUNET_SYSERR;
329   dirty = cfg->dirty;           /* back up value! */
330   if (GNUNET_SYSERR ==
331        GNUNET_DISK_file_size (fn, &fs64, GNUNET_YES, GNUNET_YES))
332   {
333     LOG (GNUNET_ERROR_TYPE_WARNING,
334          "Error while determining the file size of %s\n", fn);
335     GNUNET_free (fn);
336     return GNUNET_SYSERR;
337   }
338   if (fs64 > SIZE_MAX)
339   {
340     GNUNET_break (0);           /* File size is more than the heap size */
341     GNUNET_free (fn);
342     return GNUNET_SYSERR;
343   }
344   fs = fs64;
345   mem = GNUNET_malloc (fs);
346   if (fs != GNUNET_DISK_fn_read (fn, mem, fs))
347   {
348     LOG (GNUNET_ERROR_TYPE_WARNING,
349          "Error while reading file %s\n", fn);
350     GNUNET_free (fn);
351     GNUNET_free (mem);
352     return GNUNET_SYSERR;
353   }
354   LOG (GNUNET_ERROR_TYPE_DEBUG, "Deserializing contents of file `%s'\n", fn);
355   GNUNET_free (fn);
356   ret = GNUNET_CONFIGURATION_deserialize (cfg, mem, fs, GNUNET_YES);
357   GNUNET_free (mem);
358   /* restore dirty flag - anything we set in the meantime
359    * came from disk */
360   cfg->dirty = dirty;
361   return ret;
362 }
363
364
365 /**
366  * Test if there are configuration options that were
367  * changed since the last save.
368  *
369  * @param cfg configuration to inspect
370  * @return #GNUNET_NO if clean, #GNUNET_YES if dirty, #GNUNET_SYSERR on error (i.e. last save failed)
371  */
372 int
373 GNUNET_CONFIGURATION_is_dirty (const struct GNUNET_CONFIGURATION_Handle *cfg)
374 {
375   return cfg->dirty;
376 }
377
378
379 /**
380  * Serializes the given configuration.
381  *
382  * @param cfg configuration to serialize
383  * @param size will be set to the size of the serialized memory block
384  * @return the memory block where the serialized configuration is
385  *           present. This memory should be freed by the caller
386  */
387 char *
388 GNUNET_CONFIGURATION_serialize (const struct GNUNET_CONFIGURATION_Handle *cfg,
389                                 size_t *size)
390 {
391   struct ConfigSection *sec;
392   struct ConfigEntry *ent;
393   char *mem;
394   char *cbuf;
395   char *val;
396   char *pos;
397   int len;
398   size_t m_size;
399   size_t c_size;
400
401
402   /* Pass1 : calculate the buffer size required */
403   m_size = 0;
404   for (sec = cfg->sections; NULL != sec; sec = sec->next)
405   {
406     /* For each section we need to add 3 charaters: {'[',']','\n'} */
407     m_size += strlen (sec->name) + 3;
408     for (ent = sec->entries; NULL != ent; ent = ent->next)
409     {
410       if (NULL != ent->val)
411       {
412         /* if val has any '\n' then they occupy +1 character as '\n'->'\\','n' */
413         pos = ent->val;
414         while (NULL != (pos = strstr (pos, "\n")))
415         {
416           m_size++;
417           pos++;
418         }
419         /* For each key = value pair we need to add 4 characters (2
420            spaces and 1 equal-to character and 1 new line) */
421         m_size += strlen (ent->key) + strlen (ent->val) + 4;
422       }
423     }
424     /* A new line after section end */
425     m_size++;
426   }
427
428   /* Pass2: Allocate memory and write the configuration to it */
429   mem = GNUNET_malloc (m_size);
430   sec = cfg->sections;
431   c_size = 0;
432   *size = c_size;
433   while (NULL != sec)
434   {
435     len = GNUNET_asprintf (&cbuf, "[%s]\n", sec->name);
436     GNUNET_assert (0 < len);
437     memcpy (mem + c_size, cbuf, len);
438     c_size += len;
439     GNUNET_free (cbuf);
440     for (ent = sec->entries; NULL != ent; ent = ent->next)
441     {
442       if (NULL != ent->val)
443       {
444         val = GNUNET_malloc (strlen (ent->val) * 2 + 1);
445         strcpy (val, ent->val);
446         while (NULL != (pos = strstr (val, "\n")))
447         {
448           memmove (&pos[2], &pos[1], strlen (&pos[1]));
449           pos[0] = '\\';
450           pos[1] = 'n';
451         }
452         len = GNUNET_asprintf (&cbuf, "%s = %s\n", ent->key, val);
453         GNUNET_free (val);
454         memcpy (mem + c_size, cbuf, len);
455         c_size += len;
456         GNUNET_free (cbuf);
457       }
458     }
459     memcpy (mem + c_size, "\n", 1);
460     c_size ++;
461     sec = sec->next;
462   }
463   GNUNET_assert (c_size == m_size);
464   *size = c_size;
465   return mem;
466 }
467
468
469 /**
470  * Write configuration file.
471  *
472  * @param cfg configuration to write
473  * @param filename where to write the configuration
474  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
475  */
476 int
477 GNUNET_CONFIGURATION_write (struct GNUNET_CONFIGURATION_Handle *cfg,
478                             const char *filename)
479 {
480   char *fn;
481   char *cfg_buf;
482   size_t size;
483
484   fn = GNUNET_STRINGS_filename_expand (filename);
485   if (fn == NULL)
486     return GNUNET_SYSERR;
487   if (GNUNET_OK != GNUNET_DISK_directory_create_for_file (fn))
488   {
489     GNUNET_free (fn);
490     return GNUNET_SYSERR;
491   }
492   cfg_buf = GNUNET_CONFIGURATION_serialize (cfg, &size);
493   if (size != GNUNET_DISK_fn_write (fn, cfg_buf, size,
494                                     GNUNET_DISK_PERM_USER_READ
495                                     | GNUNET_DISK_PERM_USER_WRITE
496                                     | GNUNET_DISK_PERM_GROUP_READ
497                                     | GNUNET_DISK_PERM_GROUP_WRITE))
498   {
499     GNUNET_free (fn);
500     GNUNET_free (cfg_buf);
501     LOG (GNUNET_ERROR_TYPE_WARNING,
502          "Writing configration to file: %s failed\n", filename);
503     cfg->dirty = GNUNET_SYSERR; /* last write failed */
504     return GNUNET_SYSERR;
505   }
506   GNUNET_free (fn);
507   GNUNET_free (cfg_buf);
508   cfg->dirty = GNUNET_NO;       /* last write succeeded */
509   return GNUNET_OK;
510 }
511
512
513 /**
514  * Iterate over all options in the configuration.
515  *
516  * @param cfg configuration to inspect
517  * @param iter function to call on each option
518  * @param iter_cls closure for @a iter
519  */
520 void
521 GNUNET_CONFIGURATION_iterate (const struct GNUNET_CONFIGURATION_Handle *cfg,
522                               GNUNET_CONFIGURATION_Iterator iter,
523                               void *iter_cls)
524 {
525   struct ConfigSection *spos;
526   struct ConfigEntry *epos;
527
528   for (spos = cfg->sections; NULL != spos; spos = spos->next)
529     for (epos = spos->entries; NULL != epos; epos = epos->next)
530       if (NULL != epos->val)
531         iter (iter_cls, spos->name, epos->key, epos->val);
532 }
533
534
535 /**
536  * Iterate over values of a section in the configuration.
537  *
538  * @param cfg configuration to inspect
539  * @param section the section
540  * @param iter function to call on each option
541  * @param iter_cls closure for @a iter
542  */
543 void
544 GNUNET_CONFIGURATION_iterate_section_values (const struct
545                                              GNUNET_CONFIGURATION_Handle *cfg,
546                                              const char *section,
547                                              GNUNET_CONFIGURATION_Iterator iter,
548                                              void *iter_cls)
549 {
550   struct ConfigSection *spos;
551   struct ConfigEntry *epos;
552
553   spos = cfg->sections;
554   while ((spos != NULL) && (0 != strcasecmp (spos->name, section)))
555     spos = spos->next;
556   if (NULL == spos)
557     return;
558   for (epos = spos->entries; NULL != epos; epos = epos->next)
559     if (NULL != epos->val)
560       iter (iter_cls, spos->name, epos->key, epos->val);
561 }
562
563
564 /**
565  * Iterate over all sections in the configuration.
566  *
567  * @param cfg configuration to inspect
568  * @param iter function to call on each section
569  * @param iter_cls closure for @a iter
570  */
571 void
572 GNUNET_CONFIGURATION_iterate_sections (const struct GNUNET_CONFIGURATION_Handle
573                                        *cfg,
574                                        GNUNET_CONFIGURATION_Section_Iterator
575                                        iter, void *iter_cls)
576 {
577   struct ConfigSection *spos;
578   struct ConfigSection *next;
579
580   next = cfg->sections;
581   while (next != NULL)
582   {
583     spos = next;
584     next = spos->next;
585     iter (iter_cls, spos->name);
586   }
587 }
588
589
590 /**
591  * Remove the given section and all options in it.
592  *
593  * @param cfg configuration to inspect
594  * @param section name of the section to remove
595  */
596 void
597 GNUNET_CONFIGURATION_remove_section (struct GNUNET_CONFIGURATION_Handle *cfg,
598                                      const char *section)
599 {
600   struct ConfigSection *spos;
601   struct ConfigSection *prev;
602   struct ConfigEntry *ent;
603
604   prev = NULL;
605   spos = cfg->sections;
606   while (NULL != spos)
607   {
608     if (0 == strcasecmp (section, spos->name))
609     {
610       if (NULL == prev)
611         cfg->sections = spos->next;
612       else
613         prev->next = spos->next;
614       while (NULL != (ent = spos->entries))
615       {
616         spos->entries = ent->next;
617         GNUNET_free (ent->key);
618         GNUNET_free_non_null (ent->val);
619         GNUNET_free (ent);
620         cfg->dirty = GNUNET_YES;
621       }
622       GNUNET_free (spos->name);
623       GNUNET_free (spos);
624       return;
625     }
626     prev = spos;
627     spos = spos->next;
628   }
629 }
630
631
632 /**
633  * Copy a configuration value to the given target configuration.
634  * Overwrites existing entries.
635  *
636  * @param cls the destination configuration (`struct GNUNET_CONFIGURATION_Handle *`)
637  * @param section section for the value
638  * @param option option name of the value
639  * @param value value to copy
640  */
641 static void
642 copy_entry (void *cls,
643             const char *section,
644             const char *option,
645             const char *value)
646 {
647   struct GNUNET_CONFIGURATION_Handle *dst = cls;
648
649   GNUNET_CONFIGURATION_set_value_string (dst, section, option, value);
650 }
651
652
653 /**
654  * Duplicate an existing configuration object.
655  *
656  * @param cfg configuration to duplicate
657  * @return duplicate configuration
658  */
659 struct GNUNET_CONFIGURATION_Handle *
660 GNUNET_CONFIGURATION_dup (const struct GNUNET_CONFIGURATION_Handle *cfg)
661 {
662   struct GNUNET_CONFIGURATION_Handle *ret;
663
664   ret = GNUNET_CONFIGURATION_create ();
665   GNUNET_CONFIGURATION_iterate (cfg, &copy_entry, ret);
666   return ret;
667 }
668
669
670 /**
671  * Find a section entry from a configuration.
672  *
673  * @param cfg configuration to search in
674  * @param section name of the section to look for
675  * @return matching entry, NULL if not found
676  */
677 static struct ConfigSection *
678 find_section (const struct GNUNET_CONFIGURATION_Handle *cfg,
679              const char *section)
680 {
681   struct ConfigSection *pos;
682
683   pos = cfg->sections;
684   while ((pos != NULL) && (0 != strcasecmp (section, pos->name)))
685     pos = pos->next;
686   return pos;
687 }
688
689
690 /**
691  * Find an entry from a configuration.
692  *
693  * @param cfg handle to the configuration
694  * @param section section the option is in
695  * @param key the option
696  * @return matching entry, NULL if not found
697  */
698 static struct ConfigEntry *
699 find_entry (const struct GNUNET_CONFIGURATION_Handle *cfg,
700            const char *section,
701            const char *key)
702 {
703   struct ConfigSection *sec;
704   struct ConfigEntry *pos;
705
706   if (NULL == (sec = find_section (cfg, section)))
707     return NULL;
708   pos = sec->entries;
709   while ((pos != NULL) && (0 != strcasecmp (key, pos->key)))
710     pos = pos->next;
711   return pos;
712 }
713
714
715 /**
716  * A callback function, compares entries from two configurations
717  * (default against a new configuration) and write the diffs in a
718  * diff-configuration object (the callback object).
719  *
720  * @param cls the diff configuration (`struct DiffHandle *`)
721  * @param section section for the value (of the default conf.)
722  * @param option option name of the value (of the default conf.)
723  * @param value value to copy (of the default conf.)
724  */
725 static void
726 compare_entries (void *cls,
727                  const char *section,
728                  const char *option,
729                  const char *value)
730 {
731   struct DiffHandle *dh = cls;
732   struct ConfigEntry *entNew;
733
734   entNew = find_entry (dh->cfg_default, section, option);
735   if ( (NULL != entNew) &&
736        (NULL != entNew->val) &&
737        (0 == strcmp (entNew->val, value)) )
738     return;
739   GNUNET_CONFIGURATION_set_value_string (dh->cfgDiff, section, option, value);
740 }
741
742
743 /**
744  * Compute configuration with only entries that have been changed
745  *
746  * @param cfg_default original configuration
747  * @param cfg_new new configuration
748  * @return configuration with only the differences, never NULL
749  */
750 struct GNUNET_CONFIGURATION_Handle *
751 GNUNET_CONFIGURATION_get_diff (const struct GNUNET_CONFIGURATION_Handle *cfg_default,
752                                const struct GNUNET_CONFIGURATION_Handle *cfg_new)
753 {
754   struct DiffHandle diffHandle;
755
756   diffHandle.cfgDiff = GNUNET_CONFIGURATION_create ();
757   diffHandle.cfg_default = cfg_default;
758   GNUNET_CONFIGURATION_iterate (cfg_new, &compare_entries, &diffHandle);
759   return diffHandle.cfgDiff;
760 }
761
762
763 /**
764  * Write only configuration entries that have been changed to configuration file
765  *
766  * @param cfg_default default configuration
767  * @param cfg_new new configuration
768  * @param filename where to write the configuration diff between default and new
769  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
770  */
771 int
772 GNUNET_CONFIGURATION_write_diffs (const struct GNUNET_CONFIGURATION_Handle
773                                   *cfg_default,
774                                   const struct GNUNET_CONFIGURATION_Handle
775                                   *cfg_new, const char *filename)
776 {
777   int ret;
778   struct GNUNET_CONFIGURATION_Handle *diff;
779
780   diff = GNUNET_CONFIGURATION_get_diff (cfg_default, cfg_new);
781   ret = GNUNET_CONFIGURATION_write (diff, filename);
782   GNUNET_CONFIGURATION_destroy (diff);
783   return ret;
784 }
785
786
787 /**
788  * Set a configuration value that should be a string.
789  *
790  * @param cfg configuration to update
791  * @param section section of interest
792  * @param option option of interest
793  * @param value value to set
794  */
795 void
796 GNUNET_CONFIGURATION_set_value_string (struct GNUNET_CONFIGURATION_Handle *cfg,
797                                        const char *section, const char *option,
798                                        const char *value)
799 {
800   struct ConfigSection *sec;
801   struct ConfigEntry *e;
802   char *nv;
803
804   e = find_entry (cfg, section, option);
805   if (NULL != e)
806   {
807     if (NULL == value)
808     {
809       GNUNET_free_non_null (e->val);
810       e->val = NULL;
811     }
812     else
813     {
814       nv = GNUNET_strdup (value);
815       GNUNET_free_non_null (e->val);
816       e->val = nv;
817     }
818     return;
819   }
820   sec = find_section (cfg, section);
821   if (sec == NULL)
822   {
823     sec = GNUNET_new (struct ConfigSection);
824     sec->name = GNUNET_strdup (section);
825     sec->next = cfg->sections;
826     cfg->sections = sec;
827   }
828   e = GNUNET_new (struct ConfigEntry);
829   e->key = GNUNET_strdup (option);
830   e->val = GNUNET_strdup (value);
831   e->next = sec->entries;
832   sec->entries = e;
833 }
834
835
836 /**
837  * Set a configuration value that should be a number.
838  *
839  * @param cfg configuration to update
840  * @param section section of interest
841  * @param option option of interest
842  * @param number value to set
843  */
844 void
845 GNUNET_CONFIGURATION_set_value_number (struct GNUNET_CONFIGURATION_Handle *cfg,
846                                        const char *section, const char *option,
847                                        unsigned long long number)
848 {
849   char s[64];
850
851   GNUNET_snprintf (s, 64, "%llu", number);
852   GNUNET_CONFIGURATION_set_value_string (cfg, section, option, s);
853 }
854
855
856 /**
857  * Get a configuration value that should be a number.
858  *
859  * @param cfg configuration to inspect
860  * @param section section of interest
861  * @param option option of interest
862  * @param number where to store the numeric value of the option
863  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
864  */
865 int
866 GNUNET_CONFIGURATION_get_value_number (const struct GNUNET_CONFIGURATION_Handle
867                                        *cfg, const char *section,
868                                        const char *option,
869                                        unsigned long long *number)
870 {
871   struct ConfigEntry *e;
872
873   if (NULL == (e = find_entry (cfg, section, option)))
874     return GNUNET_SYSERR;
875   if (NULL == e->val)
876     return GNUNET_SYSERR;
877   if (1 != SSCANF (e->val, "%llu", number))
878     return GNUNET_SYSERR;
879   return GNUNET_OK;
880 }
881
882
883 /**
884  * Get a configuration value that should be a relative time.
885  *
886  * @param cfg configuration to inspect
887  * @param section section of interest
888  * @param option option of interest
889  * @param time set to the time value stored in the configuration
890  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
891  */
892 int
893 GNUNET_CONFIGURATION_get_value_time (const struct GNUNET_CONFIGURATION_Handle
894                                      *cfg, const char *section,
895                                      const char *option,
896                                      struct GNUNET_TIME_Relative *time)
897 {
898   struct ConfigEntry *e;
899
900   if (NULL == (e = find_entry (cfg, section, option)))
901     return GNUNET_SYSERR;
902   if (NULL == e->val)
903     return GNUNET_SYSERR;
904   return GNUNET_STRINGS_fancy_time_to_relative (e->val, time);
905 }
906
907
908 /**
909  * Get a configuration value that should be a size in bytes.
910  *
911  * @param cfg configuration to inspect
912  * @param section section of interest
913  * @param option option of interest
914  * @param size set to the size in bytes as stored in the configuration
915  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
916  */
917 int
918 GNUNET_CONFIGURATION_get_value_size (const struct GNUNET_CONFIGURATION_Handle *cfg,
919                                      const char *section,
920                                      const char *option,
921                                      unsigned long long *size)
922 {
923   struct ConfigEntry *e;
924
925   if (NULL == (e = find_entry (cfg, section, option)))
926     return GNUNET_SYSERR;
927   if (NULL == e->val)
928     return GNUNET_SYSERR;
929   return GNUNET_STRINGS_fancy_size_to_bytes (e->val, size);
930 }
931
932
933 /**
934  * Get a configuration value that should be a string.
935  *
936  * @param cfg configuration to inspect
937  * @param section section of interest
938  * @param option option of interest
939  * @param value will be set to a freshly allocated configuration
940  *        value, or NULL if option is not specified
941  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
942  */
943 int
944 GNUNET_CONFIGURATION_get_value_string (const struct GNUNET_CONFIGURATION_Handle *cfg,
945                                        const char *section,
946                                        const char *option,
947                                        char **value)
948 {
949   struct ConfigEntry *e;
950
951   LOG (GNUNET_ERROR_TYPE_DEBUG,
952        "Asked to retrieve string `%s' in section `%s'\n",
953        option,
954        section);
955   if ( (NULL == (e = find_entry (cfg, section, option))) ||
956        (NULL == e->val) )
957   {
958     *value = NULL;
959     return GNUNET_SYSERR;
960   }
961   *value = GNUNET_strdup (e->val);
962   return GNUNET_OK;
963 }
964
965
966 /**
967  * Get a configuration value that should be in a set of
968  * predefined strings
969  *
970  * @param cfg configuration to inspect
971  * @param section section of interest
972  * @param option option of interest
973  * @param choices NULL-terminated list of legal values
974  * @param value will be set to an entry in the legal list,
975  *        or NULL if option is not specified and no default given
976  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
977  */
978 int
979 GNUNET_CONFIGURATION_get_value_choice (const struct GNUNET_CONFIGURATION_Handle *cfg,
980                                        const char *section,
981                                        const char *option,
982                                        const char *const *choices,
983                                        const char **value)
984 {
985   struct ConfigEntry *e;
986   unsigned int i;
987
988   if (NULL == (e = find_entry (cfg, section, option)))
989     return GNUNET_SYSERR;
990   for (i = 0; NULL != choices[i]; i++)
991     if (0 == strcasecmp (choices[i], e->val))
992       break;
993   if (NULL == choices[i])
994   {
995     LOG (GNUNET_ERROR_TYPE_ERROR,
996          _("Configuration value '%s' for '%s'"
997            " in section '%s' is not in set of legal choices\n"),
998          e->val,
999          option,
1000          section);
1001     return GNUNET_SYSERR;
1002   }
1003   *value = choices[i];
1004   return GNUNET_OK;
1005 }
1006
1007
1008 /**
1009  * Test if we have a value for a particular option
1010  *
1011  * @param cfg configuration to inspect
1012  * @param section section of interest
1013  * @param option option of interest
1014  * @return #GNUNET_YES if so, #GNUNET_NO if not.
1015  */
1016 int
1017 GNUNET_CONFIGURATION_have_value (const struct GNUNET_CONFIGURATION_Handle *cfg,
1018                                  const char *section, const char *option)
1019 {
1020   struct ConfigEntry *e;
1021
1022   if ((NULL == (e = find_entry (cfg, section, option))) || (NULL == e->val))
1023     return GNUNET_NO;
1024   return GNUNET_YES;
1025 }
1026
1027
1028 /**
1029  * Expand an expression of the form "$FOO/BAR" to "DIRECTORY/BAR"
1030  * where either in the "PATHS" section or the environtment "FOO" is
1031  * set to "DIRECTORY".  We also support default expansion,
1032  * i.e. ${VARIABLE:-default} will expand to $VARIABLE if VARIABLE is
1033  * set in PATHS or the environment, and otherwise to "default".  Note
1034  * that "default" itself can also be a $-expression, thus
1035  * "${VAR1:-{$VAR2}}" will expand to VAR1 and if that is not defined
1036  * to VAR2.
1037  *
1038  * @param cfg configuration to use for path expansion
1039  * @param orig string to $-expand (will be freed!)
1040  * @param depth recursion depth, used to detect recursive expansions
1041  * @return $-expanded string
1042  */
1043 static char *
1044 expand_dollar (const struct GNUNET_CONFIGURATION_Handle *cfg,
1045                char *orig,
1046                unsigned int depth)
1047 {
1048   int i;
1049   char *prefix;
1050   char *result;
1051   char *start;
1052   const char *post;
1053   const char *env;
1054   char *def;
1055   char *end;
1056   unsigned int lopen;
1057   char erased_char;
1058   char *erased_pos;
1059
1060   if (NULL == orig)
1061     return NULL;
1062   if (depth > 128)
1063   {
1064     LOG (GNUNET_ERROR_TYPE_WARNING,
1065          _("Recursive expansion suspected, aborting $-expansion for term `%s'\n"),
1066          orig);
1067     return orig;
1068   }
1069   LOG (GNUNET_ERROR_TYPE_DEBUG,
1070        "Asked to $-expand %s\n", orig);
1071   if ('$' != orig[0])
1072   {
1073     LOG (GNUNET_ERROR_TYPE_DEBUG,
1074          "Doesn't start with $ - not expanding\n");
1075     return orig;
1076   }
1077   erased_char = 0;
1078   erased_pos = NULL;
1079   if ('{' == orig[1])
1080   {
1081     start = &orig[2];
1082     lopen = 1;
1083     end = &orig[1];
1084     while (lopen > 0)
1085     {
1086       end++;
1087       switch (*end)
1088       {
1089       case '}':
1090         lopen--;
1091         break;
1092       case '{':
1093         lopen++;
1094         break;
1095       case '\0':
1096         LOG (GNUNET_ERROR_TYPE_WARNING,
1097              _("Missing closing `%s' in option `%s'\n"),
1098              "}",
1099              orig);
1100         return orig;
1101       default:
1102         break;
1103       }
1104     }
1105     erased_char = *end;
1106     erased_pos = end;
1107     *end = '\0';
1108     post = end + 1;
1109     def = strchr (orig, ':');
1110     if (NULL != def)
1111     {
1112       *def = '\0';
1113       def++;
1114       if ( ('-' == *def) ||
1115            ('=' == *def) )
1116         def++;
1117       def = GNUNET_strdup (def);
1118     }
1119   }
1120   else
1121   {
1122     start = &orig[1];
1123     def = NULL;
1124     i = 0;
1125     while ( (orig[i] != '/') &&
1126             (orig[i] != '\\') &&
1127             (orig[i] != '\0') )
1128       i++;
1129     if (orig[i] == '\0')
1130     {
1131       post = "";
1132     }
1133     else
1134     {
1135       erased_char = orig[i];
1136       erased_pos = &orig[i];
1137       orig[i] = '\0';
1138       post = &orig[i + 1];
1139     }
1140   }
1141   LOG (GNUNET_ERROR_TYPE_DEBUG,
1142        "Split into `%s' and `%s' with default %s\n",
1143        start,
1144        post,
1145        def);
1146   if (GNUNET_OK !=
1147       GNUNET_CONFIGURATION_get_value_filename (cfg,
1148                                                "PATHS",
1149                                                start,
1150                                                &prefix))
1151   {
1152     LOG (GNUNET_ERROR_TYPE_DEBUG,
1153          "Filename for `%s' is not in PATHS config section\n",
1154          start);
1155     if (NULL == (env = getenv (start)))
1156     {
1157       LOG (GNUNET_ERROR_TYPE_DEBUG,
1158            "`%s' is not an environment variable\n",
1159            start);
1160       /* try default */
1161       def = expand_dollar (cfg, def, depth + 1);
1162       env = def;
1163     }
1164     if (NULL == env)
1165     {
1166       if (erased_pos)
1167         *erased_pos = erased_char;
1168       LOG (GNUNET_ERROR_TYPE_DEBUG,
1169            "Expanded to `%s' (returning orig)\n",
1170            orig);
1171       return orig;
1172     }
1173     prefix = GNUNET_strdup (env);
1174   }
1175   LOG (GNUNET_ERROR_TYPE_DEBUG,
1176        "Prefix is `%s'\n",
1177        prefix);
1178   result = GNUNET_malloc (strlen (prefix) + strlen (post) + 2);
1179   strcpy (result, prefix);
1180   if ( (0 == strlen (prefix)) ||
1181        ( (prefix[strlen (prefix) - 1] != DIR_SEPARATOR) &&
1182          (strlen (post) > 0) ) )
1183     strcat (result, DIR_SEPARATOR_STR);
1184   strcat (result, post);
1185   GNUNET_free_non_null (def);
1186   GNUNET_free (prefix);
1187   GNUNET_free (orig);
1188   LOG (GNUNET_ERROR_TYPE_DEBUG,
1189        "Expanded to `%s'\n",
1190        result);
1191   return result;
1192 }
1193
1194
1195 /**
1196  * Expand an expression of the form "$FOO/BAR" to "DIRECTORY/BAR"
1197  * where either in the "PATHS" section or the environtment "FOO" is
1198  * set to "DIRECTORY".  We also support default expansion,
1199  * i.e. ${VARIABLE:-default} will expand to $VARIABLE if VARIABLE is
1200  * set in PATHS or the environment, and otherwise to "default".  Note
1201  * that "default" itself can also be a $-expression, thus
1202  * "${VAR1:-{$VAR2}}" will expand to VAR1 and if that is not defined
1203  * to VAR2.
1204  *
1205  * @param cfg configuration to use for path expansion
1206  * @param orig string to $-expand (will be freed!)
1207  * @return $-expanded string
1208  */
1209 char *
1210 GNUNET_CONFIGURATION_expand_dollar (const struct GNUNET_CONFIGURATION_Handle *cfg,
1211                                     char *orig)
1212 {
1213   return expand_dollar (cfg, orig, 0);
1214 }
1215
1216
1217 /**
1218  * Get a configuration value that should be a string.
1219  *
1220  * @param cfg configuration to inspect
1221  * @param section section of interest
1222  * @param option option of interest
1223  * @param value will be set to a freshly allocated configuration
1224  *        value, or NULL if option is not specified
1225  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
1226  */
1227 int
1228 GNUNET_CONFIGURATION_get_value_filename (const struct GNUNET_CONFIGURATION_Handle *cfg,
1229                                          const char *section,
1230                                          const char *option,
1231                                          char **value)
1232 {
1233   char *tmp;
1234
1235   LOG (GNUNET_ERROR_TYPE_DEBUG,
1236        "Asked to retrieve filename `%s' in section `%s'\n",
1237        option,
1238        section);
1239   if (GNUNET_OK !=
1240       GNUNET_CONFIGURATION_get_value_string (cfg, section, option, &tmp))
1241   {
1242     LOG (GNUNET_ERROR_TYPE_DEBUG,
1243          "Failed to retrieve filename\n");
1244     *value = NULL;
1245     return GNUNET_SYSERR;
1246   }
1247   LOG (GNUNET_ERROR_TYPE_DEBUG, "Retrieved filename `%s', $-expanding\n", tmp);
1248   tmp = GNUNET_CONFIGURATION_expand_dollar (cfg, tmp);
1249   LOG (GNUNET_ERROR_TYPE_DEBUG, "Expanded to filename `%s', *nix-expanding\n", tmp);
1250   *value = GNUNET_STRINGS_filename_expand (tmp);
1251   GNUNET_free (tmp);
1252   LOG (GNUNET_ERROR_TYPE_DEBUG, "Filename result is `%s'\n", *value);
1253   if (*value == NULL)
1254     return GNUNET_SYSERR;
1255   return GNUNET_OK;
1256 }
1257
1258
1259 /**
1260  * Get a configuration value that should be in a set of
1261  * "YES" or "NO".
1262  *
1263  * @param cfg configuration to inspect
1264  * @param section section of interest
1265  * @param option option of interest
1266  * @return #GNUNET_YES, #GNUNET_NO or #GNUNET_SYSERR
1267  */
1268 int
1269 GNUNET_CONFIGURATION_get_value_yesno (const struct GNUNET_CONFIGURATION_Handle *cfg,
1270                                       const char *section,
1271                                       const char *option)
1272 {
1273   static const char *yesno[] = { "YES", "NO", NULL };
1274   const char *val;
1275   int ret;
1276
1277   ret =
1278       GNUNET_CONFIGURATION_get_value_choice (cfg, section, option, yesno, &val);
1279   if (ret == GNUNET_SYSERR)
1280     return ret;
1281   if (val == yesno[0])
1282     return GNUNET_YES;
1283   return GNUNET_NO;
1284 }
1285
1286
1287 /**
1288  * Iterate over the set of filenames stored in a configuration value.
1289  *
1290  * @param cfg configuration to inspect
1291  * @param section section of interest
1292  * @param option option of interest
1293  * @param cb function to call on each filename
1294  * @param cb_cls closure for @a cb
1295  * @return number of filenames iterated over, -1 on error
1296  */
1297 int
1298 GNUNET_CONFIGURATION_iterate_value_filenames (const struct GNUNET_CONFIGURATION_Handle *cfg,
1299                                               const char *section,
1300                                               const char *option,
1301                                               GNUNET_FileNameCallback cb,
1302                                               void *cb_cls)
1303 {
1304   char *list;
1305   char *pos;
1306   char *end;
1307   char old;
1308   int ret;
1309
1310   if (GNUNET_OK !=
1311       GNUNET_CONFIGURATION_get_value_string (cfg, section, option, &list))
1312     return 0;
1313   GNUNET_assert (list != NULL);
1314   ret = 0;
1315   pos = list;
1316   while (1)
1317   {
1318     while (pos[0] == ' ')
1319       pos++;
1320     if (strlen (pos) == 0)
1321       break;
1322     end = pos + 1;
1323     while ((end[0] != ' ') && (end[0] != '\0'))
1324     {
1325       if (end[0] == '\\')
1326       {
1327         switch (end[1])
1328         {
1329         case '\\':
1330         case ' ':
1331           memmove (end, &end[1], strlen (&end[1]) + 1);
1332         case '\0':
1333           /* illegal, but just keep it */
1334           break;
1335         default:
1336           /* illegal, but just ignore that there was a '/' */
1337           break;
1338         }
1339       }
1340       end++;
1341     }
1342     old = end[0];
1343     end[0] = '\0';
1344     if (strlen (pos) > 0)
1345     {
1346       ret++;
1347       if ((cb != NULL) && (GNUNET_OK != cb (cb_cls, pos)))
1348       {
1349         ret = GNUNET_SYSERR;
1350         break;
1351       }
1352     }
1353     if (old == '\0')
1354       break;
1355     pos = end + 1;
1356   }
1357   GNUNET_free (list);
1358   return ret;
1359 }
1360
1361
1362 /**
1363  * FIXME.
1364  *
1365  * @param value FIXME
1366  * @return FIXME
1367  */
1368 static char *
1369 escape_name (const char *value)
1370 {
1371   char *escaped;
1372   const char *rpos;
1373   char *wpos;
1374
1375   escaped = GNUNET_malloc (strlen (value) * 2 + 1);
1376   memset (escaped, 0, strlen (value) * 2 + 1);
1377   rpos = value;
1378   wpos = escaped;
1379   while (rpos[0] != '\0')
1380   {
1381     switch (rpos[0])
1382     {
1383     case '\\':
1384     case ' ':
1385       wpos[0] = '\\';
1386       wpos[1] = rpos[0];
1387       wpos += 2;
1388       break;
1389     default:
1390       wpos[0] = rpos[0];
1391       wpos++;
1392     }
1393     rpos++;
1394   }
1395   return escaped;
1396 }
1397
1398
1399 /**
1400  * FIXME.
1401  *
1402  * @param cls string we compare with (const char*)
1403  * @param fn filename we are currently looking at
1404  * @return #GNUNET_OK if the names do not match, #GNUNET_SYSERR if they do
1405  */
1406 static int
1407 test_match (void *cls, const char *fn)
1408 {
1409   const char *of = cls;
1410
1411   return (0 == strcmp (of, fn)) ? GNUNET_SYSERR : GNUNET_OK;
1412 }
1413
1414
1415 /**
1416  * Append a filename to a configuration value that
1417  * represents a list of filenames
1418  *
1419  * @param cfg configuration to update
1420  * @param section section of interest
1421  * @param option option of interest
1422  * @param value filename to append
1423  * @return #GNUNET_OK on success,
1424  *         #GNUNET_NO if the filename already in the list
1425  *         #GNUNET_SYSERR on error
1426  */
1427 int
1428 GNUNET_CONFIGURATION_append_value_filename (struct GNUNET_CONFIGURATION_Handle *cfg,
1429                                             const char *section,
1430                                             const char *option,
1431                                             const char *value)
1432 {
1433   char *escaped;
1434   char *old;
1435   char *nw;
1436
1437   if (GNUNET_SYSERR ==
1438       GNUNET_CONFIGURATION_iterate_value_filenames (cfg, section, option,
1439                                                     &test_match,
1440                                                     (void *) value))
1441     return GNUNET_NO;           /* already exists */
1442   if (GNUNET_OK !=
1443       GNUNET_CONFIGURATION_get_value_string (cfg, section, option, &old))
1444     old = GNUNET_strdup ("");
1445   escaped = escape_name (value);
1446   nw = GNUNET_malloc (strlen (old) + strlen (escaped) + 2);
1447   strcpy (nw, old);
1448   if (strlen (old) > 0)
1449     strcat (nw, " ");
1450   strcat (nw, escaped);
1451   GNUNET_CONFIGURATION_set_value_string (cfg, section, option, nw);
1452   GNUNET_free (old);
1453   GNUNET_free (nw);
1454   GNUNET_free (escaped);
1455   return GNUNET_OK;
1456 }
1457
1458
1459 /**
1460  * Remove a filename from a configuration value that
1461  * represents a list of filenames
1462  *
1463  * @param cfg configuration to update
1464  * @param section section of interest
1465  * @param option option of interest
1466  * @param value filename to remove
1467  * @return #GNUNET_OK on success,
1468  *         #GNUNET_NO if the filename is not in the list,
1469  *         #GNUNET_SYSERR on error
1470  */
1471 int
1472 GNUNET_CONFIGURATION_remove_value_filename (struct GNUNET_CONFIGURATION_Handle
1473                                             *cfg, const char *section,
1474                                             const char *option,
1475                                             const char *value)
1476 {
1477   char *list;
1478   char *pos;
1479   char *end;
1480   char *match;
1481   char old;
1482
1483   if (GNUNET_OK !=
1484       GNUNET_CONFIGURATION_get_value_string (cfg, section, option, &list))
1485     return GNUNET_NO;
1486   match = escape_name (value);
1487   pos = list;
1488   while (1)
1489   {
1490     while (pos[0] == ' ')
1491       pos++;
1492     if (strlen (pos) == 0)
1493       break;
1494     end = pos + 1;
1495     while ((end[0] != ' ') && (end[0] != '\0'))
1496     {
1497       if (end[0] == '\\')
1498       {
1499         switch (end[1])
1500         {
1501         case '\\':
1502         case ' ':
1503           end++;
1504           break;
1505         case '\0':
1506           /* illegal, but just keep it */
1507           break;
1508         default:
1509           /* illegal, but just ignore that there was a '/' */
1510           break;
1511         }
1512       }
1513       end++;
1514     }
1515     old = end[0];
1516     end[0] = '\0';
1517     if (0 == strcmp (pos, match))
1518     {
1519       if (old != '\0')
1520         memmove (pos, &end[1], strlen (&end[1]) + 1);
1521       else
1522       {
1523         if (pos != list)
1524           pos[-1] = '\0';
1525         else
1526           pos[0] = '\0';
1527       }
1528       GNUNET_CONFIGURATION_set_value_string (cfg, section, option, list);
1529       GNUNET_free (list);
1530       GNUNET_free (match);
1531       return GNUNET_OK;
1532     }
1533     if (old == '\0')
1534       break;
1535     end[0] = old;
1536     pos = end + 1;
1537   }
1538   GNUNET_free (list);
1539   GNUNET_free (match);
1540   return GNUNET_NO;
1541 }
1542
1543
1544 /**
1545  * Wrapper around #GNUNET_CONFIGURATION_parse.  Called on each
1546  * file in a directory, we trigger parsing on those files that
1547  * end with ".conf".
1548  *
1549  * @param cls the cfg
1550  * @param filename file to parse
1551  * @return #GNUNET_OK on success
1552  */
1553 static int
1554 parse_configuration_file (void *cls, const char *filename)
1555 {
1556   struct GNUNET_CONFIGURATION_Handle *cfg = cls;
1557   char * ext;
1558   int ret;
1559
1560   /* Examine file extension */
1561   ext = strrchr (filename, '.');
1562   if ((NULL == ext) || (0 != strcmp (ext, ".conf")))
1563   {
1564     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1565                 "Skipping file `%s'\n",
1566                 filename);
1567     return GNUNET_OK;
1568   }
1569
1570   ret = GNUNET_CONFIGURATION_parse (cfg, filename);
1571   return ret;
1572 }
1573
1574
1575 /**
1576  * Load default configuration.  This function will parse the
1577  * defaults from the given defaults_d directory.
1578  *
1579  * @param cfg configuration to update
1580  * @param defaults_d directory with the defaults
1581  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
1582  */
1583 int
1584 GNUNET_CONFIGURATION_load_from (struct GNUNET_CONFIGURATION_Handle *cfg,
1585                                 const char *defaults_d)
1586 {
1587   if (GNUNET_SYSERR ==
1588       GNUNET_DISK_directory_scan (defaults_d, &parse_configuration_file, cfg))
1589     return GNUNET_SYSERR;       /* no configuration at all found */
1590   return GNUNET_OK;
1591 }
1592
1593
1594 /**
1595  * Load configuration (starts with defaults, then loads
1596  * system-specific configuration).
1597  *
1598  * @param cfg configuration to update
1599  * @param filename name of the configuration file, NULL to load defaults
1600  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
1601  */
1602 int
1603 GNUNET_CONFIGURATION_load (struct GNUNET_CONFIGURATION_Handle *cfg,
1604                            const char *filename)
1605 {
1606   char *baseconfig;
1607   char *ipath;
1608
1609   ipath = GNUNET_OS_installation_get_path (GNUNET_OS_IPK_DATADIR);
1610   if (ipath == NULL)
1611     return GNUNET_SYSERR;
1612   baseconfig = NULL;
1613   GNUNET_asprintf (&baseconfig, "%s%s", ipath, "config.d");
1614   GNUNET_free (ipath);
1615   if (GNUNET_SYSERR ==
1616       GNUNET_DISK_directory_scan (baseconfig, &parse_configuration_file, cfg))
1617   {
1618     GNUNET_free (baseconfig);
1619     return GNUNET_SYSERR;       /* no configuration at all found */
1620   }
1621   GNUNET_free (baseconfig);
1622   if ((filename != NULL) &&
1623       (GNUNET_OK != GNUNET_CONFIGURATION_parse (cfg, filename)))
1624   {
1625     /* specified configuration not found */
1626     return GNUNET_SYSERR;
1627   }
1628   if (((GNUNET_YES !=
1629         GNUNET_CONFIGURATION_have_value (cfg, "PATHS", "DEFAULTCONFIG"))) &&
1630       (filename != NULL))
1631     GNUNET_CONFIGURATION_set_value_string (cfg, "PATHS", "DEFAULTCONFIG",
1632                                            filename);
1633   return GNUNET_OK;
1634 }
1635
1636
1637 /* end of configuration.c */