From owner-freebsd-fs@FreeBSD.ORG Thu Feb 21 07:57:21 2008 Return-Path: Delivered-To: freebsd-fs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2707D16A400 for ; Thu, 21 Feb 2008 07:57:21 +0000 (UTC) (envelope-from antik@bsd.ee) Received: from zzz.ee (kalah.zzz.ee [194.204.30.253]) by mx1.freebsd.org (Postfix) with ESMTP id CF7D713C4EB for ; Thu, 21 Feb 2008 07:57:19 +0000 (UTC) (envelope-from antik@bsd.ee) Received: by zzz.ee (Postfix, from userid 3019) id CDE66828EFA; Thu, 21 Feb 2008 09:58:03 +0200 (EET) X-Spam-Checker-Version: SpamAssassin on spamassassin.zzz.ee X-Spam-Level: X-Spam-Guessed-Language: en X-Spam-Status: No, score=-4.0 required=5.0 tests=ALL_TRUSTED,BAYES_50 X-Spam-Checker-URL: http://info.zzz.ee Received: from andrei.demo (adsl215.uninet.ee [194.204.62.215]) by zzz.ee (Postfix) with ESMTP id 6E0078289F3 for ; Thu, 21 Feb 2008 09:58:02 +0200 (EET) From: Andrei Kolu To: freebsd-fs@freebsd.org Date: Thu, 21 Feb 2008 09:57:13 +0200 User-Agent: KMail/1.9.7 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200802210957.13651.antik@bsd.ee> Subject: FreeBSD 6.3 ACL problem X-BeenThere: freebsd-fs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Filesystems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Feb 2008 07:57:21 -0000 Hi, I have this strange problem with ACL- I can go to one particular directory with two different users but can't access it with third. NOTE: there is no common group set up like samba- all users access this directory according to ACL rules (other::r-x). Looks like different shell does not matter (csh or sh). Only difference whas that I created user "antik" before I enabled ACL support for /usr filesystem. Should I report this like bug? Commands listing: --------------------------------------------------------------------- sambatest# pwd /root sambatest# cd /home/ sambatest# ll total 10 drwxr-xr-x 2 antik antik 512 Feb 20 16:23 antik drwxrwxr-x+ 3 samba samba 512 Feb 20 15:53 samba drwxr-xr-x 2 test1 test1 512 Feb 21 09:29 test1 drwxr-xr-x 2 test2 test2 512 Feb 20 16:40 test2 sambatest# getfacl samba/ #file:samba/ #owner:1003 #group:1003 user::rwx user:nobody:rw- group::r-x group:wheel:rw- mask::rwx other::r-x sambatest# su - antik %cd /home/ %ll total 10 drwxr-xr-x 2 antik antik 512 Feb 20 16:23 antik drwxrwxr-x+ 3 samba samba 512 Feb 20 15:53 samba drwxr-xr-x 2 test1 test1 512 Feb 21 09:29 test1 drwxr-xr-x 2 test2 test2 512 Feb 20 16:40 test2 %cd samba/ samba/: Permission denied. %logout sambatest# su - test2 $ cd /home $ ll total 14 drwxr-xr-x 6 root wheel - 512 Feb 20 16:40 ./ drwxr-xr-x 17 root wheel - 512 Feb 20 14:01 ../ drwxr-xr-x 2 antik antik - 512 Feb 20 16:23 antik/ drwxrwxr-x+ 3 samba samba - 512 Feb 20 15:53 samba/ drwxr-xr-x 2 test1 test1 - 512 Feb 21 09:29 test1/ drwxr-xr-x 2 test2 test2 - 512 Feb 20 16:40 test2/ $ cd samba $ pwd /home/samba ---------------------------------------------------------------------