]> arthur.barton.de Git - netdata.git/blob - src/appconfig.c
proxies disconnect and reconnect to follow the receiving side
[netdata.git] / src / appconfig.c
1 #include "common.h"
2
3 #define CONFIG_FILE_LINE_MAX ((CONFIG_MAX_NAME + CONFIG_MAX_VALUE + 1024) * 2)
4
5 // ----------------------------------------------------------------------------
6 // definitions
7
8 #define CONFIG_VALUE_LOADED  0x01 // has been loaded from the config
9 #define CONFIG_VALUE_USED    0x02 // has been accessed from the program
10 #define CONFIG_VALUE_CHANGED 0x04 // has been changed from the loaded value
11 #define CONFIG_VALUE_CHECKED 0x08 // has been checked if the value is different from the default
12
13 struct config_option {
14     avl avl;                // the index - this has to be first!
15
16     uint8_t flags;
17     uint32_t hash;          // a simple hash to speed up searching
18                             // we first compare hashes, and only if the hashes are equal we do string comparisons
19
20     char *name;
21     char *value;
22
23     struct config_option *next; // config->mutex protects just this
24 };
25
26 struct section {
27     avl avl;
28
29     uint32_t hash;          // a simple hash to speed up searching
30                             // we first compare hashes, and only if the hashes are equal we do string comparisons
31
32     char *name;
33
34     struct section *next;    // gloabl config_mutex protects just this
35
36     struct config_option *values;
37     avl_tree_lock values_index;
38
39     pthread_mutex_t mutex;  // this locks only the writers, to ensure atomic updates
40                             // readers are protected using the rwlock in avl_tree_lock
41 };
42
43 static int appconfig_section_compare(void *a, void *b);
44
45 struct config netdata_config = {
46         .sections = NULL,
47         .mutex = PTHREAD_MUTEX_INITIALIZER,
48         .index = {
49             { NULL, appconfig_section_compare },
50             AVL_LOCK_INITIALIZER
51         }
52 };
53
54 struct config stream_config = {
55         .sections = NULL,
56         .mutex = PTHREAD_MUTEX_INITIALIZER,
57         .index = {
58                 { NULL, appconfig_section_compare },
59                 AVL_LOCK_INITIALIZER
60         }
61 };
62
63 // ----------------------------------------------------------------------------
64 // locking
65
66 static inline void appconfig_wrlock(struct config *root) {
67     pthread_mutex_lock(&root->mutex);
68 }
69
70 static inline void appconfig_unlock(struct config *root) {
71     pthread_mutex_unlock(&root->mutex);
72 }
73
74 static inline void config_section_wrlock(struct section *co) {
75     pthread_mutex_lock(&co->mutex);
76 }
77
78 static inline void config_section_unlock(struct section *co) {
79     pthread_mutex_unlock(&co->mutex);
80 }
81
82
83 // ----------------------------------------------------------------------------
84 // config name-value index
85
86 static int appconfig_option_compare(void *a, void *b) {
87     if(((struct config_option *)a)->hash < ((struct config_option *)b)->hash) return -1;
88     else if(((struct config_option *)a)->hash > ((struct config_option *)b)->hash) return 1;
89     else return strcmp(((struct config_option *)a)->name, ((struct config_option *)b)->name);
90 }
91
92 #define appconfig_option_index_add(co, cv) (struct config_option *)avl_insert_lock(&((co)->values_index), (avl *)(cv))
93 #define appconfig_option_index_del(co, cv) (struct config_option *)avl_remove_lock(&((co)->values_index), (avl *)(cv))
94
95 static struct config_option *appconfig_option_index_find(struct section *co, const char *name, uint32_t hash) {
96     struct config_option tmp;
97     tmp.hash = (hash)?hash:simple_hash(name);
98     tmp.name = (char *)name;
99
100     return (struct config_option *)avl_search_lock(&(co->values_index), (avl *) &tmp);
101 }
102
103
104 // ----------------------------------------------------------------------------
105 // config sections index
106
107 static int appconfig_section_compare(void *a, void *b) {
108     if(((struct section *)a)->hash < ((struct section *)b)->hash) return -1;
109     else if(((struct section *)a)->hash > ((struct section *)b)->hash) return 1;
110     else return strcmp(((struct section *)a)->name, ((struct section *)b)->name);
111 }
112
113 #define appconfig_index_add(root, cfg) (struct section *)avl_insert_lock(&root->index, (avl *)(cfg))
114 #define appconfig_index_del(root, cfg) (struct section *)avl_remove_lock(&root->index, (avl *)(cfg))
115
116 static struct section *appconfig_index_find(struct config *root, const char *name, uint32_t hash) {
117     struct section tmp;
118     tmp.hash = (hash)?hash:simple_hash(name);
119     tmp.name = (char *)name;
120
121     return (struct section *)avl_search_lock(&root->index, (avl *) &tmp);
122 }
123
124
125 // ----------------------------------------------------------------------------
126 // config section methods
127
128 static inline struct section *appconfig_section_find(struct config *root, const char *section) {
129     return appconfig_index_find(root, section, 0);
130 }
131
132 static inline struct section *appconfig_section_create(struct config *root, const char *section) {
133     debug(D_CONFIG, "Creating section '%s'.", section);
134
135     struct section *co = callocz(1, sizeof(struct section));
136     co->name = strdupz(section);
137     co->hash = simple_hash(co->name);
138
139     avl_init_lock(&co->values_index, appconfig_option_compare);
140
141     if(unlikely(appconfig_index_add(root, co) != co))
142         error("INTERNAL ERROR: indexing of section '%s', already exists.", co->name);
143
144     appconfig_wrlock(root);
145     struct section *co2 = root->sections;
146     if(co2) {
147         while (co2->next) co2 = co2->next;
148         co2->next = co;
149     }
150     else root->sections = co;
151     appconfig_unlock(root);
152
153     return co;
154 }
155
156
157 // ----------------------------------------------------------------------------
158 // config name-value methods
159
160 static inline struct config_option *appconfig_value_create(struct section *co, const char *name, const char *value)
161 {
162     debug(D_CONFIG, "Creating config entry for name '%s', value '%s', in section '%s'.", name, value, co->name);
163
164     struct config_option *cv = callocz(1, sizeof(struct config_option));
165     cv->name = strdupz(name);
166     cv->hash = simple_hash(cv->name);
167     cv->value = strdupz(value);
168
169     if(unlikely(appconfig_option_index_add(co, cv) != cv))
170         error("INTERNAL ERROR: indexing of config '%s' in section '%s': already exists.", cv->name, co->name);
171
172     config_section_wrlock(co);
173     struct config_option *cv2 = co->values;
174     if(cv2) {
175         while (cv2->next) cv2 = cv2->next;
176         cv2->next = cv;
177     }
178     else co->values = cv;
179     config_section_unlock(co);
180
181     return cv;
182 }
183
184 int appconfig_exists(struct config *root, const char *section, const char *name) {
185     struct config_option *cv;
186
187     debug(D_CONFIG, "request to get config in section '%s', name '%s'", section, name);
188
189     struct section *co = appconfig_section_find(root, section);
190     if(!co) return 0;
191
192     cv = appconfig_option_index_find(co, name, 0);
193     if(!cv) return 0;
194
195     return 1;
196 }
197
198 int appconfig_move(struct config *root, const char *section_old, const char *name_old, const char *section_new, const char *name_new) {
199     struct config_option *cv_old, *cv_new;
200     int ret = -1;
201
202     debug(D_CONFIG, "request to rename config in section '%s', old name '%s', to section '%s', new name '%s'", section_old, name_old, section_new, name_new);
203
204     struct section *co_old = appconfig_section_find(root, section_old);
205     if(!co_old) return ret;
206
207     struct section *co_new = appconfig_section_find(root, section_new);
208     if(!co_new) co_new = appconfig_section_create(root, section_new);
209
210     config_section_wrlock(co_old);
211     config_section_wrlock(co_new);
212
213     cv_old = appconfig_option_index_find(co_old, name_old, 0);
214     if(!cv_old) goto cleanup;
215
216     cv_new = appconfig_option_index_find(co_new, name_new, 0);
217     if(cv_new) goto cleanup;
218
219     if(unlikely(appconfig_option_index_del(co_old, cv_old) != cv_old))
220         error("INTERNAL ERROR: deletion of config '%s' from section '%s', deleted tge wrong config entry.", cv_old->name, co_old->name);
221
222     if(co_old->values == cv_old) {
223         co_old->values = cv_old->next;
224     }
225     else {
226         struct config_option *t;
227         for(t = co_old->values; t && t->next != cv_old ;t = t->next) ;
228         if(!t || t->next != cv_old)
229             error("INTERNAL ERROR: cannot find variable '%s' in section '%s' of the config - but it should be there.", cv_old->name, co_old->name);
230         else
231             t->next = cv_old->next;
232     }
233
234     freez(cv_old->name);
235     cv_old->name = strdupz(name_new);
236     cv_old->hash = simple_hash(cv_old->name);
237
238     cv_new = cv_old;
239     cv_new->next = co_new->values;
240     co_new->values = cv_new;
241
242     if(unlikely(appconfig_option_index_add(co_new, cv_old) != cv_old))
243         error("INTERNAL ERROR: indexing of config '%s' in section '%s', already exists.", cv_old->name, co_new->name);
244
245     ret = 0;
246
247 cleanup:
248     config_section_unlock(co_new);
249     config_section_unlock(co_old);
250     return ret;
251 }
252
253 char *appconfig_get(struct config *root, const char *section, const char *name, const char *default_value)
254 {
255     struct config_option *cv;
256
257     debug(D_CONFIG, "request to get config in section '%s', name '%s', default_value '%s'", section, name, default_value);
258
259     struct section *co = appconfig_section_find(root, section);
260     if(!co) co = appconfig_section_create(root, section);
261
262     cv = appconfig_option_index_find(co, name, 0);
263     if(!cv) {
264         cv = appconfig_value_create(co, name, default_value);
265         if(!cv) return NULL;
266     }
267     cv->flags |= CONFIG_VALUE_USED;
268
269     if((cv->flags & CONFIG_VALUE_LOADED) || (cv->flags & CONFIG_VALUE_CHANGED)) {
270         // this is a loaded value from the config file
271         // if it is different that the default, mark it
272         if(!(cv->flags & CONFIG_VALUE_CHECKED)) {
273             if(strcmp(cv->value, default_value) != 0) cv->flags |= CONFIG_VALUE_CHANGED;
274             cv->flags |= CONFIG_VALUE_CHECKED;
275         }
276     }
277
278     return(cv->value);
279 }
280
281 long long appconfig_get_number(struct config *root, const char *section, const char *name, long long value)
282 {
283     char buffer[100], *s;
284     sprintf(buffer, "%lld", value);
285
286     s = appconfig_get(root, section, name, buffer);
287     if(!s) return value;
288
289     return strtoll(s, NULL, 0);
290 }
291
292 int appconfig_get_boolean(struct config *root, const char *section, const char *name, int value)
293 {
294     char *s;
295     if(value) s = "yes";
296     else s = "no";
297
298     s = appconfig_get(root, section, name, s);
299     if(!s) return value;
300
301     if(!strcmp(s, "yes") || !strcmp(s, "auto") || !strcmp(s, "on demand")) return 1;
302     return 0;
303 }
304
305 int appconfig_get_boolean_ondemand(struct config *root, const char *section, const char *name, int value)
306 {
307     char *s;
308
309     if(value == CONFIG_BOOLEAN_AUTO)
310         s = "auto";
311
312     else if(value == CONFIG_BOOLEAN_NO)
313         s = "no";
314
315     else
316         s = "yes";
317
318     s = appconfig_get(root, section, name, s);
319     if(!s) return value;
320
321     if(!strcmp(s, "yes"))
322         return CONFIG_BOOLEAN_YES;
323     else if(!strcmp(s, "no"))
324         return CONFIG_BOOLEAN_NO;
325     else if(!strcmp(s, "auto") || !strcmp(s, "on demand"))
326         return CONFIG_BOOLEAN_AUTO;
327
328     return value;
329 }
330
331 const char *appconfig_set_default(struct config *root, const char *section, const char *name, const char *value)
332 {
333     struct config_option *cv;
334
335     debug(D_CONFIG, "request to set config in section '%s', name '%s', value '%s'", section, name, value);
336
337     struct section *co = appconfig_section_find(root, section);
338     if(!co) return appconfig_set(root, section, name, value);
339
340     cv = appconfig_option_index_find(co, name, 0);
341     if(!cv) return appconfig_set(root, section, name, value);
342
343     cv->flags |= CONFIG_VALUE_USED;
344
345     if(cv->flags & CONFIG_VALUE_LOADED)
346         return cv->value;
347
348     if(strcmp(cv->value, value) != 0) {
349         cv->flags |= CONFIG_VALUE_CHANGED;
350
351         freez(cv->value);
352         cv->value = strdupz(value);
353     }
354
355     return cv->value;
356 }
357
358 const char *appconfig_set(struct config *root, const char *section, const char *name, const char *value)
359 {
360     struct config_option *cv;
361
362     debug(D_CONFIG, "request to set config in section '%s', name '%s', value '%s'", section, name, value);
363
364     struct section *co = appconfig_section_find(root, section);
365     if(!co) co = appconfig_section_create(root, section);
366
367     cv = appconfig_option_index_find(co, name, 0);
368     if(!cv) cv = appconfig_value_create(co, name, value);
369     cv->flags |= CONFIG_VALUE_USED;
370
371     if(strcmp(cv->value, value) != 0) {
372         cv->flags |= CONFIG_VALUE_CHANGED;
373
374         freez(cv->value);
375         cv->value = strdupz(value);
376     }
377
378     return value;
379 }
380
381 long long appconfig_set_number(struct config *root, const char *section, const char *name, long long value)
382 {
383     char buffer[100];
384     sprintf(buffer, "%lld", value);
385
386     appconfig_set(root, section, name, buffer);
387
388     return value;
389 }
390
391 int appconfig_set_boolean(struct config *root, const char *section, const char *name, int value)
392 {
393     char *s;
394     if(value) s = "yes";
395     else s = "no";
396
397     appconfig_set(root, section, name, s);
398
399     return value;
400 }
401
402
403 // ----------------------------------------------------------------------------
404 // config load/save
405
406 int appconfig_load(struct config *root, char *filename, int overwrite_used)
407 {
408     int line = 0;
409     struct section *co = NULL;
410
411     char buffer[CONFIG_FILE_LINE_MAX + 1], *s;
412
413     if(!filename) filename = CONFIG_DIR "/" CONFIG_FILENAME;
414
415     debug(D_CONFIG, "Opening config file '%s'", filename);
416
417     FILE *fp = fopen(filename, "r");
418     if(!fp) {
419         error("Cannot open file '%s'", filename);
420         return 0;
421     }
422
423     while(fgets(buffer, CONFIG_FILE_LINE_MAX, fp) != NULL) {
424         buffer[CONFIG_FILE_LINE_MAX] = '\0';
425         line++;
426
427         s = trim(buffer);
428         if(!s) {
429             debug(D_CONFIG, "Ignoring line %d, it is empty.", line);
430             continue;
431         }
432
433         int len = (int) strlen(s);
434         if(*s == '[' && s[len - 1] == ']') {
435             // new section
436             s[len - 1] = '\0';
437             s++;
438
439             co = appconfig_section_find(root, s);
440             if(!co) co = appconfig_section_create(root, s);
441
442             continue;
443         }
444
445         if(!co) {
446             // line outside a section
447             error("Ignoring line %d ('%s'), it is outside all sections.", line, s);
448             continue;
449         }
450
451         char *name = s;
452         char *value = strchr(s, '=');
453         if(!value) {
454             error("Ignoring line %d ('%s'), there is no = in it.", line, s);
455             continue;
456         }
457         *value = '\0';
458         value++;
459
460         name = trim(name);
461         value = trim(value);
462
463         if(!name) {
464             error("Ignoring line %d, name is empty.", line);
465             continue;
466         }
467         if(!value) {
468             debug(D_CONFIG, "Ignoring line %d, value is empty.", line);
469             continue;
470         }
471
472         struct config_option *cv = appconfig_option_index_find(co, name, 0);
473
474         if(!cv) cv = appconfig_value_create(co, name, value);
475         else {
476             if(((cv->flags & CONFIG_VALUE_USED) && overwrite_used) || !(cv->flags & CONFIG_VALUE_USED)) {
477                 debug(D_CONFIG, "Line %d, overwriting '%s/%s'.", line, co->name, cv->name);
478                 freez(cv->value);
479                 cv->value = strdupz(value);
480             }
481             else
482                 debug(D_CONFIG, "Ignoring line %d, '%s/%s' is already present and used.", line, co->name, cv->name);
483         }
484         cv->flags |= CONFIG_VALUE_LOADED;
485     }
486
487     fclose(fp);
488
489     return 1;
490 }
491
492 void appconfig_generate(struct config *root, BUFFER *wb, int only_changed)
493 {
494     int i, pri;
495     struct section *co;
496     struct config_option *cv;
497
498     for(i = 0; i < 3 ;i++) {
499         switch(i) {
500             case 0:
501                 buffer_strcat(wb,
502                     "# netdata configuration\n"
503                     "#\n"
504                     "# You can download the latest version of this file, using:\n"
505                     "#\n"
506                     "#  wget -O /etc/netdata/netdata.conf http://localhost:19999/netdata.conf\n"
507                     "# or\n"
508                     "#  curl -o /etc/netdata/netdata.conf http://localhost:19999/netdata.conf\n"
509                     "#\n"
510                     "# You can uncomment and change any of the options below.\n"
511                     "# The value shown in the commented settings, is the default value.\n"
512                     "#\n"
513                     "\n# global netdata configuration\n");
514                 break;
515
516             case 1:
517                 buffer_strcat(wb, "\n\n# per plugin configuration\n");
518                 break;
519
520             case 2:
521                 buffer_strcat(wb, "\n\n# per chart configuration\n");
522                 break;
523         }
524
525         appconfig_wrlock(root);
526         for(co = root->sections; co ; co = co->next) {
527             if(!strcmp(co->name, CONFIG_SECTION_GLOBAL)
528                || !strcmp(co->name, CONFIG_SECTION_API)
529                || !strcmp(co->name, CONFIG_SECTION_PLUGINS)
530                || !strcmp(co->name, CONFIG_SECTION_REGISTRY)
531                || !strcmp(co->name, CONFIG_SECTION_HEALTH)
532                || !strcmp(co->name, CONFIG_SECTION_BACKEND)
533                || !strcmp(co->name, CONFIG_SECTION_STREAM)
534                     )
535                 pri = 0;
536             else if(!strncmp(co->name, "plugin:", 7)) pri = 1;
537             else pri = 2;
538
539             if(i == pri) {
540                 int used = 0;
541                 int changed = 0;
542                 int count = 0;
543
544                 config_section_wrlock(co);
545                 for(cv = co->values; cv ; cv = cv->next) {
546                     used += (cv->flags & CONFIG_VALUE_USED)?1:0;
547                     changed += (cv->flags & CONFIG_VALUE_CHANGED)?1:0;
548                     count++;
549                 }
550                 config_section_unlock(co);
551
552                 if(!count) continue;
553                 if(only_changed && !changed) continue;
554
555                 if(!used) {
556                     buffer_sprintf(wb, "\n# node '%s' is not used.", co->name);
557                 }
558
559                 buffer_sprintf(wb, "\n[%s]\n", co->name);
560
561                 config_section_wrlock(co);
562                 for(cv = co->values; cv ; cv = cv->next) {
563
564                     if(used && !(cv->flags & CONFIG_VALUE_USED)) {
565                         buffer_sprintf(wb, "\n\t# option '%s' is not used.\n", cv->name);
566                     }
567                     buffer_sprintf(wb, "\t%s%s = %s\n", ((!(cv->flags & CONFIG_VALUE_CHANGED)) && (cv->flags & CONFIG_VALUE_USED))?"# ":"", cv->name, cv->value);
568                 }
569                 config_section_unlock(co);
570             }
571         }
572         appconfig_unlock(root);
573     }
574 }