src/plugin.c: Reduced `plugin_flush_one' to a tiny legacy function.
[collectd.git] / src / plugin.c
1 /**
2  * collectd - src/plugin.c
3  * Copyright (C) 2005-2008  Florian octo Forster
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; only version 2 of the License is applicable.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17  *
18  * Authors:
19  *   Florian octo Forster <octo at verplant.org>
20  *   Sebastian Harl <sh at tokkee.org>
21  **/
22
23 #include "collectd.h"
24 #include "utils_complain.h"
25
26 #include <ltdl.h>
27
28 #if HAVE_PTHREAD_H
29 # include <pthread.h>
30 #endif
31
32 #include "common.h"
33 #include "plugin.h"
34 #include "configfile.h"
35 #include "utils_avltree.h"
36 #include "utils_llist.h"
37 #include "utils_cache.h"
38 #include "utils_threshold.h"
39
40 /*
41  * Private structures
42  */
43 struct read_func_s
44 {
45         int wait_time;
46         int wait_left;
47         int (*callback) (void);
48         enum { DONE = 0, TODO = 1, ACTIVE = 2 } needs_read;
49 };
50 typedef struct read_func_s read_func_t;
51
52 /*
53  * Private variables
54  */
55 static llist_t *list_init;
56 static llist_t *list_read;
57 static llist_t *list_write;
58 static llist_t *list_flush;
59 static llist_t *list_shutdown;
60 static llist_t *list_log;
61 static llist_t *list_notification;
62
63 static c_avl_tree_t *data_sets;
64
65 static char *plugindir = NULL;
66
67 static int             read_loop = 1;
68 static pthread_mutex_t read_lock = PTHREAD_MUTEX_INITIALIZER;
69 static pthread_cond_t  read_cond = PTHREAD_COND_INITIALIZER;
70 static pthread_t      *read_threads = NULL;
71 static int             read_threads_num = 0;
72
73 /*
74  * Static functions
75  */
76 static const char *plugin_get_dir (void)
77 {
78         if (plugindir == NULL)
79                 return (PLUGINDIR);
80         else
81                 return (plugindir);
82 }
83
84 static int register_callback (llist_t **list, const char *name, void *callback)
85 {
86         llentry_t *le;
87         char *key;
88
89         if ((*list == NULL)
90                         && ((*list = llist_create ()) == NULL))
91                 return (-1);
92
93         le = llist_search (*list, name);
94         if (le == NULL)
95         {
96                 key = strdup (name);
97                 if (key == NULL)
98                         return (-1);
99
100                 le = llentry_create (key, callback);
101                 if (le == NULL)
102                 {
103                         free (key);
104                         return (-1);
105                 }
106
107                 llist_append (*list, le);
108         }
109         else
110         {
111                 le->value = callback;
112         }
113
114         return (0);
115 } /* int register_callback */
116
117 static int plugin_unregister (llist_t *list, const char *name)
118 {
119         llentry_t *e;
120
121         e = llist_search (list, name);
122
123         if (e == NULL)
124                 return (-1);
125
126         llist_remove (list, e);
127         free (e->key);
128         llentry_destroy (e);
129
130         return (0);
131 } /* int plugin_unregister */
132
133 /*
134  * (Try to) load the shared object `file'. Won't complain if it isn't a shared
135  * object, but it will bitch about a shared object not having a
136  * ``module_register'' symbol..
137  */
138 static int plugin_load_file (char *file)
139 {
140         lt_dlhandle dlh;
141         void (*reg_handle) (void);
142
143         DEBUG ("file = %s", file);
144
145         lt_dlinit ();
146         lt_dlerror (); /* clear errors */
147
148         if ((dlh = lt_dlopen (file)) == NULL)
149         {
150                 const char *error = lt_dlerror ();
151
152                 ERROR ("lt_dlopen failed: %s", error);
153                 fprintf (stderr, "lt_dlopen failed: %s\n", error);
154                 return (1);
155         }
156
157         if ((reg_handle = (void (*) (void)) lt_dlsym (dlh, "module_register")) == NULL)
158         {
159                 WARNING ("Couldn't find symbol ``module_register'' in ``%s'': %s\n",
160                                 file, lt_dlerror ());
161                 lt_dlclose (dlh);
162                 return (-1);
163         }
164
165         (*reg_handle) ();
166
167         return (0);
168 }
169
170 static void *plugin_read_thread (void *args)
171 {
172         llentry_t   *le;
173         read_func_t *rf;
174         int          status;
175         int          done;
176
177         pthread_mutex_lock (&read_lock);
178
179         while (read_loop != 0)
180         {
181                 le = llist_head (list_read);
182                 done = 0;
183
184                 while ((read_loop != 0) && (le != NULL))
185                 {
186                         rf = (read_func_t *) le->value;
187
188                         if (rf->needs_read != TODO)
189                         {
190                                 le = le->next;
191                                 continue;
192                         }
193
194                         /* We will do this read function */
195                         rf->needs_read = ACTIVE;
196
197                         DEBUG ("[thread #%5lu] plugin: plugin_read_thread: Handling %s",
198                                         (unsigned long int) pthread_self (), le->key);
199                         pthread_mutex_unlock (&read_lock);
200
201                         status = rf->callback ();
202                         done++;
203
204                         if (status != 0)
205                         {
206                                 if (rf->wait_time < interval_g)
207                                         rf->wait_time = interval_g;
208                                 rf->wait_left = rf->wait_time;
209                                 rf->wait_time = rf->wait_time * 2;
210                                 if (rf->wait_time > 86400)
211                                         rf->wait_time = 86400;
212
213                                 NOTICE ("read-function of plugin `%s' "
214                                                 "failed. Will suspend it for %i "
215                                                 "seconds.", le->key, rf->wait_left);
216                         }
217                         else
218                         {
219                                 rf->wait_left = 0;
220                                 rf->wait_time = interval_g;
221                         }
222
223                         pthread_mutex_lock (&read_lock);
224
225                         rf->needs_read = DONE;
226                         le = le->next;
227                 } /* while (le != NULL) */
228
229                 if ((read_loop != 0) && (done == 0))
230                 {
231                         DEBUG ("[thread #%5lu] plugin: plugin_read_thread: Waiting on read_cond.",
232                                         (unsigned long int) pthread_self ());
233                         pthread_cond_wait (&read_cond, &read_lock);
234                 }
235         } /* while (read_loop) */
236
237         pthread_mutex_unlock (&read_lock);
238
239         pthread_exit (NULL);
240         return ((void *) 0);
241 } /* void *plugin_read_thread */
242
243 static void start_threads (int num)
244 {
245         int i;
246
247         if (read_threads != NULL)
248                 return;
249
250         read_threads = (pthread_t *) calloc (num, sizeof (pthread_t));
251         if (read_threads == NULL)
252         {
253                 ERROR ("plugin: start_threads: calloc failed.");
254                 return;
255         }
256
257         read_threads_num = 0;
258         for (i = 0; i < num; i++)
259         {
260                 if (pthread_create (read_threads + read_threads_num, NULL,
261                                         plugin_read_thread, NULL) == 0)
262                 {
263                         read_threads_num++;
264                 }
265                 else
266                 {
267                         ERROR ("plugin: start_threads: pthread_create failed.");
268                         return;
269                 }
270         } /* for (i) */
271 } /* void start_threads */
272
273 static void stop_threads (void)
274 {
275         int i;
276
277         pthread_mutex_lock (&read_lock);
278         read_loop = 0;
279         DEBUG ("plugin: stop_threads: Signalling `read_cond'");
280         pthread_cond_broadcast (&read_cond);
281         pthread_mutex_unlock (&read_lock);
282
283         for (i = 0; i < read_threads_num; i++)
284         {
285                 if (pthread_join (read_threads[i], NULL) != 0)
286                 {
287                         ERROR ("plugin: stop_threads: pthread_join failed.");
288                 }
289                 read_threads[i] = (pthread_t) 0;
290         }
291         sfree (read_threads);
292         read_threads_num = 0;
293 } /* void stop_threads */
294
295 /*
296  * Public functions
297  */
298 void plugin_set_dir (const char *dir)
299 {
300         if (plugindir != NULL)
301                 free (plugindir);
302
303         if (dir == NULL)
304                 plugindir = NULL;
305         else if ((plugindir = strdup (dir)) == NULL)
306         {
307                 char errbuf[1024];
308                 ERROR ("strdup failed: %s",
309                                 sstrerror (errno, errbuf, sizeof (errbuf)));
310         }
311 }
312
313 #define BUFSIZE 512
314 int plugin_load (const char *type)
315 {
316         DIR  *dh;
317         const char *dir;
318         char  filename[BUFSIZE] = "";
319         char  typename[BUFSIZE];
320         int   typename_len;
321         int   ret;
322         struct stat    statbuf;
323         struct dirent *de;
324
325         DEBUG ("type = %s", type);
326
327         dir = plugin_get_dir ();
328         ret = 1;
329
330         /* `cpu' should not match `cpufreq'. To solve this we add `.so' to the
331          * type when matching the filename */
332         if (ssnprintf (typename, sizeof (typename),
333                         "%s.so", type) >= sizeof (typename))
334         {
335                 WARNING ("snprintf: truncated: `%s.so'", type);
336                 return (-1);
337         }
338         typename_len = strlen (typename);
339
340         if ((dh = opendir (dir)) == NULL)
341         {
342                 char errbuf[1024];
343                 ERROR ("opendir (%s): %s", dir,
344                                 sstrerror (errno, errbuf, sizeof (errbuf)));
345                 return (-1);
346         }
347
348         while ((de = readdir (dh)) != NULL)
349         {
350                 if (strncasecmp (de->d_name, typename, typename_len))
351                         continue;
352
353                 if (ssnprintf (filename, sizeof (filename),
354                                 "%s/%s", dir, de->d_name) >= sizeof (filename))
355                 {
356                         WARNING ("snprintf: truncated: `%s/%s'", dir, de->d_name);
357                         continue;
358                 }
359
360                 if (lstat (filename, &statbuf) == -1)
361                 {
362                         char errbuf[1024];
363                         WARNING ("stat %s: %s", filename,
364                                         sstrerror (errno, errbuf, sizeof (errbuf)));
365                         continue;
366                 }
367                 else if (!S_ISREG (statbuf.st_mode))
368                 {
369                         /* don't follow symlinks */
370                         continue;
371                 }
372
373                 if (plugin_load_file (filename) == 0)
374                 {
375                         /* success */
376                         ret = 0;
377                         break;
378                 }
379                 else
380                 {
381                         fprintf (stderr, "Unable to load plugin %s.\n", type);
382                 }
383         }
384
385         closedir (dh);
386
387         if (filename[0] == '\0')
388                 fprintf (stderr, "Could not find plugin %s.\n", type);
389
390         return (ret);
391 }
392
393 /*
394  * The `register_*' functions follow
395  */
396 int plugin_register_config (const char *name,
397                 int (*callback) (const char *key, const char *val),
398                 const char **keys, int keys_num)
399 {
400         cf_register (name, callback, keys, keys_num);
401         return (0);
402 } /* int plugin_register_config */
403
404 int plugin_register_complex_config (const char *type,
405                 int (*callback) (oconfig_item_t *))
406 {
407         return (cf_register_complex (type, callback));
408 } /* int plugin_register_complex_config */
409
410 int plugin_register_init (const char *name,
411                 int (*callback) (void))
412 {
413         return (register_callback (&list_init, name, (void *) callback));
414 } /* plugin_register_init */
415
416 int plugin_register_read (const char *name,
417                 int (*callback) (void))
418 {
419         read_func_t *rf;
420
421         rf = (read_func_t *) malloc (sizeof (read_func_t));
422         if (rf == NULL)
423         {
424                 char errbuf[1024];
425                 ERROR ("plugin_register_read: malloc failed: %s",
426                                 sstrerror (errno, errbuf, sizeof (errbuf)));
427                 return (-1);
428         }
429
430         memset (rf, '\0', sizeof (read_func_t));
431         rf->wait_time = interval_g;
432         rf->wait_left = 0;
433         rf->callback = callback;
434         rf->needs_read = DONE;
435
436         return (register_callback (&list_read, name, (void *) rf));
437 } /* int plugin_register_read */
438
439 int plugin_register_write (const char *name,
440                 int (*callback) (const data_set_t *ds, const value_list_t *vl))
441 {
442         return (register_callback (&list_write, name, (void *) callback));
443 } /* int plugin_register_write */
444
445 int plugin_register_flush (const char *name,
446                 int (*callback) (const int timeout, const char *identifier))
447 {
448         return (register_callback (&list_flush, name, (void *) callback));
449 } /* int plugin_register_flush */
450
451 int plugin_register_shutdown (char *name,
452                 int (*callback) (void))
453 {
454         return (register_callback (&list_shutdown, name, (void *) callback));
455 } /* int plugin_register_shutdown */
456
457 int plugin_register_data_set (const data_set_t *ds)
458 {
459         data_set_t *ds_copy;
460         int i;
461
462         if ((data_sets != NULL)
463                         && (c_avl_get (data_sets, ds->type, NULL) == 0))
464         {
465                 NOTICE ("Replacing DS `%s' with another version.", ds->type);
466                 plugin_unregister_data_set (ds->type);
467         }
468         else if (data_sets == NULL)
469         {
470                 data_sets = c_avl_create ((int (*) (const void *, const void *)) strcmp);
471                 if (data_sets == NULL)
472                         return (-1);
473         }
474
475         ds_copy = (data_set_t *) malloc (sizeof (data_set_t));
476         if (ds_copy == NULL)
477                 return (-1);
478         memcpy(ds_copy, ds, sizeof (data_set_t));
479
480         ds_copy->ds = (data_source_t *) malloc (sizeof (data_source_t)
481                         * ds->ds_num);
482         if (ds_copy->ds == NULL)
483         {
484                 free (ds_copy);
485                 return (-1);
486         }
487
488         for (i = 0; i < ds->ds_num; i++)
489                 memcpy (ds_copy->ds + i, ds->ds + i, sizeof (data_source_t));
490
491         return (c_avl_insert (data_sets, (void *) ds_copy->type, (void *) ds_copy));
492 } /* int plugin_register_data_set */
493
494 int plugin_register_log (char *name,
495                 void (*callback) (int priority, const char *msg))
496 {
497         return (register_callback (&list_log, name, (void *) callback));
498 } /* int plugin_register_log */
499
500 int plugin_register_notification (const char *name,
501                 int (*callback) (const notification_t *notif))
502 {
503         return (register_callback (&list_notification, name, (void *) callback));
504 } /* int plugin_register_log */
505
506 int plugin_unregister_config (const char *name)
507 {
508         cf_unregister (name);
509         return (0);
510 } /* int plugin_unregister_config */
511
512 int plugin_unregister_complex_config (const char *name)
513 {
514         cf_unregister_complex (name);
515         return (0);
516 } /* int plugin_unregister_complex_config */
517
518 int plugin_unregister_init (const char *name)
519 {
520         return (plugin_unregister (list_init, name));
521 }
522
523 int plugin_unregister_read (const char *name)
524 {
525         llentry_t *e;
526
527         e = llist_search (list_read, name);
528
529         if (e == NULL)
530                 return (-1);
531
532         llist_remove (list_read, e);
533         free (e->value);
534         free (e->key);
535         llentry_destroy (e);
536
537         return (0);
538 }
539
540 int plugin_unregister_write (const char *name)
541 {
542         return (plugin_unregister (list_write, name));
543 }
544
545 int plugin_unregister_flush (const char *name)
546 {
547         return (plugin_unregister (list_flush, name));
548 }
549
550 int plugin_unregister_shutdown (const char *name)
551 {
552         return (plugin_unregister (list_shutdown, name));
553 }
554
555 int plugin_unregister_data_set (const char *name)
556 {
557         data_set_t *ds;
558
559         if (data_sets == NULL)
560                 return (-1);
561
562         if (c_avl_remove (data_sets, name, NULL, (void *) &ds) != 0)
563                 return (-1);
564
565         sfree (ds->ds);
566         sfree (ds);
567
568         return (0);
569 } /* int plugin_unregister_data_set */
570
571 int plugin_unregister_log (const char *name)
572 {
573         return (plugin_unregister (list_log, name));
574 }
575
576 int plugin_unregister_notification (const char *name)
577 {
578         return (plugin_unregister (list_notification, name));
579 }
580
581 void plugin_init_all (void)
582 {
583         int (*callback) (void);
584         llentry_t *le;
585         int status;
586
587         /* Init the value cache */
588         uc_init ();
589
590         if ((list_init == NULL) && (list_read == NULL))
591                 return;
592
593         /* Calling all init callbacks before checking if read callbacks
594          * are available allows the init callbacks to register the read
595          * callback. */
596         le = llist_head (list_init);
597         while (le != NULL)
598         {
599                 callback = (int (*) (void)) le->value;
600                 status = (*callback) ();
601
602                 if (status != 0)
603                 {
604                         ERROR ("Initialization of plugin `%s' "
605                                         "failed with status %i. "
606                                         "Plugin will be unloaded.",
607                                         le->key, status);
608                         /* Plugins that register read callbacks from the init
609                          * callback should take care of appropriate error
610                          * handling themselves. */
611                         /* FIXME: Unload _all_ functions */
612                         plugin_unregister_read (le->key);
613                 }
614
615                 le = le->next;
616         }
617
618         /* Start read-threads */
619         if (list_read != NULL)
620         {
621                 const char *rt;
622                 int num;
623                 rt = global_option_get ("ReadThreads");
624                 num = atoi (rt);
625                 start_threads ((num > 0) ? num : 5);
626         }
627 } /* void plugin_init_all */
628
629 void plugin_read_all (void)
630 {
631         llentry_t   *le;
632         read_func_t *rf;
633
634         uc_check_timeout ();
635
636         if (list_read == NULL)
637                 return;
638
639         pthread_mutex_lock (&read_lock);
640
641         le = llist_head (list_read);
642         while (le != NULL)
643         {
644                 rf = (read_func_t *) le->value;
645
646                 if (rf->needs_read != DONE)
647                 {
648                         le = le->next;
649                         continue;
650                 }
651
652                 if (rf->wait_left > 0)
653                         rf->wait_left -= interval_g;
654
655                 if (rf->wait_left <= 0)
656                 {
657                         rf->needs_read = TODO;
658                 }
659
660                 le = le->next;
661         }
662
663         DEBUG ("plugin: plugin_read_all: Signalling `read_cond'");
664         pthread_cond_broadcast (&read_cond);
665         pthread_mutex_unlock (&read_lock);
666 } /* void plugin_read_all */
667
668 void plugin_flush_all (int timeout)
669 {
670         int (*callback) (int timeout, const char *identifier);
671         llentry_t *le;
672
673         if (list_flush == NULL)
674                 return;
675
676         le = llist_head (list_flush);
677         while (le != NULL)
678         {
679                 callback = (int (*) (int, const char *)) le->value;
680                 le = le->next;
681
682                 (*callback) (timeout, NULL);
683         }
684 } /* void plugin_flush_all */
685
686 int plugin_flush (const char *plugin, int timeout, const char *identifier)
687 {
688   int (*callback) (int timeout, const char *identifier);
689   llentry_t *le;
690
691   if (list_flush == NULL)
692     return (0);
693
694   le = llist_head (list_flush);
695   while (le != NULL)
696   {
697     if ((plugin != NULL)
698         && (strcmp (plugin, le->key) != 0))
699     {
700       le = le->next;
701       continue;
702     }
703
704     callback = (int (*) (int, const char *)) le->value;
705     (*callback) (timeout, identifier);
706
707     le = le->next;
708   }
709   return (0);
710 } /* int plugin_flush */
711
712 /* FIXME: Remove this function once the perl plugin has been updated. */
713 int plugin_flush_one (int timeout, const char *name)
714 {
715   return (plugin_flush (name, timeout, NULL));
716 } /* int plugin_flush_one */
717
718 void plugin_shutdown_all (void)
719 {
720         int (*callback) (void);
721         llentry_t *le;
722
723         stop_threads ();
724
725         if (list_shutdown == NULL)
726                 return;
727
728         le = llist_head (list_shutdown);
729         while (le != NULL)
730         {
731                 callback = (int (*) (void)) le->value;
732
733                 /* Advance the pointer before calling the callback allows
734                  * shutdown functions to unregister themselves. If done the
735                  * other way around the memory `le' points to will be freed
736                  * after callback returns. */
737                 le = le->next;
738
739                 (*callback) ();
740         }
741 } /* void plugin_shutdown_all */
742
743 int plugin_dispatch_values (value_list_t *vl)
744 {
745         static c_complain_t no_write_complaint = C_COMPLAIN_INIT;
746
747         int (*callback) (const data_set_t *, const value_list_t *);
748         data_set_t *ds;
749         llentry_t *le;
750
751         if ((vl == NULL) || (*vl->type == '\0')) {
752                 ERROR ("plugin_dispatch_values: Invalid value list.");
753                 return (-1);
754         }
755
756         if (list_write == NULL)
757                 c_complain_once (LOG_WARNING, &no_write_complaint,
758                                 "plugin_dispatch_values: No write callback has been "
759                                 "registered. Please load at least one output plugin, "
760                                 "if you want the collected data to be stored.");
761
762         if (data_sets == NULL)
763         {
764                 ERROR ("plugin_dispatch_values: No data sets registered. "
765                                 "Could the types database be read? Check "
766                                 "your `TypesDB' setting!");
767                 return (-1);
768         }
769
770         if (c_avl_get (data_sets, vl->type, (void *) &ds) != 0)
771         {
772                 INFO ("plugin_dispatch_values: Dataset not found: %s", vl->type);
773                 return (-1);
774         }
775
776         DEBUG ("plugin_dispatch_values: time = %u; interval = %i; "
777                         "host = %s; "
778                         "plugin = %s; plugin_instance = %s; "
779                         "type = %s; type_instance = %s;",
780                         (unsigned int) vl->time, vl->interval,
781                         vl->host,
782                         vl->plugin, vl->plugin_instance,
783                         vl->type, vl->type_instance);
784
785 #if COLLECT_DEBUG
786         assert (0 == strcmp (ds->type, vl->type));
787 #else
788         if (0 != strcmp (ds->type, vl->type))
789                 WARNING ("plugin_dispatch_values: (ds->type = %s) != (vl->type = %s)",
790                                 ds->type, vl->type);
791 #endif
792
793 #if COLLECT_DEBUG
794         assert (ds->ds_num == vl->values_len);
795 #else
796         if (ds->ds_num != vl->values_len)
797         {
798                 ERROR ("plugin_dispatch_values: ds->type = %s: "
799                                 "(ds->ds_num = %i) != "
800                                 "(vl->values_len = %i)",
801                                 ds->type, ds->ds_num, vl->values_len);
802                 return (-1);
803         }
804 #endif
805
806         escape_slashes (vl->host, sizeof (vl->host));
807         escape_slashes (vl->plugin, sizeof (vl->plugin));
808         escape_slashes (vl->plugin_instance, sizeof (vl->plugin_instance));
809         escape_slashes (vl->type, sizeof (vl->type));
810         escape_slashes (vl->type_instance, sizeof (vl->type_instance));
811
812         /* Update the value cache */
813         uc_update (ds, vl);
814         ut_check_threshold (ds, vl);
815
816         le = llist_head (list_write);
817         while (le != NULL)
818         {
819                 callback = (int (*) (const data_set_t *, const value_list_t *)) le->value;
820                 (*callback) (ds, vl);
821
822                 le = le->next;
823         }
824
825         return (0);
826 } /* int plugin_dispatch_values */
827
828 int plugin_dispatch_notification (const notification_t *notif)
829 {
830         int (*callback) (const notification_t *);
831         llentry_t *le;
832         /* Possible TODO: Add flap detection here */
833
834         DEBUG ("plugin_dispatch_notification: severity = %i; message = %s; "
835                         "time = %u; host = %s;",
836                         notif->severity, notif->message,
837                         (unsigned int) notif->time, notif->host);
838
839         /* Nobody cares for notifications */
840         if (list_notification == NULL)
841                 return (-1);
842
843         le = llist_head (list_notification);
844         while (le != NULL)
845         {
846                 callback = (int (*) (const notification_t *)) le->value;
847                 (*callback) (notif);
848
849                 le = le->next;
850         }
851
852         return (0);
853 } /* int plugin_dispatch_notification */
854
855 void plugin_log (int level, const char *format, ...)
856 {
857         char msg[512];
858         va_list ap;
859
860         void (*callback) (int, const char *);
861         llentry_t *le;
862
863         if (list_log == NULL)
864                 return;
865
866 #if !COLLECT_DEBUG
867         if (level >= LOG_DEBUG)
868                 return;
869 #endif
870
871         va_start (ap, format);
872         vsnprintf (msg, 512, format, ap);
873         msg[511] = '\0';
874         va_end (ap);
875
876         le = llist_head (list_log);
877         while (le != NULL)
878         {
879                 callback = (void (*) (int, const char *)) le->value;
880                 (*callback) (level, msg);
881
882                 le = le->next;
883         }
884 } /* void plugin_log */
885
886 const data_set_t *plugin_get_ds (const char *name)
887 {
888         data_set_t *ds;
889
890         if (c_avl_get (data_sets, name, (void *) &ds) != 0)
891         {
892                 DEBUG ("No such dataset registered: %s", name);
893                 return (NULL);
894         }
895
896         return (ds);
897 } /* data_set_t *plugin_get_ds */
898
899 static int plugin_notification_meta_add (notification_t *n,
900                 const char *name,
901                 enum notification_meta_type_e type,
902                 const void *value)
903 {
904   notification_meta_t *meta;
905   notification_meta_t *tail;
906
907   if ((n == NULL) || (name == NULL) || (value == NULL))
908   {
909     ERROR ("plugin_notification_meta_add: A pointer is NULL!");
910     return (-1);
911   }
912
913   meta = (notification_meta_t *) malloc (sizeof (notification_meta_t));
914   if (meta == NULL)
915   {
916     ERROR ("plugin_notification_meta_add: malloc failed.");
917     return (-1);
918   }
919   memset (meta, 0, sizeof (notification_meta_t));
920
921   sstrncpy (meta->name, name, sizeof (meta->name));
922   meta->type = type;
923
924   switch (type)
925   {
926     case NM_TYPE_STRING:
927     {
928       meta->value_string = strdup ((const char *) value);
929       if (meta->value_string == NULL)
930       {
931         ERROR ("plugin_notification_meta_add: strdup failed.");
932         sfree (meta);
933         return (-1);
934       }
935       break;
936     }
937     case NM_TYPE_SIGNED_INT:
938     {
939       meta->value_signed_int = *((int64_t *) value);
940       break;
941     }
942     case NM_TYPE_UNSIGNED_INT:
943     {
944       meta->value_unsigned_int = *((uint64_t *) value);
945       break;
946     }
947     case NM_TYPE_DOUBLE:
948     {
949       meta->value_double = *((double *) value);
950       break;
951     }
952     case NM_TYPE_BOOLEAN:
953     {
954       meta->value_boolean = *((bool *) value);
955       break;
956     }
957     default:
958     {
959       ERROR ("plugin_notification_meta_add: Unknown type: %i", type);
960       sfree (meta);
961       return (-1);
962     }
963   } /* switch (type) */
964
965   meta->next = NULL;
966   tail = n->meta;
967   while ((tail != NULL) && (tail->next != NULL))
968     tail = tail->next;
969
970   if (tail == NULL)
971     n->meta = meta;
972   else
973     tail->next = meta;
974
975   return (0);
976 } /* int plugin_notification_meta_add */
977
978 int plugin_notification_meta_add_string (notification_t *n,
979     const char *name,
980     const char *value)
981 {
982   return (plugin_notification_meta_add (n, name, NM_TYPE_STRING, value));
983 }
984
985 int plugin_notification_meta_add_signed_int (notification_t *n,
986     const char *name,
987     int64_t value)
988 {
989   return (plugin_notification_meta_add (n, name, NM_TYPE_SIGNED_INT, &value));
990 }
991
992 int plugin_notification_meta_add_unsigned_int (notification_t *n,
993     const char *name,
994     uint64_t value)
995 {
996   return (plugin_notification_meta_add (n, name, NM_TYPE_UNSIGNED_INT, &value));
997 }
998
999 int plugin_notification_meta_add_double (notification_t *n,
1000     const char *name,
1001     double value)
1002 {
1003   return (plugin_notification_meta_add (n, name, NM_TYPE_DOUBLE, &value));
1004 }
1005
1006 int plugin_notification_meta_add_boolean (notification_t *n,
1007     const char *name,
1008     bool value)
1009 {
1010   return (plugin_notification_meta_add (n, name, NM_TYPE_BOOLEAN, &value));
1011 }
1012
1013 int plugin_notification_meta_copy (notification_t *dst,
1014     const notification_t *src)
1015 {
1016   notification_meta_t *meta;
1017
1018   assert (dst != NULL);
1019   assert (src != NULL);
1020   assert (dst != src);
1021   assert ((src->meta == NULL) || (src->meta != dst->meta));
1022
1023   for (meta = src->meta; meta != NULL; meta = meta->next)
1024   {
1025     if (meta->type == NM_TYPE_STRING)
1026       plugin_notification_meta_add_string (dst, meta->name,
1027           meta->value_string);
1028     else if (meta->type == NM_TYPE_SIGNED_INT)
1029       plugin_notification_meta_add_signed_int (dst, meta->name,
1030           meta->value_signed_int);
1031     else if (meta->type == NM_TYPE_UNSIGNED_INT)
1032       plugin_notification_meta_add_unsigned_int (dst, meta->name,
1033           meta->value_unsigned_int);
1034     else if (meta->type == NM_TYPE_DOUBLE)
1035       plugin_notification_meta_add_double (dst, meta->name,
1036           meta->value_double);
1037     else if (meta->type == NM_TYPE_BOOLEAN)
1038       plugin_notification_meta_add_boolean (dst, meta->name,
1039           meta->value_boolean);
1040   }
1041
1042   return (0);
1043 } /* int plugin_notification_meta_copy */
1044
1045 int plugin_notification_meta_free (notification_t *n)
1046 {
1047   notification_meta_t *this;
1048   notification_meta_t *next;
1049
1050   if (n == NULL)
1051   {
1052     ERROR ("plugin_notification_meta_free: n == NULL!");
1053     return (-1);
1054   }
1055
1056   this = n->meta;
1057   n->meta = NULL;
1058   while (this != NULL)
1059   {
1060     next = this->next;
1061
1062     if (this->type == NM_TYPE_STRING)
1063     {
1064       free ((char *)this->value_string);
1065       this->value_string = NULL;
1066     }
1067     sfree (this);
1068
1069     this = next;
1070   }
1071
1072   return (0);
1073 } /* int plugin_notification_meta_free */