Merge branch 'collectd-4.4' into collectd-4.5
[collectd.git] / src / entropy.c
1 /**
2  * collectd - src/entropy.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 #if !KERNEL_LINUX
27 # error "No applicable input method."
28 #endif
29
30 #define ENTROPY_FILE "/proc/sys/kernel/random/entropy_avail"
31
32 static void entropy_submit (double entropy)
33 {
34         value_t values[1];
35         value_list_t vl = VALUE_LIST_INIT;
36
37         values[0].gauge = entropy;
38
39         vl.values = values;
40         vl.values_len = 1;
41         vl.time = time (NULL);
42         sstrncpy (vl.host, hostname_g, sizeof (vl.host));
43         sstrncpy (vl.plugin, "entropy", sizeof (vl.plugin));
44         sstrncpy (vl.type, "entropy", sizeof (vl.type));
45
46         plugin_dispatch_values (&vl);
47 }
48
49 static int entropy_read (void)
50 {
51         double entropy;
52         FILE *fh;
53         char buffer[64];
54
55         fh = fopen (ENTROPY_FILE, "r");
56         if (fh == NULL)
57                 return (-1);
58
59         if (fgets (buffer, sizeof (buffer), fh) == NULL)
60         {
61                 fclose (fh);
62                 return (-1);
63         }
64         fclose (fh);
65
66         entropy = atof (buffer);
67         
68         if (entropy > 0.0)
69                 entropy_submit (entropy);
70
71         return (0);
72 }
73
74 void module_register (void)
75 {
76         plugin_register_read ("entropy", entropy_read);
77 } /* void module_register */