Code

fe7a9e5c9573409d8c533e635a9a5187b832ea36
[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                 return (1);
137         }
139         if ((reg_handle = (void (*) (void)) lt_dlsym (dlh, "module_register")) == NULL)
140         {
141                 WARNING ("Couldn't find symbol ``module_register'' in ``%s'': %s\n",
142                                 file, lt_dlerror ());
143                 lt_dlclose (dlh);
144                 return (-1);
145         }
147         (*reg_handle) ();
149         return (0);
152 static void *plugin_read_thread (void *args)
154         llentry_t   *le;
155         read_func_t *rf;
156         int          status;
157         int          done;
159         pthread_mutex_lock (&read_lock);
161         while (read_loop != 0)
162         {
163                 le = llist_head (list_read);
164                 done = 0;
166                 while ((read_loop != 0) && (le != NULL))
167                 {
168                         rf = (read_func_t *) le->value;
170                         if (rf->needs_read != TODO)
171                         {
172                                 le = le->next;
173                                 continue;
174                         }
176                         /* We will do this read function */
177                         rf->needs_read = ACTIVE;
179                         DEBUG ("[thread #%5lu] plugin: plugin_read_thread: Handling %s",
180                                         (unsigned long int) pthread_self (), le->key);
181                         pthread_mutex_unlock (&read_lock);
183                         status = rf->callback ();
184                         done++;
186                         if (status != 0)
187                         {
188                                 if (rf->wait_time < interval_g)
189                                         rf->wait_time = interval_g;
190                                 rf->wait_left = rf->wait_time;
191                                 rf->wait_time = rf->wait_time * 2;
192                                 if (rf->wait_time > 86400)
193                                         rf->wait_time = 86400;
195                                 NOTICE ("read-function of plugin `%s' "
196                                                 "failed. Will syspend it for %i "
197                                                 "seconds.", le->key, rf->wait_left);
198                         }
199                         else
200                         {
201                                 rf->wait_left = 0;
202                                 rf->wait_time = interval_g;
203                         }
205                         pthread_mutex_lock (&read_lock);
207                         rf->needs_read = DONE;
208                         le = le->next;
209                 } /* while (le != NULL) */
211                 if ((read_loop != 0) && (done == 0))
212                 {
213                         DEBUG ("[thread #%5lu] plugin: plugin_read_thread: Waiting on read_cond.",
214                                         (unsigned long int) pthread_self ());
215                         pthread_cond_wait (&read_cond, &read_lock);
216                 }
217         } /* while (read_loop) */
219         pthread_mutex_unlock (&read_lock);
221         pthread_exit (NULL);
222 } /* void *plugin_read_thread */
224 static void start_threads (int num)
226         int i;
228         if (read_threads != NULL)
229                 return;
231         read_threads = (pthread_t *) calloc (num, sizeof (pthread_t));
232         if (read_threads == NULL)
233         {
234                 ERROR ("plugin: start_threads: calloc failed.");
235                 return;
236         }
238         read_threads_num = 0;
239         for (i = 0; i < num; i++)
240         {
241                 if (pthread_create (read_threads + read_threads_num, NULL,
242                                         plugin_read_thread, NULL) == 0)
243                 {
244                         read_threads_num++;
245                 }
246                 else
247                 {
248                         ERROR ("plugin: start_threads: pthread_create failed.");
249                         return;
250                 }
251         } /* for (i) */
252 } /* void start_threads */
254 static void stop_threads (void)
256         int i;
258         pthread_mutex_lock (&read_lock);
259         read_loop = 0;
260         DEBUG ("plugin: stop_threads: Signalling `read_cond'");
261         pthread_cond_broadcast (&read_cond);
262         pthread_mutex_unlock (&read_lock);
264         for (i = 0; i < read_threads_num; i++)
265         {
266                 if (pthread_join (read_threads[i], NULL) != 0)
267                 {
268                         ERROR ("plugin: stop_threads: pthread_join failed.");
269                 }
270                 read_threads[i] = (pthread_t) 0;
271         }
272         sfree (read_threads);
273         read_threads_num = 0;
274 } /* void stop_threads */
276 /*
277  * Public functions
278  */
279 void plugin_set_dir (const char *dir)
281         if (plugindir != NULL)
282                 free (plugindir);
284         if (dir == NULL)
285                 plugindir = NULL;
286         else if ((plugindir = strdup (dir)) == NULL)
287         {
288                 char errbuf[1024];
289                 ERROR ("strdup failed: %s",
290                                 sstrerror (errno, errbuf, sizeof (errbuf)));
291         }
294 #define BUFSIZE 512
295 int plugin_load (const char *type)
297         DIR  *dh;
298         const char *dir;
299         char  filename[BUFSIZE];
300         char  typename[BUFSIZE];
301         int   typename_len;
302         int   ret;
303         struct stat    statbuf;
304         struct dirent *de;
306         DEBUG ("type = %s", type);
308         dir = plugin_get_dir ();
309         ret = 1;
311         /* `cpu' should not match `cpufreq'. To solve this we add `.so' to the
312          * type when matching the filename */
313         if (snprintf (typename, BUFSIZE, "%s.so", type) >= BUFSIZE)
314         {
315                 WARNING ("snprintf: truncated: `%s.so'", type);
316                 return (-1);
317         }
318         typename_len = strlen (typename);
320         if ((dh = opendir (dir)) == NULL)
321         {
322                 char errbuf[1024];
323                 ERROR ("opendir (%s): %s", dir,
324                                 sstrerror (errno, errbuf, sizeof (errbuf)));
325                 return (-1);
326         }
328         while ((de = readdir (dh)) != NULL)
329         {
330                 if (strncasecmp (de->d_name, typename, typename_len))
331                         continue;
333                 if (snprintf (filename, BUFSIZE, "%s/%s", dir, de->d_name) >= BUFSIZE)
334                 {
335                         WARNING ("snprintf: truncated: `%s/%s'", dir, de->d_name);
336                         continue;
337                 }
339                 if (lstat (filename, &statbuf) == -1)
340                 {
341                         char errbuf[1024];
342                         WARNING ("stat %s: %s", filename,
343                                         sstrerror (errno, errbuf, sizeof (errbuf)));
344                         continue;
345                 }
346                 else if (!S_ISREG (statbuf.st_mode))
347                 {
348                         /* don't follow symlinks */
349                         continue;
350                 }
352                 if (plugin_load_file (filename) == 0)
353                 {
354                         /* success */
355                         ret = 0;
356                         break;
357                 }
358         }
360         closedir (dh);
362         return (ret);
365 /*
366  * The `register_*' functions follow
367  */
368 int plugin_register_config (const char *name,
369                 int (*callback) (const char *key, const char *val),
370                 const char **keys, int keys_num)
372         cf_register (name, callback, keys, keys_num);
373         return (0);
374 } /* int plugin_register_config */
376 int plugin_register_init (const char *name,
377                 int (*callback) (void))
379         return (register_callback (&list_init, name, (void *) callback));
380 } /* plugin_register_init */
382 int plugin_register_read (const char *name,
383                 int (*callback) (void))
385         read_func_t *rf;
387         rf = (read_func_t *) malloc (sizeof (read_func_t));
388         if (rf == NULL)
389         {
390                 char errbuf[1024];
391                 ERROR ("plugin_register_read: malloc failed: %s",
392                                 sstrerror (errno, errbuf, sizeof (errbuf)));
393                 return (-1);
394         }
396         memset (rf, '\0', sizeof (read_func_t));
397         rf->wait_time = interval_g;
398         rf->wait_left = 0;
399         rf->callback = callback;
400         rf->needs_read = DONE;
402         return (register_callback (&list_read, name, (void *) rf));
403 } /* int plugin_register_read */
405 int plugin_register_write (const char *name,
406                 int (*callback) (const data_set_t *ds, const value_list_t *vl))
408         return (register_callback (&list_write, name, (void *) callback));
409 } /* int plugin_register_write */
411 int plugin_register_shutdown (char *name,
412                 int (*callback) (void))
414         return (register_callback (&list_shutdown, name, (void *) callback));
415 } /* int plugin_register_shutdown */
417 int plugin_register_data_set (const data_set_t *ds)
419         data_set_t *ds_copy;
420         int i;
422         if ((list_data_set != NULL)
423                         && (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         if (list_data_set == NULL)
497                 return (-1);
499         e = llist_search (list_data_set, name);
501         if (e == NULL)
502                 return (-1);
504         llist_remove (list_data_set, e);
505         ds = (data_set_t *) e->value;
506         llentry_destroy (e);
508         sfree (ds->ds);
509         sfree (ds);
511         return (0);
512 } /* int plugin_unregister_data_set */
514 int plugin_unregister_log (const char *name)
516         return (plugin_unregister (list_log, name));
519 void plugin_init_all (void)
521         int (*callback) (void);
522         llentry_t *le;
523         int status;
525         /* Start read-threads */
526         if (list_read != NULL)
527         {
528                 const char *rt;
529                 int num;
530                 rt = global_option_get ("ReadThreads");
531                 num = atoi (rt);
532                 start_threads ((num > 0) ? num : 5);
533         }
535         if (list_init == NULL)
536                 return;
538         le = llist_head (list_init);
539         while (le != NULL)
540         {
541                 callback = (int (*) (void)) le->value;
542                 status = (*callback) ();
544                 if (status != 0)
545                 {
546                         ERROR ("Initialization of plugin `%s' "
547                                         "failed with status %i. "
548                                         "Plugin will be unloaded.",
549                                         le->key, status);
550                         /* FIXME: Unload _all_ functions */
551                         plugin_unregister_read (le->key);
552                 }
554                 le = le->next;
555         }
556 } /* void plugin_init_all */
558 void plugin_read_all (const int *loop)
560         llentry_t   *le;
561         read_func_t *rf;
563         if (list_read == NULL)
564                 return;
566         pthread_mutex_lock (&read_lock);
568         le = llist_head (list_read);
569         while (le != NULL)
570         {
571                 rf = (read_func_t *) le->value;
573                 if (rf->needs_read != DONE)
574                 {
575                         le = le->next;
576                         continue;
577                 }
579                 if (rf->wait_left > 0)
580                         rf->wait_left -= interval_g;
582                 if (rf->wait_left <= 0)
583                 {
584                         rf->needs_read = TODO;
585                 }
587                 le = le->next;
588         }
590         DEBUG ("plugin: plugin_read_all: Signalling `read_cond'");
591         pthread_cond_broadcast (&read_cond);
592         pthread_mutex_unlock (&read_lock);
593 } /* void plugin_read_all */
595 void plugin_shutdown_all (void)
597         int (*callback) (void);
598         llentry_t *le;
600         stop_threads ();
602         if (list_shutdown == NULL)
603                 return;
605         le = llist_head (list_shutdown);
606         while (le != NULL)
607         {
608                 callback = (int (*) (void)) le->value;
610                 /* Advance the pointer before calling the callback allows
611                  * shutdown functions to unregister themselves. If done the
612                  * other way around the memory `le' points to will be freed
613                  * after callback returns. */
614                 le = le->next;
616                 (*callback) ();
617         }
618 } /* void plugin_shutdown_all */
620 int plugin_dispatch_values (const char *name, value_list_t *vl)
622         int (*callback) (const data_set_t *, const value_list_t *);
623         data_set_t *ds;
624         llentry_t *le;
626         if ((list_write == NULL) || (list_data_set == NULL))
627                 return (-1);
629         le = llist_search (list_data_set, name);
630         if (le == NULL)
631         {
632                 DEBUG ("No such dataset registered: %s", name);
633                 return (-1);
634         }
636         ds = (data_set_t *) le->value;
638         DEBUG ("plugin: plugin_dispatch_values: time = %u; host = %s; "
639                         "plugin = %s; plugin_instance = %s; type = %s; "
640                         "type_instance = %s;",
641                         (unsigned int) vl->time, vl->host,
642                         vl->plugin, vl->plugin_instance,
643                         ds->type, vl->type_instance);
645 #if COLLECT_DEBUG
646         assert (ds->ds_num == vl->values_len);
647 #else
648         if (ds->ds_num != vl->values_len)
649         {
650                 ERROR ("plugin: ds->type = %s: (ds->ds_num = %i) != "
651                                 "(vl->values_len = %i)",
652                                 ds->type, ds->ds_num, vl->values_len);
653                 return (-1);
654         }
655 #endif
657         escape_slashes (vl->host, sizeof (vl->host));
658         escape_slashes (vl->plugin, sizeof (vl->plugin));
659         escape_slashes (vl->plugin_instance, sizeof (vl->plugin_instance));
660         escape_slashes (vl->type_instance, sizeof (vl->type_instance));
662         le = llist_head (list_write);
663         while (le != NULL)
664         {
665                 callback = (int (*) (const data_set_t *, const value_list_t *)) le->value;
666                 (*callback) (ds, vl);
668                 le = le->next;
669         }
671         return (0);
672 } /* int plugin_dispatch_values */
674 void plugin_log (int level, const char *format, ...)
676         char msg[512];
677         va_list ap;
679         void (*callback) (int, const char *);
680         llentry_t *le;
682         if (list_log == NULL)
683                 return;
685 #if !COLLECT_DEBUG
686         if (level >= LOG_DEBUG)
687                 return;
688 #endif
690         va_start (ap, format);
691         vsnprintf (msg, 512, format, ap);
692         msg[511] = '\0';
693         va_end (ap);
695         le = llist_head (list_log);
696         while (le != NULL)
697         {
698                 callback = (void (*) (int, const char *)) le->value;
699                 (*callback) (level, msg);
701                 le = le->next;
702         }
703 } /* void plugin_log */
705 void plugin_complain (int level, complain_t *c, const char *format, ...)
707         char message[512];
708         va_list ap;
710         if (c->delay > 0)
711         {
712                 c->delay--;
713                 return;
714         }
716         if (c->interval < interval_g)
717                 c->interval = interval_g;
718         else
719                 c->interval *= 2;
721         if (c->interval > 86400)
722                 c->interval = 86400;
724         c->delay = c->interval / interval_g;
726         va_start (ap, format);
727         vsnprintf (message, 512, format, ap);
728         message[511] = '\0';
729         va_end (ap);
731         plugin_log (level, message);
734 void plugin_relief (int level, complain_t *c, const char *format, ...)
736         char message[512];
737         va_list ap;
739         if (c->interval == 0)
740                 return;
742         c->interval = 0;
744         va_start (ap, format);
745         vsnprintf (message, 512, format, ap);
746         message[511] = '\0';
747         va_end (ap);
749         plugin_log (level, message);
752 const data_set_t *plugin_get_ds (const char *name)
754         data_set_t *ds;
755         llentry_t *le;
757         le = llist_search (list_data_set, name);
758         if (le == NULL)
759         {
760                 DEBUG ("No such dataset registered: %s", name);
761                 return (NULL);
762         }
764         ds = (data_set_t *) le->value;
766         return (ds);
767 } /* data_set_t *plugin_get_ds */