From: Richard Palethorpe <rpalethorpe@suse.de>
To: Wei Gao <wegao@suse.com>
Cc: ltp@lists.linux.it
Subject: Re: [LTP] [PATCH v4] clone302: Fix short size test
Date: Wed, 06 Sep 2023 08:55:51 +0100 [thread overview]
Message-ID: <874jk7g264.fsf@suse.de> (raw)
In-Reply-To: <20230905101444.3365-1-wegao@suse.com>
Hello,
Wei Gao via ltp <ltp@lists.linux.it> writes:
> Signed-off-by: Wei Gao <wegao@suse.com>
> ---
> include/lapi/sched.h | 11 +++++++++++
> testcases/kernel/syscalls/clone3/clone302.c | 5 ++++-
> 2 files changed, 15 insertions(+), 1 deletion(-)
>
> diff --git a/include/lapi/sched.h b/include/lapi/sched.h
> index ac766efc5..26fdb628d 100644
> --- a/include/lapi/sched.h
> +++ b/include/lapi/sched.h
> @@ -60,6 +60,17 @@ struct clone_args {
> uint64_t __attribute__((aligned(8))) cgroup;
> };
>
> +struct clone_args_minimal {
> + uint64_t __attribute__((aligned(8))) flags;
> + uint64_t __attribute__((aligned(8))) pidfd;
> + uint64_t __attribute__((aligned(8))) child_tid;
> + uint64_t __attribute__((aligned(8))) parent_tid;
> + uint64_t __attribute__((aligned(8))) exit_signal;
> + uint64_t __attribute__((aligned(8))) stack;
> + uint64_t __attribute__((aligned(8))) stack_size;
> + uint64_t __attribute__((aligned(8))) tls;
> +};
> +
> static inline int clone3(struct clone_args *args, size_t size)
> {
> return tst_syscall(__NR_clone3, args, size);
> diff --git a/testcases/kernel/syscalls/clone3/clone302.c b/testcases/kernel/syscalls/clone3/clone302.c
> index b1b4ccebb..9cbf2d58e 100644
> --- a/testcases/kernel/syscalls/clone3/clone302.c
> +++ b/testcases/kernel/syscalls/clone3/clone302.c
> @@ -12,6 +12,7 @@
> #define _GNU_SOURCE
>
> #include <stdlib.h>
> +#include <assert.h>
>
> #include "tst_test.h"
> #include "lapi/sched.h"
> @@ -34,7 +35,7 @@ static struct tcase {
> } tcases[] = {
> {"invalid args", &invalid_args, sizeof(*valid_args), 0, NULL, SIGCHLD, 0, 0, 0, EFAULT},
> {"zero size", &valid_args, 0, 0, NULL, SIGCHLD, 0, 0, 0, EINVAL},
> - {"short size", &valid_args, sizeof(*valid_args) - 1, 0, NULL, SIGCHLD, 0, 0, 0, EINVAL},
> + {"short size", &valid_args, sizeof(struct clone_args_minimal) - 1, 0, NULL, SIGCHLD, 0, 0, 0, EINVAL},
> {"extra size", &valid_args, sizeof(*valid_args) + 1, 0, NULL, SIGCHLD, 0, 0, 0, EFAULT},
> {"sighand-no-VM", &valid_args, sizeof(*valid_args), CLONE_SIGHAND, NULL, SIGCHLD, 0, 0, 0, EINVAL},
> {"thread-no-sighand", &valid_args, sizeof(*valid_args), CLONE_THREAD, NULL, SIGCHLD, 0, 0, 0, EINVAL},
> @@ -59,6 +60,8 @@ static void setup(void)
> {
> clone3_supported_by_kernel();
>
> + assert(sizeof(struct clone_args_minimal) == 64);
Sorry I mean with TST_EXP_EQ_SZ or just an if statement followed by
tst_brk. The stdlib assert macro will produce a signal on failure and it
will look messy.
> +
> void *p = tst_get_bad_addr(NULL);
>
> invalid_args = p;
> --
> 2.35.3
--
Thank you,
Richard.
--
Mailing list info: https://lists.linux.it/listinfo/ltp
next prev parent reply other threads:[~2023-09-06 8:02 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-02 5:56 [LTP] [PATCH v1] clone302: Fix short size test Wei Gao via ltp
2023-09-02 7:47 ` [LTP] [PATCH v2] " Wei Gao via ltp
2023-09-04 7:48 ` Richard Palethorpe
2023-09-04 8:52 ` [LTP] [PATCH v3] " Wei Gao via ltp
2023-09-05 8:40 ` Richard Palethorpe
2023-09-05 10:14 ` [LTP] [PATCH v4] " Wei Gao via ltp
2023-09-06 7:55 ` Richard Palethorpe [this message]
2023-09-07 10:01 ` [LTP] [PATCH v5] " Wei Gao via ltp
2023-09-07 11:11 ` Richard Palethorpe
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=874jk7g264.fsf@suse.de \
--to=rpalethorpe@suse.de \
--cc=ltp@lists.linux.it \
--cc=wegao@suse.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.