/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");
473
482
      debug = true;
474
483
      break;
475
484
    case ARGP_KEY_ARG:
476
 
      /* Cryptsetup always passes an argument, which is an empty
477
 
         string if "none" was specified in /etc/crypttab.  So if
478
 
         argument was empty, we ignore it silently. */
479
 
      if(arg[0] != '\0'){
480
 
        fprintf(stderr, "Ignoring unknown argument \"%s\"\n", arg);
481
 
      }
 
485
      fprintf(stderr, "Ignoring unknown argument \"%s\"\n", arg);
482
486
      break;
483
487
    case ARGP_KEY_END:
484
488
      break;
503
507
    case 128:                   /* --plugin-dir */
504
508
      break;
505
509
    case 129:                   /* --config-file */
506
 
      free(argfile);
507
510
      argfile = strdup(arg);
508
511
      if(argfile == NULL){
509
512
        perror("strdup");
739
742
    }
740
743
 
741
744
    char *filename;
742
 
    if(plugindir == NULL){
743
 
      ret = asprintf(&filename, PDIR "/%s", dirst->d_name);
744
 
    } else {
745
 
      ret = asprintf(&filename, "%s/%s", plugindir, dirst->d_name);
746
 
    }
 
745
    ret = asprintf(&filename, "%s/%s", plugindir, dirst->d_name);
747
746
    if(ret < 0){
748
747
      perror("asprintf");
749
748
      continue;
938
937
    }
939
938
    /* OK, now either a process completed, or something can be read
940
939
       from one of them */
941
 
    for(plugin *proc = plugin_list; proc != NULL;){
 
940
    for(plugin *proc = plugin_list; proc != NULL; proc = proc->next){
942
941
      /* Is this process completely done? */
943
942
      if(proc->eof and proc->completed){
944
943
        /* Only accept the plugin output if it exited cleanly */
971
970
            exitstatus = EXIT_FAILURE;
972
971
            goto fallback;
973
972
          }
974
 
          
 
973
          free_plugin(proc);
975
974
          /* We are done modifying process list, so unblock signal */
976
975
          ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask,
977
976
                             NULL);
984
983
          if(plugin_list == NULL){
985
984
            break;
986
985
          }
987
 
          
988
 
          plugin *next_plugin = proc->next;
989
 
          free_plugin(proc);
990
 
          proc = next_plugin;
991
986
          continue;
992
987
        }
993
988
        
1005
1000
      /* This process has not completed.  Does it have any output? */
1006
1001
      if(proc->eof or not FD_ISSET(proc->fd, &rfds)){
1007
1002
        /* This process had nothing to say at this time */
1008
 
        proc = proc->next;
1009
1003
        continue;
1010
1004
      }
1011
1005
      /* Before reading, make the process' data buffer large enough */
1024
1018
                 BUFFER_SIZE);
1025
1019
      if(ret < 0){
1026
1020
        /* Read error from this process; ignore the error */
1027
 
        proc = proc->next;
1028
1021
        continue;
1029
1022
      }
1030
1023
      if(ret == 0){