sstrerror: Be even more cautios with the return value of `strerror_r'..
[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  **/
21
22 #include "collectd.h"
23
24 #include <ltdl.h>
25
26 #if HAVE_PTHREAD_H
27 # include <pthread.h>
28 #endif
29
30 #include "common.h"
31 #include "plugin.h"
32 #include "configfile.h"
33 #include "utils_llist.h"
34
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;
46
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;
56
57 static char *plugindir = NULL;
58
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;
64
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 }
75
76 static int register_callback (llist_t **list, const char *name, void *callback)
77 {
78         llentry_t *le;
79
80         if ((*list == NULL)
81                         && ((*list = llist_create ()) == NULL))
82                 return (-1);
83
84         le = llist_search (*list, name);
85         if (le == NULL)
86         {
87                 le = llentry_create (name, callback);
88                 if (le == NULL)
89                         return (-1);
90
91                 llist_append (*list, le);
92         }
93         else
94         {
95                 le->value = callback;
96         }
97
98         return (0);
99 } /* int register_callback */
100
101 static int plugin_unregister (llist_t *list, const char *name)
102 {
103         llentry_t *e;
104
105         e = llist_search (list, name);
106
107         if (e == NULL)
108                 return (-1);
109
110         llist_remove (list, e);
111         llentry_destroy (e);
112
113         return (0);
114 } /* int plugin_unregister */
115
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)
122 {
123         lt_dlhandle dlh;
124         void (*reg_handle) (void);
125
126         DEBUG ("file = %s", file);
127
128         lt_dlinit ();
129         lt_dlerror (); /* clear errors */
130
131         if ((dlh = lt_dlopen (file)) == NULL)
132         {
133                 const char *error = lt_dlerror ();
134
135                 ERROR ("lt_dlopen failed: %s", error);
136                 return (1);
137         }
138
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         }
146
147         (*reg_handle) ();
148
149         return (0);
150 }
151
152 static void *plugin_read_thread (void *args)
153 {
154         llentry_t   *le;
155         read_func_t *rf;
156         int          status;
157         int          done;
158
159         pthread_mutex_lock (&read_lock);
160
161         while (read_loop != 0)
162         {
163                 le = llist_head (list_read);
164                 done = 0;
165
166                 while ((read_loop != 0) && (le != NULL))
167                 {
168                         rf = (read_func_t *) le->value;
169
170                         if (rf->needs_read != TODO)
171                         {
172                                 le = le->next;
173                                 continue;
174                         }
175
176                         /* We will do this read function */
177                         rf->needs_read = ACTIVE;
178
179                         DEBUG ("[thread #%5lu] plugin: plugin_read_thread: Handling %s",
180                                         (unsigned long int) pthread_self (), le->key);
181                         pthread_mutex_unlock (&read_lock);
182
183                         status = rf->callback ();
184                         done++;
185
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;
194
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                         }
204
205                         pthread_mutex_lock (&read_lock);
206
207                         rf->needs_read = DONE;
208                         le = le->next;
209                 } /* while (le != NULL) */
210
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) */
218
219         pthread_mutex_unlock (&read_lock);
220
221         pthread_exit (NULL);
222 } /* void *plugin_read_thread */
223
224 static void start_threads (int num)
225 {
226         int i;
227
228         if (read_threads != NULL)
229                 return;
230
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         }
237
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 */
253
254 static void stop_threads (void)
255 {
256         int i;
257
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);
263
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 */
275
276 /*
277  * Public functions
278  */
279 void plugin_set_dir (const char *dir)
280 {
281         if (plugindir != NULL)
282                 free (plugindir);
283
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         }
292 }
293
294 #define BUFSIZE 512
295 int plugin_load (const char *type)
296 {
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;
305
306         DEBUG ("type = %s", type);
307
308         dir = plugin_get_dir ();
309         ret = 1;
310
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);
319
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         }
327
328         while ((de = readdir (dh)) != NULL)
329         {
330                 if (strncasecmp (de->d_name, typename, typename_len))
331                         continue;
332
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                 }
338
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                 }
351
352                 if (plugin_load_file (filename) == 0)
353                 {
354                         /* success */
355                         ret = 0;
356                         break;
357                 }
358         }
359
360         closedir (dh);
361
362         return (ret);
363 }
364
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)
371 {
372         cf_register (name, callback, keys, keys_num);
373         return (0);
374 } /* int plugin_register_config */
375
376 int plugin_register_init (const char *name,
377                 int (*callback) (void))
378 {
379         return (register_callback (&list_init, name, (void *) callback));
380 } /* plugin_register_init */
381
382 int plugin_register_read (const char *name,
383                 int (*callback) (void))
384 {
385         read_func_t *rf;
386
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         }
395
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;
401
402         return (register_callback (&list_read, name, (void *) rf));
403 } /* int plugin_register_read */
404
405 int plugin_register_write (const char *name,
406                 int (*callback) (const data_set_t *ds, const value_list_t *vl))
407 {
408         return (register_callback (&list_write, name, (void *) callback));
409 } /* int plugin_register_write */
410
411 int plugin_register_shutdown (char *name,
412                 int (*callback) (void))
413 {
414         return (register_callback (&list_shutdown, name, (void *) callback));
415 } /* int plugin_register_shutdown */
416
417 int plugin_register_data_set (const data_set_t *ds)
418 {
419         data_set_t *ds_copy;
420         int i;
421
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         }
428
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));
433
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         }
441
442         for (i = 0; i < ds->ds_num; i++)
443                 memcpy (ds_copy->ds + i, ds->ds + i, sizeof (data_source_t));
444
445         return (register_callback (&list_data_set, ds->type, (void *) ds_copy));
446 } /* int plugin_register_data_set */
447
448 int plugin_register_log (char *name,
449                 void (*callback) (int priority, const char *msg))
450 {
451         return (register_callback (&list_log, name, (void *) callback));
452 } /* int plugin_register_log */
453
454 int plugin_unregister_config (const char *name)
455 {
456         cf_unregister (name);
457         return (0);
458 } /* int plugin_unregister_config */
459
460 int plugin_unregister_init (const char *name)
461 {
462         return (plugin_unregister (list_init, name));
463 }
464
465 int plugin_unregister_read (const char *name)
466 {
467         llentry_t *e;
468
469         e = llist_search (list_read, name);
470
471         if (e == NULL)
472                 return (-1);
473
474         llist_remove (list_read, e);
475         free (e->value);
476         llentry_destroy (e);
477
478         return (0);
479 }
480
481 int plugin_unregister_write (const char *name)
482 {
483         return (plugin_unregister (list_write, name));
484 }
485
486 int plugin_unregister_shutdown (const char *name)
487 {
488         return (plugin_unregister (list_shutdown, name));
489 }
490
491 int plugin_unregister_data_set (const char *name)
492 {
493         llentry_t  *e;
494         data_set_t *ds;
495
496         if (list_data_set == NULL)
497                 return (-1);
498
499         e = llist_search (list_data_set, name);
500
501         if (e == NULL)
502                 return (-1);
503
504         llist_remove (list_data_set, e);
505         ds = (data_set_t *) e->value;
506         llentry_destroy (e);
507
508         sfree (ds->ds);
509         sfree (ds);
510
511         return (0);
512 } /* int plugin_unregister_data_set */
513
514 int plugin_unregister_log (const char *name)
515 {
516         return (plugin_unregister (list_log, name));
517 }
518
519 void plugin_init_all (void)
520 {
521         int (*callback) (void);
522         llentry_t *le;
523         int status;
524
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         }
534
535         if (list_init == NULL)
536                 return;
537
538         le = llist_head (list_init);
539         while (le != NULL)
540         {
541                 callback = (int (*) (void)) le->value;
542                 status = (*callback) ();
543
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                 }
553
554                 le = le->next;
555         }
556 } /* void plugin_init_all */
557
558 void plugin_read_all (const int *loop)
559 {
560         llentry_t   *le;
561         read_func_t *rf;
562
563         if (list_read == NULL)
564                 return;
565
566         pthread_mutex_lock (&read_lock);
567
568         le = llist_head (list_read);
569         while (le != NULL)
570         {
571                 rf = (read_func_t *) le->value;
572
573                 if (rf->needs_read != DONE)
574                 {
575                         le = le->next;
576                         continue;
577                 }
578
579                 if (rf->wait_left > 0)
580                         rf->wait_left -= interval_g;
581
582                 if (rf->wait_left <= 0)
583                 {
584                         rf->needs_read = TODO;
585                 }
586
587                 le = le->next;
588         }
589
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 */
594
595 void plugin_shutdown_all (void)
596 {
597         int (*callback) (void);
598         llentry_t *le;
599
600         stop_threads ();
601
602         if (list_shutdown == NULL)
603                 return;
604
605         le = llist_head (list_shutdown);
606         while (le != NULL)
607         {
608                 callback = (int (*) (void)) le->value;
609
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;
615
616                 (*callback) ();
617         }
618 } /* void plugin_shutdown_all */
619
620 int plugin_dispatch_values (const char *name, value_list_t *vl)
621 {
622         int (*callback) (const data_set_t *, const value_list_t *);
623         data_set_t *ds;
624         llentry_t *le;
625
626         if ((list_write == NULL) || (list_data_set == NULL))
627                 return (-1);
628
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         }
635
636         ds = (data_set_t *) le->value;
637
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);
644
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
656
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));
661
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);
667
668                 le = le->next;
669         }
670
671         return (0);
672 } /* int plugin_dispatch_values */
673
674 void plugin_log (int level, const char *format, ...)
675 {
676         char msg[512];
677         va_list ap;
678
679         void (*callback) (int, const char *);
680         llentry_t *le;
681
682         if (list_log == NULL)
683                 return;
684
685 #if !COLLECT_DEBUG
686         if (level >= LOG_DEBUG)
687                 return;
688 #endif
689
690         va_start (ap, format);
691         vsnprintf (msg, 512, format, ap);
692         msg[511] = '\0';
693         va_end (ap);
694
695         le = llist_head (list_log);
696         while (le != NULL)
697         {
698                 callback = (void (*) (int, const char *)) le->value;
699                 (*callback) (level, msg);
700
701                 le = le->next;
702         }
703 } /* void plugin_log */
704
705 void plugin_complain (int level, complain_t *c, const char *format, ...)
706 {
707         char message[512];
708         va_list ap;
709
710         if (c->delay > 0)
711         {
712                 c->delay--;
713                 return;
714         }
715
716         if (c->interval < interval_g)
717                 c->interval = interval_g;
718         else
719                 c->interval *= 2;
720
721         if (c->interval > 86400)
722                 c->interval = 86400;
723
724         c->delay = c->interval / interval_g;
725
726         va_start (ap, format);
727         vsnprintf (message, 512, format, ap);
728         message[511] = '\0';
729         va_end (ap);
730
731         plugin_log (level, message);
732 }
733
734 void plugin_relief (int level, complain_t *c, const char *format, ...)
735 {
736         char message[512];
737         va_list ap;
738
739         if (c->interval == 0)
740                 return;
741
742         c->interval = 0;
743
744         va_start (ap, format);
745         vsnprintf (message, 512, format, ap);
746         message[511] = '\0';
747         va_end (ap);
748
749         plugin_log (level, message);
750 }
751
752 const data_set_t *plugin_get_ds (const char *name)
753 {
754         data_set_t *ds;
755         llentry_t *le;
756
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         }
763
764         ds = (data_set_t *) le->value;
765
766         return (ds);
767 } /* data_set_t *plugin_get_ds */