Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759757AbYCZMey (ORCPT ); Wed, 26 Mar 2008 08:34:54 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1756854AbYCZMeo (ORCPT ); Wed, 26 Mar 2008 08:34:44 -0400 Received: from zombie.ncsc.mil ([144.51.88.131]:56740 "EHLO zombie.ncsc.mil" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755570AbYCZMem (ORCPT ); Wed, 26 Mar 2008 08:34:42 -0400 Subject: Re: r-o bind in nfsd From: Stephen Smalley To: NeilBrown Cc: Tetsuo Handa , miklos@szeredi.hu, viro@zeniv.linux.org.uk, haveblue@us.ibm.com, linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, akpm@linux-foundation.org, hch@infradead.org, linux-security-module@vger.kernel.org, jmorris@namei.org In-Reply-To: <57096.192.168.1.70.1206484328.squirrel@neil.brown.name> References: <20080321155451.GU10722@ZenIV.linux.org.uk> <20080321163520.GV10722@ZenIV.linux.org.uk> <18408.26863.617591.836548@notabene.brown> <200803252045.CGB04105.HLSQFOJMtOFVOF@I-love.SAKURA.ne.jp> <57096.192.168.1.70.1206484328.squirrel@neil.brown.name> Content-Type: text/plain Organization: National Security Agency Date: Wed, 26 Mar 2008 08:04:02 -0400 Message-Id: <1206533042.3302.266.camel@moss-spartans.epoch.ncsc.mil> Mime-Version: 1.0 X-Mailer: Evolution 2.12.3 (2.12.3-3.fc8) Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2993 Lines: 73 On Wed, 2008-03-26 at 09:32 +1100, NeilBrown wrote: > On Tue, March 25, 2008 10:45 pm, Tetsuo Handa wrote: > > Hello. > > > >> Maybe some enhancement to the 'intent' structure with a similar > >> effect could be done instead. > >> > >> Then you could, presumably, put a security hook somewhere in > >> link_path_walk for those modules (like AppArmor) which want to do > >> checks based on the namespace. > > > > I think link_path_walk() is not a good place to insert new LSM hooks > > for pathname based access control (AppArmor and TOMOYO) purpose because > > > > (1) The kernel don't know what operation (open/create/truncate etc.) > > will be > > done at the moment of link_path_walk(). > > Though the 'indent' data structure could be used to carry this information. > > > > > (2) Not all operations call link_path_walk() before these operations > > are done. For example, ftruncate() doesn't call link_path_walk(). > > But do you want to impose path-name based controls to ftruncate? > Surely once you have a file open for write (not O_APPEND), then no > other permission is required to truncate the file, is it? > If it is, then maybe the 'struct file' should be tagged at open time > to say whether 'truncate' is allowed. > > > > > (3) The rename() and link() operations handle two pathnames. > > But, it is not possible to know both pathnames at the moment of > > link_path_walk(). > > Not an insolvable problem. > One could imagine an implementation where a TYPE_RENAME_FROM security > check produced a cookie that was consumed by a TYPE_RENAME_TO security > check. The cookie could then be used by the security module to > make any connection between the two names that might be appropriate. > > > > > I think we need to introduce new LSM hooks outside link_path_walk(). > > http://kerneltrap.org/mailarchive/linux-fsdevel/2008/2/17/882024 > > > > I suspect we would be much better off removing all the security hooks. > Security done at that level seems to be way too complex such that most > people don't really understand it. And people who don't understand > security don't use it. > We'd be much better off getting rid of the whole "micro-manage security" > concept and provide isolation via some sort of high level container > approach. > Containers can be useful, but they aren't a substitute for access control, and they don't solve the same problem. And SELinux does get used, and recent stats on Fedora 8 suggest that few people disable it anymore. Advances in the SELinux tools (loadable modules, semanage, system-config-selinux, setroubleshoot, etc) have gone a long way to enabling users to solve problems they encounter. -- Stephen Smalley National Security Agency -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/