1
/* -*- coding: utf-8 -*- */
3
* Mandos plugin runner - Run Mandos plugins
5
* Copyright © 2007-2008 Teddy Hogeborn and 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 <https://www.fukt.bsnet.se/~belorn/> and
22
* <https://www.fukt.bsnet.se/~teddy/>.
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 */
45
typedef struct process{
54
#define BUFFER_SIZE 256
56
int main(int argc, char *argv[]){
57
char plugindir[] = "plugins.d";
58
size_t d_name_len, plugindir_len = sizeof(plugindir)-1;
64
process *process_list = NULL;
66
dir = opendir(plugindir);
69
fprintf(stderr, "Can not open directory\n");
78
// All directory entries have been processed
83
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);
92
strcpy(filename, plugindir);
93
strcat(filename, "/");
94
strcat(filename, dirst->d_name);
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){
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;
147
if (process_list != NULL){
149
fd_set rfds = rfds_orig;
150
int select_ret = select(maxfd+1, &rfds, NULL, NULL, NULL);
151
if (select_ret == -1){
155
for(process *process_itr = process_list; process_itr != NULL;
156
process_itr = process_itr->next){
157
if(FD_ISSET(process_itr->fd, &rfds)){
158
if(process_itr->buffer_length + BUFFER_SIZE
159
> process_itr->buffer_size){
160
process_itr->buffer = realloc(process_itr->buffer,
161
process_itr->buffer_size
162
+ (size_t) BUFFER_SIZE);
163
if (process_itr->buffer == NULL){
167
process_itr->buffer_size += BUFFER_SIZE;
169
ret = read(process_itr->fd, process_itr->buffer
170
+ process_itr->buffer_length, BUFFER_SIZE);
172
/* Read error from this process; ignore it */
175
process_itr->buffer_length += (size_t) ret;
178
/* wait for process exit */
180
waitpid(process_itr->pid, &status, 0);
181
if(WIFEXITED(status) and WEXITSTATUS(status) == 0){
182
write(STDOUT_FILENO, process_itr->buffer,
183
process_itr->buffer_length);
186
FD_CLR(process_itr->fd, &rfds_orig);
196
for(process *process_itr = process_list; process_itr != NULL;
197
process_itr = process_itr->next){
198
close(process_itr->fd);
199
kill(process_itr->pid, SIGTERM);
200
free(process_itr->buffer);