62
62
#include <signal.h> /* struct sigaction, sigemptyset(),
63
63
sigaddset(), sigaction(),
64
64
sigprocmask(), SIG_BLOCK, SIGCHLD,
65
SIG_UNBLOCK, kill() */
65
SIG_UNBLOCK, kill(), sig_atomic_t
66
67
#include <errno.h> /* errno, EBADF */
67
#include <inttypes.h> /* intmax_t, SCNdMAX, PRIdMAX, */
68
#include <inttypes.h> /* intmax_t, PRIdMAX, strtoimax() */
69
70
#define BUFFER_SIZE 256
115
116
if(name != NULL){
116
117
copy_name = strdup(name);
117
118
if(copy_name == NULL){
122
*new_plugin = (plugin) { .name = copy_name,
125
.next = plugin_list };
124
*new_plugin = (plugin){ .name = copy_name,
127
.next = plugin_list };
127
129
new_plugin->argv = malloc(sizeof(char *) * 2);
128
130
if(new_plugin->argv == NULL){
377
381
error_t parse_opt(int key, char *arg, __attribute__((unused))
378
struct argp_state *state) {
382
struct argp_state *state){
380
385
case 'g': /* --global-options */
383
while((p = strsep(&arg, ",")) != NULL){
388
while((plugin_option = strsep(&arg, ",")) != NULL){
389
if(plugin_option[0] == '\0'){
387
if(not add_argument(getplugin(NULL), p)){
392
if(not add_argument(getplugin(NULL), plugin_option)){
388
393
perror("add_argument");
389
394
return ARGP_ERR_UNKNOWN;
402
407
case 'o': /* --options-for */
404
char *p_name = strsep(&arg, ":");
405
if(p_name[0] == '\0' or arg == NULL){
408
char *opt = strsep(&arg, ":");
409
if(opt[0] == '\0' or opt == NULL){
413
while((p = strsep(&opt, ",")) != NULL){
417
if(not add_argument(getplugin(p_name), p)){
409
char *plugin_name = strsep(&arg, ":");
410
if(plugin_name[0] == '\0'){
414
while((plugin_option = strsep(&arg, ",")) != NULL){
415
if(not add_argument(getplugin(plugin_name), plugin_option)){
418
416
perror("add_argument");
419
417
return ARGP_ERR_UNKNOWN;
465
463
/* This is already done by parse_opt_config_file() */
467
465
case 130: /* --userid */
468
ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
469
if(ret < 1 or tmpmax != (uid_t)tmpmax
470
or arg[numchars] != '\0'){
467
tmpmax = strtoimax(arg, &tmp, 10);
468
if(errno != 0 or tmp == arg or *tmp != '\0'
469
or tmpmax != (uid_t)tmpmax){
471
470
fprintf(stderr, "Bad user ID number: \"%s\", using %"
472
471
PRIdMAX "\n", arg, (intmax_t)uid);
477
476
case 131: /* --groupid */
478
ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
479
if(ret < 1 or tmpmax != (gid_t)tmpmax
480
or arg[numchars] != '\0'){
478
tmpmax = strtoimax(arg, &tmp, 10);
479
if(errno != 0 or tmp == arg or *tmp != '\0'
480
or tmpmax != (gid_t)tmpmax){
481
481
fprintf(stderr, "Bad group ID number: \"%s\", using %"
482
482
PRIdMAX "\n", arg, (intmax_t)gid);
511
511
ignores everything but the --config-file option. */
512
512
error_t parse_opt_config_file(int key, char *arg,
513
513
__attribute__((unused))
514
struct argp_state *state) {
514
struct argp_state *state){
516
516
case 'g': /* --global-options */
517
517
case 'G': /* --global-env */
518
518
case 'o': /* --options-for */
958
959
from one of them */
959
960
for(plugin *proc = plugin_list; proc != NULL;){
960
961
/* Is this process completely done? */
961
if(proc->eof and proc->completed){
962
if(proc->completed and proc->eof){
962
963
/* Only accept the plugin output if it exited cleanly */
963
964
if(not WIFEXITED(proc->status)
964
965
or WEXITSTATUS(proc->status) != 0){
965
966
/* Bad exit by plugin */
968
969
if(WIFEXITED(proc->status)){
969
fprintf(stderr, "Plugin %" PRIdMAX " exited with status"
970
" %d\n", (intmax_t) (proc->pid),
970
fprintf(stderr, "Plugin %s [%" PRIdMAX "] exited with"
971
" status %d\n", proc->name,
972
(intmax_t) (proc->pid),
971
973
WEXITSTATUS(proc->status));
972
} else if(WIFSIGNALED(proc->status)) {
973
fprintf(stderr, "Plugin %" PRIdMAX " killed by signal"
974
" %d\n", (intmax_t) (proc->pid),
974
} else if(WIFSIGNALED(proc->status)){
975
fprintf(stderr, "Plugin %s [%" PRIdMAX "] killed by"
976
" signal %d\n", proc->name,
977
(intmax_t) (proc->pid),
975
978
WTERMSIG(proc->status));
976
979
} else if(WCOREDUMP(proc->status)){
977
fprintf(stderr, "Plugin %" PRIdMAX " dumped core\n",
978
(intmax_t) (proc->pid));
980
fprintf(stderr, "Plugin %s [%" PRIdMAX "] dumped"
981
" core\n", proc->name, (intmax_t) (proc->pid));
982
985
/* Remove the plugin */
983
986
FD_CLR(proc->fd, &rfds_all);
985
988
/* Block signal while modifying process_list */
986
989
ret = sigprocmask(SIG_BLOCK, &sigchld_action.sa_mask, NULL);