1615ca04a1fc1bdbb2c22650e4397f49f80ee552
[collectd.git] / src / vserver.c
1 /**
2  * collectd - src/vserver.c
3  * Copyright (C) 2006,2007  Sebastian Harl
4  * Copyright (C) 2007,2008  Florian octo Forster
5  *
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License as published by the
8  * Free Software Foundation; only version 2 of the license is applicable.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  *
19  * Authors:
20  *   Sebastian Harl <sh at tokkee.org>
21  *   Florian octo Forster <octo at verplant.org>
22  **/
23
24 #include "collectd.h"
25 #include "common.h"
26 #include "plugin.h"
27
28 #include <dirent.h>
29 #include <sys/types.h>
30
31 #define BUFSIZE 512
32
33 #define PROCDIR "/proc/virtual"
34
35 #if !KERNEL_LINUX
36 # error "No applicable input method."
37 #endif
38
39 static int pagesize = 0;
40
41 static int vserver_init (void)
42 {
43         /* XXX Should we check for getpagesize () in configure?
44          * What's the right thing to do, if there is no getpagesize ()? */
45         pagesize = getpagesize ();
46
47         return (0);
48 } /* static void vserver_init(void) */
49
50 static void traffic_submit (const char *plugin_instance,
51                 const char *type_instance, counter_t rx, counter_t tx)
52 {
53         value_t values[2];
54         value_list_t vl = VALUE_LIST_INIT;
55
56         values[0].counter = rx;
57         values[1].counter = tx;
58
59         vl.values = values;
60         vl.values_len = STATIC_ARRAY_SIZE (values);
61         sstrncpy (vl.host, hostname_g, sizeof (vl.host));
62         sstrncpy (vl.plugin, "vserver", sizeof (vl.plugin));
63         sstrncpy (vl.plugin_instance, plugin_instance, sizeof (vl.plugin_instance));
64         sstrncpy (vl.type, "if_octets", sizeof (vl.type));
65         sstrncpy (vl.type_instance, type_instance, sizeof (vl.type_instance));
66
67         plugin_dispatch_values (&vl);
68 } /* void traffic_submit */
69
70 static void load_submit (const char *plugin_instance,
71                 gauge_t snum, gauge_t mnum, gauge_t lnum)
72 {
73         value_t values[3];
74         value_list_t vl = VALUE_LIST_INIT;
75
76         values[0].gauge = snum;
77         values[1].gauge = mnum;
78         values[2].gauge = lnum;
79
80         vl.values = values;
81         vl.values_len = STATIC_ARRAY_SIZE (values);
82         sstrncpy (vl.host, hostname_g, sizeof (vl.host));
83         sstrncpy (vl.plugin, "vserver", sizeof (vl.plugin));
84         sstrncpy (vl.plugin_instance, plugin_instance, sizeof (vl.plugin_instance));
85         sstrncpy (vl.type, "load", sizeof (vl.type));
86
87         plugin_dispatch_values (&vl);
88 }
89
90 static void submit_gauge (const char *plugin_instance, const char *type,
91                 const char *type_instance, gauge_t value)
92
93 {
94         value_t values[1];
95         value_list_t vl = VALUE_LIST_INIT;
96
97         values[0].gauge = value;
98
99         vl.values = values;
100         vl.values_len = STATIC_ARRAY_SIZE (values);
101         sstrncpy (vl.host, hostname_g, sizeof (vl.host));
102         sstrncpy (vl.plugin, "vserver", sizeof (vl.plugin));
103         sstrncpy (vl.plugin_instance, plugin_instance, sizeof (vl.plugin_instance));
104         sstrncpy (vl.type, type, sizeof (vl.type));
105         sstrncpy (vl.type_instance, type_instance, sizeof (vl.type_instance));
106
107         plugin_dispatch_values (&vl);
108 } /* void submit_gauge */
109
110 static inline long long __get_sock_bytes(const char *s)
111 {
112         while (s[0] != '/')
113                 ++s;
114
115         /* Remove '/' */
116         ++s;
117         return atoll(s);
118 }
119
120 static int vserver_read (void)
121 {
122 #if NAME_MAX < 1024
123 # define DIRENT_BUFFER_SIZE (sizeof (struct dirent) + 1024 + 1)
124 #else
125 # define DIRENT_BUFFER_SIZE (sizeof (struct dirent) + NAME_MAX + 1)
126 #endif
127
128         DIR                     *proc;
129         struct dirent   *dent; /* 42 */
130         char dirent_buffer[DIRENT_BUFFER_SIZE];
131
132         errno = 0;
133         proc = opendir (PROCDIR);
134         if (proc == NULL)
135         {
136                 char errbuf[1024];
137                 ERROR ("vserver plugin: fopen (%s): %s", PROCDIR, 
138                                 sstrerror (errno, errbuf, sizeof (errbuf)));
139                 return (-1);
140         }
141
142         while (42)
143         {
144                 int len;
145                 char file[BUFSIZE];
146
147                 FILE *fh;
148                 char buffer[BUFSIZE];
149
150                 struct stat statbuf;
151                 char *cols[4];
152
153                 int status;
154
155                 status = readdir_r (proc, (struct dirent *) dirent_buffer, &dent);
156                 if (status != 0)
157                 {
158                         char errbuf[4096];
159                         ERROR ("vserver plugin: readdir_r failed: %s",
160                                         sstrerror (errno, errbuf, sizeof (errbuf)));
161                         closedir (proc);
162                         return (-1);
163                 }
164                 else if (dent == NULL)
165                 {
166                         /* end of directory */
167                         break;
168                 }
169
170                 if (dent->d_name[0] == '.')
171                         continue;
172
173                 len = ssnprintf (file, sizeof (file), PROCDIR "/%s", dent->d_name);
174                 if ((len < 0) || (len >= BUFSIZE))
175                         continue;
176                 
177                 status = stat (file, &statbuf);
178                 if (status != 0)
179                 {
180                         char errbuf[4096];
181                         WARNING ("vserver plugin: stat (%s) failed: %s",
182                                         file, sstrerror (errno, errbuf, sizeof (errbuf)));
183                         continue;
184                 }
185                 
186                 if (!S_ISDIR (statbuf.st_mode))
187                         continue;
188
189                 /* socket message accounting */
190                 len = ssnprintf (file, sizeof (file),
191                                 PROCDIR "/%s/cacct", dent->d_name);
192                 if ((len < 0) || ((size_t) len >= sizeof (file)))
193                         continue;
194
195                 if (NULL == (fh = fopen (file, "r")))
196                 {
197                         char errbuf[1024];
198                         ERROR ("Cannot open '%s': %s", file,
199                                         sstrerror (errno, errbuf, sizeof (errbuf)));
200                 }
201
202                 while ((fh != NULL) && (NULL != fgets (buffer, BUFSIZE, fh)))
203                 {
204                         counter_t rx;
205                         counter_t tx;
206                         char *type_instance;
207
208                         if (strsplit (buffer, cols, 4) < 4)
209                                 continue;
210
211                         if (0 == strcmp (cols[0], "UNIX:"))
212                                 type_instance = "unix";
213                         else if (0 == strcmp (cols[0], "INET:"))
214                                 type_instance = "inet";
215                         else if (0 == strcmp (cols[0], "INET6:"))
216                                 type_instance = "inet6";
217                         else if (0 == strcmp (cols[0], "OTHER:"))
218                                 type_instance = "other";
219                         else if (0 == strcmp (cols[0], "UNSPEC:"))
220                                 type_instance = "unspec";
221                         else
222                                 continue;
223
224                         rx = __get_sock_bytes (cols[1]);
225                         tx = __get_sock_bytes (cols[2]);
226                         /* cols[3] == errors */
227
228                         traffic_submit (dent->d_name, type_instance, rx, tx);
229                 } /* while (fgets) */
230
231                 if (fh != NULL)
232                 {
233                         fclose (fh);
234                         fh = NULL;
235                 }
236
237                 /* thread information and load */
238                 len = ssnprintf (file, sizeof (file),
239                                 PROCDIR "/%s/cvirt", dent->d_name);
240                 if ((len < 0) || ((size_t) len >= sizeof (file)))
241                         continue;
242
243                 if (NULL == (fh = fopen (file, "r")))
244                 {
245                         char errbuf[1024];
246                         ERROR ("Cannot open '%s': %s", file,
247                                         sstrerror (errno, errbuf, sizeof (errbuf)));
248                 }
249
250                 while ((fh != NULL) && (NULL != fgets (buffer, BUFSIZE, fh)))
251                 {
252                         int n = strsplit (buffer, cols, 4);
253
254                         if (2 == n)
255                         {
256                                 char   *type_instance;
257                                 gauge_t value;
258
259                                 if (0 == strcmp (cols[0], "nr_threads:"))
260                                         type_instance = "total";
261                                 else if (0 == strcmp (cols[0], "nr_running:"))
262                                         type_instance = "running";
263                                 else if (0 == strcmp (cols[0], "nr_unintr:"))
264                                         type_instance = "uninterruptable";
265                                 else if (0 == strcmp (cols[0], "nr_onhold:"))
266                                         type_instance = "onhold";
267                                 else
268                                         continue;
269
270                                 value = atof (cols[1]);
271                                 submit_gauge (dent->d_name, "vs_threads", type_instance, value);
272                         }
273                         else if (4 == n) {
274                                 if (0 == strcmp (cols[0], "loadavg:"))
275                                 {
276                                         gauge_t snum = atof (cols[1]);
277                                         gauge_t mnum = atof (cols[2]);
278                                         gauge_t lnum = atof (cols[3]);
279                                         load_submit (dent->d_name, snum, mnum, lnum);
280                                 }
281                         }
282                 } /* while (fgets) */
283
284                 if (fh != NULL)
285                 {
286                         fclose (fh);
287                         fh = NULL;
288                 }
289
290                 /* processes and memory usage */
291                 len = ssnprintf (file, sizeof (file),
292                                 PROCDIR "/%s/limit", dent->d_name);
293                 if ((len < 0) || ((size_t) len >= sizeof (file)))
294                         continue;
295
296                 if (NULL == (fh = fopen (file, "r")))
297                 {
298                         char errbuf[1024];
299                         ERROR ("Cannot open '%s': %s", file,
300                                         sstrerror (errno, errbuf, sizeof (errbuf)));
301                 }
302
303                 while ((fh != NULL) && (NULL != fgets (buffer, BUFSIZE, fh)))
304                 {
305                         char *type = "vs_memory";
306                         char *type_instance;
307                         gauge_t value;
308
309                         if (strsplit (buffer, cols, 2) < 2)
310                                 continue;
311
312                         if (0 == strcmp (cols[0], "PROC:"))
313                         {
314                                 type = "vs_processes";
315                                 type_instance = "";
316                                 value = atof (cols[1]);
317                         }
318                         else
319                         {
320                                 if (0 == strcmp (cols[0], "VM:"))
321                                         type_instance = "vm";
322                                 else if (0 == strcmp (cols[0], "VML:"))
323                                         type_instance = "vml";
324                                 else if (0 == strcmp (cols[0], "RSS:"))
325                                         type_instance = "rss";
326                                 else if (0 == strcmp (cols[0], "ANON:"))
327                                         type_instance = "anon";
328                                 else
329                                         continue;
330
331                                 value = atof (cols[1]) * pagesize;
332                         }
333
334                         submit_gauge (dent->d_name, type, type_instance, value);
335                 } /* while (fgets) */
336
337                 if (fh != NULL)
338                 {
339                         fclose (fh);
340                         fh = NULL;
341                 }
342         } /* while (readdir) */
343
344         closedir (proc);
345
346         return (0);
347 } /* int vserver_read */
348
349 void module_register (void)
350 {
351         plugin_register_init ("vserver", vserver_init);
352         plugin_register_read ("vserver", vserver_read);
353 } /* void module_register(void) */
354
355 /* vim: set ts=4 sw=4 noexpandtab : */