[LTP] [PATCH v4 4/8] Cleanup mmap17 test
Andrea Cervesato
andrea.cervesato@suse.de
Thu Mar 13 14:03:59 CET 2025
From: Andrea Cervesato <andrea.cervesato@suse.com>
Signed-off-by: Andrea Cervesato <andrea.cervesato@suse.com>
---
testcases/kernel/syscalls/mmap/mmap17.c | 53 +++++++++++++--------------------
1 file changed, 20 insertions(+), 33 deletions(-)
diff --git a/testcases/kernel/syscalls/mmap/mmap17.c b/testcases/kernel/syscalls/mmap/mmap17.c
index 39703fbd397d33fe549b1c9a52db62f763e146dd..1d10676379a102750ab7dbb73dd3ccd398112129 100644
--- a/testcases/kernel/syscalls/mmap/mmap17.c
+++ b/testcases/kernel/syscalls/mmap/mmap17.c
@@ -1,78 +1,65 @@
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Copyright (c) Zilogic Systems Pvt. Ltd., 2020
- * Email: code@zilogic.com
+ * Email: code@zilogic.com
+ * Copyright (C) 2025 SUSE LLC Andrea Cervesato <andrea.cervesato@suse.com>
*/
-/*
- * Test mmap with MAP_FIXED_NOREPLACE flag
- *
- * We are testing the MAP_FIXED_NOREPLACE flag of mmap() syscall. To check
+/*\
+ * Verify MAP_FIXED_NOREPLACE flag for the mmap() syscall and check
* if an attempt to mmap at an exisiting mapping fails with EEXIST.
- * The code allocates a free address by passing NULL to first mmap call
- * Then tries to mmap with the same address using MAP_FIXED_NOREPLACE flag
- * and the mapping fails as expected.
*/
-#include <stdio.h>
-#include <fcntl.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <unistd.h>
-#include <errno.h>
-#include <string.h>
-#include <stdlib.h>
-#include "lapi/mmap.h"
#include "tst_test.h"
static int fd_file1;
static int fd_file2;
static void *mapped_address;
-static const char str[] = "Writing to mapped file";
+static const char msg[] = "Writing to mapped file";
+static int msg_len;
#define FNAME1 "file1_to_mmap"
#define FNAME2 "file2_to_mmap"
static void setup(void)
{
+ msg_len = strlen(msg);
+
fd_file1 = SAFE_OPEN(FNAME1, O_CREAT | O_RDWR, 0600);
fd_file2 = SAFE_OPEN(FNAME2, O_CREAT | O_RDWR, 0600);
+
+ SAFE_WRITE(SAFE_WRITE_ALL, fd_file1, msg, msg_len);
+ SAFE_WRITE(SAFE_WRITE_ALL, fd_file2, msg, msg_len);
+
+ mapped_address = SAFE_MMAP(NULL, msg_len,
+ PROT_WRITE, MAP_PRIVATE, fd_file1, 0);
}
static void cleanup(void)
{
- int str_len;
-
- str_len = strlen(str);
-
if (fd_file2 > 0)
SAFE_CLOSE(fd_file2);
if (fd_file1 > 0)
SAFE_CLOSE(fd_file1);
if (mapped_address)
- SAFE_MUNMAP(mapped_address, str_len);
+ SAFE_MUNMAP(mapped_address, msg_len);
}
static void test_mmap(void)
{
- int str_len;
void *address;
- str_len = strlen(str);
-
- SAFE_WRITE(SAFE_WRITE_ALL, fd_file1, str, str_len);
- mapped_address = SAFE_MMAP(NULL, str_len, PROT_WRITE,
- MAP_PRIVATE, fd_file1, 0);
-
- SAFE_WRITE(SAFE_WRITE_ALL, fd_file2, str, str_len);
-
- address = mmap(mapped_address, str_len, PROT_WRITE,
+ address = mmap(mapped_address, msg_len, PROT_WRITE,
MAP_PRIVATE | MAP_FIXED_NOREPLACE, fd_file2, 0);
+
if (address == MAP_FAILED && errno == EEXIST)
tst_res(TPASS, "mmap set errno to EEXIST as expected");
else
tst_res(TFAIL | TERRNO, "mmap failed, with unexpected error "
"code, expected EEXIST");
+
+ if (address != MAP_FAILED)
+ SAFE_MUNMAP(address, msg_len);
}
static struct tst_test test = {
--
2.43.0
More information about the ltp
mailing list