From: Cyril Hrubis <chrubis@suse.cz>
To: Florian Schmaus <florian.schmaus@codasip.com>
Cc: ltp@lists.linux.it
Subject: Re: [LTP] [PATCH v2] sigrelse01: Fix out-of-bounds read when invoking write()
Date: Fri, 25 Jul 2025 15:11:15 +0200 [thread overview]
Message-ID: <aIOCcxpB9LdcHRW1@yuki.lan> (raw)
In-Reply-To: <20250716072846.600659-1-florian.schmaus@codasip.com>
Hi!
> Signed-off-by: Florian Schmaus <florian.schmaus@codasip.com>
> ---
>
> Changes in v2:
> - remove unnecessary '\n' in tst_resm
>
> testcases/kernel/syscalls/sigrelse/sigrelse01.c | 14 ++++++++------
> 1 file changed, 8 insertions(+), 6 deletions(-)
>
> diff --git a/testcases/kernel/syscalls/sigrelse/sigrelse01.c b/testcases/kernel/syscalls/sigrelse/sigrelse01.c
> index 95754212053e..68d69c3ef5e7 100644
> --- a/testcases/kernel/syscalls/sigrelse/sigrelse01.c
> +++ b/testcases/kernel/syscalls/sigrelse/sigrelse01.c
> @@ -486,12 +486,14 @@ static void child(void)
> * then PASS, otherwise FAIL.
> */
>
> - if (exit_val == EXIT_OK) {
> - (void)memcpy(note, (char *)sig_array, sizeof(sig_array));
> - }
> -
> /* send note to parent and exit */
> - if (write_pipe(pipe_fd[1], note) < 0) {
> + if (exit_val == EXIT_OK) {
> + if (write(pipe_fd[1], sig_array, sizeof(sig_array)) < 0) {
> + tst_resm(TBROK, "write() pipe failed. error:%d %s.", errno, strerror(errno));
^
use | TERRNO instead of printing the
errno manually here.
> + exit(WRITE_BROK);
> + }
> + }
> + else if (write_pipe(pipe_fd[1], note) < 0) {
We follow LKML coding style so the proper way to write this is:
} else if (...) {
...
}
Other than these two minor things the patch looks fine.
--
Cyril Hrubis
chrubis@suse.cz
--
Mailing list info: https://lists.linux.it/listinfo/ltp
prev parent reply other threads:[~2025-07-25 13:10 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-16 7:28 [LTP] [PATCH v2] sigrelse01: Fix out-of-bounds read when invoking write() Florian Schmaus via ltp
2025-07-17 16:08 ` Wei Gao via ltp
2025-07-25 13:11 ` Cyril Hrubis [this message]
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=aIOCcxpB9LdcHRW1@yuki.lan \
--to=chrubis@suse.cz \
--cc=florian.schmaus@codasip.com \
--cc=ltp@lists.linux.it \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox