Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754179Ab3JCGMu (ORCPT ); Thu, 3 Oct 2013 02:12:50 -0400 Received: from mail-ea0-f172.google.com ([209.85.215.172]:38391 "EHLO mail-ea0-f172.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752013Ab3JCGMt (ORCPT ); Thu, 3 Oct 2013 02:12:49 -0400 Date: Thu, 3 Oct 2013 08:12:44 +0200 From: Ingo Molnar To: Djalal Harouni Cc: Kees Cook , Andy Lutomirski , "Eric W. Biederman" , Al Viro , Andrew Morton , Linus Torvalds , "Serge E. Hallyn" , Cyrill Gorcunov , David Rientjes , LKML , Linux FS Devel , "kernel-hardening@lists.openwall.com" , Djalal Harouni Subject: Re: [PATCH v2 0/9] procfs: protect /proc//* files with file->f_cred Message-ID: <20131003061244.GC25345@gmail.com> References: <1380659178-28605-1-git-send-email-tixxdz@opendz.org> <524B7999.60806@amacapital.net> <20131002143759.GA2966@dztty> <20131002182206.GB2485@dztty> <20131002184844.GB3393@dztty> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20131002184844.GB3393@dztty> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1542 Lines: 38 * Djalal Harouni wrote: > > Regardless, glibc uses /proc/self/maps, which would be fine here, right? > > I did not touch /proc/self/maps and others, but I'm planning to fix them > if this solution is accepted. > > I'll do the same thing as in /proc/*/stat for maps, let it be 0444, and > try to delay the check to ->read(). So during ->read() perform > ptrace_may_access() on currenct's cred and process_allow_access() on > file's opener cred. This should work. Aren't read() time checks fundamentally unrobust? We generally don't do locking on read()s, so such checks - in the general case - are pretty racy. Now procfs might be special, as by its nature of a pseudofilesystem it's far more atomic than other filesystems, but still IMHO it's a lot more robust security design wise to revoke access to objects you should not have a reference to when a security boundary is crossed, than letting stuff leak through and sprinking all the potential cases that may leak information with permission checks ... It's also probably faster: security boundary crossings are relatively rare slowpaths, while read()s are much more common... So please first get consensus on this fundamental design question before spreading your solution to more areas. Thanks, Ingo -- 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/