#if 0
#ifndef lint
static char sccsid[] = "%Z% %M% %I% %E% %U%";
#endif
#endif
#include <sys/types.h>
#include <sys/param.h>
#include <ctype.h>
#include <errno.h>
#include <grp.h>
#include <netdb.h>
#include <pwd.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <syslog.h>
#include <unistd.h>
#include "pam_login_access.h"
#define YES 1
#define NO 0
static int from_match(const char *, const char *, struct pam_login_access_options *);
static int list_match(char *, const char *,
int (*)(const char *, const char *,
struct pam_login_access_options *),
struct pam_login_access_options *);
static int netgroup_match(const char *, const char *, const char *);
static int string_match(const char *, const char *);
static int user_match(const char *, const char *, struct pam_login_access_options *);
static int group_match(const char *, const char *);
int
login_access(const char *user, const char *from,
struct pam_login_access_options *login_access_opts)
{
FILE *fp;
char line[BUFSIZ];
char *perm;
char *users;
char *froms;
int match = NO;
int end;
int lineno = 0;
const char *fieldsep = login_access_opts->fieldsep;
if ((fp = fopen(login_access_opts->accessfile, "r")) != NULL) {
while (!match && fgets(line, sizeof(line), fp)) {
lineno++;
if (line[end = strlen(line) - 1] != '\n') {
syslog(LOG_ERR, "%s: line %d: missing newline or line too long",
login_access_opts->accessfile, lineno);
continue;
}
if (line[0] == '#')
continue;
while (end > 0 && isspace(line[end - 1]))
end--;
line[end] = 0;
if (line[0] == 0)
continue;
if (!(perm = strtok(line, fieldsep))
|| !(users = strtok((char *) 0, fieldsep))
|| !(froms = strtok((char *) 0, fieldsep))
|| strtok((char *) 0, fieldsep)) {
syslog(LOG_ERR, "%s: line %d: bad field count", login_access_opts->accessfile,
lineno);
continue;
}
if (perm[0] != '+' && perm[0] != '-') {
syslog(LOG_ERR, "%s: line %d: bad first field", login_access_opts->accessfile,
lineno);
continue;
}
match = (list_match(froms, from, from_match, login_access_opts)
&& list_match(users, user, user_match, login_access_opts));
}
(void) fclose(fp);
} else if (errno != ENOENT) {
syslog(LOG_ERR, "cannot open %s: %m", login_access_opts->accessfile);
}
return (match == 0 || (line[0] == '+'));
}
static int
list_match(char *list, const char *item,
int (*match_fn)(const char *, const char *, struct pam_login_access_options *),
struct pam_login_access_options *login_access_opts)
{
char *tok;
int match = NO;
const char *listsep = login_access_opts->listsep;
for (tok = strtok(list, listsep); tok != NULL; tok = strtok((char *) 0, listsep)) {
if (strcmp(tok, "EXCEPT") == 0)
break;
if ((match = (*match_fn)(tok, item, login_access_opts)) != 0)
break;
}
if (match != NO) {
while ((tok = strtok((char *) 0, listsep)) && strcmp(tok, "EXCEPT")) {
;
}
if (tok == NULL ||
list_match((char *) 0, item, match_fn, login_access_opts) == NO) {
return (match);
}
}
return (NO);
}
static int
netgroup_match(const char *group, const char *machine, const char *user)
{
char domain[1024];
unsigned int i;
if (getdomainname(domain, sizeof(domain)) != 0 || *domain == '\0') {
syslog(LOG_ERR, "NIS netgroup support disabled: no NIS domain");
return (NO);
}
for (i = 0; i < sizeof(domain); ++i)
if (domain[i] == '\0')
break;
if (i == sizeof(domain)) {
syslog(LOG_ERR, "NIS netgroup support disabled: invalid NIS domain");
return (NO);
}
if (innetgr(group, machine, user, domain) == 1)
return (YES);
return (NO);
}
int
group_match(const char *tok, const char *username)
{
struct group *group;
struct passwd *passwd;
gid_t *grouplist;
int i, ret, ngroups = NGROUPS;
if ((passwd = getpwnam(username)) == NULL)
return (NO);
errno = 0;
if ((group = getgrnam(tok)) == NULL) {
if (errno != 0)
syslog(LOG_ERR, "getgrnam() failed for %s: %s", username, strerror(errno));
else
syslog(LOG_NOTICE, "group not found: %s", username);
return (NO);
}
if ((grouplist = calloc(ngroups, sizeof(gid_t))) == NULL) {
syslog(LOG_ERR, "cannot allocate memory for grouplist: %s", username);
return (NO);
}
ret = NO;
if (getgrouplist(username, passwd->pw_gid, grouplist, &ngroups) != 0)
syslog(LOG_ERR, "getgrouplist() failed for %s", username);
for (i = 0; i < ngroups; i++)
if (grouplist[i] == group->gr_gid)
ret = YES;
free(grouplist);
return (ret);
}
static int
user_match(const char *tok, const char *string,
struct pam_login_access_options *login_access_opts)
{
size_t stringlen;
char *grpstr;
int rc;
if (tok[0] == '@') {
return (netgroup_match(tok + 1, (char *) 0, string));
} else if (tok[0] == '(' && tok[(stringlen = strlen(&tok[1]))] == ')') {
if ((grpstr = strndup(&tok[1], stringlen - 1)) == NULL) {
syslog(LOG_ERR, "cannot allocate memory for %s", string);
return (NO);
}
rc = group_match(grpstr, string);
free(grpstr);
return (rc);
} else if (string_match(tok, string)) {
return (YES);
} else if (login_access_opts->defgroup == true) {
return (group_match(tok, string));
}
return (NO);
}
static int
from_match(const char *tok, const char *string,
struct pam_login_access_options *login_access_opts __unused)
{
int tok_len;
int str_len;
if (tok[0] == '@') {
return (netgroup_match(tok + 1, string, (char *) 0));
} else if (string_match(tok, string)) {
return (YES);
} else if (tok[0] == '.') {
if ((str_len = strlen(string)) > (tok_len = strlen(tok))
&& strcasecmp(tok, string + str_len - tok_len) == 0)
return (YES);
} else if (strcmp(tok, "LOCAL") == 0) {
if (strchr(string, '.') == NULL)
return (YES);
} else if (tok[(tok_len = strlen(tok)) - 1] == '.'
&& strncmp(tok, string, tok_len) == 0) {
return (YES);
}
return (NO);
}
static int
string_match(const char *tok, const char *string)
{
if (strcmp(tok, "ALL") == 0) {
return (YES);
} else if (strcasecmp(tok, string) == 0) {
return (YES);
}
return (NO);
}