#include <sys/types.h>
#include <sys/time.h>
#ifndef __APPLE__
#include <login_cap.h>
#endif
#include <pwd.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <unistd.h>
#define PAM_SM_AUTH
#define PAM_SM_ACCOUNT
#include <pam/pam_modules.h>
#include <pam/pam_mod_misc.h>
#define PASSWORD_PROMPT "Password:"
PAM_EXTERN int
pam_sm_authenticate(pam_handle_t *pamh, int flags, int argc,
const char **argv)
{
int retval;
const char *user;
const char *password;
struct passwd *pwd;
char *encrypted;
int options;
int i;
options = 0;
for (i = 0; i < argc; i++)
pam_std_option(&options, argv[i]);
options |= PAM_OPT_TRY_FIRST_PASS;
if ((retval = pam_get_user(pamh, &user, NULL)) != PAM_SUCCESS)
return retval;
if ((retval = pam_get_pass(pamh, &password, PASSWORD_PROMPT,
options)) != PAM_SUCCESS)
return retval;
if (password[0] == '\0' && !(options & PAM_OPT_NULLOK))
return PAM_AUTH_ERR;
if ((pwd = getpwnam(user)) != NULL) {
if( (password[0] == '\0') && (pwd->pw_passwd[0] == '\0') )
retval = PAM_SUCCESS;
else {
encrypted = crypt(password, pwd->pw_passwd);
if (password[0] == '\0' && pwd->pw_passwd[0] != '\0')
encrypted = ":";
retval = strcmp(encrypted, pwd->pw_passwd) == 0 ?
PAM_SUCCESS : PAM_AUTH_ERR;
}
} else {
crypt(password, "xx");
retval = PAM_AUTH_ERR;
}
return retval;
}
PAM_EXTERN int
pam_sm_setcred(pam_handle_t *pamh, int flags, int argc, const char **argv)
{
return PAM_SUCCESS;
}
PAM_EXTERN
int pam_sm_acct_mgmt(pam_handle_t *pamh, int flags,
int argc, const char **argv)
{
const char *user;
struct passwd *pw;
struct timeval tp;
time_t warntime;
#ifndef __APPLE__
login_cap_t *lc = NULL;
#endif
char buf[128];
int retval;
retval = pam_get_item(pamh, PAM_USER, (const void **)&user);
if (retval != PAM_SUCCESS || user == NULL)
return PAM_USER_UNKNOWN;
if ((pw = getpwnam(user)) == NULL)
return PAM_USER_UNKNOWN;
retval = PAM_SUCCESS;
#ifndef __APPLE__
lc = login_getpwclass(pw);
#endif
if (pw->pw_change || pw->pw_expire)
gettimeofday(&tp, NULL);
#define DEFAULT_WARN (2L * 7L * 86400L)
#ifndef __APPLE__
warntime = login_getcaptime(lc, "warnpassword", DEFAULT_WARN,
DEFAULT_WARN);
#else
warntime = DEFAULT_WARN;
#endif
if (pw->pw_change) {
if (tp.tv_sec >= pw->pw_change)
retval = PAM_NEW_AUTHTOK_REQD;
else if (pw->pw_change - tp.tv_sec < warntime) {
snprintf(buf, sizeof(buf),
"Warning: your password expires on %s",
ctime(&pw->pw_change));
pam_prompt(pamh, PAM_ERROR_MSG, buf, NULL);
}
}
#ifndef __APPLE__
warntime = login_getcaptime(lc, "warnexpire", DEFAULT_WARN,
DEFAULT_WARN);
#else
warntime = DEFAULT_WARN;
#endif
if (pw->pw_expire) {
if (tp.tv_sec >= pw->pw_expire)
retval = PAM_ACCT_EXPIRED;
else if (pw->pw_expire - tp.tv_sec < warntime) {
snprintf(buf, sizeof(buf),
"Warning: your account expires on %s",
ctime(&pw->pw_expire));
pam_prompt(pamh, PAM_ERROR_MSG, buf, NULL);
}
}
#ifndef __APPLE__
login_close(lc);
#endif
return retval;
}
#ifdef PAM_STATIC
PAM_MODULE_ENTRY("pam_unix");
#endif