/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to plugbasedclient.c

  • Committer: Teddy Hogeborn
  • Date: 2008-08-01 06:33:15 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080801063315-4k33q3ek28hjc3tu
* plugins.d/plugbasedclient.c: Update include file comments.
  (struct process.disable): Renamed to "disabled".  All users changed.
  (addarguments): Renamed to "addargument".  All callers changed.
  (doc, args_doc): Removed.
  (main): Changed default "plugindir" to
          "/conf/conf.d/mandos/plugins.d".  Renamed "rfds_orig" to
           "rfds_all"; all users changed.  New "debug" and
           "exitstatus" variables.  New "--debug" option.  Removed
           unnecessary ".flags = 0" from all options.  Changed so that
           "--disable-plugin" only takes one plugin.  Check for
           non-existence of ":" in argument to "--options-for".  Added
           some debugging outputs.  Set the FD_CLOEXEC flag on the
           directory FD.  More capable code for dealing with
           disallowed plugin file name prefixes and suffixes.  Bug
           fix: check for some malloc failures.  Moved allocating the
           "struct process *new_process" to after the fork.  Do
           _exit() instead of exit() in the child.

* plugins.d/mandosclient.c: Updated contact information.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
/*
3
3
 * Mandos plugin runner - Run Mandos plugins
4
4
 *
5
 
 * Copyright © 2007-2008 Teddy Hogeborn and Björn Påhlsson.
 
5
 * Copyright © 2007-2008 Teddy Hogeborn & Björn Påhlsson
6
6
 * 
7
7
 * This program is free software: you can redistribute it and/or
8
8
 * modify it under the terms of the GNU General Public License as
18
18
 * along with this program.  If not, see
19
19
 * <http://www.gnu.org/licenses/>.
20
20
 * 
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>.
23
22
 */
24
23
 
25
 
#define _FORTIFY_SOURCE 2
26
 
 
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,
37
 
                           FD_ISSET */
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 */
42
 
#include <argp.h>       /* argp */
 
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(),
 
35
                                   fcntl() */
 
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(),
 
44
                                   WEXITSTATUS() */
 
45
#include <errno.h>              /* errno */
 
46
#include <argp.h>               /* struct argp_option,
 
47
                                   struct argp_state, struct argp,
 
48
                                   argp_parse() */
43
49
 
44
50
struct process;
45
51
 
53
59
} process;
54
60
 
55
61
typedef struct plugin{
56
 
  char *name;           /* can be "global" and any plugin name */
 
62
  char *name;                   /* can be NULL or any plugin name */
57
63
  char **argv;
58
64
  int argc;
 
65
  bool disabled;
59
66
  struct plugin *next;
60
67
} plugin;
61
68
 
81
88
  new_plugin->argv[0] = name;
82
89
  new_plugin->argv[1] = NULL;
83
90
  new_plugin->argc = 1;
 
91
  new_plugin->disabled = false;
 
92
  new_plugin->next = *plugin_list;
84
93
  /* Append the new plugin to the list */
85
 
  new_plugin->next = *plugin_list;
86
94
  *plugin_list = new_plugin;
87
95
  return new_plugin;
88
96
}
89
97
 
90
 
void addarguments(plugin *p, char *arg){
 
98
void addargument(plugin *p, char *arg){
91
99
  p->argv[p->argc] = arg;
92
100
  p->argv = realloc(p->argv, sizeof(char *) * (size_t)(p->argc + 2));
93
101
  if (p->argv == NULL){
97
105
  p->argc++;
98
106
  p->argv[p->argc] = NULL;
99
107
}
100
 
        
 
108
 
101
109
#define BUFFER_SIZE 256
102
110
 
103
111
const char *argp_program_version =
104
112
  "plugbasedclient 0.9";
105
113
const char *argp_program_bug_address =
106
114
  "<mandos@fukt.bsnet.se>";
107
 
static char doc[] =
108
 
  "Mandos plugin runner -- Run Mandos plugins";
109
 
/* A description of the arguments we accept. */
110
 
static char args_doc[] = "";
111
115
 
112
116
int main(int argc, char *argv[]){
113
 
  char plugindir[] = "plugins.d";
114
 
  size_t d_name_len, plugindir_len = sizeof(plugindir)-1;
 
117
  const char *plugindir = "/conf/conf.d/mandos/plugins.d";
 
118
  size_t d_name_len;
115
119
  DIR *dir;
116
120
  struct dirent *dirst;
117
121
  struct stat st;
118
 
  fd_set rfds_orig;
 
122
  fd_set rfds_all;
119
123
  int ret, maxfd = 0;
120
124
  process *process_list = NULL;
 
125
  bool debug = false;
 
126
  int exitstatus = EXIT_SUCCESS;
121
127
  
122
128
  /* The options we understand. */
123
129
  struct argp_option options[] = {
124
130
    { .name = "global-options", .key = 'g',
125
 
      .arg = "option[,option[,...]]", .flags = 0,
126
 
      .doc = "Options effecting all plugins" },
 
131
      .arg = "OPTION[,OPTION[,...]]",
 
132
      .doc = "Options passed to all plugins" },
127
133
    { .name = "options-for", .key = 'o',
128
 
      .arg = "plugin:option[,option[,...]]", .flags = 0,
129
 
      .doc = "Options effecting only specified plugins" },
 
134
      .arg = "PLUGIN:OPTION[,OPTION[,...]]",
 
135
      .doc = "Options passed only to specified plugin" },
 
136
    { .name = "disable", .key = 'd',
 
137
      .arg = "PLUGIN",
 
138
      .doc = "Disable a specific plugin", .group = 1 },
 
139
    { .name = "plugin-dir", .key = 128,
 
140
      .arg = "DIRECTORY",
 
141
      .doc = "Specify a different plugin directory", .group = 2 },
 
142
    { .name = "debug", .key = 129,
 
143
      .doc = "Debug mode", .group = 3 },
130
144
    { .name = NULL }
131
145
  };
132
146
  
133
147
  error_t parse_opt (int key, char *arg, struct argp_state *state) {
134
148
       /* Get the INPUT argument from `argp_parse', which we
135
 
          know is a pointer to our arguments structure. */
 
149
          know is a pointer to our plugin list pointer. */
136
150
    plugin **plugins = state->input;
137
151
    switch (key) {
138
152
    case 'g':
139
153
      if (arg != NULL){
140
154
        char *p = strtok(arg, ",");
141
155
        do{
142
 
          addarguments(getplugin(NULL, plugins), p);
 
156
          addargument(getplugin(NULL, plugins), p);
143
157
          p = strtok(NULL, ",");
144
158
        } while (p);
145
159
      }
148
162
      if (arg != NULL){
149
163
        char *name = strtok(arg, ":");
150
164
        char *p = strtok(NULL, ":");
151
 
        p = strtok(p, ",");
152
 
        do{
153
 
          addarguments(getplugin(name, plugins), p);
154
 
          p = strtok(NULL, ",");
155
 
        } while (p);
156
 
      }
 
165
        if(p){
 
166
          p = strtok(p, ",");
 
167
          do{
 
168
            addargument(getplugin(name, plugins), p);
 
169
            p = strtok(NULL, ",");
 
170
          } while (p);
 
171
        }
 
172
      }
 
173
      break;
 
174
    case 'd':
 
175
      if (arg != NULL){
 
176
        getplugin(arg, plugins)->disabled = true;
 
177
      }
 
178
      break;
 
179
    case 128:
 
180
      plugindir = arg;
 
181
      break;
 
182
    case 129:
 
183
      debug = true;
157
184
      break;
158
185
    case ARGP_KEY_ARG:
159
186
      argp_usage (state);
165
192
    }
166
193
    return 0;
167
194
  }
168
 
 
 
195
  
169
196
  plugin *plugin_list = NULL;
170
197
  
171
198
  struct argp argp = { .options = options, .parser = parse_opt,
172
 
                       .args_doc = args_doc, .doc = doc };
173
 
 
 
199
                       .args_doc = "",
 
200
                       .doc = "Mandos plugin runner -- Run plugins" };
 
201
  
174
202
  argp_parse (&argp, argc, argv, 0, 0, &plugin_list);
175
 
 
176
 
/*   for(plugin *p = plugin_list; p != NULL; p=p->next){ */
177
 
/*     fprintf(stderr, "Plugin: %s has %d arguments\n", p->name ? p->name : "Global", p->argc); */
178
 
/*     for(char **a = p->argv + 1; *a != NULL; a++){ */
179
 
/*       fprintf(stderr, "\tArg: %s\n", *a); */
180
 
/*     } */
181
 
/*   } */
182
203
  
183
 
/*   return 0; */
 
204
  if(debug){
 
205
    for(plugin *p = plugin_list; p != NULL; p=p->next){
 
206
      fprintf(stderr, "Plugin: %s has %d arguments\n",
 
207
              p->name ? p->name : "Global", p->argc);
 
208
      for(char **a = p->argv; *a != NULL; a++){
 
209
        fprintf(stderr, "\tArg: %s\n", *a);
 
210
      }
 
211
    }
 
212
  }
184
213
  
185
214
  dir = opendir(plugindir);
 
215
  {
 
216
    /* Set the FD_CLOEXEC flag on the directory */
 
217
    int fd = dirfd(dir);
 
218
    ret = fcntl (fd, F_GETFD, 0);
 
219
    if(ret < 0){
 
220
      perror("fcntl F_GETFD");
 
221
      goto end;
 
222
    }
 
223
    ret = fcntl(fd, F_SETFD, FD_CLOEXEC | ret);
 
224
    if(ret < 0){
 
225
      perror("fcntl F_SETFD");
 
226
      goto end;
 
227
    }
 
228
  }
186
229
  
187
230
  if(dir == NULL){
188
231
    fprintf(stderr, "Can not open directory\n");
189
232
    return EXIT_FAILURE;
190
233
  }
191
234
  
192
 
  FD_ZERO(&rfds_orig);
 
235
  FD_ZERO(&rfds_all);
193
236
  
194
237
  while(true){
195
238
    dirst = readdir(dir);
201
244
    
202
245
    d_name_len = strlen(dirst->d_name);
203
246
    
204
 
    // Ignore dotfiles and backup files
205
 
    if (dirst->d_name[0] == '.'
206
 
        or dirst->d_name[d_name_len - 1] == '~'){
207
 
      continue;
208
 
    }
209
 
 
210
 
    char *filename = malloc(d_name_len + plugindir_len + 2);
 
247
    // Ignore dotfiles, backup files and other junk
 
248
    {
 
249
      bool bad_name = false;
 
250
      
 
251
      const char const *bad_prefixes[] = { ".", "#", NULL };
 
252
      
 
253
      const char const *bad_suffixes[] = { "~", "#", ".dpkg-new",
 
254
                                           ".dpkg-old",
 
255
                                           ".dpkg-divert", NULL };
 
256
      for(const char **pre = bad_prefixes; *pre != NULL; pre++){
 
257
        size_t pre_len = strlen(*pre);
 
258
        if((d_name_len >= pre_len)
 
259
           and strncmp((dirst->d_name), *pre, pre_len) == 0){
 
260
          if(debug){
 
261
            fprintf(stderr, "Ignoring plugin dir entry name \"%s\""
 
262
                    " with bad prefix %s\n", dirst->d_name, *pre);
 
263
          }
 
264
          bad_name = true;
 
265
          break;
 
266
        }
 
267
      }
 
268
      
 
269
      if(bad_name){
 
270
        continue;
 
271
      }
 
272
      
 
273
      for(const char **suf = bad_suffixes; *suf != NULL; suf++){
 
274
        size_t suf_len = strlen(*suf);
 
275
        if((d_name_len >= suf_len)
 
276
           and (strcmp((dirst->d_name)+d_name_len-suf_len, *suf)
 
277
                == 0)){
 
278
          if(debug){
 
279
            fprintf(stderr, "Ignoring plugin dir entry name \"%s\""
 
280
                    " with bad suffix %s\n", dirst->d_name, *suf);
 
281
          }
 
282
          bad_name = true;
 
283
          break;
 
284
        }
 
285
      }
 
286
      
 
287
      if(bad_name){
 
288
        continue;
 
289
      }
 
290
    }
 
291
    
 
292
    char *filename = malloc(d_name_len + strlen(plugindir) + 2);
 
293
    if (filename == NULL){
 
294
      perror("malloc");
 
295
      exitstatus =EXIT_FAILURE;
 
296
      goto end;
 
297
    }
211
298
    strcpy(filename, plugindir);
212
299
    strcat(filename, "/");
213
300
    strcat(filename, dirst->d_name);    
214
301
 
215
302
    stat(filename, &st);
216
303
 
217
 
    if (S_ISREG(st.st_mode) and (access(filename, X_OK) == 0)){
218
 
      // Starting a new process to be watched
219
 
      process *new_process = malloc(sizeof(process));
220
 
      int pipefd[2];
221
 
      ret = pipe(pipefd);
222
 
      if (ret == -1){
223
 
        perror(argv[0]);
224
 
        goto end;
225
 
      }
226
 
      new_process->pid = fork();
227
 
      if(new_process->pid == 0){
228
 
        /* this is the child process */
229
 
        closedir(dir);
230
 
        close(pipefd[0]);       /* close unused read end of pipe */
231
 
        dup2(pipefd[1], STDOUT_FILENO); /* replace our stdout */
232
 
        char *basename;
233
 
        basename = strrchr(filename, '/');
234
 
        if (basename == NULL){
235
 
          basename = filename;
236
 
        } else {
237
 
          basename++;
238
 
        }
239
 
        plugin *p = getplugin(basename, &plugin_list);
240
 
 
241
 
        plugin *g = getplugin(NULL, &plugin_list);
242
 
        for(char **a = g->argv + 1; *a != NULL; a++){
243
 
          addarguments(p, *a);
244
 
        }
245
 
        if(execv(filename, p->argv) < 0){
246
 
          perror(argv[0]);
247
 
          close(pipefd[1]);
248
 
          exit(EXIT_FAILURE);
249
 
        }
250
 
        /* no return */
251
 
      }
252
 
      close(pipefd[1]);         /* close unused write end of pipe */
253
 
      new_process->fd = pipefd[0];
254
 
      new_process->buffer = malloc(BUFFER_SIZE);
255
 
      if (new_process->buffer == NULL){
256
 
        perror(argv[0]);
257
 
        goto end;
258
 
      }
259
 
      new_process->buffer_size = BUFFER_SIZE;
260
 
      new_process->buffer_length = 0;
261
 
      FD_SET(new_process->fd, &rfds_orig);
262
 
      
263
 
      if (maxfd < new_process->fd){
264
 
        maxfd = new_process->fd;
265
 
      }
266
 
      
267
 
      //List handling
268
 
      new_process->next = process_list;
269
 
      process_list = new_process;
270
 
    }
 
304
    if (not S_ISREG(st.st_mode) or (access(filename, X_OK) != 0)){
 
305
      if(debug){
 
306
        fprintf(stderr, "Ignoring plugin dir entry name \"%s\""
 
307
                " with bad type or mode\n", filename);
 
308
      }
 
309
      continue;
 
310
    }
 
311
    if(getplugin(dirst->d_name, &plugin_list)->disabled){
 
312
      if(debug){
 
313
        fprintf(stderr, "Ignoring disabled plugin \"%s\"",
 
314
                dirst->d_name);
 
315
      }
 
316
      continue;
 
317
    }
 
318
    // Starting a new process to be watched
 
319
    int pipefd[2]; 
 
320
    ret = pipe(pipefd);
 
321
    if (ret == -1){
 
322
      perror(argv[0]);
 
323
      goto end;
 
324
    }
 
325
    pid_t pid = fork();
 
326
    if(pid == 0){
 
327
      /* this is the child process */
 
328
      closedir(dir);
 
329
      close(pipefd[0]); /* close unused read end of pipe */
 
330
      dup2(pipefd[1], STDOUT_FILENO); /* replace our stdout */
 
331
      
 
332
      plugin *p = getplugin(dirst->d_name, &plugin_list);
 
333
      plugin *g = getplugin(NULL, &plugin_list);
 
334
      for(char **a = g->argv + 1; *a != NULL; a++){
 
335
        addargument(p, *a);
 
336
      }
 
337
      if(execv(filename, p->argv) < 0){
 
338
        perror(argv[0]);
 
339
        close(pipefd[1]);
 
340
        _exit(EXIT_FAILURE);
 
341
      }
 
342
      /* no return */
 
343
    }
 
344
    close(pipefd[1]);           /* close unused write end of pipe */
 
345
    process *new_process = malloc(sizeof(process));
 
346
    if (new_process == NULL){
 
347
      perror("malloc");
 
348
      exitstatus = EXIT_FAILURE;
 
349
      goto end;
 
350
    }
 
351
    
 
352
    new_process->fd = pipefd[0];
 
353
    new_process->buffer = malloc(BUFFER_SIZE);
 
354
    if (new_process->buffer == NULL){
 
355
      perror("malloc");
 
356
      exitstatus = EXIT_FAILURE;
 
357
      goto end;
 
358
    }
 
359
    new_process->buffer_size = BUFFER_SIZE;
 
360
    new_process->buffer_length = 0;
 
361
    FD_SET(new_process->fd, &rfds_all);
 
362
      
 
363
    if (maxfd < new_process->fd){
 
364
      maxfd = new_process->fd;
 
365
    }
 
366
    
 
367
    //List handling
 
368
    new_process->next = process_list;
 
369
    process_list = new_process;
271
370
  }
272
371
  
273
372
  closedir(dir);
274
373
  
275
374
  if (process_list != NULL){
276
375
    while(true){
277
 
      fd_set rfds = rfds_orig;
 
376
      fd_set rfds = rfds_all;
278
377
      int select_ret = select(maxfd+1, &rfds, NULL, NULL, NULL);
279
378
      if (select_ret == -1){
280
379
        perror(argv[0]);
320
419
                }
321
420
                goto end;
322
421
              } else {
323
 
                FD_CLR(process_itr->fd, &rfds_orig);
 
422
                FD_CLR(process_itr->fd, &rfds_all);
324
423
              }
325
424
            }
326
425
          }
347
446
      break;
348
447
    }
349
448
  }  
350
 
  return EXIT_SUCCESS;
 
449
  return exitstatus;
351
450
}