64
64
sigprocmask(), SIG_BLOCK, SIGCHLD,
65
65
SIG_UNBLOCK, kill() */
66
66
#include <errno.h> /* errno, EBADF */
67
#include <inttypes.h> /* intmax_t, SCNdMAX, PRIdMAX, */
69
68
#define BUFFER_SIZE 256
115
114
if(name != NULL){
116
115
copy_name = strdup(name);
117
116
if(copy_name == NULL){
123
*new_plugin = (plugin){ .name = copy_name,
126
.next = plugin_list };
121
*new_plugin = (plugin) { .name = copy_name,
124
.next = plugin_list };
128
126
new_plugin->argv = malloc(sizeof(char *) * 2);
129
127
if(new_plugin->argv == NULL){
378
375
error_t parse_opt(int key, char *arg, __attribute__((unused))
379
struct argp_state *state){
376
struct argp_state *state) {
381
378
case 'g': /* --global-options */
466
463
/* This is already done by parse_opt_config_file() */
468
465
case 130: /* --userid */
469
ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
470
if(ret < 1 or tmpmax != (uid_t)tmpmax
471
or arg[numchars] != '\0'){
472
fprintf(stderr, "Bad user ID number: \"%s\", using %"
473
PRIdMAX "\n", arg, (intmax_t)uid);
466
/* In the GNU C library, uid_t is always unsigned int */
467
ret = sscanf(arg, "%u", &uid);
469
fprintf(stderr, "Bad user ID number: \"%s\", using %u\n", arg,
478
473
case 131: /* --groupid */
479
ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
480
if(ret < 1 or tmpmax != (gid_t)tmpmax
481
or arg[numchars] != '\0'){
482
fprintf(stderr, "Bad group ID number: \"%s\", using %"
483
PRIdMAX "\n", arg, (intmax_t)gid);
474
/* In the GNU C library, gid_t is always unsigned int */
475
ret = sscanf(arg, "%u", &gid);
477
fprintf(stderr, "Bad group ID number: \"%s\", using %u\n",
488
481
case 132: /* --debug */
512
505
ignores everything but the --config-file option. */
513
506
error_t parse_opt_config_file(int key, char *arg,
514
507
__attribute__((unused))
515
struct argp_state *state){
508
struct argp_state *state) {
517
510
case 'g': /* --global-options */
518
511
case 'G': /* --global-env */
519
512
case 'o': /* --options-for */
654
647
for(char **a = p->argv; *a != NULL; a++){
655
648
fprintf(stderr, "\tArg: %s\n", *a);
657
fprintf(stderr, "...and %d environment variables\n", p->envc);
650
fprintf(stderr, "...and %u environment variables\n", p->envc);
658
651
for(char **a = p->environ; *a != NULL; a++){
659
652
fprintf(stderr, "\t%s\n", *a);
969
962
if(WIFEXITED(proc->status)){
970
fprintf(stderr, "Plugin %" PRIdMAX " exited with status"
971
" %d\n", (intmax_t) (proc->pid),
963
fprintf(stderr, "Plugin %u exited with status %d\n",
964
(unsigned int) (proc->pid),
972
965
WEXITSTATUS(proc->status));
973
} else if(WIFSIGNALED(proc->status)){
974
fprintf(stderr, "Plugin %" PRIdMAX " killed by signal"
975
" %d\n", (intmax_t) (proc->pid),
966
} else if(WIFSIGNALED(proc->status)) {
967
fprintf(stderr, "Plugin %u killed by signal %d\n",
968
(unsigned int) (proc->pid),
976
969
WTERMSIG(proc->status));
977
970
} else if(WCOREDUMP(proc->status)){
978
fprintf(stderr, "Plugin %" PRIdMAX " dumped core\n",
979
(intmax_t) (proc->pid));
971
fprintf(stderr, "Plugin %u dumped core\n",
972
(unsigned int) (proc->pid));