2 * collectd - src/exec.c
3 * Copyright (C) 2007-2010 Florian octo Forster
4 * Copyright (C) 2007-2009 Sebastian Harl
5 * Copyright (C) 2008 Peter Holik
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; only version 2 of the License is applicable.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 * Florian octo Forster <octo at collectd.org>
22 * Sebastian Harl <sh at tokkee.org>
23 * Peter Holik <peter at holik.at>
26 #define _DEFAULT_SOURCE
27 #define _BSD_SOURCE /* For setgroups */
32 #include "utils/common/common.h"
34 #include "utils/cmds/putnotif.h"
35 #include "utils/cmds/putval.h"
40 #include <sys/types.h>
42 #ifdef HAVE_SYS_CAPABILITY_H
43 #include <sys/capability.h>
46 #define PL_NORMAL 0x01
47 #define PL_NOTIF_ACTION 0x02
49 #define PL_RUNNING 0x10
55 * Access to this structure is serialized using the `pl_lock' lock and the
56 * `PL_RUNNING' flag. The execution of notifications is *not* serialized, so
57 * all functions used to handle notifications MUST NOT write to this structure.
58 * The `pid' and `status' fields are thus unused if the `PL_NOTIF_ACTION' flag
60 * The `PL_RUNNING' flag is set in `exec_read' and unset in `exec_read_one'.
62 struct program_list_s;
63 typedef struct program_list_s program_list_t;
64 struct program_list_s {
75 typedef struct program_list_and_notification_s {
78 } program_list_and_notification_t;
83 const long int MAX_GRBUF_SIZE = 65536;
88 static program_list_t *pl_head;
89 static pthread_mutex_t pl_lock = PTHREAD_MUTEX_INITIALIZER;
94 static void sigchld_handler(int __attribute__((unused)) signal) /* {{{ */
98 while ((pid = waitpid(-1, &status, WNOHANG)) > 0) {
100 for (pl = pl_head; pl != NULL; pl = pl->next)
105 } /* while (waitpid) */
106 } /* void sigchld_handler }}} */
108 static int exec_config_exec(oconfig_item_t *ci) /* {{{ */
114 if (ci->children_num != 0) {
115 WARNING("exec plugin: The config option `%s' may not be a block.", ci->key);
118 if (ci->values_num < 2) {
119 WARNING("exec plugin: The config option `%s' needs at least two "
124 if ((ci->values[0].type != OCONFIG_TYPE_STRING) ||
125 (ci->values[1].type != OCONFIG_TYPE_STRING)) {
126 WARNING("exec plugin: The first two arguments to the `%s' option must "
127 "be string arguments.",
132 pl = calloc(1, sizeof(*pl));
134 ERROR("exec plugin: calloc failed.");
138 if (strcasecmp("NotificationExec", ci->key) == 0)
139 pl->flags |= PL_NOTIF_ACTION;
141 pl->flags |= PL_NORMAL;
143 pl->user = strdup(ci->values[0].value.string);
144 if (pl->user == NULL) {
145 ERROR("exec plugin: strdup failed.");
150 pl->group = strchr(pl->user, ':');
151 if (pl->group != NULL) {
156 pl->exec = strdup(ci->values[1].value.string);
157 if (pl->exec == NULL) {
158 ERROR("exec plugin: strdup failed.");
164 pl->argv = calloc(ci->values_num, sizeof(*pl->argv));
165 if (pl->argv == NULL) {
166 ERROR("exec plugin: calloc failed.");
174 char *tmp = strrchr(ci->values[1].value.string, '/');
176 sstrncpy(buffer, ci->values[1].value.string, sizeof(buffer));
178 sstrncpy(buffer, tmp + 1, sizeof(buffer));
180 pl->argv[0] = strdup(buffer);
181 if (pl->argv[0] == NULL) {
182 ERROR("exec plugin: strdup failed.");
190 for (i = 1; i < (ci->values_num - 1); i++) {
191 if (ci->values[i + 1].type == OCONFIG_TYPE_STRING) {
192 pl->argv[i] = strdup(ci->values[i + 1].value.string);
194 if (ci->values[i + 1].type == OCONFIG_TYPE_NUMBER) {
195 snprintf(buffer, sizeof(buffer), "%lf", ci->values[i + 1].value.number);
197 if (ci->values[i + 1].value.boolean)
198 sstrncpy(buffer, "true", sizeof(buffer));
200 sstrncpy(buffer, "false", sizeof(buffer));
203 pl->argv[i] = strdup(buffer);
206 if (pl->argv[i] == NULL) {
207 ERROR("exec plugin: strdup failed.");
212 if (i < (ci->values_num - 1)) {
223 for (i = 0; pl->argv[i] != NULL; i++) {
224 DEBUG("exec plugin: argv[%i] = %s", i, pl->argv[i]);
231 } /* int exec_config_exec }}} */
233 static int exec_config(oconfig_item_t *ci) /* {{{ */
235 for (int i = 0; i < ci->children_num; i++) {
236 oconfig_item_t *child = ci->children + i;
237 if ((strcasecmp("Exec", child->key) == 0) ||
238 (strcasecmp("NotificationExec", child->key) == 0))
239 exec_config_exec(child);
241 WARNING("exec plugin: Unknown config option `%s'.", child->key);
246 } /* int exec_config }}} */
248 #if !defined(HAVE_SETENV)
249 static char env_interval[64];
250 // max hostname len is 255, so this should be enough
251 static char env_hostname[300];
254 static void set_environment(void) /* {{{ */
259 snprintf(buffer, sizeof(buffer), "%.3f",
260 CDTIME_T_TO_DOUBLE(plugin_get_interval()));
261 setenv("COLLECTD_INTERVAL", buffer, /* overwrite = */ 1);
263 sstrncpy(buffer, hostname_g, sizeof(buffer));
264 setenv("COLLECTD_HOSTNAME", buffer, /* overwrite = */ 1);
266 snprintf(env_interval, sizeof(env_interval), "COLLECTD_INTERVAL=%.3f",
267 CDTIME_T_TO_DOUBLE(plugin_get_interval()));
268 putenv(env_interval);
270 snprintf(env_hostname, sizeof(env_hostname), "COLLECTD_HOSTNAME=%s",
272 putenv(env_hostname);
274 } /* }}} void set_environment */
276 static void unset_environment(void) /* {{{ */
279 unsetenv("COLLECTD_INTERVAL");
280 unsetenv("COLLECTD_HOSTNAME");
282 snprintf(env_interval, sizeof(env_interval), "COLLECTD_INTERVAL");
283 putenv(env_interval);
284 snprintf(env_hostname, sizeof(env_hostname), "COLLECTD_HOSTNAME");
285 putenv(env_hostname);
287 } /* }}} void unset_environment */
289 __attribute__((noreturn)) static void exec_child(program_list_t *pl, int uid,
290 int gid, int egid) /* {{{ */
302 if ((gid != egid) && (egid != -1)) {
307 setgroups(glist_len, glist);
309 #endif /* HAVE_SETGROUPS */
311 status = setgid(gid);
313 ERROR("exec plugin: setgid (%i) failed: %s", gid, STRERRNO);
318 status = setegid(egid);
320 ERROR("exec plugin: setegid (%i) failed: %s", egid, STRERRNO);
325 status = setuid(uid);
327 ERROR("exec plugin: setuid (%i) failed: %s", uid, STRERRNO);
331 execvp(pl->exec, pl->argv);
333 ERROR("exec plugin: Failed to execute ``%s'': %s", pl->exec, STRERRNO);
335 } /* void exec_child }}} */
337 static void reset_signal_mask(void) /* {{{ */
342 sigprocmask(SIG_SETMASK, &ss, /* old mask = */ NULL);
343 } /* }}} void reset_signal_mask */
345 static int create_pipe(int fd_pipe[2]) /* {{{ */
349 status = pipe(fd_pipe);
351 ERROR("exec plugin: pipe failed: %s", STRERRNO);
356 } /* }}} int create_pipe */
358 static void close_pipe(int fd_pipe[2]) /* {{{ */
360 if (fd_pipe[0] != -1)
363 if (fd_pipe[1] != -1)
365 } /* }}} void close_pipe */
368 * Get effective group ID from group name.
370 * pl :program list struct with group name
371 * gid :group id to fallback in case egid cannot be determined.
373 * egid effective group id if successfull,
374 * -1 if group is not defined/not found.
375 * -2 for any buffer allocation error.
377 static int getegr_id(program_list_t *pl, int gid) /* {{{ */
379 if (pl->group == NULL) {
382 if (strcmp(pl->group, "") == 0) {
385 struct group *gr_ptr = NULL;
388 long int grbuf_size = sysconf(_SC_GETGR_R_SIZE_MAX);
390 grbuf_size = sysconf(_SC_PAGESIZE);
398 temp = realloc(grbuf, grbuf_size);
400 ERROR("exec plugin: getegr_id for %s: realloc buffer[%ld] failed ",
401 pl->group, grbuf_size);
406 if (getgrnam_r(pl->group, &gr, grbuf, grbuf_size, &gr_ptr) == 0) {
408 if (gr_ptr == NULL) {
409 ERROR("exec plugin: No such group: `%s'", pl->group);
413 } else if (errno == ERANGE) {
414 grbuf_size += grbuf_size; // increment buffer size and try again
416 ERROR("exec plugin: getegr_id failed %s", STRERRNO);
420 } while (grbuf_size <= MAX_GRBUF_SIZE);
421 ERROR("exec plugin: getegr_id Max grbuf size reached for %s", pl->group);
427 * Creates three pipes (one for reading, one for writing and one for errors),
428 * forks a child, sets up the pipes so that fd_in is connected to STDIN of
429 * the child and fd_out is connected to STDOUT and fd_err is connected to STDERR
430 * of the child. Then is calls `exec_child'.
432 static int fork_child(program_list_t *pl, int *fd_in, int *fd_out,
433 int *fd_err) /* {{{ */
435 int fd_pipe_in[2] = {-1, -1};
436 int fd_pipe_out[2] = {-1, -1};
437 int fd_pipe_err[2] = {-1, -1};
445 struct passwd *sp_ptr;
451 long int nambuf_size = sysconf(_SC_GETPW_R_SIZE_MAX);
452 if (nambuf_size <= 0)
453 nambuf_size = sysconf(_SC_PAGESIZE);
454 if (nambuf_size <= 0)
456 char nambuf[nambuf_size];
458 if ((create_pipe(fd_pipe_in) == -1) || (create_pipe(fd_pipe_out) == -1) ||
459 (create_pipe(fd_pipe_err) == -1))
463 status = getpwnam_r(pl->user, &sp, nambuf, sizeof(nambuf), &sp_ptr);
465 ERROR("exec plugin: Failed to get user information for user ``%s'': %s",
466 pl->user, STRERROR(status));
470 if (sp_ptr == NULL) {
471 ERROR("exec plugin: No such user: `%s'", pl->user);
478 ERROR("exec plugin: Cowardly refusing to exec program as root.");
482 /* The group configured in the configfile is set as effective group, because
483 * this way the forked process can (re-)gain the user's primary group. */
484 egid = getegr_id(pl, gid);
493 ERROR("exec plugin: fork failed: %s", STRERRNO);
495 } else if (pid == 0) {
498 /* Close all file descriptors but the pipe end we need. */
499 fd_num = getdtablesize();
500 for (int fd = 0; fd < fd_num; fd++) {
501 if ((fd == fd_pipe_in[0]) || (fd == fd_pipe_out[1]) ||
502 (fd == fd_pipe_err[1]))
507 /* Connect the `in' pipe to STDIN */
508 if (fd_pipe_in[0] != STDIN_FILENO) {
509 dup2(fd_pipe_in[0], STDIN_FILENO);
510 close(fd_pipe_in[0]);
513 /* Now connect the `out' pipe to STDOUT */
514 if (fd_pipe_out[1] != STDOUT_FILENO) {
515 dup2(fd_pipe_out[1], STDOUT_FILENO);
516 close(fd_pipe_out[1]);
519 /* Now connect the `err' pipe to STDERR */
520 if (fd_pipe_err[1] != STDERR_FILENO) {
521 dup2(fd_pipe_err[1], STDERR_FILENO);
522 close(fd_pipe_err[1]);
525 /* Unblock all signals */
528 exec_child(pl, uid, gid, egid);
529 /* does not return */
534 close(fd_pipe_in[0]);
535 close(fd_pipe_out[1]);
536 close(fd_pipe_err[1]);
539 *fd_in = fd_pipe_in[1];
541 close(fd_pipe_in[1]);
544 *fd_out = fd_pipe_out[0];
546 close(fd_pipe_out[0]);
549 *fd_err = fd_pipe_err[0];
551 close(fd_pipe_err[0]);
558 close_pipe(fd_pipe_in);
559 close_pipe(fd_pipe_out);
560 close_pipe(fd_pipe_err);
563 } /* int fork_child }}} */
565 static int parse_line(char *buffer) /* {{{ */
567 if (strncasecmp("PUTVAL", buffer, strlen("PUTVAL")) == 0)
568 return cmd_handle_putval(stdout, buffer);
569 else if (strncasecmp("PUTNOTIF", buffer, strlen("PUTNOTIF")) == 0)
570 return handle_putnotif(stdout, buffer);
572 ERROR("exec plugin: Unable to parse command, ignoring line: \"%s\"",
576 } /* int parse_line }}} */
578 static void *exec_read_one(void *arg) /* {{{ */
580 program_list_t *pl = (program_list_t *)arg;
581 int fd, fd_err, highest_fd;
584 char buffer[1200]; /* if not completely read */
585 char buffer_err[1024];
586 char *pbuffer = buffer;
587 char *pbuffer_err = buffer_err;
589 status = fork_child(pl, NULL, &fd, &fd_err);
591 /* Reset the "running" flag */
592 pthread_mutex_lock(&pl_lock);
593 pl->flags &= ~PL_RUNNING;
594 pthread_mutex_unlock(&pl_lock);
595 pthread_exit((void *)1);
599 assert(pl->pid != 0);
603 FD_SET(fd_err, &fdset);
605 /* Determine the highest file descriptor */
606 highest_fd = (fd > fd_err) ? fd : fd_err;
608 /* We use a copy of fdset, as select modifies it */
614 status = select(highest_fd + 1, ©, NULL, NULL, NULL);
621 if (FD_ISSET(fd, ©)) {
624 len = read(fd, pbuffer, sizeof(buffer) - 1 - (pbuffer - buffer));
627 if (errno == EAGAIN || errno == EINTR)
631 break; /* We've reached EOF */
635 len += pbuffer - buffer;
638 while ((pnl = strchr(pbuffer, '\n'))) {
640 if (*(pnl - 1) == '\r')
647 /* not completely read ? */
648 if (pbuffer - buffer < len) {
649 len -= pbuffer - buffer;
650 memmove(buffer, pbuffer, len);
651 pbuffer = buffer + len;
654 } else if (FD_ISSET(fd_err, ©)) {
657 len = read(fd_err, pbuffer_err,
658 sizeof(buffer_err) - 1 - (pbuffer_err - buffer_err));
661 if (errno == EAGAIN || errno == EINTR)
664 } else if (len == 0) {
665 /* We've reached EOF */
666 NOTICE("exec plugin: Program `%s' has closed STDERR.", pl->exec);
668 /* Remove file descriptor form select() set. */
669 FD_CLR(fd_err, &fdset);
673 /* Clean up file descriptor */
679 pbuffer_err[len] = '\0';
681 len += pbuffer_err - buffer_err;
682 pbuffer_err = buffer_err;
684 while ((pnl = strchr(pbuffer_err, '\n'))) {
686 if (*(pnl - 1) == '\r')
689 ERROR("exec plugin: exec_read_one: error = %s", pbuffer_err);
693 /* not completely read ? */
694 if (pbuffer_err - buffer_err < len) {
695 len -= pbuffer_err - buffer_err;
696 memmove(buffer_err, pbuffer_err, len);
697 pbuffer_err = buffer_err + len;
699 pbuffer_err = buffer_err;
705 DEBUG("exec plugin: exec_read_one: Waiting for `%s' to exit.", pl->exec);
706 if (waitpid(pl->pid, &status, 0) > 0)
709 DEBUG("exec plugin: Child %i exited with status %i.", (int)pl->pid,
714 pthread_mutex_lock(&pl_lock);
715 pl->flags &= ~PL_RUNNING;
716 pthread_mutex_unlock(&pl_lock);
722 pthread_exit((void *)0);
724 } /* void *exec_read_one }}} */
726 static void *exec_notification_one(void *arg) /* {{{ */
728 program_list_t *pl = ((program_list_and_notification_t *)arg)->pl;
729 notification_t *n = &((program_list_and_notification_t *)arg)->n;
734 const char *severity;
736 pid = fork_child(pl, &fd, NULL, NULL);
739 pthread_exit((void *)1);
742 fh = fdopen(fd, "w");
744 ERROR("exec plugin: fdopen (%i) failed: %s", fd, STRERRNO);
748 pthread_exit((void *)1);
751 severity = "FAILURE";
752 if (n->severity == NOTIF_WARNING)
753 severity = "WARNING";
754 else if (n->severity == NOTIF_OKAY)
757 fprintf(fh, "Severity: %s\n"
759 severity, CDTIME_T_TO_DOUBLE(n->time));
761 /* Print the optional fields */
762 if (strlen(n->host) > 0)
763 fprintf(fh, "Host: %s\n", n->host);
764 if (strlen(n->plugin) > 0)
765 fprintf(fh, "Plugin: %s\n", n->plugin);
766 if (strlen(n->plugin_instance) > 0)
767 fprintf(fh, "PluginInstance: %s\n", n->plugin_instance);
768 if (strlen(n->type) > 0)
769 fprintf(fh, "Type: %s\n", n->type);
770 if (strlen(n->type_instance) > 0)
771 fprintf(fh, "TypeInstance: %s\n", n->type_instance);
773 for (notification_meta_t *meta = n->meta; meta != NULL; meta = meta->next) {
774 if (meta->type == NM_TYPE_STRING)
775 fprintf(fh, "%s: %s\n", meta->name, meta->nm_value.nm_string);
776 else if (meta->type == NM_TYPE_SIGNED_INT)
777 fprintf(fh, "%s: %" PRIi64 "\n", meta->name,
778 meta->nm_value.nm_signed_int);
779 else if (meta->type == NM_TYPE_UNSIGNED_INT)
780 fprintf(fh, "%s: %" PRIu64 "\n", meta->name,
781 meta->nm_value.nm_unsigned_int);
782 else if (meta->type == NM_TYPE_DOUBLE)
783 fprintf(fh, "%s: %e\n", meta->name, meta->nm_value.nm_double);
784 else if (meta->type == NM_TYPE_BOOLEAN)
785 fprintf(fh, "%s: %s\n", meta->name,
786 meta->nm_value.nm_boolean ? "true" : "false");
789 fprintf(fh, "\n%s\n", n->message);
794 waitpid(pid, &status, 0);
796 DEBUG("exec plugin: Child %i exited with status %i.", pid, status);
799 plugin_notification_meta_free(n->meta);
802 pthread_exit((void *)0);
804 } /* void *exec_notification_one }}} */
806 static int exec_init(void) /* {{{ */
808 struct sigaction sa = {.sa_handler = sigchld_handler};
810 sigaction(SIGCHLD, &sa, NULL);
812 #if defined(HAVE_SYS_CAPABILITY_H) && defined(CAP_SETUID) && defined(CAP_SETGID)
813 if ((check_capability(CAP_SETUID) != 0) ||
814 (check_capability(CAP_SETGID) != 0)) {
817 "exec plugin: Running collectd as root, but the CAP_SETUID "
818 "or CAP_SETGID capabilities are missing. The plugin's read function "
819 "will probably fail. Is your init system dropping capabilities?");
822 "exec plugin: collectd doesn't have the CAP_SETUID or "
823 "CAP_SETGID capabilities. If you don't want to run collectd as root, "
824 "try running \"setcap 'cap_setuid=ep cap_setgid=ep'\" on the "
830 } /* int exec_init }}} */
832 static int exec_read(void) /* {{{ */
834 for (program_list_t *pl = pl_head; pl != NULL; pl = pl->next) {
838 /* Only execute `normal' style executables here. */
839 if ((pl->flags & PL_NORMAL) == 0)
842 pthread_mutex_lock(&pl_lock);
843 /* Skip if a child is already running. */
844 if ((pl->flags & PL_RUNNING) != 0) {
845 pthread_mutex_unlock(&pl_lock);
848 pl->flags |= PL_RUNNING;
849 pthread_mutex_unlock(&pl_lock);
851 pthread_attr_init(&attr);
852 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
854 plugin_thread_create(&t, &attr, exec_read_one, (void *)pl, "exec read");
856 ERROR("exec plugin: plugin_thread_create failed.");
858 pthread_attr_destroy(&attr);
862 } /* int exec_read }}} */
864 static int exec_notification(const notification_t *n, /* {{{ */
865 user_data_t __attribute__((unused)) * user_data) {
866 program_list_and_notification_t *pln;
868 for (program_list_t *pl = pl_head; pl != NULL; pl = pl->next) {
872 /* Only execute `notification' style executables here. */
873 if ((pl->flags & PL_NOTIF_ACTION) == 0)
876 /* Skip if a child is already running. */
880 pln = malloc(sizeof(*pln));
882 ERROR("exec plugin: malloc failed.");
887 memcpy(&pln->n, n, sizeof(notification_t));
889 /* Set the `meta' member to NULL, otherwise `plugin_notification_meta_copy'
890 * will run into an endless loop. */
892 plugin_notification_meta_copy(&pln->n, n);
894 pthread_attr_init(&attr);
895 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
896 int status = plugin_thread_create(&t, &attr, exec_notification_one,
897 (void *)pln, "exec notify");
899 ERROR("exec plugin: plugin_thread_create failed.");
901 pthread_attr_destroy(&attr);
905 } /* }}} int exec_notification */
907 static int exec_shutdown(void) /* {{{ */
910 program_list_t *next;
917 kill(pl->pid, SIGTERM);
918 INFO("exec plugin: Sent SIGTERM to %hu", (unsigned short int)pl->pid);
929 } /* int exec_shutdown }}} */
931 void module_register(void) {
932 plugin_register_complex_config("exec", exec_config);
933 plugin_register_init("exec", exec_init);
934 plugin_register_read("exec", exec_read);
935 plugin_register_notification("exec", exec_notification,
936 /* user_data = */ NULL);
937 plugin_register_shutdown("exec", exec_shutdown);
938 } /* void module_register */