Merge branch 'collectd-4.4'
[collectd.git] / src / perl.c
1 /**
2  * collectd - src/perl.c
3  * Copyright (C) 2007, 2008  Sebastian Harl
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  * Author:
19  *   Sebastian Harl <sh at tokkee.org>
20  **/
21
22 /*
23  * This plugin embeds a Perl interpreter into collectd and provides an
24  * interface for collectd plugins written in perl.
25  */
26
27 /* do not automatically get the thread specific perl interpreter */
28 #define PERL_NO_GET_CONTEXT
29
30 #define DONT_POISON_SPRINTF_YET 1
31 #include "collectd.h"
32 #undef DONT_POISON_SPRINTF_YET
33
34 #include "configfile.h"
35
36 #include <EXTERN.h>
37 #include <perl.h>
38
39 #if __GNUC__
40 # pragma GCC poison sprintf
41 #endif
42
43 #include <XSUB.h>
44
45 /* Some versions of Perl define their own version of DEBUG... :-/ */
46 #ifdef DEBUG
47 # undef DEBUG
48 #endif /* DEBUG */
49
50 /* ... while we want the definition found in plugin.h. */
51 #include "plugin.h"
52 #include "common.h"
53
54 #include <pthread.h>
55
56 #if !defined(USE_ITHREADS)
57 # error "Perl does not support ithreads!"
58 #endif /* !defined(USE_ITHREADS) */
59
60 /* clear the Perl sub's stack frame
61  * (this should only be used inside an XSUB) */
62 #define CLEAR_STACK_FRAME PL_stack_sp = PL_stack_base + *PL_markstack_ptr
63
64 #define PLUGIN_INIT     0
65 #define PLUGIN_READ     1
66 #define PLUGIN_WRITE    2
67 #define PLUGIN_SHUTDOWN 3
68 #define PLUGIN_LOG      4
69 #define PLUGIN_NOTIF    5
70 #define PLUGIN_FLUSH    6
71
72 #define PLUGIN_TYPES    7
73
74 #define PLUGIN_DATASET  255
75
76 #define log_debug(...) DEBUG ("perl: " __VA_ARGS__)
77 #define log_info(...) INFO ("perl: " __VA_ARGS__)
78 #define log_warn(...) WARNING ("perl: " __VA_ARGS__)
79 #define log_err(...) ERROR ("perl: " __VA_ARGS__)
80
81 /* this is defined in DynaLoader.a */
82 void boot_DynaLoader (PerlInterpreter *, CV *);
83
84 static XS (Collectd_plugin_register_ds);
85 static XS (Collectd_plugin_unregister_ds);
86 static XS (Collectd_plugin_dispatch_values);
87 static XS (Collectd__plugin_flush);
88 static XS (Collectd_plugin_dispatch_notification);
89 static XS (Collectd_plugin_log);
90 static XS (Collectd_call_by_name);
91
92 /*
93  * private data types
94  */
95
96 typedef struct c_ithread_s {
97         /* the thread's Perl interpreter */
98         PerlInterpreter *interp;
99
100         /* double linked list of threads */
101         struct c_ithread_s *prev;
102         struct c_ithread_s *next;
103 } c_ithread_t;
104
105 typedef struct {
106         c_ithread_t *head;
107         c_ithread_t *tail;
108
109 #if COLLECT_DEBUG
110         /* some usage stats */
111         int number_of_threads;
112 #endif /* COLLECT_DEBUG */
113
114         pthread_mutex_t mutex;
115 } c_ithread_list_t;
116
117 /*
118  * private variables
119  */
120
121 /* if perl_threads != NULL perl_threads->head must
122  * point to the "base" thread */
123 static c_ithread_list_t *perl_threads = NULL;
124
125 /* the key used to store each pthread's ithread */
126 static pthread_key_t perl_thr_key;
127
128 static int    perl_argc = 0;
129 static char **perl_argv = NULL;
130
131 static char base_name[DATA_MAX_NAME_LEN] = "";
132
133 static struct {
134         char name[64];
135         XS ((*f));
136 } api[] =
137 {
138         { "Collectd::plugin_register_data_set",   Collectd_plugin_register_ds },
139         { "Collectd::plugin_unregister_data_set", Collectd_plugin_unregister_ds },
140         { "Collectd::plugin_dispatch_values",     Collectd_plugin_dispatch_values },
141         { "Collectd::_plugin_flush",              Collectd__plugin_flush },
142         { "Collectd::plugin_dispatch_notification",
143                 Collectd_plugin_dispatch_notification },
144         { "Collectd::plugin_log",                 Collectd_plugin_log },
145         { "Collectd::call_by_name",               Collectd_call_by_name },
146         { "", NULL }
147 };
148
149 struct {
150         char name[64];
151         int  value;
152 } constants[] =
153 {
154         { "Collectd::TYPE_INIT",       PLUGIN_INIT },
155         { "Collectd::TYPE_READ",       PLUGIN_READ },
156         { "Collectd::TYPE_WRITE",      PLUGIN_WRITE },
157         { "Collectd::TYPE_SHUTDOWN",   PLUGIN_SHUTDOWN },
158         { "Collectd::TYPE_LOG",        PLUGIN_LOG },
159         { "Collectd::TYPE_NOTIF",      PLUGIN_NOTIF },
160         { "Collectd::TYPE_FLUSH",      PLUGIN_FLUSH },
161         { "Collectd::TYPE_DATASET",    PLUGIN_DATASET },
162         { "Collectd::DS_TYPE_COUNTER", DS_TYPE_COUNTER },
163         { "Collectd::DS_TYPE_GAUGE",   DS_TYPE_GAUGE },
164         { "Collectd::LOG_ERR",         LOG_ERR },
165         { "Collectd::LOG_WARNING",     LOG_WARNING },
166         { "Collectd::LOG_NOTICE",      LOG_NOTICE },
167         { "Collectd::LOG_INFO",        LOG_INFO },
168         { "Collectd::LOG_DEBUG",       LOG_DEBUG },
169         { "Collectd::NOTIF_FAILURE",   NOTIF_FAILURE },
170         { "Collectd::NOTIF_WARNING",   NOTIF_WARNING },
171         { "Collectd::NOTIF_OKAY",      NOTIF_OKAY },
172         { "", 0 }
173 };
174
175 struct {
176         char  name[64];
177         char *var;
178 } g_strings[] =
179 {
180         { "Collectd::hostname_g", hostname_g },
181         { "", NULL }
182 };
183
184 struct {
185         char  name[64];
186         int  *var;
187 } g_integers[] =
188 {
189         { "Collectd::interval_g", &interval_g },
190         { "", NULL }
191 };
192
193 /*
194  * Helper functions for data type conversion.
195  */
196
197 /*
198  * data source:
199  * [
200  *   {
201  *     name => $ds_name,
202  *     type => $ds_type,
203  *     min  => $ds_min,
204  *     max  => $ds_max
205  *   },
206  *   ...
207  * ]
208  */
209 static int hv2data_source (pTHX_ HV *hash, data_source_t *ds)
210 {
211         SV **tmp = NULL;
212
213         if ((NULL == hash) || (NULL == ds))
214                 return -1;
215
216         if (NULL != (tmp = hv_fetch (hash, "name", 4, 0))) {
217                 sstrncpy (ds->name, SvPV_nolen (*tmp), sizeof (ds->name));
218         }
219         else {
220                 log_err ("hv2data_source: No DS name given.");
221                 return -1;
222         }
223
224         if (NULL != (tmp = hv_fetch (hash, "type", 4, 0))) {
225                 ds->type = SvIV (*tmp);
226
227                 if ((DS_TYPE_COUNTER != ds->type) && (DS_TYPE_GAUGE != ds->type)) {
228                         log_err ("hv2data_source: Invalid DS type.");
229                         return -1;
230                 }
231         }
232         else {
233                 ds->type = DS_TYPE_COUNTER;
234         }
235
236         if (NULL != (tmp = hv_fetch (hash, "min", 3, 0)))
237                 ds->min = SvNV (*tmp);
238         else
239                 ds->min = NAN;
240
241         if (NULL != (tmp = hv_fetch (hash, "max", 3, 0)))
242                 ds->max = SvNV (*tmp);
243         else
244                 ds->max = NAN;
245         return 0;
246 } /* static data_source_t *hv2data_source (HV *) */
247
248 static int av2value (pTHX_ char *name, AV *array, value_t *value, int len)
249 {
250         const data_set_t *ds;
251
252         int i = 0;
253
254         if ((NULL == name) || (NULL == array) || (NULL == value))
255                 return -1;
256
257         if (av_len (array) < len - 1)
258                 len = av_len (array) + 1;
259
260         if (0 >= len)
261                 return -1;
262
263         ds = plugin_get_ds (name);
264         if (NULL == ds) {
265                 log_err ("av2value: Unknown dataset \"%s\"", name);
266                 return -1;
267         }
268
269         if (ds->ds_num < len) {
270                 log_warn ("av2value: Value length exceeds data set length.");
271                 len = ds->ds_num;
272         }
273
274         for (i = 0; i < len; ++i) {
275                 SV **tmp = av_fetch (array, i, 0);
276
277                 if (NULL != tmp) {
278                         if (DS_TYPE_COUNTER == ds->ds[i].type)
279                                 value[i].counter = SvIV (*tmp);
280                         else
281                                 value[i].gauge = SvNV (*tmp);
282                 }
283                 else {
284                         return -1;
285                 }
286         }
287         return len;
288 } /* static int av2value (char *, AV *, value_t *, int) */
289
290 static int data_set2av (pTHX_ data_set_t *ds, AV *array)
291 {
292         int i = 0;
293
294         if ((NULL == ds) || (NULL == array))
295                 return -1;
296
297         av_extend (array, ds->ds_num);
298
299         for (i = 0; i < ds->ds_num; ++i) {
300                 HV *source = newHV ();
301
302                 if (NULL == hv_store (source, "name", 4,
303                                 newSVpv (ds->ds[i].name, 0), 0))
304                         return -1;
305
306                 if (NULL == hv_store (source, "type", 4, newSViv (ds->ds[i].type), 0))
307                         return -1;
308
309                 if (! isnan (ds->ds[i].min))
310                         if (NULL == hv_store (source, "min", 3,
311                                         newSVnv (ds->ds[i].min), 0))
312                                 return -1;
313
314                 if (! isnan (ds->ds[i].max))
315                         if (NULL == hv_store (source, "max", 3,
316                                         newSVnv (ds->ds[i].max), 0))
317                                 return -1;
318
319                 if (NULL == av_store (array, i, newRV_noinc ((SV *)source)))
320                         return -1;
321         }
322         return 0;
323 } /* static int data_set2av (data_set_t *, AV *) */
324
325 static int value_list2hv (pTHX_ value_list_t *vl, data_set_t *ds, HV *hash)
326 {
327         AV *values = NULL;
328
329         int i   = 0;
330         int len = 0;
331
332         if ((NULL == vl) || (NULL == ds) || (NULL == hash))
333                 return -1;
334
335         len = vl->values_len;
336
337         if (ds->ds_num < len) {
338                 log_warn ("value2av: Value length exceeds data set length.");
339                 len = ds->ds_num;
340         }
341
342         values = newAV ();
343         av_extend (values, len - 1);
344
345         for (i = 0; i < len; ++i) {
346                 SV *val = NULL;
347
348                 if (DS_TYPE_COUNTER == ds->ds[i].type)
349                         val = newSViv (vl->values[i].counter);
350                 else
351                         val = newSVnv (vl->values[i].gauge);
352
353                 if (NULL == av_store (values, i, val)) {
354                         av_undef (values);
355                         return -1;
356                 }
357         }
358
359         if (NULL == hv_store (hash, "values", 6, newRV_noinc ((SV *)values), 0))
360                 return -1;
361
362         if (0 != vl->time)
363                 if (NULL == hv_store (hash, "time", 4, newSViv (vl->time), 0))
364                         return -1;
365
366         if ('\0' != vl->host[0])
367                 if (NULL == hv_store (hash, "host", 4, newSVpv (vl->host, 0), 0))
368                         return -1;
369
370         if ('\0' != vl->plugin[0])
371                 if (NULL == hv_store (hash, "plugin", 6, newSVpv (vl->plugin, 0), 0))
372                         return -1;
373
374         if ('\0' != vl->plugin_instance[0])
375                 if (NULL == hv_store (hash, "plugin_instance", 15,
376                                 newSVpv (vl->plugin_instance, 0), 0))
377                         return -1;
378
379         if ('\0' != vl->type[0])
380                 if (NULL == hv_store (hash, "type", 4, newSVpv (vl->type, 0), 0))
381                         return -1;
382
383         if ('\0' != vl->type_instance[0])
384                 if (NULL == hv_store (hash, "type_instance", 13,
385                                 newSVpv (vl->type_instance, 0), 0))
386                         return -1;
387         return 0;
388 } /* static int value2av (value_list_t *, data_set_t *, HV *) */
389
390 static int notification2hv (pTHX_ notification_t *n, HV *hash)
391 {
392         if (NULL == hv_store (hash, "severity", 8, newSViv (n->severity), 0))
393                 return -1;
394
395         if (0 != n->time)
396                 if (NULL == hv_store (hash, "time", 4, newSViv (n->time), 0))
397                         return -1;
398
399         if ('\0' != *n->message)
400                 if (NULL == hv_store (hash, "message", 7, newSVpv (n->message, 0), 0))
401                         return -1;
402
403         if ('\0' != *n->host)
404                 if (NULL == hv_store (hash, "host", 4, newSVpv (n->host, 0), 0))
405                         return -1;
406
407         if ('\0' != *n->plugin)
408                 if (NULL == hv_store (hash, "plugin", 6, newSVpv (n->plugin, 0), 0))
409                         return -1;
410
411         if ('\0' != *n->plugin_instance)
412                 if (NULL == hv_store (hash, "plugin_instance", 15,
413                                 newSVpv (n->plugin_instance, 0), 0))
414                         return -1;
415
416         if ('\0' != *n->type)
417                 if (NULL == hv_store (hash, "type", 4, newSVpv (n->type, 0), 0))
418                         return -1;
419
420         if ('\0' != *n->type_instance)
421                 if (NULL == hv_store (hash, "type_instance", 13,
422                                 newSVpv (n->type_instance, 0), 0))
423                         return -1;
424         return 0;
425 } /* static int notification2hv (notification_t *, HV *) */
426
427 /*
428  * Internal functions.
429  */
430
431 static char *get_module_name (char *buf, size_t buf_len, const char *module) {
432         int status = 0;
433         if (base_name[0] == '\0')
434                 status = ssnprintf (buf, buf_len, "%s", module);
435         else
436                 status = ssnprintf (buf, buf_len, "%s::%s", base_name, module);
437         if ((status < 0) || ((unsigned int)status >= buf_len))
438                 return (NULL);
439         return (buf);
440 } /* char *get_module_name */
441
442 /*
443  * Add a plugin's data set definition.
444  */
445 static int pplugin_register_data_set (pTHX_ char *name, AV *dataset)
446 {
447         int len = -1;
448         int ret = 0;
449         int i   = 0;
450
451         data_source_t *ds  = NULL;
452         data_set_t    *set = NULL;
453
454         if ((NULL == name) || (NULL == dataset))
455                 return -1;
456
457         len = av_len (dataset);
458
459         if (-1 == len)
460                 return -1;
461
462         ds  = (data_source_t *)smalloc ((len + 1) * sizeof (data_source_t));
463         set = (data_set_t *)smalloc (sizeof (data_set_t));
464
465         for (i = 0; i <= len; ++i) {
466                 SV **elem = av_fetch (dataset, i, 0);
467
468                 if (NULL == elem)
469                         return -1;
470
471                 if (! (SvROK (*elem) && (SVt_PVHV == SvTYPE (SvRV (*elem))))) {
472                         log_err ("pplugin_register_data_set: Invalid data source.");
473                         return -1;
474                 }
475
476                 if (-1 == hv2data_source (aTHX_ (HV *)SvRV (*elem), &ds[i]))
477                         return -1;
478
479                 log_debug ("pplugin_register_data_set: "
480                                 "DS.name = \"%s\", DS.type = %i, DS.min = %f, DS.max = %f",
481                                 ds[i].name, ds[i].type, ds[i].min, ds[i].max);
482         }
483
484         sstrncpy (set->type, name, sizeof (set->type));
485
486         set->ds_num = len + 1;
487         set->ds = ds;
488
489         ret = plugin_register_data_set (set);
490
491         free (ds);
492         free (set);
493         return ret;
494 } /* static int pplugin_register_data_set (char *, SV *) */
495
496 /*
497  * Remove a plugin's data set definition.
498  */
499 static int pplugin_unregister_data_set (char *name)
500 {
501         if (NULL == name)
502                 return 0;
503         return plugin_unregister_data_set (name);
504 } /* static int pplugin_unregister_data_set (char *) */
505
506 /*
507  * Submit the values to the write functions.
508  *
509  * value list:
510  * {
511  *   values => [ @values ],
512  *   time   => $time,
513  *   host   => $host,
514  *   plugin => $plugin,
515  *   plugin_instance => $pinstance,
516  *   type_instance   => $tinstance,
517  * }
518  */
519 static int pplugin_dispatch_values (pTHX_ HV *values)
520 {
521         value_list_t list = VALUE_LIST_INIT;
522         value_t      *val = NULL;
523
524         SV **tmp = NULL;
525
526         int ret = 0;
527
528         if (NULL == values)
529                 return -1;
530
531         if (NULL == (tmp = hv_fetch (values, "type", 4, 0))) {
532                 log_err ("pplugin_dispatch_values: No type given.");
533                 return -1;
534         }
535
536         sstrncpy (list.type, SvPV_nolen (*tmp), sizeof (list.type));
537
538         if ((NULL == (tmp = hv_fetch (values, "values", 6, 0)))
539                         || (! (SvROK (*tmp) && (SVt_PVAV == SvTYPE (SvRV (*tmp)))))) {
540                 log_err ("pplugin_dispatch_values: No valid values given.");
541                 return -1;
542         }
543
544         {
545                 AV  *array = (AV *)SvRV (*tmp);
546                 int len    = av_len (array) + 1;
547
548                 if (len <= 0)
549                         return -1;
550
551                 val = (value_t *)smalloc (len * sizeof (value_t));
552
553                 list.values_len = av2value (aTHX_ list.type, (AV *)SvRV (*tmp),
554                                 val, len);
555                 list.values = val;
556
557                 if (-1 == list.values_len) {
558                         sfree (val);
559                         return -1;
560                 }
561         }
562
563         if (NULL != (tmp = hv_fetch (values, "time", 4, 0))) {
564                 list.time = (time_t)SvIV (*tmp);
565         }
566         else {
567                 list.time = time (NULL);
568         }
569
570         if (NULL != (tmp = hv_fetch (values, "host", 4, 0))) {
571                 sstrncpy (list.host, SvPV_nolen (*tmp), sizeof (list.host));
572         }
573         else {
574                 sstrncpy (list.host, hostname_g, sizeof (list.host));
575         }
576
577         if (NULL != (tmp = hv_fetch (values, "plugin", 6, 0)))
578                 sstrncpy (list.plugin, SvPV_nolen (*tmp), sizeof (list.plugin));
579
580         if (NULL != (tmp = hv_fetch (values, "plugin_instance", 15, 0)))
581                 sstrncpy (list.plugin_instance, SvPV_nolen (*tmp),
582                                 sizeof (list.plugin_instance));
583
584         if (NULL != (tmp = hv_fetch (values, "type_instance", 13, 0)))
585                 sstrncpy (list.type_instance, SvPV_nolen (*tmp),
586                                 sizeof (list.type_instance));
587
588         ret = plugin_dispatch_values (&list);
589
590         sfree (val);
591         return ret;
592 } /* static int pplugin_dispatch_values (char *, HV *) */
593
594 /*
595  * Dispatch a notification.
596  *
597  * notification:
598  * {
599  *   severity => $severity,
600  *   time     => $time,
601  *   message  => $msg,
602  *   host     => $host,
603  *   plugin   => $plugin,
604  *   type     => $type,
605  *   plugin_instance => $instance,
606  *   type_instance   => $type_instance
607  * }
608  */
609 static int pplugin_dispatch_notification (pTHX_ HV *notif)
610 {
611         notification_t n;
612
613         SV **tmp = NULL;
614
615         if (NULL == notif)
616                 return -1;
617
618         memset (&n, 0, sizeof (n));
619
620         if (NULL != (tmp = hv_fetch (notif, "severity", 8, 0)))
621                 n.severity = SvIV (*tmp);
622         else
623                 n.severity = NOTIF_FAILURE;
624
625         if (NULL != (tmp = hv_fetch (notif, "time", 4, 0)))
626                 n.time = (time_t)SvIV (*tmp);
627         else
628                 n.time = time (NULL);
629
630         if (NULL != (tmp = hv_fetch (notif, "message", 7, 0)))
631                 sstrncpy (n.message, SvPV_nolen (*tmp), sizeof (n.message));
632
633         if (NULL != (tmp = hv_fetch (notif, "host", 4, 0)))
634                 sstrncpy (n.host, SvPV_nolen (*tmp), sizeof (n.host));
635         else
636                 sstrncpy (n.host, hostname_g, sizeof (n.host));
637
638         if (NULL != (tmp = hv_fetch (notif, "plugin", 6, 0)))
639                 sstrncpy (n.plugin, SvPV_nolen (*tmp), sizeof (n.plugin));
640
641         if (NULL != (tmp = hv_fetch (notif, "plugin_instance", 15, 0)))
642                 sstrncpy (n.plugin_instance, SvPV_nolen (*tmp),
643                                 sizeof (n.plugin_instance));
644
645         if (NULL != (tmp = hv_fetch (notif, "type", 4, 0)))
646                 sstrncpy (n.type, SvPV_nolen (*tmp), sizeof (n.type));
647
648         if (NULL != (tmp = hv_fetch (notif, "type_instance", 13, 0)))
649                 sstrncpy (n.type_instance, SvPV_nolen (*tmp), sizeof (n.type_instance));
650         return plugin_dispatch_notification (&n);
651 } /* static int pplugin_dispatch_notification (HV *) */
652
653 /*
654  * Call all working functions of the given type.
655  */
656 static int pplugin_call_all (pTHX_ int type, ...)
657 {
658         int retvals = 0;
659
660         va_list ap;
661         int ret = 0;
662
663         dSP;
664
665         if ((type < 0) || (type >= PLUGIN_TYPES))
666                 return -1;
667
668         va_start (ap, type);
669
670         ENTER;
671         SAVETMPS;
672
673         PUSHMARK (SP);
674
675         XPUSHs (sv_2mortal (newSViv ((IV)type)));
676
677         if (PLUGIN_WRITE == type) {
678                 /*
679                  * $_[0] = $plugin_type;
680                  *
681                  * $_[1] =
682                  * [
683                  *   {
684                  *     name => $ds_name,
685                  *     type => $ds_type,
686                  *     min  => $ds_min,
687                  *     max  => $ds_max
688                  *   },
689                  *   ...
690                  * ];
691                  *
692                  * $_[2] =
693                  * {
694                  *   values => [ $v1, ... ],
695                  *   time   => $time,
696                  *   host   => $hostname,
697                  *   plugin => $plugin,
698                  *   type   => $type,
699                  *   plugin_instance => $instance,
700                  *   type_instance   => $type_instance
701                  * };
702                  */
703                 data_set_t   *ds;
704                 value_list_t *vl;
705
706                 AV *pds = newAV ();
707                 HV *pvl = newHV ();
708
709                 ds = va_arg (ap, data_set_t *);
710                 vl = va_arg (ap, value_list_t *);
711
712                 if (-1 == data_set2av (aTHX_ ds, pds)) {
713                         av_clear (pds);
714                         av_undef (pds);
715                         pds = Nullav;
716                         ret = -1;
717                 }
718
719                 if (-1 == value_list2hv (aTHX_ vl, ds, pvl)) {
720                         hv_clear (pvl);
721                         hv_undef (pvl);
722                         pvl = Nullhv;
723                         ret = -1;
724                 }
725
726                 XPUSHs (sv_2mortal (newSVpv (ds->type, 0)));
727                 XPUSHs (sv_2mortal (newRV_noinc ((SV *)pds)));
728                 XPUSHs (sv_2mortal (newRV_noinc ((SV *)pvl)));
729         }
730         else if (PLUGIN_LOG == type) {
731                 /*
732                  * $_[0] = $level;
733                  *
734                  * $_[1] = $message;
735                  */
736                 XPUSHs (sv_2mortal (newSViv (va_arg (ap, int))));
737                 XPUSHs (sv_2mortal (newSVpv (va_arg (ap, char *), 0)));
738         }
739         else if (PLUGIN_NOTIF == type) {
740                 /*
741                  * $_[0] =
742                  * {
743                  *   severity => $severity,
744                  *   time     => $time,
745                  *   message  => $msg,
746                  *   host     => $host,
747                  *   plugin   => $plugin,
748                  *   type     => $type,
749                  *   plugin_instance => $instance,
750                  *   type_instance   => $type_instance
751                  * };
752                  */
753                 notification_t *n;
754                 HV *notif = newHV ();
755
756                 n = va_arg (ap, notification_t *);
757
758                 if (-1 == notification2hv (aTHX_ n, notif)) {
759                         hv_clear (notif);
760                         hv_undef (notif);
761                         notif = Nullhv;
762                         ret = -1;
763                 }
764
765                 XPUSHs (sv_2mortal (newRV_noinc ((SV *)notif)));
766         }
767         else if (PLUGIN_FLUSH == type) {
768                 /*
769                  * $_[0] = $timeout;
770                  * $_[1] = $identifier;
771                  */
772                 XPUSHs (sv_2mortal (newSViv (va_arg (ap, int))));
773                 XPUSHs (sv_2mortal (newSVpv (va_arg (ap, char *), 0)));
774         }
775
776         PUTBACK;
777
778         retvals = call_pv ("Collectd::plugin_call_all", G_SCALAR);
779
780         SPAGAIN;
781         if (0 < retvals) {
782                 SV *tmp = POPs;
783                 if (! SvTRUE (tmp))
784                         ret = -1;
785         }
786
787         PUTBACK;
788         FREETMPS;
789         LEAVE;
790
791         va_end (ap);
792         return ret;
793 } /* static int pplugin_call_all (int, ...) */
794
795 /*
796  * Exported Perl API.
797  */
798
799 /*
800  * Collectd::plugin_register_data_set (type, dataset).
801  *
802  * type:
803  *   type of the dataset
804  *
805  * dataset:
806  *   dataset to be registered
807  */
808 static XS (Collectd_plugin_register_ds)
809 {
810         SV  *data = NULL;
811         int ret   = 0;
812
813         dXSARGS;
814
815         if (2 != items) {
816                 log_err ("Usage: Collectd::plugin_register_data_set(type, dataset)");
817                 XSRETURN_EMPTY;
818         }
819
820         log_debug ("Collectd::plugin_register_data_set: "
821                         "type = \"%s\", dataset = \"%s\"",
822                         SvPV_nolen (ST (0)), SvPV_nolen (ST (1)));
823
824         data = ST (1);
825
826         if (SvROK (data) && (SVt_PVAV == SvTYPE (SvRV (data)))) {
827                 ret = pplugin_register_data_set (aTHX_ SvPV_nolen (ST (0)),
828                                 (AV *)SvRV (data));
829         }
830         else {
831                 log_err ("Collectd::plugin_register_data_set: Invalid data.");
832                 XSRETURN_EMPTY;
833         }
834
835         if (0 == ret)
836                 XSRETURN_YES;
837         else
838                 XSRETURN_EMPTY;
839 } /* static XS (Collectd_plugin_register_ds) */
840
841 /*
842  * Collectd::plugin_unregister_data_set (type).
843  *
844  * type:
845  *   type of the dataset
846  */
847 static XS (Collectd_plugin_unregister_ds)
848 {
849         dXSARGS;
850
851         if (1 != items) {
852                 log_err ("Usage: Collectd::plugin_unregister_data_set(type)");
853                 XSRETURN_EMPTY;
854         }
855
856         log_debug ("Collectd::plugin_unregister_data_set: type = \"%s\"",
857                         SvPV_nolen (ST (0)));
858
859         if (0 == pplugin_unregister_data_set (SvPV_nolen (ST (0))))
860                 XSRETURN_YES;
861         else
862                 XSRETURN_EMPTY;
863 } /* static XS (Collectd_plugin_register_ds) */
864
865 /*
866  * Collectd::plugin_dispatch_values (name, values).
867  *
868  * name:
869  *   name of the plugin
870  *
871  * values:
872  *   value list to submit
873  */
874 static XS (Collectd_plugin_dispatch_values)
875 {
876         SV *values     = NULL;
877         int values_idx = 0;
878
879         int ret = 0;
880
881         dXSARGS;
882
883         if (2 == items) {
884                 log_warn ("Collectd::plugin_dispatch_values with two arguments "
885                                 "is deprecated - pass the type through values->{type}.");
886                 values_idx = 1;
887         }
888         else if (1 != items) {
889                 log_err ("Usage: Collectd::plugin_dispatch_values(values)");
890                 XSRETURN_EMPTY;
891         }
892
893         log_debug ("Collectd::plugin_dispatch_values: values=\"%s\"",
894                         SvPV_nolen (ST (values_idx)));
895
896         values = ST (values_idx);
897
898         if (! (SvROK (values) && (SVt_PVHV == SvTYPE (SvRV (values))))) {
899                 log_err ("Collectd::plugin_dispatch_values: Invalid values.");
900                 XSRETURN_EMPTY;
901         }
902
903         if (((2 == items) && (NULL == ST (0))) || (NULL == values))
904                 XSRETURN_EMPTY;
905
906         if ((2 == items) && (NULL == hv_store ((HV *)SvRV (values), "type", 4,
907                         newSVsv (ST (0)), 0))) {
908                 log_err ("Collectd::plugin_dispatch_values: Could not store type.");
909                 XSRETURN_EMPTY;
910         }
911
912         ret = pplugin_dispatch_values (aTHX_ (HV *)SvRV (values));
913
914         if (0 == ret)
915                 XSRETURN_YES;
916         else
917                 XSRETURN_EMPTY;
918 } /* static XS (Collectd_plugin_dispatch_values) */
919
920 /*
921  * Collectd::_plugin_flush (plugin, timeout, identifier).
922  *
923  * plugin:
924  *   name of the plugin to flush
925  *
926  * timeout:
927  *   timeout to use when flushing the data
928  *
929  * identifier:
930  *   data-set identifier to flush
931  */
932 static XS (Collectd__plugin_flush)
933 {
934         char *plugin  = NULL;
935         int   timeout = -1;
936         char *id      = NULL;
937
938         dXSARGS;
939
940         if (3 != items) {
941                 log_err ("Usage: Collectd::_plugin_flush(plugin, timeout, id)");
942                 XSRETURN_EMPTY;
943         }
944
945         if (SvOK (ST (0)))
946                 plugin = SvPV_nolen (ST (0));
947
948         if (SvOK (ST (1)))
949                 timeout = (int)SvIV (ST (1));
950
951         if (SvOK (ST (2)))
952                 id = SvPV_nolen (ST (2));
953
954         log_debug ("Collectd::_plugin_flush: plugin = \"%s\", timeout = %i, "
955                         "id = \"%s\"", plugin, timeout, id);
956
957         if (0 == plugin_flush (plugin, timeout, id))
958                 XSRETURN_YES;
959         else
960                 XSRETURN_EMPTY;
961 } /* static XS (Collectd__plugin_flush) */
962
963 /*
964  * Collectd::plugin_dispatch_notification (notif).
965  *
966  * notif:
967  *   notification to dispatch
968  */
969 static XS (Collectd_plugin_dispatch_notification)
970 {
971         SV *notif = NULL;
972
973         int ret = 0;
974
975         dXSARGS;
976
977         if (1 != items) {
978                 log_err ("Usage: Collectd::plugin_dispatch_notification(notif)");
979                 XSRETURN_EMPTY;
980         }
981
982         log_debug ("Collectd::plugin_dispatch_notification: notif = \"%s\"",
983                         SvPV_nolen (ST (0)));
984
985         notif = ST (0);
986
987         if (! (SvROK (notif) && (SVt_PVHV == SvTYPE (SvRV (notif))))) {
988                 log_err ("Collectd::plugin_dispatch_notification: Invalid notif.");
989                 XSRETURN_EMPTY;
990         }
991
992         ret = pplugin_dispatch_notification (aTHX_ (HV *)SvRV (notif));
993
994         if (0 == ret)
995                 XSRETURN_YES;
996         else
997                 XSRETURN_EMPTY;
998 } /* static XS (Collectd_plugin_dispatch_notification) */
999
1000 /*
1001  * Collectd::plugin_log (level, message).
1002  *
1003  * level:
1004  *   log level (LOG_DEBUG, ... LOG_ERR)
1005  *
1006  * message:
1007  *   log message
1008  */
1009 static XS (Collectd_plugin_log)
1010 {
1011         dXSARGS;
1012
1013         if (2 != items) {
1014                 log_err ("Usage: Collectd::plugin_log(level, message)");
1015                 XSRETURN_EMPTY;
1016         }
1017
1018         plugin_log (SvIV (ST (0)), SvPV_nolen (ST (1)));
1019         XSRETURN_YES;
1020 } /* static XS (Collectd_plugin_log) */
1021
1022 /*
1023  * Collectd::call_by_name (...).
1024  *
1025  * Call a Perl sub identified by its name passed through $Collectd::cb_name.
1026  */
1027 static XS (Collectd_call_by_name)
1028 {
1029         SV   *tmp  = NULL;
1030         char *name = NULL;
1031
1032         if (NULL == (tmp = get_sv ("Collectd::cb_name", 0))) {
1033                 sv_setpv (get_sv ("@", 1), "cb_name has not been set");
1034                 CLEAR_STACK_FRAME;
1035                 return;
1036         }
1037
1038         name = SvPV_nolen (tmp);
1039
1040         if (NULL == get_cv (name, 0)) {
1041                 sv_setpvf (get_sv ("@", 1), "unknown callback \"%s\"", name);
1042                 CLEAR_STACK_FRAME;
1043                 return;
1044         }
1045
1046         /* simply pass on the subroutine call without touching the stack,
1047          * thus leaving any arguments and return values in place */
1048         call_pv (name, 0);
1049 } /* static XS (Collectd_call_by_name) */
1050
1051 /*
1052  * collectd's perl interpreter based thread implementation.
1053  *
1054  * This has been inspired by Perl's ithreads introduced in version 5.6.0.
1055  */
1056
1057 /* must be called with perl_threads->mutex locked */
1058 static void c_ithread_destroy (c_ithread_t *ithread)
1059 {
1060         dTHXa (ithread->interp);
1061
1062         assert (NULL != perl_threads);
1063
1064         PERL_SET_CONTEXT (aTHX);
1065         log_debug ("Shutting down Perl interpreter %p...", aTHX);
1066
1067 #if COLLECT_DEBUG
1068         sv_report_used ();
1069
1070         --perl_threads->number_of_threads;
1071 #endif /* COLLECT_DEBUG */
1072
1073         perl_destruct (aTHX);
1074         perl_free (aTHX);
1075
1076         if (NULL == ithread->prev)
1077                 perl_threads->head = ithread->next;
1078         else
1079                 ithread->prev->next = ithread->next;
1080
1081         if (NULL == ithread->next)
1082                 perl_threads->tail = ithread->prev;
1083         else
1084                 ithread->next->prev = ithread->prev;
1085
1086         sfree (ithread);
1087         return;
1088 } /* static void c_ithread_destroy (c_ithread_t *) */
1089
1090 static void c_ithread_destructor (void *arg)
1091 {
1092         c_ithread_t *ithread = (c_ithread_t *)arg;
1093         c_ithread_t *t = NULL;
1094
1095         if (NULL == perl_threads)
1096                 return;
1097
1098         pthread_mutex_lock (&perl_threads->mutex);
1099
1100         for (t = perl_threads->head; NULL != t; t = t->next)
1101                 if (t == ithread)
1102                         break;
1103
1104         /* the ithread no longer exists */
1105         if (NULL == t)
1106                 return;
1107
1108         c_ithread_destroy (ithread);
1109
1110         pthread_mutex_unlock (&perl_threads->mutex);
1111         return;
1112 } /* static void c_ithread_destructor (void *) */
1113
1114 /* must be called with perl_threads->mutex locked */
1115 static c_ithread_t *c_ithread_create (PerlInterpreter *base)
1116 {
1117         c_ithread_t *t = NULL;
1118         dTHXa (NULL);
1119
1120         assert (NULL != perl_threads);
1121
1122         t = (c_ithread_t *)smalloc (sizeof (c_ithread_t));
1123         memset (t, 0, sizeof (c_ithread_t));
1124
1125         t->interp = (NULL == base)
1126                 ? NULL
1127                 : perl_clone (base, CLONEf_KEEP_PTR_TABLE);
1128
1129         aTHX = t->interp;
1130
1131         if ((NULL != base) && (NULL != PL_endav)) {
1132                 av_clear (PL_endav);
1133                 av_undef (PL_endav);
1134                 PL_endav = Nullav;
1135         }
1136
1137 #if COLLECT_DEBUG
1138         ++perl_threads->number_of_threads;
1139 #endif /* COLLECT_DEBUG */
1140
1141         t->next = NULL;
1142
1143         if (NULL == perl_threads->tail) {
1144                 perl_threads->head = t;
1145                 t->prev = NULL;
1146         }
1147         else {
1148                 perl_threads->tail->next = t;
1149                 t->prev = perl_threads->tail;
1150         }
1151
1152         perl_threads->tail = t;
1153
1154         pthread_setspecific (perl_thr_key, (const void *)t);
1155         return t;
1156 } /* static c_ithread_t *c_ithread_create (PerlInterpreter *) */
1157
1158 /*
1159  * Interface to collectd.
1160  */
1161
1162 static int perl_init (void)
1163 {
1164         dTHX;
1165
1166         if (NULL == perl_threads)
1167                 return 0;
1168
1169         if (NULL == aTHX) {
1170                 c_ithread_t *t = NULL;
1171
1172                 pthread_mutex_lock (&perl_threads->mutex);
1173                 t = c_ithread_create (perl_threads->head->interp);
1174                 pthread_mutex_unlock (&perl_threads->mutex);
1175
1176                 aTHX = t->interp;
1177         }
1178
1179         log_debug ("perl_init: c_ithread: interp = %p (active threads: %i)",
1180                         aTHX, perl_threads->number_of_threads);
1181         return pplugin_call_all (aTHX_ PLUGIN_INIT);
1182 } /* static int perl_init (void) */
1183
1184 static int perl_read (void)
1185 {
1186         dTHX;
1187
1188         if (NULL == perl_threads)
1189                 return 0;
1190
1191         if (NULL == aTHX) {
1192                 c_ithread_t *t = NULL;
1193
1194                 pthread_mutex_lock (&perl_threads->mutex);
1195                 t = c_ithread_create (perl_threads->head->interp);
1196                 pthread_mutex_unlock (&perl_threads->mutex);
1197
1198                 aTHX = t->interp;
1199         }
1200
1201         log_debug ("perl_read: c_ithread: interp = %p (active threads: %i)",
1202                         aTHX, perl_threads->number_of_threads);
1203         return pplugin_call_all (aTHX_ PLUGIN_READ);
1204 } /* static int perl_read (void) */
1205
1206 static int perl_write (const data_set_t *ds, const value_list_t *vl)
1207 {
1208         dTHX;
1209
1210         if (NULL == perl_threads)
1211                 return 0;
1212
1213         if (NULL == aTHX) {
1214                 c_ithread_t *t = NULL;
1215
1216                 pthread_mutex_lock (&perl_threads->mutex);
1217                 t = c_ithread_create (perl_threads->head->interp);
1218                 pthread_mutex_unlock (&perl_threads->mutex);
1219
1220                 aTHX = t->interp;
1221         }
1222
1223         log_debug ("perl_write: c_ithread: interp = %p (active threads: %i)",
1224                         aTHX, perl_threads->number_of_threads);
1225         return pplugin_call_all (aTHX_ PLUGIN_WRITE, ds, vl);
1226 } /* static int perl_write (const data_set_t *, const value_list_t *) */
1227
1228 static void perl_log (int level, const char *msg)
1229 {
1230         dTHX;
1231
1232         if (NULL == perl_threads)
1233                 return;
1234
1235         if (NULL == aTHX) {
1236                 c_ithread_t *t = NULL;
1237
1238                 pthread_mutex_lock (&perl_threads->mutex);
1239                 t = c_ithread_create (perl_threads->head->interp);
1240                 pthread_mutex_unlock (&perl_threads->mutex);
1241
1242                 aTHX = t->interp;
1243         }
1244
1245         pplugin_call_all (aTHX_ PLUGIN_LOG, level, msg);
1246         return;
1247 } /* static void perl_log (int, const char *) */
1248
1249 static int perl_notify (const notification_t *notif)
1250 {
1251         dTHX;
1252
1253         if (NULL == perl_threads)
1254                 return 0;
1255
1256         if (NULL == aTHX) {
1257                 c_ithread_t *t = NULL;
1258
1259                 pthread_mutex_lock (&perl_threads->mutex);
1260                 t = c_ithread_create (perl_threads->head->interp);
1261                 pthread_mutex_unlock (&perl_threads->mutex);
1262
1263                 aTHX = t->interp;
1264         }
1265         return pplugin_call_all (aTHX_ PLUGIN_NOTIF, notif);
1266 } /* static int perl_notify (const notification_t *) */
1267
1268 static int perl_flush (int timeout, const char *identifier)
1269 {
1270         dTHX;
1271
1272         if (NULL == perl_threads)
1273                 return 0;
1274
1275         if (NULL == aTHX) {
1276                 c_ithread_t *t = NULL;
1277
1278                 pthread_mutex_lock (&perl_threads->mutex);
1279                 t = c_ithread_create (perl_threads->head->interp);
1280                 pthread_mutex_unlock (&perl_threads->mutex);
1281
1282                 aTHX = t->interp;
1283         }
1284         return pplugin_call_all (aTHX_ PLUGIN_FLUSH, timeout, identifier);
1285 } /* static int perl_flush (const int) */
1286
1287 static int perl_shutdown (void)
1288 {
1289         c_ithread_t *t = NULL;
1290
1291         int ret = 0;
1292
1293         dTHX;
1294
1295         plugin_unregister_complex_config ("perl");
1296
1297         if (NULL == perl_threads)
1298                 return 0;
1299
1300         if (NULL == aTHX) {
1301                 c_ithread_t *t = NULL;
1302
1303                 pthread_mutex_lock (&perl_threads->mutex);
1304                 t = c_ithread_create (perl_threads->head->interp);
1305                 pthread_mutex_unlock (&perl_threads->mutex);
1306
1307                 aTHX = t->interp;
1308         }
1309
1310         log_debug ("perl_shutdown: c_ithread: interp = %p (active threads: %i)",
1311                         aTHX, perl_threads->number_of_threads);
1312
1313         plugin_unregister_log ("perl");
1314         plugin_unregister_notification ("perl");
1315         plugin_unregister_init ("perl");
1316         plugin_unregister_read ("perl");
1317         plugin_unregister_write ("perl");
1318         plugin_unregister_flush ("perl");
1319
1320         ret = pplugin_call_all (aTHX_ PLUGIN_SHUTDOWN);
1321
1322         pthread_mutex_lock (&perl_threads->mutex);
1323         t = perl_threads->tail;
1324
1325         while (NULL != t) {
1326                 c_ithread_t *thr = t;
1327
1328                 /* the pointer has to be advanced before destroying
1329                  * the thread as this will free the memory */
1330                 t = t->prev;
1331
1332                 c_ithread_destroy (thr);
1333         }
1334
1335         pthread_mutex_unlock (&perl_threads->mutex);
1336         pthread_mutex_destroy (&perl_threads->mutex);
1337
1338         sfree (perl_threads);
1339
1340         pthread_key_delete (perl_thr_key);
1341
1342         PERL_SYS_TERM ();
1343
1344         plugin_unregister_shutdown ("perl");
1345         return ret;
1346 } /* static void perl_shutdown (void) */
1347
1348 /*
1349  * Access functions for global variables.
1350  *
1351  * These functions implement the "magic" used to access
1352  * the global variables from Perl.
1353  */
1354
1355 static int g_pv_get (pTHX_ SV *var, MAGIC *mg)
1356 {
1357         char *pv = mg->mg_ptr;
1358         sv_setpv (var, pv);
1359         return 0;
1360 } /* static int g_pv_get (pTHX_ SV *, MAGIC *) */
1361
1362 static int g_pv_set (pTHX_ SV *var, MAGIC *mg)
1363 {
1364         char *pv = mg->mg_ptr;
1365         sstrncpy (pv, SvPV_nolen (var), DATA_MAX_NAME_LEN);
1366         return 0;
1367 } /* static int g_pv_set (pTHX_ SV *, MAGIC *) */
1368
1369 static int g_iv_get (pTHX_ SV *var, MAGIC *mg)
1370 {
1371         int *iv = (int *)mg->mg_ptr;
1372         sv_setiv (var, *iv);
1373         return 0;
1374 } /* static int g_iv_get (pTHX_ SV *, MAGIC *) */
1375
1376 static int g_iv_set (pTHX_ SV *var, MAGIC *mg)
1377 {
1378         int *iv = (int *)mg->mg_ptr;
1379         *iv = (int)SvIV (var);
1380         return 0;
1381 } /* static int g_iv_set (pTHX_ SV *, MAGIC *) */
1382
1383 static MGVTBL g_pv_vtbl = { g_pv_get, g_pv_set, NULL, NULL, NULL, NULL, NULL };
1384 static MGVTBL g_iv_vtbl = { g_iv_get, g_iv_set, NULL, NULL, NULL, NULL, NULL };
1385
1386 /* bootstrap the Collectd module */
1387 static void xs_init (pTHX)
1388 {
1389         HV   *stash = NULL;
1390         SV   *tmp   = NULL;
1391         char *file  = __FILE__;
1392
1393         int i = 0;
1394
1395         dXSUB_SYS;
1396
1397         /* enable usage of Perl modules using shared libraries */
1398         newXS ("DynaLoader::boot_DynaLoader", boot_DynaLoader, file);
1399
1400         /* register API */
1401         for (i = 0; NULL != api[i].f; ++i)
1402                 newXS (api[i].name, api[i].f, file);
1403
1404         stash = gv_stashpv ("Collectd", 1);
1405
1406         /* export "constants" */
1407         for (i = 0; '\0' != constants[i].name[0]; ++i)
1408                 newCONSTSUB (stash, constants[i].name, newSViv (constants[i].value));
1409
1410         /* export global variables
1411          * by adding "magic" to the SV's representing the globale variables
1412          * perl is able to automagically call the get/set function when
1413          * accessing any such variable (this is basically the same as using
1414          * tie() in Perl) */
1415         /* global strings */
1416         for (i = 0; '\0' != g_strings[i].name[0]; ++i) {
1417                 tmp = get_sv (g_strings[i].name, 1);
1418                 sv_magicext (tmp, NULL, PERL_MAGIC_ext, &g_pv_vtbl,
1419                                 g_strings[i].var, 0);
1420         }
1421
1422         /* global integers */
1423         for (i = 0; '\0' != g_integers[i].name[0]; ++i) {
1424                 tmp = get_sv (g_integers[i].name, 1);
1425                 sv_magicext (tmp, NULL, PERL_MAGIC_ext, &g_iv_vtbl,
1426                                 (char *)g_integers[i].var, 0);
1427         }
1428         return;
1429 } /* static void xs_init (pTHX) */
1430
1431 /* Initialize the global Perl interpreter. */
1432 static int init_pi (int argc, char **argv)
1433 {
1434         dTHXa (NULL);
1435
1436         if (NULL != perl_threads)
1437                 return 0;
1438
1439         log_info ("Initializing Perl interpreter...");
1440 #if COLLECT_DEBUG
1441         {
1442                 int i = 0;
1443
1444                 for (i = 0; i < argc; ++i)
1445                         log_debug ("argv[%i] = \"%s\"", i, argv[i]);
1446         }
1447 #endif /* COLLECT_DEBUG */
1448
1449         if (0 != pthread_key_create (&perl_thr_key, c_ithread_destructor)) {
1450                 log_err ("init_pi: pthread_key_create failed");
1451
1452                 /* this must not happen - cowardly giving up if it does */
1453                 return -1;
1454         }
1455
1456 #ifdef __FreeBSD__
1457         /* On FreeBSD, PERL_SYS_INIT3 expands to some expression which
1458          * triggers a "value computed is not used" warning by gcc. */
1459         (void)
1460 #endif
1461         PERL_SYS_INIT3 (&argc, &argv, &environ);
1462
1463         perl_threads = (c_ithread_list_t *)smalloc (sizeof (c_ithread_list_t));
1464         memset (perl_threads, 0, sizeof (c_ithread_list_t));
1465
1466         pthread_mutex_init (&perl_threads->mutex, NULL);
1467         /* locking the mutex should not be necessary at this point
1468          * but let's just do it for the sake of completeness */
1469         pthread_mutex_lock (&perl_threads->mutex);
1470
1471         perl_threads->head = c_ithread_create (NULL);
1472         perl_threads->tail = perl_threads->head;
1473
1474         if (NULL == (perl_threads->head->interp = perl_alloc ())) {
1475                 log_err ("init_pi: Not enough memory.");
1476                 exit (3);
1477         }
1478
1479         aTHX = perl_threads->head->interp;
1480         pthread_mutex_unlock (&perl_threads->mutex);
1481
1482         perl_construct (aTHX);
1483
1484         PL_exit_flags |= PERL_EXIT_DESTRUCT_END;
1485
1486         if (0 != perl_parse (aTHX_ xs_init, argc, argv, NULL)) {
1487                 log_err ("init_pi: Unable to bootstrap Collectd.");
1488
1489                 perl_destruct (perl_threads->head->interp);
1490                 perl_free (perl_threads->head->interp);
1491                 sfree (perl_threads);
1492
1493                 pthread_key_delete (perl_thr_key);
1494                 return -1;
1495         }
1496
1497         /* Set $0 to "collectd" because perl_parse() has to set it to "-e". */
1498         sv_setpv (get_sv ("0", 0), "collectd");
1499
1500         perl_run (aTHX);
1501
1502         plugin_register_log ("perl", perl_log);
1503         plugin_register_notification ("perl", perl_notify);
1504         plugin_register_init ("perl", perl_init);
1505
1506         plugin_register_read ("perl", perl_read);
1507
1508         plugin_register_write ("perl", perl_write);
1509         plugin_register_flush ("perl", perl_flush);
1510         plugin_register_shutdown ("perl", perl_shutdown);
1511         return 0;
1512 } /* static int init_pi (const char **, const int) */
1513
1514 /*
1515  * LoadPlugin "<Plugin>"
1516  */
1517 static int perl_config_loadplugin (pTHX_ oconfig_item_t *ci)
1518 {
1519         char module_name[DATA_MAX_NAME_LEN];
1520
1521         char *value = NULL;
1522
1523         if ((0 != ci->children_num) || (1 != ci->values_num)
1524                         || (OCONFIG_TYPE_STRING != ci->values[0].type)) {
1525                 log_err ("LoadPlugin expects a single string argument.");
1526                 return 1;
1527         }
1528
1529         value = ci->values[0].value.string;
1530
1531         if (NULL == get_module_name (module_name, sizeof (module_name), value)) {
1532                 log_err ("Invalid module name %s", value);
1533                 return (1);
1534         }
1535
1536         if (0 != init_pi (perl_argc, perl_argv))
1537                 return -1;
1538
1539         assert (NULL != perl_threads);
1540         assert (NULL != perl_threads->head);
1541
1542         aTHX = perl_threads->head->interp;
1543
1544         log_debug ("perl_config: loading perl plugin \"%s\"", value);
1545         load_module (PERL_LOADMOD_NOIMPORT,
1546                         newSVpv (module_name, strlen (module_name)), Nullsv);
1547         return 0;
1548 } /* static int perl_config_loadplugin (oconfig_item_it *) */
1549
1550 /*
1551  * BaseName "<Name>"
1552  */
1553 static int perl_config_basename (pTHX_ oconfig_item_t *ci)
1554 {
1555         char *value = NULL;
1556
1557         if ((0 != ci->children_num) || (1 != ci->values_num)
1558                         || (OCONFIG_TYPE_STRING != ci->values[0].type)) {
1559                 log_err ("BaseName expects a single string argument.");
1560                 return 1;
1561         }
1562
1563         value = ci->values[0].value.string;
1564
1565         log_debug ("perl_config: Setting plugin basename to \"%s\"", value);
1566         sstrncpy (base_name, value, sizeof (base_name));
1567         return 0;
1568 } /* static int perl_config_basename (oconfig_item_it *) */
1569
1570 /*
1571  * EnableDebugger "<Package>"|""
1572  */
1573 static int perl_config_enabledebugger (pTHX_ oconfig_item_t *ci)
1574 {
1575         char *value = NULL;
1576
1577         if ((0 != ci->children_num) || (1 != ci->values_num)
1578                         || (OCONFIG_TYPE_STRING != ci->values[0].type)) {
1579                 log_err ("EnableDebugger expects a single string argument.");
1580                 return 1;
1581         }
1582
1583         if (NULL != perl_threads) {
1584                 log_warn ("EnableDebugger has no effects if used after LoadPlugin.");
1585                 return 1;
1586         }
1587
1588         value = ci->values[0].value.string;
1589
1590         perl_argv = (char **)realloc (perl_argv,
1591                         (++perl_argc + 1) * sizeof (char *));
1592
1593         if (NULL == perl_argv) {
1594                 log_err ("perl_config: Not enough memory.");
1595                 exit (3);
1596         }
1597
1598         if ('\0' == value[0]) {
1599                 perl_argv[perl_argc - 1] = "-d";
1600         }
1601         else {
1602                 perl_argv[perl_argc - 1] = (char *)smalloc (strlen (value) + 4);
1603                 sstrncpy (perl_argv[perl_argc - 1], "-d:", 4);
1604                 sstrncpy (perl_argv[perl_argc - 1] + 3, value, strlen (value) + 1);
1605         }
1606
1607         perl_argv[perl_argc] = NULL;
1608         return 0;
1609 } /* static int perl_config_enabledebugger (oconfig_item_it *) */
1610
1611 /*
1612  * IncludeDir "<Dir>"
1613  */
1614 static int perl_config_includedir (pTHX_ oconfig_item_t *ci)
1615 {
1616         char *value = NULL;
1617
1618         if ((0 != ci->children_num) || (1 != ci->values_num)
1619                         || (OCONFIG_TYPE_STRING != ci->values[0].type)) {
1620                 log_err ("IncludeDir expects a single string argument.");
1621                 return 1;
1622         }
1623
1624         value = ci->values[0].value.string;
1625
1626         if (NULL == aTHX) {
1627                 perl_argv = (char **)realloc (perl_argv,
1628                                 (++perl_argc + 1) * sizeof (char *));
1629
1630                 if (NULL == perl_argv) {
1631                         log_err ("perl_config: Not enough memory.");
1632                         exit (3);
1633                 }
1634
1635                 perl_argv[perl_argc - 1] = (char *)smalloc (strlen (value) + 3);
1636                 sstrncpy(perl_argv[perl_argc - 1], "-I", 3);
1637                 sstrncpy(perl_argv[perl_argc - 1] + 2, value, strlen (value) + 1);
1638
1639                 perl_argv[perl_argc] = NULL;
1640         }
1641         else {
1642                 /* prepend the directory to @INC */
1643                 av_unshift (GvAVn (PL_incgv), 1);
1644                 av_store (GvAVn (PL_incgv), 0, newSVpv (value, strlen (value)));
1645         }
1646         return 0;
1647 } /* static int perl_config_includedir (oconfig_item_it *) */
1648
1649 static int perl_config (oconfig_item_t *ci)
1650 {
1651         int i = 0;
1652
1653         dTHX;
1654
1655         /* dTHX does not get any valid values in case Perl
1656          * has not been initialized */
1657         if (NULL == perl_threads)
1658                 aTHX = NULL;
1659
1660         for (i = 0; i < ci->children_num; ++i) {
1661                 oconfig_item_t *c = ci->children + i;
1662
1663                 if (0 == strcasecmp (c->key, "LoadPlugin"))
1664                         perl_config_loadplugin (aTHX_ c);
1665                 else if (0 == strcasecmp (c->key, "BaseName"))
1666                         perl_config_basename (aTHX_ c);
1667                 else if (0 == strcasecmp (c->key, "EnableDebugger"))
1668                         perl_config_enabledebugger (aTHX_ c);
1669                 else if (0 == strcasecmp (c->key, "IncludeDir"))
1670                         perl_config_includedir (aTHX_ c);
1671                 else
1672                         log_warn ("Ignoring unknown config key \"%s\".", c->key);
1673         }
1674         return 0;
1675 } /* static int perl_config (oconfig_item_t *) */
1676
1677 void module_register (void)
1678 {
1679         perl_argc = 4;
1680         perl_argv = (char **)smalloc ((perl_argc + 1) * sizeof (char *));
1681
1682         /* default options for the Perl interpreter */
1683         perl_argv[0] = "";
1684         perl_argv[1] = "-MCollectd";
1685         perl_argv[2] = "-e";
1686         perl_argv[3] = "1";
1687         perl_argv[4] = NULL;
1688
1689         plugin_register_complex_config ("perl", perl_config);
1690         return;
1691 } /* void module_register (void) */
1692
1693 /* vim: set sw=4 ts=4 tw=78 noexpandtab : */
1694