2007-10-07 17:14:02 +05:30
|
|
|
/* Taken from logdaemon-5.0, only minimal changes. --marekm */
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* Copyright 1995 by Wietse Venema. All rights reserved. Individual files
|
|
|
|
* may be covered by other copyrights (as noted in the file itself.)
|
|
|
|
*
|
|
|
|
* This material was originally written and compiled by Wietse Venema at
|
|
|
|
* Eindhoven University of Technology, The Netherlands, in 1990, 1991,
|
|
|
|
* 1992, 1993, 1994 and 1995.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms are permitted
|
|
|
|
* provided that this entire copyright notice is duplicated in all such
|
|
|
|
* copies.
|
|
|
|
*
|
|
|
|
* This software is provided "as is" and without any expressed or implied
|
|
|
|
* warranties, including, without limitation, the implied warranties of
|
|
|
|
* merchantibility and fitness for any particular purpose.
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
#ifndef USE_PAM
|
2007-11-11 05:16:11 +05:30
|
|
|
#ident "$Id$"
|
2007-10-07 17:17:01 +05:30
|
|
|
|
2007-10-07 17:14:02 +05:30
|
|
|
#include "prototypes.h"
|
2007-10-07 17:15:23 +05:30
|
|
|
/*
|
|
|
|
* This module implements a simple but effective form of login access
|
|
|
|
* control based on login names and on host (or domain) names, internet
|
|
|
|
* addresses (or network numbers), or on terminal line names in case of
|
|
|
|
* non-networked logins. Diagnostics are reported through syslog(3).
|
|
|
|
*
|
|
|
|
* Author: Wietse Venema, Eindhoven University of Technology, The Netherlands.
|
|
|
|
*/
|
2007-10-07 17:14:02 +05:30
|
|
|
#include <sys/types.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <syslog.h>
|
|
|
|
#include <ctype.h>
|
2007-11-16 17:02:42 +05:30
|
|
|
#ifdef HAVE_NETDB_H
|
2007-10-07 17:14:02 +05:30
|
|
|
#include <netdb.h>
|
2007-11-16 17:02:42 +05:30
|
|
|
#endif
|
2007-10-07 17:14:02 +05:30
|
|
|
#include <grp.h>
|
|
|
|
#ifdef PRIMARY_GROUP_MATCH
|
|
|
|
#include <pwd.h>
|
|
|
|
#endif
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
2007-10-07 17:15:23 +05:30
|
|
|
#include <arpa/inet.h> /* for inet_ntoa() */
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
#if !defined(MAXHOSTNAMELEN) || (MAXHOSTNAMELEN < 64)
|
|
|
|
#undef MAXHOSTNAMELEN
|
|
|
|
#define MAXHOSTNAMELEN 256
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Path name of the access control file. */
|
|
|
|
#ifndef TABLE
|
|
|
|
#define TABLE "/etc/login.access"
|
|
|
|
#endif
|
|
|
|
|
2007-10-07 17:17:01 +05:30
|
|
|
/* Delimiters for fields and for lists of users, ttys or hosts. */
|
2007-10-07 17:15:23 +05:30
|
|
|
static char fs[] = ":"; /* field separator */
|
|
|
|
static char sep[] = ", \t"; /* list-element separator */
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2008-06-10 00:05:32 +05:30
|
|
|
static bool list_match (char *list, const char *item, bool (*match_fn) (const char *, const char *));
|
|
|
|
static bool user_match (const char *tok, const char *string);
|
|
|
|
static bool from_match (const char *tok, const char *string);
|
|
|
|
static bool string_match (const char *tok, const char *string);
|
2008-01-06 17:37:42 +05:30
|
|
|
static const char *resolve_hostname (const char *string);
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/* login_access - match username/group and host/tty with access control file */
|
2007-10-07 17:15:23 +05:30
|
|
|
int login_access (const char *user, const char *from)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
2007-10-07 17:15:23 +05:30
|
|
|
FILE *fp;
|
|
|
|
char line[BUFSIZ];
|
|
|
|
char *perm; /* becomes permission field */
|
|
|
|
char *users; /* becomes list of login names */
|
|
|
|
char *froms; /* becomes list of terminals or hosts */
|
2008-06-10 00:05:32 +05:30
|
|
|
bool match = false;
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-10-07 17:15:23 +05:30
|
|
|
/*
|
|
|
|
* Process the table one line at a time and stop at the first match.
|
|
|
|
* Blank lines and lines that begin with a '#' character are ignored.
|
|
|
|
* Non-comment lines are broken at the ':' character. All fields are
|
|
|
|
* mandatory. The first field should be a "+" or "-" character. A
|
|
|
|
* non-existing table means no access control.
|
|
|
|
*/
|
2008-06-10 00:05:32 +05:30
|
|
|
fp = fopen (TABLE, "r");
|
|
|
|
if (NULL != fp) {
|
* src/newgrp.c: Limit the scope of variable pid.
* src/login_nopam.c: Limit the scope of variables end, lineno, i,
str_len.
* src/logoutd.c: Limit the scope of variable c.
* src/vipw.c: Re-indent.
* src/vipw.c: Close the file after the creation of the backup.
* src/useradd.c (set_default): Close input file on failure.
* src/useradd.c: Limit the scope of variables spool, file, fd, gr,
gid, mode.
* src/passwd.c: Limit the scope of variables last and ok.
* src/chage.c: Fix typo (non breaking space).
* src/login.c: Limit the scope of variables erasechar killchar, c,
failed.
* src/groups.c: Limit the scope of variable ngroups, pri_grp, i.
* src/id.c: Limit the scope of variable i.
2010-03-23 16:56:34 +05:30
|
|
|
int lineno = 0; /* for diagnostics */
|
* libmisc/console.c, libmisc/hushed.c, libmisc/yesno.c,
libmisc/loginprompt.c, libmisc/ttytype.c, libmisc/tz.c,
src/login_nopam.c, src/chpasswd.c, src/chgpasswd.c, lib/port.c:
The size argument of fgets is an int, not a size_t.
* libmisc/loginprompt.c: Ignore the return value from signal()
when the signal handlers are restored.
* src/chpasswd.c: Cast the return value of time() to a long
integer.
* src/chpasswd.c: Use the SCALE macro instead of (24L * 3600L)
for the values to be set in /etc/shadow.
2008-06-13 23:41:09 +05:30
|
|
|
while ( !match
|
|
|
|
&& (fgets (line, (int) sizeof (line), fp) == line)) {
|
* src/newgrp.c: Limit the scope of variable pid.
* src/login_nopam.c: Limit the scope of variables end, lineno, i,
str_len.
* src/logoutd.c: Limit the scope of variable c.
* src/vipw.c: Re-indent.
* src/vipw.c: Close the file after the creation of the backup.
* src/useradd.c (set_default): Close input file on failure.
* src/useradd.c: Limit the scope of variables spool, file, fd, gr,
gid, mode.
* src/passwd.c: Limit the scope of variables last and ok.
* src/chage.c: Fix typo (non breaking space).
* src/login.c: Limit the scope of variables erasechar killchar, c,
failed.
* src/groups.c: Limit the scope of variable ngroups, pri_grp, i.
* src/id.c: Limit the scope of variable i.
2010-03-23 16:56:34 +05:30
|
|
|
int end;
|
2007-10-07 17:15:23 +05:30
|
|
|
lineno++;
|
2008-06-10 00:05:32 +05:30
|
|
|
end = (int) strlen (line) - 1;
|
|
|
|
if (line[end] != '\n') {
|
2007-10-07 17:16:34 +05:30
|
|
|
SYSLOG ((LOG_ERR,
|
2007-10-07 17:17:01 +05:30
|
|
|
"%s: line %d: missing newline or line too long",
|
|
|
|
TABLE, lineno));
|
2007-10-07 17:15:23 +05:30
|
|
|
continue;
|
|
|
|
}
|
2008-06-10 00:05:32 +05:30
|
|
|
if (line[0] == '#') {
|
2007-10-07 17:15:23 +05:30
|
|
|
continue; /* comment line */
|
2008-06-10 00:05:32 +05:30
|
|
|
}
|
|
|
|
while (end > 0 && isspace (line[end - 1])) {
|
2007-10-07 17:15:23 +05:30
|
|
|
end--;
|
2008-06-10 00:05:32 +05:30
|
|
|
}
|
|
|
|
line[end] = '\0'; /* strip trailing whitespace */
|
|
|
|
if (line[0] == '\0') { /* skip blank lines */
|
2007-10-07 17:15:23 +05:30
|
|
|
continue;
|
2008-06-10 00:05:32 +05:30
|
|
|
}
|
|
|
|
if ( ((perm = strtok (line, fs)) == NULL)
|
|
|
|
|| ((users = strtok ((char *) 0, fs)) == NULL)
|
|
|
|
|| ((froms = strtok ((char *) 0, fs)) == NULL)
|
|
|
|
|| (strtok ((char *) 0, fs) != NULL)) {
|
2007-10-07 17:16:34 +05:30
|
|
|
SYSLOG ((LOG_ERR,
|
2007-10-07 17:17:01 +05:30
|
|
|
"%s: line %d: bad field count",
|
|
|
|
TABLE, lineno));
|
2007-10-07 17:15:23 +05:30
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (perm[0] != '+' && perm[0] != '-') {
|
2007-10-07 17:16:34 +05:30
|
|
|
SYSLOG ((LOG_ERR,
|
2007-10-07 17:17:01 +05:30
|
|
|
"%s: line %d: bad first field",
|
|
|
|
TABLE, lineno));
|
2007-10-07 17:15:23 +05:30
|
|
|
continue;
|
|
|
|
}
|
2008-06-10 00:05:32 +05:30
|
|
|
match = ( list_match (froms, from, from_match)
|
|
|
|
&& list_match (users, user, user_match));
|
2007-10-07 17:15:23 +05:30
|
|
|
}
|
|
|
|
(void) fclose (fp);
|
|
|
|
} else if (errno != ENOENT) {
|
2008-09-13 23:33:50 +05:30
|
|
|
int err = errno;
|
|
|
|
SYSLOG ((LOG_ERR, "cannot open %s: %s", TABLE, strerror (err)));
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
2008-06-10 00:05:32 +05:30
|
|
|
return (!match || (line[0] == '+'))?1:0;
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* list_match - match an item against a list of tokens with exceptions */
|
2008-06-10 00:05:32 +05:30
|
|
|
static bool list_match (char *list, const char *item, bool (*match_fn) (const char *, const char*))
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
2007-10-07 17:15:23 +05:30
|
|
|
char *tok;
|
2008-06-10 00:05:32 +05:30
|
|
|
bool match = false;
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-10-07 17:15:23 +05:30
|
|
|
/*
|
|
|
|
* Process tokens one at a time. We have exhausted all possible matches
|
|
|
|
* when we reach an "EXCEPT" token or the end of the list. If we do find
|
|
|
|
* a match, look for an "EXCEPT" list and recurse to determine whether
|
|
|
|
* the match is affected by any exceptions.
|
|
|
|
*/
|
2008-06-10 00:05:32 +05:30
|
|
|
for (tok = strtok (list, sep); tok != NULL; tok = strtok ((char *) 0, sep)) {
|
|
|
|
if (strcasecmp (tok, "EXCEPT") == 0) { /* EXCEPT: give up */
|
2007-10-07 17:15:23 +05:30
|
|
|
break;
|
2008-06-10 00:05:32 +05:30
|
|
|
}
|
|
|
|
match = (*match_fn) (tok, item);
|
|
|
|
if (match) {
|
2007-10-07 17:15:23 +05:30
|
|
|
break;
|
2008-06-10 00:05:32 +05:30
|
|
|
}
|
2007-10-07 17:15:23 +05:30
|
|
|
}
|
|
|
|
|
2007-10-07 17:17:01 +05:30
|
|
|
/* Process exceptions to matches. */
|
2008-06-10 00:05:32 +05:30
|
|
|
if (match) {
|
|
|
|
while ( ((tok = strtok ((char *) 0, sep)) != NULL)
|
|
|
|
&& (strcasecmp (tok, "EXCEPT") != 0))
|
2007-10-07 17:15:23 +05:30
|
|
|
/* VOID */ ;
|
2008-06-10 00:05:32 +05:30
|
|
|
if (tok == 0 || !list_match ((char *) 0, item, match_fn)) {
|
2007-10-07 17:15:23 +05:30
|
|
|
return (match);
|
2008-06-10 00:05:32 +05:30
|
|
|
}
|
2007-10-07 17:15:23 +05:30
|
|
|
}
|
2008-06-10 00:05:32 +05:30
|
|
|
return false;
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* myhostname - figure out local machine name */
|
2007-10-07 17:15:23 +05:30
|
|
|
static char *myhostname (void)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
2007-10-07 17:15:23 +05:30
|
|
|
static char name[MAXHOSTNAMELEN + 1] = "";
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2008-06-10 00:05:32 +05:30
|
|
|
if (name[0] == '\0') {
|
2007-10-07 17:15:23 +05:30
|
|
|
gethostname (name, sizeof (name));
|
2008-06-10 00:05:32 +05:30
|
|
|
name[MAXHOSTNAMELEN] = '\0';
|
2007-10-07 17:15:23 +05:30
|
|
|
}
|
|
|
|
return (name);
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
|
2007-11-16 17:02:42 +05:30
|
|
|
#if HAVE_INNETGR
|
2007-10-07 17:14:02 +05:30
|
|
|
/* netgroup_match - match group against machine or user */
|
2008-06-10 00:05:32 +05:30
|
|
|
static bool
|
2007-10-07 17:15:23 +05:30
|
|
|
netgroup_match (const char *group, const char *machine, const char *user)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
2008-06-10 00:05:32 +05:30
|
|
|
static char *mydomain = (char *)0;
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2008-06-10 00:05:32 +05:30
|
|
|
if (mydomain == (char *)0) {
|
2007-10-07 17:15:23 +05:30
|
|
|
static char domain[MAXHOSTNAMELEN + 1];
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-10-07 17:15:23 +05:30
|
|
|
getdomainname (domain, MAXHOSTNAMELEN);
|
2007-10-07 17:14:02 +05:30
|
|
|
mydomain = domain;
|
|
|
|
}
|
|
|
|
|
2008-06-10 00:05:32 +05:30
|
|
|
return (innetgr (group, machine, user, mydomain) != 0);
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
2007-11-16 17:02:42 +05:30
|
|
|
#endif
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/* user_match - match a username against one token */
|
2008-06-10 00:05:32 +05:30
|
|
|
static bool user_match (const char *tok, const char *string)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
2007-10-07 17:15:23 +05:30
|
|
|
struct group *group;
|
|
|
|
|
2007-10-07 17:14:02 +05:30
|
|
|
#ifdef PRIMARY_GROUP_MATCH
|
2007-10-07 17:15:23 +05:30
|
|
|
struct passwd *userinf;
|
2007-10-07 17:14:02 +05:30
|
|
|
#endif
|
2007-10-07 17:15:23 +05:30
|
|
|
char *at;
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/*
|
2007-10-07 17:15:23 +05:30
|
|
|
* If a token has the magic value "ALL" the match always succeeds.
|
2008-06-10 00:05:32 +05:30
|
|
|
* Otherwise, return true if the token fully matches the username, or if
|
2007-10-07 17:15:23 +05:30
|
|
|
* the token is a group that contains the username.
|
2007-10-07 17:14:02 +05:30
|
|
|
*/
|
2008-06-10 00:05:32 +05:30
|
|
|
at = strchr (tok + 1, '@');
|
|
|
|
if (NULL != at) { /* split user@host pattern */
|
|
|
|
*at = '\0';
|
|
|
|
return ( user_match (tok, string)
|
|
|
|
&& from_match (at + 1, myhostname ()));
|
2007-11-16 17:02:42 +05:30
|
|
|
#if HAVE_INNETGR
|
2007-10-07 17:15:23 +05:30
|
|
|
} else if (tok[0] == '@') { /* netgroup */
|
|
|
|
return (netgroup_match (tok + 1, (char *) 0, string));
|
2007-11-16 17:02:42 +05:30
|
|
|
#endif
|
2007-10-07 17:15:23 +05:30
|
|
|
} else if (string_match (tok, string)) { /* ALL or exact match */
|
2008-06-10 00:05:32 +05:30
|
|
|
return true;
|
* lib/prototypes.h, configure.in, libmisc/Makefile.am,
libmisc/xgetXXbyYY.c, libmisc/xgetpwnam.c, libmisc/xgetpwuid.c,
libmisc/xgetgrnam.c, libmisc/xgetgrgid.c, libmisc/xgetspnam.c:
Added functions xgetpwnam(), xgetpwuid(), xgetgrnam(),
xgetgrgid(), and xgetspnam(). They allocate memory for the
returned structure and are more robust to successive calls. They
are implemented with the libc's getxxyyy_r() functions if
available.
* libmisc/limits.c, libmisc/entry.c, libmisc/chowntty.c,
libmisc/addgrps.c, libmisc/myname.c, libmisc/rlogin.c,
libmisc/pwdcheck.c, src/newgrp.c, src/login_nopam.c,
src/userdel.c, src/lastlog.c, src/grpck.c, src/gpasswd.c,
src/newusers.c, src/chpasswd.c, src/chfn.c, src/groupmems.c,
src/usermod.c, src/expiry.c, src/groupdel.c, src/chgpasswd.c,
src/su.c, src/useradd.c, src/groupmod.c, src/passwd.c, src/pwck.c,
src/groupadd.c, src/chage.c, src/login.c, src/suauth.c,
src/faillog.c, src/groups.c, src/chsh.c, src/id.c: Review all the
usage of one of the getpwnam(), getpwuid(), getgrnam(),
getgrgid(), and getspnam() functions. It was noticed on
http://bugs.debian.org/341230 that chfn and chsh use a passwd
structure after calling a pam function, which result in using
information from the passwd structure requested by pam, not the
original one. It is much easier to use the new xget... functions
to avoid these issues. I've checked which call to the original
get... functions could be left (reducing the scope of the
structure if possible), and I've left comments to ease future
reviews (e.g. /* local, no need for xgetpwnam */).
Note: the getpwent/getgrent calls should probably be checked also.
* src/groupdel.c, src/expiry.c: Fix typos in comments.
* src/groupmod.c: Re-indent.
* libmisc/Makefile.am, lib/groupmem.c, lib/groupio.c, lib/pwmem.c,
lib/pwio.c, lib/shadowmem.c, lib/shadowio.c: Move the __<xx>_dup
functions (used by the xget... functions) from the <xx>io.c files
to the new <xx>mem.c files. This avoid linking some utils against
the SELinux library.
2007-11-19 04:45:26 +05:30
|
|
|
/* local, no need for xgetgrnam */
|
2008-06-10 00:05:32 +05:30
|
|
|
} else if ((group = getgrnam (tok)) != NULL) { /* try group membership */
|
* src/newgrp.c: Limit the scope of variable pid.
* src/login_nopam.c: Limit the scope of variables end, lineno, i,
str_len.
* src/logoutd.c: Limit the scope of variable c.
* src/vipw.c: Re-indent.
* src/vipw.c: Close the file after the creation of the backup.
* src/useradd.c (set_default): Close input file on failure.
* src/useradd.c: Limit the scope of variables spool, file, fd, gr,
gid, mode.
* src/passwd.c: Limit the scope of variables last and ok.
* src/chage.c: Fix typo (non breaking space).
* src/login.c: Limit the scope of variables erasechar killchar, c,
failed.
* src/groups.c: Limit the scope of variable ngroups, pri_grp, i.
* src/id.c: Limit the scope of variable i.
2010-03-23 16:56:34 +05:30
|
|
|
int i;
|
2008-06-10 00:05:32 +05:30
|
|
|
for (i = 0; NULL != group->gr_mem[i]; i++) {
|
|
|
|
if (strcasecmp (string, group->gr_mem[i]) == 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2007-10-07 17:15:23 +05:30
|
|
|
#ifdef PRIMARY_GROUP_MATCH
|
|
|
|
/*
|
2007-11-18 06:50:10 +05:30
|
|
|
* If the string is an user whose initial GID matches the token,
|
2007-10-07 17:15:23 +05:30
|
|
|
* accept it. May avoid excessively long lines in /etc/group.
|
|
|
|
* Radu-Adrian Feurdean <raf@licj.soroscj.ro>
|
|
|
|
*
|
|
|
|
* XXX - disabled by default for now. Need to verify that
|
|
|
|
* getpwnam() doesn't have some nasty side effects. --marekm
|
|
|
|
*/
|
* lib/prototypes.h, configure.in, libmisc/Makefile.am,
libmisc/xgetXXbyYY.c, libmisc/xgetpwnam.c, libmisc/xgetpwuid.c,
libmisc/xgetgrnam.c, libmisc/xgetgrgid.c, libmisc/xgetspnam.c:
Added functions xgetpwnam(), xgetpwuid(), xgetgrnam(),
xgetgrgid(), and xgetspnam(). They allocate memory for the
returned structure and are more robust to successive calls. They
are implemented with the libc's getxxyyy_r() functions if
available.
* libmisc/limits.c, libmisc/entry.c, libmisc/chowntty.c,
libmisc/addgrps.c, libmisc/myname.c, libmisc/rlogin.c,
libmisc/pwdcheck.c, src/newgrp.c, src/login_nopam.c,
src/userdel.c, src/lastlog.c, src/grpck.c, src/gpasswd.c,
src/newusers.c, src/chpasswd.c, src/chfn.c, src/groupmems.c,
src/usermod.c, src/expiry.c, src/groupdel.c, src/chgpasswd.c,
src/su.c, src/useradd.c, src/groupmod.c, src/passwd.c, src/pwck.c,
src/groupadd.c, src/chage.c, src/login.c, src/suauth.c,
src/faillog.c, src/groups.c, src/chsh.c, src/id.c: Review all the
usage of one of the getpwnam(), getpwuid(), getgrnam(),
getgrgid(), and getspnam() functions. It was noticed on
http://bugs.debian.org/341230 that chfn and chsh use a passwd
structure after calling a pam function, which result in using
information from the passwd structure requested by pam, not the
original one. It is much easier to use the new xget... functions
to avoid these issues. I've checked which call to the original
get... functions could be left (reducing the scope of the
structure if possible), and I've left comments to ease future
reviews (e.g. /* local, no need for xgetpwnam */).
Note: the getpwent/getgrent calls should probably be checked also.
* src/groupdel.c, src/expiry.c: Fix typos in comments.
* src/groupmod.c: Re-indent.
* libmisc/Makefile.am, lib/groupmem.c, lib/groupio.c, lib/pwmem.c,
lib/pwio.c, lib/shadowmem.c, lib/shadowio.c: Move the __<xx>_dup
functions (used by the xget... functions) from the <xx>io.c files
to the new <xx>mem.c files. This avoid linking some utils against
the SELinux library.
2007-11-19 04:45:26 +05:30
|
|
|
/* local, no need for xgetpwnam */
|
2008-06-10 00:05:32 +05:30
|
|
|
userinf = getpwnam (string);
|
|
|
|
if (NULL != userinf) {
|
|
|
|
if (userinf->pw_gid == group->gr_gid) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
#endif
|
2007-10-07 17:15:23 +05:30
|
|
|
}
|
2008-06-10 00:05:32 +05:30
|
|
|
return false;
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
|
2008-01-06 17:37:42 +05:30
|
|
|
static const char *resolve_hostname (const char *string)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
2007-10-07 17:15:23 +05:30
|
|
|
/*
|
|
|
|
* Resolve hostname to numeric IP address, as suggested
|
|
|
|
* by Dave Hagewood <admin@arrowweb.com>. --marekm
|
|
|
|
*/
|
|
|
|
struct hostent *hp;
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-10-07 17:15:23 +05:30
|
|
|
hp = gethostbyname (string);
|
2008-06-10 00:05:32 +05:30
|
|
|
if (NULL != hp) {
|
2007-10-07 17:16:07 +05:30
|
|
|
return inet_ntoa (*((struct in_addr *) *(hp->h_addr_list)));
|
2008-06-10 00:05:32 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-10-07 17:16:34 +05:30
|
|
|
SYSLOG ((LOG_ERR, "%s - unknown host", string));
|
2007-10-07 17:15:23 +05:30
|
|
|
return string;
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* from_match - match a host or tty against a list of tokens */
|
|
|
|
|
2008-06-10 00:05:32 +05:30
|
|
|
static bool from_match (const char *tok, const char *string)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
2008-06-10 00:05:32 +05:30
|
|
|
size_t tok_len;
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-10-07 17:15:23 +05:30
|
|
|
/*
|
|
|
|
* If a token has the magic value "ALL" the match always succeeds. Return
|
2008-06-10 00:05:32 +05:30
|
|
|
* true if the token fully matches the string. If the token is a domain
|
|
|
|
* name, return true if it matches the last fields of the string. If the
|
|
|
|
* token has the magic value "LOCAL", return true if the string does not
|
|
|
|
* contain a "." character. If the token is a network number, return true
|
2007-10-07 17:15:23 +05:30
|
|
|
* if it matches the head of the string.
|
|
|
|
*/
|
2007-11-16 17:02:42 +05:30
|
|
|
#if HAVE_INNETGR
|
2007-10-07 17:15:23 +05:30
|
|
|
if (tok[0] == '@') { /* netgroup */
|
|
|
|
return (netgroup_match (tok + 1, string, (char *) 0));
|
2007-11-16 17:02:42 +05:30
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
if (string_match (tok, string)) { /* ALL or exact match */
|
2008-06-10 00:05:32 +05:30
|
|
|
return true;
|
2007-10-07 17:15:23 +05:30
|
|
|
} else if (tok[0] == '.') { /* domain: match last fields */
|
* src/newgrp.c: Limit the scope of variable pid.
* src/login_nopam.c: Limit the scope of variables end, lineno, i,
str_len.
* src/logoutd.c: Limit the scope of variable c.
* src/vipw.c: Re-indent.
* src/vipw.c: Close the file after the creation of the backup.
* src/useradd.c (set_default): Close input file on failure.
* src/useradd.c: Limit the scope of variables spool, file, fd, gr,
gid, mode.
* src/passwd.c: Limit the scope of variables last and ok.
* src/chage.c: Fix typo (non breaking space).
* src/login.c: Limit the scope of variables erasechar killchar, c,
failed.
* src/groups.c: Limit the scope of variable ngroups, pri_grp, i.
* src/id.c: Limit the scope of variable i.
2010-03-23 16:56:34 +05:30
|
|
|
size_t str_len;
|
2008-06-10 00:05:32 +05:30
|
|
|
str_len = strlen (string);
|
|
|
|
tok_len = strlen (tok);
|
|
|
|
if ( (str_len > tok_len)
|
|
|
|
&& (strcasecmp (tok, string + str_len - tok_len) == 0)) {
|
|
|
|
return true;
|
|
|
|
}
|
2007-10-07 17:15:23 +05:30
|
|
|
} else if (strcasecmp (tok, "LOCAL") == 0) { /* local: no dots */
|
2008-06-10 00:05:32 +05:30
|
|
|
if (strchr (string, '.') == NULL) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} else if ( (tok[(tok_len = strlen (tok)) - 1] == '.') /* network */
|
|
|
|
&& (strncmp (tok, resolve_hostname (string), tok_len) == 0)) {
|
|
|
|
return true;
|
2007-10-07 17:15:23 +05:30
|
|
|
}
|
2008-06-10 00:05:32 +05:30
|
|
|
return false;
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* string_match - match a string against one token */
|
2008-06-10 00:05:32 +05:30
|
|
|
static bool string_match (const char *tok, const char *string)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
|
|
|
|
2007-10-07 17:15:23 +05:30
|
|
|
/*
|
|
|
|
* If the token has the magic value "ALL" the match always succeeds.
|
2008-06-10 00:05:32 +05:30
|
|
|
* Otherwise, return true if the token fully matches the string.
|
2007-10-07 17:15:23 +05:30
|
|
|
*/
|
|
|
|
if (strcasecmp (tok, "ALL") == 0) { /* all: always matches */
|
2008-06-10 00:05:32 +05:30
|
|
|
return true;
|
2007-10-07 17:15:23 +05:30
|
|
|
} else if (strcasecmp (tok, string) == 0) { /* try exact match */
|
2008-06-10 00:05:32 +05:30
|
|
|
return true;
|
2007-10-07 17:15:23 +05:30
|
|
|
}
|
2008-06-10 00:05:32 +05:30
|
|
|
return false;
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
2007-10-07 17:16:07 +05:30
|
|
|
|
2008-01-01 19:48:55 +05:30
|
|
|
#else /* !USE_PAM */
|
|
|
|
extern int errno; /* warning: ANSI C forbids an empty source file */
|
2007-10-07 17:16:07 +05:30
|
|
|
#endif /* !USE_PAM */
|