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 verplant.org>
22 * Sebastian Harl <sh at tokkee.org>
23 * Peter Holik <peter at holik.at>
26 #define _BSD_SOURCE /* For setgroups */
32 #include "utils_cmd_putval.h"
33 #include "utils_cmd_putnotif.h"
35 #include <sys/types.h>
42 #define PL_NORMAL 0x01
43 #define PL_NOTIF_ACTION 0x02
45 #define PL_RUNNING 0x10
51 * Access to this structure is serialized using the `pl_lock' lock and the
52 * `PL_RUNNING' flag. The execution of notifications is *not* serialized, so
53 * all functions used to handle notifications MUST NOT write to this structure.
54 * The `pid' and `status' fields are thus unused if the `PL_NOTIF_ACTION' flag
56 * The `PL_RUNNING' flag is set in `exec_read' and unset in `exec_read_one'.
58 struct program_list_s;
59 typedef struct program_list_s program_list_t;
72 typedef struct program_list_and_notification_s
76 } program_list_and_notification_t;
81 static program_list_t *pl_head = NULL;
82 static pthread_mutex_t pl_lock = PTHREAD_MUTEX_INITIALIZER;
87 static void sigchld_handler (int __attribute__((unused)) signal) /* {{{ */
91 while ((pid = waitpid (-1, &status, WNOHANG)) > 0)
94 for (pl = pl_head; pl != NULL; pl = pl->next)
99 } /* while (waitpid) */
100 } /* void sigchld_handler }}} */
102 static int exec_config_exec (oconfig_item_t *ci) /* {{{ */
108 if (ci->children_num != 0)
110 WARNING ("exec plugin: The config option `%s' may not be a block.",
114 if (ci->values_num < 2)
116 WARNING ("exec plugin: The config option `%s' needs at least two "
117 "arguments.", ci->key);
120 if ((ci->values[0].type != OCONFIG_TYPE_STRING)
121 || (ci->values[1].type != OCONFIG_TYPE_STRING))
123 WARNING ("exec plugin: The first two arguments to the `%s' option must "
124 "be string arguments.", ci->key);
128 pl = (program_list_t *) malloc (sizeof (program_list_t));
131 ERROR ("exec plugin: malloc failed.");
134 memset (pl, '\0', sizeof (program_list_t));
136 if (strcasecmp ("NotificationExec", ci->key) == 0)
137 pl->flags |= PL_NOTIF_ACTION;
139 pl->flags |= PL_NORMAL;
141 pl->user = strdup (ci->values[0].value.string);
142 if (pl->user == NULL)
144 ERROR ("exec plugin: strdup failed.");
149 pl->group = strchr (pl->user, ':');
150 if (pl->group != NULL)
156 pl->exec = strdup (ci->values[1].value.string);
157 if (pl->exec == NULL)
159 ERROR ("exec plugin: strdup failed.");
165 pl->argv = (char **) malloc (ci->values_num * sizeof (char *));
166 if (pl->argv == NULL)
168 ERROR ("exec plugin: malloc failed.");
174 memset (pl->argv, '\0', ci->values_num * sizeof (char *));
177 char *tmp = strrchr (ci->values[1].value.string, '/');
179 sstrncpy (buffer, ci->values[1].value.string, sizeof (buffer));
181 sstrncpy (buffer, tmp + 1, sizeof (buffer));
183 pl->argv[0] = strdup (buffer);
184 if (pl->argv[0] == NULL)
186 ERROR ("exec plugin: malloc failed.");
194 for (i = 1; i < (ci->values_num - 1); i++)
196 if (ci->values[i + 1].type == OCONFIG_TYPE_STRING)
198 pl->argv[i] = strdup (ci->values[i + 1].value.string);
202 if (ci->values[i + 1].type == OCONFIG_TYPE_NUMBER)
204 ssnprintf (buffer, sizeof (buffer), "%lf",
205 ci->values[i + 1].value.number);
209 if (ci->values[i + 1].value.boolean)
210 sstrncpy (buffer, "true", sizeof (buffer));
212 sstrncpy (buffer, "false", sizeof (buffer));
215 pl->argv[i] = strdup (buffer);
218 if (pl->argv[i] == NULL)
220 ERROR ("exec plugin: strdup failed.");
225 if (i < (ci->values_num - 1))
238 for (i = 0; pl->argv[i] != NULL; i++)
240 DEBUG ("exec plugin: argv[%i] = %s", i, pl->argv[i]);
247 } /* int exec_config_exec }}} */
249 static int exec_config (oconfig_item_t *ci) /* {{{ */
253 for (i = 0; i < ci->children_num; i++)
255 oconfig_item_t *child = ci->children + i;
256 if ((strcasecmp ("Exec", child->key) == 0)
257 || (strcasecmp ("NotificationExec", child->key) == 0))
258 exec_config_exec (child);
261 WARNING ("exec plugin: Unknown config option `%s'.", child->key);
266 } /* int exec_config }}} */
268 static void set_environment (void) /* {{{ */
273 ssnprintf (buffer, sizeof (buffer), "%.3f",
274 CDTIME_T_TO_DOUBLE (plugin_get_interval ()));
275 setenv ("COLLECTD_INTERVAL", buffer, /* overwrite = */ 1);
277 ssnprintf (buffer, sizeof (buffer), "%s", hostname_g);
278 setenv ("COLLECTD_HOSTNAME", buffer, /* overwrite = */ 1);
280 ssnprintf (buffer, sizeof (buffer), "COLLECTD_INTERVAL=%.3f",
281 CDTIME_T_TO_DOUBLE (plugin_get_interval ()));
284 ssnprintf (buffer, sizeof (buffer), "COLLECTD_HOSTNAME=%s", hostname_g);
287 } /* }}} void set_environment */
289 __attribute__((noreturn))
290 static void exec_child (program_list_t *pl, int uid, int gid, int egid) /* {{{ */
304 if ((gid != egid) && (egid != -1))
310 setgroups (glist_len, glist);
312 #endif /* HAVE_SETGROUPS */
314 status = setgid (gid);
317 ERROR ("exec plugin: setgid (%i) failed: %s",
318 gid, sstrerror (errno, errbuf, sizeof (errbuf)));
324 status = setegid (egid);
327 ERROR ("exec plugin: setegid (%i) failed: %s",
328 egid, sstrerror (errno, errbuf, sizeof (errbuf)));
333 status = setuid (uid);
336 ERROR ("exec plugin: setuid (%i) failed: %s",
337 uid, sstrerror (errno, errbuf, sizeof (errbuf)));
341 status = execvp (pl->exec, pl->argv);
343 ERROR ("exec plugin: Failed to execute ``%s'': %s",
344 pl->exec, sstrerror (errno, errbuf, sizeof (errbuf)));
346 } /* void exec_child }}} */
348 static void reset_signal_mask (void) /* {{{ */
352 memset (&ss, 0, sizeof (ss));
354 sigprocmask (SIG_SETMASK, &ss, /* old mask = */ NULL);
355 } /* }}} void reset_signal_mask */
358 * Creates three pipes (one for reading, one for writing and one for errors),
359 * forks a child, sets up the pipes so that fd_in is connected to STDIN of
360 * the child and fd_out is connected to STDOUT and fd_err is connected to STDERR
361 * of the child. Then is calls `exec_child'.
363 static int fork_child (program_list_t *pl, int *fd_in, int *fd_out, int *fd_err) /* {{{ */
376 struct passwd *sp_ptr;
383 status = pipe (fd_pipe_in);
386 ERROR ("exec plugin: pipe failed: %s",
387 sstrerror (errno, errbuf, sizeof (errbuf)));
391 status = pipe (fd_pipe_out);
394 ERROR ("exec plugin: pipe failed: %s",
395 sstrerror (errno, errbuf, sizeof (errbuf)));
399 status = pipe (fd_pipe_err);
402 ERROR ("exec plugin: pipe failed: %s",
403 sstrerror (errno, errbuf, sizeof (errbuf)));
408 status = getpwnam_r (pl->user, &sp, nambuf, sizeof (nambuf), &sp_ptr);
411 ERROR ("exec plugin: Failed to get user information for user ``%s'': %s",
412 pl->user, sstrerror (errno, errbuf, sizeof (errbuf)));
417 ERROR ("exec plugin: No such user: `%s'", pl->user);
425 ERROR ("exec plugin: Cowardly refusing to exec program as root.");
429 /* The group configured in the configfile is set as effective group, because
430 * this way the forked process can (re-)gain the user's primary group. */
432 if (NULL != pl->group)
434 if ('\0' != *pl->group) {
435 struct group *gr_ptr = NULL;
438 status = getgrnam_r (pl->group, &gr, nambuf, sizeof (nambuf), &gr_ptr);
441 ERROR ("exec plugin: Failed to get group information "
442 "for group ``%s'': %s", pl->group,
443 sstrerror (errno, errbuf, sizeof (errbuf)));
448 ERROR ("exec plugin: No such group: `%s'", pl->group);
458 } /* if (pl->group == NULL) */
463 ERROR ("exec plugin: fork failed: %s",
464 sstrerror (errno, errbuf, sizeof (errbuf)));
472 /* Close all file descriptors but the pipe end we need. */
473 fd_num = getdtablesize ();
474 for (fd = 0; fd < fd_num; fd++)
476 if ((fd == fd_pipe_in[0])
477 || (fd == fd_pipe_out[1])
478 || (fd == fd_pipe_err[1]))
483 /* Connect the `in' pipe to STDIN */
484 if (fd_pipe_in[0] != STDIN_FILENO)
486 dup2 (fd_pipe_in[0], STDIN_FILENO);
487 close (fd_pipe_in[0]);
490 /* Now connect the `out' pipe to STDOUT */
491 if (fd_pipe_out[1] != STDOUT_FILENO)
493 dup2 (fd_pipe_out[1], STDOUT_FILENO);
494 close (fd_pipe_out[1]);
497 /* Now connect the `err' pipe to STDERR */
498 if (fd_pipe_err[1] != STDERR_FILENO)
500 dup2 (fd_pipe_err[1], STDERR_FILENO);
501 close (fd_pipe_err[1]);
506 /* Unblock all signals */
507 reset_signal_mask ();
509 exec_child (pl, uid, gid, egid);
510 /* does not return */
513 close (fd_pipe_in[0]);
514 close (fd_pipe_out[1]);
515 close (fd_pipe_err[1]);
518 *fd_in = fd_pipe_in[1];
520 close (fd_pipe_in[1]);
523 *fd_out = fd_pipe_out[0];
525 close (fd_pipe_out[0]);
528 *fd_err = fd_pipe_err[0];
530 close (fd_pipe_err[0]);
533 } /* int fork_child }}} */
535 static int parse_line (char *buffer) /* {{{ */
537 if (strncasecmp ("PUTVAL", buffer, strlen ("PUTVAL")) == 0)
538 return (handle_putval (stdout, buffer));
539 else if (strncasecmp ("PUTNOTIF", buffer, strlen ("PUTNOTIF")) == 0)
540 return (handle_putnotif (stdout, buffer));
543 ERROR ("exec plugin: Unable to parse command, ignoring line: \"%s\"",
547 } /* int parse_line }}} */
549 static void *exec_read_one (void *arg) /* {{{ */
551 program_list_t *pl = (program_list_t *) arg;
552 int fd, fd_err, highest_fd;
555 char buffer[1200]; /* if not completely read */
556 char buffer_err[1024];
557 char *pbuffer = buffer;
558 char *pbuffer_err = buffer_err;
560 status = fork_child (pl, NULL, &fd, &fd_err);
563 /* Reset the "running" flag */
564 pthread_mutex_lock (&pl_lock);
565 pl->flags &= ~PL_RUNNING;
566 pthread_mutex_unlock (&pl_lock);
567 pthread_exit ((void *) 1);
571 assert (pl->pid != 0);
575 FD_SET(fd_err, &fdset);
577 /* Determine the highest file descriptor */
578 highest_fd = (fd > fd_err) ? fd : fd_err;
580 /* We use a copy of fdset, as select modifies it */
587 status = select (highest_fd + 1, ©, NULL, NULL, NULL);
595 if (FD_ISSET(fd, ©))
599 len = read(fd, pbuffer, sizeof(buffer) - 1 - (pbuffer - buffer));
603 if (errno == EAGAIN || errno == EINTR) continue;
606 else if (len == 0) break; /* We've reached EOF */
610 len += pbuffer - buffer;
613 while ((pnl = strchr(pbuffer, '\n')))
616 if (*(pnl-1) == '\r' ) *(pnl-1) = '\0';
618 parse_line (pbuffer);
622 /* not completely read ? */
623 if (pbuffer - buffer < len)
625 len -= pbuffer - buffer;
626 memmove(buffer, pbuffer, len);
627 pbuffer = buffer + len;
632 else if (FD_ISSET(fd_err, ©))
636 len = read(fd_err, pbuffer_err, sizeof(buffer_err) - 1 - (pbuffer_err - buffer_err));
640 if (errno == EAGAIN || errno == EINTR)
646 /* We've reached EOF */
647 NOTICE ("exec plugin: Program `%s' has closed STDERR.", pl->exec);
649 /* Remove file descriptor form select() set. */
650 FD_CLR (fd_err, &fdset);
654 /* Clean up file descriptor */
660 pbuffer_err[len] = '\0';
662 len += pbuffer_err - buffer_err;
663 pbuffer_err = buffer_err;
665 while ((pnl = strchr(pbuffer_err, '\n')))
668 if (*(pnl-1) == '\r' ) *(pnl-1) = '\0';
670 ERROR ("exec plugin: exec_read_one: error = %s", pbuffer_err);
674 /* not completely read ? */
675 if (pbuffer_err - buffer_err < len)
677 len -= pbuffer_err - buffer_err;
678 memmove(buffer_err, pbuffer_err, len);
679 pbuffer_err = buffer_err + len;
682 pbuffer_err = buffer_err;
688 DEBUG ("exec plugin: exec_read_one: Waiting for `%s' to exit.", pl->exec);
689 if (waitpid (pl->pid, &status, 0) > 0)
692 DEBUG ("exec plugin: Child %i exited with status %i.",
693 (int) pl->pid, pl->status);
697 pthread_mutex_lock (&pl_lock);
698 pl->flags &= ~PL_RUNNING;
699 pthread_mutex_unlock (&pl_lock);
705 pthread_exit ((void *) 0);
707 } /* void *exec_read_one }}} */
709 static void *exec_notification_one (void *arg) /* {{{ */
711 program_list_t *pl = ((program_list_and_notification_t *) arg)->pl;
712 notification_t *n = &((program_list_and_notification_t *) arg)->n;
713 notification_meta_t *meta;
718 const char *severity;
720 pid = fork_child (pl, &fd, NULL, NULL);
723 pthread_exit ((void *) 1);
726 fh = fdopen (fd, "w");
730 ERROR ("exec plugin: fdopen (%i) failed: %s", fd,
731 sstrerror (errno, errbuf, sizeof (errbuf)));
732 kill (pl->pid, SIGTERM);
736 pthread_exit ((void *) 1);
739 severity = "FAILURE";
740 if (n->severity == NOTIF_WARNING)
741 severity = "WARNING";
742 else if (n->severity == NOTIF_OKAY)
748 severity, CDTIME_T_TO_DOUBLE (n->time));
750 /* Print the optional fields */
751 if (strlen (n->host) > 0)
752 fprintf (fh, "Host: %s\n", n->host);
753 if (strlen (n->plugin) > 0)
754 fprintf (fh, "Plugin: %s\n", n->plugin);
755 if (strlen (n->plugin_instance) > 0)
756 fprintf (fh, "PluginInstance: %s\n", n->plugin_instance);
757 if (strlen (n->type) > 0)
758 fprintf (fh, "Type: %s\n", n->type);
759 if (strlen (n->type_instance) > 0)
760 fprintf (fh, "TypeInstance: %s\n", n->type_instance);
762 for (meta = n->meta; meta != NULL; meta = meta->next)
764 if (meta->type == NM_TYPE_STRING)
765 fprintf (fh, "%s: %s\n", meta->name, meta->nm_value.nm_string);
766 else if (meta->type == NM_TYPE_SIGNED_INT)
767 fprintf (fh, "%s: %"PRIi64"\n", meta->name, meta->nm_value.nm_signed_int);
768 else if (meta->type == NM_TYPE_UNSIGNED_INT)
769 fprintf (fh, "%s: %"PRIu64"\n", meta->name, meta->nm_value.nm_unsigned_int);
770 else if (meta->type == NM_TYPE_DOUBLE)
771 fprintf (fh, "%s: %e\n", meta->name, meta->nm_value.nm_double);
772 else if (meta->type == NM_TYPE_BOOLEAN)
773 fprintf (fh, "%s: %s\n", meta->name,
774 meta->nm_value.nm_boolean ? "true" : "false");
777 fprintf (fh, "\n%s\n", n->message);
782 waitpid (pid, &status, 0);
784 DEBUG ("exec plugin: Child %i exited with status %i.",
788 plugin_notification_meta_free (n->meta);
791 pthread_exit ((void *) 0);
793 } /* void *exec_notification_one }}} */
795 static int exec_init (void) /* {{{ */
799 memset (&sa, '\0', sizeof (sa));
800 sa.sa_handler = sigchld_handler;
801 sigaction (SIGCHLD, &sa, NULL);
804 } /* int exec_init }}} */
806 static int exec_read (void) /* {{{ */
810 for (pl = pl_head; pl != NULL; pl = pl->next)
815 /* Only execute `normal' style executables here. */
816 if ((pl->flags & PL_NORMAL) == 0)
819 pthread_mutex_lock (&pl_lock);
820 /* Skip if a child is already running. */
821 if ((pl->flags & PL_RUNNING) != 0)
823 pthread_mutex_unlock (&pl_lock);
826 pl->flags |= PL_RUNNING;
827 pthread_mutex_unlock (&pl_lock);
829 pthread_attr_init (&attr);
830 pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED);
831 plugin_thread_create (&t, &attr, exec_read_one, (void *) pl);
832 pthread_attr_destroy (&attr);
836 } /* int exec_read }}} */
838 static int exec_notification (const notification_t *n, /* {{{ */
839 user_data_t __attribute__((unused)) *user_data)
842 program_list_and_notification_t *pln;
844 for (pl = pl_head; pl != NULL; pl = pl->next)
849 /* Only execute `notification' style executables here. */
850 if ((pl->flags & PL_NOTIF_ACTION) == 0)
853 /* Skip if a child is already running. */
857 pln = (program_list_and_notification_t *) malloc (sizeof
858 (program_list_and_notification_t));
861 ERROR ("exec plugin: malloc failed.");
866 memcpy (&pln->n, n, sizeof (notification_t));
868 /* Set the `meta' member to NULL, otherwise `plugin_notification_meta_copy'
869 * will run into an endless loop. */
871 plugin_notification_meta_copy (&pln->n, n);
873 pthread_attr_init (&attr);
874 pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED);
875 plugin_thread_create (&t, &attr, exec_notification_one, (void *) pln);
876 pthread_attr_destroy (&attr);
880 } /* }}} int exec_notification */
882 static int exec_shutdown (void) /* {{{ */
885 program_list_t *next;
894 kill (pl->pid, SIGTERM);
895 INFO ("exec plugin: Sent SIGTERM to %hu", (unsigned short int) pl->pid);
906 } /* int exec_shutdown }}} */
908 void module_register (void)
910 plugin_register_complex_config ("exec", exec_config);
911 plugin_register_init ("exec", exec_init);
912 plugin_register_read ("exec", exec_read);
913 plugin_register_notification ("exec", exec_notification,
914 /* user_data = */ NULL);
915 plugin_register_shutdown ("exec", exec_shutdown);
916 } /* void module_register */
919 * vim:shiftwidth=2:softtabstop=2:tabstop=8:fdm=marker