Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757095Ab0ANPII (ORCPT ); Thu, 14 Jan 2010 10:08:08 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932271Ab0ANPHR (ORCPT ); Thu, 14 Jan 2010 10:07:17 -0500 Received: from e37.co.us.ibm.com ([32.97.110.158]:59655 "EHLO e37.co.us.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756672Ab0ANPBD (ORCPT ); Thu, 14 Jan 2010 10:01:03 -0500 Date: Thu, 14 Jan 2010 09:00:39 -0600 From: "Serge E. Hallyn" To: Pavel Machek Cc: Michael Stone , linux-kernel@vger.kernel.org, netdev@vger.kernel.org, linux-security-module@vger.kernel.org, Andi Kleen , David Lang , Oliver Hartkopp , Alan Cox , Herbert Xu , Valdis Kletnieks , Bryan Donlan , Evgeniy Polyakov , "C. Scott Ananian" , James Morris , "Eric W. Biederman" , Bernie Innocenti , Mark Seaborn , Randy Dunlap , Am?rico Wang , Tetsuo Handa , Samir Bellabes , Casey Schaufler , Al Viro , Kyle Moffett Subject: Re: [PATCH 2/3] Security: Implement disablenetwork semantics. (v4) Message-ID: <20100114150039.GB6322@us.ibm.com> References: <20100111174922.GA17285@us.ibm.com> <20100112061058.GA5231@heat> <20100112155246.GA9255@us.ibm.com> <20100114092328.GB11500@atrey.karlin.mff.cuni.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20100114092328.GB11500@atrey.karlin.mff.cuni.cz> User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2582 Lines: 58 Quoting Pavel Machek (pavel@ucw.cz): > > Quoting Michael Stone (michael@laptop.org): > > > Serge Hallyn wrote: > > > >Michael, I'm sorry, I should go back and search the thread for the > > > >answer, but don't have time right now - do you really need > > > >disablenetwork to be available to unprivileged users? > > > > > > Rainbow can only drop the networking privileges when we know at app launch time > > > (e.g. based on a manifest or from the human operator) that privileges can be > > > dropped. Unfortunately, most of the really interesting uses of disablenetwork > > > happen *after* rainbow has dropped privilege and handed control the app. > > > Therefore, having an API which can be used by at least some low-privilege > > > processes is important to me. > > > > > > >is it ok to require CAP_SETPCAP (same thing required for dropping privs from > > > >bounding set)? > > > > > > Let me try to restate your idea: > > > > > > We can make disablenetwork safer by permitting its use only where explicitly > > > permitted by some previously privileged ancestor. The securebits facility > > > described in > > > > > > http://lwn.net/Articles/280279/ > > > > > > may be a good framework in which to implement this control. > > > > > > Did I understand correctly? If so, then yes, this approach seems like it would > > > work for me. > > > > That is a little more than I was saying this time though I think I > > suggested it earlier. > > > > But really I don't think anyone would care to separate a system into > > some processes allowed to do unprivileged disablenetwork and other > > processes not allowed to, so a (root-owned mode 644) sysctl seems just > > as useful. > > Global solution like that is always wrong. (And we have better > solution available.) All right, so Michael suggested securebits, I personally feel prctl would be more appropriate, but in any case the suggestion then is: foo_enable_disablenet() is either prctl(PR_ALLOW_DISABLENET) or prctl(PR_SET_SECUREBITS, (1 << PR_ALLOW_DISABLENET) | (1 << PR_ALLOW_DISABLENET_LOCK)) and it requires privilege (CAP_NET_ADMIN presumably) to make this call. prctl(PR_SET_DISABLENETWORK), or whatever Michael was using, does not require privilege, but requires that foo_enable_disablenet() have been previously called by a privileged app. -serge -- 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/