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
1
#include <stdio.h> /* popen, fileno */
25
2
#include <iso646.h> /* and, or, not */
26
3
#include <sys/types.h> /* DIR, opendir, stat, struct stat, waitpid,
30
7
#include <sys/stat.h> /* stat, struct stat */
31
8
#include <unistd.h> /* stat, struct stat, chdir */
32
9
#include <stdlib.h> /* EXIT_FAILURE */
33
#include <sys/select.h> /* fd_set, select, FD_ZERO, FD_SET,
10
#include <sys/select.h> /* fd_set, select, FD_ZERO, FD_SET, FD_ISSET */
35
11
#include <string.h> /* strlen, strcpy, strcat */
36
12
#include <stdbool.h> /* true */
37
13
#include <sys/wait.h> /* waitpid, WIFEXITED, WEXITSTATUS */
38
14
#include <errno.h> /* errno */
39
#include <argp.h> /* argp */
49
24
struct process *next;
52
typedef struct plugin{
53
char *name; /* can be "global" and any plugin name */
59
plugin *getplugin(char *name, plugin **plugin_list){
60
for (plugin *p = *plugin_list; p != NULL; p = p->next){
62
or (p->name and name and (strcmp(p->name, name) == 0))){
66
/* Create a new plugin */
67
plugin *new_plugin = malloc(sizeof(plugin));
68
if (new_plugin == NULL){
72
new_plugin->name = name;
73
new_plugin->argv = malloc(sizeof(char *) * 2);
74
if (new_plugin->argv == NULL){
78
new_plugin->argv[0] = name;
79
new_plugin->argv[1] = NULL;
81
/* Append the new plugin to the list */
82
new_plugin->next = *plugin_list;
83
*plugin_list = new_plugin;
87
void addarguments(plugin *p, char *arg){
88
p->argv[p->argc] = arg;
89
p->argv = realloc(p->argv, sizeof(char *) * (size_t)(p->argc + 2));
95
p->argv[p->argc] = NULL;
98
27
#define BUFFER_SIZE 256
100
const char *argp_program_version =
101
"plugbasedclient 0.9";
102
const char *argp_program_bug_address =
103
"<mandos@fukt.bsnet.se>";
105
"Mandos plugin runner -- Run Mandos plugins";
106
/* A description of the arguments we accept. */
107
static char args_doc[] = "";
109
29
int main(int argc, char *argv[]){
110
30
char plugindir[] = "plugins.d";
111
31
size_t d_name_len, plugindir_len = sizeof(plugindir)-1;
116
36
int ret, maxfd = 0;
117
37
process *process_list = NULL;
119
/* The options we understand. */
120
struct argp_option options[] = {
121
{ .name = "global-options", .key = 'g',
122
.arg = "option[,option[,...]]", .flags = 0,
123
.doc = "Options effecting all plugins" },
124
{ .name = "options-for", .key = 'o',
125
.arg = "plugin:option[,option[,...]]", .flags = 0,
126
.doc = "Options effecting only specified plugins" },
130
error_t parse_opt (int key, char *arg, struct argp_state *state) {
131
/* Get the INPUT argument from `argp_parse', which we
132
know is a pointer to our arguments structure. */
133
plugin **plugins = state->input;
137
char *p = strtok(arg, ",");
139
addarguments(getplugin(NULL, plugins), p);
140
p = strtok(NULL, ",");
146
char *name = strtok(arg, ":");
147
char *p = strtok(NULL, ":");
150
addarguments(getplugin(name, plugins), p);
151
p = strtok(NULL, ",");
161
return ARGP_ERR_UNKNOWN;
166
plugin *plugin_list = NULL;
168
struct argp argp = { .options = options, .parser = parse_opt,
169
.args_doc = args_doc, .doc = doc };
171
argp_parse (&argp, argc, argv, 0, 0, &plugin_list);
173
/* for(plugin *p = plugin_list; p != NULL; p=p->next){ */
174
/* fprintf(stderr, "Plugin: %s has %d arguments\n", p->name ? p->name : "Global", p->argc); */
175
/* for(char **a = p->argv + 1; *a != NULL; a++){ */
176
/* fprintf(stderr, "\tArg: %s\n", *a); */
182
39
dir = opendir(plugindir);
185
42
fprintf(stderr, "Can not open directory\n");
186
43
return EXIT_FAILURE;
203
60
or dirst->d_name[d_name_len - 1] == '~'){
207
char *filename = malloc(d_name_len + plugindir_len + 2);
64
char *filename = malloc(d_name_len + plugindir_len + 1);
208
65
strcpy(filename, plugindir);
209
66
strcat(filename, "/");
210
67
strcat(filename, dirst->d_name);
212
69
stat(filename, &st);
214
71
if (S_ISREG(st.st_mode) and (access(filename, X_OK) == 0)){
215
72
// Starting a new process to be watched
216
73
process *new_process = malloc(sizeof(process));
223
76
new_process->pid = fork();
224
77
if(new_process->pid == 0){
225
78
/* this is the child process */
227
80
close(pipefd[0]); /* close unused read end of pipe */
228
81
dup2(pipefd[1], STDOUT_FILENO); /* replace our stdout */
230
basename = strrchr(filename, '/');
231
if (basename == NULL){
236
plugin *p = getplugin(basename, &plugin_list);
238
plugin *g = getplugin(NULL, &plugin_list);
239
for(char **a = g->argv + 1; *a != NULL; a++){
242
if(execv(filename, p->argv) < 0){
82
/* create a new modified argument list */
83
char **new_argv = malloc(sizeof(char *) * argc + 1);
84
new_argv[0] = filename;
85
for(int i = 1; i < argc; i++){
86
new_argv[i] = argv[i];
88
new_argv[argc] = NULL;
89
if(execv(filename, new_argv) < 0){
245
92
exit(EXIT_FAILURE);
294
141
ret = read(process_itr->fd, process_itr->buffer
295
142
+ process_itr->buffer_length, BUFFER_SIZE);
297
/* Read error from this process; ignore it */
300
process_itr->buffer_length += (size_t) ret;
143
process_itr->buffer_length+=ret;
303
146
/* wait for process exit */
305
148
waitpid(process_itr->pid, &status, 0);
306
149
if(WIFEXITED(status) and WEXITSTATUS(status) == 0){
307
for(size_t written = 0;
308
written < process_itr->buffer_length;){
309
ret = write(STDOUT_FILENO,
310
process_itr->buffer + written,
311
process_itr->buffer_length - written);
316
written += (size_t)ret;
150
write(STDOUT_FILENO, process_itr->buffer,
151
process_itr->buffer_length);
320
154
FD_CLR(process_itr->fd, &rfds_orig);