From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755297Ab3JBSmA (ORCPT ); Wed, 2 Oct 2013 14:42:00 -0400 Received: from numidia.opendz.org ([98.142.220.152]:47230 "EHLO numidia.opendz.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753602Ab3JBSl7 (ORCPT ); Wed, 2 Oct 2013 14:41:59 -0400 Date: Wed, 2 Oct 2013 19:41:54 +0100 From: Djalal Harouni To: Andy Lutomirski Cc: Kees Cook , "Eric W. Biederman" , Al Viro , Andrew Morton , Linus Torvalds , Ingo Molnar , "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: <20131002184154.GA3393@dztty> References: <1380659178-28605-1-git-send-email-tixxdz@opendz.org> <524B7999.60806@amacapital.net> <20131002143759.GA2966@dztty> <20131002182643.GC2485@dztty> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20131002182643.GC2485@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 On Wed, Oct 02, 2013 at 07:26:43PM +0100, Djalal Harouni wrote: > On Wed, Oct 02, 2013 at 11:00:26AM -0700, Andy Lutomirski wrote: > > On Wed, Oct 2, 2013 at 10:48 AM, Kees Cook wrote: > > > I think revoking the fd would be great. Does that mechanism exist? > > > > There's this thing that never got merged. > > > > http://thread.gmane.org/gmane.linux.kernel/1523331 > > > > But doing it more directly should be reasonably straightforward. Either: > > > > (a) when a process execs and privileges change, find all the old proc > > inodes, mark them dead, and unlink them, or > Will take a look at it. > > > (b) add self_exec_id to all the proc file private_data entries (or > > somewhere else). Then just make sure that they're unchanged. I think > > the bug last time around was because the self_exec_id and struct pid > > weren't being compared together. > The bug was about self_exec_id not beeing unique. self_exec_id stuff > must be unique during life time as it's done currently in grsecurity > with exec_id. I forget to mention that I've already proposed this (b) solution, but after the discussion with Eric, I came to the conclusion that we could allow the fd to be passed to the process if the original opener had enough privileges. In either case we want to check the privileges, otherwise ps and other tool will not report data if target tasks do execve. -- Djalal Harouni http://opendz.org From mboxrd@z Thu Jan 1 00:00:00 1970 From: Djalal Harouni Subject: Re: [PATCH v2 0/9] procfs: protect /proc//* files with file->f_cred Date: Wed, 2 Oct 2013 19:41:54 +0100 Message-ID: <20131002184154.GA3393@dztty> References: <1380659178-28605-1-git-send-email-tixxdz@opendz.org> <524B7999.60806@amacapital.net> <20131002143759.GA2966@dztty> <20131002182643.GC2485@dztty> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Kees Cook , "Eric W. Biederman" , Al Viro , Andrew Morton , Linus Torvalds , Ingo Molnar , "Serge E. Hallyn" , Cyrill Gorcunov , David Rientjes , LKML , Linux FS Devel , "kernel-hardening@lists.openwall.com" , Djalal Harouni To: Andy Lutomirski Return-path: Content-Disposition: inline In-Reply-To: <20131002182643.GC2485@dztty> Sender: linux-kernel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org On Wed, Oct 02, 2013 at 07:26:43PM +0100, Djalal Harouni wrote: > On Wed, Oct 02, 2013 at 11:00:26AM -0700, Andy Lutomirski wrote: > > On Wed, Oct 2, 2013 at 10:48 AM, Kees Cook wrote: > > > I think revoking the fd would be great. Does that mechanism exist? > > > > There's this thing that never got merged. > > > > http://thread.gmane.org/gmane.linux.kernel/1523331 > > > > But doing it more directly should be reasonably straightforward. Either: > > > > (a) when a process execs and privileges change, find all the old proc > > inodes, mark them dead, and unlink them, or > Will take a look at it. > > > (b) add self_exec_id to all the proc file private_data entries (or > > somewhere else). Then just make sure that they're unchanged. I think > > the bug last time around was because the self_exec_id and struct pid > > weren't being compared together. > The bug was about self_exec_id not beeing unique. self_exec_id stuff > must be unique during life time as it's done currently in grsecurity > with exec_id. I forget to mention that I've already proposed this (b) solution, but after the discussion with Eric, I came to the conclusion that we could allow the fd to be passed to the process if the original opener had enough privileges. In either case we want to check the privileges, otherwise ps and other tool will not report data if target tasks do execve. -- Djalal Harouni http://opendz.org From mboxrd@z Thu Jan 1 00:00:00 1970 Reply-To: kernel-hardening@lists.openwall.com Date: Wed, 2 Oct 2013 19:41:54 +0100 From: Djalal Harouni Message-ID: <20131002184154.GA3393@dztty> References: <1380659178-28605-1-git-send-email-tixxdz@opendz.org> <524B7999.60806@amacapital.net> <20131002143759.GA2966@dztty> <20131002182643.GC2485@dztty> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20131002182643.GC2485@dztty> Subject: [kernel-hardening] Re: [PATCH v2 0/9] procfs: protect /proc//* files with file->f_cred To: Andy Lutomirski Cc: Kees Cook , "Eric W. Biederman" , Al Viro , Andrew Morton , Linus Torvalds , Ingo Molnar , "Serge E. Hallyn" , Cyrill Gorcunov , David Rientjes , LKML , Linux FS Devel , "kernel-hardening@lists.openwall.com" , Djalal Harouni List-ID: On Wed, Oct 02, 2013 at 07:26:43PM +0100, Djalal Harouni wrote: > On Wed, Oct 02, 2013 at 11:00:26AM -0700, Andy Lutomirski wrote: > > On Wed, Oct 2, 2013 at 10:48 AM, Kees Cook wrote: > > > I think revoking the fd would be great. Does that mechanism exist? > > > > There's this thing that never got merged. > > > > http://thread.gmane.org/gmane.linux.kernel/1523331 > > > > But doing it more directly should be reasonably straightforward. Either: > > > > (a) when a process execs and privileges change, find all the old proc > > inodes, mark them dead, and unlink them, or > Will take a look at it. > > > (b) add self_exec_id to all the proc file private_data entries (or > > somewhere else). Then just make sure that they're unchanged. I think > > the bug last time around was because the self_exec_id and struct pid > > weren't being compared together. > The bug was about self_exec_id not beeing unique. self_exec_id stuff > must be unique during life time as it's done currently in grsecurity > with exec_id. I forget to mention that I've already proposed this (b) solution, but after the discussion with Eric, I came to the conclusion that we could allow the fd to be passed to the process if the original opener had enough privileges. In either case we want to check the privileges, otherwise ps and other tool will not report data if target tasks do execve. -- Djalal Harouni http://opendz.org