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