1
/* -*- coding: utf-8 -*- */
3
* Mandos plugin runner - Run Mandos plugins
5
* Copyright © 2007-2008 Teddy Hogeborn & Björn Påhlsson
7
* This program is free software: you can redistribute it and/or
8
* modify it under the terms of the GNU General Public License as
9
* published by the Free Software Foundation, either version 3 of the
10
* License, or (at your option) any later version.
12
* This program is distributed in the hope that it will be useful, but
13
* WITHOUT ANY WARRANTY; without even the implied warranty of
14
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15
* General Public License for more details.
17
* You should have received a copy of the GNU General Public License
18
* along with this program. If not, see
19
* <http://www.gnu.org/licenses/>.
21
* Contact the authors at <mandos@fukt.bsnet.se>.
24
#include <stdio.h> /* popen, fileno */
25
#include <iso646.h> /* and, or, not */
26
#include <sys/types.h> /* DIR, opendir, stat, struct stat, waitpid,
27
WIFEXITED, WEXITSTATUS, wait */
28
#include <sys/wait.h> /* wait */
29
#include <dirent.h> /* DIR, opendir */
30
#include <sys/stat.h> /* stat, struct stat */
31
#include <unistd.h> /* stat, struct stat, chdir */
32
#include <stdlib.h> /* EXIT_FAILURE */
33
#include <sys/select.h> /* fd_set, select, FD_ZERO, FD_SET,
35
#include <string.h> /* strlen, strcpy, strcat */
36
#include <stdbool.h> /* true */
37
#include <sys/wait.h> /* waitpid, WIFEXITED, WEXITSTATUS */
38
#include <errno.h> /* errno */
39
#include <argp.h> /* argp */
43
typedef struct process{
52
typedef struct plugin{
53
char *name; /* can be "global" and any plugin name */
60
plugin *getplugin(char *name, plugin **plugin_list){
61
for (plugin *p = *plugin_list; p != NULL; p = p->next){
63
or (p->name and name and (strcmp(p->name, name) == 0))){
67
/* Create a new plugin */
68
plugin *new_plugin = malloc(sizeof(plugin));
69
if (new_plugin == NULL){
73
new_plugin->name = name;
74
new_plugin->argv = malloc(sizeof(char *) * 2);
75
if (new_plugin->argv == NULL){
79
new_plugin->argv[0] = name;
80
new_plugin->argv[1] = NULL;
82
new_plugin->disable = false;
83
new_plugin->next = *plugin_list;
84
/* Append the new plugin to the list */
85
*plugin_list = new_plugin;
89
void addarguments(plugin *p, char *arg){
90
p->argv[p->argc] = arg;
91
p->argv = realloc(p->argv, sizeof(char *) * (size_t)(p->argc + 2));
97
p->argv[p->argc] = NULL;
100
#define BUFFER_SIZE 256
102
const char *argp_program_version =
103
"plugbasedclient 0.9";
104
const char *argp_program_bug_address =
105
"<mandos@fukt.bsnet.se>";
107
"Mandos plugin runner -- Run Mandos plugins";
108
/* A description of the arguments we accept. */
109
static char args_doc[] = "";
111
int main(int argc, char *argv[]){
112
const char *plugindir = "plugins.d";
115
struct dirent *dirst;
119
process *process_list = NULL;
121
/* The options we understand. */
122
struct argp_option options[] = {
123
{ .name = "global-options", .key = 'g',
124
.arg = "option[,option[,...]]", .flags = 0,
125
.doc = "Options effecting all plugins" },
126
{ .name = "options-for", .key = 'o',
127
.arg = "plugin:option[,option[,...]]", .flags = 0,
128
.doc = "Options effecting only specified plugins" },
129
{ .name = "disable-plugin", .key = 'd',
130
.arg = "Plugin[,Plugin[,...]]", .flags = 0,
131
.doc = "Option to disable specififed plugins" },
132
{ .name = "plugin-dir", .key = 128,
133
.arg = "Directory", .flags = 0,
134
.doc = "Option to change directory to search for plugins" },
138
error_t parse_opt (int key, char *arg, struct argp_state *state) {
139
/* Get the INPUT argument from `argp_parse', which we
140
know is a pointer to our arguments structure. */
141
plugin **plugins = state->input;
145
char *p = strtok(arg, ",");
147
addarguments(getplugin(NULL, plugins), p);
148
p = strtok(NULL, ",");
154
char *name = strtok(arg, ":");
155
char *p = strtok(NULL, ":");
158
addarguments(getplugin(name, plugins), p);
159
p = strtok(NULL, ",");
165
char *p = strtok(arg, ",");
167
getplugin(p, plugins)->disable = true;
168
p = strtok(NULL, ",");
181
return ARGP_ERR_UNKNOWN;
186
plugin *plugin_list = NULL;
188
struct argp argp = { .options = options, .parser = parse_opt,
189
.args_doc = args_doc, .doc = doc };
191
argp_parse (&argp, argc, argv, 0, 0, &plugin_list);
193
/* for(plugin *p = plugin_list; p != NULL; p=p->next){ */
194
/* fprintf(stderr, "Plugin: %s has %d arguments\n", p->name ? p->name : "Global", p->argc); */
195
/* for(char **a = p->argv + 1; *a != NULL; a++){ */
196
/* fprintf(stderr, "\tArg: %s\n", *a); */
202
dir = opendir(plugindir);
205
fprintf(stderr, "Can not open directory\n");
212
dirst = readdir(dir);
214
// All directory entries have been processed
219
d_name_len = strlen(dirst->d_name);
221
// Ignore dotfiles and backup files
222
if (dirst->d_name[0] == '.'
223
or dirst->d_name[d_name_len - 1] == '~'){
227
char *filename = malloc(d_name_len + strlen(plugindir) + 2);
228
strcpy(filename, plugindir);
229
strcat(filename, "/");
230
strcat(filename, dirst->d_name);
234
if (S_ISREG(st.st_mode)
235
and (access(filename, X_OK) == 0)
236
and not (getplugin(dirst->d_name, &plugin_list)->disable)){
237
// Starting a new process to be watched
238
process *new_process = malloc(sizeof(process));
245
new_process->pid = fork();
246
if(new_process->pid == 0){
247
/* this is the child process */
249
close(pipefd[0]); /* close unused read end of pipe */
250
dup2(pipefd[1], STDOUT_FILENO); /* replace our stdout */
252
plugin *p = getplugin(dirst->d_name, &plugin_list);
253
plugin *g = getplugin(NULL, &plugin_list);
254
for(char **a = g->argv + 1; *a != NULL; a++){
257
if(execv(filename, p->argv) < 0){
264
close(pipefd[1]); /* close unused write end of pipe */
265
new_process->fd = pipefd[0];
266
new_process->buffer = malloc(BUFFER_SIZE);
267
if (new_process->buffer == NULL){
271
new_process->buffer_size = BUFFER_SIZE;
272
new_process->buffer_length = 0;
273
FD_SET(new_process->fd, &rfds_orig);
275
if (maxfd < new_process->fd){
276
maxfd = new_process->fd;
280
new_process->next = process_list;
281
process_list = new_process;
287
if (process_list != NULL){
289
fd_set rfds = rfds_orig;
290
int select_ret = select(maxfd+1, &rfds, NULL, NULL, NULL);
291
if (select_ret == -1){
295
for(process *process_itr = process_list; process_itr != NULL;
296
process_itr = process_itr->next){
297
if(FD_ISSET(process_itr->fd, &rfds)){
298
if(process_itr->buffer_length + BUFFER_SIZE
299
> process_itr->buffer_size){
300
process_itr->buffer = realloc(process_itr->buffer,
301
process_itr->buffer_size
302
+ (size_t) BUFFER_SIZE);
303
if (process_itr->buffer == NULL){
307
process_itr->buffer_size += BUFFER_SIZE;
309
ret = read(process_itr->fd, process_itr->buffer
310
+ process_itr->buffer_length, BUFFER_SIZE);
312
/* Read error from this process; ignore it */
315
process_itr->buffer_length += (size_t) ret;
318
/* wait for process exit */
320
waitpid(process_itr->pid, &status, 0);
321
if(WIFEXITED(status) and WEXITSTATUS(status) == 0){
322
for(size_t written = 0;
323
written < process_itr->buffer_length;){
324
ret = write(STDOUT_FILENO,
325
process_itr->buffer + written,
326
process_itr->buffer_length - written);
331
written += (size_t)ret;
335
FD_CLR(process_itr->fd, &rfds_orig);
345
for(process *process_itr = process_list; process_itr != NULL;
346
process_itr = process_itr->next){
347
close(process_itr->fd);
348
kill(process_itr->pid, SIGTERM);
349
free(process_itr->buffer);