]> git.itanic.dy.fi Git - rrdd/blob - built_in_parsers.c
utils.h: min() max() cleanup
[rrdd] / built_in_parsers.c
1 #include <stdlib.h>
2 #include <stdio.h>
3 #include <string.h>
4
5 #include "parser.h"
6 #include "process.h"
7 #include "string.h"
8 #include "debug.h"
9 #include "utils.h"
10 #include "built_in_parsers.h"
11
12 #define STATFILE "/proc/stat"
13
14 static int cpu_parser(char *data, const char **p, void **state)
15 {
16         char buf[1024];
17         char *str = buf;
18         FILE *file = fopen(STATFILE, "r");
19         long long user, nice, sys, idle, wait, irq, softirq;
20
21         if (file == NULL) {
22                 pr_err("Failed to open file %s\n", STATFILE);
23                 return -1;
24         }
25
26         if (!fgets(buf, sizeof(buf), file)) {
27                 pr_err("Failed to read file %s\n", STATFILE);
28                 fclose(file);
29                 return -1;
30         }
31
32         user    = dec_to_longlong(str, &str);
33         nice    = dec_to_longlong(str, &str);
34         sys     = dec_to_longlong(str, &str);
35         idle    = dec_to_longlong(str, &str);
36         wait    = dec_to_longlong(str, &str);
37         irq     = dec_to_longlong(str, &str);
38         softirq = dec_to_longlong(str, &str);
39
40         snprintf(data, RRD_DATA_MAX_LEN, "%lld:%lld:%lld:%lld:%lld:%lld:%lld",
41                 user, nice, sys, idle, wait, irq, softirq);
42
43         fclose(file);
44         return 0;
45 }
46
47 #define MEMFILE "/proc/meminfo"
48
49 static int mem_parser(char *data, const char **p, void **state)
50 {
51         char buf[1024], word[1024];
52         int free = 0, buffered = 0, cache = 0, active = 0, inactive = 0,
53                 swapfree = 0, anon = 0, slab = 0, tables = 0, other = 0,
54                 swaptotal = 0, total = 0;
55         FILE *file = fopen(MEMFILE, "r");
56
57         if (file == NULL) {
58                 pr_err("Failed to open file %s\n", MEMFILE);
59                 return -1;
60         }
61
62         while (fgets(buf, sizeof(buf), file)) {
63                 get_word(buf, 0, word, sizeof(word));
64
65                 if (!strcmp(word, "MemFree:")) {
66                         free = dec_to_int(buf, NULL);
67                 } else if (!strcmp(word, "MemTotal:")) {
68                         total = dec_to_int(buf, NULL);
69                 } else if (!strcmp(word, "Buffers:")) {
70                         buffered = dec_to_int(buf, NULL);
71                 } else if (!strcmp(word, "Cached:")) {
72                         cache = dec_to_int(buf, NULL);
73                 } else if (!strcmp(word, "Active:")) {
74                         active = dec_to_int(buf, NULL);
75                 } else if (!strcmp(word, "Inactive:")) {
76                         inactive = dec_to_int(buf, NULL);
77                 } else if (!strcmp(word, "SwapFree:")) {
78                         swapfree = dec_to_int(buf, NULL);
79                 } else if (!strcmp(word, "AnonPages:")) {
80                         anon = dec_to_int(buf, NULL);
81                 } else if (!strcmp(word, "Slab:")) {
82                         slab = dec_to_int(buf, NULL);
83                 } else if (!strcmp(word, "PageTables:")) {
84                         tables = dec_to_int(buf, NULL);
85                 } else if (!strcmp(word, "SwapTotal:")) {
86                         swaptotal = dec_to_int(buf, NULL);
87                 }
88         }
89         fclose(file);
90
91         other = total - free - buffered - cache - anon - slab - tables;
92
93         snprintf(data, RRD_DATA_MAX_LEN, "%f:%f:%f:%f:%f:%f:%f:%f:%f:%f:%f",
94                 free / 1024.0,
95                 buffered / 1024.0,
96                 cache / 1024.0,
97                 active / 1024.0,
98                 inactive / 1024.0,
99                 swapfree / 1024.0,
100                 anon / 1024.0,
101                 slab / 1024.0,
102                 tables / 1024.0,
103                 other / 1024.0,
104                 (swaptotal - swapfree) / 1024.0);
105
106         return 0;
107 }
108
109 int cpu_mem_parser(char *data, const char **p, void **state)
110 {
111         char cpu[RRD_DATA_MAX_LEN], mem[RRD_DATA_MAX_LEN];
112
113         cpu_parser(cpu, p, state);
114         mem_parser(mem, p, state);
115         snprintf(data, RRD_DATA_MAX_LEN, "%s:%s", cpu, mem);
116
117         return 0;
118 }
119
120 /* Run a command and feed the output from stdout directly to rrdtool */
121 static int script_parser(char *rrd_data, const char **parser_data, void **state)
122 {
123         FILE *readf;
124         int pid, ret;
125         void *tmp = parser_data;
126         char **cmd = tmp;
127
128         pid = run_piped_stream(cmd[0], &cmd[1], NULL, &readf, NULL);
129         ret = fread(rrd_data, 1, RRD_DATA_MAX_LEN - 1, readf);
130         if (ret < 0) {
131                 pr_err("Error on read: %m\n");
132                 goto err_read;
133         }
134
135         rrd_data[ret] = 0;
136         pr_info("Read %d bytes :%s\n", ret, rrd_data);
137
138 err_read:
139         fclose(readf);
140
141         clear_zombie(pid);
142
143         return 0;
144 }
145
146 struct iface_stats {
147         long long rx_bytes;
148         long long rx_packets;
149         long long tx_bytes;
150         long long tx_packets;
151 };
152
153 #define PROC_NETDEV     "/proc/net/dev"
154
155 static int get_iface_stats(const char *iface, struct iface_stats *stat)
156 {
157         FILE *netdev;
158         char buf[1024];
159         char if_name[16];
160         char *str;
161         int error;
162
163         netdev = fopen(PROC_NETDEV, "r");
164
165         if (netdev == NULL) {
166                 error = errno;
167                 pr_err("Failed to open file %s: %d (%m)\n",
168                         PROC_NETDEV, error);
169                 return error;
170         }
171
172         while (fgets(buf, sizeof(buf), netdev)) {
173                 get_word(buf, &str, if_name, sizeof(if_name));
174
175                 /* Remove the ':' at the end of the if_name */
176                 if_name[strlen(if_name) - 1] = 0;
177                 if (strncmp(iface, if_name, sizeof(if_name)))
178                         continue;
179
180                 stat->rx_bytes          = dec_to_longlong(str, &str);
181                 stat->rx_packets        = dec_to_longlong(str, &str);
182                 /* errs */                dec_to_longlong(str, &str);
183                 /* drop */                dec_to_longlong(str, &str);
184                 /* fifo */                dec_to_longlong(str, &str);
185                 /* frame */               dec_to_longlong(str, &str);
186                 /* compressed */          dec_to_longlong(str, &str);
187                 /* multicast */           dec_to_longlong(str, &str);
188                 stat->tx_bytes          = dec_to_longlong(str, &str);
189                 stat->tx_packets        = dec_to_longlong(str, &str);
190
191                 pr_info("rx_b %lld rx_p %lld tx_b %lld tx_p %lld\n",
192                         stat->rx_bytes, stat->rx_packets,
193                         stat->tx_bytes, stat->tx_packets);
194
195                 fclose(netdev);
196                 return 0;
197         }
198
199         fclose(netdev);
200         pr_err("Interface %s not found\n", iface);
201         return -ENODEV;
202 }
203
204 int netstats_parser(char *rrd_data, const char **parser_data, void **state)
205 {
206         struct iface_stats stat;
207         const char **iface_name = parser_data;
208         int max_str = RRD_DATA_MAX_LEN;
209         int ret;
210
211         if (!parser_data) {
212                 pr_err("No device names specified\n");
213                 return -1;
214         }
215
216         while(*iface_name) {
217                 pr_info("getting data for iface %s\n", *iface_name);
218                 ret = get_iface_stats(*iface_name, &stat);
219
220                 if (!ret) {
221                         ret = snprintf(rrd_data, max_str, "%lld:%lld:%lld:%lld",
222                                 stat.rx_bytes, stat.rx_packets,
223                                 stat.tx_bytes, stat.tx_packets);
224                 } else {
225                         ret = snprintf(rrd_data, max_str, "U:U:U:U");
226                 }
227
228                 max_str -= ret;
229                 rrd_data += ret;
230
231                 iface_name++;
232                 if (!*iface_name)
233                         break;
234
235                 ret = snprintf(rrd_data, max_str, ":");
236                 max_str -= ret;
237                 rrd_data += ret;
238         }
239
240         return 0;
241 }
242
243 static struct parser_info built_in_parsers[] = {
244         {
245                 .name = "cpu",
246                 .parse = cpu_parser,
247         },
248         {
249                 .name = "mem",
250                 .parse = mem_parser,
251         },
252         {
253                 .name = "cpu_mem",
254                 .parse = cpu_mem_parser,
255         },
256         {
257                 .name = "script",
258                 .parse = script_parser,
259         },
260         {
261                 .name = "netstats",
262                 .parse = netstats_parser,
263         },
264 };
265
266 int register_built_in_parsers(void)
267 {
268         int i, ret;
269
270         for (i = 0; i < ARRAY_SIZE(built_in_parsers); i++) {
271                 ret = register_parser(&built_in_parsers[i]);
272
273                 if (ret)
274                         break;
275         }
276
277         return ret;
278 }