62
62
#include <signal.h> /* struct sigaction, sigemptyset(),
63
63
sigaddset(), sigaction(),
64
64
sigprocmask(), SIG_BLOCK, SIGCHLD,
65
SIG_UNBLOCK, kill(), sig_atomic_t
65
SIG_UNBLOCK, kill() */
67
66
#include <errno.h> /* errno, EBADF */
68
#include <inttypes.h> /* intmax_t, PRIdMAX, strtoimax() */
67
#include <inttypes.h> /* intmax_t, SCNdMAX, PRIdMAX, */
70
69
#define BUFFER_SIZE 256
381
380
error_t parse_opt(int key, char *arg, __attribute__((unused))
382
381
struct argp_state *state){
385
383
case 'g': /* --global-options */
388
while((plugin_option = strsep(&arg, ",")) != NULL){
389
if(plugin_option[0] == '\0'){
386
while((p = strsep(&arg, ",")) != NULL){
392
if(not add_argument(getplugin(NULL), plugin_option)){
390
if(not add_argument(getplugin(NULL), p)){
393
391
perror("add_argument");
394
392
return ARGP_ERR_UNKNOWN;
407
405
case 'o': /* --options-for */
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)){
407
char *p_name = strsep(&arg, ":");
408
if(p_name[0] == '\0' or arg == NULL){
411
char *opt = strsep(&arg, ":");
412
if(opt[0] == '\0' or opt == NULL){
416
while((p = strsep(&opt, ",")) != NULL){
420
if(not add_argument(getplugin(p_name), p)){
416
421
perror("add_argument");
417
422
return ARGP_ERR_UNKNOWN;
463
468
/* This is already done by parse_opt_config_file() */
465
470
case 130: /* --userid */
467
tmpmax = strtoimax(arg, &tmp, 10);
468
if(errno != 0 or tmp == arg or *tmp != '\0'
469
or tmpmax != (uid_t)tmpmax){
471
ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
472
if(ret < 1 or tmpmax != (uid_t)tmpmax
473
or arg[numchars] != '\0'){
470
474
fprintf(stderr, "Bad user ID number: \"%s\", using %"
471
475
PRIdMAX "\n", arg, (intmax_t)uid);
476
480
case 131: /* --groupid */
478
tmpmax = strtoimax(arg, &tmp, 10);
479
if(errno != 0 or tmp == arg or *tmp != '\0'
480
or tmpmax != (gid_t)tmpmax){
481
ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
482
if(ret < 1 or tmpmax != (gid_t)tmpmax
483
or arg[numchars] != '\0'){
481
484
fprintf(stderr, "Bad group ID number: \"%s\", using %"
482
485
PRIdMAX "\n", arg, (intmax_t)gid);
964
966
if(not WIFEXITED(proc->status)
965
967
or WEXITSTATUS(proc->status) != 0){
966
968
/* Bad exit by plugin */
969
971
if(WIFEXITED(proc->status)){
970
fprintf(stderr, "Plugin %s [%" PRIdMAX "] exited with"
971
" status %d\n", proc->name,
972
(intmax_t) (proc->pid),
972
fprintf(stderr, "Plugin %" PRIdMAX " exited with status"
973
" %d\n", (intmax_t) (proc->pid),
973
974
WEXITSTATUS(proc->status));
974
975
} else if(WIFSIGNALED(proc->status)){
975
fprintf(stderr, "Plugin %s [%" PRIdMAX "] killed by"
976
" signal %d\n", proc->name,
977
(intmax_t) (proc->pid),
976
fprintf(stderr, "Plugin %" PRIdMAX " killed by signal"
977
" %d\n", (intmax_t) (proc->pid),
978
978
WTERMSIG(proc->status));
979
979
} else if(WCOREDUMP(proc->status)){
980
fprintf(stderr, "Plugin %s [%" PRIdMAX "] dumped"
981
" core\n", proc->name, (intmax_t) (proc->pid));
980
fprintf(stderr, "Plugin %" PRIdMAX " dumped core\n",
981
(intmax_t) (proc->pid));
985
985
/* Remove the plugin */
986
986
FD_CLR(proc->fd, &rfds_all);
988
988
/* Block signal while modifying process_list */
989
989
ret = sigprocmask(SIG_BLOCK, &sigchld_action.sa_mask, NULL);