/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 06:46:11 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080812064611-7wfjg391ypmff085
* mandos-keygen: New program to generate new client keys on
                 installation.

* Makefile (all): No longer build documentation.
  (doc): New; build documentation.
  (maintainer-clean): Remove build-local client keydir.
  (run-client): Make build-local keydir with keys.
  (run-server): Do not depend on "all".
  (install, install-server, install-client, uninstall,
  uninstall-server, uninstall-client, purge, purge-server,
  purge-client): New.

Show diffs side-by-side

added added

removed removed

Lines of Context:
455
455
    char *filename = malloc(d_name_len + strlen(plugindir) + 2);
456
456
    if (filename == NULL){
457
457
      perror("malloc");
458
 
      continue;
 
458
      exitstatus = EXIT_FAILURE;
 
459
      goto end;
459
460
    }
460
461
    strcpy(filename, plugindir); /* Spurious warning */
461
462
    strcat(filename, "/");      /* Spurious warning */
464
465
    ret = stat(filename, &st);
465
466
    if (ret == -1){
466
467
      perror("stat");
467
 
      free(filename);
468
 
      continue;
 
468
      exitstatus = EXIT_FAILURE;
 
469
      goto end;
469
470
    }
470
471
    
471
472
    if (not S_ISREG(st.st_mode) or (access(filename, X_OK) != 0)){
520
521
    }
521
522
    // Starting a new process to be watched
522
523
    pid_t pid = fork();
523
 
    if(pid == -1){
524
 
      perror("fork");
525
 
      exitstatus = EXIT_FAILURE;
526
 
      goto end;
527
 
    }
528
524
    if(pid == 0){
529
525
      /* this is the child process */
530
526
      ret = sigaction(SIGCHLD, &old_sigchld_action, NULL);
717
713
 end:
718
714
  
719
715
  if(process_list == NULL or exitstatus != EXIT_SUCCESS){
720
 
    /* Fallback if all plugins failed, none are found or an error occured */
 
716
    /* Fallback if all plugins failed or an error occured */
721
717
    bool bret;
722
718
    fprintf(stderr, "Going to fallback mode using getpass(3)\n");
723
719
    char *passwordbuffer = getpass("Password: ");