aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2023-08-05 00:04:33 +0100
committerAndreas K. Hüttel <dilfridge@gentoo.org>2023-09-15 22:43:03 +0200
commited51a5a6ce550304cccbd654db6f6f225d17ae2a (patch)
treee6a30e4e54e26bdc23557eac4d9bc2e6ae2ba33a /sysdeps/unix/sysv
parentsysdeps: tst-bz21269: fix test parameter (diff)
downloadglibc-ed51a5a6ce550304cccbd654db6f6f225d17ae2a.tar.gz
glibc-ed51a5a6ce550304cccbd654db6f6f225d17ae2a.tar.bz2
glibc-ed51a5a6ce550304cccbd654db6f6f225d17ae2a.zip
sysdeps: tst-bz21269: handle ENOSYS & skip appropriately
SYS_modify_ldt requires CONFIG_MODIFY_LDT_SYSCALL to be set in the kernel, which some distributions may disable for hardening. Check if that's the case (unset) and mark the test as UNSUPPORTED if so. Reviewed-by: DJ Delorie <dj@redhat.com> Signed-off-by: Sam James <sam@gentoo.org> (cherry picked from commit 652b9fdb77d9fd056d4dd26dad2c14142768ab49) (cherry picked from commit ad9b8399537670a990572c4b0c4da5411e3b68cf)
Diffstat (limited to 'sysdeps/unix/sysv')
-rw-r--r--sysdeps/unix/sysv/linux/i386/tst-bz21269.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/i386/tst-bz21269.c b/sysdeps/unix/sysv/linux/i386/tst-bz21269.c
index f508ef8f16..28f5359bea 100644
--- a/sysdeps/unix/sysv/linux/i386/tst-bz21269.c
+++ b/sysdeps/unix/sysv/linux/i386/tst-bz21269.c
@@ -52,7 +52,16 @@ xset_thread_area (struct user_desc *u_info)
static void
xmodify_ldt (int func, const void *ptr, unsigned long bytecount)
{
- TEST_VERIFY_EXIT (syscall (SYS_modify_ldt, func, ptr, bytecount) == 0);
+ long ret = syscall (SYS_modify_ldt, func, ptr, bytecount);
+
+ if (ret == -1)
+ {
+ if (errno == ENOSYS)
+ FAIL_UNSUPPORTED ("modify_ldt not supported");
+ FAIL_EXIT1 ("modify_ldt failed (errno=%d)", errno);
+ }
+
+ return 0;
}
static int