arm64: mte: ptrace: Add PTRACE_{PEEK,POKE}MTETAGS support
authorCatalin Marinas <catalin.marinas@arm.com>
Mon, 30 Mar 2020 09:29:38 +0000 (10:29 +0100)
committerCatalin Marinas <catalin.marinas@arm.com>
Fri, 4 Sep 2020 11:46:07 +0000 (12:46 +0100)
commit18ddbaa02b7a64f4cf3e7e3d4b78b8b70481a17b
tree4c04afc8aaffa97f4e571209baf05af5752e8aa8
parent93f067f6caf5941cc730e99ce72042304e0e6ff5
arm64: mte: ptrace: Add PTRACE_{PEEK,POKE}MTETAGS support

Add support for bulk setting/getting of the MTE tags in a tracee's
address space at 'addr' in the ptrace() syscall prototype. 'data' points
to a struct iovec in the tracer's address space with iov_base
representing the address of a tracer's buffer of length iov_len. The
tags to be copied to/from the tracer's buffer are stored as one tag per
byte.

On successfully copying at least one tag, ptrace() returns 0 and updates
the tracer's iov_len with the number of tags copied. In case of error,
either -EIO or -EFAULT is returned, trying to follow the ptrace() man
page.

Note that the tag copying functions are not performance critical,
therefore they lack optimisations found in typical memory copy routines.

Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Cc: Will Deacon <will@kernel.org>
Cc: Alan Hayward <Alan.Hayward@arm.com>
Cc: Luis Machado <luis.machado@linaro.org>
Cc: Omair Javaid <omair.javaid@linaro.org>
arch/arm64/include/asm/mte.h
arch/arm64/include/uapi/asm/ptrace.h
arch/arm64/kernel/mte.c
arch/arm64/kernel/ptrace.c
arch/arm64/lib/mte.S