/mandos/release

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

« back to all changes in this revision

Viewing changes to plugin-runner.c

  • Committer: Teddy Hogeborn
  • Date: 2008-09-07 09:36:35 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080907093635-yg1y272yv53dijhp
* Makefile (CONFDIR): Changed to be the same ("/etc/mandos") in both a
                      /usr/local install and a package install.
  (KEYDIR): Changed /usr/local install value to be "/etc/mandos/keys".
  (INITRAMFSTOOLS): Use $(DESTDIR) in /usr/local value too.

* initramfs-tools-hook: Look in "/etc/mandos/keys" too.

Show diffs side-by-side

added added

removed removed

Lines of Context:
394
394
      if(arg == NULL){
395
395
        break;
396
396
      }
397
 
      {
398
 
        char *envdef = strdup(arg);
399
 
        if(envdef == NULL){
400
 
          break;
401
 
        }
402
 
        if(not add_environment(getplugin(NULL), envdef, true)){
403
 
          perror("add_environment");
404
 
        }
 
397
      if(not add_environment(getplugin(NULL), arg, true)){
 
398
        perror("add_environment");
405
399
      }
406
400
      break;
407
401
    case 'o':                   /* --options-for */
435
429
        if(envdef == NULL){
436
430
          break;
437
431
        }
438
 
        char *p_name = strndup(arg, (size_t) (envdef-arg));
439
 
        if(p_name == NULL){
440
 
          break;
441
 
        }
442
 
        envdef++;
443
 
        if(not add_environment(getplugin(p_name), envdef, true)){
 
432
        *envdef = '\0';
 
433
        if(not add_environment(getplugin(arg), envdef+1, true)){
444
434
          perror("add_environment");
445
435
        }
446
436
      }
464
454
      }
465
455
      break;
466
456
    case 128:                   /* --plugin-dir */
 
457
      free(plugindir);
467
458
      plugindir = strdup(arg);
468
459
      if(plugindir == NULL){
469
460
        perror("strdup");
507
498
    case 128:                   /* --plugin-dir */
508
499
      break;
509
500
    case 129:                   /* --config-file */
 
501
      free(argfile);
510
502
      argfile = strdup(arg);
511
503
      if(argfile == NULL){
512
504
        perror("strdup");
742
734
    }
743
735
 
744
736
    char *filename;
745
 
    ret = asprintf(&filename, "%s/%s", plugindir, dirst->d_name);
 
737
    if(plugindir == NULL){
 
738
      ret = asprintf(&filename, PDIR "/%s", dirst->d_name);
 
739
    } else {
 
740
      ret = asprintf(&filename, "%s/%s", plugindir, dirst->d_name);
 
741
    }
746
742
    if(ret < 0){
747
743
      perror("asprintf");
748
744
      continue;
937
933
    }
938
934
    /* OK, now either a process completed, or something can be read
939
935
       from one of them */
940
 
    for(plugin *proc = plugin_list; proc != NULL; proc = proc->next){
 
936
    for(plugin *proc = plugin_list; proc != NULL;){
941
937
      /* Is this process completely done? */
942
938
      if(proc->eof and proc->completed){
943
939
        /* Only accept the plugin output if it exited cleanly */
970
966
            exitstatus = EXIT_FAILURE;
971
967
            goto fallback;
972
968
          }
973
 
          free_plugin(proc);
 
969
          
974
970
          /* We are done modifying process list, so unblock signal */
975
971
          ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask,
976
972
                             NULL);
983
979
          if(plugin_list == NULL){
984
980
            break;
985
981
          }
 
982
          
 
983
          plugin *next_plugin = proc->next;
 
984
          free_plugin(proc);
 
985
          proc = next_plugin;
986
986
          continue;
987
987
        }
988
988
        
1000
1000
      /* This process has not completed.  Does it have any output? */
1001
1001
      if(proc->eof or not FD_ISSET(proc->fd, &rfds)){
1002
1002
        /* This process had nothing to say at this time */
 
1003
        proc = proc->next;
1003
1004
        continue;
1004
1005
      }
1005
1006
      /* Before reading, make the process' data buffer large enough */
1018
1019
                 BUFFER_SIZE);
1019
1020
      if(ret < 0){
1020
1021
        /* Read error from this process; ignore the error */
 
1022
        proc = proc->next;
1021
1023
        continue;
1022
1024
      }
1023
1025
      if(ret == 0){