/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 mandos-client.c

  • Committer: Teddy Hogeborn
  • Date: 2008-08-12 19:22:34 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080812192234-8bm17713ltih9ud1
* initramfs-tools-hook: New.
* initramfs-tools-hook-conf: New.

Show diffs side-by-side

added added

removed removed

Lines of Context:
171
171
}
172
172
 
173
173
bool print_out_password(const char *buffer, size_t length){
174
 
  size_t ret;
175
 
  for(size_t written = 0; written < length; written += ret){
 
174
  ssize_t ret;
 
175
  if(length>0 and buffer[length-1] == '\n'){
 
176
    length--;
 
177
  }
 
178
  for(size_t written = 0; written < length; written += (size_t)ret){
176
179
    ret = TEMP_FAILURE_RETRY(write(STDOUT_FILENO, buffer + written,
177
180
                                   length - written));
178
181
    if(ret < 0){
199
202
                                      .sa_flags = SA_NOCLDSTOP };
200
203
  char *plus_options = NULL;
201
204
  char **plus_argv = NULL;
202
 
  
 
205
 
203
206
  /* Establish a signal handler */
204
207
  sigemptyset(&sigchld_action.sa_mask);
205
208
  ret = sigaddset(&sigchld_action.sa_mask, SIGCHLD);
304
307
  
305
308
  ret = argp_parse (&argp, argc, argv, 0, 0, &plugin_list);
306
309
  if (ret == ARGP_ERR_UNKNOWN){
307
 
    fprintf(stderr, "Unkown error while parsing arguments\n");
 
310
    fprintf(stderr, "Unknown error while parsing arguments\n");
308
311
    exitstatus = EXIT_FAILURE;
309
312
    goto end;
310
313
  }
341
344
    }
342
345
    ret = argp_parse (&argp, new_argc, plus_argv, 0, 0, &plugin_list);
343
346
    if (ret == ARGP_ERR_UNKNOWN){
344
 
      fprintf(stderr, "Unkown error while parsing arguments\n");
 
347
      fprintf(stderr, "Unknown error while parsing arguments\n");
345
348
      exitstatus = EXIT_FAILURE;
346
349
      goto end;
347
350
    }
705
708
      }
706
709
    }
707
710
  }
 
711
 
 
712
 
 
713
 end:
708
714
  
709
 
  if(process_list == NULL){
 
715
  if(process_list == NULL or exitstatus != EXIT_SUCCESS){
 
716
    /* Fallback if all plugins failed or an error occured */
710
717
    bool bret;
711
718
    fprintf(stderr, "Going to fallback mode using getpass(3)\n");
712
719
    char *passwordbuffer = getpass("Password: ");
716
723
      exitstatus = EXIT_FAILURE;
717
724
      goto end;
718
725
    }
719
 
    bret = print_out_password("\n", 1);
720
 
    if(not bret){
721
 
      perror("print_out_password");
722
 
      exitstatus = EXIT_FAILURE;
723
 
    }
724
726
  }
725
 
 
726
 
 end:
727
727
  
728
728
  /* Restore old signal handler */
729
729
  sigaction(SIGCHLD, &old_sigchld_action, NULL);