From: Avinesh Kumar <akumar@suse.de>
To: ltp@lists.linux.it
Subject: [LTP] [PATCH] unlink09: Fix open syscall flags
Date: Mon, 3 Jun 2024 14:46:52 +0200 [thread overview]
Message-ID: <20240603124653.31967-1-akumar@suse.de> (raw)
In-Reply-To: <CAJCsO8fTwOsVwhCdBksStaPVjXHBi8m3g+_b-ZAnKByUR3cqyA@mail.gmail.com>
In the SAFE_OPEN() calls, we missed to include any of the mandatory
flags for open syscall: O_RDONLY, O_WRONLY, or O_RDWR
Fixes: 2cf78f47a6 (unlink: Add error tests for EPERM and EROFS)
Signed-off-by: Avinesh Kumar <akumar@suse.de>
---
testcases/kernel/syscalls/unlink/unlink09.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/testcases/kernel/syscalls/unlink/unlink09.c b/testcases/kernel/syscalls/unlink/unlink09.c
index cc4b4a07e..405deb05f 100644
--- a/testcases/kernel/syscalls/unlink/unlink09.c
+++ b/testcases/kernel/syscalls/unlink/unlink09.c
@@ -43,12 +43,12 @@ static void setup(void)
{
int attr;
- fd_immutable = SAFE_OPEN(TEST_EPERM_IMMUTABLE, O_CREAT, 0600);
+ fd_immutable = SAFE_OPEN(TEST_EPERM_IMMUTABLE, O_RDWR | O_CREAT, 0600);
SAFE_IOCTL(fd_immutable, FS_IOC_GETFLAGS, &attr);
attr |= FS_IMMUTABLE_FL;
SAFE_IOCTL(fd_immutable, FS_IOC_SETFLAGS, &attr);
- fd_append_only = SAFE_OPEN(TEST_EPERM_APPEND_ONLY, O_CREAT, 0600);
+ fd_append_only = SAFE_OPEN(TEST_EPERM_APPEND_ONLY, O_RDWR | O_CREAT, 0600);
SAFE_IOCTL(fd_append_only, FS_IOC_GETFLAGS, &attr);
attr |= FS_APPEND_FL;
SAFE_IOCTL(fd_append_only, FS_IOC_SETFLAGS, &attr);
@@ -79,7 +79,7 @@ static void verify_unlink(unsigned int i)
/* If unlink() succeeded unexpectedly, test file should be restored. */
if (!TST_RET) {
if (tc->fd) {
- *(tc->fd) = SAFE_OPEN(tc->filename, O_CREAT, 0600);
+ *(tc->fd) = SAFE_OPEN(tc->filename, O_RDWR | O_CREAT, 0600);
if (tc->flag) {
SAFE_IOCTL(*(tc->fd), FS_IOC_GETFLAGS, &attr);
attr |= tc->flag;
--
2.45.1
--
Mailing list info: https://lists.linux.it/listinfo/ltp
next prev parent reply other threads:[~2024-06-03 12:47 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-01 19:51 [LTP] [PATCH] unlink09: Fix open syscall flags Avinesh Kumar
2024-06-03 6:29 ` Sebastian Chlad
2024-06-03 12:46 ` Avinesh Kumar [this message]
2024-06-03 13:48 ` Andrea Cervesato via ltp
2024-06-03 14:15 ` Sebastian Chlad
2024-06-05 7:11 ` Petr Vorel
2024-06-05 7:37 ` Andrea Cervesato via ltp
2024-06-05 13:23 ` Petr Vorel
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=20240603124653.31967-1-akumar@suse.de \
--to=akumar@suse.de \
--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