From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758144Ab2AFHiq (ORCPT ); Fri, 6 Jan 2012 02:38:46 -0500 Received: from mx3.mail.elte.hu ([157.181.1.138]:51762 "EHLO mx3.mail.elte.hu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752881Ab2AFHio (ORCPT ); Fri, 6 Jan 2012 02:38:44 -0500 Date: Fri, 6 Jan 2012 08:36:35 +0100 From: Ingo Molnar To: Kees Cook Cc: linux-kernel@vger.kernel.org, Alexander Viro , Andrew Morton , Rik van Riel , Federica Teodori , Lucian Adrian Grijincu , Peter Zijlstra , Eric Paris , Randy Dunlap , Dan Rosenberg , linux-doc@vger.kernel.org, linux-fsdevel@vger.kernel.org, kernel-hardening@lists.openwall.com Subject: Re: [PATCH v2012.1] fs: symlink restrictions on sticky directories Message-ID: <20120106073635.GC14188@elte.hu> References: <20120104201800.GA2587@www.outflux.net> <20120105091704.GB3249@elte.hu> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) X-ELTE-SpamScore: -2.0 X-ELTE-SpamLevel: X-ELTE-SpamCheck: no X-ELTE-SpamVersion: ELTE 2.0 X-ELTE-SpamCheck-Details: score=-2.0 required=5.9 tests=AWL,BAYES_00 autolearn=no SpamAssassin version=3.3.1 -2.0 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] 0.0 AWL AWL: From: address is in the auto white-list Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Kees Cook wrote: > On Thu, Jan 5, 2012 at 1:17 AM, Ingo Molnar wrote: > > * Kees Cook wrote: > > > >> @@ -1495,6 +1496,15 @@ static struct ctl_table fs_table[] = { > >>  #endif > >>  #endif > >>       { > >> +             .procname       = "protected_sticky_symlinks", > >> +             .data           = &protected_sticky_symlinks, > >> +             .maxlen         = sizeof(int), > >> +             .mode           = 0644, > >> +             .proc_handler   = proc_dointvec_minmax, > >> +             .extra1         = &zero, > >> +             .extra2         = &one, > >> +     }, > > > > Small detail: > > > > Might make sense to change the .mode to 0600, to make it > > harder for unprivileged attack code to guess whether this > > protection (and the resulting audit warning to the > > administrator) is enabled on a system or not. > > Sure, I have no problem with that. In addition to this change, > what's the best next step for this patch? Al and Linus's call I guess. Maybe ask Andrew whether he'd put it into -mm? Thanks, Ingo