Re: [PATCH v7 1/2] arm64: Define Documentation/arm64/tagged-address-abi.rst
From: Dave Martin <Dave.Martin@arm.com>
Date: 2019-08-13 11:10:09
Also in:
linux-arch, linux-doc
On Mon, Aug 12, 2019 at 06:36:12PM +0100, Catalin Marinas wrote:
On Fri, Aug 09, 2019 at 07:10:18AM -0700, Dave Hansen wrote:quoted
On 8/8/19 10:27 AM, Catalin Marinas wrote:quoted
On Wed, Aug 07, 2019 at 01:38:16PM -0700, Dave Hansen wrote:quoted
Also, shouldn't this be converted over to an arch_prctl()?What do you mean by arch_prctl()? We don't have such thing, apart from maybe arch_prctl_spec_ctrl_*(). We achieve the same thing with the {SET,GET}_TAGGED_ADDR_CTRL macros. They could be renamed to arch_prctl_tagged_addr_{set,get} or something but I don't see much point.Silly me. We have an x86-specific: SYSCALL_DEFINE2(arch_prctl, int , option, unsigned long , arg2) I guess there's no ARM equivalent so you're stuck with the generic one.quoted
What would be better (for a separate patch series) is to clean up sys_prctl() and move the arch-specific options into separate arch_prctl() under arch/*/kernel/. But it's not really for this series.I think it does make sense for truly arch-specific features to stay out of the arch-generic prctl(). Yes, I know I've personally violated this in the past. :)Maybe Dave M could revive his prctl() clean-up patches which moves the arch specific cases to the corresponding arch/*/ code
I'll try to take a look at it.
quoted
quoted
quoted
What is the scope of these prctl()'s? Are they thread-scoped or process-scoped? Can two threads in the same process run with different tagging ABI modes?Good point. They are thread-scoped and this should be made clear in the doc. Two threads can have different modes. The expectation is that this is invoked early during process start (by the dynamic loader or libc init) while in single-thread mode and subsequent threads will inherit the same mode. However, other uses are possible.If that's the expectation, it would be really nice to codify it. Basically, you can't enable the feature if another thread is already been forked off.Well, that's my expectation but I'm not a userspace developer. I don't think there is any good reason to prevent it. It doesn't cost us anything to support in the kernel, other than making the documentation clearer.
This came up for SVE and eventually we didn't bother, partly because the kernel doesn't fully know what userspace is trying to do, in general. If userspace has some kind of worker threads that run specific code, they could legitimately interface differently with the kernel compared with, say, the main thread. This model already exists for e.g., seccomp. In any case, I think it's not up to the kernel to dictate how user runtimes initialise themselves. [...] Cheers ---Dave _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel