From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 0E60EC433EF for ; Mon, 10 Jan 2022 10:29:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=AU0l+ahY4UYqkND4dOuLI/IXQ/iivyjXvtoZYPBTz+8=; b=uCBYvokThGvCK4 4ctMtuZ/BcLQZj7a60PgMaQhUwgdLiUtYbToFwvwpeXF9YEKdxThNHCTy+TZHwZsqy5qbu3SM0xJ9 ZyGYmiFLamVb84fOaTvci3qdkzBbWCmiE5OWgL+v38cdcjSTPym2I0AA3Hn8QdvNePGeV/yLzHgcz Q4441yjp1A9nfNMRlLB9oI3aE5z9lZCt49Cc7r310tYPUrF5oowbcpt1JT5Y56HIH1SSZv/jWHa0V 01GudqsDnItM0Pj72BXysr5t0IB7VlL42IS19ndzNeUzj/Au6MRLcU531ZZSmHnOWte2BV+F44uuA LQD4oiH3KoTS+zE5MuEg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1n6rul-00AmQj-Qa; Mon, 10 Jan 2022 10:28:35 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1n6ruh-00AmNS-3n for linux-arm-kernel@lists.infradead.org; Mon, 10 Jan 2022 10:28:32 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 0FED8ED1; Mon, 10 Jan 2022 02:28:28 -0800 (PST) Received: from FVFF77S0Q05N (unknown [10.57.11.128]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 4FD4F3F5A1; Mon, 10 Jan 2022 02:28:26 -0800 (PST) Date: Mon, 10 Jan 2022 10:27:59 +0000 From: Mark Rutland To: Kees Cook Cc: Will Deacon , Peter Zijlstra , Boqun Feng , Catalin Marinas , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linux-hardening@vger.kernel.org Subject: Re: [PATCH] arm64: atomics: Dereference matching size Message-ID: References: <20220107232746.1540130-1-keescook@chromium.org> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20220107232746.1540130-1-keescook@chromium.org> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220110_022831_274533_1265A13A X-CRM114-Status: GOOD ( 22.21 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Hi Kees, On Fri, Jan 07, 2022 at 03:27:46PM -0800, Kees Cook wrote: > When building with -Warray-bounds (which is desired to be enabled > globally), the following warning is generated: > > In file included from ./arch/arm64/include/asm/lse.h:16, > from ./arch/arm64/include/asm/cmpxchg.h:14, > from ./arch/arm64/include/asm/atomic.h:16, > from ./include/linux/atomic.h:7, > from ./include/asm-generic/bitops/atomic.h:5, > from ./arch/arm64/include/asm/bitops.h:25, > from ./include/linux/bitops.h:33, > from ./include/linux/kernel.h:22, > from kernel/printk/printk.c:22: > ./arch/arm64/include/asm/atomic_lse.h:247:9: warning: array subscript 'long unsigned int[0]' is partly outside array bounds of 'atomic_t[1]' [-Warray-bounds] > 247 | asm volatile( \ > | ^~~ > ./arch/arm64/include/asm/atomic_lse.h:266:1: note: in expansion of macro '__CMPXCHG_CASE' > 266 | __CMPXCHG_CASE(w, , acq_, 32, a, "memory") > | ^~~~~~~~~~~~~~ > kernel/printk/printk.c:3606:17: note: while referencing 'printk_cpulock_owner' > 3606 | static atomic_t printk_cpulock_owner = ATOMIC_INIT(-1); > | ^~~~~~~~~~~~~~~~~~~~ > > This is due to the compiler seeing an unsigned long * cast against > something (atomic_t) that is int sized. Replace the cast with the > matching size cast. This results in no change in binary output. Just to check, I assume both GCC and Clang are happy with this applied? I recall that (historically at least) clang would warn about size mismatches for inline assembly and would sometimes require more care. I don't see anythign for which that would matter, but I just want to check. > Cc: Will Deacon > Cc: Peter Zijlstra > Cc: Boqun Feng > Cc: Catalin Marinas > Cc: linux-arm-kernel@lists.infradead.org > Signed-off-by: Kees Cook > --- > arch/arm64/include/asm/atomic_lse.h | 2 +- > arch/arm64/include/asm/cmpxchg.h | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/arch/arm64/include/asm/atomic_lse.h b/arch/arm64/include/asm/atomic_lse.h > index d955ade5df7c..5d460f6b7675 100644 > --- a/arch/arm64/include/asm/atomic_lse.h > +++ b/arch/arm64/include/asm/atomic_lse.h > @@ -249,7 +249,7 @@ __lse__cmpxchg_case_##name##sz(volatile void *ptr, \ > " mov %" #w "[tmp], %" #w "[old]\n" \ > " cas" #mb #sfx "\t%" #w "[tmp], %" #w "[new], %[v]\n" \ > " mov %" #w "[ret], %" #w "[tmp]" \ > - : [ret] "+r" (x0), [v] "+Q" (*(unsigned long *)ptr), \ > + : [ret] "+r" (x0), [v] "+Q" (*(u##sz *)ptr), \ > [tmp] "=&r" (tmp) \ > : [old] "r" (x1), [new] "r" (x2) \ > : cl); \ It might be worth nothing that __ll_sc__cmpxchg_case_##name##sz already uses the same constraint: [v] "+Q" (*(u##sz *)ptr ... since that explains why we only need to update the LSE form and not the LL/SC form, and indicates that this is unlikely to be problematic. Either way: Acked-by: Mark Rutland Thanks, Mark. > diff --git a/arch/arm64/include/asm/cmpxchg.h b/arch/arm64/include/asm/cmpxchg.h > index f9bef42c1411..497acf134d99 100644 > --- a/arch/arm64/include/asm/cmpxchg.h > +++ b/arch/arm64/include/asm/cmpxchg.h > @@ -243,7 +243,7 @@ static inline void __cmpwait_case_##sz(volatile void *ptr, \ > " cbnz %" #w "[tmp], 1f\n" \ > " wfe\n" \ > "1:" \ > - : [tmp] "=&r" (tmp), [v] "+Q" (*(unsigned long *)ptr) \ > + : [tmp] "=&r" (tmp), [v] "+Q" (*(u##sz *)ptr) \ > : [val] "r" (val)); \ > } > > -- > 2.30.2 > _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel