/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

plugbasedclient
        Parse a single argument as a plus-separated list of options

Show diffs side-by-side

added added

removed removed

Lines of Context:
142
142
  int status;
143
143
  pid_t pid = wait(&status);
144
144
  while(proc != NULL and proc->pid != pid){
145
 
    proc = proc->next;    
 
145
    proc = proc->next;
146
146
  }
147
147
  if(proc == NULL){
148
148
    /* Process not found in process list */
167
167
  struct sigaction old_sigchld_action;
168
168
  struct sigaction sigchld_action = { .sa_handler = handle_sigchld,
169
169
                                      .sa_flags = SA_NOCLDSTOP };
170
 
 
 
170
  char *plus_options = NULL;
 
171
  char **plus_argv = NULL;
 
172
  
171
173
  /* Establish a signal handler */
172
174
  sigemptyset(&sigchld_action.sa_mask);
173
175
  ret = sigaddset(&sigchld_action.sa_mask, SIGCHLD);
217
219
        do{
218
220
          addargument(getplugin(NULL, plugins), p);
219
221
          p = strtok(NULL, ",");
220
 
        } while (p);
 
222
        } while (p != NULL);
221
223
      }
222
224
      break;
223
225
    case 'o':
224
226
      if (arg != NULL){
225
227
        char *name = strtok(arg, ":");
226
228
        char *p = strtok(NULL, ":");
227
 
        if(p){
 
229
        if(p != NULL){
228
230
          p = strtok(p, ",");
229
231
          do{
230
232
            addargument(getplugin(name, plugins), p);
231
233
            p = strtok(NULL, ",");
232
 
          } while (p);
 
234
          } while (p != NULL);
233
235
        }
234
236
      }
235
237
      break;
251
253
      debug = true;
252
254
      break;
253
255
    case ARGP_KEY_ARG:
254
 
      argp_usage (state);
 
256
      if(plus_options != NULL or arg == NULL or arg[0] != '+'){
 
257
        argp_usage (state);
 
258
      }
 
259
      plus_options = arg;
255
260
      break;
256
261
    case ARGP_KEY_END:
257
262
      break;
264
269
  plugin *plugin_list = NULL;
265
270
  
266
271
  struct argp argp = { .options = options, .parser = parse_opt,
267
 
                       .args_doc = "",
 
272
                       .args_doc = "[+PLUS_SEPARATED_OPTIONS]",
268
273
                       .doc = "Mandos plugin runner -- Run plugins" };
269
274
  
270
275
  argp_parse (&argp, argc, argv, 0, 0, &plugin_list);  
271
 
 
 
276
  
 
277
  if(plus_options){
 
278
    /* This is a mangled argument in the form of
 
279
     "+--option+--other-option=parameter+--yet-another-option", etc */
 
280
    /* Make new argc and argv vars, and call argp_parse() again. */
 
281
    plus_options++;             /* skip the first '+' character */
 
282
    const char delims[] = "+";
 
283
    char *arg;
 
284
    int new_argc = 1;
 
285
    plus_argv = malloc(sizeof(char*) * 2);
 
286
    if(plus_argv == NULL){
 
287
      perror("malloc");
 
288
      exitstatus = EXIT_FAILURE;
 
289
      goto end;
 
290
    }
 
291
    plus_argv[0] = argv[0];
 
292
    plus_argv[1] = NULL;
 
293
    arg = strtok(plus_options, delims); /* Get first argument */
 
294
    while(arg != NULL){
 
295
      new_argc++;
 
296
      plus_argv = realloc(plus_argv, sizeof(char *)
 
297
                         * ((unsigned int) new_argc + 1));
 
298
      if(plus_argv == NULL){
 
299
        perror("malloc");
 
300
        exitstatus = EXIT_FAILURE;
 
301
        goto end;
 
302
      }
 
303
      plus_argv[new_argc-1] = arg;
 
304
      plus_argv[new_argc] = NULL;
 
305
      arg = strtok(NULL, delims); /* Get next argument */
 
306
    }
 
307
    argp_parse (&argp, new_argc, plus_argv, 0, 0, &plugin_list);  
 
308
  }
 
309
  
272
310
  if(debug){
273
311
    for(plugin *p = plugin_list; p != NULL; p=p->next){
274
312
      fprintf(stderr, "Plugin: %s has %d arguments\n",
278
316
      }
279
317
    }
280
318
  }
281
 
 
 
319
  
282
320
  ret = setuid(uid);
283
321
  if (ret == -1){
284
322
    perror("setuid");
624
662
  /* Restore old signal handler */
625
663
  sigaction(SIGCHLD, &old_sigchld_action, NULL);
626
664
  
 
665
  free(plus_argv);
 
666
  
627
667
  /* Free the plugin list */
628
668
  for(plugin *next; plugin_list != NULL; plugin_list = next){
629
669
    next = plugin_list->next;