Bug 63172 - pam_userlist is buggy
Summary: pam_userlist is buggy
Keywords:
Status: CLOSED RAWHIDE
Alias: None
Product: Red Hat Public Beta
Classification: Retired
Component: kapabilities
Version: skipjack-beta2
Hardware: All
OS: Linux
high
high
Target Milestone: ---
Assignee: wdovlrrw
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks: 61901
TreeView+ depends on / blocked
 
Reported: 2002-04-10 20:16 UTC by Nalin Dahyabhai
Modified: 2008-05-01 15:38 UTC (History)
0 users

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2002-04-15 22:25:49 UTC
Embargoed:


Attachments (Terms of Use)

Description Nalin Dahyabhai 2002-04-10 20:16:25 UTC
The pam_userlist module has numerous problems.

There is no documentation.

The module determine's the user's identity by using the getuid() function, which
will cause it to not work properly when called from an application like login or
ftpd.

When parsing arguments, it uses strtok(), which will destroy any context a
calling application might have.  While this is allowed, it is highly undesirable.

When determining the current user's name, it uses getpwuid(), which will destroy
any preexisting queries an application might have made.  This problem in
pam_limits led to strange behavior with OpenSSH's sshd.  Like strtok(), this is
allowed but undesirable.

When checking if the current user is in a group, only the primary group ID is
checked.  Supplemental group memberships are ignored.

Comment 1 Bernhard Rosenkraenzer 2002-04-15 13:31:26 UTC
As discussed in email, getuid() and friends have to be used to get the  
functionality it provides. I've added documentation explaining what it is and  
why it can't be used for services like login or ftpd.  
  
The strtok usage is ok since it operates on a strdup()'ed string, the calling 
application isn't affected. 
 
Support for supplementary groups has been added in 1.0.1-1.

Comment 2 Nalin Dahyabhai 2002-04-15 20:36:04 UTC
You seem to be confusing strtok() and strtok_r() here.  This bug is still
present in 1.0.1, and my other misgivings about including it in a release still
stand.

Comment 3 Nalin Dahyabhai 2002-04-15 22:25:45 UTC
pam_userlist checks the current group, and then the user's default group list,
which may have changed if the user ran sg(1) or newgrp(1), or if the login
session used pam_groups to modify the user's group list.  It should use
getgroups() to retrieve the current supplemental groups list instead.

Comment 4 Bernhard Rosenkraenzer 2002-04-16 15:57:33 UTC
Really fixed in 1.0.2-1.


Note You need to log in before you can comment on or make changes to this bug.