From mboxrd@z Thu Jan 1 00:00:00 1970 From: Will Deacon Subject: Re: [RFC PATCH for 5.2 08/10] rseq/selftests: aarch64 code signature: handle big-endian environment Date: Wed, 24 Apr 2019 17:45:38 +0100 Message-ID: <20190424164538.GC18611@fuggles.cambridge.arm.com> References: <20190424152502.14246-1-mathieu.desnoyers@efficios.com> <20190424152502.14246-9-mathieu.desnoyers@efficios.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline In-Reply-To: <20190424152502.14246-9-mathieu.desnoyers@efficios.com> Sender: linux-kernel-owner@vger.kernel.org To: Mathieu Desnoyers Cc: Peter Zijlstra , "Paul E . McKenney" , Boqun Feng , linux-kernel@vger.kernel.org, linux-api@vger.kernel.org, Thomas Gleixner , Andy Lutomirski , Dave Watson , Paul Turner , Andrew Morton , Russell King , Ingo Molnar , "H . Peter Anvin" , Andi Kleen , Chris Lameter , Ben Maurer , Steven Rostedt , Josh Triplett , Linus Torvalds , Catalin Marinas , Michael Kerrisk List-Id: linux-api@vger.kernel.org On Wed, Apr 24, 2019 at 11:25:00AM -0400, Mathieu Desnoyers wrote: > Handle compiling with -mbig-endian on aarch64, which generates binaries > with mixed code vs data endianness (little endian code, big endian > data). > > Else mismatch between code endianness for the generated signatures and > data endianness for the RSEQ_SIG parameter passed to the rseq > registration will trigger application segmentation faults when the > kernel try to abort rseq critical sections. > > Signed-off-by: Mathieu Desnoyers > CC: Peter Zijlstra > CC: Thomas Gleixner > CC: Joel Fernandes > CC: Catalin Marinas > CC: Dave Watson > CC: Will Deacon > CC: Shuah Khan > CC: Andi Kleen > CC: linux-kselftest@vger.kernel.org > CC: "H . Peter Anvin" > CC: Chris Lameter > CC: Russell King > CC: Michael Kerrisk > CC: "Paul E . McKenney" > CC: Paul Turner > CC: Boqun Feng > CC: Josh Triplett > CC: Steven Rostedt > CC: Ben Maurer > CC: linux-api@vger.kernel.org > CC: Andy Lutomirski > CC: Andrew Morton > CC: Linus Torvalds > --- > tools/testing/selftests/rseq/rseq-arm64.h | 17 +++++++++++++++-- > 1 file changed, 15 insertions(+), 2 deletions(-) > > diff --git a/tools/testing/selftests/rseq/rseq-arm64.h b/tools/testing/selftests/rseq/rseq-arm64.h > index b41a2a48e965..200dae9e4208 100644 > --- a/tools/testing/selftests/rseq/rseq-arm64.h > +++ b/tools/testing/selftests/rseq/rseq-arm64.h > @@ -6,7 +6,20 @@ > * (C) Copyright 2018 - Will Deacon > */ > > -#define RSEQ_SIG 0xd428bc00 /* BRK #0x45E0 */ > +/* > + * aarch64 -mbig-endian generates mixed endianness code vs data: > + * little-endian code and big-endian data. Ensure the RSEQ_SIG signature > + * matches code endianness. > + */ > +#define RSEQ_SIG_CODE 0xd428bc00 /* BRK #0x45E0. */ > + > +#ifdef __AARCH64EB__ > +#define RSEQ_SIG_DATA 0x00bc28d4 /* BRK #0x45E0. */ It would be neater to implement swab32 and use that with RSEQ_SIG_CODE, but either way: Acked-by: Will Deacon Will