configfile.c: Use plugin name from plugin context in error reporting
[collectd.git] / src / daemon / plugin.c
1 /**
2  * collectd - src/plugin.c
3  * Copyright (C) 2005-2014  Florian octo Forster
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in
13  * all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21  * DEALINGS IN THE SOFTWARE.
22  *
23  * Authors:
24  *   Florian octo Forster <octo at collectd.org>
25  *   Sebastian Harl <sh at tokkee.org>
26  **/
27
28 /* _GNU_SOURCE is needed in Linux to use pthread_setname_np */
29 #define _GNU_SOURCE
30
31 #include "collectd.h"
32
33 #include "common.h"
34 #include "configfile.h"
35 #include "filter_chain.h"
36 #include "plugin.h"
37 #include "utils_avltree.h"
38 #include "utils_cache.h"
39 #include "utils_complain.h"
40 #include "utils_heap.h"
41 #include "utils_llist.h"
42 #include "utils_random.h"
43 #include "utils_time.h"
44
45 #if HAVE_PTHREAD_NP_H
46 #include <pthread_np.h> /* for pthread_set_name_np(3) */
47 #endif
48
49 #include <dlfcn.h>
50
51 /*
52  * Private structures
53  */
54 struct callback_func_s {
55   void *cf_callback;
56   user_data_t cf_udata;
57   plugin_ctx_t cf_ctx;
58 };
59 typedef struct callback_func_s callback_func_t;
60
61 #define RF_SIMPLE 0
62 #define RF_COMPLEX 1
63 #define RF_REMOVE 65535
64 struct read_func_s {
65 /* `read_func_t' "inherits" from `callback_func_t'.
66  * The `rf_super' member MUST be the first one in this structure! */
67 #define rf_callback rf_super.cf_callback
68 #define rf_udata rf_super.cf_udata
69 #define rf_ctx rf_super.cf_ctx
70   callback_func_t rf_super;
71   char rf_group[DATA_MAX_NAME_LEN];
72   char *rf_name;
73   int rf_type;
74   cdtime_t rf_interval;
75   cdtime_t rf_effective_interval;
76   cdtime_t rf_next_read;
77 };
78 typedef struct read_func_s read_func_t;
79
80 struct write_queue_s;
81 typedef struct write_queue_s write_queue_t;
82 struct write_queue_s {
83   value_list_t *vl;
84   plugin_ctx_t ctx;
85   write_queue_t *next;
86 };
87
88 struct flush_callback_s {
89   char *name;
90   cdtime_t timeout;
91 };
92 typedef struct flush_callback_s flush_callback_t;
93
94 /*
95  * Private variables
96  */
97 static c_avl_tree_t *plugins_loaded;
98
99 static llist_t *list_init;
100 static llist_t *list_write;
101 static llist_t *list_flush;
102 static llist_t *list_missing;
103 static llist_t *list_shutdown;
104 static llist_t *list_log;
105 static llist_t *list_notification;
106
107 static fc_chain_t *pre_cache_chain;
108 static fc_chain_t *post_cache_chain;
109
110 static c_avl_tree_t *data_sets;
111
112 static char *plugindir;
113
114 #ifndef DEFAULT_MAX_READ_INTERVAL
115 #define DEFAULT_MAX_READ_INTERVAL TIME_T_TO_CDTIME_T_STATIC(86400)
116 #endif
117 static c_heap_t *read_heap;
118 static llist_t *read_list;
119 static int read_loop = 1;
120 static pthread_mutex_t read_lock = PTHREAD_MUTEX_INITIALIZER;
121 static pthread_cond_t read_cond = PTHREAD_COND_INITIALIZER;
122 static pthread_t *read_threads;
123 static size_t read_threads_num;
124 static cdtime_t max_read_interval = DEFAULT_MAX_READ_INTERVAL;
125
126 static write_queue_t *write_queue_head;
127 static write_queue_t *write_queue_tail;
128 static long write_queue_length;
129 static bool write_loop = true;
130 static pthread_mutex_t write_lock = PTHREAD_MUTEX_INITIALIZER;
131 static pthread_cond_t write_cond = PTHREAD_COND_INITIALIZER;
132 static pthread_t *write_threads;
133 static size_t write_threads_num;
134
135 static pthread_key_t plugin_ctx_key;
136 static bool plugin_ctx_key_initialized;
137
138 static long write_limit_high;
139 static long write_limit_low;
140
141 static derive_t stats_values_dropped;
142 static bool record_statistics;
143
144 /*
145  * Static functions
146  */
147 static int plugin_dispatch_values_internal(value_list_t *vl);
148
149 static const char *plugin_get_dir(void) {
150   if (plugindir == NULL)
151     return PLUGINDIR;
152   else
153     return plugindir;
154 }
155
156 static int plugin_update_internal_statistics(void) { /* {{{ */
157   gauge_t copy_write_queue_length = (gauge_t)write_queue_length;
158
159   /* Initialize `vl' */
160   value_list_t vl = VALUE_LIST_INIT;
161   sstrncpy(vl.plugin, "collectd", sizeof(vl.plugin));
162   vl.interval = plugin_get_interval();
163
164   /* Write queue */
165   sstrncpy(vl.plugin_instance, "write_queue", sizeof(vl.plugin_instance));
166
167   /* Write queue : queue length */
168   vl.values = &(value_t){.gauge = copy_write_queue_length};
169   vl.values_len = 1;
170   sstrncpy(vl.type, "queue_length", sizeof(vl.type));
171   vl.type_instance[0] = 0;
172   plugin_dispatch_values(&vl);
173
174   /* Write queue : Values dropped (queue length > low limit) */
175   vl.values = &(value_t){.gauge = (gauge_t)stats_values_dropped};
176   vl.values_len = 1;
177   sstrncpy(vl.type, "derive", sizeof(vl.type));
178   sstrncpy(vl.type_instance, "dropped", sizeof(vl.type_instance));
179   plugin_dispatch_values(&vl);
180
181   /* Cache */
182   sstrncpy(vl.plugin_instance, "cache", sizeof(vl.plugin_instance));
183
184   /* Cache : Nb entry in cache tree */
185   vl.values = &(value_t){.gauge = (gauge_t)uc_get_size()};
186   vl.values_len = 1;
187   sstrncpy(vl.type, "cache_size", sizeof(vl.type));
188   vl.type_instance[0] = 0;
189   plugin_dispatch_values(&vl);
190
191   return 0;
192 } /* }}} int plugin_update_internal_statistics */
193
194 static void free_userdata(user_data_t const *ud) /* {{{ */
195 {
196   if (ud == NULL)
197     return;
198
199   if ((ud->data != NULL) && (ud->free_func != NULL)) {
200     ud->free_func(ud->data);
201   }
202 } /* }}} void free_userdata */
203
204 static void destroy_callback(callback_func_t *cf) /* {{{ */
205 {
206   if (cf == NULL)
207     return;
208   free_userdata(&cf->cf_udata);
209   sfree(cf);
210 } /* }}} void destroy_callback */
211
212 static void destroy_all_callbacks(llist_t **list) /* {{{ */
213 {
214   llentry_t *le;
215
216   if (*list == NULL)
217     return;
218
219   le = llist_head(*list);
220   while (le != NULL) {
221     llentry_t *le_next;
222
223     le_next = le->next;
224
225     sfree(le->key);
226     destroy_callback(le->value);
227     le->value = NULL;
228
229     le = le_next;
230   }
231
232   llist_destroy(*list);
233   *list = NULL;
234 } /* }}} void destroy_all_callbacks */
235
236 static void destroy_read_heap(void) /* {{{ */
237 {
238   if (read_heap == NULL)
239     return;
240
241   while (42) {
242     read_func_t *rf;
243
244     rf = c_heap_get_root(read_heap);
245     if (rf == NULL)
246       break;
247     sfree(rf->rf_name);
248     destroy_callback((callback_func_t *)rf);
249   }
250
251   c_heap_destroy(read_heap);
252   read_heap = NULL;
253 } /* }}} void destroy_read_heap */
254
255 static int register_callback(llist_t **list, /* {{{ */
256                              const char *name, callback_func_t *cf) {
257   llentry_t *le;
258   char *key;
259
260   if (*list == NULL) {
261     *list = llist_create();
262     if (*list == NULL) {
263       ERROR("plugin: register_callback: "
264             "llist_create failed.");
265       destroy_callback(cf);
266       return -1;
267     }
268   }
269
270   key = strdup(name);
271   if (key == NULL) {
272     ERROR("plugin: register_callback: strdup failed.");
273     destroy_callback(cf);
274     return -1;
275   }
276
277   le = llist_search(*list, name);
278   if (le == NULL) {
279     le = llentry_create(key, cf);
280     if (le == NULL) {
281       ERROR("plugin: register_callback: "
282             "llentry_create failed.");
283       sfree(key);
284       destroy_callback(cf);
285       return -1;
286     }
287
288     llist_append(*list, le);
289   } else {
290     callback_func_t *old_cf;
291
292     old_cf = le->value;
293     le->value = cf;
294
295     WARNING("plugin: register_callback: "
296             "a callback named `%s' already exists - "
297             "overwriting the old entry!",
298             name);
299
300     destroy_callback(old_cf);
301     sfree(key);
302   }
303
304   return 0;
305 } /* }}} int register_callback */
306
307 static void log_list_callbacks(llist_t **list, /* {{{ */
308                                const char *comment) {
309   char *str;
310   int len;
311   int i;
312   llentry_t *le;
313   int n;
314   char **keys;
315
316   n = llist_size(*list);
317   if (n == 0) {
318     INFO("%s [none]", comment);
319     return;
320   }
321
322   keys = calloc(n, sizeof(char *));
323
324   if (keys == NULL) {
325     ERROR("%s: failed to allocate memory for list of callbacks", comment);
326
327     return;
328   }
329
330   for (le = llist_head(*list), i = 0, len = 0; le != NULL; le = le->next, i++) {
331     keys[i] = le->key;
332     len += strlen(le->key) + 6;
333   }
334   str = malloc(len + 10);
335   if (str == NULL) {
336     ERROR("%s: failed to allocate memory for list of callbacks", comment);
337   } else {
338     *str = '\0';
339     strjoin(str, len, keys, n, "', '");
340     INFO("%s ['%s']", comment, str);
341     sfree(str);
342   }
343   sfree(keys);
344 } /* }}} void log_list_callbacks */
345
346 static int create_register_callback(llist_t **list, /* {{{ */
347                                     const char *name, void *callback,
348                                     user_data_t const *ud) {
349
350   if (name == NULL || callback == NULL)
351     return EINVAL;
352
353   callback_func_t *cf = calloc(1, sizeof(*cf));
354   if (cf == NULL) {
355     free_userdata(ud);
356     ERROR("plugin: create_register_callback: calloc failed.");
357     return ENOMEM;
358   }
359
360   cf->cf_callback = callback;
361   if (ud == NULL) {
362     cf->cf_udata = (user_data_t){
363         .data = NULL, .free_func = NULL,
364     };
365   } else {
366     cf->cf_udata = *ud;
367   }
368
369   cf->cf_ctx = plugin_get_ctx();
370
371   return register_callback(list, name, cf);
372 } /* }}} int create_register_callback */
373
374 static int plugin_unregister(llist_t *list, const char *name) /* {{{ */
375 {
376   llentry_t *e;
377
378   if (list == NULL)
379     return -1;
380
381   e = llist_search(list, name);
382   if (e == NULL)
383     return -1;
384
385   llist_remove(list, e);
386
387   sfree(e->key);
388   destroy_callback(e->value);
389
390   llentry_destroy(e);
391
392   return 0;
393 } /* }}} int plugin_unregister */
394
395 /* plugin_load_file loads the shared object "file" and calls its
396  * "module_register" function. Returns zero on success, non-zero otherwise. */
397 static int plugin_load_file(char const *file, bool global) {
398   int flags = RTLD_NOW;
399   if (global)
400     flags |= RTLD_GLOBAL;
401
402   void *dlh = dlopen(file, flags);
403   if (dlh == NULL) {
404     char errbuf[1024] = "";
405
406     snprintf(errbuf, sizeof(errbuf),
407              "dlopen(\"%s\") failed: %s. "
408              "The most common cause for this problem is missing dependencies. "
409              "Use ldd(1) to check the dependencies of the plugin / shared "
410              "object.",
411              file, dlerror());
412
413     /* This error is printed to STDERR unconditionally. If list_log is NULL,
414      * plugin_log() will also print to STDERR. We avoid duplicate output by
415      * checking that the list of log handlers, list_log, is not NULL. */
416     fprintf(stderr, "ERROR: %s\n", errbuf);
417     if (list_log != NULL) {
418       ERROR("%s", errbuf);
419     }
420
421     return ENOENT;
422   }
423
424   void (*reg_handle)(void) = dlsym(dlh, "module_register");
425   if (reg_handle == NULL) {
426     ERROR("Couldn't find symbol \"module_register\" in \"%s\": %s\n", file,
427           dlerror());
428     dlclose(dlh);
429     return ENOENT;
430   }
431
432   (*reg_handle)();
433   return 0;
434 }
435
436 static void *plugin_read_thread(void __attribute__((unused)) * args) {
437   while (read_loop != 0) {
438     read_func_t *rf;
439     plugin_ctx_t old_ctx;
440     cdtime_t start;
441     cdtime_t now;
442     cdtime_t elapsed;
443     int status;
444     int rf_type;
445     int rc;
446
447     /* Get the read function that needs to be read next.
448      * We don't need to hold "read_lock" for the heap, but we need
449      * to call c_heap_get_root() and pthread_cond_wait() in the
450      * same protected block. */
451     pthread_mutex_lock(&read_lock);
452     rf = c_heap_get_root(read_heap);
453     if (rf == NULL) {
454       pthread_cond_wait(&read_cond, &read_lock);
455       pthread_mutex_unlock(&read_lock);
456       continue;
457     }
458     pthread_mutex_unlock(&read_lock);
459
460     if (rf->rf_interval == 0) {
461       /* this should not happen, because the interval is set
462        * for each plugin when loading it
463        * XXX: issue a warning? */
464       rf->rf_interval = plugin_get_interval();
465       rf->rf_effective_interval = rf->rf_interval;
466
467       rf->rf_next_read = cdtime();
468     }
469
470     /* sleep until this entry is due,
471      * using pthread_cond_timedwait */
472     pthread_mutex_lock(&read_lock);
473     /* In pthread_cond_timedwait, spurious wakeups are possible
474      * (and really happen, at least on NetBSD with > 1 CPU), thus
475      * we need to re-evaluate the condition every time
476      * pthread_cond_timedwait returns. */
477     rc = 0;
478     while ((read_loop != 0) && (cdtime() < rf->rf_next_read) && rc == 0) {
479       rc = pthread_cond_timedwait(&read_cond, &read_lock,
480                                   &CDTIME_T_TO_TIMESPEC(rf->rf_next_read));
481     }
482
483     /* Must hold `read_lock' when accessing `rf->rf_type'. */
484     rf_type = rf->rf_type;
485     pthread_mutex_unlock(&read_lock);
486
487     /* Check if we're supposed to stop.. This may have interrupted
488      * the sleep, too. */
489     if (read_loop == 0) {
490       /* Insert `rf' again, so it can be free'd correctly */
491       c_heap_insert(read_heap, rf);
492       break;
493     }
494
495     /* The entry has been marked for deletion. The linked list
496      * entry has already been removed by `plugin_unregister_read'.
497      * All we have to do here is free the `read_func_t' and
498      * continue. */
499     if (rf_type == RF_REMOVE) {
500       DEBUG("plugin_read_thread: Destroying the `%s' "
501             "callback.",
502             rf->rf_name);
503       sfree(rf->rf_name);
504       destroy_callback((callback_func_t *)rf);
505       rf = NULL;
506       continue;
507     }
508
509     DEBUG("plugin_read_thread: Handling `%s'.", rf->rf_name);
510
511     start = cdtime();
512
513     old_ctx = plugin_set_ctx(rf->rf_ctx);
514
515     if (rf_type == RF_SIMPLE) {
516       int (*callback)(void);
517
518       callback = rf->rf_callback;
519       status = (*callback)();
520     } else {
521       plugin_read_cb callback;
522
523       assert(rf_type == RF_COMPLEX);
524
525       callback = rf->rf_callback;
526       status = (*callback)(&rf->rf_udata);
527     }
528
529     plugin_set_ctx(old_ctx);
530
531     /* If the function signals failure, we will increase the
532      * intervals in which it will be called. */
533     if (status != 0) {
534       rf->rf_effective_interval *= 2;
535       if (rf->rf_effective_interval > max_read_interval)
536         rf->rf_effective_interval = max_read_interval;
537
538       NOTICE("read-function of plugin `%s' failed. "
539              "Will suspend it for %.3f seconds.",
540              rf->rf_name, CDTIME_T_TO_DOUBLE(rf->rf_effective_interval));
541     } else {
542       /* Success: Restore the interval, if it was changed. */
543       rf->rf_effective_interval = rf->rf_interval;
544     }
545
546     /* update the ``next read due'' field */
547     now = cdtime();
548
549     /* calculate the time spent in the read function */
550     elapsed = (now - start);
551
552     if (elapsed > rf->rf_effective_interval)
553       WARNING(
554           "plugin_read_thread: read-function of the `%s' plugin took %.3f "
555           "seconds, which is above its read interval (%.3f seconds). You might "
556           "want to adjust the `Interval' or `ReadThreads' settings.",
557           rf->rf_name, CDTIME_T_TO_DOUBLE(elapsed),
558           CDTIME_T_TO_DOUBLE(rf->rf_effective_interval));
559
560     DEBUG("plugin_read_thread: read-function of the `%s' plugin took "
561           "%.6f seconds.",
562           rf->rf_name, CDTIME_T_TO_DOUBLE(elapsed));
563
564     DEBUG("plugin_read_thread: Effective interval of the "
565           "`%s' plugin is %.3f seconds.",
566           rf->rf_name, CDTIME_T_TO_DOUBLE(rf->rf_effective_interval));
567
568     /* Calculate the next (absolute) time at which this function
569      * should be called. */
570     rf->rf_next_read += rf->rf_effective_interval;
571
572     /* Check, if `rf_next_read' is in the past. */
573     if (rf->rf_next_read < now) {
574       /* `rf_next_read' is in the past. Insert `now'
575        * so this value doesn't trail off into the
576        * past too much. */
577       rf->rf_next_read = now;
578     }
579
580     DEBUG("plugin_read_thread: Next read of the `%s' plugin at %.3f.",
581           rf->rf_name, CDTIME_T_TO_DOUBLE(rf->rf_next_read));
582
583     /* Re-insert this read function into the heap again. */
584     c_heap_insert(read_heap, rf);
585   } /* while (read_loop) */
586
587   pthread_exit(NULL);
588   return (void *)0;
589 } /* void *plugin_read_thread */
590
591 #ifdef PTHREAD_MAX_NAMELEN_NP
592 #define THREAD_NAME_MAX PTHREAD_MAX_NAMELEN_NP
593 #else
594 #define THREAD_NAME_MAX 16
595 #endif
596
597 static void set_thread_name(pthread_t tid, char const *name) {
598 #if defined(HAVE_PTHREAD_SETNAME_NP) || defined(HAVE_PTHREAD_SET_NAME_NP)
599
600   /* glibc limits the length of the name and fails if the passed string
601    * is too long, so we truncate it here. */
602   char n[THREAD_NAME_MAX];
603   if (strlen(name) >= THREAD_NAME_MAX)
604     WARNING("set_thread_name(\"%s\"): name too long", name);
605   sstrncpy(n, name, sizeof(n));
606
607 #if defined(HAVE_PTHREAD_SETNAME_NP)
608   int status = pthread_setname_np(tid, n);
609   if (status != 0) {
610     ERROR("set_thread_name(\"%s\"): %s", n, STRERROR(status));
611   }
612 #else /* if defined(HAVE_PTHREAD_SET_NAME_NP) */
613   pthread_set_name_np(tid, n);
614 #endif
615
616 #endif
617 }
618
619 static void start_read_threads(size_t num) /* {{{ */
620 {
621   if (read_threads != NULL)
622     return;
623
624   read_threads = (pthread_t *)calloc(num, sizeof(pthread_t));
625   if (read_threads == NULL) {
626     ERROR("plugin: start_read_threads: calloc failed.");
627     return;
628   }
629
630   read_threads_num = 0;
631   for (size_t i = 0; i < num; i++) {
632     int status = pthread_create(read_threads + read_threads_num,
633                                 /* attr = */ NULL, plugin_read_thread,
634                                 /* arg = */ NULL);
635     if (status != 0) {
636       ERROR("plugin: start_read_threads: pthread_create failed with status %i "
637             "(%s).",
638             status, STRERROR(status));
639       return;
640     }
641
642     char name[THREAD_NAME_MAX];
643     snprintf(name, sizeof(name), "reader#%" PRIsz, read_threads_num);
644     set_thread_name(read_threads[read_threads_num], name);
645
646     read_threads_num++;
647   } /* for (i) */
648 } /* }}} void start_read_threads */
649
650 static void stop_read_threads(void) {
651   if (read_threads == NULL)
652     return;
653
654   INFO("collectd: Stopping %" PRIsz " read threads.", read_threads_num);
655
656   pthread_mutex_lock(&read_lock);
657   read_loop = 0;
658   DEBUG("plugin: stop_read_threads: Signalling `read_cond'");
659   pthread_cond_broadcast(&read_cond);
660   pthread_mutex_unlock(&read_lock);
661
662   for (size_t i = 0; i < read_threads_num; i++) {
663     if (pthread_join(read_threads[i], NULL) != 0) {
664       ERROR("plugin: stop_read_threads: pthread_join failed.");
665     }
666     read_threads[i] = (pthread_t)0;
667   }
668   sfree(read_threads);
669   read_threads_num = 0;
670 } /* void stop_read_threads */
671
672 static void plugin_value_list_free(value_list_t *vl) /* {{{ */
673 {
674   if (vl == NULL)
675     return;
676
677   meta_data_destroy(vl->meta);
678   sfree(vl->values);
679   sfree(vl);
680 } /* }}} void plugin_value_list_free */
681
682 static value_list_t *
683 plugin_value_list_clone(value_list_t const *vl_orig) /* {{{ */
684 {
685   value_list_t *vl;
686
687   if (vl_orig == NULL)
688     return NULL;
689
690   vl = malloc(sizeof(*vl));
691   if (vl == NULL)
692     return NULL;
693   memcpy(vl, vl_orig, sizeof(*vl));
694
695   if (vl->host[0] == 0)
696     sstrncpy(vl->host, hostname_g, sizeof(vl->host));
697
698   vl->values = calloc(vl_orig->values_len, sizeof(*vl->values));
699   if (vl->values == NULL) {
700     plugin_value_list_free(vl);
701     return NULL;
702   }
703   memcpy(vl->values, vl_orig->values,
704          vl_orig->values_len * sizeof(*vl->values));
705
706   vl->meta = meta_data_clone(vl->meta);
707   if ((vl_orig->meta != NULL) && (vl->meta == NULL)) {
708     plugin_value_list_free(vl);
709     return NULL;
710   }
711
712   if (vl->time == 0)
713     vl->time = cdtime();
714
715   /* Fill in the interval from the thread context, if it is zero. */
716   if (vl->interval == 0) {
717     plugin_ctx_t ctx = plugin_get_ctx();
718
719     if (ctx.interval != 0)
720       vl->interval = ctx.interval;
721     else {
722       char name[6 * DATA_MAX_NAME_LEN];
723       FORMAT_VL(name, sizeof(name), vl);
724       ERROR("plugin_value_list_clone: Unable to determine "
725             "interval from context for "
726             "value list \"%s\". "
727             "This indicates a broken plugin. "
728             "Please report this problem to the "
729             "collectd mailing list or at "
730             "<http://collectd.org/bugs/>.",
731             name);
732       vl->interval = cf_get_default_interval();
733     }
734   }
735
736   return vl;
737 } /* }}} value_list_t *plugin_value_list_clone */
738
739 static int plugin_write_enqueue(value_list_t const *vl) /* {{{ */
740 {
741   write_queue_t *q;
742
743   q = malloc(sizeof(*q));
744   if (q == NULL)
745     return ENOMEM;
746   q->next = NULL;
747
748   q->vl = plugin_value_list_clone(vl);
749   if (q->vl == NULL) {
750     sfree(q);
751     return ENOMEM;
752   }
753
754   /* Store context of caller (read plugin); otherwise, it would not be
755    * available to the write plugins when actually dispatching the
756    * value-list later on. */
757   q->ctx = plugin_get_ctx();
758
759   pthread_mutex_lock(&write_lock);
760
761   if (write_queue_tail == NULL) {
762     write_queue_head = q;
763     write_queue_tail = q;
764     write_queue_length = 1;
765   } else {
766     write_queue_tail->next = q;
767     write_queue_tail = q;
768     write_queue_length += 1;
769   }
770
771   pthread_cond_signal(&write_cond);
772   pthread_mutex_unlock(&write_lock);
773
774   return 0;
775 } /* }}} int plugin_write_enqueue */
776
777 static value_list_t *plugin_write_dequeue(void) /* {{{ */
778 {
779   write_queue_t *q;
780   value_list_t *vl;
781
782   pthread_mutex_lock(&write_lock);
783
784   while (write_loop && (write_queue_head == NULL))
785     pthread_cond_wait(&write_cond, &write_lock);
786
787   if (write_queue_head == NULL) {
788     pthread_mutex_unlock(&write_lock);
789     return NULL;
790   }
791
792   q = write_queue_head;
793   write_queue_head = q->next;
794   write_queue_length -= 1;
795   if (write_queue_head == NULL) {
796     write_queue_tail = NULL;
797     assert(0 == write_queue_length);
798   }
799
800   pthread_mutex_unlock(&write_lock);
801
802   (void)plugin_set_ctx(q->ctx);
803
804   vl = q->vl;
805   sfree(q);
806   return vl;
807 } /* }}} value_list_t *plugin_write_dequeue */
808
809 static void *plugin_write_thread(void __attribute__((unused)) * args) /* {{{ */
810 {
811   while (write_loop) {
812     value_list_t *vl = plugin_write_dequeue();
813     if (vl == NULL)
814       continue;
815
816     plugin_dispatch_values_internal(vl);
817
818     plugin_value_list_free(vl);
819   }
820
821   pthread_exit(NULL);
822   return (void *)0;
823 } /* }}} void *plugin_write_thread */
824
825 static void start_write_threads(size_t num) /* {{{ */
826 {
827   if (write_threads != NULL)
828     return;
829
830   write_threads = (pthread_t *)calloc(num, sizeof(pthread_t));
831   if (write_threads == NULL) {
832     ERROR("plugin: start_write_threads: calloc failed.");
833     return;
834   }
835
836   write_threads_num = 0;
837   for (size_t i = 0; i < num; i++) {
838     int status = pthread_create(write_threads + write_threads_num,
839                                 /* attr = */ NULL, plugin_write_thread,
840                                 /* arg = */ NULL);
841     if (status != 0) {
842       ERROR("plugin: start_write_threads: pthread_create failed with status %i "
843             "(%s).",
844             status, STRERROR(status));
845       return;
846     }
847
848     char name[THREAD_NAME_MAX];
849     snprintf(name, sizeof(name), "writer#%" PRIsz, write_threads_num);
850     set_thread_name(write_threads[write_threads_num], name);
851
852     write_threads_num++;
853   } /* for (i) */
854 } /* }}} void start_write_threads */
855
856 static void stop_write_threads(void) /* {{{ */
857 {
858   write_queue_t *q;
859   size_t i;
860
861   if (write_threads == NULL)
862     return;
863
864   INFO("collectd: Stopping %" PRIsz " write threads.", write_threads_num);
865
866   pthread_mutex_lock(&write_lock);
867   write_loop = false;
868   DEBUG("plugin: stop_write_threads: Signalling `write_cond'");
869   pthread_cond_broadcast(&write_cond);
870   pthread_mutex_unlock(&write_lock);
871
872   for (i = 0; i < write_threads_num; i++) {
873     if (pthread_join(write_threads[i], NULL) != 0) {
874       ERROR("plugin: stop_write_threads: pthread_join failed.");
875     }
876     write_threads[i] = (pthread_t)0;
877   }
878   sfree(write_threads);
879   write_threads_num = 0;
880
881   pthread_mutex_lock(&write_lock);
882   i = 0;
883   for (q = write_queue_head; q != NULL;) {
884     write_queue_t *q1 = q;
885     plugin_value_list_free(q->vl);
886     q = q->next;
887     sfree(q1);
888     i++;
889   }
890   write_queue_head = NULL;
891   write_queue_tail = NULL;
892   write_queue_length = 0;
893   pthread_mutex_unlock(&write_lock);
894
895   if (i > 0) {
896     WARNING("plugin: %" PRIsz " value list%s left after shutting down "
897             "the write threads.",
898             i, (i == 1) ? " was" : "s were");
899   }
900 } /* }}} void stop_write_threads */
901
902 /*
903  * Public functions
904  */
905 void plugin_set_dir(const char *dir) {
906   sfree(plugindir);
907
908   if (dir == NULL) {
909     plugindir = NULL;
910     return;
911   }
912
913   plugindir = strdup(dir);
914   if (plugindir == NULL)
915     ERROR("plugin_set_dir: strdup(\"%s\") failed", dir);
916 }
917
918 static bool plugin_is_loaded(char const *name) {
919   int status;
920
921   if (plugins_loaded == NULL)
922     plugins_loaded =
923         c_avl_create((int (*)(const void *, const void *))strcasecmp);
924   assert(plugins_loaded != NULL);
925
926   status = c_avl_get(plugins_loaded, name, /* ret_value = */ NULL);
927   return status == 0;
928 }
929
930 static int plugin_mark_loaded(char const *name) {
931   char *name_copy;
932   int status;
933
934   name_copy = strdup(name);
935   if (name_copy == NULL)
936     return ENOMEM;
937
938   status = c_avl_insert(plugins_loaded,
939                         /* key = */ name_copy, /* value = */ NULL);
940   return status;
941 }
942
943 static void plugin_free_loaded(void) {
944   void *key;
945   void *value;
946
947   if (plugins_loaded == NULL)
948     return;
949
950   while (c_avl_pick(plugins_loaded, &key, &value) == 0) {
951     sfree(key);
952     assert(value == NULL);
953   }
954
955   c_avl_destroy(plugins_loaded);
956   plugins_loaded = NULL;
957 }
958
959 #define BUFSIZE 512
960 int plugin_load(char const *plugin_name, bool global) {
961   DIR *dh;
962   const char *dir;
963   char filename[BUFSIZE] = "";
964   char typename[BUFSIZE];
965   int ret;
966   struct stat statbuf;
967   struct dirent *de;
968   int status;
969
970   if (plugin_name == NULL)
971     return EINVAL;
972
973   /* Check if plugin is already loaded and don't do anything in this
974    * case. */
975   if (plugin_is_loaded(plugin_name))
976     return 0;
977
978   dir = plugin_get_dir();
979   ret = 1;
980
981   /*
982    * XXX: Magic at work:
983    *
984    * Some of the language bindings, for example the Python and Perl
985    * plugins, need to be able to export symbols to the scripts they run.
986    * For this to happen, the "Globals" flag needs to be set.
987    * Unfortunately, this technical detail is hard to explain to the
988    * average user and she shouldn't have to worry about this, ideally.
989    * So in order to save everyone's sanity use a different default for a
990    * handful of special plugins. --octo
991    */
992   if ((strcasecmp("perl", plugin_name) == 0) ||
993       (strcasecmp("python", plugin_name) == 0))
994     global = true;
995
996   /* `cpu' should not match `cpufreq'. To solve this we add `.so' to the
997    * type when matching the filename */
998   status = snprintf(typename, sizeof(typename), "%s.so", plugin_name);
999   if ((status < 0) || ((size_t)status >= sizeof(typename))) {
1000     WARNING("plugin_load: Filename too long: \"%s.so\"", plugin_name);
1001     return -1;
1002   }
1003
1004   if ((dh = opendir(dir)) == NULL) {
1005     ERROR("plugin_load: opendir (%s) failed: %s", dir, STRERRNO);
1006     return -1;
1007   }
1008
1009   while ((de = readdir(dh)) != NULL) {
1010     if (strcasecmp(de->d_name, typename))
1011       continue;
1012
1013     status = snprintf(filename, sizeof(filename), "%s/%s", dir, de->d_name);
1014     if ((status < 0) || ((size_t)status >= sizeof(filename))) {
1015       WARNING("plugin_load: Filename too long: \"%s/%s\"", dir, de->d_name);
1016       continue;
1017     }
1018
1019     if (lstat(filename, &statbuf) == -1) {
1020       WARNING("plugin_load: stat (\"%s\") failed: %s", filename, STRERRNO);
1021       continue;
1022     } else if (!S_ISREG(statbuf.st_mode)) {
1023       /* don't follow symlinks */
1024       WARNING("plugin_load: %s is not a regular file.", filename);
1025       continue;
1026     }
1027
1028     status = plugin_load_file(filename, global);
1029     if (status == 0) {
1030       /* success */
1031       plugin_mark_loaded(plugin_name);
1032       ret = 0;
1033       INFO("plugin_load: plugin \"%s\" successfully loaded.", plugin_name);
1034       break;
1035     } else {
1036       ERROR("plugin_load: Load plugin \"%s\" failed with "
1037             "status %i.",
1038             plugin_name, status);
1039     }
1040   }
1041
1042   closedir(dh);
1043
1044   if (filename[0] == 0)
1045     ERROR("plugin_load: Could not find plugin \"%s\" in %s", plugin_name, dir);
1046
1047   return ret;
1048 }
1049
1050 /*
1051  * The `register_*' functions follow
1052  */
1053 int plugin_register_config(const char *name,
1054                            int (*callback)(const char *key, const char *val),
1055                            const char **keys, int keys_num) {
1056   cf_register(name, callback, keys, keys_num);
1057   return 0;
1058 } /* int plugin_register_config */
1059
1060 int plugin_register_complex_config(const char *type,
1061                                    int (*callback)(oconfig_item_t *)) {
1062   return cf_register_complex(type, callback);
1063 } /* int plugin_register_complex_config */
1064
1065 int plugin_register_init(const char *name, int (*callback)(void)) {
1066   return create_register_callback(&list_init, name, (void *)callback, NULL);
1067 } /* plugin_register_init */
1068
1069 static int plugin_compare_read_func(const void *arg0, const void *arg1) {
1070   const read_func_t *rf0;
1071   const read_func_t *rf1;
1072
1073   rf0 = arg0;
1074   rf1 = arg1;
1075
1076   if (rf0->rf_next_read < rf1->rf_next_read)
1077     return -1;
1078   else if (rf0->rf_next_read > rf1->rf_next_read)
1079     return 1;
1080   else
1081     return 0;
1082 } /* int plugin_compare_read_func */
1083
1084 /* Add a read function to both, the heap and a linked list. The linked list if
1085  * used to look-up read functions, especially for the remove function. The heap
1086  * is used to determine which plugin to read next. */
1087 static int plugin_insert_read(read_func_t *rf) {
1088   int status;
1089   llentry_t *le;
1090
1091   rf->rf_next_read = cdtime();
1092   rf->rf_effective_interval = rf->rf_interval;
1093
1094   pthread_mutex_lock(&read_lock);
1095
1096   if (read_list == NULL) {
1097     read_list = llist_create();
1098     if (read_list == NULL) {
1099       pthread_mutex_unlock(&read_lock);
1100       ERROR("plugin_insert_read: read_list failed.");
1101       return -1;
1102     }
1103   }
1104
1105   if (read_heap == NULL) {
1106     read_heap = c_heap_create(plugin_compare_read_func);
1107     if (read_heap == NULL) {
1108       pthread_mutex_unlock(&read_lock);
1109       ERROR("plugin_insert_read: c_heap_create failed.");
1110       return -1;
1111     }
1112   }
1113
1114   le = llist_search(read_list, rf->rf_name);
1115   if (le != NULL) {
1116     pthread_mutex_unlock(&read_lock);
1117     WARNING("The read function \"%s\" is already registered. "
1118             "Check for duplicates in your configuration!",
1119             rf->rf_name);
1120     return EINVAL;
1121   }
1122
1123   le = llentry_create(rf->rf_name, rf);
1124   if (le == NULL) {
1125     pthread_mutex_unlock(&read_lock);
1126     ERROR("plugin_insert_read: llentry_create failed.");
1127     return -1;
1128   }
1129
1130   status = c_heap_insert(read_heap, rf);
1131   if (status != 0) {
1132     pthread_mutex_unlock(&read_lock);
1133     ERROR("plugin_insert_read: c_heap_insert failed.");
1134     llentry_destroy(le);
1135     return -1;
1136   }
1137
1138   /* This does not fail. */
1139   llist_append(read_list, le);
1140
1141   /* Wake up all the read threads. */
1142   pthread_cond_broadcast(&read_cond);
1143   pthread_mutex_unlock(&read_lock);
1144   return 0;
1145 } /* int plugin_insert_read */
1146
1147 int plugin_register_read(const char *name, int (*callback)(void)) {
1148   read_func_t *rf;
1149   int status;
1150
1151   rf = calloc(1, sizeof(*rf));
1152   if (rf == NULL) {
1153     ERROR("plugin_register_read: calloc failed.");
1154     return ENOMEM;
1155   }
1156
1157   rf->rf_callback = (void *)callback;
1158   rf->rf_udata.data = NULL;
1159   rf->rf_udata.free_func = NULL;
1160   rf->rf_ctx = plugin_get_ctx();
1161   rf->rf_group[0] = '\0';
1162   rf->rf_name = strdup(name);
1163   rf->rf_type = RF_SIMPLE;
1164   rf->rf_interval = plugin_get_interval();
1165
1166   status = plugin_insert_read(rf);
1167   if (status != 0) {
1168     sfree(rf->rf_name);
1169     sfree(rf);
1170   }
1171
1172   return status;
1173 } /* int plugin_register_read */
1174
1175 int plugin_register_complex_read(const char *group, const char *name,
1176                                  plugin_read_cb callback, cdtime_t interval,
1177                                  user_data_t const *user_data) {
1178   read_func_t *rf;
1179   int status;
1180
1181   rf = calloc(1, sizeof(*rf));
1182   if (rf == NULL) {
1183     free_userdata(user_data);
1184     ERROR("plugin_register_complex_read: calloc failed.");
1185     return ENOMEM;
1186   }
1187
1188   rf->rf_callback = (void *)callback;
1189   if (group != NULL)
1190     sstrncpy(rf->rf_group, group, sizeof(rf->rf_group));
1191   else
1192     rf->rf_group[0] = '\0';
1193   rf->rf_name = strdup(name);
1194   rf->rf_type = RF_COMPLEX;
1195   rf->rf_interval = (interval != 0) ? interval : plugin_get_interval();
1196
1197   /* Set user data */
1198   if (user_data == NULL) {
1199     rf->rf_udata.data = NULL;
1200     rf->rf_udata.free_func = NULL;
1201   } else {
1202     rf->rf_udata = *user_data;
1203   }
1204
1205   rf->rf_ctx = plugin_get_ctx();
1206
1207   status = plugin_insert_read(rf);
1208   if (status != 0) {
1209     free_userdata(&rf->rf_udata);
1210     sfree(rf->rf_name);
1211     sfree(rf);
1212   }
1213
1214   return status;
1215 } /* int plugin_register_complex_read */
1216
1217 int plugin_register_write(const char *name, plugin_write_cb callback,
1218                           user_data_t const *ud) {
1219   return create_register_callback(&list_write, name, (void *)callback, ud);
1220 } /* int plugin_register_write */
1221
1222 static int plugin_flush_timeout_callback(user_data_t *ud) {
1223   flush_callback_t *cb = ud->data;
1224
1225   return plugin_flush(cb->name, cb->timeout, NULL);
1226 } /* static int plugin_flush_callback */
1227
1228 static void plugin_flush_timeout_callback_free(void *data) {
1229   flush_callback_t *cb = data;
1230
1231   if (cb == NULL)
1232     return;
1233
1234   sfree(cb->name);
1235   sfree(cb);
1236 } /* static void plugin_flush_callback_free */
1237
1238 static char *plugin_flush_callback_name(const char *name) {
1239   const char *flush_prefix = "flush/";
1240   size_t prefix_size;
1241   char *flush_name;
1242   size_t name_size;
1243
1244   prefix_size = strlen(flush_prefix);
1245   name_size = strlen(name);
1246
1247   flush_name = malloc(name_size + prefix_size + 1);
1248   if (flush_name == NULL) {
1249     ERROR("plugin_flush_callback_name: malloc failed.");
1250     return NULL;
1251   }
1252
1253   sstrncpy(flush_name, flush_prefix, prefix_size + 1);
1254   sstrncpy(flush_name + prefix_size, name, name_size + 1);
1255
1256   return flush_name;
1257 } /* static char *plugin_flush_callback_name */
1258
1259 int plugin_register_flush(const char *name, plugin_flush_cb callback,
1260                           user_data_t const *ud) {
1261   int status;
1262   plugin_ctx_t ctx = plugin_get_ctx();
1263
1264   status = create_register_callback(&list_flush, name, (void *)callback, ud);
1265   if (status != 0)
1266     return status;
1267
1268   if (ctx.flush_interval != 0) {
1269     char *flush_name;
1270     flush_callback_t *cb;
1271
1272     flush_name = plugin_flush_callback_name(name);
1273     if (flush_name == NULL)
1274       return -1;
1275
1276     cb = malloc(sizeof(*cb));
1277     if (cb == NULL) {
1278       ERROR("plugin_register_flush: malloc failed.");
1279       sfree(flush_name);
1280       return -1;
1281     }
1282
1283     cb->name = strdup(name);
1284     if (cb->name == NULL) {
1285       ERROR("plugin_register_flush: strdup failed.");
1286       sfree(cb);
1287       sfree(flush_name);
1288       return -1;
1289     }
1290     cb->timeout = ctx.flush_timeout;
1291
1292     status = plugin_register_complex_read(
1293         /* group     = */ "flush",
1294         /* name      = */ flush_name,
1295         /* callback  = */ plugin_flush_timeout_callback,
1296         /* interval  = */ ctx.flush_interval,
1297         /* user data = */ &(user_data_t){
1298             .data = cb, .free_func = plugin_flush_timeout_callback_free,
1299         });
1300
1301     sfree(flush_name);
1302     return status;
1303   }
1304
1305   return 0;
1306 } /* int plugin_register_flush */
1307
1308 int plugin_register_missing(const char *name, plugin_missing_cb callback,
1309                             user_data_t const *ud) {
1310   return create_register_callback(&list_missing, name, (void *)callback, ud);
1311 } /* int plugin_register_missing */
1312
1313 int plugin_register_shutdown(const char *name, int (*callback)(void)) {
1314   return create_register_callback(&list_shutdown, name, (void *)callback, NULL);
1315 } /* int plugin_register_shutdown */
1316
1317 static void plugin_free_data_sets(void) {
1318   void *key;
1319   void *value;
1320
1321   if (data_sets == NULL)
1322     return;
1323
1324   while (c_avl_pick(data_sets, &key, &value) == 0) {
1325     data_set_t *ds = value;
1326     /* key is a pointer to ds->type */
1327
1328     sfree(ds->ds);
1329     sfree(ds);
1330   }
1331
1332   c_avl_destroy(data_sets);
1333   data_sets = NULL;
1334 } /* void plugin_free_data_sets */
1335
1336 int plugin_register_data_set(const data_set_t *ds) {
1337   data_set_t *ds_copy;
1338
1339   if ((data_sets != NULL) && (c_avl_get(data_sets, ds->type, NULL) == 0)) {
1340     NOTICE("Replacing DS `%s' with another version.", ds->type);
1341     plugin_unregister_data_set(ds->type);
1342   } else if (data_sets == NULL) {
1343     data_sets = c_avl_create((int (*)(const void *, const void *))strcmp);
1344     if (data_sets == NULL)
1345       return -1;
1346   }
1347
1348   ds_copy = malloc(sizeof(*ds_copy));
1349   if (ds_copy == NULL)
1350     return -1;
1351   memcpy(ds_copy, ds, sizeof(data_set_t));
1352
1353   ds_copy->ds = malloc(sizeof(*ds_copy->ds) * ds->ds_num);
1354   if (ds_copy->ds == NULL) {
1355     sfree(ds_copy);
1356     return -1;
1357   }
1358
1359   for (size_t i = 0; i < ds->ds_num; i++)
1360     memcpy(ds_copy->ds + i, ds->ds + i, sizeof(data_source_t));
1361
1362   return c_avl_insert(data_sets, (void *)ds_copy->type, (void *)ds_copy);
1363 } /* int plugin_register_data_set */
1364
1365 int plugin_register_log(const char *name, plugin_log_cb callback,
1366                         user_data_t const *ud) {
1367   return create_register_callback(&list_log, name, (void *)callback, ud);
1368 } /* int plugin_register_log */
1369
1370 int plugin_register_notification(const char *name,
1371                                  plugin_notification_cb callback,
1372                                  user_data_t const *ud) {
1373   return create_register_callback(&list_notification, name, (void *)callback,
1374                                   ud);
1375 } /* int plugin_register_log */
1376
1377 int plugin_unregister_config(const char *name) {
1378   cf_unregister(name);
1379   return 0;
1380 } /* int plugin_unregister_config */
1381
1382 int plugin_unregister_complex_config(const char *name) {
1383   cf_unregister_complex(name);
1384   return 0;
1385 } /* int plugin_unregister_complex_config */
1386
1387 int plugin_unregister_init(const char *name) {
1388   return plugin_unregister(list_init, name);
1389 }
1390
1391 int plugin_unregister_read(const char *name) /* {{{ */
1392 {
1393   llentry_t *le;
1394   read_func_t *rf;
1395
1396   if (name == NULL)
1397     return -ENOENT;
1398
1399   pthread_mutex_lock(&read_lock);
1400
1401   if (read_list == NULL) {
1402     pthread_mutex_unlock(&read_lock);
1403     return -ENOENT;
1404   }
1405
1406   le = llist_search(read_list, name);
1407   if (le == NULL) {
1408     pthread_mutex_unlock(&read_lock);
1409     WARNING("plugin_unregister_read: No such read function: %s", name);
1410     return -ENOENT;
1411   }
1412
1413   llist_remove(read_list, le);
1414
1415   rf = le->value;
1416   assert(rf != NULL);
1417   rf->rf_type = RF_REMOVE;
1418
1419   pthread_mutex_unlock(&read_lock);
1420
1421   llentry_destroy(le);
1422
1423   DEBUG("plugin_unregister_read: Marked `%s' for removal.", name);
1424
1425   return 0;
1426 } /* }}} int plugin_unregister_read */
1427
1428 void plugin_log_available_writers(void) {
1429   log_list_callbacks(&list_write, "Available write targets:");
1430 }
1431
1432 static int compare_read_func_group(llentry_t *e, void *ud) /* {{{ */
1433 {
1434   read_func_t *rf = e->value;
1435   char *group = ud;
1436
1437   return strcmp(rf->rf_group, (const char *)group);
1438 } /* }}} int compare_read_func_group */
1439
1440 int plugin_unregister_read_group(const char *group) /* {{{ */
1441 {
1442   llentry_t *le;
1443   read_func_t *rf;
1444
1445   int found = 0;
1446
1447   if (group == NULL)
1448     return -ENOENT;
1449
1450   pthread_mutex_lock(&read_lock);
1451
1452   if (read_list == NULL) {
1453     pthread_mutex_unlock(&read_lock);
1454     return -ENOENT;
1455   }
1456
1457   while (42) {
1458     le = llist_search_custom(read_list, compare_read_func_group, (void *)group);
1459
1460     if (le == NULL)
1461       break;
1462
1463     ++found;
1464
1465     llist_remove(read_list, le);
1466
1467     rf = le->value;
1468     assert(rf != NULL);
1469     rf->rf_type = RF_REMOVE;
1470
1471     llentry_destroy(le);
1472
1473     DEBUG("plugin_unregister_read_group: "
1474           "Marked `%s' (group `%s') for removal.",
1475           rf->rf_name, group);
1476   }
1477
1478   pthread_mutex_unlock(&read_lock);
1479
1480   if (found == 0) {
1481     WARNING("plugin_unregister_read_group: No such "
1482             "group of read function: %s",
1483             group);
1484     return -ENOENT;
1485   }
1486
1487   return 0;
1488 } /* }}} int plugin_unregister_read_group */
1489
1490 int plugin_unregister_write(const char *name) {
1491   return plugin_unregister(list_write, name);
1492 }
1493
1494 int plugin_unregister_flush(const char *name) {
1495   plugin_ctx_t ctx = plugin_get_ctx();
1496
1497   if (ctx.flush_interval != 0) {
1498     char *flush_name;
1499
1500     flush_name = plugin_flush_callback_name(name);
1501     if (flush_name != NULL) {
1502       plugin_unregister_read(flush_name);
1503       sfree(flush_name);
1504     }
1505   }
1506
1507   return plugin_unregister(list_flush, name);
1508 }
1509
1510 int plugin_unregister_missing(const char *name) {
1511   return plugin_unregister(list_missing, name);
1512 }
1513
1514 int plugin_unregister_shutdown(const char *name) {
1515   return plugin_unregister(list_shutdown, name);
1516 }
1517
1518 int plugin_unregister_data_set(const char *name) {
1519   data_set_t *ds;
1520
1521   if (data_sets == NULL)
1522     return -1;
1523
1524   if (c_avl_remove(data_sets, name, NULL, (void *)&ds) != 0)
1525     return -1;
1526
1527   sfree(ds->ds);
1528   sfree(ds);
1529
1530   return 0;
1531 } /* int plugin_unregister_data_set */
1532
1533 int plugin_unregister_log(const char *name) {
1534   return plugin_unregister(list_log, name);
1535 }
1536
1537 int plugin_unregister_notification(const char *name) {
1538   return plugin_unregister(list_notification, name);
1539 }
1540
1541 int plugin_init_all(void) {
1542   char const *chain_name;
1543   llentry_t *le;
1544   int status;
1545   int ret = 0;
1546
1547   /* Init the value cache */
1548   uc_init();
1549
1550   if (IS_TRUE(global_option_get("CollectInternalStats"))) {
1551     record_statistics = true;
1552     plugin_register_read("collectd", plugin_update_internal_statistics);
1553   }
1554
1555   chain_name = global_option_get("PreCacheChain");
1556   pre_cache_chain = fc_chain_get_by_name(chain_name);
1557
1558   chain_name = global_option_get("PostCacheChain");
1559   post_cache_chain = fc_chain_get_by_name(chain_name);
1560
1561   write_limit_high = global_option_get_long("WriteQueueLimitHigh",
1562                                             /* default = */ 0);
1563   if (write_limit_high < 0) {
1564     ERROR("WriteQueueLimitHigh must be positive or zero.");
1565     write_limit_high = 0;
1566   }
1567
1568   write_limit_low =
1569       global_option_get_long("WriteQueueLimitLow",
1570                              /* default = */ write_limit_high / 2);
1571   if (write_limit_low < 0) {
1572     ERROR("WriteQueueLimitLow must be positive or zero.");
1573     write_limit_low = write_limit_high / 2;
1574   } else if (write_limit_low > write_limit_high) {
1575     ERROR("WriteQueueLimitLow must not be larger than "
1576           "WriteQueueLimitHigh.");
1577     write_limit_low = write_limit_high;
1578   }
1579
1580   write_threads_num = global_option_get_long("WriteThreads",
1581                                              /* default = */ 5);
1582   if (write_threads_num < 1) {
1583     ERROR("WriteThreads must be positive.");
1584     write_threads_num = 5;
1585   }
1586
1587   if ((list_init == NULL) && (read_heap == NULL))
1588     return ret;
1589
1590   /* Calling all init callbacks before checking if read callbacks
1591    * are available allows the init callbacks to register the read
1592    * callback. */
1593   le = llist_head(list_init);
1594   while (le != NULL) {
1595     callback_func_t *cf;
1596     plugin_init_cb callback;
1597     plugin_ctx_t old_ctx;
1598
1599     cf = le->value;
1600     old_ctx = plugin_set_ctx(cf->cf_ctx);
1601     callback = cf->cf_callback;
1602     status = (*callback)();
1603     plugin_set_ctx(old_ctx);
1604
1605     if (status != 0) {
1606       ERROR("Initialization of plugin `%s' "
1607             "failed with status %i. "
1608             "Plugin will be unloaded.",
1609             le->key, status);
1610       /* Plugins that register read callbacks from the init
1611        * callback should take care of appropriate error
1612        * handling themselves. */
1613       /* FIXME: Unload _all_ functions */
1614       plugin_unregister_read(le->key);
1615       ret = -1;
1616     }
1617
1618     le = le->next;
1619   }
1620
1621   start_write_threads((size_t)write_threads_num);
1622
1623   max_read_interval =
1624       global_option_get_time("MaxReadInterval", DEFAULT_MAX_READ_INTERVAL);
1625
1626   /* Start read-threads */
1627   if (read_heap != NULL) {
1628     const char *rt;
1629     int num;
1630
1631     rt = global_option_get("ReadThreads");
1632     num = atoi(rt);
1633     if (num != -1)
1634       start_read_threads((num > 0) ? ((size_t)num) : 5);
1635   }
1636   return ret;
1637 } /* void plugin_init_all */
1638
1639 /* TODO: Rename this function. */
1640 void plugin_read_all(void) {
1641   uc_check_timeout();
1642
1643   return;
1644 } /* void plugin_read_all */
1645
1646 /* Read function called when the `-T' command line argument is given. */
1647 int plugin_read_all_once(void) {
1648   int status;
1649   int return_status = 0;
1650
1651   if (read_heap == NULL) {
1652     NOTICE("No read-functions are registered.");
1653     return 0;
1654   }
1655
1656   while (42) {
1657     read_func_t *rf;
1658     plugin_ctx_t old_ctx;
1659
1660     rf = c_heap_get_root(read_heap);
1661     if (rf == NULL)
1662       break;
1663
1664     old_ctx = plugin_set_ctx(rf->rf_ctx);
1665
1666     if (rf->rf_type == RF_SIMPLE) {
1667       int (*callback)(void);
1668
1669       callback = rf->rf_callback;
1670       status = (*callback)();
1671     } else {
1672       plugin_read_cb callback;
1673
1674       callback = rf->rf_callback;
1675       status = (*callback)(&rf->rf_udata);
1676     }
1677
1678     plugin_set_ctx(old_ctx);
1679
1680     if (status != 0) {
1681       NOTICE("read-function of plugin `%s' failed.", rf->rf_name);
1682       return_status = -1;
1683     }
1684
1685     sfree(rf->rf_name);
1686     destroy_callback((void *)rf);
1687   }
1688
1689   return return_status;
1690 } /* int plugin_read_all_once */
1691
1692 int plugin_write(const char *plugin, /* {{{ */
1693                  const data_set_t *ds, const value_list_t *vl) {
1694   llentry_t *le;
1695   int status;
1696
1697   if (vl == NULL)
1698     return EINVAL;
1699
1700   if (list_write == NULL)
1701     return ENOENT;
1702
1703   if (ds == NULL) {
1704     ds = plugin_get_ds(vl->type);
1705     if (ds == NULL) {
1706       ERROR("plugin_write: Unable to lookup type `%s'.", vl->type);
1707       return ENOENT;
1708     }
1709   }
1710
1711   if (plugin == NULL) {
1712     int success = 0;
1713     int failure = 0;
1714
1715     le = llist_head(list_write);
1716     while (le != NULL) {
1717       callback_func_t *cf = le->value;
1718       plugin_write_cb callback;
1719
1720       /* Keep the read plugin's interval and flush information but update the
1721        * plugin name. */
1722       plugin_ctx_t old_ctx = plugin_get_ctx();
1723       plugin_ctx_t ctx = old_ctx;
1724       ctx.name = cf->cf_ctx.name;
1725       plugin_set_ctx(ctx);
1726
1727       DEBUG("plugin: plugin_write: Writing values via %s.", le->key);
1728       callback = cf->cf_callback;
1729       status = (*callback)(ds, vl, &cf->cf_udata);
1730       if (status != 0)
1731         failure++;
1732       else
1733         success++;
1734
1735       plugin_set_ctx(old_ctx);
1736       le = le->next;
1737     }
1738
1739     if ((success == 0) && (failure != 0))
1740       status = -1;
1741     else
1742       status = 0;
1743   } else /* plugin != NULL */
1744   {
1745     callback_func_t *cf;
1746     plugin_write_cb callback;
1747
1748     le = llist_head(list_write);
1749     while (le != NULL) {
1750       if (strcasecmp(plugin, le->key) == 0)
1751         break;
1752
1753       le = le->next;
1754     }
1755
1756     if (le == NULL)
1757       return ENOENT;
1758
1759     cf = le->value;
1760
1761     /* do not switch plugin context; rather keep the context (interval)
1762      * information of the calling read plugin */
1763
1764     DEBUG("plugin: plugin_write: Writing values via %s.", le->key);
1765     callback = cf->cf_callback;
1766     status = (*callback)(ds, vl, &cf->cf_udata);
1767   }
1768
1769   return status;
1770 } /* }}} int plugin_write */
1771
1772 int plugin_flush(const char *plugin, cdtime_t timeout, const char *identifier) {
1773   llentry_t *le;
1774
1775   if (list_flush == NULL)
1776     return 0;
1777
1778   le = llist_head(list_flush);
1779   while (le != NULL) {
1780     callback_func_t *cf;
1781     plugin_flush_cb callback;
1782     plugin_ctx_t old_ctx;
1783
1784     if ((plugin != NULL) && (strcmp(plugin, le->key) != 0)) {
1785       le = le->next;
1786       continue;
1787     }
1788
1789     cf = le->value;
1790     old_ctx = plugin_set_ctx(cf->cf_ctx);
1791     callback = cf->cf_callback;
1792
1793     (*callback)(timeout, identifier, &cf->cf_udata);
1794
1795     plugin_set_ctx(old_ctx);
1796
1797     le = le->next;
1798   }
1799   return 0;
1800 } /* int plugin_flush */
1801
1802 int plugin_shutdown_all(void) {
1803   llentry_t *le;
1804   int ret = 0; // Assume success.
1805
1806   destroy_all_callbacks(&list_init);
1807
1808   stop_read_threads();
1809
1810   pthread_mutex_lock(&read_lock);
1811   llist_destroy(read_list);
1812   read_list = NULL;
1813   pthread_mutex_unlock(&read_lock);
1814
1815   destroy_read_heap();
1816
1817   /* blocks until all write threads have shut down. */
1818   stop_write_threads();
1819
1820   /* ask all plugins to write out the state they kept. */
1821   plugin_flush(/* plugin = */ NULL,
1822                /* timeout = */ 0,
1823                /* identifier = */ NULL);
1824
1825   le = NULL;
1826   if (list_shutdown != NULL)
1827     le = llist_head(list_shutdown);
1828
1829   while (le != NULL) {
1830     callback_func_t *cf;
1831     plugin_shutdown_cb callback;
1832     plugin_ctx_t old_ctx;
1833
1834     cf = le->value;
1835     old_ctx = plugin_set_ctx(cf->cf_ctx);
1836     callback = cf->cf_callback;
1837
1838     /* Advance the pointer before calling the callback allows
1839      * shutdown functions to unregister themselves. If done the
1840      * other way around the memory `le' points to will be freed
1841      * after callback returns. */
1842     le = le->next;
1843
1844     if ((*callback)() != 0)
1845       ret = -1;
1846
1847     plugin_set_ctx(old_ctx);
1848   }
1849
1850   /* Write plugins which use the `user_data' pointer usually need the
1851    * same data available to the flush callback. If this is the case, set
1852    * the free_function to NULL when registering the flush callback and to
1853    * the real free function when registering the write callback. This way
1854    * the data isn't freed twice. */
1855   destroy_all_callbacks(&list_flush);
1856   destroy_all_callbacks(&list_missing);
1857   destroy_all_callbacks(&list_write);
1858
1859   destroy_all_callbacks(&list_notification);
1860   destroy_all_callbacks(&list_shutdown);
1861   destroy_all_callbacks(&list_log);
1862
1863   plugin_free_loaded();
1864   plugin_free_data_sets();
1865   return ret;
1866 } /* void plugin_shutdown_all */
1867
1868 int plugin_dispatch_missing(const value_list_t *vl) /* {{{ */
1869 {
1870   if (list_missing == NULL)
1871     return 0;
1872
1873   llentry_t *le = llist_head(list_missing);
1874   while (le != NULL) {
1875     callback_func_t *cf = le->value;
1876     plugin_ctx_t old_ctx = plugin_set_ctx(cf->cf_ctx);
1877     plugin_missing_cb callback = cf->cf_callback;
1878
1879     int status = (*callback)(vl, &cf->cf_udata);
1880     plugin_set_ctx(old_ctx);
1881     if (status != 0) {
1882       if (status < 0) {
1883         ERROR("plugin_dispatch_missing: Callback function \"%s\" "
1884               "failed with status %i.",
1885               le->key, status);
1886         return status;
1887       } else {
1888         return 0;
1889       }
1890     }
1891
1892     le = le->next;
1893   }
1894   return 0;
1895 } /* int }}} plugin_dispatch_missing */
1896
1897 static int plugin_dispatch_values_internal(value_list_t *vl) {
1898   int status;
1899   static c_complain_t no_write_complaint = C_COMPLAIN_INIT_STATIC;
1900
1901   bool free_meta_data = false;
1902
1903   assert(vl != NULL);
1904
1905   /* These fields are initialized by plugin_value_list_clone() if needed: */
1906   assert(vl->host[0] != 0);
1907   assert(vl->time != 0); /* The time is determined at _enqueue_ time. */
1908   assert(vl->interval != 0);
1909
1910   if (vl->type[0] == 0 || vl->values == NULL || vl->values_len < 1) {
1911     ERROR("plugin_dispatch_values: Invalid value list "
1912           "from plugin %s.",
1913           vl->plugin);
1914     return -1;
1915   }
1916
1917   /* Free meta data only if the calling function didn't specify any. In
1918    * this case matches and targets may add some and the calling function
1919    * may not expect (and therefore free) that data. */
1920   if (vl->meta == NULL)
1921     free_meta_data = true;
1922
1923   if (list_write == NULL)
1924     c_complain_once(LOG_WARNING, &no_write_complaint,
1925                     "plugin_dispatch_values: No write callback has been "
1926                     "registered. Please load at least one output plugin, "
1927                     "if you want the collected data to be stored.");
1928
1929   if (data_sets == NULL) {
1930     ERROR("plugin_dispatch_values: No data sets registered. "
1931           "Could the types database be read? Check "
1932           "your `TypesDB' setting!");
1933     return -1;
1934   }
1935
1936   data_set_t *ds = NULL;
1937   if (c_avl_get(data_sets, vl->type, (void *)&ds) != 0) {
1938     char ident[6 * DATA_MAX_NAME_LEN];
1939
1940     FORMAT_VL(ident, sizeof(ident), vl);
1941     INFO("plugin_dispatch_values: Dataset not found: %s "
1942          "(from \"%s\"), check your types.db!",
1943          vl->type, ident);
1944     return -1;
1945   }
1946
1947   DEBUG("plugin_dispatch_values: time = %.3f; interval = %.3f; "
1948         "host = %s; "
1949         "plugin = %s; plugin_instance = %s; "
1950         "type = %s; type_instance = %s;",
1951         CDTIME_T_TO_DOUBLE(vl->time), CDTIME_T_TO_DOUBLE(vl->interval),
1952         vl->host, vl->plugin, vl->plugin_instance, vl->type, vl->type_instance);
1953
1954 #if COLLECT_DEBUG
1955   assert(0 == strcmp(ds->type, vl->type));
1956 #else
1957   if (0 != strcmp(ds->type, vl->type))
1958     WARNING("plugin_dispatch_values: (ds->type = %s) != (vl->type = %s)",
1959             ds->type, vl->type);
1960 #endif
1961
1962 #if COLLECT_DEBUG
1963   assert(ds->ds_num == vl->values_len);
1964 #else
1965   if (ds->ds_num != vl->values_len) {
1966     ERROR("plugin_dispatch_values: ds->type = %s: "
1967           "(ds->ds_num = %" PRIsz ") != "
1968           "(vl->values_len = %" PRIsz ")",
1969           ds->type, ds->ds_num, vl->values_len);
1970     return -1;
1971   }
1972 #endif
1973
1974   escape_slashes(vl->host, sizeof(vl->host));
1975   escape_slashes(vl->plugin, sizeof(vl->plugin));
1976   escape_slashes(vl->plugin_instance, sizeof(vl->plugin_instance));
1977   escape_slashes(vl->type, sizeof(vl->type));
1978   escape_slashes(vl->type_instance, sizeof(vl->type_instance));
1979
1980   if (pre_cache_chain != NULL) {
1981     status = fc_process_chain(ds, vl, pre_cache_chain);
1982     if (status < 0) {
1983       WARNING("plugin_dispatch_values: Running the "
1984               "pre-cache chain failed with "
1985               "status %i (%#x).",
1986               status, status);
1987     } else if (status == FC_TARGET_STOP)
1988       return 0;
1989   }
1990
1991   /* Update the value cache */
1992   uc_update(ds, vl);
1993
1994   if (post_cache_chain != NULL) {
1995     status = fc_process_chain(ds, vl, post_cache_chain);
1996     if (status < 0) {
1997       WARNING("plugin_dispatch_values: Running the "
1998               "post-cache chain failed with "
1999               "status %i (%#x).",
2000               status, status);
2001     }
2002   } else
2003     fc_default_action(ds, vl);
2004
2005   if ((free_meta_data == true) && (vl->meta != NULL)) {
2006     meta_data_destroy(vl->meta);
2007     vl->meta = NULL;
2008   }
2009
2010   return 0;
2011 } /* int plugin_dispatch_values_internal */
2012
2013 static double get_drop_probability(void) /* {{{ */
2014 {
2015   long pos;
2016   long size;
2017   long wql;
2018
2019   pthread_mutex_lock(&write_lock);
2020   wql = write_queue_length;
2021   pthread_mutex_unlock(&write_lock);
2022
2023   if (wql < write_limit_low)
2024     return 0.0;
2025   if (wql >= write_limit_high)
2026     return 1.0;
2027
2028   pos = 1 + wql - write_limit_low;
2029   size = 1 + write_limit_high - write_limit_low;
2030
2031   return (double)pos / (double)size;
2032 } /* }}} double get_drop_probability */
2033
2034 static bool check_drop_value(void) /* {{{ */
2035 {
2036   static cdtime_t last_message_time;
2037   static pthread_mutex_t last_message_lock = PTHREAD_MUTEX_INITIALIZER;
2038
2039   double p;
2040   double q;
2041   int status;
2042
2043   if (write_limit_high == 0)
2044     return false;
2045
2046   p = get_drop_probability();
2047   if (p == 0.0)
2048     return false;
2049
2050   status = pthread_mutex_trylock(&last_message_lock);
2051   if (status == 0) {
2052     cdtime_t now;
2053
2054     now = cdtime();
2055     if ((now - last_message_time) > TIME_T_TO_CDTIME_T(1)) {
2056       last_message_time = now;
2057       ERROR("plugin_dispatch_values: Low water mark "
2058             "reached. Dropping %.0f%% of metrics.",
2059             100.0 * p);
2060     }
2061     pthread_mutex_unlock(&last_message_lock);
2062   }
2063
2064   if (p == 1.0)
2065     return true;
2066
2067   q = cdrand_d();
2068   if (q > p)
2069     return true;
2070   else
2071     return false;
2072 } /* }}} bool check_drop_value */
2073
2074 int plugin_dispatch_values(value_list_t const *vl) {
2075   int status;
2076   static pthread_mutex_t statistics_lock = PTHREAD_MUTEX_INITIALIZER;
2077
2078   if (check_drop_value()) {
2079     if (record_statistics) {
2080       pthread_mutex_lock(&statistics_lock);
2081       stats_values_dropped++;
2082       pthread_mutex_unlock(&statistics_lock);
2083     }
2084     return 0;
2085   }
2086
2087   status = plugin_write_enqueue(vl);
2088   if (status != 0) {
2089     ERROR("plugin_dispatch_values: plugin_write_enqueue failed with status %i "
2090           "(%s).",
2091           status, STRERROR(status));
2092     return status;
2093   }
2094
2095   return 0;
2096 }
2097
2098 __attribute__((sentinel)) int
2099 plugin_dispatch_multivalue(value_list_t const *template, /* {{{ */
2100                            bool store_percentage, int store_type, ...) {
2101   value_list_t *vl;
2102   int failed = 0;
2103   gauge_t sum = 0.0;
2104   va_list ap;
2105
2106   assert(template->values_len == 1);
2107
2108   /* Calculate sum for Gauge to calculate percent if needed */
2109   if (DS_TYPE_GAUGE == store_type) {
2110     va_start(ap, store_type);
2111     while (42) {
2112       char const *name;
2113       gauge_t value;
2114
2115       name = va_arg(ap, char const *);
2116       if (name == NULL)
2117         break;
2118
2119       value = va_arg(ap, gauge_t);
2120       if (!isnan(value))
2121         sum += value;
2122     }
2123     va_end(ap);
2124   }
2125
2126   vl = plugin_value_list_clone(template);
2127   /* plugin_value_list_clone makes sure vl->time is set to non-zero. */
2128   if (store_percentage)
2129     sstrncpy(vl->type, "percent", sizeof(vl->type));
2130
2131   va_start(ap, store_type);
2132   while (42) {
2133     char const *name;
2134     int status;
2135
2136     /* Set the type instance. */
2137     name = va_arg(ap, char const *);
2138     if (name == NULL)
2139       break;
2140     sstrncpy(vl->type_instance, name, sizeof(vl->type_instance));
2141
2142     /* Set the value. */
2143     switch (store_type) {
2144     case DS_TYPE_GAUGE:
2145       vl->values[0].gauge = va_arg(ap, gauge_t);
2146       if (store_percentage)
2147         vl->values[0].gauge *= sum ? (100.0 / sum) : NAN;
2148       break;
2149     case DS_TYPE_ABSOLUTE:
2150       vl->values[0].absolute = va_arg(ap, absolute_t);
2151       break;
2152     case DS_TYPE_COUNTER:
2153       vl->values[0].counter = va_arg(ap, counter_t);
2154       break;
2155     case DS_TYPE_DERIVE:
2156       vl->values[0].derive = va_arg(ap, derive_t);
2157       break;
2158     default:
2159       ERROR("plugin_dispatch_multivalue: given store_type is incorrect.");
2160       failed++;
2161     }
2162
2163     status = plugin_write_enqueue(vl);
2164     if (status != 0)
2165       failed++;
2166   }
2167   va_end(ap);
2168
2169   plugin_value_list_free(vl);
2170   return failed;
2171 } /* }}} int plugin_dispatch_multivalue */
2172
2173 int plugin_dispatch_notification(const notification_t *notif) {
2174   llentry_t *le;
2175   /* Possible TODO: Add flap detection here */
2176
2177   DEBUG("plugin_dispatch_notification: severity = %i; message = %s; "
2178         "time = %.3f; host = %s;",
2179         notif->severity, notif->message, CDTIME_T_TO_DOUBLE(notif->time),
2180         notif->host);
2181
2182   /* Nobody cares for notifications */
2183   if (list_notification == NULL)
2184     return -1;
2185
2186   le = llist_head(list_notification);
2187   while (le != NULL) {
2188     callback_func_t *cf;
2189     plugin_notification_cb callback;
2190     int status;
2191
2192     /* do not switch plugin context; rather keep the context
2193      * (interval) information of the calling plugin */
2194
2195     cf = le->value;
2196     callback = cf->cf_callback;
2197     status = (*callback)(notif, &cf->cf_udata);
2198     if (status != 0) {
2199       WARNING("plugin_dispatch_notification: Notification "
2200               "callback %s returned %i.",
2201               le->key, status);
2202     }
2203
2204     le = le->next;
2205   }
2206
2207   return 0;
2208 } /* int plugin_dispatch_notification */
2209
2210 void plugin_log(int level, const char *format, ...) {
2211   char msg[1024];
2212   va_list ap;
2213   llentry_t *le;
2214
2215 #if !COLLECT_DEBUG
2216   if (level >= LOG_DEBUG)
2217     return;
2218 #endif
2219
2220   va_start(ap, format);
2221   vsnprintf(msg, sizeof(msg), format, ap);
2222   msg[sizeof(msg) - 1] = '\0';
2223   va_end(ap);
2224
2225   if (list_log == NULL) {
2226     fprintf(stderr, "%s\n", msg);
2227     return;
2228   }
2229
2230   le = llist_head(list_log);
2231   while (le != NULL) {
2232     callback_func_t *cf;
2233     plugin_log_cb callback;
2234
2235     cf = le->value;
2236     callback = cf->cf_callback;
2237
2238     /* do not switch plugin context; rather keep the context
2239      * (interval) information of the calling plugin */
2240
2241     (*callback)(level, msg, &cf->cf_udata);
2242
2243     le = le->next;
2244   }
2245 } /* void plugin_log */
2246
2247 int parse_log_severity(const char *severity) {
2248   int log_level = -1;
2249
2250   if ((0 == strcasecmp(severity, "emerg")) ||
2251       (0 == strcasecmp(severity, "alert")) ||
2252       (0 == strcasecmp(severity, "crit")) || (0 == strcasecmp(severity, "err")))
2253     log_level = LOG_ERR;
2254   else if (0 == strcasecmp(severity, "warning"))
2255     log_level = LOG_WARNING;
2256   else if (0 == strcasecmp(severity, "notice"))
2257     log_level = LOG_NOTICE;
2258   else if (0 == strcasecmp(severity, "info"))
2259     log_level = LOG_INFO;
2260 #if COLLECT_DEBUG
2261   else if (0 == strcasecmp(severity, "debug"))
2262     log_level = LOG_DEBUG;
2263 #endif /* COLLECT_DEBUG */
2264
2265   return log_level;
2266 } /* int parse_log_severity */
2267
2268 int parse_notif_severity(const char *severity) {
2269   int notif_severity = -1;
2270
2271   if (strcasecmp(severity, "FAILURE") == 0)
2272     notif_severity = NOTIF_FAILURE;
2273   else if (strcmp(severity, "OKAY") == 0)
2274     notif_severity = NOTIF_OKAY;
2275   else if ((strcmp(severity, "WARNING") == 0) ||
2276            (strcmp(severity, "WARN") == 0))
2277     notif_severity = NOTIF_WARNING;
2278
2279   return notif_severity;
2280 } /* int parse_notif_severity */
2281
2282 const data_set_t *plugin_get_ds(const char *name) {
2283   data_set_t *ds;
2284
2285   if (data_sets == NULL) {
2286     ERROR("plugin_get_ds: No data sets are defined yet.");
2287     return NULL;
2288   }
2289
2290   if (c_avl_get(data_sets, name, (void *)&ds) != 0) {
2291     DEBUG("No such dataset registered: %s", name);
2292     return NULL;
2293   }
2294
2295   return ds;
2296 } /* data_set_t *plugin_get_ds */
2297
2298 static int plugin_notification_meta_add(notification_t *n, const char *name,
2299                                         enum notification_meta_type_e type,
2300                                         const void *value) {
2301   notification_meta_t *meta;
2302   notification_meta_t *tail;
2303
2304   if ((n == NULL) || (name == NULL) || (value == NULL)) {
2305     ERROR("plugin_notification_meta_add: A pointer is NULL!");
2306     return -1;
2307   }
2308
2309   meta = calloc(1, sizeof(*meta));
2310   if (meta == NULL) {
2311     ERROR("plugin_notification_meta_add: calloc failed.");
2312     return -1;
2313   }
2314
2315   sstrncpy(meta->name, name, sizeof(meta->name));
2316   meta->type = type;
2317
2318   switch (type) {
2319   case NM_TYPE_STRING: {
2320     meta->nm_value.nm_string = strdup((const char *)value);
2321     if (meta->nm_value.nm_string == NULL) {
2322       ERROR("plugin_notification_meta_add: strdup failed.");
2323       sfree(meta);
2324       return -1;
2325     }
2326     break;
2327   }
2328   case NM_TYPE_SIGNED_INT: {
2329     meta->nm_value.nm_signed_int = *((int64_t *)value);
2330     break;
2331   }
2332   case NM_TYPE_UNSIGNED_INT: {
2333     meta->nm_value.nm_unsigned_int = *((uint64_t *)value);
2334     break;
2335   }
2336   case NM_TYPE_DOUBLE: {
2337     meta->nm_value.nm_double = *((double *)value);
2338     break;
2339   }
2340   case NM_TYPE_BOOLEAN: {
2341     meta->nm_value.nm_boolean = *((bool *)value);
2342     break;
2343   }
2344   default: {
2345     ERROR("plugin_notification_meta_add: Unknown type: %i", type);
2346     sfree(meta);
2347     return -1;
2348   }
2349   } /* switch (type) */
2350
2351   meta->next = NULL;
2352   tail = n->meta;
2353   while ((tail != NULL) && (tail->next != NULL))
2354     tail = tail->next;
2355
2356   if (tail == NULL)
2357     n->meta = meta;
2358   else
2359     tail->next = meta;
2360
2361   return 0;
2362 } /* int plugin_notification_meta_add */
2363
2364 int plugin_notification_meta_add_string(notification_t *n, const char *name,
2365                                         const char *value) {
2366   return plugin_notification_meta_add(n, name, NM_TYPE_STRING, value);
2367 }
2368
2369 int plugin_notification_meta_add_signed_int(notification_t *n, const char *name,
2370                                             int64_t value) {
2371   return plugin_notification_meta_add(n, name, NM_TYPE_SIGNED_INT, &value);
2372 }
2373
2374 int plugin_notification_meta_add_unsigned_int(notification_t *n,
2375                                               const char *name,
2376                                               uint64_t value) {
2377   return plugin_notification_meta_add(n, name, NM_TYPE_UNSIGNED_INT, &value);
2378 }
2379
2380 int plugin_notification_meta_add_double(notification_t *n, const char *name,
2381                                         double value) {
2382   return plugin_notification_meta_add(n, name, NM_TYPE_DOUBLE, &value);
2383 }
2384
2385 int plugin_notification_meta_add_boolean(notification_t *n, const char *name,
2386                                          bool value) {
2387   return plugin_notification_meta_add(n, name, NM_TYPE_BOOLEAN, &value);
2388 }
2389
2390 int plugin_notification_meta_copy(notification_t *dst,
2391                                   const notification_t *src) {
2392   assert(dst != NULL);
2393   assert(src != NULL);
2394   assert(dst != src);
2395   assert((src->meta == NULL) || (src->meta != dst->meta));
2396
2397   for (notification_meta_t *meta = src->meta; meta != NULL; meta = meta->next) {
2398     if (meta->type == NM_TYPE_STRING)
2399       plugin_notification_meta_add_string(dst, meta->name,
2400                                           meta->nm_value.nm_string);
2401     else if (meta->type == NM_TYPE_SIGNED_INT)
2402       plugin_notification_meta_add_signed_int(dst, meta->name,
2403                                               meta->nm_value.nm_signed_int);
2404     else if (meta->type == NM_TYPE_UNSIGNED_INT)
2405       plugin_notification_meta_add_unsigned_int(dst, meta->name,
2406                                                 meta->nm_value.nm_unsigned_int);
2407     else if (meta->type == NM_TYPE_DOUBLE)
2408       plugin_notification_meta_add_double(dst, meta->name,
2409                                           meta->nm_value.nm_double);
2410     else if (meta->type == NM_TYPE_BOOLEAN)
2411       plugin_notification_meta_add_boolean(dst, meta->name,
2412                                            meta->nm_value.nm_boolean);
2413   }
2414
2415   return 0;
2416 } /* int plugin_notification_meta_copy */
2417
2418 int plugin_notification_meta_free(notification_meta_t *n) {
2419   notification_meta_t *this;
2420   notification_meta_t *next;
2421
2422   if (n == NULL) {
2423     ERROR("plugin_notification_meta_free: n == NULL!");
2424     return -1;
2425   }
2426
2427   this = n;
2428   while (this != NULL) {
2429     next = this->next;
2430
2431     if (this->type == NM_TYPE_STRING) {
2432       /* Assign to a temporary variable to work around nm_string's const
2433        * modifier. */
2434       void *tmp = (void *)this->nm_value.nm_string;
2435
2436       sfree(tmp);
2437       this->nm_value.nm_string = NULL;
2438     }
2439     sfree(this);
2440
2441     this = next;
2442   }
2443
2444   return 0;
2445 } /* int plugin_notification_meta_free */
2446
2447 static void plugin_ctx_destructor(void *ctx) {
2448   sfree(ctx);
2449 } /* void plugin_ctx_destructor */
2450
2451 static plugin_ctx_t ctx_init = {/* interval = */ 0};
2452
2453 static plugin_ctx_t *plugin_ctx_create(void) {
2454   plugin_ctx_t *ctx;
2455
2456   ctx = malloc(sizeof(*ctx));
2457   if (ctx == NULL) {
2458     ERROR("Failed to allocate plugin context: %s", STRERRNO);
2459     return NULL;
2460   }
2461
2462   *ctx = ctx_init;
2463   assert(plugin_ctx_key_initialized);
2464   pthread_setspecific(plugin_ctx_key, ctx);
2465   DEBUG("Created new plugin context.");
2466   return ctx;
2467 } /* int plugin_ctx_create */
2468
2469 void plugin_init_ctx(void) {
2470   pthread_key_create(&plugin_ctx_key, plugin_ctx_destructor);
2471   plugin_ctx_key_initialized = true;
2472 } /* void plugin_init_ctx */
2473
2474 plugin_ctx_t plugin_get_ctx(void) {
2475   plugin_ctx_t *ctx;
2476
2477   assert(plugin_ctx_key_initialized);
2478   ctx = pthread_getspecific(plugin_ctx_key);
2479
2480   if (ctx == NULL) {
2481     ctx = plugin_ctx_create();
2482     /* this must no happen -- exit() instead? */
2483     if (ctx == NULL)
2484       return ctx_init;
2485   }
2486
2487   return *ctx;
2488 } /* plugin_ctx_t plugin_get_ctx */
2489
2490 plugin_ctx_t plugin_set_ctx(plugin_ctx_t ctx) {
2491   plugin_ctx_t *c;
2492   plugin_ctx_t old;
2493
2494   assert(plugin_ctx_key_initialized);
2495   c = pthread_getspecific(plugin_ctx_key);
2496
2497   if (c == NULL) {
2498     c = plugin_ctx_create();
2499     /* this must no happen -- exit() instead? */
2500     if (c == NULL)
2501       return ctx_init;
2502   }
2503
2504   old = *c;
2505   *c = ctx;
2506
2507   return old;
2508 } /* void plugin_set_ctx */
2509
2510 cdtime_t plugin_get_interval(void) {
2511   cdtime_t interval;
2512
2513   interval = plugin_get_ctx().interval;
2514   if (interval > 0)
2515     return interval;
2516
2517   return cf_get_default_interval();
2518 } /* cdtime_t plugin_get_interval */
2519
2520 typedef struct {
2521   plugin_ctx_t ctx;
2522   void *(*start_routine)(void *);
2523   void *arg;
2524 } plugin_thread_t;
2525
2526 static void *plugin_thread_start(void *arg) {
2527   plugin_thread_t *plugin_thread = arg;
2528
2529   void *(*start_routine)(void *) = plugin_thread->start_routine;
2530   void *plugin_arg = plugin_thread->arg;
2531
2532   plugin_set_ctx(plugin_thread->ctx);
2533
2534   sfree(plugin_thread);
2535
2536   return start_routine(plugin_arg);
2537 } /* void *plugin_thread_start */
2538
2539 int plugin_thread_create(pthread_t *thread, const pthread_attr_t *attr,
2540                          void *(*start_routine)(void *), void *arg,
2541                          char const *name) {
2542   plugin_thread_t *plugin_thread;
2543
2544   plugin_thread = malloc(sizeof(*plugin_thread));
2545   if (plugin_thread == NULL)
2546     return ENOMEM;
2547
2548   plugin_thread->ctx = plugin_get_ctx();
2549   plugin_thread->start_routine = start_routine;
2550   plugin_thread->arg = arg;
2551
2552   int ret = pthread_create(thread, attr, plugin_thread_start, plugin_thread);
2553   if (ret != 0) {
2554     sfree(plugin_thread);
2555     return ret;
2556   }
2557
2558   if (name != NULL)
2559     set_thread_name(*thread, name);
2560
2561   return 0;
2562 } /* int plugin_thread_create */