/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-10 20:35:01 UTC
  • mfrom: (24.1.42 mandos)
  • Revision ID: teddy@fukt.bsnet.se-20080810203501-euh3qcf1nopilksm
Merge.

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