Merge branch 'master' of git://git.verplant.org/collectd
[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 (%s) failed: %s", file, error);
153                 fprintf (stderr, "lt_dlopen (%s) failed: %s\n", file, 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 int plugin_flush (const char *plugin, int timeout, const char *identifier)
669 {
670   int (*callback) (int timeout, const char *identifier);
671   llentry_t *le;
672
673   if (list_flush == NULL)
674     return (0);
675
676   le = llist_head (list_flush);
677   while (le != NULL)
678   {
679     if ((plugin != NULL)
680         && (strcmp (plugin, le->key) != 0))
681     {
682       le = le->next;
683       continue;
684     }
685
686     callback = (int (*) (int, const char *)) le->value;
687     (*callback) (timeout, identifier);
688
689     le = le->next;
690   }
691   return (0);
692 } /* int plugin_flush */
693
694 void plugin_shutdown_all (void)
695 {
696         int (*callback) (void);
697         llentry_t *le;
698
699         stop_threads ();
700
701         if (list_shutdown == NULL)
702                 return;
703
704         le = llist_head (list_shutdown);
705         while (le != NULL)
706         {
707                 callback = (int (*) (void)) le->value;
708
709                 /* Advance the pointer before calling the callback allows
710                  * shutdown functions to unregister themselves. If done the
711                  * other way around the memory `le' points to will be freed
712                  * after callback returns. */
713                 le = le->next;
714
715                 (*callback) ();
716         }
717 } /* void plugin_shutdown_all */
718
719 int plugin_dispatch_values (value_list_t *vl)
720 {
721         static c_complain_t no_write_complaint = C_COMPLAIN_INIT;
722
723         int (*callback) (const data_set_t *, const value_list_t *);
724         data_set_t *ds;
725         llentry_t *le;
726
727         if ((vl == NULL) || (*vl->type == '\0')) {
728                 ERROR ("plugin_dispatch_values: Invalid value list.");
729                 return (-1);
730         }
731
732         if (list_write == NULL)
733                 c_complain_once (LOG_WARNING, &no_write_complaint,
734                                 "plugin_dispatch_values: No write callback has been "
735                                 "registered. Please load at least one output plugin, "
736                                 "if you want the collected data to be stored.");
737
738         if (data_sets == NULL)
739         {
740                 ERROR ("plugin_dispatch_values: No data sets registered. "
741                                 "Could the types database be read? Check "
742                                 "your `TypesDB' setting!");
743                 return (-1);
744         }
745
746         if (c_avl_get (data_sets, vl->type, (void *) &ds) != 0)
747         {
748                 INFO ("plugin_dispatch_values: Dataset not found: %s", vl->type);
749                 return (-1);
750         }
751
752         DEBUG ("plugin_dispatch_values: time = %u; interval = %i; "
753                         "host = %s; "
754                         "plugin = %s; plugin_instance = %s; "
755                         "type = %s; type_instance = %s;",
756                         (unsigned int) vl->time, vl->interval,
757                         vl->host,
758                         vl->plugin, vl->plugin_instance,
759                         vl->type, vl->type_instance);
760
761 #if COLLECT_DEBUG
762         assert (0 == strcmp (ds->type, vl->type));
763 #else
764         if (0 != strcmp (ds->type, vl->type))
765                 WARNING ("plugin_dispatch_values: (ds->type = %s) != (vl->type = %s)",
766                                 ds->type, vl->type);
767 #endif
768
769 #if COLLECT_DEBUG
770         assert (ds->ds_num == vl->values_len);
771 #else
772         if (ds->ds_num != vl->values_len)
773         {
774                 ERROR ("plugin_dispatch_values: ds->type = %s: "
775                                 "(ds->ds_num = %i) != "
776                                 "(vl->values_len = %i)",
777                                 ds->type, ds->ds_num, vl->values_len);
778                 return (-1);
779         }
780 #endif
781
782         escape_slashes (vl->host, sizeof (vl->host));
783         escape_slashes (vl->plugin, sizeof (vl->plugin));
784         escape_slashes (vl->plugin_instance, sizeof (vl->plugin_instance));
785         escape_slashes (vl->type, sizeof (vl->type));
786         escape_slashes (vl->type_instance, sizeof (vl->type_instance));
787
788         /* Update the value cache */
789         uc_update (ds, vl);
790         ut_check_threshold (ds, vl);
791
792         le = llist_head (list_write);
793         while (le != NULL)
794         {
795                 callback = (int (*) (const data_set_t *, const value_list_t *)) le->value;
796                 (*callback) (ds, vl);
797
798                 le = le->next;
799         }
800
801         return (0);
802 } /* int plugin_dispatch_values */
803
804 int plugin_dispatch_notification (const notification_t *notif)
805 {
806         int (*callback) (const notification_t *);
807         llentry_t *le;
808         /* Possible TODO: Add flap detection here */
809
810         DEBUG ("plugin_dispatch_notification: severity = %i; message = %s; "
811                         "time = %u; host = %s;",
812                         notif->severity, notif->message,
813                         (unsigned int) notif->time, notif->host);
814
815         /* Nobody cares for notifications */
816         if (list_notification == NULL)
817                 return (-1);
818
819         le = llist_head (list_notification);
820         while (le != NULL)
821         {
822                 callback = (int (*) (const notification_t *)) le->value;
823                 (*callback) (notif);
824
825                 le = le->next;
826         }
827
828         return (0);
829 } /* int plugin_dispatch_notification */
830
831 void plugin_log (int level, const char *format, ...)
832 {
833         char msg[512];
834         va_list ap;
835
836         void (*callback) (int, const char *);
837         llentry_t *le;
838
839         if (list_log == NULL)
840                 return;
841
842 #if !COLLECT_DEBUG
843         if (level >= LOG_DEBUG)
844                 return;
845 #endif
846
847         va_start (ap, format);
848         vsnprintf (msg, 512, format, ap);
849         msg[511] = '\0';
850         va_end (ap);
851
852         le = llist_head (list_log);
853         while (le != NULL)
854         {
855                 callback = (void (*) (int, const char *)) le->value;
856                 (*callback) (level, msg);
857
858                 le = le->next;
859         }
860 } /* void plugin_log */
861
862 const data_set_t *plugin_get_ds (const char *name)
863 {
864         data_set_t *ds;
865
866         if (c_avl_get (data_sets, name, (void *) &ds) != 0)
867         {
868                 DEBUG ("No such dataset registered: %s", name);
869                 return (NULL);
870         }
871
872         return (ds);
873 } /* data_set_t *plugin_get_ds */
874
875 static int plugin_notification_meta_add (notification_t *n,
876     const char *name,
877     enum notification_meta_type_e type,
878     const void *value)
879 {
880   notification_meta_t *meta;
881   notification_meta_t *tail;
882
883   if ((n == NULL) || (name == NULL) || (value == NULL))
884   {
885     ERROR ("plugin_notification_meta_add: A pointer is NULL!");
886     return (-1);
887   }
888
889   meta = (notification_meta_t *) malloc (sizeof (notification_meta_t));
890   if (meta == NULL)
891   {
892     ERROR ("plugin_notification_meta_add: malloc failed.");
893     return (-1);
894   }
895   memset (meta, 0, sizeof (notification_meta_t));
896
897   sstrncpy (meta->name, name, sizeof (meta->name));
898   meta->type = type;
899
900   switch (type)
901   {
902     case NM_TYPE_STRING:
903     {
904       meta->value_string = strdup ((const char *) value);
905       if (meta->value_string == NULL)
906       {
907         ERROR ("plugin_notification_meta_add: strdup failed.");
908         sfree (meta);
909         return (-1);
910       }
911       break;
912     }
913     case NM_TYPE_SIGNED_INT:
914     {
915       meta->value_signed_int = *((int64_t *) value);
916       break;
917     }
918     case NM_TYPE_UNSIGNED_INT:
919     {
920       meta->value_unsigned_int = *((uint64_t *) value);
921       break;
922     }
923     case NM_TYPE_DOUBLE:
924     {
925       meta->value_double = *((double *) value);
926       break;
927     }
928     case NM_TYPE_BOOLEAN:
929     {
930       meta->value_boolean = *((bool *) value);
931       break;
932     }
933     default:
934     {
935       ERROR ("plugin_notification_meta_add: Unknown type: %i", type);
936       sfree (meta);
937       return (-1);
938     }
939   } /* switch (type) */
940
941   meta->next = NULL;
942   tail = n->meta;
943   while ((tail != NULL) && (tail->next != NULL))
944     tail = tail->next;
945
946   if (tail == NULL)
947     n->meta = meta;
948   else
949     tail->next = meta;
950
951   return (0);
952 } /* int plugin_notification_meta_add */
953
954 int plugin_notification_meta_add_string (notification_t *n,
955     const char *name,
956     const char *value)
957 {
958   return (plugin_notification_meta_add (n, name, NM_TYPE_STRING, value));
959 }
960
961 int plugin_notification_meta_add_signed_int (notification_t *n,
962     const char *name,
963     int64_t value)
964 {
965   return (plugin_notification_meta_add (n, name, NM_TYPE_SIGNED_INT, &value));
966 }
967
968 int plugin_notification_meta_add_unsigned_int (notification_t *n,
969     const char *name,
970     uint64_t value)
971 {
972   return (plugin_notification_meta_add (n, name, NM_TYPE_UNSIGNED_INT, &value));
973 }
974
975 int plugin_notification_meta_add_double (notification_t *n,
976     const char *name,
977     double value)
978 {
979   return (plugin_notification_meta_add (n, name, NM_TYPE_DOUBLE, &value));
980 }
981
982 int plugin_notification_meta_add_boolean (notification_t *n,
983     const char *name,
984     bool value)
985 {
986   return (plugin_notification_meta_add (n, name, NM_TYPE_BOOLEAN, &value));
987 }
988
989 int plugin_notification_meta_copy (notification_t *dst,
990     const notification_t *src)
991 {
992   notification_meta_t *meta;
993
994   assert (dst != NULL);
995   assert (src != NULL);
996   assert (dst != src);
997   assert ((src->meta == NULL) || (src->meta != dst->meta));
998
999   for (meta = src->meta; meta != NULL; meta = meta->next)
1000   {
1001     if (meta->type == NM_TYPE_STRING)
1002       plugin_notification_meta_add_string (dst, meta->name,
1003           meta->value_string);
1004     else if (meta->type == NM_TYPE_SIGNED_INT)
1005       plugin_notification_meta_add_signed_int (dst, meta->name,
1006           meta->value_signed_int);
1007     else if (meta->type == NM_TYPE_UNSIGNED_INT)
1008       plugin_notification_meta_add_unsigned_int (dst, meta->name,
1009           meta->value_unsigned_int);
1010     else if (meta->type == NM_TYPE_DOUBLE)
1011       plugin_notification_meta_add_double (dst, meta->name,
1012           meta->value_double);
1013     else if (meta->type == NM_TYPE_BOOLEAN)
1014       plugin_notification_meta_add_boolean (dst, meta->name,
1015           meta->value_boolean);
1016   }
1017
1018   return (0);
1019 } /* int plugin_notification_meta_copy */
1020
1021 int plugin_notification_meta_free (notification_t *n)
1022 {
1023   notification_meta_t *this;
1024   notification_meta_t *next;
1025
1026   if (n == NULL)
1027   {
1028     ERROR ("plugin_notification_meta_free: n == NULL!");
1029     return (-1);
1030   }
1031
1032   this = n->meta;
1033   n->meta = NULL;
1034   while (this != NULL)
1035   {
1036     next = this->next;
1037
1038     if (this->type == NM_TYPE_STRING)
1039     {
1040       free ((char *)this->value_string);
1041       this->value_string = NULL;
1042     }
1043     sfree (this);
1044
1045     this = next;
1046   }
1047
1048   return (0);
1049 } /* int plugin_notification_meta_free */