Code

src/plugin.c: Copy the data-sets before inserting them in the list.
[collectd.git] / src / plugin.c
1 /**
2  * collectd - src/plugin.c
3  * Copyright (C) 2005,2006  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  **/
22 #include "collectd.h"
24 #include <ltdl.h>
26 #if HAVE_PTHREAD_H
27 # include <pthread.h>
28 #endif
30 #include "common.h"
31 #include "plugin.h"
32 #include "configfile.h"
33 #include "utils_llist.h"
35 /*
36  * Private structures
37  */
38 struct read_func_s
39 {
40         int wait_time;
41         int wait_left;
42         int (*callback) (void);
43         enum { DONE = 0, TODO = 1, ACTIVE = 2 } needs_read;
44 };
45 typedef struct read_func_s read_func_t;
47 /*
48  * Private variables
49  */
50 static llist_t *list_init;
51 static llist_t *list_read;
52 static llist_t *list_write;
53 static llist_t *list_shutdown;
54 static llist_t *list_data_set;
55 static llist_t *list_log;
57 static char *plugindir = NULL;
59 static int             read_loop = 1;
60 static pthread_mutex_t read_lock = PTHREAD_MUTEX_INITIALIZER;
61 static pthread_cond_t  read_cond = PTHREAD_COND_INITIALIZER;
62 static pthread_t      *read_threads = NULL;
63 static int             read_threads_num = 0;
65 /*
66  * Static functions
67  */
68 static const char *plugin_get_dir (void)
69 {
70         if (plugindir == NULL)
71                 return (PLUGINDIR);
72         else
73                 return (plugindir);
74 }
76 static int register_callback (llist_t **list, const char *name, void *callback)
77 {
78         llentry_t *le;
80         if ((*list == NULL)
81                         && ((*list = llist_create ()) == NULL))
82                 return (-1);
84         le = llist_search (*list, name);
85         if (le == NULL)
86         {
87                 le = llentry_create (name, callback);
88                 if (le == NULL)
89                         return (-1);
91                 llist_append (*list, le);
92         }
93         else
94         {
95                 le->value = callback;
96         }
98         return (0);
99 } /* int register_callback */
101 static int plugin_unregister (llist_t *list, const char *name)
103         llentry_t *e;
105         e = llist_search (list, name);
107         if (e == NULL)
108                 return (-1);
110         llist_remove (list, e);
111         llentry_destroy (e);
113         return (0);
114 } /* int plugin_unregister */
116 /*
117  * (Try to) load the shared object `file'. Won't complain if it isn't a shared
118  * object, but it will bitch about a shared object not having a
119  * ``module_register'' symbol..
120  */
121 static int plugin_load_file (char *file)
123         lt_dlhandle dlh;
124         void (*reg_handle) (void);
126         DEBUG ("file = %s", file);
128         lt_dlinit ();
129         lt_dlerror (); /* clear errors */
131         if ((dlh = lt_dlopen (file)) == NULL)
132         {
133                 const char *error = lt_dlerror ();
135                 ERROR ("lt_dlopen failed: %s", error);
136                 DEBUG ("lt_dlopen failed: %s", error);
137                 return (1);
138         }
140         if ((reg_handle = (void (*) (void)) lt_dlsym (dlh, "module_register")) == NULL)
141         {
142                 WARNING ("Couldn't find symbol ``module_register'' in ``%s'': %s\n",
143                                 file, lt_dlerror ());
144                 lt_dlclose (dlh);
145                 return (-1);
146         }
148         (*reg_handle) ();
150         return (0);
153 static void *plugin_read_thread (void *args)
155         llentry_t   *le;
156         read_func_t *rf;
157         int          status;
158         int          done;
160         pthread_mutex_lock (&read_lock);
162         while (read_loop != 0)
163         {
164                 le = llist_head (list_read);
165                 done = 0;
167                 while ((read_loop != 0) && (le != NULL))
168                 {
169                         rf = (read_func_t *) le->value;
171                         if (rf->needs_read != TODO)
172                         {
173                                 le = le->next;
174                                 continue;
175                         }
177                         /* We will do this read function */
178                         rf->needs_read = ACTIVE;
180                         DEBUG ("[thread #%5lu] plugin: plugin_read_thread: Handling %s",
181                                         (unsigned long int) pthread_self (), le->key);
182                         pthread_mutex_unlock (&read_lock);
184                         status = rf->callback ();
185                         done++;
187                         if (status != 0)
188                         {
189                                 if (rf->wait_time < interval_g)
190                                         rf->wait_time = interval_g;
191                                 rf->wait_left = rf->wait_time;
192                                 rf->wait_time = rf->wait_time * 2;
193                                 if (rf->wait_time > 86400)
194                                         rf->wait_time = 86400;
196                                 NOTICE ("read-function of plugin `%s' "
197                                                 "failed. Will syspend it for %i "
198                                                 "seconds.", le->key, rf->wait_left);
199                         }
200                         else
201                         {
202                                 rf->wait_left = 0;
203                                 rf->wait_time = interval_g;
204                         }
206                         pthread_mutex_lock (&read_lock);
208                         rf->needs_read = DONE;
209                         le = le->next;
210                 } /* while (le != NULL) */
212                 if ((read_loop != 0) && (done == 0))
213                 {
214                         DEBUG ("[thread #%5lu] plugin: plugin_read_thread: Waiting on read_cond.",
215                                         (unsigned long int) pthread_self ());
216                         pthread_cond_wait (&read_cond, &read_lock);
217                 }
218         } /* while (read_loop) */
220         pthread_mutex_unlock (&read_lock);
222         pthread_exit (NULL);
223 } /* void *plugin_read_thread */
225 static void start_threads (int num)
227         int i;
229         if (read_threads != NULL)
230                 return;
232         read_threads = (pthread_t *) calloc (num, sizeof (pthread_t));
233         if (read_threads == NULL)
234         {
235                 ERROR ("plugin: start_threads: calloc failed.");
236                 return;
237         }
239         read_threads_num = 0;
240         for (i = 0; i < num; i++)
241         {
242                 if (pthread_create (read_threads + read_threads_num, NULL,
243                                         plugin_read_thread, NULL) == 0)
244                 {
245                         read_threads_num++;
246                 }
247                 else
248                 {
249                         ERROR ("plugin: start_threads: pthread_create failed.");
250                         return;
251                 }
252         } /* for (i) */
253 } /* void start_threads */
255 static void stop_threads (void)
257         int i;
259         pthread_mutex_lock (&read_lock);
260         read_loop = 0;
261         DEBUG ("plugin: stop_threads: Signalling `read_cond'");
262         pthread_cond_broadcast (&read_cond);
263         pthread_mutex_unlock (&read_lock);
265         for (i = 0; i < read_threads_num; i++)
266         {
267                 if (pthread_join (read_threads[i], NULL) != 0)
268                 {
269                         ERROR ("plugin: stop_threads: pthread_join failed.");
270                 }
271                 read_threads[i] = (pthread_t) 0;
272         }
273         sfree (read_threads);
274         read_threads_num = 0;
275 } /* void stop_threads */
277 /*
278  * Public functions
279  */
280 void plugin_set_dir (const char *dir)
282         if (plugindir != NULL)
283                 free (plugindir);
285         if (dir == NULL)
286                 plugindir = NULL;
287         else if ((plugindir = strdup (dir)) == NULL)
288         {
289                 char errbuf[1024];
290                 ERROR ("strdup failed: %s",
291                                 sstrerror (errno, errbuf, sizeof (errbuf)));
292         }
295 #define BUFSIZE 512
296 int plugin_load (const char *type)
298         DIR  *dh;
299         const char *dir;
300         char  filename[BUFSIZE];
301         char  typename[BUFSIZE];
302         int   typename_len;
303         int   ret;
304         struct stat    statbuf;
305         struct dirent *de;
307         DEBUG ("type = %s", type);
309         dir = plugin_get_dir ();
310         ret = 1;
312         /* `cpu' should not match `cpufreq'. To solve this we add `.so' to the
313          * type when matching the filename */
314         if (snprintf (typename, BUFSIZE, "%s.so", type) >= BUFSIZE)
315         {
316                 WARNING ("snprintf: truncated: `%s.so'", type);
317                 return (-1);
318         }
319         typename_len = strlen (typename);
321         if ((dh = opendir (dir)) == NULL)
322         {
323                 char errbuf[1024];
324                 ERROR ("opendir (%s): %s", dir,
325                                 sstrerror (errno, errbuf, sizeof (errbuf)));
326                 return (-1);
327         }
329         while ((de = readdir (dh)) != NULL)
330         {
331                 if (strncasecmp (de->d_name, typename, typename_len))
332                         continue;
334                 if (snprintf (filename, BUFSIZE, "%s/%s", dir, de->d_name) >= BUFSIZE)
335                 {
336                         WARNING ("snprintf: truncated: `%s/%s'", dir, de->d_name);
337                         continue;
338                 }
340                 if (lstat (filename, &statbuf) == -1)
341                 {
342                         char errbuf[1024];
343                         WARNING ("stat %s: %s", filename,
344                                         sstrerror (errno, errbuf, sizeof (errbuf)));
345                         continue;
346                 }
347                 else if (!S_ISREG (statbuf.st_mode))
348                 {
349                         /* don't follow symlinks */
350                         continue;
351                 }
353                 if (plugin_load_file (filename) == 0)
354                 {
355                         /* success */
356                         ret = 0;
357                         break;
358                 }
359         }
361         closedir (dh);
363         return (ret);
366 /*
367  * The `register_*' functions follow
368  */
369 int plugin_register_config (const char *name,
370                 int (*callback) (const char *key, const char *val),
371                 const char **keys, int keys_num)
373         cf_register (name, callback, keys, keys_num);
374         return (0);
375 } /* int plugin_register_config */
377 int plugin_register_init (const char *name,
378                 int (*callback) (void))
380         return (register_callback (&list_init, name, (void *) callback));
381 } /* plugin_register_init */
383 int plugin_register_read (const char *name,
384                 int (*callback) (void))
386         read_func_t *rf;
388         rf = (read_func_t *) malloc (sizeof (read_func_t));
389         if (rf == NULL)
390         {
391                 char errbuf[1024];
392                 ERROR ("plugin_register_read: malloc failed: %s",
393                                 sstrerror (errno, errbuf, sizeof (errbuf)));
394                 return (-1);
395         }
397         memset (rf, '\0', sizeof (read_func_t));
398         rf->wait_time = interval_g;
399         rf->wait_left = 0;
400         rf->callback = callback;
401         rf->needs_read = DONE;
403         return (register_callback (&list_read, name, (void *) rf));
404 } /* int plugin_register_read */
406 int plugin_register_write (const char *name,
407                 int (*callback) (const data_set_t *ds, const value_list_t *vl))
409         return (register_callback (&list_write, name, (void *) callback));
410 } /* int plugin_register_write */
412 int plugin_register_shutdown (char *name,
413                 int (*callback) (void))
415         return (register_callback (&list_shutdown, name, (void *) callback));
416 } /* int plugin_register_shutdown */
418 int plugin_register_data_set (const data_set_t *ds)
420         data_set_t *ds_copy;
421         int i;
423         if (llist_search (list_data_set, ds->type) != NULL)
424         {
425                 NOTICE ("Replacing DS `%s' with another version.", ds->type);
426                 plugin_unregister_data_set (ds->type);
427         }
429         ds_copy = (data_set_t *) malloc (sizeof (data_set_t));
430         if (ds_copy == NULL)
431                 return (-1);
432         memcpy(ds_copy, ds, sizeof (data_set_t));
434         ds_copy->ds = (data_source_t *) malloc (sizeof (data_source_t)
435                         * ds->ds_num);
436         if (ds_copy->ds == NULL)
437         {
438                 free (ds_copy);
439                 return (-1);
440         }
442         for (i = 0; i < ds->ds_num; i++)
443                 memcpy (ds_copy->ds + i, ds->ds + i, sizeof (data_source_t));
445         return (register_callback (&list_data_set, ds->type, (void *) ds_copy));
446 } /* int plugin_register_data_set */
448 int plugin_register_log (char *name,
449                 void (*callback) (int priority, const char *msg))
451         return (register_callback (&list_log, name, (void *) callback));
452 } /* int plugin_register_log */
454 int plugin_unregister_config (const char *name)
456         cf_unregister (name);
457         return (0);
458 } /* int plugin_unregister_config */
460 int plugin_unregister_init (const char *name)
462         return (plugin_unregister (list_init, name));
465 int plugin_unregister_read (const char *name)
467         llentry_t *e;
469         e = llist_search (list_read, name);
471         if (e == NULL)
472                 return (-1);
474         llist_remove (list_read, e);
475         free (e->value);
476         llentry_destroy (e);
478         return (0);
481 int plugin_unregister_write (const char *name)
483         return (plugin_unregister (list_write, name));
486 int plugin_unregister_shutdown (const char *name)
488         return (plugin_unregister (list_shutdown, name));
491 int plugin_unregister_data_set (const char *name)
493         llentry_t  *e;
494         data_set_t *ds;
496         e = llist_search (list_data_set, name);
498         if (e == NULL)
499                 return (-1);
501         llist_remove (list_data_set, e);
502         ds = (data_set_t *) e->value;
503         llentry_destroy (e);
505         sfree (ds->ds);
506         sfree (ds);
508         return (0);
509 } /* int plugin_unregister_data_set */
511 int plugin_unregister_log (const char *name)
513         return (plugin_unregister (list_log, name));
516 void plugin_init_all (void)
518         int (*callback) (void);
519         llentry_t *le;
520         int status;
522         /* Start read-threads */
523         if (list_read != NULL)
524         {
525                 const char *rt;
526                 int num;
527                 rt = global_option_get ("ReadThreads");
528                 num = atoi (rt);
529                 start_threads ((num > 0) ? num : 5);
530         }
532         if (list_init == NULL)
533                 return;
535         le = llist_head (list_init);
536         while (le != NULL)
537         {
538                 callback = (int (*) (void)) le->value;
539                 status = (*callback) ();
541                 if (status != 0)
542                 {
543                         ERROR ("Initialization of plugin `%s' "
544                                         "failed with status %i. "
545                                         "Plugin will be unloaded.",
546                                         le->key, status);
547                         /* FIXME: Unload _all_ functions */
548                         plugin_unregister_read (le->key);
549                 }
551                 le = le->next;
552         }
553 } /* void plugin_init_all */
555 void plugin_read_all (const int *loop)
557         llentry_t   *le;
558         read_func_t *rf;
560         if (list_read == NULL)
561                 return;
563         pthread_mutex_lock (&read_lock);
565         le = llist_head (list_read);
566         while (le != NULL)
567         {
568                 rf = (read_func_t *) le->value;
570                 if (rf->needs_read != DONE)
571                 {
572                         le = le->next;
573                         continue;
574                 }
576                 if (rf->wait_left > 0)
577                         rf->wait_left -= interval_g;
579                 if (rf->wait_left <= 0)
580                 {
581                         rf->needs_read = TODO;
582                 }
584                 le = le->next;
585         }
587         DEBUG ("plugin: plugin_read_all: Signalling `read_cond'");
588         pthread_cond_broadcast (&read_cond);
589         pthread_mutex_unlock (&read_lock);
590 } /* void plugin_read_all */
592 void plugin_shutdown_all (void)
594         int (*callback) (void);
595         llentry_t *le;
597         stop_threads ();
599         if (list_shutdown == NULL)
600                 return;
602         le = llist_head (list_shutdown);
603         while (le != NULL)
604         {
605                 callback = (int (*) (void)) le->value;
606                 (*callback) ();
608                 le = le->next;
609         }
610 } /* void plugin_shutdown_all */
612 int plugin_dispatch_values (const char *name, const value_list_t *vl)
614         int (*callback) (const data_set_t *, const value_list_t *);
615         data_set_t *ds;
616         llentry_t *le;
618         if (list_write == NULL)
619                 return (-1);
621         le = llist_search (list_data_set, name);
622         if (le == NULL)
623         {
624                 DEBUG ("No such dataset registered: %s", name);
625                 return (-1);
626         }
628         ds = (data_set_t *) le->value;
630         DEBUG ("plugin: plugin_dispatch_values: time = %u; host = %s; "
631                         "plugin = %s; plugin_instance = %s; type = %s; "
632                         "type_instance = %s;",
633                         (unsigned int) vl->time, vl->host,
634                         vl->plugin, vl->plugin_instance,
635                         ds->type, vl->type_instance);
637         le = llist_head (list_write);
638         while (le != NULL)
639         {
640                 callback = (int (*) (const data_set_t *, const value_list_t *)) le->value;
641                 (*callback) (ds, vl);
643                 le = le->next;
644         }
646         return (0);
649 void plugin_log (int level, const char *format, ...)
651         char msg[512];
652         va_list ap;
654         void (*callback) (int, const char *);
655         llentry_t *le;
657         if (list_log == NULL)
658                 return;
660 #if !COLLECT_DEBUG
661         if (level >= LOG_DEBUG)
662                 return;
663 #endif
665         va_start (ap, format);
666         vsnprintf (msg, 512, format, ap);
667         msg[511] = '\0';
668         va_end (ap);
670         le = llist_head (list_log);
671         while (le != NULL)
672         {
673                 callback = (void (*) (int, const char *)) le->value;
674                 (*callback) (level, msg);
676                 le = le->next;
677         }
678 } /* void plugin_log */
680 void plugin_complain (int level, complain_t *c, const char *format, ...)
682         char message[512];
683         va_list ap;
685         if (c->delay > 0)
686         {
687                 c->delay--;
688                 return;
689         }
691         if (c->interval < interval_g)
692                 c->interval = interval_g;
693         else
694                 c->interval *= 2;
696         if (c->interval > 86400)
697                 c->interval = 86400;
699         c->delay = c->interval / interval_g;
701         va_start (ap, format);
702         vsnprintf (message, 512, format, ap);
703         message[511] = '\0';
704         va_end (ap);
706         plugin_log (level, message);
709 void plugin_relief (int level, complain_t *c, const char *format, ...)
711         char message[512];
712         va_list ap;
714         if (c->interval == 0)
715                 return;
717         c->interval = 0;
719         va_start (ap, format);
720         vsnprintf (message, 512, format, ap);
721         message[511] = '\0';
722         va_end (ap);
724         plugin_log (level, message);
727 const data_set_t *plugin_get_ds (const char *name)
729         data_set_t *ds;
730         llentry_t *le;
732         le = llist_search (list_data_set, name);
733         if (le == NULL)
734         {
735                 DEBUG ("No such dataset registered: %s", name);
736                 return (NULL);
737         }
739         ds = (data_set_t *) le->value;
741         return (ds);
742 } /* data_set_t *plugin_get_ds */