From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752270AbcHXThz (ORCPT ); Wed, 24 Aug 2016 15:37:55 -0400 Received: from mx1.redhat.com ([209.132.183.28]:45950 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751214AbcHXThL (ORCPT ); Wed, 24 Aug 2016 15:37:11 -0400 Date: Wed, 24 Aug 2016 14:37:07 -0500 From: Josh Poimboeuf To: Linus Torvalds Cc: Peter Zijlstra , Thomas Gleixner , Ingo Molnar , "H . Peter Anvin" , the arch/x86 maintainers , Linux Kernel Mailing List , Andy Lutomirski , Steven Rostedt , Brian Gerst , Kees Cook , Frederic Weisbecker , Byungchul Park , Nilay Vaish Subject: Re: [PATCH 3/6] x86/dumpstack: make printk_stack_address() more generally useful Message-ID: <20160824193707.qw7vii3l4ggcfl6d@treble> References: <9fbe0db05bacf66d337c162edbf61450d0cff1e2.1472057064.git.jpoimboe@redhat.com> <20160824182220.GB10153@twins.programming.kicks-ass.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.6.0.1 (2016-04-01) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.25]); Wed, 24 Aug 2016 19:37:10 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Aug 24, 2016 at 02:37:21PM -0400, Linus Torvalds wrote: > On Wed, Aug 24, 2016 at 2:22 PM, Peter Zijlstra wrote: > > > > I actively disable KASLR on my dev box and feed these hex numbers into > > addr2line -ie vmlinux to find where in the function we are. > > > > Having the option to make %pB generate them works for me. > > Yeah, considering that this is the only place this is used, changing > %pB sounds quite reasonable. There's now another use of '%pB' in proc_pid_stack() in the tip tree: I changed it to '%pB' from '%pS'. But I think the modified '%pB' would work there as well. > We could perhaps make %pB show the hex numbers and address (so pB > would expand to "[] symbolname".if > > (a) not randomizing (so the hex numbers _may_ be useful) > > (b) kptr_restrict is 0 (so the hex numbers are "safe" in the dmesg) > > and fall back to just the symbolic name if either of those aren't true? Do we really need to check for both? '%pK' only checks kptr_restrict. I'd think we should be consistent with that. And maybe there are some scenarios where the actual text addresses provide useful debug information if KASLR is enabled and kptr_restrict is zero. > And obviously, if KALLSYMS isn't enabled, you always show hex > numbers.. That's already the case (but we might want to add the "[<>}' > markers around the hex numbers just to make the user space automation > we do have work). Even if kptr_restrict is set? -- Josh