1 /**
2 * collectd - src/unixsock.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 * Author:
19 * Florian octo Forster <octo at verplant.org>
20 **/
22 #include "collectd.h"
23 #include "common.h"
24 #include "plugin.h"
25 #include "configfile.h"
26 #include "utils_debug.h"
28 /* Folks without pthread will need to disable this plugin. */
29 #include <pthread.h>
31 #include <sys/socket.h>
32 #include <sys/un.h>
33 #include <sys/poll.h>
35 #include <grp.h>
37 #ifndef UNIX_PATH_MAX
38 # define UNIX_PATH_MAX sizeof (((struct sockaddr_un *)0)->sun_path)
39 #endif
41 #define US_DEFAULT_PATH PREFIX"/var/run/"PACKAGE_NAME"-unixsock"
43 /*
44 * Private data structures
45 */
46 /* linked list of cached values */
47 typedef struct value_cache_s
48 {
49 char name[4*DATA_MAX_NAME_LEN];
50 int values_num;
51 gauge_t *gauge;
52 counter_t *counter;
53 const data_set_t *ds;
54 time_t time;
55 struct value_cache_s *next;
56 } value_cache_t;
58 /*
59 * Private variables
60 */
61 /* valid configuration file keys */
62 static const char *config_keys[] =
63 {
64 "SocketFile",
65 "SocketGroup",
66 "SocketPerms",
67 NULL
68 };
69 static int config_keys_num = 3;
71 /* socket configuration */
72 static int sock_fd = -1;
73 static char *sock_file = NULL;
74 static char *sock_group = NULL;
75 static int sock_perms = S_IRWXU | S_IRWXG;
77 static pthread_t listen_thread = -1;
79 /* Linked list and auxilliary variables for saving values */
80 static value_cache_t *cache_head = NULL;
81 static pthread_mutex_t cache_lock = PTHREAD_MUTEX_INITIALIZER;
82 static unsigned int cache_oldest = UINT_MAX;
84 /*
85 * Functions
86 */
87 static value_cache_t *cache_search (const char *name)
88 {
89 value_cache_t *vc;
91 for (vc = cache_head; vc != NULL; vc = vc->next)
92 {
93 if (strcmp (vc->name, name) == 0)
94 break;
95 } /* for vc = cache_head .. NULL */
97 return (vc);
98 } /* value_cache_t *cache_search */
100 static int cache_alloc_name (char *ret, int ret_len,
101 const char *hostname,
102 const char *plugin, const char *plugin_instance,
103 const char *type, const char *type_instance)
104 {
105 int status;
107 assert (plugin != NULL);
108 assert (type != NULL);
110 if ((plugin_instance == NULL) || (strlen (plugin_instance) == 0))
111 {
112 if ((type_instance == NULL) || (strlen (type_instance) == 0))
113 status = snprintf (ret, ret_len, "%s/%s/%s",
114 hostname, plugin, type);
115 else
116 status = snprintf (ret, ret_len, "%s/%s/%s-%s",
117 hostname, plugin, type, type_instance);
118 }
119 else
120 {
121 if ((type_instance == NULL) || (strlen (type_instance) == 0))
122 status = snprintf (ret, ret_len, "%s/%s-%s/%s",
123 hostname, plugin, plugin_instance, type);
124 else
125 status = snprintf (ret, ret_len, "%s/%s-%s/%s-%s",
126 hostname, plugin, plugin_instance, type, type_instance);
127 }
129 if ((status < 1) || (status >= ret_len))
130 return (-1);
131 return (0);
132 } /* int cache_alloc_name */
134 static int cache_insert (const data_set_t *ds, const value_list_t *vl)
135 {
136 /* We're called from `cache_update' so we don't need to lock the mutex */
137 value_cache_t *vc;
138 int i;
140 DBG ("ds->ds_num = %i; vl->values_len = %i;",
141 ds->ds_num, vl->values_len);
142 assert (ds->ds_num == vl->values_len);
144 vc = (value_cache_t *) malloc (sizeof (value_cache_t));
145 if (vc == NULL)
146 {
147 pthread_mutex_unlock (&cache_lock);
148 syslog (LOG_ERR, "unixsock plugin: malloc failed: %s",
149 strerror (errno));
150 return (-1);
151 }
153 vc->gauge = (gauge_t *) malloc (sizeof (gauge_t) * vl->values_len);
154 if (vc->gauge == NULL)
155 {
156 pthread_mutex_unlock (&cache_lock);
157 syslog (LOG_ERR, "unixsock plugin: malloc failed: %s",
158 strerror (errno));
159 free (vc);
160 return (-1);
161 }
163 vc->counter = (counter_t *) malloc (sizeof (counter_t) * vl->values_len);
164 if (vc->counter == NULL)
165 {
166 pthread_mutex_unlock (&cache_lock);
167 syslog (LOG_ERR, "unixsock plugin: malloc failed: %s",
168 strerror (errno));
169 free (vc->gauge);
170 free (vc);
171 return (-1);
172 }
174 if (cache_alloc_name (vc->name, sizeof (vc->name),
175 vl->host, vl->plugin, vl->plugin_instance,
176 ds->type, vl->type_instance) != 0)
177 {
178 pthread_mutex_unlock (&cache_lock);
179 syslog (LOG_ERR, "unixsock plugin: cache_alloc_name failed.");
180 free (vc->counter);
181 free (vc->gauge);
182 free (vc);
183 return (-1);
184 }
186 for (i = 0; i < ds->ds_num; i++)
187 {
188 if (ds->ds[i].type == DS_TYPE_COUNTER)
189 {
190 vc->gauge[i] = 0.0;
191 vc->counter[i] = vl->values[i].counter;
192 }
193 else if (ds->ds[i].type == DS_TYPE_GAUGE)
194 {
195 vc->gauge[i] = vl->values[i].gauge;
196 vc->counter[i] = 0;
197 }
198 else
199 {
200 vc->gauge[i] = 0.0;
201 vc->counter[i] = 0;
202 }
203 }
204 vc->values_num = ds->ds_num;
205 vc->ds = ds;
207 vc->next = cache_head;
208 cache_head = vc;
210 vc->time = vl->time;
211 if (vc->time < cache_oldest)
212 cache_oldest = vc->time;
214 pthread_mutex_unlock (&cache_lock);
215 return (0);
216 } /* int cache_insert */
218 static int cache_update (const data_set_t *ds, const value_list_t *vl)
219 {
220 char name[4*DATA_MAX_NAME_LEN];;
221 value_cache_t *vc;
222 int i;
224 if (cache_alloc_name (name, sizeof (name),
225 vl->host,
226 vl->plugin, vl->plugin_instance,
227 ds->type, vl->type_instance) != 0)
228 return (-1);
230 pthread_mutex_lock (&cache_lock);
232 vc = cache_search (name);
234 if (vc == NULL)
235 return (cache_insert (ds, vl));
237 assert (vc->values_num == ds->ds_num);
238 assert (vc->values_num == vl->values_len);
240 /*
241 * Update the values. This is possibly a lot more that you'd expect
242 * because we honor min and max values and handle counter overflows here.
243 */
244 for (i = 0; i < ds->ds_num; i++)
245 {
246 if (ds->ds[i].type == DS_TYPE_COUNTER)
247 {
248 if (vl->values[i].counter < vc->counter[i])
249 {
250 if (vl->values[i].counter <= 4294967295U)
251 {
252 vc->gauge[i] = ((4294967295U - vl->values[i].counter)
253 + vc->counter[i]) / (vl->time - vc->time);
254 }
255 else
256 {
257 vc->gauge[i] = ((18446744073709551615ULL - vl->values[i].counter)
258 + vc->counter[i]) / (vl->time - vc->time);
259 }
260 }
261 else
262 {
263 vc->gauge[i] = (vl->values[i].counter - vc->counter[i])
264 / (vl->time - vc->time);
265 }
267 DBG ("name = %s; old counter: %llu; new counter: %llu; rate: %lf;",
268 name,
269 vc->counter[i], vl->values[i].counter,
270 vc->gauge[i]);
272 vc->counter[i] = vl->values[i].counter;
273 }
274 else if (ds->ds[i].type == DS_TYPE_GAUGE)
275 {
276 vc->gauge[i] = vl->values[i].gauge;
277 vc->counter[i] = 0;
279 DBG ("name, %s; gauge: %lf;",
280 name, vc->gauge[i]);
281 }
282 else
283 {
284 vc->gauge[i] = NAN;
285 vc->counter[i] = 0;
286 }
288 if ((vc->gauge[i] == NAN)
289 || ((ds->ds[i].min != NAN) && (vc->gauge[i] < ds->ds[i].min))
290 || ((ds->ds[i].max != NAN) && (vc->gauge[i] > ds->ds[i].max)))
291 vc->gauge[i] = NAN;
292 } /* for i = 0 .. ds->ds_num */
294 vc->ds = ds;
295 vc->time = vl->time;
297 if (vc->time < cache_oldest)
298 cache_oldest = vc->time;
300 pthread_mutex_unlock (&cache_lock);
301 return (0);
302 } /* int cache_update */
304 static void cache_flush (int max_age)
305 {
306 value_cache_t *this;
307 value_cache_t *prev;
308 time_t now;
310 pthread_mutex_lock (&cache_lock);
312 now = time (NULL);
314 if ((now - cache_oldest) <= max_age)
315 {
316 pthread_mutex_unlock (&cache_lock);
317 return;
318 }
320 cache_oldest = now;
322 prev = NULL;
323 this = cache_head;
325 while (this != NULL)
326 {
327 if ((now - this->time) <= max_age)
328 {
329 if (this->time < cache_oldest)
330 cache_oldest = this->time;
332 prev = this;
333 this = this->next;
334 continue;
335 }
337 if (prev == NULL)
338 cache_head = this->next;
339 else
340 prev->next = this->next;
342 free (this->gauge);
343 free (this->counter);
344 free (this);
346 if (prev == NULL)
347 this = cache_head;
348 else
349 this = prev->next;
350 } /* while (this != NULL) */
352 pthread_mutex_unlock (&cache_lock);
353 } /* int cache_flush */
355 static int us_open_socket (void)
356 {
357 struct sockaddr_un sa;
358 int status;
360 sock_fd = socket (PF_UNIX, SOCK_STREAM, 0);
361 if (sock_fd < 0)
362 {
363 syslog (LOG_ERR, "unixsock plugin: socket failed: %s",
364 strerror (errno));
365 return (-1);
366 }
368 memset (&sa, '\0', sizeof (sa));
369 sa.sun_family = AF_UNIX;
370 strncpy (sa.sun_path, (sock_file != NULL) ? sock_file : US_DEFAULT_PATH,
371 sizeof (sa.sun_path) - 1);
372 /* unlink (sa.sun_path); */
374 status = bind (sock_fd, (struct sockaddr *) &sa, sizeof (sa));
375 if (status != 0)
376 {
377 DBG ("bind failed: %s; sa.sun_path = %s",
378 strerror (errno), sa.sun_path);
379 syslog (LOG_ERR, "unixsock plugin: bind failed: %s",
380 strerror (errno));
381 close (sock_fd);
382 sock_fd = -1;
383 return (-1);
384 }
386 status = listen (sock_fd, 8);
387 if (status != 0)
388 {
389 syslog (LOG_ERR, "unixsock plugin: listen failed: %s",
390 strerror (errno));
391 close (sock_fd);
392 sock_fd = -1;
393 return (-1);
394 }
396 do
397 {
398 struct group *g;
400 errno = 0;
401 g = getgrnam ((sock_group != NULL) ? sock_group : COLLECTD_GRP_NAME);
403 if (errno != 0)
404 {
405 syslog (LOG_WARNING, "unixsock plugin: getgrnam (%s) failed: %s",
406 (sock_group != NULL) ? sock_group : COLLECTD_GRP_NAME,
407 strerror (errno));
408 break;
409 }
411 if (g == NULL)
412 break;
414 if (chown ((sock_file != NULL) ? sock_file : US_DEFAULT_PATH,
415 (uid_t) -1, g->gr_gid) != 0)
416 {
417 syslog (LOG_WARNING, "unixsock plugin: chown (%s, -1, %i) failed: %s",
418 (sock_file != NULL) ? sock_file : US_DEFAULT_PATH,
419 (int) g->gr_gid,
420 strerror (errno));
421 }
422 } while (0);
424 return (0);
425 } /* int us_open_socket */
427 static int us_handle_getval (FILE *fh, char **fields, int fields_num)
428 {
429 char *hostname = fields[1];
430 char *plugin;
431 char *plugin_instance;
432 char *type;
433 char *type_instance;
434 char name[4*DATA_MAX_NAME_LEN];
435 value_cache_t *vc;
436 int status;
437 int i;
439 if (fields_num != 2)
440 return (-1);
442 plugin = strchr (hostname, '/');
443 if (plugin == NULL)
444 return (-1);
445 *plugin = '\0'; plugin++;
447 type = strchr (plugin, '/');
448 if (type == NULL)
449 return (-1);
450 *type = '\0'; type++;
452 plugin_instance = strchr (plugin, '-');
453 if (plugin_instance != NULL)
454 {
455 *plugin_instance = '\0';
456 plugin_instance++;
457 }
459 type_instance = strchr (type, '-');
460 if (type_instance != NULL)
461 {
462 *type_instance = '\0';
463 type_instance++;
464 }
466 status = cache_alloc_name (name, sizeof (name),
467 hostname, plugin, plugin_instance, type, type_instance);
468 if (status != 0)
469 return (-1);
471 pthread_mutex_lock (&cache_lock);
473 DBG ("vc = cache_search (%s)", name);
474 vc = cache_search (name);
476 if (vc == NULL)
477 {
478 DBG ("Did not find cache entry.");
479 fprintf (fh, "-1 No such value");
480 }
481 else
482 {
483 DBG ("Found cache entry.");
484 fprintf (fh, "%i", vc->values_num);
485 for (i = 0; i < vc->values_num; i++)
486 {
487 fprintf (fh, " %s=", vc->ds->ds[i].name);
488 if (vc->gauge[i] == NAN)
489 fprintf (fh, "NaN");
490 else
491 fprintf (fh, "%12e", vc->gauge[i]);
492 }
493 }
495 /* Free the mutex as soon as possible and definitely before flushing */
496 pthread_mutex_unlock (&cache_lock);
498 fprintf (fh, "\n");
499 fflush (fh);
501 return (0);
502 } /* int us_handle_getval */
504 static void *us_handle_client (void *arg)
505 {
506 int fd;
507 FILE *fh;
508 char buffer[1024];
509 char *fields[128];
510 int fields_num;
512 fd = *((int *) arg);
513 free (arg);
514 arg = NULL;
516 DBG ("Reading from fd #%i", fd);
518 fh = fdopen (fd, "r+");
519 if (fh == NULL)
520 {
521 syslog (LOG_ERR, "unixsock plugin: fdopen failed: %s",
522 strerror (errno));
523 close (fd);
524 pthread_exit ((void *) 1);
525 }
527 while (fgets (buffer, sizeof (buffer), fh) != NULL)
528 {
529 int len;
531 len = strlen (buffer);
532 while ((len > 0)
533 && ((buffer[len - 1] == '\n') || (buffer[len - 1] == '\r')))
534 buffer[--len] = '\0';
536 if (len == 0)
537 continue;
539 DBG ("fgets -> buffer = %s; len = %i;", buffer, len);
541 fields_num = strsplit (buffer, fields,
542 sizeof (fields) / sizeof (fields[0]));
544 if (fields_num < 1)
545 {
546 close (fd);
547 break;
548 }
550 if (strcasecmp (fields[0], "getval") == 0)
551 {
552 us_handle_getval (fh, fields, fields_num);
553 }
554 else
555 {
556 fprintf (fh, "Unknown command: %s\n", fields[0]);
557 fflush (fh);
558 }
559 } /* while (fgets) */
561 DBG ("Exiting..");
562 close (fd);
564 pthread_exit ((void *) 0);
565 } /* void *us_handle_client */
567 static void *us_server_thread (void *arg)
568 {
569 int status;
570 int *remote_fd;
571 pthread_t th;
573 if (us_open_socket () != 0)
574 pthread_exit ((void *) 1);
576 while (42)
577 {
578 DBG ("Calling accept..");
579 status = accept (sock_fd, NULL, NULL);
580 if (status < 0)
581 {
582 if (errno == EINTR)
583 continue;
585 syslog (LOG_ERR, "unixsock plugin: accept failed: %s",
586 strerror (errno));
587 close (sock_fd);
588 sock_fd = -1;
589 pthread_exit ((void *) 1);
590 }
592 remote_fd = (int *) malloc (sizeof (int));
593 if (remote_fd == NULL)
594 {
595 syslog (LOG_WARNING, "unixsock plugin: malloc failed: %s",
596 strerror (errno));
597 close (status);
598 continue;
599 }
600 *remote_fd = status;
602 DBG ("Spawning child to handle connection on fd #%i", *remote_fd);
604 status = pthread_create (&th, NULL, us_handle_client, (void *) remote_fd);
605 if (status != 0)
606 {
607 syslog (LOG_WARNING, "unixsock plugin: pthread_create failed: %s",
608 strerror (status));
609 close (*remote_fd);
610 free (remote_fd);
611 continue;
612 }
613 } /* while (42) */
615 return ((void *) 0);
616 } /* void *us_server_thread */
618 static int us_config (const char *key, const char *val)
619 {
620 if (strcasecmp (key, "SocketFile") == 0)
621 {
622 sfree (sock_file);
623 sock_file = strdup (val);
624 }
625 else if (strcasecmp (key, "SocketGroup") == 0)
626 {
627 sfree (sock_group);
628 sock_group = strdup (val);
629 }
630 else if (strcasecmp (key, "SocketPerms") == 0)
631 {
632 sock_perms = (int) strtol (val, NULL, 8);
633 }
634 else
635 {
636 return (-1);
637 }
639 return (0);
640 } /* int us_config */
642 static int us_init (void)
643 {
644 int status;
646 status = pthread_create (&listen_thread, NULL, us_server_thread, NULL);
647 if (status != 0)
648 {
649 syslog (LOG_ERR, "unixsock plugin: pthread_create failed: %s",
650 strerror (status));
651 return (-1);
652 }
654 return (0);
655 } /* int us_init */
657 static int us_shutdown (void)
658 {
659 void *ret;
661 if (listen_thread >= 0)
662 {
663 pthread_kill (listen_thread, SIGTERM);
664 pthread_join (listen_thread, &ret);
665 }
667 return (0);
668 } /* int us_shutdown */
670 static int us_write (const data_set_t *ds, const value_list_t *vl)
671 {
672 cache_update (ds, vl);
673 cache_flush (2 * atoi (COLLECTD_STEP));
675 return (0);
676 }
678 void module_register (void)
679 {
680 plugin_register_config ("unixsock", us_config,
681 config_keys, config_keys_num);
682 plugin_register_init ("unixsock", us_init);
683 plugin_register_write ("unixsock", us_write);
684 plugin_register_shutdown ("unixsock", us_shutdown);
685 } /* void module_register (void) */
687 /* vim: set sw=4 ts=4 sts=4 tw=78 : */