18
18
* along with this program. If not, see
19
19
* <http://www.gnu.org/licenses/>.
21
* Contact the authors at <https://www.fukt.bsnet.se/~belorn/> and
22
* <https://www.fukt.bsnet.se/~teddy/>.
21
* Contact the authors at <mandos@fukt.bsnet.se>.
25
#define _FORTIFY_SOURCE 2
27
#include <stdio.h> /* popen, fileno */
28
#include <iso646.h> /* and, or, not */
29
#include <sys/types.h> /* DIR, opendir, stat, struct stat, waitpid,
30
WIFEXITED, WEXITSTATUS, wait */
31
#include <sys/wait.h> /* wait */
32
#include <dirent.h> /* DIR, opendir */
33
#include <sys/stat.h> /* stat, struct stat */
34
#include <unistd.h> /* stat, struct stat, chdir */
35
#include <stdlib.h> /* EXIT_FAILURE */
36
#include <sys/select.h> /* fd_set, select, FD_ZERO, FD_SET,
38
#include <string.h> /* strlen, strcpy, strcat */
39
#include <stdbool.h> /* true */
40
#include <sys/wait.h> /* waitpid, WIFEXITED, WEXITSTATUS */
41
#include <errno.h> /* errno */
24
#include <stdio.h> /* popen(), fileno(), fprintf(),
25
stderr, STDOUT_FILENO */
26
#include <iso646.h> /* and, or, not */
27
#include <sys/types.h> /* DIR, opendir(), stat(), struct stat,
28
waitpid(), WIFEXITED(),
29
WEXITSTATUS(), wait() */
30
#include <sys/wait.h> /* wait() */
31
#include <dirent.h> /* DIR, struct dirent, opendir(),
32
readdir(), closedir() */
33
#include <sys/stat.h> /* struct stat, stat(), S_ISREG() */
34
#include <unistd.h> /* struct stat, stat(), S_ISREG(),
36
#include <fcntl.h> /* fcntl() */
37
#include <stddef.h> /* NULL */
38
#include <stdlib.h> /* EXIT_FAILURE */
39
#include <sys/select.h> /* fd_set, select(), FD_ZERO(),
40
FD_SET(), FD_ISSET() */
41
#include <string.h> /* strlen(), strcpy(), strcat() */
42
#include <stdbool.h> /* true */
43
#include <sys/wait.h> /* waitpid(), WIFEXITED(),
45
#include <errno.h> /* errno */
46
#include <argp.h> /* struct argp_option,
47
struct argp_state, struct argp,
51
58
struct process *next;
61
typedef struct plugin{
62
char *name; /* can be NULL or any plugin name */
69
plugin *getplugin(char *name, plugin **plugin_list){
70
for (plugin *p = *plugin_list; p != NULL; p = p->next){
72
or (p->name and name and (strcmp(p->name, name) == 0))){
76
/* Create a new plugin */
77
plugin *new_plugin = malloc(sizeof(plugin));
78
if (new_plugin == NULL){
82
new_plugin->name = name;
83
new_plugin->argv = malloc(sizeof(char *) * 2);
84
if (new_plugin->argv == NULL){
88
new_plugin->argv[0] = name;
89
new_plugin->argv[1] = NULL;
91
new_plugin->disabled = false;
92
new_plugin->next = *plugin_list;
93
/* Append the new plugin to the list */
94
*plugin_list = new_plugin;
98
void addargument(plugin *p, char *arg){
99
p->argv[p->argc] = arg;
100
p->argv = realloc(p->argv, sizeof(char *) * (size_t)(p->argc + 2));
101
if (p->argv == NULL){
106
p->argv[p->argc] = NULL;
110
* Based on the example in the GNU LibC manual chapter 13.13 "File
112
* *Note File Descriptor Flags:(libc)Descriptor Flags.
114
int set_cloexec_flag(int fd)
116
int ret = fcntl(fd, F_GETFD, 0);
117
/* If reading the flags failed, return error indication now. */
121
/* Store modified flag word in the descriptor. */
122
return fcntl(fd, F_SETFD, ret | FD_CLOEXEC);
54
126
#define BUFFER_SIZE 256
128
const char *argp_program_version =
129
"plugbasedclient 0.9";
130
const char *argp_program_bug_address =
131
"<mandos@fukt.bsnet.se>";
56
133
int main(int argc, char *argv[]){
57
char plugindir[] = "plugins.d";
58
size_t d_name_len, plugindir_len = sizeof(plugindir)-1;
134
const char *plugindir = "/conf/conf.d/mandos/plugins.d";
60
137
struct dirent *dirst;
63
140
int ret, maxfd = 0;
64
141
process *process_list = NULL;
143
int exitstatus = EXIT_SUCCESS;
145
/* The options we understand. */
146
struct argp_option options[] = {
147
{ .name = "global-options", .key = 'g',
148
.arg = "OPTION[,OPTION[,...]]",
149
.doc = "Options passed to all plugins" },
150
{ .name = "options-for", .key = 'o',
151
.arg = "PLUGIN:OPTION[,OPTION[,...]]",
152
.doc = "Options passed only to specified plugin" },
153
{ .name = "disable", .key = 'd',
155
.doc = "Disable a specific plugin", .group = 1 },
156
{ .name = "plugin-dir", .key = 128,
158
.doc = "Specify a different plugin directory", .group = 2 },
159
{ .name = "debug", .key = 129,
160
.doc = "Debug mode", .group = 3 },
164
error_t parse_opt (int key, char *arg, struct argp_state *state) {
165
/* Get the INPUT argument from `argp_parse', which we
166
know is a pointer to our plugin list pointer. */
167
plugin **plugins = state->input;
171
char *p = strtok(arg, ",");
173
addargument(getplugin(NULL, plugins), p);
174
p = strtok(NULL, ",");
180
char *name = strtok(arg, ":");
181
char *p = strtok(NULL, ":");
185
addargument(getplugin(name, plugins), p);
186
p = strtok(NULL, ",");
193
getplugin(arg, plugins)->disabled = true;
208
return ARGP_ERR_UNKNOWN;
213
plugin *plugin_list = NULL;
215
struct argp argp = { .options = options, .parser = parse_opt,
217
.doc = "Mandos plugin runner -- Run plugins" };
219
argp_parse (&argp, argc, argv, 0, 0, &plugin_list);
222
for(plugin *p = plugin_list; p != NULL; p=p->next){
223
fprintf(stderr, "Plugin: %s has %d arguments\n",
224
p->name ? p->name : "Global", p->argc - 1);
225
for(char **a = p->argv; *a != NULL; a++){
226
fprintf(stderr, "\tArg: %s\n", *a);
66
231
dir = opendir(plugindir);
232
/* Set the FD_CLOEXEC flag on the directory */
233
ret = set_cloexec_flag(dirfd(dir));
235
perror("set_cloexec_flag");
69
240
fprintf(stderr, "Can not open directory\n");
70
241
return EXIT_FAILURE;
76
247
dirst = readdir(dir);
83
254
d_name_len = strlen(dirst->d_name);
85
// Ignore dotfiles and backup files
86
if (dirst->d_name[0] == '.'
87
or dirst->d_name[d_name_len - 1] == '~'){
91
char *filename = malloc(d_name_len + plugindir_len + 2);
256
// Ignore dotfiles, backup files and other junk
258
bool bad_name = false;
260
const char const *bad_prefixes[] = { ".", "#", NULL };
262
const char const *bad_suffixes[] = { "~", "#", ".dpkg-new",
264
".dpkg-divert", NULL };
265
for(const char **pre = bad_prefixes; *pre != NULL; pre++){
266
size_t pre_len = strlen(*pre);
267
if((d_name_len >= pre_len)
268
and strncmp((dirst->d_name), *pre, pre_len) == 0){
270
fprintf(stderr, "Ignoring plugin dir entry name \"%s\""
271
" with bad prefix %s\n", dirst->d_name, *pre);
282
for(const char **suf = bad_suffixes; *suf != NULL; suf++){
283
size_t suf_len = strlen(*suf);
284
if((d_name_len >= suf_len)
285
and (strcmp((dirst->d_name)+d_name_len-suf_len, *suf)
288
fprintf(stderr, "Ignoring plugin dir entry name \"%s\""
289
" with bad suffix %s\n", dirst->d_name, *suf);
301
char *filename = malloc(d_name_len + strlen(plugindir) + 2);
302
if (filename == NULL){
304
exitstatus =EXIT_FAILURE;
92
307
strcpy(filename, plugindir);
93
308
strcat(filename, "/");
94
309
strcat(filename, dirst->d_name);
96
311
stat(filename, &st);
98
if (S_ISREG(st.st_mode) and (access(filename, X_OK) == 0)){
99
// Starting a new process to be watched
100
process *new_process = malloc(sizeof(process));
103
new_process->pid = fork();
104
if(new_process->pid == 0){
105
/* this is the child process */
107
close(pipefd[0]); /* close unused read end of pipe */
108
dup2(pipefd[1], STDOUT_FILENO); /* replace our stdout */
109
/* create a new modified argument list */
110
char **new_argv = malloc(sizeof(char *)
111
* ((unsigned int) argc + 1));
112
new_argv[0] = filename;
113
for(int i = 1; i < argc; i++){
114
new_argv[i] = argv[i];
116
new_argv[argc] = NULL;
117
if(execv(filename, new_argv) < 0){
124
close(pipefd[1]); /* close unused write end of pipe */
125
new_process->fd = pipefd[0];
126
new_process->buffer = malloc(BUFFER_SIZE);
127
if (new_process->buffer == NULL){
313
if (not S_ISREG(st.st_mode) or (access(filename, X_OK) != 0)){
315
fprintf(stderr, "Ignoring plugin dir entry name \"%s\""
316
" with bad type or mode\n", filename);
320
if(getplugin(dirst->d_name, &plugin_list)->disabled){
322
fprintf(stderr, "Ignoring disabled plugin \"%s\"",
327
// Starting a new process to be watched
334
plugin *p = getplugin(dirst->d_name, &plugin_list);
336
/* Add global arguments to argument list for this plugin */
337
plugin *g = getplugin(NULL, &plugin_list);
338
for(char **a = g->argv + 1; *a != NULL; a++){
344
/* this is the child process */
346
close(pipefd[0]); /* close unused read end of pipe */
347
dup2(pipefd[1], STDOUT_FILENO); /* replace our stdout */
349
if(execv(filename, p->argv) < 0){
131
new_process->buffer_size = BUFFER_SIZE;
132
new_process->buffer_length = 0;
133
FD_SET(new_process->fd, &rfds_orig);
135
if (maxfd < new_process->fd){
136
maxfd = new_process->fd;
140
new_process->next = process_list;
141
process_list = new_process;
356
close(pipefd[1]); /* close unused write end of pipe */
357
process *new_process = malloc(sizeof(process));
358
if (new_process == NULL){
360
exitstatus = EXIT_FAILURE;
364
new_process->fd = pipefd[0];
365
new_process->buffer = malloc(BUFFER_SIZE);
366
if (new_process->buffer == NULL){
368
exitstatus = EXIT_FAILURE;
371
new_process->buffer_size = BUFFER_SIZE;
372
new_process->buffer_length = 0;
373
FD_SET(new_process->fd, &rfds_all);
375
if (maxfd < new_process->fd){
376
maxfd = new_process->fd;
380
new_process->next = process_list;
381
process_list = new_process;
147
386
if (process_list != NULL){
149
fd_set rfds = rfds_orig;
388
fd_set rfds = rfds_all;
150
389
int select_ret = select(maxfd+1, &rfds, NULL, NULL, NULL);
151
390
if (select_ret == -1){