Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756111Ab2BXTFz (ORCPT ); Fri, 24 Feb 2012 14:05:55 -0500 Received: from mx.scalarmail.ca ([98.158.95.75]:52142 "EHLO ironport-01.sms.scalar.ca" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1752719Ab2BXTFy (ORCPT ); Fri, 24 Feb 2012 14:05:54 -0500 Date: Fri, 24 Feb 2012 14:05:49 -0500 From: Nick Bowler To: Kees Cook Cc: Greg KH , David Windsor , Roland Dreier , Djalal Harouni , Vasiliy Kulikov , kernel-hardening@lists.openwall.com, Ubuntu security discussion , linux-kernel@vger.kernel.org, pageexec@freemail.hu, spender@grsecurity.net Subject: Re: [kernel-hardening] Re: Add overflow protection to kref Message-ID: <20120224190549.GA8034@elliptictech.com> References: <20120217002405.GB7746@kroah.com> <20120217075945.GA2831@albatros> <20120217175445.GC29902@kroah.com> <20120217193719.GA4187@albatros> <20120217233908.GA24047@dztty> <20120218161849.GA4176@kroah.com> <20120224183726.GB23284@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: Organization: Elliptic Technologies Inc. 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: 1812 Lines: 43 On 2012-02-24 10:52 -0800, Kees Cook wrote: > On Fri, Feb 24, 2012 at 10:37 AM, Greg KH wrote: > > On Fri, Feb 24, 2012 at 12:58:35PM -0500, David Windsor wrote: [...] > >> diff --git a/include/linux/kref.h b/include/linux/kref.h > >> index 9c07dce..fc0756a 100644 > >> --- a/include/linux/kref.h > >> +++ b/include/linux/kref.h > >> @@ -38,8 +38,12 @@ static inline void kref_init(struct kref *kref) > >> ? */ > >> ?static inline void kref_get(struct kref *kref) > >> ?{ > >> + ? int rc = 0; > >> ? ? WARN_ON(!atomic_read(&kref->refcount)); > >> - ? atomic_inc(&kref->refcount); > >> + ? smp_mb__before_atomic_inc(); > >> + ? rc = atomic_add_unless(&kref->refcount, 1, INT_MAX); > >> + ? smp_mb__after_atomic_inc(); > >> + ? BUG_ON(!rc); > > > > So you are guaranteeing to crash a machine here if this fails? ?And you > > were trying to say this is a "security" based fix? > > This is the same principle as the stack protector. When something has > gone horribly wrong and cannot be sensibly recovered from, crash the > machine. Wrapping the refcount would cause all kinds of problems, so > that certainly seems worthy of a BUG(). But in this case, the principle does not apply because we can recover. The reason we cannot recover from the stack protector case is because the stack protector is reacting after the fact, which is not the case here. Simply peg the reference count at the maximum value, neither incrementing it nor decrementing it further. Cheers, -- Nick Bowler, Elliptic Technologies (http://www.elliptictech.com/) -- 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/