public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Max groups at 32?
@ 2002-06-04  3:31 Austin Gonyou
  2002-06-04  3:39 ` Jeff Garzik
  2002-06-04  3:53 ` Andreas Dilger
  0 siblings, 2 replies; 9+ messages in thread
From: Austin Gonyou @ 2002-06-04  3:31 UTC (permalink / raw)
  To: Linux Kernel List

[-- Attachment #1: Type: text/plain, Size: 1315 bytes --]

I'm not sure if this is a Linux capabilities problem, a PAM problem, or
what, but I've noticed that If I add a user to > 32 groups...that user
cannot access anything in a directory owned by a group > the 32nd group.

Has anyone else experienced this?

Here is a sample script to help troubleshoot if you're interested:

#!/bin/bash
x=34;
useradd testuser
while [ ! $x -lt 1 ]
  do groupadd group$x
     gpasswd -a testuser group$x
     x=$(( $x - 1 ))
done

groups
read 
printf "press any key..."
groups testuser
printf "press any key..."
read
mkdir /testdir
chown root:group1 /testdir
chmod 770 /testdir
su - testuser -c "ls /testdir"
printf "press any key..."
read
userdel -r testuser

If all has gone properly, and group1 is *not* in the first groups
listing, (not "groups testuser"), then the user will not be able to even
ls /testdir, and you'll get permission denied. 

Please advise, if you can.
TIA.

-- 
Austin Gonyou
Systems Architect, CCNA
Coremetrics, Inc.
Phone: 512-698-7250
email: austin@coremetrics.com

"One ought never to turn one's back on a threatened danger and 
try to run away from it. If you do that, you will double the danger. 
But if you meet it promptly and without flinching, you will 
reduce the danger by half."
Sir Winston Churchill

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 232 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2002-06-04 21:57 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-06-04  3:31 Max groups at 32? Austin Gonyou
2002-06-04  3:39 ` Jeff Garzik
2002-06-04 21:05   ` Tomasz Kłoczko
2002-06-04 21:18     ` Tim Hockin
2002-06-04 21:24       ` David S. Miller
2002-06-04 21:38         ` Tim Hockin
2002-06-04 21:57         ` Tim Hockin
2002-06-04 21:40       ` Trond Myklebust
2002-06-04  3:53 ` Andreas Dilger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox