]> git.proxmox.com Git - mirror_ubuntu-disco-kernel.git/commitdiff
selftests: skip seccomp get_metadata test if not real root
authorTycho Andersen <tycho@tycho.ws>
Sat, 19 Jan 2019 00:12:15 +0000 (17:12 -0700)
committerStefan Bader <stefan.bader@canonical.com>
Tue, 14 May 2019 18:55:24 +0000 (20:55 +0200)
BugLink: https://bugs.launchpad.net/bugs/1828410
[ Upstream commit 3aa415dd2128e478ea3225b59308766de0e94d6b ]

The get_metadata() test requires real root, so let's skip it if we're not
real root.

Note that I used XFAIL here because that's what the test does later if
CONFIG_CHEKCKPOINT_RESTORE happens to not be enabled. After looking at the
code, there doesn't seem to be a nice way to skip tests defined as TEST(),
since there's no return code (I tried exit(KSFT_SKIP), but that didn't work
either...). So let's do it this way to be consistent, and easier to fix
when someone comes along and fixes it.

Signed-off-by: Tycho Andersen <tycho@tycho.ws>
Acked-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Shuah Khan <shuah@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Kleber Sacilotto de Souza <kleber.souza@canonical.com>
Signed-off-by: Stefan Bader <stefan.bader@canonical.com>
tools/testing/selftests/seccomp/seccomp_bpf.c

index 7e632b465ab48eea860ab32e2a2cb9b2ea1d0a4f..6d7a81306f8ad37532f6f617a5573b0495c417e7 100644 (file)
@@ -2971,6 +2971,12 @@ TEST(get_metadata)
        struct seccomp_metadata md;
        long ret;
 
+       /* Only real root can get metadata. */
+       if (geteuid()) {
+               XFAIL(return, "get_metadata requires real root");
+               return;
+       }
+
        ASSERT_EQ(0, pipe(pipefd));
 
        pid = fork();