* + selftests-proc-protectionkey-check-in-smpas-test.patch added to mm-nonmm-unstable branch
@ 2023-10-25 20:11 Andrew Morton
0 siblings, 0 replies; only message in thread
From: Andrew Morton @ 2023-10-25 20:11 UTC (permalink / raw)
To: mm-commits, shuah, hughd, adobriyan, swarupkotikalapudi, akpm
The patch titled
Subject: selftests:proc ProtectionKey check in smpas test
has been added to the -mm mm-nonmm-unstable branch. Its filename is
selftests-proc-protectionkey-check-in-smpas-test.patch
This patch will shortly appear at
https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/selftests-proc-protectionkey-check-in-smpas-test.patch
This patch will later appear in the mm-nonmm-unstable branch at
git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
Before you just go and hit "reply", please:
a) Consider who else should be cc'ed
b) Prefer to cc a suitable mailing list as well
c) Ideally: find the original patch on the mailing list and do a
reply-to-all to that, adding suitable additional cc's
*** Remember to use Documentation/process/submit-checklist.rst when testing your code ***
The -mm tree is included into linux-next via the mm-everything
branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
and is updated there every 2-3 working days
------------------------------------------------------
From: Swarup Laxman Kotiaklapudi <swarupkotikalapudi@gmail.com>
Subject: selftests:proc ProtectionKey check in smpas test
Date: Thu, 26 Oct 2023 01:06:27 +0530
Check ProtectionKey field in /proc/*/smaps output, if system supports
page-based memory permissions.
Link: https://lkml.kernel.org/r/20231025193627.316508-1-swarupkotikalapudi@gmail.com
Signed-off-by: Swarup Laxman Kotiaklapudi <swarupkotikalapudi@gmail.com>
Cc: Alexey Dobriyan <adobriyan@gmail.com>
Cc: Hugh Dickins <hughd@google.com>
Cc: Shuah Khan <shuah@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
tools/testing/selftests/proc/proc-empty-vm.c | 38 ++++++++++-------
1 file changed, 23 insertions(+), 15 deletions(-)
--- a/tools/testing/selftests/proc/proc-empty-vm.c~selftests-proc-protectionkey-check-in-smpas-test
+++ a/tools/testing/selftests/proc/proc-empty-vm.c
@@ -37,6 +37,7 @@
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
+#include "../kselftest.h"
#ifdef __amd64__
#define TEST_VSYSCALL
@@ -83,10 +84,7 @@ static const char proc_pid_smaps_vsyscal
"SwapPss: 0 kB\n"
"Locked: 0 kB\n"
"THPeligible: 0\n"
-/*
- * "ProtectionKey:" field is conditional. It is possible to check it as well,
- * but I don't have such machine.
- */
+"ProtectionKey: 0\n"
;
static const char proc_pid_smaps_vsyscall_2[] =
@@ -113,10 +111,7 @@ static const char proc_pid_smaps_vsyscal
"SwapPss: 0 kB\n"
"Locked: 0 kB\n"
"THPeligible: 0\n"
-/*
- * "ProtectionKey:" field is conditional. It is possible to check it as well,
- * but I'm too tired.
- */
+"ProtectionKey: 0\n"
;
static void sigaction_SIGSEGV(int _, siginfo_t *__, void *___)
@@ -241,13 +236,26 @@ static int test_proc_pid_smaps(pid_t pid
} else {
ssize_t rv = read(fd, buf, sizeof(buf));
close(fd);
- if (g_vsyscall == 0) {
- assert(rv == 0);
- } else {
- size_t len = strlen(g_proc_pid_maps_vsyscall);
- /* TODO "ProtectionKey:" */
- assert(rv > len);
- assert(memcmp(buf, g_proc_pid_maps_vsyscall, len) == 0);
+ assert(rv >= 0);
+ assert(rv <= sizeof(buf));
+ if (g_vsyscall != 0) {
+ int pkey = pkey_alloc(0, 0);
+
+ if (pkey < 0) {
+ size_t len = strlen(g_proc_pid_maps_vsyscall);
+
+ assert(rv > len);
+ assert(memcmp(buf, g_proc_pid_maps_vsyscall, len) == 0);
+ } else {
+ pkey_free(pkey);
+ static const char * const S[] = {
+ "ProtectionKey: 0\n"
+ };
+ int i;
+
+ for (i = 0; i < ARRAY_SIZE(S); i++)
+ assert(memmem(buf, rv, S[i], strlen(S[i])));
+ }
}
return EXIT_SUCCESS;
}
_
Patches currently in -mm which might be from swarupkotikalapudi@gmail.com are
selftests-proc-protectionkey-check-in-smpas-test.patch
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2023-10-25 20:11 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-25 20:11 + selftests-proc-protectionkey-check-in-smpas-test.patch added to mm-nonmm-unstable branch Andrew Morton
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.