collectd, rrdtool plugin: Add flushing of specific identifiers.
[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
25 #include <ltdl.h>
26
27 #if HAVE_PTHREAD_H
28 # include <pthread.h>
29 #endif
30
31 #include "common.h"
32 #include "plugin.h"
33 #include "configfile.h"
34 #include "utils_avltree.h"
35 #include "utils_llist.h"
36 #include "utils_cache.h"
37 #include "utils_threshold.h"
38
39 /*
40  * Private structures
41  */
42 struct read_func_s
43 {
44         int wait_time;
45         int wait_left;
46         int (*callback) (void);
47         enum { DONE = 0, TODO = 1, ACTIVE = 2 } needs_read;
48 };
49 typedef struct read_func_s read_func_t;
50
51 /*
52  * Private variables
53  */
54 static llist_t *list_init;
55 static llist_t *list_read;
56 static llist_t *list_write;
57 static llist_t *list_flush;
58 static llist_t *list_shutdown;
59 static llist_t *list_log;
60 static llist_t *list_notification;
61
62 static c_avl_tree_t *data_sets;
63
64 static char *plugindir = NULL;
65
66 static int             read_loop = 1;
67 static pthread_mutex_t read_lock = PTHREAD_MUTEX_INITIALIZER;
68 static pthread_cond_t  read_cond = PTHREAD_COND_INITIALIZER;
69 static pthread_t      *read_threads = NULL;
70 static int             read_threads_num = 0;
71
72 /*
73  * Static functions
74  */
75 static const char *plugin_get_dir (void)
76 {
77         if (plugindir == NULL)
78                 return (PLUGINDIR);
79         else
80                 return (plugindir);
81 }
82
83 static int register_callback (llist_t **list, const char *name, void *callback)
84 {
85         llentry_t *le;
86         char *key;
87
88         if ((*list == NULL)
89                         && ((*list = llist_create ()) == NULL))
90                 return (-1);
91
92         le = llist_search (*list, name);
93         if (le == NULL)
94         {
95                 key = strdup (name);
96                 if (key == NULL)
97                         return (-1);
98
99                 le = llentry_create (key, callback);
100                 if (le == NULL)
101                 {
102                         free (key);
103                         return (-1);
104                 }
105
106                 llist_append (*list, le);
107         }
108         else
109         {
110                 le->value = callback;
111         }
112
113         return (0);
114 } /* int register_callback */
115
116 static int plugin_unregister (llist_t *list, const char *name)
117 {
118         llentry_t *e;
119
120         e = llist_search (list, name);
121
122         if (e == NULL)
123                 return (-1);
124
125         llist_remove (list, e);
126         free (e->key);
127         llentry_destroy (e);
128
129         return (0);
130 } /* int plugin_unregister */
131
132 /*
133  * (Try to) load the shared object `file'. Won't complain if it isn't a shared
134  * object, but it will bitch about a shared object not having a
135  * ``module_register'' symbol..
136  */
137 static int plugin_load_file (char *file)
138 {
139         lt_dlhandle dlh;
140         void (*reg_handle) (void);
141
142         DEBUG ("file = %s", file);
143
144         lt_dlinit ();
145         lt_dlerror (); /* clear errors */
146
147         if ((dlh = lt_dlopen (file)) == NULL)
148         {
149                 const char *error = lt_dlerror ();
150
151                 ERROR ("lt_dlopen failed: %s", error);
152                 fprintf (stderr, "lt_dlopen failed: %s\n", error);
153                 return (1);
154         }
155
156         if ((reg_handle = (void (*) (void)) lt_dlsym (dlh, "module_register")) == NULL)
157         {
158                 WARNING ("Couldn't find symbol ``module_register'' in ``%s'': %s\n",
159                                 file, lt_dlerror ());
160                 lt_dlclose (dlh);
161                 return (-1);
162         }
163
164         (*reg_handle) ();
165
166         return (0);
167 }
168
169 static void *plugin_read_thread (void *args)
170 {
171         llentry_t   *le;
172         read_func_t *rf;
173         int          status;
174         int          done;
175
176         pthread_mutex_lock (&read_lock);
177
178         while (read_loop != 0)
179         {
180                 le = llist_head (list_read);
181                 done = 0;
182
183                 while ((read_loop != 0) && (le != NULL))
184                 {
185                         rf = (read_func_t *) le->value;
186
187                         if (rf->needs_read != TODO)
188                         {
189                                 le = le->next;
190                                 continue;
191                         }
192
193                         /* We will do this read function */
194                         rf->needs_read = ACTIVE;
195
196                         DEBUG ("[thread #%5lu] plugin: plugin_read_thread: Handling %s",
197                                         (unsigned long int) pthread_self (), le->key);
198                         pthread_mutex_unlock (&read_lock);
199
200                         status = rf->callback ();
201                         done++;
202
203                         if (status != 0)
204                         {
205                                 if (rf->wait_time < interval_g)
206                                         rf->wait_time = interval_g;
207                                 rf->wait_left = rf->wait_time;
208                                 rf->wait_time = rf->wait_time * 2;
209                                 if (rf->wait_time > 86400)
210                                         rf->wait_time = 86400;
211
212                                 NOTICE ("read-function of plugin `%s' "
213                                                 "failed. Will suspend it for %i "
214                                                 "seconds.", le->key, rf->wait_left);
215                         }
216                         else
217                         {
218                                 rf->wait_left = 0;
219                                 rf->wait_time = interval_g;
220                         }
221
222                         pthread_mutex_lock (&read_lock);
223
224                         rf->needs_read = DONE;
225                         le = le->next;
226                 } /* while (le != NULL) */
227
228                 if ((read_loop != 0) && (done == 0))
229                 {
230                         DEBUG ("[thread #%5lu] plugin: plugin_read_thread: Waiting on read_cond.",
231                                         (unsigned long int) pthread_self ());
232                         pthread_cond_wait (&read_cond, &read_lock);
233                 }
234         } /* while (read_loop) */
235
236         pthread_mutex_unlock (&read_lock);
237
238         pthread_exit (NULL);
239         return ((void *) 0);
240 } /* void *plugin_read_thread */
241
242 static void start_threads (int num)
243 {
244         int i;
245
246         if (read_threads != NULL)
247                 return;
248
249         read_threads = (pthread_t *) calloc (num, sizeof (pthread_t));
250         if (read_threads == NULL)
251         {
252                 ERROR ("plugin: start_threads: calloc failed.");
253                 return;
254         }
255
256         read_threads_num = 0;
257         for (i = 0; i < num; i++)
258         {
259                 if (pthread_create (read_threads + read_threads_num, NULL,
260                                         plugin_read_thread, NULL) == 0)
261                 {
262                         read_threads_num++;
263                 }
264                 else
265                 {
266                         ERROR ("plugin: start_threads: pthread_create failed.");
267                         return;
268                 }
269         } /* for (i) */
270 } /* void start_threads */
271
272 static void stop_threads (void)
273 {
274         int i;
275
276         pthread_mutex_lock (&read_lock);
277         read_loop = 0;
278         DEBUG ("plugin: stop_threads: Signalling `read_cond'");
279         pthread_cond_broadcast (&read_cond);
280         pthread_mutex_unlock (&read_lock);
281
282         for (i = 0; i < read_threads_num; i++)
283         {
284                 if (pthread_join (read_threads[i], NULL) != 0)
285                 {
286                         ERROR ("plugin: stop_threads: pthread_join failed.");
287                 }
288                 read_threads[i] = (pthread_t) 0;
289         }
290         sfree (read_threads);
291         read_threads_num = 0;
292 } /* void stop_threads */
293
294 /*
295  * Public functions
296  */
297 void plugin_set_dir (const char *dir)
298 {
299         if (plugindir != NULL)
300                 free (plugindir);
301
302         if (dir == NULL)
303                 plugindir = NULL;
304         else if ((plugindir = strdup (dir)) == NULL)
305         {
306                 char errbuf[1024];
307                 ERROR ("strdup failed: %s",
308                                 sstrerror (errno, errbuf, sizeof (errbuf)));
309         }
310 }
311
312 #define BUFSIZE 512
313 int plugin_load (const char *type)
314 {
315         DIR  *dh;
316         const char *dir;
317         char  filename[BUFSIZE] = "";
318         char  typename[BUFSIZE];
319         int   typename_len;
320         int   ret;
321         struct stat    statbuf;
322         struct dirent *de;
323
324         DEBUG ("type = %s", type);
325
326         dir = plugin_get_dir ();
327         ret = 1;
328
329         /* `cpu' should not match `cpufreq'. To solve this we add `.so' to the
330          * type when matching the filename */
331         if (ssnprintf (typename, sizeof (typename),
332                         "%s.so", type) >= sizeof (typename))
333         {
334                 WARNING ("snprintf: truncated: `%s.so'", type);
335                 return (-1);
336         }
337         typename_len = strlen (typename);
338
339         if ((dh = opendir (dir)) == NULL)
340         {
341                 char errbuf[1024];
342                 ERROR ("opendir (%s): %s", dir,
343                                 sstrerror (errno, errbuf, sizeof (errbuf)));
344                 return (-1);
345         }
346
347         while ((de = readdir (dh)) != NULL)
348         {
349                 if (strncasecmp (de->d_name, typename, typename_len))
350                         continue;
351
352                 if (ssnprintf (filename, sizeof (filename),
353                                 "%s/%s", dir, de->d_name) >= sizeof (filename))
354                 {
355                         WARNING ("snprintf: truncated: `%s/%s'", dir, de->d_name);
356                         continue;
357                 }
358
359                 if (lstat (filename, &statbuf) == -1)
360                 {
361                         char errbuf[1024];
362                         WARNING ("stat %s: %s", filename,
363                                         sstrerror (errno, errbuf, sizeof (errbuf)));
364                         continue;
365                 }
366                 else if (!S_ISREG (statbuf.st_mode))
367                 {
368                         /* don't follow symlinks */
369                         continue;
370                 }
371
372                 if (plugin_load_file (filename) == 0)
373                 {
374                         /* success */
375                         ret = 0;
376                         break;
377                 }
378                 else
379                 {
380                         fprintf (stderr, "Unable to load plugin %s.\n", type);
381                 }
382         }
383
384         closedir (dh);
385
386         if (filename[0] == '\0')
387                 fprintf (stderr, "Could not find plugin %s.\n", type);
388
389         return (ret);
390 }
391
392 /*
393  * The `register_*' functions follow
394  */
395 int plugin_register_config (const char *name,
396                 int (*callback) (const char *key, const char *val),
397                 const char **keys, int keys_num)
398 {
399         cf_register (name, callback, keys, keys_num);
400         return (0);
401 } /* int plugin_register_config */
402
403 int plugin_register_complex_config (const char *type,
404                 int (*callback) (oconfig_item_t *))
405 {
406         return (cf_register_complex (type, callback));
407 } /* int plugin_register_complex_config */
408
409 int plugin_register_init (const char *name,
410                 int (*callback) (void))
411 {
412         return (register_callback (&list_init, name, (void *) callback));
413 } /* plugin_register_init */
414
415 int plugin_register_read (const char *name,
416                 int (*callback) (void))
417 {
418         read_func_t *rf;
419
420         rf = (read_func_t *) malloc (sizeof (read_func_t));
421         if (rf == NULL)
422         {
423                 char errbuf[1024];
424                 ERROR ("plugin_register_read: malloc failed: %s",
425                                 sstrerror (errno, errbuf, sizeof (errbuf)));
426                 return (-1);
427         }
428
429         memset (rf, '\0', sizeof (read_func_t));
430         rf->wait_time = interval_g;
431         rf->wait_left = 0;
432         rf->callback = callback;
433         rf->needs_read = DONE;
434
435         return (register_callback (&list_read, name, (void *) rf));
436 } /* int plugin_register_read */
437
438 int plugin_register_write (const char *name,
439                 int (*callback) (const data_set_t *ds, const value_list_t *vl))
440 {
441         return (register_callback (&list_write, name, (void *) callback));
442 } /* int plugin_register_write */
443
444 int plugin_register_flush (const char *name,
445                 int (*callback) (const int timeout, const char *identifier))
446 {
447         return (register_callback (&list_flush, name, (void *) callback));
448 } /* int plugin_register_flush */
449
450 int plugin_register_shutdown (char *name,
451                 int (*callback) (void))
452 {
453         return (register_callback (&list_shutdown, name, (void *) callback));
454 } /* int plugin_register_shutdown */
455
456 int plugin_register_data_set (const data_set_t *ds)
457 {
458         data_set_t *ds_copy;
459         int i;
460
461         if ((data_sets != NULL)
462                         && (c_avl_get (data_sets, ds->type, NULL) == 0))
463         {
464                 NOTICE ("Replacing DS `%s' with another version.", ds->type);
465                 plugin_unregister_data_set (ds->type);
466         }
467         else if (data_sets == NULL)
468         {
469                 data_sets = c_avl_create ((int (*) (const void *, const void *)) strcmp);
470                 if (data_sets == NULL)
471                         return (-1);
472         }
473
474         ds_copy = (data_set_t *) malloc (sizeof (data_set_t));
475         if (ds_copy == NULL)
476                 return (-1);
477         memcpy(ds_copy, ds, sizeof (data_set_t));
478
479         ds_copy->ds = (data_source_t *) malloc (sizeof (data_source_t)
480                         * ds->ds_num);
481         if (ds_copy->ds == NULL)
482         {
483                 free (ds_copy);
484                 return (-1);
485         }
486
487         for (i = 0; i < ds->ds_num; i++)
488                 memcpy (ds_copy->ds + i, ds->ds + i, sizeof (data_source_t));
489
490         return (c_avl_insert (data_sets, (void *) ds_copy->type, (void *) ds_copy));
491 } /* int plugin_register_data_set */
492
493 int plugin_register_log (char *name,
494                 void (*callback) (int priority, const char *msg))
495 {
496         return (register_callback (&list_log, name, (void *) callback));
497 } /* int plugin_register_log */
498
499 int plugin_register_notification (const char *name,
500                 int (*callback) (const notification_t *notif))
501 {
502         return (register_callback (&list_notification, name, (void *) callback));
503 } /* int plugin_register_log */
504
505 int plugin_unregister_config (const char *name)
506 {
507         cf_unregister (name);
508         return (0);
509 } /* int plugin_unregister_config */
510
511 int plugin_unregister_complex_config (const char *name)
512 {
513         cf_unregister_complex (name);
514         return (0);
515 } /* int plugin_unregister_complex_config */
516
517 int plugin_unregister_init (const char *name)
518 {
519         return (plugin_unregister (list_init, name));
520 }
521
522 int plugin_unregister_read (const char *name)
523 {
524         llentry_t *e;
525
526         e = llist_search (list_read, name);
527
528         if (e == NULL)
529                 return (-1);
530
531         llist_remove (list_read, e);
532         free (e->value);
533         free (e->key);
534         llentry_destroy (e);
535
536         return (0);
537 }
538
539 int plugin_unregister_write (const char *name)
540 {
541         return (plugin_unregister (list_write, name));
542 }
543
544 int plugin_unregister_flush (const char *name)
545 {
546         return (plugin_unregister (list_flush, name));
547 }
548
549 int plugin_unregister_shutdown (const char *name)
550 {
551         return (plugin_unregister (list_shutdown, name));
552 }
553
554 int plugin_unregister_data_set (const char *name)
555 {
556         data_set_t *ds;
557
558         if (data_sets == NULL)
559                 return (-1);
560
561         if (c_avl_remove (data_sets, name, NULL, (void *) &ds) != 0)
562                 return (-1);
563
564         sfree (ds->ds);
565         sfree (ds);
566
567         return (0);
568 } /* int plugin_unregister_data_set */
569
570 int plugin_unregister_log (const char *name)
571 {
572         return (plugin_unregister (list_log, name));
573 }
574
575 int plugin_unregister_notification (const char *name)
576 {
577         return (plugin_unregister (list_notification, name));
578 }
579
580 void plugin_init_all (void)
581 {
582         int (*callback) (void);
583         llentry_t *le;
584         int status;
585
586         /* Start read-threads */
587         if (list_read != NULL)
588         {
589                 const char *rt;
590                 int num;
591                 rt = global_option_get ("ReadThreads");
592                 num = atoi (rt);
593                 start_threads ((num > 0) ? num : 5);
594         }
595
596         /* Init the value cache */
597         uc_init ();
598
599         if (list_init == NULL)
600                 return;
601
602         le = llist_head (list_init);
603         while (le != NULL)
604         {
605                 callback = (int (*) (void)) le->value;
606                 status = (*callback) ();
607
608                 if (status != 0)
609                 {
610                         ERROR ("Initialization of plugin `%s' "
611                                         "failed with status %i. "
612                                         "Plugin will be unloaded.",
613                                         le->key, status);
614                         /* FIXME: Unload _all_ functions */
615                         plugin_unregister_read (le->key);
616                 }
617
618                 le = le->next;
619         }
620 } /* void plugin_init_all */
621
622 void plugin_read_all (void)
623 {
624         llentry_t   *le;
625         read_func_t *rf;
626
627         uc_check_timeout ();
628
629         if (list_read == NULL)
630                 return;
631
632         pthread_mutex_lock (&read_lock);
633
634         le = llist_head (list_read);
635         while (le != NULL)
636         {
637                 rf = (read_func_t *) le->value;
638
639                 if (rf->needs_read != DONE)
640                 {
641                         le = le->next;
642                         continue;
643                 }
644
645                 if (rf->wait_left > 0)
646                         rf->wait_left -= interval_g;
647
648                 if (rf->wait_left <= 0)
649                 {
650                         rf->needs_read = TODO;
651                 }
652
653                 le = le->next;
654         }
655
656         DEBUG ("plugin: plugin_read_all: Signalling `read_cond'");
657         pthread_cond_broadcast (&read_cond);
658         pthread_mutex_unlock (&read_lock);
659 } /* void plugin_read_all */
660
661 int plugin_flush_one (int timeout, const char *name)
662 {
663         int (*callback) (int);
664         llentry_t *le;
665         int status;
666
667         if (list_flush == NULL)
668                 return (-1);
669
670         le = llist_search (list_flush, name);
671         if (le == NULL)
672                 return (-1);
673         callback = (int (*) (int)) le->value;
674
675         status = (*callback) (timeout);
676
677         return (status);
678 } /* int plugin_flush_ont */
679
680 void plugin_flush_all (int timeout)
681 {
682         int (*callback) (int);
683         llentry_t *le;
684
685         if (list_flush == NULL)
686                 return;
687
688         le = llist_head (list_flush);
689         while (le != NULL)
690         {
691                 callback = (int (*) (int)) le->value;
692                 le = le->next;
693
694                 (*callback) (timeout);
695         }
696 } /* void plugin_flush_all */
697
698 int plugin_flush (const char *plugin, int timeout, const char *identifier)
699 {
700   int (*callback) (int timeout, const char *identifier);
701   llentry_t *le;
702
703   if (list_flush == NULL)
704     return (0);
705
706   le = llist_head (list_flush);
707   while (le != NULL)
708   {
709     if ((plugin != NULL)
710         && (strcmp (plugin, le->key) != 0))
711       continue;
712
713     callback = (int (*) (int, const char *)) le->value;
714     le = le->next;
715
716     (*callback) (timeout, identifier);
717   }
718 } /* int plugin_flush */
719
720 void plugin_shutdown_all (void)
721 {
722         int (*callback) (void);
723         llentry_t *le;
724
725         stop_threads ();
726
727         if (list_shutdown == NULL)
728                 return;
729
730         le = llist_head (list_shutdown);
731         while (le != NULL)
732         {
733                 callback = (int (*) (void)) le->value;
734
735                 /* Advance the pointer before calling the callback allows
736                  * shutdown functions to unregister themselves. If done the
737                  * other way around the memory `le' points to will be freed
738                  * after callback returns. */
739                 le = le->next;
740
741                 (*callback) ();
742         }
743 } /* void plugin_shutdown_all */
744
745 int plugin_dispatch_values (value_list_t *vl)
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         {
758                 ERROR ("plugin_dispatch_values: No write callback has been "
759                                 "registered. Please load at least one plugin "
760                                 "that provides a write function.");
761                 return (-1);
762         }
763
764         if (data_sets == NULL)
765         {
766                 ERROR ("plugin_dispatch_values: No data sets registered. "
767                                 "Could the types database be read? Check "
768                                 "your `TypesDB' setting!");
769                 return (-1);
770         }
771
772         if (c_avl_get (data_sets, vl->type, (void *) &ds) != 0)
773         {
774                 INFO ("plugin_dispatch_values: Dataset not found: %s", vl->type);
775                 return (-1);
776         }
777
778         DEBUG ("plugin_dispatch_values: time = %u; interval = %i; "
779                         "host = %s; "
780                         "plugin = %s; plugin_instance = %s; "
781                         "type = %s; type_instance = %s;",
782                         (unsigned int) vl->time, vl->interval,
783                         vl->host,
784                         vl->plugin, vl->plugin_instance,
785                         vl->type, vl->type_instance);
786
787 #if COLLECT_DEBUG
788         assert (0 == strcmp (ds->type, vl->type));
789 #else
790         if (0 != strcmp (ds->type, vl->type))
791                 WARNING ("plugin_dispatch_values: (ds->type = %s) != (vl->type = %s)",
792                                 ds->type, vl->type);
793 #endif
794
795 #if COLLECT_DEBUG
796         assert (ds->ds_num == vl->values_len);
797 #else
798         if (ds->ds_num != vl->values_len)
799         {
800                 ERROR ("plugin_dispatch_values: ds->type = %s: "
801                                 "(ds->ds_num = %i) != "
802                                 "(vl->values_len = %i)",
803                                 ds->type, ds->ds_num, vl->values_len);
804                 return (-1);
805         }
806 #endif
807
808         escape_slashes (vl->host, sizeof (vl->host));
809         escape_slashes (vl->plugin, sizeof (vl->plugin));
810         escape_slashes (vl->plugin_instance, sizeof (vl->plugin_instance));
811         escape_slashes (vl->type, sizeof (vl->type));
812         escape_slashes (vl->type_instance, sizeof (vl->type_instance));
813
814         /* Update the value cache */
815         uc_update (ds, vl);
816         ut_check_threshold (ds, vl);
817
818         le = llist_head (list_write);
819         while (le != NULL)
820         {
821                 callback = (int (*) (const data_set_t *, const value_list_t *)) le->value;
822                 (*callback) (ds, vl);
823
824                 le = le->next;
825         }
826
827         return (0);
828 } /* int plugin_dispatch_values */
829
830 int plugin_dispatch_notification (const notification_t *notif)
831 {
832         int (*callback) (const notification_t *);
833         llentry_t *le;
834         /* Possible TODO: Add flap detection here */
835
836         DEBUG ("plugin_dispatch_notification: severity = %i; message = %s; "
837                         "time = %u; host = %s;",
838                         notif->severity, notif->message,
839                         (unsigned int) notif->time, notif->host);
840
841         /* Nobody cares for notifications */
842         if (list_notification == NULL)
843                 return (-1);
844
845         le = llist_head (list_notification);
846         while (le != NULL)
847         {
848                 callback = (int (*) (const notification_t *)) le->value;
849                 (*callback) (notif);
850
851                 le = le->next;
852         }
853
854         return (0);
855 } /* int plugin_dispatch_notification */
856
857 void plugin_log (int level, const char *format, ...)
858 {
859         char msg[512];
860         va_list ap;
861
862         void (*callback) (int, const char *);
863         llentry_t *le;
864
865         if (list_log == NULL)
866                 return;
867
868 #if !COLLECT_DEBUG
869         if (level >= LOG_DEBUG)
870                 return;
871 #endif
872
873         va_start (ap, format);
874         vsnprintf (msg, 512, format, ap);
875         msg[511] = '\0';
876         va_end (ap);
877
878         le = llist_head (list_log);
879         while (le != NULL)
880         {
881                 callback = (void (*) (int, const char *)) le->value;
882                 (*callback) (level, msg);
883
884                 le = le->next;
885         }
886 } /* void plugin_log */
887
888 const data_set_t *plugin_get_ds (const char *name)
889 {
890         data_set_t *ds;
891
892         if (c_avl_get (data_sets, name, (void *) &ds) != 0)
893         {
894                 DEBUG ("No such dataset registered: %s", name);
895                 return (NULL);
896         }
897
898         return (ds);
899 } /* data_set_t *plugin_get_ds */