From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753411AbdJaAAw (ORCPT ); Mon, 30 Oct 2017 20:00:52 -0400 Received: from mail.kernel.org ([198.145.29.99]:35322 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753248AbdJaAAv (ORCPT ); Mon, 30 Oct 2017 20:00:51 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 7596421925 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=goodmis.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=rostedt@goodmis.org Date: Mon, 30 Oct 2017 20:00:46 -0400 From: Steven Rostedt To: "Tobin C. Harding" Cc: kernel-hardening@lists.openwall.com, "Jason A. Donenfeld" , "Theodore Ts'o" , Linus Torvalds , Kees Cook , Paolo Bonzini , Tycho Andersen , "Roberts, William C" , Tejun Heo , Jordan Glover , Greg KH , Petr Mladek , Joe Perches , Ian Campbell , Sergey Senozhatsky , Catalin Marinas , Will Deacon , Chris Fries , Dave Weinstein , Daniel Micay , Djalal Harouni , linux-kernel@vger.kernel.org Subject: Re: [PATCH V8 2/2] printk: hash addresses printed with %p Message-ID: <20171030200046.1f40a9dc@gandalf.local.home> In-Reply-To: <20171030224102.GY12341@eros> References: <1508986436-31966-1-git-send-email-me@tobin.cc> <1508986436-31966-3-git-send-email-me@tobin.cc> <20171026025838.GG12341@eros> <20171030173322.6ebed7db@gandalf.local.home> <20171030224102.GY12341@eros> X-Mailer: Claws Mail 3.14.0 (GTK+ 2.24.31; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 31 Oct 2017 09:41:02 +1100 "Tobin C. Harding" wrote: > Cool. So I think we need > > get_random_bytes(&ptr_key, sizeof(ptr_key)); You'll need to add a comment here to describe what ordering the memory barrier is used against. That is, somewhere else there's something that needs to see the "true" after the "get_random_bytes" update. Describe it here. -- Steve > smp_mb(); > WRITE_ONCE(have_filled_random_ptr_key, true); > > V10 to include this unless I have it wrong. > > thanks, > Tobin.