* 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.
This commit is contained in:
10
src/su.c
10
src/su.c
@ -125,7 +125,7 @@ static int iswheel (const char *username)
|
||||
{
|
||||
struct group *grp;
|
||||
|
||||
grp = getgrnam ("wheel");;
|
||||
grp = getgrnam ("wheel"); /* !USE_PAM, no need for xgetgrnam */
|
||||
if (!grp || !grp->gr_mem)
|
||||
return 0;
|
||||
return is_on_list (grp->gr_mem, username);
|
||||
@ -472,7 +472,7 @@ int main (int argc, char **argv)
|
||||
* Sort out the password of user calling su, in case needed later
|
||||
* -- chris
|
||||
*/
|
||||
if ((spwd = getspnam (oldname)))
|
||||
if ((spwd = getspnam (oldname))) /* !USE_PAM, no need for xgetspnam */
|
||||
pw->pw_passwd = spwd->sp_pwdp;
|
||||
oldpass = xstrdup (pw->pw_passwd);
|
||||
#endif /* SU_ACCESS */
|
||||
@ -507,7 +507,7 @@ int main (int argc, char **argv)
|
||||
* The password file entries for the user is gotten and the account
|
||||
* validated.
|
||||
*/
|
||||
if (!(pw = getpwnam (name))) {
|
||||
if (!(pw = xgetpwnam (name))) {
|
||||
(void) fprintf (stderr, _("Unknown id: %s\n"), name);
|
||||
closelog ();
|
||||
exit (1);
|
||||
@ -515,7 +515,7 @@ int main (int argc, char **argv)
|
||||
#ifndef USE_PAM
|
||||
spwd = NULL;
|
||||
if (strcmp (pw->pw_passwd, SHADOW_PASSWD_STRING) == 0
|
||||
&& (spwd = getspnam (name)))
|
||||
&& (spwd = getspnam (name))) /* !USE_PAM, no need for xgetspnam */
|
||||
pw->pw_passwd = spwd->sp_pwdp;
|
||||
#endif /* !USE_PAM */
|
||||
pwent = *pw;
|
||||
@ -696,8 +696,10 @@ int main (int argc, char **argv)
|
||||
spwd = pwd_to_spwd (&pwent);
|
||||
|
||||
if (expire (&pwent, spwd)) {
|
||||
/* !USE_PAM, no need for xgetpwnam */
|
||||
struct passwd *pwd = getpwnam (name);
|
||||
|
||||
/* !USE_PAM, no need for xgetspnam */
|
||||
spwd = getspnam (name);
|
||||
if (pwd)
|
||||
pwent = *pwd;
|
||||
|
Reference in New Issue
Block a user