#include <sys/types.h>
#include <sys/wait.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <limits.h>
#include <errno.h>
#include <err.h>
#include <regex.h>
#include <grp.h>
#include <paths.h>
#include <login_cap.h>
#include <signal.h>
int pwd_check(login_cap_t *, char *);
int pwd_gettries(login_cap_t *);
struct pattern {
char *match;
int flags;
char *response;
};
struct pattern patterns[] = {
{
"^[0-9]*$",
REG_EXTENDED|REG_NOSUB,
"Please don't use all-digit passwords."
},
{
"^[a-z]{1,9}$",
REG_EXTENDED|REG_NOSUB,
"Please don't use an all-lower case password."
},
{
"^[a-z]{1,6}[0-9]+$",
REG_EXTENDED|REG_NOSUB|REG_ICASE,
"Please use a more complicated password."
},
{
"^([a-z][0-9]){1,4}$",
REG_EXTENDED|REG_NOSUB|REG_ICASE,
"Please use a more complicated password."
},
{
"^([0-9][a-z]){1,4}$",
REG_EXTENDED|REG_NOSUB|REG_ICASE,
"Please use a more complicated password."
}
};
int
pwd_check(login_cap_t *lc, char *password)
{
regex_t rgx;
int i, res, min_len;
char *checker;
char *argp[] = { "sh", "-c", NULL, NULL};
int pipefds[2];
pid_t child;
uid_t uid;
gid_t gid;
min_len = (int)login_getcapnum(lc, "minpasswordlen", 6, 6);
if (min_len > 0 && strlen(password) < min_len) {
fprintf(stderr, "Please enter a longer password.\n");
return (0);
}
checker = login_getcapstr(lc, "passwordcheck", NULL, NULL);
if (checker != NULL && pipe(pipefds) == -1) {
warn("pipe");
goto out;
}
switch (child = fork()) {
case -1:
warn("fork");
if (checker != NULL) {
close(pipefds[0]);
close(pipefds[1]);
}
goto out;
case 0:
(void)signal(SIGINT, SIG_DFL);
(void)signal(SIGQUIT, SIG_DFL);
uid = getuid();
gid = getgid();
if (setresgid(gid, gid, gid) == -1) {
warn("setresgid");
exit(1);
}
if (setgroups(1, &gid) == -1) {
warn("setgroups");
exit(1);
}
if (setresuid(uid, uid, uid) == -1) {
warn("setresuid");
exit(1);
}
if (checker == NULL) {
if (pledge("stdio", NULL) == -1)
err(1, "pledge");
for (i = 0; i < sizeof(patterns) / sizeof(*patterns); i++) {
int ret;
if (regcomp(&rgx, patterns[i].match,
patterns[i].flags) != 0)
continue;
ret = regexec(&rgx, password, 0, NULL, 0);
regfree(&rgx);
if (ret == 0) {
fprintf(stderr, "%s\n", patterns[i].response);
exit(1);
}
}
exit(0);
}
if (pledge("stdio exec", NULL) == -1)
err(1, "pledge");
argp[2] = checker;
if (dup2(pipefds[0], STDIN_FILENO) == -1) {
warn("dup2");
exit(1);
}
close(pipefds[0]);
close(pipefds[1]);
if (execv(_PATH_BSHELL, argp) == -1) {
warn("exec");
exit(1);
}
default:
break;
}
if (checker != NULL) {
close(pipefds[0]);
write(pipefds[1], password, strlen(password) + 1);
close(pipefds[1]);
}
while (waitpid(child, &res, 0) == -1) {
if (errno != EINTR) {
warn("waitpid");
goto out;
}
}
if (WIFEXITED(res) && WEXITSTATUS(res) == 0) {
free(checker);
return (1);
}
out:
free(checker);
fprintf(stderr, "Please use a different password. Unusual capitalization,\n");
fprintf(stderr, "control characters, or digits are suggested.\n");
return (0);
}
int
pwd_gettries(login_cap_t *lc)
{
quad_t ntries;
if ((ntries = login_getcapnum(lc, "passwordtries", -1, -1)) != -1) {
if (ntries >= 0 && ntries <= INT_MAX)
return((int)ntries);
fprintf(stderr,
"Warning: passwordtries out of range in /etc/login.conf");
}
return (3);
}