c69b933a35278aba00a45beb9431329142499162
[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   size_t len;
1060
1061   if (NULL == orig)
1062     return NULL;
1063   if (depth > 128)
1064   {
1065     LOG (GNUNET_ERROR_TYPE_WARNING,
1066          _("Recursive expansion suspected, aborting $-expansion for term `%s'\n"),
1067          orig);
1068     return orig;
1069   }
1070   LOG (GNUNET_ERROR_TYPE_DEBUG,
1071        "Asked to $-expand %s\n", orig);
1072   if ('$' != orig[0])
1073   {
1074     LOG (GNUNET_ERROR_TYPE_DEBUG,
1075          "Doesn't start with $ - not expanding\n");
1076     return orig;
1077   }
1078   erased_char = 0;
1079   erased_pos = NULL;
1080   if ('{' == orig[1])
1081   {
1082     start = &orig[2];
1083     lopen = 1;
1084     end = &orig[1];
1085     while (lopen > 0)
1086     {
1087       end++;
1088       switch (*end)
1089       {
1090       case '}':
1091         lopen--;
1092         break;
1093       case '{':
1094         lopen++;
1095         break;
1096       case '\0':
1097         LOG (GNUNET_ERROR_TYPE_WARNING,
1098              _("Missing closing `%s' in option `%s'\n"),
1099              "}",
1100              orig);
1101         return orig;
1102       default:
1103         break;
1104       }
1105     }
1106     erased_char = *end;
1107     erased_pos = end;
1108     *end = '\0';
1109     post = end + 1;
1110     def = strchr (orig, ':');
1111     if (NULL != def)
1112     {
1113       *def = '\0';
1114       def++;
1115       if ( ('-' == *def) ||
1116            ('=' == *def) )
1117         def++;
1118       def = GNUNET_strdup (def);
1119     }
1120   }
1121   else
1122   {
1123     start = &orig[1];
1124     def = NULL;
1125     i = 0;
1126     while ( (orig[i] != '/') &&
1127             (orig[i] != '\\') &&
1128             (orig[i] != '\0')  &&
1129             (orig[i] != ' ') )
1130       i++;
1131     if (orig[i] == '\0')
1132     {
1133       post = "";
1134     }
1135     else
1136     {
1137       erased_char = orig[i];
1138       erased_pos = &orig[i];
1139       orig[i] = '\0';
1140       post = &orig[i + 1];
1141     }
1142   }
1143   LOG (GNUNET_ERROR_TYPE_DEBUG,
1144        "Split into `%s' and `%s' with default %s\n",
1145        start,
1146        post,
1147        def);
1148   if (GNUNET_OK !=
1149       GNUNET_CONFIGURATION_get_value_string (cfg,
1150                                              "PATHS",
1151                                              start,
1152                                              &prefix))
1153   {
1154     LOG (GNUNET_ERROR_TYPE_DEBUG,
1155          "Filename for `%s' is not in PATHS config section\n",
1156          start);
1157     if (NULL == (env = getenv (start)))
1158     {
1159       LOG (GNUNET_ERROR_TYPE_DEBUG,
1160            "`%s' is not an environment variable\n",
1161            start);
1162       /* try default */
1163       def = expand_dollar (cfg, def, depth + 1);
1164       env = def;
1165     }
1166     if (NULL == env)
1167     {
1168       start = GNUNET_strdup (start);
1169       if (erased_pos)
1170         *erased_pos = erased_char;
1171       LOG (GNUNET_ERROR_TYPE_WARNING,
1172            _("Failed to expand `%s' in `%s' as it is neither found in [PATHS] nor defined as an environmental variable\n"),
1173            start, orig);
1174       GNUNET_free (start);
1175       return orig;
1176     }
1177     prefix = GNUNET_strdup (env);
1178   }
1179   prefix = GNUNET_CONFIGURATION_expand_dollar (cfg, prefix);
1180   LOG (GNUNET_ERROR_TYPE_DEBUG,
1181        "Prefix is `%s'\n",
1182        prefix);
1183   if ( (erased_pos) && ('}' != erased_char) )
1184   {
1185     len = strlen (prefix) + 1;
1186     prefix = GNUNET_realloc (prefix, len + 1);
1187     prefix[len - 1] = erased_char;
1188     prefix[len] = '\0';
1189   }
1190   result = GNUNET_malloc (strlen (prefix) + strlen (post) + 1);
1191   strcpy (result, prefix);
1192   strcat (result, post);
1193   GNUNET_free_non_null (def);
1194   GNUNET_free (prefix);
1195   GNUNET_free (orig);
1196   LOG (GNUNET_ERROR_TYPE_DEBUG,
1197        "Expanded to `%s'\n",
1198        result);
1199   return result;
1200 }
1201
1202
1203 /**
1204  * Expand an expression of the form "$FOO/BAR" to "DIRECTORY/BAR"
1205  * where either in the "PATHS" section or the environtment "FOO" is
1206  * set to "DIRECTORY".  We also support default expansion,
1207  * i.e. ${VARIABLE:-default} will expand to $VARIABLE if VARIABLE is
1208  * set in PATHS or the environment, and otherwise to "default".  Note
1209  * that "default" itself can also be a $-expression, thus
1210  * "${VAR1:-{$VAR2}}" will expand to VAR1 and if that is not defined
1211  * to VAR2.
1212  *
1213  * @param cfg configuration to use for path expansion
1214  * @param orig string to $-expand (will be freed!).  Note that multiple
1215  *          $-expressions can be present in this string.  They will all be
1216  *          $-expanded.
1217  * @return $-expanded string
1218  */
1219 char *
1220 GNUNET_CONFIGURATION_expand_dollar (const struct GNUNET_CONFIGURATION_Handle *cfg,
1221                                     char *orig)
1222 {
1223   char *dup;
1224   size_t i;
1225   size_t len;
1226
1227   for (i = 0; '\0' != orig[i]; i++)
1228   {
1229     if ('$' != orig[i])
1230       continue;
1231     dup = GNUNET_strdup (orig + i);
1232     dup = expand_dollar (cfg, dup, 0);
1233     len = strlen (dup) + 1;
1234     orig = GNUNET_realloc (orig, i + len);
1235     memcpy (orig + i, dup, len);
1236     GNUNET_free (dup);
1237   }
1238   return orig;
1239 }
1240
1241
1242 /**
1243  * Get a configuration value that should be a string.
1244  *
1245  * @param cfg configuration to inspect
1246  * @param section section of interest
1247  * @param option option of interest
1248  * @param value will be set to a freshly allocated configuration
1249  *        value, or NULL if option is not specified
1250  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
1251  */
1252 int
1253 GNUNET_CONFIGURATION_get_value_filename (const struct GNUNET_CONFIGURATION_Handle *cfg,
1254                                          const char *section,
1255                                          const char *option,
1256                                          char **value)
1257 {
1258   char *tmp;
1259
1260   LOG (GNUNET_ERROR_TYPE_DEBUG,
1261        "Asked to retrieve filename `%s' in section `%s'\n",
1262        option,
1263        section);
1264   if (GNUNET_OK !=
1265       GNUNET_CONFIGURATION_get_value_string (cfg, section, option, &tmp))
1266   {
1267     LOG (GNUNET_ERROR_TYPE_DEBUG,
1268          "Failed to retrieve filename\n");
1269     *value = NULL;
1270     return GNUNET_SYSERR;
1271   }
1272   LOG (GNUNET_ERROR_TYPE_DEBUG, "Retrieved filename `%s', $-expanding\n", tmp);
1273   tmp = GNUNET_CONFIGURATION_expand_dollar (cfg, tmp);
1274   LOG (GNUNET_ERROR_TYPE_DEBUG, "Expanded to filename `%s', *nix-expanding\n", tmp);
1275   *value = GNUNET_STRINGS_filename_expand (tmp);
1276   GNUNET_free (tmp);
1277   LOG (GNUNET_ERROR_TYPE_DEBUG, "Filename result is `%s'\n", *value);
1278   if (*value == NULL)
1279     return GNUNET_SYSERR;
1280   return GNUNET_OK;
1281 }
1282
1283
1284 /**
1285  * Get a configuration value that should be in a set of
1286  * "YES" or "NO".
1287  *
1288  * @param cfg configuration to inspect
1289  * @param section section of interest
1290  * @param option option of interest
1291  * @return #GNUNET_YES, #GNUNET_NO or #GNUNET_SYSERR
1292  */
1293 int
1294 GNUNET_CONFIGURATION_get_value_yesno (const struct GNUNET_CONFIGURATION_Handle *cfg,
1295                                       const char *section,
1296                                       const char *option)
1297 {
1298   static const char *yesno[] = { "YES", "NO", NULL };
1299   const char *val;
1300   int ret;
1301
1302   ret =
1303       GNUNET_CONFIGURATION_get_value_choice (cfg, section, option, yesno, &val);
1304   if (ret == GNUNET_SYSERR)
1305     return ret;
1306   if (val == yesno[0])
1307     return GNUNET_YES;
1308   return GNUNET_NO;
1309 }
1310
1311
1312 /**
1313  * Iterate over the set of filenames stored in a configuration value.
1314  *
1315  * @param cfg configuration to inspect
1316  * @param section section of interest
1317  * @param option option of interest
1318  * @param cb function to call on each filename
1319  * @param cb_cls closure for @a cb
1320  * @return number of filenames iterated over, -1 on error
1321  */
1322 int
1323 GNUNET_CONFIGURATION_iterate_value_filenames (const struct GNUNET_CONFIGURATION_Handle *cfg,
1324                                               const char *section,
1325                                               const char *option,
1326                                               GNUNET_FileNameCallback cb,
1327                                               void *cb_cls)
1328 {
1329   char *list;
1330   char *pos;
1331   char *end;
1332   char old;
1333   int ret;
1334
1335   if (GNUNET_OK !=
1336       GNUNET_CONFIGURATION_get_value_string (cfg, section, option, &list))
1337     return 0;
1338   GNUNET_assert (list != NULL);
1339   ret = 0;
1340   pos = list;
1341   while (1)
1342   {
1343     while (pos[0] == ' ')
1344       pos++;
1345     if (strlen (pos) == 0)
1346       break;
1347     end = pos + 1;
1348     while ((end[0] != ' ') && (end[0] != '\0'))
1349     {
1350       if (end[0] == '\\')
1351       {
1352         switch (end[1])
1353         {
1354         case '\\':
1355         case ' ':
1356           memmove (end, &end[1], strlen (&end[1]) + 1);
1357         case '\0':
1358           /* illegal, but just keep it */
1359           break;
1360         default:
1361           /* illegal, but just ignore that there was a '/' */
1362           break;
1363         }
1364       }
1365       end++;
1366     }
1367     old = end[0];
1368     end[0] = '\0';
1369     if (strlen (pos) > 0)
1370     {
1371       ret++;
1372       if ((cb != NULL) && (GNUNET_OK != cb (cb_cls, pos)))
1373       {
1374         ret = GNUNET_SYSERR;
1375         break;
1376       }
1377     }
1378     if (old == '\0')
1379       break;
1380     pos = end + 1;
1381   }
1382   GNUNET_free (list);
1383   return ret;
1384 }
1385
1386
1387 /**
1388  * FIXME.
1389  *
1390  * @param value FIXME
1391  * @return FIXME
1392  */
1393 static char *
1394 escape_name (const char *value)
1395 {
1396   char *escaped;
1397   const char *rpos;
1398   char *wpos;
1399
1400   escaped = GNUNET_malloc (strlen (value) * 2 + 1);
1401   memset (escaped, 0, strlen (value) * 2 + 1);
1402   rpos = value;
1403   wpos = escaped;
1404   while (rpos[0] != '\0')
1405   {
1406     switch (rpos[0])
1407     {
1408     case '\\':
1409     case ' ':
1410       wpos[0] = '\\';
1411       wpos[1] = rpos[0];
1412       wpos += 2;
1413       break;
1414     default:
1415       wpos[0] = rpos[0];
1416       wpos++;
1417     }
1418     rpos++;
1419   }
1420   return escaped;
1421 }
1422
1423
1424 /**
1425  * FIXME.
1426  *
1427  * @param cls string we compare with (const char*)
1428  * @param fn filename we are currently looking at
1429  * @return #GNUNET_OK if the names do not match, #GNUNET_SYSERR if they do
1430  */
1431 static int
1432 test_match (void *cls, const char *fn)
1433 {
1434   const char *of = cls;
1435
1436   return (0 == strcmp (of, fn)) ? GNUNET_SYSERR : GNUNET_OK;
1437 }
1438
1439
1440 /**
1441  * Append a filename to a configuration value that
1442  * represents a list of filenames
1443  *
1444  * @param cfg configuration to update
1445  * @param section section of interest
1446  * @param option option of interest
1447  * @param value filename to append
1448  * @return #GNUNET_OK on success,
1449  *         #GNUNET_NO if the filename already in the list
1450  *         #GNUNET_SYSERR on error
1451  */
1452 int
1453 GNUNET_CONFIGURATION_append_value_filename (struct GNUNET_CONFIGURATION_Handle *cfg,
1454                                             const char *section,
1455                                             const char *option,
1456                                             const char *value)
1457 {
1458   char *escaped;
1459   char *old;
1460   char *nw;
1461
1462   if (GNUNET_SYSERR ==
1463       GNUNET_CONFIGURATION_iterate_value_filenames (cfg, section, option,
1464                                                     &test_match,
1465                                                     (void *) value))
1466     return GNUNET_NO;           /* already exists */
1467   if (GNUNET_OK !=
1468       GNUNET_CONFIGURATION_get_value_string (cfg, section, option, &old))
1469     old = GNUNET_strdup ("");
1470   escaped = escape_name (value);
1471   nw = GNUNET_malloc (strlen (old) + strlen (escaped) + 2);
1472   strcpy (nw, old);
1473   if (strlen (old) > 0)
1474     strcat (nw, " ");
1475   strcat (nw, escaped);
1476   GNUNET_CONFIGURATION_set_value_string (cfg, section, option, nw);
1477   GNUNET_free (old);
1478   GNUNET_free (nw);
1479   GNUNET_free (escaped);
1480   return GNUNET_OK;
1481 }
1482
1483
1484 /**
1485  * Remove a filename from a configuration value that
1486  * represents a list of filenames
1487  *
1488  * @param cfg configuration to update
1489  * @param section section of interest
1490  * @param option option of interest
1491  * @param value filename to remove
1492  * @return #GNUNET_OK on success,
1493  *         #GNUNET_NO if the filename is not in the list,
1494  *         #GNUNET_SYSERR on error
1495  */
1496 int
1497 GNUNET_CONFIGURATION_remove_value_filename (struct GNUNET_CONFIGURATION_Handle
1498                                             *cfg, const char *section,
1499                                             const char *option,
1500                                             const char *value)
1501 {
1502   char *list;
1503   char *pos;
1504   char *end;
1505   char *match;
1506   char old;
1507
1508   if (GNUNET_OK !=
1509       GNUNET_CONFIGURATION_get_value_string (cfg, section, option, &list))
1510     return GNUNET_NO;
1511   match = escape_name (value);
1512   pos = list;
1513   while (1)
1514   {
1515     while (pos[0] == ' ')
1516       pos++;
1517     if (strlen (pos) == 0)
1518       break;
1519     end = pos + 1;
1520     while ((end[0] != ' ') && (end[0] != '\0'))
1521     {
1522       if (end[0] == '\\')
1523       {
1524         switch (end[1])
1525         {
1526         case '\\':
1527         case ' ':
1528           end++;
1529           break;
1530         case '\0':
1531           /* illegal, but just keep it */
1532           break;
1533         default:
1534           /* illegal, but just ignore that there was a '/' */
1535           break;
1536         }
1537       }
1538       end++;
1539     }
1540     old = end[0];
1541     end[0] = '\0';
1542     if (0 == strcmp (pos, match))
1543     {
1544       if (old != '\0')
1545         memmove (pos, &end[1], strlen (&end[1]) + 1);
1546       else
1547       {
1548         if (pos != list)
1549           pos[-1] = '\0';
1550         else
1551           pos[0] = '\0';
1552       }
1553       GNUNET_CONFIGURATION_set_value_string (cfg, section, option, list);
1554       GNUNET_free (list);
1555       GNUNET_free (match);
1556       return GNUNET_OK;
1557     }
1558     if (old == '\0')
1559       break;
1560     end[0] = old;
1561     pos = end + 1;
1562   }
1563   GNUNET_free (list);
1564   GNUNET_free (match);
1565   return GNUNET_NO;
1566 }
1567
1568
1569 /**
1570  * Wrapper around #GNUNET_CONFIGURATION_parse.  Called on each
1571  * file in a directory, we trigger parsing on those files that
1572  * end with ".conf".
1573  *
1574  * @param cls the cfg
1575  * @param filename file to parse
1576  * @return #GNUNET_OK on success
1577  */
1578 static int
1579 parse_configuration_file (void *cls, const char *filename)
1580 {
1581   struct GNUNET_CONFIGURATION_Handle *cfg = cls;
1582   char * ext;
1583   int ret;
1584
1585   /* Examine file extension */
1586   ext = strrchr (filename, '.');
1587   if ((NULL == ext) || (0 != strcmp (ext, ".conf")))
1588   {
1589     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1590                 "Skipping file `%s'\n",
1591                 filename);
1592     return GNUNET_OK;
1593   }
1594
1595   ret = GNUNET_CONFIGURATION_parse (cfg, filename);
1596   return ret;
1597 }
1598
1599
1600 /**
1601  * Load default configuration.  This function will parse the
1602  * defaults from the given defaults_d directory.
1603  *
1604  * @param cfg configuration to update
1605  * @param defaults_d directory with the defaults
1606  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
1607  */
1608 int
1609 GNUNET_CONFIGURATION_load_from (struct GNUNET_CONFIGURATION_Handle *cfg,
1610                                 const char *defaults_d)
1611 {
1612   if (GNUNET_SYSERR ==
1613       GNUNET_DISK_directory_scan (defaults_d, &parse_configuration_file, cfg))
1614     return GNUNET_SYSERR;       /* no configuration at all found */
1615   return GNUNET_OK;
1616 }
1617
1618
1619 /**
1620  * Load configuration (starts with defaults, then loads
1621  * system-specific configuration).
1622  *
1623  * @param cfg configuration to update
1624  * @param filename name of the configuration file, NULL to load defaults
1625  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
1626  */
1627 int
1628 GNUNET_CONFIGURATION_load (struct GNUNET_CONFIGURATION_Handle *cfg,
1629                            const char *filename)
1630 {
1631   char *baseconfig;
1632   char *ipath;
1633
1634   ipath = GNUNET_OS_installation_get_path (GNUNET_OS_IPK_DATADIR);
1635   if (ipath == NULL)
1636     return GNUNET_SYSERR;
1637   baseconfig = NULL;
1638   GNUNET_asprintf (&baseconfig, "%s%s", ipath, "config.d");
1639   GNUNET_free (ipath);
1640   if (GNUNET_SYSERR ==
1641       GNUNET_DISK_directory_scan (baseconfig, &parse_configuration_file, cfg))
1642   {
1643     GNUNET_free (baseconfig);
1644     return GNUNET_SYSERR;       /* no configuration at all found */
1645   }
1646   GNUNET_free (baseconfig);
1647   if ((filename != NULL) &&
1648       (GNUNET_OK != GNUNET_CONFIGURATION_parse (cfg, filename)))
1649   {
1650     /* specified configuration not found */
1651     return GNUNET_SYSERR;
1652   }
1653   if (((GNUNET_YES !=
1654         GNUNET_CONFIGURATION_have_value (cfg, "PATHS", "DEFAULTCONFIG"))) &&
1655       (filename != NULL))
1656     GNUNET_CONFIGURATION_set_value_string (cfg, "PATHS", "DEFAULTCONFIG",
1657                                            filename);
1658   return GNUNET_OK;
1659 }
1660
1661
1662 /* end of configuration.c */