diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-12-09 09:49:32 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-12-09 09:49:32 +0100 |
commit | e3e589829d16af9f7e73c7b70f74f3c5d5003e45 (patch) | |
tree | f52c82410e4faed193d05dcf28c2586d6f83de16 /sysdeps/unix/sysv/linux/tst-rseq-disable.c | |
parent | 1d350aa06091211863e41169729cee1bca39f72f (diff) | |
download | glibc-e3e589829d16af9f7e73c7b70f74f3c5d5003e45.tar.gz glibc-e3e589829d16af9f7e73c7b70f74f3c5d5003e45.tar.xz glibc-e3e589829d16af9f7e73c7b70f74f3c5d5003e45.zip |
nptl: Add glibc.pthread.rseq tunable to control rseq registration
This tunable allows applications to register the rseq area instead of glibc. Reviewed-by: Szabolcs Nagy <szabolcs.nagy@arm.com> Reviewed-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
Diffstat (limited to 'sysdeps/unix/sysv/linux/tst-rseq-disable.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/tst-rseq-disable.c | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/tst-rseq-disable.c b/sysdeps/unix/sysv/linux/tst-rseq-disable.c new file mode 100644 index 0000000000..000e351872 --- /dev/null +++ b/sysdeps/unix/sysv/linux/tst-rseq-disable.c @@ -0,0 +1,89 @@ +/* Test disabling of rseq registration via tunable. + Copyright (C) 2021 Free Software Foundation, Inc. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, see + <https://www.gnu.org/licenses/>. */ + +#include <errno.h> +#include <stdio.h> +#include <support/check.h> +#include <support/namespace.h> +#include <support/xthread.h> +#include <sysdep.h> +#include <unistd.h> + +#ifdef RSEQ_SIG + +/* Check that rseq can be registered and has not been taken by glibc. */ +static void +check_rseq_disabled (void) +{ + struct pthread *pd = THREAD_SELF; + TEST_COMPARE ((int) pd->rseq_area.cpu_id, RSEQ_CPU_ID_REGISTRATION_FAILED); + + int ret = syscall (__NR_rseq, &pd->rseq_area, sizeof (pd->rseq_area), + 0, RSEQ_SIG); + if (ret == 0) + { + ret = syscall (__NR_rseq, &pd->rseq_area, sizeof (pd->rseq_area), + RSEQ_FLAG_UNREGISTER, RSEQ_SIG); + TEST_COMPARE (ret, 0); + pd->rseq_area.cpu_id = RSEQ_CPU_ID_REGISTRATION_FAILED; + } + else + { + TEST_VERIFY (errno != -EINVAL); + TEST_VERIFY (errno != -EBUSY); + } +} + +static void * +thread_func (void *ignored) +{ + check_rseq_disabled (); + return NULL; +} + +static void +proc_func (void *ignored) +{ + check_rseq_disabled (); +} + +static int +do_test (void) +{ + puts ("info: checking main thread"); + check_rseq_disabled (); + + puts ("info: checking main thread (2)"); + check_rseq_disabled (); + + puts ("info: checking new thread"); + xpthread_join (xpthread_create (NULL, thread_func, NULL)); + + puts ("info: checking subprocess"); + support_isolate_in_subprocess (proc_func, NULL); + + return 0; +} +#else /* !RSEQ_SIG */ +static int +do_test (void) +{ + FAIL_UNSUPPORTED ("glibc does not define RSEQ_SIG, skipping test"); +} +#endif + +#include <support/test-driver.c> |