Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752647Ab2BOQPs (ORCPT ); Wed, 15 Feb 2012 11:15:48 -0500 Received: from mx1.redhat.com ([209.132.183.28]:22593 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752038Ab2BOQPo (ORCPT ); Wed, 15 Feb 2012 11:15:44 -0500 Date: Wed, 15 Feb 2012 17:06:52 +0100 From: Oleg Nesterov To: Cyrill Gorcunov Cc: "Eric W. Biederman" , Pavel Emelyanov , Andrey Vagin , KOSAKI Motohiro , Ingo Molnar , "H. Peter Anvin" , Thomas Gleixner , Glauber Costa , Andi Kleen , Tejun Heo , Matt Helsley , Pekka Enberg , Eric Dumazet , Vasiliy Kulikov , Alexey Dobriyan , Valdis.Kletnieks@vt.edu, Michal Marek , Frederic Weisbecker , Andrew Morton , linux-kernel@vger.kernel.org Subject: Re: + syscalls-x86-add-__nr_kcmp-syscall-v8.patch added to -mm tree Message-ID: <20120215160652.GA17680@redhat.com> References: <20120215143606.GA14037@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20120215143606.GA14037@redhat.com> User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1234 Lines: 42 Not a comment, but the question. I am just curious... > +/* > + * We don't expose real in-memory order of objects for security > + * reasons, still the comparison results should be suitable for > + * sorting. Thus, we obfuscate kernel pointers values and compare > + * the production instead. > + */ > +static unsigned long cookies[KCMP_TYPES][2] __read_mostly; > + > +static long kptr_obfuscate(long v, int type) > +{ > + return (v ^ cookies[type][0]) * cookies[type][1]; > +} OK, but why do we need this per type? Just to add more obfuscation or there is another reason? > +static __init int kcmp_cookies_init(void) > +{ > + int i; > + > + get_random_bytes(cookies, sizeof(cookies)); > + > + for (i = 0; i < KCMP_TYPES; i++) > + cookies[i][1] |= (~(~0UL >> 1) | 1); I am puzzled, help ;) this is equal to cookies[i][1] |= -LONG_MAX; or cookies[i][1] |= (LONG_MIN | 1); for what? why do we want to set these 2 bits (MSB and LSB) ? Oleg. -- 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/