2 * collectd - src/unixsock.c
3 * Copyright (C) 2007,2008 Florian octo Forster
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.
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.
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
19 * Florian octo Forster <octo at verplant.org>
25 #include "configfile.h"
27 #include "utils_cmd_flush.h"
28 #include "utils_cmd_getval.h"
29 #include "utils_cmd_listval.h"
30 #include "utils_cmd_putval.h"
31 #include "utils_cmd_putnotif.h"
33 /* Folks without pthread will need to disable this plugin. */
36 #include <sys/socket.h>
43 # define UNIX_PATH_MAX sizeof (((struct sockaddr_un *)0)->sun_path)
46 #define US_DEFAULT_PATH LOCALSTATEDIR"/run/"PACKAGE_NAME"-unixsock"
51 /* valid configuration file keys */
52 static const char *config_keys[] =
58 static int config_keys_num = STATIC_ARRAY_SIZE (config_keys);
62 /* socket configuration */
63 static int sock_fd = -1;
64 static char *sock_file = NULL;
65 static char *sock_group = NULL;
66 static int sock_perms = S_IRWXU | S_IRWXG;
68 static pthread_t listen_thread = (pthread_t) 0;
73 static int us_open_socket (void)
75 struct sockaddr_un sa;
78 sock_fd = socket (PF_UNIX, SOCK_STREAM, 0);
82 ERROR ("unixsock plugin: socket failed: %s",
83 sstrerror (errno, errbuf, sizeof (errbuf)));
87 memset (&sa, '\0', sizeof (sa));
88 sa.sun_family = AF_UNIX;
89 sstrncpy (sa.sun_path, (sock_file != NULL) ? sock_file : US_DEFAULT_PATH,
90 sizeof (sa.sun_path));
91 /* unlink (sa.sun_path); */
93 DEBUG ("unixsock plugin: socket path = %s", sa.sun_path);
95 status = bind (sock_fd, (struct sockaddr *) &sa, sizeof (sa));
99 sstrerror (errno, errbuf, sizeof (errbuf));
100 ERROR ("unixsock plugin: bind failed: %s", errbuf);
106 chmod (sa.sun_path, sock_perms);
108 status = listen (sock_fd, 8);
112 ERROR ("unixsock plugin: listen failed: %s",
113 sstrerror (errno, errbuf, sizeof (errbuf)));
126 grpname = (sock_group != NULL) ? sock_group : COLLECTD_GRP_NAME;
129 status = getgrnam_r (grpname, &sg, grbuf, sizeof (grbuf), &g);
133 WARNING ("unixsock plugin: getgrnam_r (%s) failed: %s", grpname,
134 sstrerror (errno, errbuf, sizeof (errbuf)));
139 WARNING ("unixsock plugin: No such group: `%s'",
144 if (chown ((sock_file != NULL) ? sock_file : US_DEFAULT_PATH,
145 (uid_t) -1, g->gr_gid) != 0)
148 WARNING ("unixsock plugin: chown (%s, -1, %i) failed: %s",
149 (sock_file != NULL) ? sock_file : US_DEFAULT_PATH,
151 sstrerror (errno, errbuf, sizeof (errbuf)));
156 } /* int us_open_socket */
158 static void *us_handle_client (void *arg)
167 DEBUG ("Reading from fd #%i", fd);
169 fhin = fdopen (fd, "r");
173 ERROR ("unixsock plugin: fdopen failed: %s",
174 sstrerror (errno, errbuf, sizeof (errbuf)));
176 pthread_exit ((void *) 1);
179 fhout = fdopen (fd, "w");
183 ERROR ("unixsock plugin: fdopen failed: %s",
184 sstrerror (errno, errbuf, sizeof (errbuf)));
185 fclose (fhin); /* this closes fd as well */
186 pthread_exit ((void *) 1);
189 /* change output buffer to line buffered mode */
190 if (setvbuf (fhout, NULL, _IOLBF, 0) != 0)
193 ERROR ("unixsock plugin: setvbuf failed: %s",
194 sstrerror (errno, errbuf, sizeof (errbuf)));
197 pthread_exit ((void *) 1);
203 char buffer_copy[1024];
209 if (fgets (buffer, sizeof (buffer), fhin) == NULL)
214 WARNING ("unixsock plugin: failed to read from socket #%i: %s",
216 sstrerror (errno, errbuf, sizeof (errbuf)));
221 len = strlen (buffer);
223 && ((buffer[len - 1] == '\n') || (buffer[len - 1] == '\r')))
224 buffer[--len] = '\0';
229 sstrncpy (buffer_copy, buffer, sizeof (buffer_copy));
231 fields_num = strsplit (buffer_copy, fields,
232 sizeof (fields) / sizeof (fields[0]));
240 if (strcasecmp (fields[0], "getval") == 0)
242 handle_getval (fhout, fields, fields_num);
244 else if (strcasecmp (fields[0], "putval") == 0)
246 handle_putval (fhout, fields, fields_num);
248 else if (strcasecmp (fields[0], "listval") == 0)
250 handle_listval (fhout, fields, fields_num);
252 else if (strcasecmp (fields[0], "putnotif") == 0)
254 handle_putnotif (fhout, fields, fields_num);
256 else if (strcasecmp (fields[0], "flush") == 0)
258 handle_flush (fhout, buffer);
262 if (fprintf (fhout, "-1 Unknown command: %s\n", fields[0]) < 0)
265 WARNING ("unixsock plugin: failed to write to socket #%i: %s",
267 sstrerror (errno, errbuf, sizeof (errbuf)));
271 } /* while (fgets) */
277 pthread_exit ((void *) 0);
279 } /* void *us_handle_client */
281 static void *us_server_thread (void *arg)
286 pthread_attr_t th_attr;
288 if (us_open_socket () != 0)
289 pthread_exit ((void *) 1);
293 DEBUG ("unixsock plugin: Calling accept..");
294 status = accept (sock_fd, NULL, NULL);
302 ERROR ("unixsock plugin: accept failed: %s",
303 sstrerror (errno, errbuf, sizeof (errbuf)));
306 pthread_exit ((void *) 1);
309 remote_fd = (int *) malloc (sizeof (int));
310 if (remote_fd == NULL)
313 WARNING ("unixsock plugin: malloc failed: %s",
314 sstrerror (errno, errbuf, sizeof (errbuf)));
320 DEBUG ("Spawning child to handle connection on fd #%i", *remote_fd);
322 pthread_attr_init (&th_attr);
323 pthread_attr_setdetachstate (&th_attr, PTHREAD_CREATE_DETACHED);
325 status = pthread_create (&th, &th_attr, us_handle_client, (void *) remote_fd);
329 WARNING ("unixsock plugin: pthread_create failed: %s",
330 sstrerror (errno, errbuf, sizeof (errbuf)));
340 status = unlink ((sock_file != NULL) ? sock_file : US_DEFAULT_PATH);
344 NOTICE ("unixsock plugin: unlink (%s) failed: %s",
345 (sock_file != NULL) ? sock_file : US_DEFAULT_PATH,
346 sstrerror (errno, errbuf, sizeof (errbuf)));
350 } /* void *us_server_thread */
352 static int us_config (const char *key, const char *val)
354 if (strcasecmp (key, "SocketFile") == 0)
356 char *new_sock_file = strdup (val);
357 if (new_sock_file == NULL)
361 sock_file = new_sock_file;
363 else if (strcasecmp (key, "SocketGroup") == 0)
365 char *new_sock_group = strdup (val);
366 if (new_sock_group == NULL)
370 sock_group = new_sock_group;
372 else if (strcasecmp (key, "SocketPerms") == 0)
374 sock_perms = (int) strtol (val, NULL, 8);
382 } /* int us_config */
384 static int us_init (void)
390 status = pthread_create (&listen_thread, NULL, us_server_thread, NULL);
394 ERROR ("unixsock plugin: pthread_create failed: %s",
395 sstrerror (errno, errbuf, sizeof (errbuf)));
402 static int us_shutdown (void)
408 if (listen_thread != (pthread_t) 0)
410 pthread_kill (listen_thread, SIGTERM);
411 pthread_join (listen_thread, &ret);
412 listen_thread = (pthread_t) 0;
415 plugin_unregister_init ("unixsock");
416 plugin_unregister_shutdown ("unixsock");
419 } /* int us_shutdown */
421 void module_register (void)
423 plugin_register_config ("unixsock", us_config,
424 config_keys, config_keys_num);
425 plugin_register_init ("unixsock", us_init);
426 plugin_register_shutdown ("unixsock", us_shutdown);
427 } /* void module_register (void) */
429 /* vim: set sw=4 ts=4 sts=4 tw=78 : */