* [LTP] [PATCH] getrlimit03: Allow for missing getrlimit syscall at runtime
@ 2018-12-10 13:19 Richard Palethorpe
2018-12-11 8:57 ` Petr Vorel
0 siblings, 1 reply; 2+ messages in thread
From: Richard Palethorpe @ 2018-12-10 13:19 UTC (permalink / raw)
To: ltp
It appears that __NR_getrlimit can be missing or disabled in the kernel. For
example this appears to be the case on the PPC64le platform. So this changes
the test to return TCONF under these circumstances as this system call is
redundant and libc can implement it in terms of other calls.
Signed-off-by: Richard Palethorpe <rpalethorpe@suse.com>
---
It also occurred to me that __NR_getrlimit may not be defined in user land for
some very new architectures like RISC-V. I'm not sure exactly what would
happen in that case or if it is likely.
testcases/kernel/syscalls/getrlimit/getrlimit03.c | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/testcases/kernel/syscalls/getrlimit/getrlimit03.c b/testcases/kernel/syscalls/getrlimit/getrlimit03.c
index 376ef7241..f470c0b3b 100644
--- a/testcases/kernel/syscalls/getrlimit/getrlimit03.c
+++ b/testcases/kernel/syscalls/getrlimit/getrlimit03.c
@@ -79,6 +79,8 @@ static int getrlimit_long(int resource, struct rlimit_long *rlim)
{
return syscall(__NR_getrlimit, resource, rlim);
}
+
+static int seen_getrlimit_nosys = 0;
#endif
static int compare_retval(int resource, int ret_u64, int errno_u64,
@@ -159,10 +161,20 @@ static void run(unsigned int resource)
return;
#if SIGNED_GETRLIMIT
+ if (seen_getrlimit_nosys)
+ goto EXIT;
+
errno = 0;
ret_l = getrlimit_long(resource, &rlim_l);
errno_l = errno;
+ if (errno_l == ENOSYS) {
+ tst_res(TCONF,
+ "__NR_getrlimit(%d) is not present", __NR_getrlimit);
+ seen_getrlimit_nosys = 1;
+ return;
+ }
+
if (compare_retval(resource, ret_u64, errno_u64, ret_l, errno_l,
"__NR_getrlimit") ||
compare_u64_long(resource, rlim_u64.rlim_cur, rlim_l.rlim_cur,
@@ -172,6 +184,7 @@ static void run(unsigned int resource)
return;
#endif
+EXIT:
tst_res(TPASS, "getrlimit(%u) was consistent during all syscalls",
resource);
}
--
2.19.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [LTP] [PATCH] getrlimit03: Allow for missing getrlimit syscall at runtime
2018-12-10 13:19 [LTP] [PATCH] getrlimit03: Allow for missing getrlimit syscall at runtime Richard Palethorpe
@ 2018-12-11 8:57 ` Petr Vorel
0 siblings, 0 replies; 2+ messages in thread
From: Petr Vorel @ 2018-12-11 8:57 UTC (permalink / raw)
To: ltp
Hi Richard,
> It appears that __NR_getrlimit can be missing or disabled in the kernel. For
> example this appears to be the case on the PPC64le platform. So this changes
> the test to return TCONF under these circumstances as this system call is
> redundant and libc can implement it in terms of other calls.
> Signed-off-by: Richard Palethorpe <rpalethorpe@suse.com>
Reviewed-by: Petr Vorel <pvorel@suse.cz>
> ---
...
> #if SIGNED_GETRLIMIT
> + if (seen_getrlimit_nosys)
> + goto EXIT;
> +
> errno = 0;
> ret_l = getrlimit_long(resource, &rlim_l);
> errno_l = errno;
> + if (errno_l == ENOSYS) {
> + tst_res(TCONF,
> + "__NR_getrlimit(%d) is not present", __NR_getrlimit);
> + seen_getrlimit_nosys = 1;
> + return;
> + }
> +
> if (compare_retval(resource, ret_u64, errno_u64, ret_l, errno_l,
> "__NR_getrlimit") ||
> compare_u64_long(resource, rlim_u64.rlim_cur, rlim_l.rlim_cur,
> @@ -172,6 +184,7 @@ static void run(unsigned int resource)
> return;
> #endif
> +EXIT:
Minor issue: EXIT should be before #endif (otherwise it issues warning on !SIGNED_GETRLIMIT.
> tst_res(TPASS, "getrlimit(%u) was consistent during all syscalls",
> resource);
> }
Kind regards,
Petr
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2018-12-11 8:57 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-12-10 13:19 [LTP] [PATCH] getrlimit03: Allow for missing getrlimit syscall at runtime Richard Palethorpe
2018-12-11 8:57 ` Petr Vorel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox