diff -up ecryptfs-utils-97/src/pam_ecryptfs/pam_ecryptfs.c.fixpamfork ecryptfs-utils-97/src/pam_ecryptfs/pam_ecryptfs.c --- ecryptfs-utils-97/src/pam_ecryptfs/pam_ecryptfs.c.fixpamfork 2012-06-25 14:57:39.908192484 +0200 +++ ecryptfs-utils-97/src/pam_ecryptfs/pam_ecryptfs.c 2012-06-25 15:05:53.368373955 +0200 @@ -208,7 +208,7 @@ PAM_EXTERN int pam_sm_authenticate(pam_h } out_child: free(auth_tok_sig); - exit(0); + _exit(0); } tmp_pid = waitpid(child_pid, NULL, 0); if (tmp_pid == -1) @@ -296,7 +296,7 @@ static int private_dir(pam_handle_t *pam "%s/.ecryptfs/.wrapped-passphrase.recorded", pwd->pw_dir) < 0) || recorded == NULL) { syslog(LOG_ERR, "pam_ecryptfs: Error allocating memory for recorded name"); - exit(1); + _exit(255); } if (stat(recorded, &s) != 0 && stat("/usr/share/ecryptfs-utils/ecryptfs-record-passphrase", &s) == 0) { /* User has not recorded their passphrase */ @@ -308,25 +308,27 @@ static int private_dir(pam_handle_t *pam if (stat(autofile, &s) != 0) { /* User does not want to auto-mount */ syslog(LOG_DEBUG, "pam_ecryptfs: Skipping automatic eCryptfs mount"); - exit(0); + _exit(0); } /* run mount.ecryptfs_private as the user */ setresuid(pwd->pw_uid, pwd->pw_uid, pwd->pw_uid); execl("/sbin/mount.ecryptfs_private", "mount.ecryptfs_private", NULL); + syslog(LOG_ERR,"unable to execute mount.ecryptfs_private : %m"); } else { if (stat(autofile, &s) != 0) { /* User does not want to auto-unmount */ syslog(LOG_DEBUG, "pam_ecryptfs: Skipping automatic eCryptfs unmount"); - exit(0); + _exit(0); } /* run umount.ecryptfs_private as the user */ setresuid(pwd->pw_uid, pwd->pw_uid, pwd->pw_uid); execl("/sbin/umount.ecryptfs_private", "umount.ecryptfs_private", NULL); - exit(1); + syslog(LOG_ERR,"unable to execute umount.ecryptfs_private : %m"); + _exit(255); } - exit(1); + _exit(255); } else { waitpid(pid, &rc, 0); } @@ -456,7 +458,7 @@ PAM_EXTERN int pam_sm_chauthtok(pam_hand goto out_child; } out_child: - exit(0); + _exit(0); } if ((tmp_pid = waitpid(child_pid, NULL, 0)) == -1) syslog(LOG_WARNING, "pam_ecryptfs: waitpid() returned with error condition\n");