From: "Paul E. McKenney" <paulmck@kernel.org> To: Will Deacon <will@kernel.org> Cc: Naresh Kamboju <naresh.kamboju@linaro.org>, rcu@vger.kernel.org, open list <linux-kernel@vger.kernel.org>, Linux-Next Mailing List <linux-next@vger.kernel.org>, lkft-triage@lists.linaro.org, Peter Zijlstra <peterz@infradead.org>, Steven Rostedt <rostedt@goodmis.org>, Ingo Molnar <mingo@kernel.org>, catalin.marinas@arm.com, linux-arm-kernel@lists.infradead.org, vincenzo.frascino@arm.com, mark.rutland@arm.com Subject: Re: rcu-torture: Internal error: Oops: 96000006 Date: Thu, 21 Jan 2021 13:43:14 -0800 Message-ID: <20210121214314.GW2743@paulmck-ThinkPad-P72> (raw) In-Reply-To: <20210121213110.GB23234@willie-the-truck> On Thu, Jan 21, 2021 at 09:31:10PM +0000, Will Deacon wrote: > On Thu, Jan 21, 2021 at 10:55:21AM -0800, Paul E. McKenney wrote: > > On Thu, Jan 21, 2021 at 10:37:21PM +0530, Naresh Kamboju wrote: > > > While running rcu-torture test on qemu_arm64 and arm64 Juno-r2 device > > > the following kernel crash noticed. This started happening from Linux next > > > next-20210111 tag to next-20210121. > > > > > > metadata: > > > git branch: master > > > git repo: https://gitlab.com/Linaro/lkft/mirrors/next/linux-next > > > git describe: next-20210111 > > > kernel-config: https://builds.tuxbuild.com/1muTTn7AfqcWvH5x2Alxifn7EUH/config > > > > > > output log: > > > > > > [ 621.538050] mem_dump_obj() slab test: rcu_torture_stats = > > > ffff0000c0a3ac40, &rhp = ffff800012debe40, rhp = ffff0000c8cba000, &z > > > = ffff8000091ab8e0 > > > [ 621.546662] mem_dump_obj(ZERO_SIZE_PTR): > > > [ 621.546696] Unable to handle kernel NULL pointer dereference at > > > virtual address 0000000000000008 > > [...] > > > Huh. I am relying on virt_addr_valid() rejecting NULL pointers and > > things like ZERO_SIZE_PTR, which is defined as ((void *)16). It looks > > like your configuration rejects NULL as an invalid virtual address, > > but does not reject ZERO_SIZE_PTR. Is this the intent, given that you > > are not allowed to dereference a ZERO_SIZE_PTR? > > > > Adding the ARM64 guys on CC for their thoughts. > > Spooky timing, there was a thread _today_ about that: > > https://lore.kernel.org/r/ecbc7651-82c4-6518-d4a9-dbdbdf833b5b@arm.com Very good, then my workaround (shown below for Naresh's ease of testing) is only a short-term workaround. Yay! ;-) Thanx, Paul ------------------------------------------------------------------------ diff --git a/mm/slab_common.c b/mm/slab_common.c index cefa9ae..a8375d1 100644 --- a/mm/slab_common.c +++ b/mm/slab_common.c @@ -550,7 +550,8 @@ bool kmem_valid_obj(void *object) { struct page *page; - if (!virt_addr_valid(object)) + /* Some arches consider ZERO_SIZE_PTR to be a valid address. */ + if (object < (void *)PAGE_SIZE || !virt_addr_valid(object)) return false; page = virt_to_head_page(object); return PageSlab(page);
next prev parent reply index Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-01-21 17:07 Naresh Kamboju 2021-01-21 18:55 ` Paul E. McKenney 2021-01-21 21:31 ` Will Deacon 2021-01-21 21:43 ` Paul E. McKenney [this message] 2021-01-22 9:51 ` Naresh Kamboju 2021-01-22 15:37 ` Paul E. McKenney 2021-01-22 15:46 ` Naresh Kamboju 2021-01-22 23:23 ` Paul E. McKenney 2021-01-22 10:02 ` Mark Rutland 2021-01-22 11:45 ` Vincenzo Frascino
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20210121214314.GW2743@paulmck-ThinkPad-P72 \ --to=paulmck@kernel.org \ --cc=catalin.marinas@arm.com \ --cc=linux-arm-kernel@lists.infradead.org \ --cc=linux-kernel@vger.kernel.org \ --cc=linux-next@vger.kernel.org \ --cc=lkft-triage@lists.linaro.org \ --cc=mark.rutland@arm.com \ --cc=mingo@kernel.org \ --cc=naresh.kamboju@linaro.org \ --cc=peterz@infradead.org \ --cc=rcu@vger.kernel.org \ --cc=rostedt@goodmis.org \ --cc=vincenzo.frascino@arm.com \ --cc=will@kernel.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
RCU Archive on lore.kernel.org Archives are clonable: git clone --mirror https://lore.kernel.org/rcu/0 rcu/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 rcu rcu/ https://lore.kernel.org/rcu \ rcu@vger.kernel.org public-inbox-index rcu Example config snippet for mirrors Newsgroup available over NNTP: nntp://nntp.lore.kernel.org/org.kernel.vger.rcu AGPL code for this site: git clone https://public-inbox.org/public-inbox.git