summaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/powerpc/mm/prot_sao.c
diff options
context:
space:
mode:
authorMichael Ellerman <mpe@ellerman.id.au>2016-07-11 15:25:18 +1000
committerMichael Ellerman <mpe@ellerman.id.au>2016-07-14 20:26:25 +1000
commit24af8c5a52a70bbfd275f59836feadd9b9ebc83b (patch)
tree1a53bee7a96f8e15f542bc6f69ab6c0ebdb298ae /tools/testing/selftests/powerpc/mm/prot_sao.c
parente0ddf7a24558b356d5cf5ecc12cb4e305c800953 (diff)
downloadlinux-stable-24af8c5a52a70bbfd275f59836feadd9b9ebc83b.tar.gz
linux-stable-24af8c5a52a70bbfd275f59836feadd9b9ebc83b.tar.bz2
linux-stable-24af8c5a52a70bbfd275f59836feadd9b9ebc83b.zip
selftests/powerpc: Add a test for PROT_SAO
PROT_SAO is a powerpc-specific flag to mmap(), and we rely on arch specific logic to allow it to be passed to mmap(). Add a small test to ensure mmap() accepts PROT_SAO. We don't have a good way to test that it actually causes the mapping to be created with the right flags, so for now we just touch the mapping so it's faulted in. In future we might be able to do something better. Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'tools/testing/selftests/powerpc/mm/prot_sao.c')
-rw-r--r--tools/testing/selftests/powerpc/mm/prot_sao.c42
1 files changed, 42 insertions, 0 deletions
diff --git a/tools/testing/selftests/powerpc/mm/prot_sao.c b/tools/testing/selftests/powerpc/mm/prot_sao.c
new file mode 100644
index 000000000000..611530d43fa9
--- /dev/null
+++ b/tools/testing/selftests/powerpc/mm/prot_sao.c
@@ -0,0 +1,42 @@
+/*
+ * Copyright 2016, Michael Ellerman, IBM Corp.
+ * Licensed under GPLv2.
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <sys/mman.h>
+
+#include <asm/cputable.h>
+
+#include "utils.h"
+
+#define SIZE (64 * 1024)
+
+int test_prot_sao(void)
+{
+ char *p;
+
+ /* 2.06 or later should support SAO */
+ SKIP_IF(!have_hwcap(PPC_FEATURE_ARCH_2_06));
+
+ /*
+ * Ensure we can ask for PROT_SAO.
+ * We can't really verify that it does the right thing, but at least we
+ * confirm the kernel will accept it.
+ */
+ p = mmap(NULL, SIZE, PROT_READ | PROT_WRITE | PROT_SAO,
+ MAP_ANONYMOUS | MAP_PRIVATE, -1, 0);
+ FAIL_IF(p == MAP_FAILED);
+
+ /* Write to the mapping, to at least cause a fault */
+ memset(p, 0xaa, SIZE);
+
+ return 0;
+}
+
+int main(void)
+{
+ return test_harness(test_prot_sao, "prot-sao");
+}