[LTP] [PATCH 8/9] syscalls/ipc: Add shmctl IPC_SET test
Cyril Hrubis
chrubis@suse.cz
Fri Jul 17 18:34:52 CEST 2020
Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
---
runtest/syscalls | 1 +
runtest/syscalls-ipc | 1 +
.../kernel/syscalls/ipc/shmctl/.gitignore | 1 +
.../kernel/syscalls/ipc/shmctl/shmctl08.c | 101 ++++++++++++++++++
4 files changed, 104 insertions(+)
create mode 100644 testcases/kernel/syscalls/ipc/shmctl/shmctl08.c
diff --git a/runtest/syscalls b/runtest/syscalls
index 1dc4973e7..00c8d6d66 100644
--- a/runtest/syscalls
+++ b/runtest/syscalls
@@ -1360,6 +1360,7 @@ shmctl04 shmctl04
shmctl05 shmctl05
shmctl06 shmctl06
shmctl07 shmctl07
+shmctl08 shmctl08
shmdt01 shmdt01
shmdt02 shmdt02
diff --git a/runtest/syscalls-ipc b/runtest/syscalls-ipc
index 613987589..d3d477741 100644
--- a/runtest/syscalls-ipc
+++ b/runtest/syscalls-ipc
@@ -58,6 +58,7 @@ shmctl04 shmctl04
shmctl05 shmctl05
shmctl06 shmctl06
shmctl07 shmctl07
+shmctl08 shmctl08
shmdt01 shmdt01
shmdt02 shmdt02
diff --git a/testcases/kernel/syscalls/ipc/shmctl/.gitignore b/testcases/kernel/syscalls/ipc/shmctl/.gitignore
index 4322d03b7..f3f88ee17 100644
--- a/testcases/kernel/syscalls/ipc/shmctl/.gitignore
+++ b/testcases/kernel/syscalls/ipc/shmctl/.gitignore
@@ -5,3 +5,4 @@
/shmctl05
/shmctl06
/shmctl07
+/shmctl08
diff --git a/testcases/kernel/syscalls/ipc/shmctl/shmctl08.c b/testcases/kernel/syscalls/ipc/shmctl/shmctl08.c
new file mode 100644
index 000000000..2c83e9901
--- /dev/null
+++ b/testcases/kernel/syscalls/ipc/shmctl/shmctl08.c
@@ -0,0 +1,101 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+/*
+ * Copyright (C) 2020 Cyril Hrubis <chrubis@suse.cz>
+ */
+/*
+ * Test for a SHM_SET.
+ *
+ * The test clears the group and others bits from the shm_perm.mode and checks
+ * the result as well as if the ctime was updated correctly.
+ */
+
+#define _GNU_SOURCE
+#include <stdio.h>
+#include "tst_test.h"
+#include "tst_safe_sysv_ipc.h"
+#include "libnewipc.h"
+
+#define SHM_SIZE 2048
+
+static int shm_id = -1;
+
+static int test_ipc_set(struct shmid_ds *ds)
+{
+ TEST(shmctl(shm_id, IPC_SET, ds));
+
+ if (TST_RET != 0) {
+ tst_res(TFAIL, "shmctl(%i, IPC_SET, ...)", shm_id);
+ return 1;
+ }
+
+ tst_res(TPASS, "shmctl(%i, IPC_SET, {shm_perm.mode=%i})",
+ shm_id, ds->shm_perm.mode);
+ return 0;
+}
+
+static void check_mode(struct shmid_ds *ds, short exp_mode)
+{
+ if (ds->shm_perm.mode == exp_mode) {
+ tst_res(TPASS, "shm_perm.mode=%i was updated", exp_mode);
+ return;
+ }
+
+ tst_res(TFAIL, "shm_perm.mode=%i wasn't updated, expected %i",
+ ds->shm_perm.mode, exp_mode);
+}
+
+static void verify_shmset(void)
+{
+ struct shmid_ds ds;
+ unsigned short old_mode;
+ time_t old_ctime;
+
+ SAFE_SHMCTL(shm_id, IPC_STAT, &ds);
+
+ old_mode = ds.shm_perm.mode;
+ old_ctime = ds.shm_ctime;
+
+ sleep(1);
+
+ ds.shm_perm.mode &= ~0066;
+
+ if (test_ipc_set(&ds))
+ return;
+
+ memset(&ds, 0, sizeof(ds));
+ SAFE_SHMCTL(shm_id, IPC_STAT, &ds);
+ check_mode(&ds, old_mode & ~0066);
+
+ if (ds.shm_ctime - old_ctime > 10) {
+ tst_res(TFAIL, "shm_ctime not updated old %li new %li",
+ (long)old_ctime, (long)ds.shm_ctime);
+ } else {
+ tst_res(TPASS, "shm_ctime updated correctly diff=%li",
+ (long)(ds.shm_ctime - old_ctime));
+ }
+
+ ds.shm_perm.mode = old_mode;
+ if (test_ipc_set(&ds))
+ return;
+
+ memset(&ds, 0, sizeof(ds));
+ SAFE_SHMCTL(shm_id, IPC_STAT, &ds);
+ check_mode(&ds, old_mode & MODE_MASK);
+}
+
+static void setup(void)
+{
+ shm_id = SAFE_SHMGET(IPC_PRIVATE, SHM_SIZE, IPC_CREAT | 0666);
+}
+
+static void cleanup(void)
+{
+ if (shm_id >= 0)
+ SAFE_SHMCTL(shm_id, IPC_RMID, NULL);
+}
+
+static struct tst_test test = {
+ .setup = setup,
+ .cleanup = cleanup,
+ .test_all = verify_shmset,
+};
--
2.26.2
More information about the ltp
mailing list