Merge branch 'collectd-4.4' into collectd-4.5
[collectd.git] / src / snmp.c
1 /**
2  * collectd - src/snmp.c
3  * Copyright (C) 2007  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 #include "common.h"
24 #include "plugin.h"
25
26 #include <pthread.h>
27
28 #include <net-snmp/net-snmp-config.h>
29 #include <net-snmp/net-snmp-includes.h>
30
31 /*
32  * Private data structes
33  */
34 struct oid_s
35 {
36   oid oid[MAX_OID_LEN];
37   size_t oid_len;
38 };
39 typedef struct oid_s oid_t;
40
41 union instance_u
42 {
43   char  string[DATA_MAX_NAME_LEN];
44   oid_t oid;
45 };
46 typedef union instance_u instance_t;
47
48 struct data_definition_s
49 {
50   char *name; /* used to reference this from the `Collect' option */
51   char *type; /* used to find the data_set */
52   int is_table;
53   instance_t instance;
54   char *instance_prefix;
55   oid_t *values;
56   int values_len;
57   double scale;
58   double shift;
59   struct data_definition_s *next;
60 };
61 typedef struct data_definition_s data_definition_t;
62
63 struct host_definition_s
64 {
65   char *name;
66   char *address;
67   char *community;
68   int version;
69   void *sess_handle;
70   uint32_t interval;
71   time_t next_update;
72   data_definition_t **data_list;
73   int data_list_len;
74   enum          /******************************************************/
75   {             /* This host..                                        */
76     STATE_IDLE, /* - just sits there until `next_update < interval_g' */
77     STATE_WAIT, /* - waits to be queried.                             */
78     STATE_BUSY  /* - is currently being queried.                      */
79   } state;      /******************************************************/
80   struct host_definition_s *next;
81 };
82 typedef struct host_definition_s host_definition_t;
83
84 /* These two types are used to cache values in `csnmp_read_table' to handle
85  * gaps in tables. */
86 struct csnmp_list_instances_s
87 {
88   oid subid;
89   char instance[DATA_MAX_NAME_LEN];
90   struct csnmp_list_instances_s *next;
91 };
92 typedef struct csnmp_list_instances_s csnmp_list_instances_t;
93
94 struct csnmp_table_values_s
95 {
96   oid subid;
97   value_t value;
98   struct csnmp_table_values_s *next;
99 };
100 typedef struct csnmp_table_values_s csnmp_table_values_t;
101
102 /*
103  * Private variables
104  */
105 static int do_shutdown = 0;
106
107 pthread_t *threads = NULL;
108 int threads_num = 0;
109
110 static data_definition_t *data_head = NULL;
111 static host_definition_t *host_head = NULL;
112
113 static pthread_mutex_t host_lock = PTHREAD_MUTEX_INITIALIZER;
114 static pthread_cond_t  host_cond = PTHREAD_COND_INITIALIZER;
115
116 /*
117  * Private functions
118  */
119 /* First there are many functions which do configuration stuff. It's a big
120  * bloated and messy, I'm afraid. */
121
122 /*
123  * Callgraph for the config stuff:
124  *  csnmp_config
125  *  +-> call_snmp_init_once
126  *  +-> csnmp_config_add_data
127  *  !   +-> csnmp_config_add_data_type
128  *  !   +-> csnmp_config_add_data_table
129  *  !   +-> csnmp_config_add_data_instance
130  *  !   +-> csnmp_config_add_data_instance_prefix
131  *  !   +-> csnmp_config_add_data_values
132  *  +-> csnmp_config_add_host
133  *      +-> csnmp_config_add_host_address
134  *      +-> csnmp_config_add_host_community
135  *      +-> csnmp_config_add_host_version
136  *      +-> csnmp_config_add_host_collect
137  *      +-> csnmp_config_add_host_interval
138  */
139 static void call_snmp_init_once (void)
140 {
141   static int have_init = 0;
142
143   if (have_init == 0)
144     init_snmp (PACKAGE_NAME);
145   have_init = 1;
146 } /* void call_snmp_init_once */
147
148 static int csnmp_config_add_data_type (data_definition_t *dd, oconfig_item_t *ci)
149 {
150   if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING))
151   {
152     WARNING ("snmp plugin: `Type' needs exactly one string argument.");
153     return (-1);
154   }
155
156   sfree (dd->type);
157   dd->type = strdup (ci->values[0].value.string);
158   if (dd->type == NULL)
159     return (-1);
160
161   return (0);
162 } /* int csnmp_config_add_data_type */
163
164 static int csnmp_config_add_data_table (data_definition_t *dd, oconfig_item_t *ci)
165 {
166   if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_BOOLEAN))
167   {
168     WARNING ("snmp plugin: `Table' needs exactly one boolean argument.");
169     return (-1);
170   }
171
172   dd->is_table = ci->values[0].value.boolean ? 1 : 0;
173
174   return (0);
175 } /* int csnmp_config_add_data_table */
176
177 static int csnmp_config_add_data_instance (data_definition_t *dd, oconfig_item_t *ci)
178 {
179   if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING))
180   {
181     WARNING ("snmp plugin: `Instance' needs exactly one string argument.");
182     return (-1);
183   }
184
185   if (dd->is_table)
186   {
187     /* Instance is an OID */
188     dd->instance.oid.oid_len = MAX_OID_LEN;
189
190     if (!read_objid (ci->values[0].value.string,
191           dd->instance.oid.oid, &dd->instance.oid.oid_len))
192     {
193       ERROR ("snmp plugin: read_objid (%s) failed.",
194           ci->values[0].value.string);
195       return (-1);
196     }
197   }
198   else
199   {
200     /* Instance is a simple string */
201     sstrncpy (dd->instance.string, ci->values[0].value.string,
202         sizeof (dd->instance.string));
203   }
204
205   return (0);
206 } /* int csnmp_config_add_data_instance */
207
208 static int csnmp_config_add_data_instance_prefix (data_definition_t *dd,
209     oconfig_item_t *ci)
210 {
211   if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING))
212   {
213     WARNING ("snmp plugin: `InstancePrefix' needs exactly one string argument.");
214     return (-1);
215   }
216
217   if (!dd->is_table)
218   {
219     WARNING ("snmp plugin: data %s: InstancePrefix is ignored when `Table' "
220         "is set to `false'.", dd->name);
221     return (-1);
222   }
223
224   sfree (dd->instance_prefix);
225   dd->instance_prefix = strdup (ci->values[0].value.string);
226   if (dd->instance_prefix == NULL)
227     return (-1);
228
229   return (0);
230 } /* int csnmp_config_add_data_instance_prefix */
231
232 static int csnmp_config_add_data_values (data_definition_t *dd, oconfig_item_t *ci)
233 {
234   int i;
235
236   if (ci->values_num < 1)
237   {
238     WARNING ("snmp plugin: `Values' needs at least one argument.");
239     return (-1);
240   }
241
242   for (i = 0; i < ci->values_num; i++)
243     if (ci->values[i].type != OCONFIG_TYPE_STRING)
244     {
245       WARNING ("snmp plugin: `Values' needs only string argument.");
246       return (-1);
247     }
248
249   sfree (dd->values);
250   dd->values_len = 0;
251   dd->values = (oid_t *) malloc (sizeof (oid_t) * ci->values_num);
252   if (dd->values == NULL)
253     return (-1);
254   dd->values_len = ci->values_num;
255
256   for (i = 0; i < ci->values_num; i++)
257   {
258     dd->values[i].oid_len = MAX_OID_LEN;
259
260     if (NULL == snmp_parse_oid (ci->values[i].value.string,
261           dd->values[i].oid, &dd->values[i].oid_len))
262     {
263       ERROR ("snmp plugin: snmp_parse_oid (%s) failed.",
264           ci->values[i].value.string);
265       free (dd->values);
266       dd->values = NULL;
267       dd->values_len = 0;
268       return (-1);
269     }
270   }
271
272   return (0);
273 } /* int csnmp_config_add_data_instance */
274
275 static int csnmp_config_add_data_shift (data_definition_t *dd, oconfig_item_t *ci)
276 {
277   if ((ci->values_num != 1)
278       || (ci->values[0].type != OCONFIG_TYPE_NUMBER))
279   {
280     WARNING ("snmp plugin: The `Scale' config option needs exactly one number argument.");
281     return (-1);
282   }
283
284   dd->shift = ci->values[0].value.number;
285
286   return (0);
287 } /* int csnmp_config_add_data_shift */
288
289 static int csnmp_config_add_data_scale (data_definition_t *dd, oconfig_item_t *ci)
290 {
291   if ((ci->values_num != 1)
292       || (ci->values[0].type != OCONFIG_TYPE_NUMBER))
293   {
294     WARNING ("snmp plugin: The `Scale' config option needs exactly one number argument.");
295     return (-1);
296   }
297
298   dd->scale = ci->values[0].value.number;
299
300   return (0);
301 } /* int csnmp_config_add_data_scale */
302
303 static int csnmp_config_add_data (oconfig_item_t *ci)
304 {
305   data_definition_t *dd;
306   int status = 0;
307   int i;
308
309   if ((ci->values_num != 1)
310       || (ci->values[0].type != OCONFIG_TYPE_STRING))
311   {
312     WARNING ("snmp plugin: The `Data' config option needs exactly one string argument.");
313     return (-1);
314   }
315
316   dd = (data_definition_t *) malloc (sizeof (data_definition_t));
317   if (dd == NULL)
318     return (-1);
319   memset (dd, '\0', sizeof (data_definition_t));
320
321   dd->name = strdup (ci->values[0].value.string);
322   if (dd->name == NULL)
323   {
324     free (dd);
325     return (-1);
326   }
327   dd->scale = 1.0;
328   dd->shift = 0.0;
329
330   for (i = 0; i < ci->children_num; i++)
331   {
332     oconfig_item_t *option = ci->children + i;
333     status = 0;
334
335     if (strcasecmp ("Type", option->key) == 0)
336       status = csnmp_config_add_data_type (dd, option);
337     else if (strcasecmp ("Table", option->key) == 0)
338       status = csnmp_config_add_data_table (dd, option);
339     else if (strcasecmp ("Instance", option->key) == 0)
340       status = csnmp_config_add_data_instance (dd, option);
341     else if (strcasecmp ("InstancePrefix", option->key) == 0)
342       status = csnmp_config_add_data_instance_prefix (dd, option);
343     else if (strcasecmp ("Values", option->key) == 0)
344       status = csnmp_config_add_data_values (dd, option);
345     else if (strcasecmp ("Shift", option->key) == 0)
346       status = csnmp_config_add_data_shift (dd, option);
347     else if (strcasecmp ("Scale", option->key) == 0)
348       status = csnmp_config_add_data_scale (dd, option);
349     else
350     {
351       WARNING ("snmp plugin: Option `%s' not allowed here.", option->key);
352       status = -1;
353     }
354
355     if (status != 0)
356       break;
357   } /* for (ci->children) */
358
359   while (status == 0)
360   {
361     if (dd->type == NULL)
362     {
363       WARNING ("snmp plugin: `Type' not given for data `%s'", dd->name);
364       status = -1;
365       break;
366     }
367     if (dd->values == NULL)
368     {
369       WARNING ("snmp plugin: No `Value' given for data `%s'", dd->name);
370       status = -1;
371       break;
372     }
373
374     break;
375   } /* while (status == 0) */
376
377   if (status != 0)
378   {
379     sfree (dd->name);
380     sfree (dd->instance_prefix);
381     sfree (dd->values);
382     sfree (dd);
383     return (-1);
384   }
385
386   DEBUG ("snmp plugin: dd = { name = %s, type = %s, is_table = %s, values_len = %i }",
387       dd->name, dd->type, (dd->is_table != 0) ? "true" : "false", dd->values_len);
388
389   if (data_head == NULL)
390     data_head = dd;
391   else
392   {
393     data_definition_t *last;
394     last = data_head;
395     while (last->next != NULL)
396       last = last->next;
397     last->next = dd;
398   }
399
400   return (0);
401 } /* int csnmp_config_add_data */
402
403 static int csnmp_config_add_host_address (host_definition_t *hd, oconfig_item_t *ci)
404 {
405   if ((ci->values_num != 1)
406       || (ci->values[0].type != OCONFIG_TYPE_STRING))
407   {
408     WARNING ("snmp plugin: The `Address' config option needs exactly one string argument.");
409     return (-1);
410   }
411
412   if (hd->address == NULL)
413     free (hd->address);
414
415   hd->address = strdup (ci->values[0].value.string);
416   if (hd->address == NULL)
417     return (-1);
418
419   DEBUG ("snmp plugin: host = %s; host->address = %s;",
420       hd->name, hd->address);
421
422   return (0);
423 } /* int csnmp_config_add_host_address */
424
425 static int csnmp_config_add_host_community (host_definition_t *hd, oconfig_item_t *ci)
426 {
427   if ((ci->values_num != 1)
428       || (ci->values[0].type != OCONFIG_TYPE_STRING))
429   {
430     WARNING ("snmp plugin: The `Community' config option needs exactly one string argument.");
431     return (-1);
432   }
433
434   if (hd->community == NULL)
435     free (hd->community);
436
437   hd->community = strdup (ci->values[0].value.string);
438   if (hd->community == NULL)
439     return (-1);
440
441   DEBUG ("snmp plugin: host = %s; host->community = %s;",
442       hd->name, hd->community);
443
444   return (0);
445 } /* int csnmp_config_add_host_community */
446
447 static int csnmp_config_add_host_version (host_definition_t *hd, oconfig_item_t *ci)
448 {
449   int version;
450
451   if ((ci->values_num != 1)
452       || (ci->values[0].type != OCONFIG_TYPE_NUMBER))
453   {
454     WARNING ("snmp plugin: The `Version' config option needs exactly one number argument.");
455     return (-1);
456   }
457
458   version = (int) ci->values[0].value.number;
459   if ((version != 1) && (version != 2))
460   {
461     WARNING ("snmp plugin: `Version' must either be `1' or `2'.");
462     return (-1);
463   }
464
465   hd->version = version;
466
467   return (0);
468 } /* int csnmp_config_add_host_address */
469
470 static int csnmp_config_add_host_collect (host_definition_t *host,
471     oconfig_item_t *ci)
472 {
473   data_definition_t *data;
474   data_definition_t **data_list;
475   int data_list_len;
476   int i;
477
478   if (ci->values_num < 1)
479   {
480     WARNING ("snmp plugin: `Collect' needs at least one argument.");
481     return (-1);
482   }
483
484   for (i = 0; i < ci->values_num; i++)
485     if (ci->values[i].type != OCONFIG_TYPE_STRING)
486     {
487       WARNING ("snmp plugin: All arguments to `Collect' must be strings.");
488       return (-1);
489     }
490
491   data_list_len = host->data_list_len + ci->values_num;
492   data_list = (data_definition_t **) realloc (host->data_list,
493       sizeof (data_definition_t *) * data_list_len);
494   if (data_list == NULL)
495     return (-1);
496   host->data_list = data_list;
497
498   for (i = 0; i < ci->values_num; i++)
499   {
500     for (data = data_head; data != NULL; data = data->next)
501       if (strcasecmp (ci->values[i].value.string, data->name) == 0)
502         break;
503
504     if (data == NULL)
505     {
506       WARNING ("snmp plugin: No such data configured: `%s'",
507           ci->values[i].value.string);
508       continue;
509     }
510
511     DEBUG ("snmp plugin: Collect: host = %s, data[%i] = %s;",
512         host->name, host->data_list_len, data->name);
513
514     host->data_list[host->data_list_len] = data;
515     host->data_list_len++;
516   } /* for (values_num) */
517
518   return (0);
519 } /* int csnmp_config_add_host_collect */
520
521 static int csnmp_config_add_host_interval (host_definition_t *hd, oconfig_item_t *ci)
522 {
523   if ((ci->values_num != 1)
524       || (ci->values[0].type != OCONFIG_TYPE_NUMBER))
525   {
526     WARNING ("snmp plugin: The `Interval' config option needs exactly one number argument.");
527     return (-1);
528   }
529
530   hd->interval = (int) ci->values[0].value.number;
531   if (hd->interval < 0)
532     hd->interval = 0;
533
534   return (0);
535 } /* int csnmp_config_add_host_interval */
536
537 static int csnmp_config_add_host (oconfig_item_t *ci)
538 {
539   host_definition_t *hd;
540   int status = 0;
541   int i;
542
543   if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING))
544   {
545     WARNING ("snmp plugin: `Host' needs exactly one string argument.");
546     return (-1);
547   }
548
549   hd = (host_definition_t *) malloc (sizeof (host_definition_t));
550   if (hd == NULL)
551     return (-1);
552   memset (hd, '\0', sizeof (host_definition_t));
553   hd->version = 2;
554
555   hd->name = strdup (ci->values[0].value.string);
556   if (hd->name == NULL)
557   {
558     free (hd);
559     return (-1);
560   }
561
562   hd->sess_handle = NULL;
563   hd->interval = 0;
564   hd->next_update = 0;
565   hd->state = STATE_IDLE;
566
567   for (i = 0; i < ci->children_num; i++)
568   {
569     oconfig_item_t *option = ci->children + i;
570     status = 0;
571
572     if (strcasecmp ("Address", option->key) == 0)
573       status = csnmp_config_add_host_address (hd, option);
574     else if (strcasecmp ("Community", option->key) == 0)
575       status = csnmp_config_add_host_community (hd, option);
576     else if (strcasecmp ("Version", option->key) == 0)
577       status = csnmp_config_add_host_version (hd, option);
578     else if (strcasecmp ("Collect", option->key) == 0)
579       csnmp_config_add_host_collect (hd, option);
580     else if (strcasecmp ("Interval", option->key) == 0)
581       csnmp_config_add_host_interval (hd, option);
582     else
583     {
584       WARNING ("snmp plugin: csnmp_config_add_host: Option `%s' not allowed here.", option->key);
585       status = -1;
586     }
587
588     if (status != 0)
589       break;
590   } /* for (ci->children) */
591
592   while (status == 0)
593   {
594     if (hd->address == NULL)
595     {
596       WARNING ("snmp plugin: `Address' not given for host `%s'", hd->name);
597       status = -1;
598       break;
599     }
600     if (hd->community == NULL)
601     {
602       WARNING ("snmp plugin: `Community' not given for host `%s'", hd->name);
603       status = -1;
604       break;
605     }
606
607     break;
608   } /* while (status == 0) */
609
610   if (status != 0)
611   {
612     sfree (hd->name);
613     sfree (hd);
614     return (-1);
615   }
616
617   DEBUG ("snmp plugin: hd = { name = %s, address = %s, community = %s, version = %i }",
618       hd->name, hd->address, hd->community, hd->version);
619
620   if (host_head == NULL)
621     host_head = hd;
622   else
623   {
624     host_definition_t *last;
625     last = host_head;
626     while (last->next != NULL)
627       last = last->next;
628     last->next = hd;
629   }
630
631   return (0);
632 } /* int csnmp_config_add_host */
633
634 static int csnmp_config (oconfig_item_t *ci)
635 {
636   int i;
637
638   call_snmp_init_once ();
639
640   for (i = 0; i < ci->children_num; i++)
641   {
642     oconfig_item_t *child = ci->children + i;
643     if (strcasecmp ("Data", child->key) == 0)
644       csnmp_config_add_data (child);
645     else if (strcasecmp ("Host", child->key) == 0)
646       csnmp_config_add_host (child);
647     else
648     {
649       WARNING ("snmp plugin: Ignoring unknown config option `%s'.", child->key);
650     }
651   } /* for (ci->children) */
652
653   return (0);
654 } /* int csnmp_config */
655
656 /* End of the config stuff. Now the interesting part begins */
657
658 static void csnmp_host_close_session (host_definition_t *host)
659 {
660   if (host->sess_handle == NULL)
661     return;
662
663   snmp_sess_close (host->sess_handle);
664   host->sess_handle = NULL;
665 } /* void csnmp_host_close_session */
666
667 static void csnmp_host_open_session (host_definition_t *host)
668 {
669   struct snmp_session sess;
670
671   if (host->sess_handle != NULL)
672     csnmp_host_close_session (host);
673
674   snmp_sess_init (&sess);
675   sess.peername = host->address;
676   sess.community = (u_char *) host->community;
677   sess.community_len = strlen (host->community);
678   sess.version = (host->version == 1) ? SNMP_VERSION_1 : SNMP_VERSION_2c;
679
680   /* snmp_sess_open will copy the `struct snmp_session *'. */
681   host->sess_handle = snmp_sess_open (&sess);
682
683   if (host->sess_handle == NULL)
684   {
685     char *errstr = NULL;
686
687     snmp_error (&sess, NULL, NULL, &errstr);
688
689     ERROR ("snmp plugin: host %s: snmp_sess_open failed: %s",
690         host->name, (errstr == NULL) ? "Unknown problem" : errstr);
691     sfree (errstr);
692   }
693 } /* void csnmp_host_open_session */
694
695 static value_t csnmp_value_list_to_value (struct variable_list *vl, int type,
696     double scale, double shift)
697 {
698   value_t ret;
699   uint64_t temp = 0;
700   int defined = 1;
701
702   if ((vl->type == ASN_INTEGER)
703       || (vl->type == ASN_UINTEGER)
704       || (vl->type == ASN_COUNTER)
705 #ifdef ASN_TIMETICKS
706       || (vl->type == ASN_TIMETICKS)
707 #endif
708       || (vl->type == ASN_GAUGE))
709   {
710     temp = (uint32_t) *vl->val.integer;
711     DEBUG ("snmp plugin: Parsed int32 value is %"PRIu64".", temp);
712   }
713   else if (vl->type == ASN_COUNTER64)
714   {
715     temp = (uint32_t) vl->val.counter64->high;
716     temp = temp << 32;
717     temp += (uint32_t) vl->val.counter64->low;
718     DEBUG ("snmp plugin: Parsed int64 value is %"PRIu64".", temp);
719   }
720   else if (vl->type == ASN_OCTET_STR)
721   {
722     /* We'll handle this later.. */
723   }
724   else
725   {
726     WARNING ("snmp plugin: I don't know the ASN type `%i'", (int) vl->type);
727     defined = 0;
728   }
729
730   if (vl->type == ASN_OCTET_STR)
731   {
732     char *endptr;
733
734     endptr = NULL;
735     if (vl->val.string != NULL)
736     {
737       char string[64];
738       size_t string_length;
739
740       string_length = sizeof (string) - 1;
741       if (vl->val_len < string_length)
742         string_length = vl->val_len;
743
744       /* The strings we get from the Net-SNMP library may not be null
745        * terminated. That is why we're using `membpy' here and not `strcpy'.
746        * `string_length' is set to `vl->val_len' which holds the length of the
747        * string.  -octo */
748       memcpy (string, vl->val.string, string_length);
749       string[string_length] = 0;
750
751       if (type == DS_TYPE_COUNTER)
752       {
753         ret.counter = (counter_t) strtoll (string, &endptr, /* base = */ 0);
754         DEBUG ("snmp plugin: csnmp_value_list_to_value: String to counter: %s -> %llu",
755             string, (unsigned long long) ret.counter);
756       }
757       else if (type == DS_TYPE_GAUGE)
758       {
759         ret.gauge = (gauge_t) strtod (string, &endptr);
760         DEBUG ("snmp plugin: csnmp_value_list_to_value: String to gauge: %s -> %g",
761             string, (double) ret.gauge);
762       }
763     }
764
765     /* Check if an error occurred */
766     if ((vl->val.string == NULL) || (endptr == (char *) vl->val.string))
767     {
768       if (type == DS_TYPE_COUNTER)
769         ret.counter = 0;
770       else if (type == DS_TYPE_GAUGE)
771         ret.gauge = NAN;
772     }
773   }
774   else if (type == DS_TYPE_COUNTER)
775   {
776     ret.counter = temp;
777   }
778   else if (type == DS_TYPE_GAUGE)
779   {
780     ret.gauge = NAN;
781     if (defined != 0)
782       ret.gauge = (scale * temp) + shift;
783   }
784
785   return (ret);
786 } /* value_t csnmp_value_list_to_value */
787
788 /* Returns true if all OIDs have left their subtree */
789 static int csnmp_check_res_left_subtree (const host_definition_t *host,
790     const data_definition_t *data,
791     struct snmp_pdu *res)
792 {
793   struct variable_list *vb;
794   int num_checked;
795   int num_left_subtree;
796   int i;
797
798   vb = res->variables;
799   if (vb == NULL)
800     return (-1);
801
802   num_checked = 0;
803   num_left_subtree = 0;
804
805   /* check all the variables and count how many have left their subtree */
806   for (vb = res->variables, i = 0;
807       (vb != NULL) && (i < data->values_len);
808       vb = vb->next_variable, i++)
809   {
810     num_checked++;
811     if (snmp_oid_ncompare (data->values[i].oid,
812           data->values[i].oid_len,
813           vb->name, vb->name_length,
814           data->values[i].oid_len) != 0)
815       num_left_subtree++;
816   }
817
818   /* check if enough variables have been returned */
819   if (i < data->values_len)
820   {
821     ERROR ("snmp plugin: host %s: Expected %i variables, but got only %i",
822         host->name, data->values_len, i);
823     return (-1);
824   }
825
826   if (data->instance.oid.oid_len > 0)
827   {
828     if (vb == NULL)
829     {
830       ERROR ("snmp plugin: host %s: Expected one more variable for "
831           "the instance..", host->name);
832       return (-1);
833     }
834
835     num_checked++;
836     if (snmp_oid_ncompare (data->instance.oid.oid,
837           data->instance.oid.oid_len,
838           vb->name, vb->name_length,
839           data->instance.oid.oid_len) != 0)
840       num_left_subtree++;
841   }
842
843   DEBUG ("snmp plugin: csnmp_check_res_left_subtree: %i of %i variables have "
844       "left their subtree",
845       num_left_subtree, num_checked);
846   if (num_left_subtree >= num_checked)
847     return (1);
848   return (0);
849 } /* int csnmp_check_res_left_subtree */
850
851 static int csnmp_instance_list_add (csnmp_list_instances_t **head,
852     csnmp_list_instances_t **tail,
853     const struct snmp_pdu *res)
854 {
855   csnmp_list_instances_t *il;
856   struct variable_list *vb;
857
858   /* Set vb on the last variable */
859   for (vb = res->variables;
860       (vb != NULL) && (vb->next_variable != NULL);
861       vb = vb->next_variable)
862     /* do nothing */;
863   if (vb == NULL)
864     return (-1);
865
866   il = (csnmp_list_instances_t *) malloc (sizeof (csnmp_list_instances_t));
867   if (il == NULL)
868   {
869     ERROR ("snmp plugin: malloc failed.");
870     return (-1);
871   }
872   il->subid = vb->name[vb->name_length - 1];
873   il->next = NULL;
874
875   /* Get instance name */
876   if ((vb->type == ASN_OCTET_STR) || (vb->type == ASN_BIT_STR))
877   {
878     char *ptr;
879     size_t instance_len;
880
881     memset (il->instance, 0, sizeof (il->instance));
882     instance_len = sizeof (il->instance) - 1;
883     if (instance_len > vb->val_len)
884       instance_len = vb->val_len;
885
886     sstrncpy (il->instance, (char *) ((vb->type == ASN_OCTET_STR)
887           ? vb->val.string
888           : vb->val.bitstring),
889         instance_len + 1);
890
891     for (ptr = il->instance; *ptr != '\0'; ptr++)
892     {
893       if ((*ptr > 0) && (*ptr < 32))
894         *ptr = ' ';
895       else if (*ptr == '/')
896         *ptr = '_';
897     }
898     DEBUG ("snmp plugin: il->instance = `%s';", il->instance);
899   }
900   else
901   {
902     value_t val = csnmp_value_list_to_value (vb, DS_TYPE_COUNTER, 1.0, 0.0);
903     ssnprintf (il->instance, sizeof (il->instance),
904         "%llu", val.counter);
905   }
906
907   /* TODO: Debugging output */
908
909   if (*head == NULL)
910     *head = il;
911   else
912     (*tail)->next = il;
913   *tail = il;
914
915   return (0);
916 } /* int csnmp_instance_list_add */
917
918 static int csnmp_dispatch_table (host_definition_t *host, data_definition_t *data,
919     csnmp_list_instances_t *instance_list,
920     csnmp_table_values_t **value_table)
921 {
922   const data_set_t *ds;
923   value_list_t vl = VALUE_LIST_INIT;
924
925   csnmp_list_instances_t *instance_list_ptr;
926   csnmp_table_values_t **value_table_ptr;
927
928   int i;
929   oid subid;
930   int have_more;
931
932   ds = plugin_get_ds (data->type);
933   if (!ds)
934   {
935     ERROR ("snmp plugin: DataSet `%s' not defined.", data->type);
936     return (-1);
937   }
938   assert (ds->ds_num == data->values_len);
939
940   instance_list_ptr = instance_list;
941
942   value_table_ptr = (csnmp_table_values_t **) malloc (sizeof (csnmp_table_values_t *)
943       * data->values_len);
944   if (value_table_ptr == NULL)
945     return (-1);
946   for (i = 0; i < data->values_len; i++)
947     value_table_ptr[i] = value_table[i];
948
949   vl.values_len = ds->ds_num;
950   vl.values = (value_t *) malloc (sizeof (value_t) * vl.values_len);
951   if (vl.values == NULL)
952   {
953     ERROR ("snmp plugin: malloc failed.");
954     sfree (value_table_ptr);
955     return (-1);
956   }
957
958   sstrncpy (vl.host, host->name, sizeof (vl.host));
959   sstrncpy (vl.plugin, "snmp", sizeof (vl.plugin));
960
961   vl.interval = host->interval;
962   vl.time = time (NULL);
963
964   subid = 0;
965   have_more = 1;
966
967   while (have_more != 0)
968   {
969     if (instance_list != NULL)
970     {
971       while ((instance_list_ptr != NULL)
972           && (instance_list_ptr->subid < subid))
973         instance_list_ptr = instance_list_ptr->next;
974
975       if (instance_list_ptr == NULL)
976       {
977         have_more = 0;
978         continue;
979       }
980       else if (instance_list_ptr->subid > subid)
981       {
982         subid = instance_list_ptr->subid;
983         continue;
984       }
985     } /* if (instance_list != NULL) */
986
987     for (i = 0; i < data->values_len; i++)
988     {
989       while ((value_table_ptr[i] != NULL)
990           && (value_table_ptr[i]->subid < subid))
991         value_table_ptr[i] = value_table_ptr[i]->next;
992
993       if (value_table_ptr[i] == NULL)
994       {
995         have_more = 0;
996         break;
997       }
998       else if (value_table_ptr[i]->subid > subid)
999       {
1000         subid = value_table_ptr[i]->subid;
1001         break;
1002       }
1003     } /* for (i = 0; i < columns; i++) */
1004     /* The subid has been increased - start scanning from the beginning
1005      * again.. */
1006     if (i < data->values_len)
1007       continue;
1008
1009     /* if we reach this line, all value_table_ptr[i] are non-NULL and are set
1010      * to the same subid. instance_list_ptr is either NULL or points to the
1011      * same subid, too. */
1012 #if COLLECT_DEBUG
1013     for (i = 1; i < data->values_len; i++)
1014     {
1015       assert (value_table_ptr[i] != NULL);
1016       assert (value_table_ptr[i-1]->subid == value_table_ptr[i]->subid);
1017     }
1018     assert ((instance_list_ptr == NULL)
1019         || (instance_list_ptr->subid == value_table_ptr[0]->subid));
1020 #endif
1021
1022     sstrncpy (vl.type, data->type, sizeof (vl.type));
1023
1024     {
1025       char temp[DATA_MAX_NAME_LEN];
1026
1027       if (instance_list_ptr == NULL)
1028         ssnprintf (temp, sizeof (temp), "%u", (uint32_t) subid);
1029       else
1030         sstrncpy (temp, instance_list_ptr->instance, sizeof (temp));
1031
1032       if (data->instance_prefix == NULL)
1033         sstrncpy (vl.type_instance, temp, sizeof (vl.type_instance));
1034       else
1035         ssnprintf (vl.type_instance, sizeof (vl.type_instance), "%s%s",
1036             data->instance_prefix, temp);
1037     }
1038
1039     for (i = 0; i < data->values_len; i++)
1040       vl.values[i] = value_table_ptr[i]->value;
1041
1042     /* If we get here `vl.type_instance' and all `vl.values' have been set */
1043     plugin_dispatch_values (&vl);
1044
1045     subid++;
1046   } /* while (have_more != 0) */
1047
1048   sfree (vl.values);
1049   sfree (value_table_ptr);
1050
1051   return (0);
1052 } /* int csnmp_dispatch_table */
1053
1054 static int csnmp_read_table (host_definition_t *host, data_definition_t *data)
1055 {
1056   struct snmp_pdu *req;
1057   struct snmp_pdu *res;
1058   struct variable_list *vb;
1059
1060   const data_set_t *ds;
1061   oid_t *oid_list;
1062   uint32_t oid_list_len;
1063
1064   int status;
1065   int i;
1066
1067   /* `value_table' and `value_table_ptr' implement a linked list for each
1068    * value. `instance_list' and `instance_list_ptr' implement a linked list of
1069    * instance names. This is used to jump gaps in the table. */
1070   csnmp_list_instances_t *instance_list;
1071   csnmp_list_instances_t *instance_list_ptr;
1072   csnmp_table_values_t **value_table;
1073   csnmp_table_values_t **value_table_ptr;
1074
1075   DEBUG ("snmp plugin: csnmp_read_table (host = %s, data = %s)",
1076       host->name, data->name);
1077
1078   if (host->sess_handle == NULL)
1079   {
1080     DEBUG ("snmp plugin: csnmp_read_table: host->sess_handle == NULL");
1081     return (-1);
1082   }
1083
1084   ds = plugin_get_ds (data->type);
1085   if (!ds)
1086   {
1087     ERROR ("snmp plugin: DataSet `%s' not defined.", data->type);
1088     return (-1);
1089   }
1090
1091   if (ds->ds_num != data->values_len)
1092   {
1093     ERROR ("snmp plugin: DataSet `%s' requires %i values, but config talks about %i",
1094         data->type, ds->ds_num, data->values_len);
1095     return (-1);
1096   }
1097
1098   /* We need a copy of all the OIDs, because GETNEXT will destroy them. */
1099   oid_list_len = data->values_len + 1;
1100   oid_list = (oid_t *) malloc (sizeof (oid_t) * (oid_list_len));
1101   if (oid_list == NULL)
1102   {
1103     ERROR ("snmp plugin: csnmp_read_table: malloc failed.");
1104     return (-1);
1105   }
1106   memcpy (oid_list, data->values, data->values_len * sizeof (oid_t));
1107   if (data->instance.oid.oid_len > 0)
1108     memcpy (oid_list + data->values_len, &data->instance.oid, sizeof (oid_t));
1109   else
1110     oid_list_len--;
1111
1112   /* Allocate the `value_table' */
1113   value_table = (csnmp_table_values_t **) malloc (sizeof (csnmp_table_values_t *)
1114       * 2 * data->values_len);
1115   if (value_table == NULL)
1116   {
1117     ERROR ("snmp plugin: csnmp_read_table: malloc failed.");
1118     sfree (oid_list);
1119     return (-1);
1120   }
1121   memset (value_table, '\0', sizeof (csnmp_table_values_t *) * 2 * data->values_len);
1122   value_table_ptr = value_table + data->values_len;
1123   
1124   instance_list = NULL;
1125   instance_list_ptr = NULL;
1126
1127   status = 0;
1128   while (status == 0)
1129   {
1130     req = snmp_pdu_create (SNMP_MSG_GETNEXT);
1131     if (req == NULL)
1132     {
1133       ERROR ("snmp plugin: snmp_pdu_create failed.");
1134       status = -1;
1135       break;
1136     }
1137
1138     for (i = 0; i < oid_list_len; i++)
1139       snmp_add_null_var (req, oid_list[i].oid, oid_list[i].oid_len);
1140
1141     res = NULL;
1142     status = snmp_sess_synch_response (host->sess_handle, req, &res);
1143
1144     if ((status != STAT_SUCCESS) || (res == NULL))
1145     {
1146       char *errstr = NULL;
1147
1148       snmp_sess_error (host->sess_handle, NULL, NULL, &errstr);
1149       ERROR ("snmp plugin: host %s: snmp_sess_synch_response failed: %s",
1150           host->name, (errstr == NULL) ? "Unknown problem" : errstr);
1151
1152       if (res != NULL)
1153         snmp_free_pdu (res);
1154       res = NULL;
1155
1156       sfree (errstr);
1157       csnmp_host_close_session (host);
1158
1159       status = -1;
1160       break;
1161     }
1162     status = 0;
1163     assert (res != NULL);
1164
1165     vb = res->variables;
1166     if (vb == NULL)
1167     {
1168       status = -1;
1169       break;
1170     }
1171
1172     /* Check if all values (and possibly the instance) have left their
1173      * subtree */
1174     if (csnmp_check_res_left_subtree (host, data, res) != 0)
1175     {
1176       status = 0;
1177       break;
1178     }
1179
1180     /* if an instance-OID is configured.. */
1181     if (data->instance.oid.oid_len > 0)
1182     {
1183       /* Allocate a new `csnmp_list_instances_t', insert the instance name and
1184        * add it to the list */
1185       if (csnmp_instance_list_add (&instance_list, &instance_list_ptr,
1186             res) != 0)
1187       {
1188         ERROR ("snmp plugin: csnmp_instance_list_add failed.");
1189         status = -1;
1190         break;
1191       }
1192
1193       /* Set vb on the last variable */
1194       for (vb = res->variables;
1195           (vb != NULL) && (vb->next_variable != NULL);
1196           vb = vb->next_variable)
1197         /* do nothing */;
1198       assert (vb != NULL);
1199
1200       /* Copy OID to oid_list[data->values_len] */
1201       memcpy (oid_list[data->values_len].oid, vb->name,
1202           sizeof (oid) * vb->name_length);
1203       oid_list[data->values_len].oid_len = vb->name_length;
1204     }
1205
1206     for (vb = res->variables, i = 0;
1207         (vb != NULL) && (i < data->values_len);
1208         vb = vb->next_variable, i++)
1209     {
1210       csnmp_table_values_t *vt;
1211
1212       /* Check if we left the subtree */
1213       if (snmp_oid_ncompare (data->values[i].oid,
1214             data->values[i].oid_len,
1215             vb->name, vb->name_length,
1216             data->values[i].oid_len) != 0)
1217       {
1218         DEBUG ("snmp plugin: host = %s; data = %s; Value %i left its subtree.",
1219             host->name, data->name, i);
1220         continue;
1221       }
1222
1223       if ((value_table_ptr[i] != NULL)
1224           && (vb->name[vb->name_length - 1] <= value_table_ptr[i]->subid))
1225       {
1226         DEBUG ("snmp plugin: host = %s; data = %s; i = %i; "
1227             "SUBID is not increasing.",
1228             host->name, data->name, i);
1229         continue;
1230       }
1231
1232       vt = (csnmp_table_values_t *) malloc (sizeof (csnmp_table_values_t));
1233       if (vt == NULL)
1234       {
1235         ERROR ("snmp plugin: malloc failed.");
1236         status = -1;
1237         break;
1238       }
1239
1240       vt->subid = vb->name[vb->name_length - 1];
1241       vt->value = csnmp_value_list_to_value (vb, ds->ds[i].type,
1242           data->scale, data->shift);
1243       vt->next = NULL;
1244
1245       if (value_table_ptr[i] == NULL)
1246         value_table[i] = vt;
1247       else
1248         value_table_ptr[i]->next = vt;
1249       value_table_ptr[i] = vt;
1250
1251       /* Copy OID to oid_list[i + 1] */
1252       memcpy (oid_list[i].oid, vb->name, sizeof (oid) * vb->name_length);
1253       oid_list[i].oid_len = vb->name_length;
1254     } /* for (i = data->values_len) */
1255
1256     if (res != NULL)
1257       snmp_free_pdu (res);
1258     res = NULL;
1259   } /* while (status == 0) */
1260
1261   if (res != NULL)
1262     snmp_free_pdu (res);
1263   res = NULL;
1264
1265   if (status == 0)
1266     csnmp_dispatch_table (host, data, instance_list, value_table);
1267
1268   /* Free all allocated variables here */
1269   while (instance_list != NULL)
1270   {
1271     instance_list_ptr = instance_list->next;
1272     sfree (instance_list);
1273     instance_list = instance_list_ptr;
1274   }
1275
1276   for (i = 0; i < data->values_len; i++)
1277   {
1278     csnmp_table_values_t *tmp;
1279     while (value_table[i] != NULL)
1280     {
1281       tmp = value_table[i]->next;
1282       sfree (value_table[i]);
1283       value_table[i] = tmp;
1284     }
1285   }
1286
1287   sfree (value_table);
1288   sfree (oid_list);
1289
1290   return (0);
1291 } /* int csnmp_read_table */
1292
1293 static int csnmp_read_value (host_definition_t *host, data_definition_t *data)
1294 {
1295   struct snmp_pdu *req;
1296   struct snmp_pdu *res;
1297   struct variable_list *vb;
1298
1299   const data_set_t *ds;
1300   value_list_t vl = VALUE_LIST_INIT;
1301
1302   int status;
1303   int i;
1304
1305   DEBUG ("snmp plugin: csnmp_read_value (host = %s, data = %s)",
1306       host->name, data->name);
1307
1308   if (host->sess_handle == NULL)
1309   {
1310     DEBUG ("snmp plugin: csnmp_read_table: host->sess_handle == NULL");
1311     return (-1);
1312   }
1313
1314   ds = plugin_get_ds (data->type);
1315   if (!ds)
1316   {
1317     ERROR ("snmp plugin: DataSet `%s' not defined.", data->type);
1318     return (-1);
1319   }
1320
1321   if (ds->ds_num != data->values_len)
1322   {
1323     ERROR ("snmp plugin: DataSet `%s' requires %i values, but config talks about %i",
1324         data->type, ds->ds_num, data->values_len);
1325     return (-1);
1326   }
1327
1328   vl.values_len = ds->ds_num;
1329   vl.values = (value_t *) malloc (sizeof (value_t) * vl.values_len);
1330   if (vl.values == NULL)
1331     return (-1);
1332   for (i = 0; i < vl.values_len; i++)
1333   {
1334     if (ds->ds[i].type == DS_TYPE_COUNTER)
1335       vl.values[i].counter = 0;
1336     else
1337       vl.values[i].gauge = NAN;
1338   }
1339
1340   sstrncpy (vl.host, host->name, sizeof (vl.host));
1341   sstrncpy (vl.plugin, "snmp", sizeof (vl.plugin));
1342   sstrncpy (vl.type, data->type, sizeof (vl.type));
1343   sstrncpy (vl.type_instance, data->instance.string, sizeof (vl.type_instance));
1344
1345   vl.interval = host->interval;
1346
1347   req = snmp_pdu_create (SNMP_MSG_GET);
1348   if (req == NULL)
1349   {
1350     ERROR ("snmp plugin: snmp_pdu_create failed.");
1351     sfree (vl.values);
1352     return (-1);
1353   }
1354
1355   for (i = 0; i < data->values_len; i++)
1356     snmp_add_null_var (req, data->values[i].oid, data->values[i].oid_len);
1357
1358   res = NULL;
1359   status = snmp_sess_synch_response (host->sess_handle, req, &res);
1360
1361   if ((status != STAT_SUCCESS) || (res == NULL))
1362   {
1363     char *errstr = NULL;
1364
1365     snmp_sess_error (host->sess_handle, NULL, NULL, &errstr);
1366     ERROR ("snmp plugin: host %s: snmp_sess_synch_response failed: %s",
1367         host->name, (errstr == NULL) ? "Unknown problem" : errstr);
1368
1369     if (res != NULL)
1370       snmp_free_pdu (res);
1371     res = NULL;
1372
1373     sfree (errstr);
1374     csnmp_host_close_session (host);
1375
1376     return (-1);
1377   }
1378
1379   vl.time = time (NULL);
1380
1381   for (vb = res->variables; vb != NULL; vb = vb->next_variable)
1382   {
1383 #if COLLECT_DEBUG
1384     char buffer[1024];
1385     snprint_variable (buffer, sizeof (buffer),
1386         vb->name, vb->name_length, vb);
1387     DEBUG ("snmp plugin: Got this variable: %s", buffer);
1388 #endif /* COLLECT_DEBUG */
1389
1390     for (i = 0; i < data->values_len; i++)
1391       if (snmp_oid_compare (data->values[i].oid, data->values[i].oid_len,
1392             vb->name, vb->name_length) == 0)
1393         vl.values[i] = csnmp_value_list_to_value (vb, ds->ds[i].type,
1394             data->scale, data->shift);
1395   } /* for (res->variables) */
1396
1397   if (res != NULL)
1398     snmp_free_pdu (res);
1399   res = NULL;
1400
1401   DEBUG ("snmp plugin: -> plugin_dispatch_values (&vl);");
1402   plugin_dispatch_values (&vl);
1403   sfree (vl.values);
1404
1405   return (0);
1406 } /* int csnmp_read_value */
1407
1408 static int csnmp_read_host (host_definition_t *host)
1409 {
1410   int i;
1411   time_t time_start;
1412   time_t time_end;
1413
1414   time_start = time (NULL);
1415   DEBUG ("snmp plugin: csnmp_read_host (%s) started at %u;", host->name,
1416       (unsigned int) time_start);
1417
1418   if (host->sess_handle == NULL)
1419     csnmp_host_open_session (host);
1420
1421   if (host->sess_handle == NULL)
1422     return (-1);
1423
1424   for (i = 0; i < host->data_list_len; i++)
1425   {
1426     data_definition_t *data = host->data_list[i];
1427
1428     if (data->is_table)
1429       csnmp_read_table (host, data);
1430     else
1431       csnmp_read_value (host, data);
1432   }
1433
1434   time_end = time (NULL);
1435   DEBUG ("snmp plugin: csnmp_read_host (%s) finished at %u;", host->name,
1436       (unsigned int) time_end);
1437   if ((time_end - time_start) > host->interval)
1438   {
1439     WARNING ("snmp plugin: Host `%s' should be queried every %i seconds, "
1440         "but reading all values takes %u seconds.",
1441         host->name, host->interval, (unsigned int) (time_end - time_start));
1442   }
1443
1444   return (0);
1445 } /* int csnmp_read_host */
1446
1447 static void *csnmp_read_thread (void *data)
1448 {
1449   host_definition_t *host;
1450
1451   pthread_mutex_lock (&host_lock);
1452   while (do_shutdown == 0)
1453   {
1454     pthread_cond_wait (&host_cond, &host_lock);
1455
1456     for (host = host_head; host != NULL; host = host->next)
1457     {
1458       if (do_shutdown != 0)
1459         break;
1460       if (host->state != STATE_WAIT)
1461         continue;
1462
1463       host->state = STATE_BUSY;
1464       pthread_mutex_unlock (&host_lock);
1465       csnmp_read_host (host);
1466       pthread_mutex_lock (&host_lock);
1467       host->state = STATE_IDLE;
1468     } /* for (host) */
1469   } /* while (do_shutdown == 0) */
1470   pthread_mutex_unlock (&host_lock);
1471
1472   pthread_exit ((void *) 0);
1473   return ((void *) 0);
1474 } /* void *csnmp_read_thread */
1475
1476 static int csnmp_init (void)
1477 {
1478   host_definition_t *host;
1479   int i;
1480
1481   if (host_head == NULL)
1482   {
1483     NOTICE ("snmp plugin: No host has been defined.");
1484     return (-1);
1485   }
1486
1487   call_snmp_init_once ();
1488
1489   threads_num = 0;
1490   for (host = host_head; host != NULL; host = host->next)
1491   {
1492     threads_num++;
1493     /* We need to initialize `interval' here, because `interval_g' isn't
1494      * initialized during `configure'. */
1495     host->next_update = time (NULL);
1496     if (host->interval == 0)
1497     {
1498       host->interval = interval_g;
1499     }
1500     else if (host->interval < interval_g)
1501     {
1502       host->interval = interval_g;
1503       WARNING ("snmp plugin: Data for host `%s' will be collected every %i seconds.",
1504           host->name, host->interval);
1505     }
1506
1507     csnmp_host_open_session (host);
1508   } /* for (host) */
1509
1510   /* Now start the reading threads */
1511   if (threads_num > 3)
1512   {
1513     threads_num = 3 + ((threads_num - 3) / 10);
1514     if (threads_num > 10)
1515       threads_num = 10;
1516   }
1517
1518   threads = (pthread_t *) malloc (threads_num * sizeof (pthread_t));
1519   if (threads == NULL)
1520   {
1521     ERROR ("snmp plugin: malloc failed.");
1522     return (-1);
1523   }
1524   memset (threads, '\0', threads_num * sizeof (pthread_t));
1525
1526   for (i = 0; i < threads_num; i++)
1527       pthread_create (threads + i, NULL, csnmp_read_thread, (void *) 0);
1528
1529   return (0);
1530 } /* int csnmp_init */
1531
1532 static int csnmp_read (void)
1533 {
1534   host_definition_t *host;
1535   time_t now;
1536
1537   if (host_head == NULL)
1538   {
1539     INFO ("snmp plugin: No hosts configured.");
1540     return (-1);
1541   }
1542
1543   now = time (NULL);
1544
1545   pthread_mutex_lock (&host_lock);
1546   for (host = host_head; host != NULL; host = host->next)
1547   {
1548     if (host->state != STATE_IDLE)
1549       continue;
1550
1551     /* Skip this host if the next or a later iteration will be sufficient. */
1552     if (host->next_update >= (now + interval_g))
1553       continue;
1554
1555     host->state = STATE_WAIT;
1556     host->next_update = now + host->interval;
1557   } /* for (host) */
1558
1559   pthread_cond_broadcast (&host_cond);
1560   pthread_mutex_unlock (&host_lock);
1561
1562   return (0);
1563 } /* int csnmp_read */
1564
1565 static int csnmp_shutdown (void)
1566 {
1567   host_definition_t *host_this;
1568   host_definition_t *host_next;
1569
1570   data_definition_t *data_this;
1571   data_definition_t *data_next;
1572
1573   int i;
1574
1575   pthread_mutex_lock (&host_lock);
1576   do_shutdown = 1;
1577   pthread_cond_broadcast (&host_cond);
1578   pthread_mutex_unlock (&host_lock);
1579
1580   for (i = 0; i < threads_num; i++)
1581     pthread_join (threads[i], NULL);
1582
1583   /* Now that all the threads have exited, let's free all the global variables.
1584    * This isn't really neccessary, I guess, but I think it's good stile to do
1585    * so anyway. */
1586   host_this = host_head;
1587   host_head = NULL;
1588   while (host_this != NULL)
1589   {
1590     host_next = host_this->next;
1591
1592     csnmp_host_close_session (host_this);
1593
1594     sfree (host_this->name);
1595     sfree (host_this->address);
1596     sfree (host_this->community);
1597     sfree (host_this->data_list);
1598     sfree (host_this);
1599
1600     host_this = host_next;
1601   }
1602
1603   data_this = data_head;
1604   data_head = NULL;
1605   while (data_this != NULL)
1606   {
1607     data_next = data_this->next;
1608
1609     sfree (data_this->name);
1610     sfree (data_this->type);
1611     sfree (data_this->values);
1612     sfree (data_this);
1613
1614     data_this = data_next;
1615   }
1616
1617   return (0);
1618 } /* int csnmp_shutdown */
1619
1620 void module_register (void)
1621 {
1622   plugin_register_complex_config ("snmp", csnmp_config);
1623   plugin_register_init ("snmp", csnmp_init);
1624   plugin_register_read ("snmp", csnmp_read);
1625   plugin_register_shutdown ("snmp", csnmp_shutdown);
1626 } /* void module_register */
1627
1628 /*
1629  * vim: shiftwidth=2 softtabstop=2 tabstop=8
1630  */