/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 plugin-runner.c

  • Committer: Teddy Hogeborn
  • Date: 2008-09-06 15:34:21 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080906153421-605ydhwyo404krh9
* initramfs-tools-hook: Use long options where available.  Use only
                        one "test" invocation instead of several.

* mandos-keygen: Use only one "test" invocation instead of several.
                 Use long options where available.  Strip newline from
                 entered password.

* plugin-runner.c (print_out_password): Do not strip trailing newline.
  (fallback): Strip trailing newline from getpass().

* plugin-runner.xml (PLUGINS): Plugins should not print trailing
                               newlines.

* plugins.d/password-prompt.c (main): Strip trailing newline.

* plugins.d/password-request.c (main): Bug fix: Read "pubkey.txt", not
                                       "pupkey.txt".

Show diffs side-by-side

added added

removed removed

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