2 * collectd - src/exec.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>
26 #include "utils_cmd_putval.h"
27 #include "utils_cmd_putnotif.h"
29 #include <sys/types.h>
36 #define PL_NORMAL 0x01
37 #define PL_NOTIF_ACTION 0x02
39 #define PL_RUNNING 0x10
45 * Access to this structure is serialized using the `pl_lock' lock and the
46 * `PL_RUNNING' flag. The execution of notifications is *not* serialized, so
47 * all functions used to handle notifications MUST NOT write to this structure.
48 * The `pid' and `status' fields are thus unused if the `PL_NOTIF_ACTION' flag
50 * The `PL_RUNNING' flag is set in `exec_read' and unset in `exec_read_one'.
52 struct program_list_s;
53 typedef struct program_list_s program_list_t;
66 typedef struct program_list_and_notification_s
70 } program_list_and_notification_t;
75 static program_list_t *pl_head = NULL;
76 static pthread_mutex_t pl_lock = PTHREAD_MUTEX_INITIALIZER;
81 static void sigchld_handler (int signal) /* {{{ */
85 while ((pid = waitpid (-1, &status, WNOHANG)) > 0)
88 for (pl = pl_head; pl != NULL; pl = pl->next)
93 } /* while (waitpid) */
94 } /* void sigchld_handler }}} */
96 static int exec_config_exec (oconfig_item_t *ci) /* {{{ */
102 if (ci->children_num != 0)
104 WARNING ("exec plugin: The config option `%s' may not be a block.",
108 if (ci->values_num < 2)
110 WARNING ("exec plugin: The config option `%s' needs at least two "
111 "arguments.", ci->key);
114 if ((ci->values[0].type != OCONFIG_TYPE_STRING)
115 || (ci->values[1].type != OCONFIG_TYPE_STRING))
117 WARNING ("exec plugin: The first two arguments to the `%s' option must "
118 "be string arguments.", ci->key);
122 pl = (program_list_t *) malloc (sizeof (program_list_t));
125 ERROR ("exec plugin: malloc failed.");
128 memset (pl, '\0', sizeof (program_list_t));
130 if (strcasecmp ("NotificationExec", ci->key) == 0)
131 pl->flags |= PL_NOTIF_ACTION;
133 pl->flags |= PL_NORMAL;
135 pl->user = strdup (ci->values[0].value.string);
136 if (pl->user == NULL)
138 ERROR ("exec plugin: strdup failed.");
143 pl->group = strchr (pl->user, ':');
144 if (pl->group != NULL)
150 pl->exec = strdup (ci->values[1].value.string);
151 if (pl->exec == NULL)
153 ERROR ("exec plugin: strdup failed.");
159 pl->argv = (char **) malloc (ci->values_num * sizeof (char *));
160 if (pl->argv == NULL)
162 ERROR ("exec plugin: malloc failed.");
168 memset (pl->argv, '\0', ci->values_num * sizeof (char *));
171 char *tmp = strrchr (ci->values[1].value.string, '/');
173 strncpy (buffer, ci->values[1].value.string, sizeof (buffer));
175 strncpy (buffer, tmp + 1, sizeof (buffer));
176 buffer[sizeof (buffer) - 1] = '\0';
178 pl->argv[0] = strdup (buffer);
179 if (pl->argv[0] == NULL)
181 ERROR ("exec plugin: malloc failed.");
189 for (i = 1; i < (ci->values_num - 1); i++)
191 if (ci->values[i + 1].type == OCONFIG_TYPE_STRING)
193 pl->argv[i] = strdup (ci->values[i + 1].value.string);
197 if (ci->values[i + 1].type == OCONFIG_TYPE_NUMBER)
199 snprintf (buffer, sizeof (buffer), "%lf",
200 ci->values[i + 1].value.number);
204 if (ci->values[i + 1].value.boolean)
205 strncpy (buffer, "true", sizeof (buffer));
207 strncpy (buffer, "false", sizeof (buffer));
209 buffer[sizeof (buffer) - 1] = '\0';
211 pl->argv[i] = strdup (buffer);
214 if (pl->argv[i] == NULL)
216 ERROR ("exec plugin: strdup failed.");
221 if (i < (ci->values_num - 1))
234 for (i = 0; pl->argv[i] != NULL; i++)
236 DEBUG ("exec plugin: argv[%i] = %s", i, pl->argv[i]);
243 } /* int exec_config_exec }}} */
245 static int exec_config (oconfig_item_t *ci) /* {{{ */
249 for (i = 0; i < ci->children_num; i++)
251 oconfig_item_t *child = ci->children + i;
252 if ((strcasecmp ("Exec", child->key) == 0)
253 || (strcasecmp ("NotificationExec", child->key) == 0))
254 exec_config_exec (child);
257 WARNING ("exec plugin: Unknown config option `%s'.", child->key);
262 } /* int exec_config }}} */
264 static void exec_child (program_list_t *pl) /* {{{ */
271 struct passwd *sp_ptr;
277 status = getpwnam_r (pl->user, &sp, nambuf, sizeof (nambuf), &sp_ptr);
280 ERROR ("exec plugin: getpwnam_r failed: %s",
281 sstrerror (errno, errbuf, sizeof (errbuf)));
286 ERROR ("exec plugin: No such user: `%s'", pl->user);
294 ERROR ("exec plugin: Cowardly refusing to exec program as root.");
298 /* The group configured in the configfile is set as effective group, because
299 * this way the forked process can (re-)gain the user's primary group. */
301 if (NULL != pl->group)
303 if ('\0' != *pl->group) {
304 struct group *gr_ptr = NULL;
307 status = getgrnam_r (pl->group, &gr, nambuf, sizeof (nambuf), &gr_ptr);
310 ERROR ("exec plugin: getgrnam_r failed: %s",
311 sstrerror (errno, errbuf, sizeof (errbuf)));
316 ERROR ("exec plugin: No such group: `%s'", pl->group);
326 } /* if (pl->group == NULL) */
337 if ((gid != egid) && (egid != -1))
343 setgroups (glist_len, glist);
345 #endif /* HAVE_SETGROUPS */
347 status = setgid (gid);
350 ERROR ("exec plugin: setgid (%i) failed: %s",
351 gid, sstrerror (errno, errbuf, sizeof (errbuf)));
357 status = setegid (egid);
360 ERROR ("exec plugin: setegid (%i) failed: %s",
361 egid, sstrerror (errno, errbuf, sizeof (errbuf)));
366 status = setuid (uid);
369 ERROR ("exec plugin: setuid (%i) failed: %s",
370 uid, sstrerror (errno, errbuf, sizeof (errbuf)));
374 status = execvp (pl->exec, pl->argv);
376 ERROR ("exec plugin: exec failed: %s",
377 sstrerror (errno, errbuf, sizeof (errbuf)));
379 } /* void exec_child }}} */
382 * Creates three pipes (one for reading, one for writing and one for errors),
383 * forks a child, sets up the pipes so that fd_in is connected to STDIN of
384 * the child and fd_out is connected to STDOUT and fd_err is connected to STDERR
385 * of the child. Then is calls `exec_child'.
387 static int fork_child (program_list_t *pl, int *fd_in, int *fd_out, int *fd_err) /* {{{ */
399 status = pipe (fd_pipe_in);
402 ERROR ("exec plugin: pipe failed: %s",
403 sstrerror (errno, errbuf, sizeof (errbuf)));
407 status = pipe (fd_pipe_out);
410 ERROR ("exec plugin: pipe failed: %s",
411 sstrerror (errno, errbuf, sizeof (errbuf)));
415 status = pipe (fd_pipe_err);
418 ERROR ("exec plugin: pipe failed: %s",
419 sstrerror (errno, errbuf, sizeof (errbuf)));
426 ERROR ("exec plugin: fork failed: %s",
427 sstrerror (errno, errbuf, sizeof (errbuf)));
435 /* Close all file descriptors but the pipe end we need. */
436 fd_num = getdtablesize ();
437 for (fd = 0; fd < fd_num; fd++)
439 if ((fd == fd_pipe_in[0])
440 || (fd == fd_pipe_out[1])
441 || (fd == fd_pipe_err[1]))
446 /* Connect the `in' pipe to STDIN */
447 if (fd_pipe_in[0] != STDIN_FILENO)
449 dup2 (fd_pipe_in[0], STDIN_FILENO);
450 close (fd_pipe_in[0]);
453 /* Now connect the `out' pipe to STDOUT */
454 if (fd_pipe_out[1] != STDOUT_FILENO)
456 dup2 (fd_pipe_out[1], STDOUT_FILENO);
457 close (fd_pipe_out[1]);
460 /* Now connect the `out' pipe to STDOUT */
461 if (fd_pipe_err[1] != STDERR_FILENO)
463 dup2 (fd_pipe_err[1], STDERR_FILENO);
464 close (fd_pipe_err[1]);
468 /* does not return */
471 close (fd_pipe_in[0]);
472 close (fd_pipe_out[1]);
473 close (fd_pipe_err[1]);
476 *fd_in = fd_pipe_in[1];
478 close (fd_pipe_in[1]);
481 *fd_out = fd_pipe_out[0];
483 close (fd_pipe_out[0]);
486 *fd_err = fd_pipe_err[0];
488 close (fd_pipe_err[0]);
491 } /* int fork_child }}} */
493 static int parse_line (char *buffer) /* {{{ */
498 fields[0] = "PUTVAL";
499 fields_num = strsplit (buffer, fields + 1, STATIC_ARRAY_SIZE(fields) - 1);
501 if (strcasecmp (fields[1], "putval") == 0)
502 return (handle_putval (stdout, fields + 1, fields_num));
503 else if (strcasecmp (fields[1], "putnotif") == 0)
504 return (handle_putnotif (stdout, fields + 1, fields_num));
506 /* compatibility code */
507 return (handle_putval (stdout, fields, fields_num + 1));
508 } /* int parse_line }}} */
510 static void *exec_read_one (void *arg) /* {{{ */
512 program_list_t *pl = (program_list_t *) arg;
513 int fd, fd_err, highest_fd;
516 char buffer[1200]; /* if not completely read */
517 char buffer_err[1024];
518 char *pbuffer = buffer;
519 char *pbuffer_err = buffer_err;
521 status = fork_child (pl, NULL, &fd, &fd_err);
523 pthread_exit ((void *) 1);
526 assert (pl->pid != 0);
530 FD_SET(fd_err, &fdset);
532 /* Determine the highest file descriptor */
533 highest_fd = (fd > fd_err) ? fd : fd_err;
535 /* We use a copy of fdset, as select modifies it */
538 while (select(highest_fd + 1, ©, NULL, NULL, NULL ) > 0)
542 if (FD_ISSET(fd, ©))
546 len = read(fd, pbuffer, sizeof(buffer) - 1 - (pbuffer - buffer));
550 if (errno == EAGAIN || errno == EINTR) continue;
553 else if (len == 0) break; /* We've reached EOF */
557 len += pbuffer - buffer;
560 while ((pnl = strchr(pbuffer, '\n')))
563 if (*(pnl-1) == '\r' ) *(pnl-1) = '\0';
565 parse_line (pbuffer);
569 /* not completely read ? */
570 if (pbuffer - buffer < len)
572 len -= pbuffer - buffer;
573 memmove(buffer, pbuffer, len);
574 pbuffer = buffer + len;
579 else if (FD_ISSET(fd_err, ©))
583 len = read(fd_err, pbuffer_err, sizeof(buffer_err) - 1 - (pbuffer_err - buffer_err));
587 if (errno == EAGAIN || errno == EINTR) continue;
590 else if (len == 0) break; /* We've reached EOF */
592 pbuffer_err[len] = '\0';
594 len += pbuffer_err - buffer_err;
595 pbuffer_err = buffer_err;
597 while ((pnl = strchr(pbuffer_err, '\n')))
600 if (*(pnl-1) == '\r' ) *(pnl-1) = '\0';
602 ERROR ("exec plugin: exec_read_one: error = %s", pbuffer_err);
606 /* not completely read ? */
607 if (pbuffer_err - buffer_err < len)
609 len -= pbuffer_err - buffer_err;
610 memmove(buffer_err, pbuffer_err, len);
611 pbuffer_err = buffer_err + len;
614 pbuffer_err = buffer_err;
620 if (waitpid (pl->pid, &status, 0) > 0)
623 DEBUG ("exec plugin: Child %i exited with status %i.",
624 (int) pl->pid, pl->status);
628 pthread_mutex_lock (&pl_lock);
629 pl->flags &= ~PL_RUNNING;
630 pthread_mutex_unlock (&pl_lock);
635 pthread_exit ((void *) 0);
637 } /* void *exec_read_one }}} */
639 static void *exec_notification_one (void *arg) /* {{{ */
641 program_list_t *pl = ((program_list_and_notification_t *) arg)->pl;
642 const notification_t *n = &((program_list_and_notification_t *) arg)->n;
647 const char *severity;
649 pid = fork_child (pl, &fd, NULL, NULL);
652 pthread_exit ((void *) 1);
655 fh = fdopen (fd, "w");
659 ERROR ("exec plugin: fdopen (%i) failed: %s", fd,
660 sstrerror (errno, errbuf, sizeof (errbuf)));
661 kill (pl->pid, SIGTERM);
665 pthread_exit ((void *) 1);
668 severity = "FAILURE";
669 if (n->severity == NOTIF_WARNING)
670 severity = "WARNING";
671 else if (n->severity == NOTIF_OKAY)
677 severity, (unsigned int) n->time);
679 /* Print the optional fields */
680 if (strlen (n->host) > 0)
681 fprintf (fh, "Host: %s\n", n->host);
682 if (strlen (n->plugin) > 0)
683 fprintf (fh, "Plugin: %s\n", n->plugin);
684 if (strlen (n->plugin_instance) > 0)
685 fprintf (fh, "PluginInstance: %s\n", n->plugin_instance);
686 if (strlen (n->type) > 0)
687 fprintf (fh, "Type: %s\n", n->type);
688 if (strlen (n->type_instance) > 0)
689 fprintf (fh, "TypeInstance: %s\n", n->type_instance);
691 fprintf (fh, "\n%s\n", n->message);
696 waitpid (pid, &status, 0);
698 DEBUG ("exec plugin: Child %i exited with status %i.",
702 pthread_exit ((void *) 0);
704 } /* void *exec_notification_one }}} */
706 static int exec_init (void) /* {{{ */
710 memset (&sa, '\0', sizeof (sa));
711 sa.sa_handler = sigchld_handler;
712 sigaction (SIGCHLD, &sa, NULL);
715 } /* int exec_init }}} */
717 static int exec_read (void) /* {{{ */
721 for (pl = pl_head; pl != NULL; pl = pl->next)
726 /* Only execute `normal' style executables here. */
727 if ((pl->flags & PL_NORMAL) == 0)
730 pthread_mutex_lock (&pl_lock);
731 /* Skip if a child is already running. */
732 if ((pl->flags & PL_RUNNING) != 0)
734 pthread_mutex_unlock (&pl_lock);
737 pl->flags |= PL_RUNNING;
738 pthread_mutex_unlock (&pl_lock);
740 pthread_attr_init (&attr);
741 pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED);
742 pthread_create (&t, &attr, exec_read_one, (void *) pl);
746 } /* int exec_read }}} */
748 static int exec_notification (const notification_t *n)
751 program_list_and_notification_t *pln;
753 for (pl = pl_head; pl != NULL; pl = pl->next)
758 /* Only execute `notification' style executables here. */
759 if ((pl->flags & PL_NOTIF_ACTION) == 0)
762 /* Skip if a child is already running. */
766 pln = (program_list_and_notification_t *) malloc (sizeof
767 (program_list_and_notification_t));
770 ERROR ("exec plugin: malloc failed.");
775 memcpy (&pln->n, n, sizeof (notification_t));
777 pthread_attr_init (&attr);
778 pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED);
779 pthread_create (&t, &attr, exec_notification_one, (void *) pln);
783 } /* int exec_notification */
785 static int exec_shutdown (void) /* {{{ */
788 program_list_t *next;
797 kill (pl->pid, SIGTERM);
798 INFO ("exec plugin: Sent SIGTERM to %hu", (unsigned short int) pl->pid);
809 } /* int exec_shutdown }}} */
811 void module_register (void)
813 plugin_register_complex_config ("exec", exec_config);
814 plugin_register_init ("exec", exec_init);
815 plugin_register_read ("exec", exec_read);
816 plugin_register_notification ("exec", exec_notification);
817 plugin_register_shutdown ("exec", exec_shutdown);
818 } /* void module_register */
821 * vim:shiftwidth=2:softtabstop=2:tabstop=8:fdm=marker