lkml.org 
[lkml]   [2022]   [Jan]   [27]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH V8 30/44] mm/pkeys: Test setting a PKS key in a custom fault callback
Date
From: Ira Weiny <ira.weiny@intel.com>

A common use case for the custom fault callbacks will be for the
callback to warn of the violation and relax the permissions rather than
crash the kernel.

An example of this is for non-security use cases which may want to relax
the permissions and flag the invalid access rather than strictly crash
the kernel. In this case the user defines a callback which detects this
condition, reports the error, and allows for continued operation by
handling the fault through the pks_update_exception().

Add a test which does this.

$ echo 5 > /sys/kernel/debug/x86/run_pks
$ cat /sys/kernel/debug/x86/run_pks
PASS

Signed-off-by: Ira Weiny <ira.weiny@intel.com>

---
Changes for V8
New test developed just to double check for regressions while
reworking the code.
---
arch/x86/include/asm/pks.h | 2 ++
arch/x86/mm/pkeys.c | 6 +++-
lib/pks/pks_test.c | 74 ++++++++++++++++++++++++++++++++++++++
3 files changed, 81 insertions(+), 1 deletion(-)

diff --git a/arch/x86/include/asm/pks.h b/arch/x86/include/asm/pks.h
index 55541bb64d08..e09934c540e2 100644
--- a/arch/x86/include/asm/pks.h
+++ b/arch/x86/include/asm/pks.h
@@ -34,6 +34,8 @@ static inline bool pks_handle_key_fault(struct pt_regs *regs,

bool pks_test_callback(struct pt_regs *regs);
#define __static_or_pks_test
+bool pks_test_fault_callback(struct pt_regs *regs, unsigned long address,
+ bool write);

#else /* !CONFIG_PKS_TEST */

diff --git a/arch/x86/mm/pkeys.c b/arch/x86/mm/pkeys.c
index 531cf6c74ad7..f30ac8215785 100644
--- a/arch/x86/mm/pkeys.c
+++ b/arch/x86/mm/pkeys.c
@@ -239,7 +239,11 @@ __static_or_pks_test DEFINE_PER_CPU(u32, pkrs_cache);
* #endif
* };
*/
-static const pks_key_callback pks_key_callbacks[PKS_KEY_NR_CONSUMERS] = { 0 };
+static const pks_key_callback pks_key_callbacks[PKS_KEY_NR_CONSUMERS] = {
+#ifdef CONFIG_PKS_TEST
+ [PKS_KEY_TEST] = pks_test_fault_callback,
+#endif
+};

static bool pks_call_fault_callback(struct pt_regs *regs, unsigned long address,
bool write, u16 key)
diff --git a/lib/pks/pks_test.c b/lib/pks/pks_test.c
index 008a1079579d..1528df0bb283 100644
--- a/lib/pks/pks_test.c
+++ b/lib/pks/pks_test.c
@@ -19,6 +19,7 @@
* * 3 Check the context armed in '2' to ensure the MSR value was preserved
* * 4 Test that the exception thread PKRS remains independent of the
* interrupted threads PKRS
+ * * 5 Test setting a key to RD/WR in a fault callback to abandon a key
* * 8 Loop through all CPUs, report the msr, and check against the default.
* * 9 Set up and fault on a PKS protected page.
*
@@ -56,6 +57,7 @@
#define ARM_CTX_SWITCH 2
#define CHECK_CTX_SWITCH 3
#define RUN_EXCEPTION 4
+#define RUN_FAULT_ABANDON 5
#define RUN_CRASH_TEST 9

DECLARE_PER_CPU(u32, pkrs_cache);
@@ -519,6 +521,75 @@ static void check_ctx_switch(struct file *file)
}
}

+struct {
+ struct pks_test_ctx *ctx;
+ void *test_page;
+ bool armed;
+ bool callback_seen;
+} fault_callback_ctx;
+
+bool pks_test_fault_callback(struct pt_regs *regs, unsigned long address,
+ bool write)
+{
+ if (!fault_callback_ctx.armed)
+ return false;
+
+ fault_callback_ctx.armed = false;
+ fault_callback_ctx.callback_seen = true;
+
+ pks_update_exception(regs, fault_callback_ctx.ctx->pkey, 0);
+
+ return true;
+}
+
+static bool run_fault_clear_test(void)
+{
+ struct pks_test_ctx *ctx;
+ void *test_page;
+ bool rc = true;
+
+ ctx = alloc_ctx(PKS_KEY_TEST);
+ if (IS_ERR(ctx))
+ return false;
+
+ test_page = alloc_test_page(ctx->pkey);
+ if (!test_page) {
+ pr_err("Failed to vmalloc page???\n");
+ free_ctx(ctx);
+ return false;
+ }
+
+ test_armed_key = PKS_KEY_TEST;
+ fault_callback_ctx.ctx = ctx;
+ fault_callback_ctx.test_page = test_page;
+ fault_callback_ctx.armed = true;
+ fault_callback_ctx.callback_seen = false;
+
+ pks_mk_noaccess(test_armed_key);
+
+ /* fault */
+ memcpy(test_page, ctx->data, 8);
+
+ if (!fault_callback_ctx.callback_seen) {
+ pr_err("Failed to see the callback\n");
+ rc = false;
+ goto done;
+ }
+
+ /* no fault */
+ fault_callback_ctx.callback_seen = false;
+ memcpy(test_page, ctx->data, 8);
+
+ if (fault_caught() || fault_callback_ctx.callback_seen) {
+ pr_err("The key failed to be set RD/WR in the callback\n");
+ return false;
+ }
+
+done:
+ free_ctx(ctx);
+ return rc;
+}
+
static ssize_t pks_read_file(struct file *file, char __user *user_buf,
size_t count, loff_t *ppos)
{
@@ -572,6 +643,9 @@ static ssize_t pks_write_file(struct file *file, const char __user *user_buf,
case RUN_EXCEPTION:
last_test_pass = run_exception_test();
break;
+ case RUN_FAULT_ABANDON:
+ last_test_pass = run_fault_clear_test();
+ break;
default:
last_test_pass = false;
break;
--
2.31.1
\
 
 \ /
  Last update: 2022-01-27 18:59    [W:0.838 / U:0.096 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site