[LTP] [PATCH 3/9] syscalls/ipc: shmctl04: Rewrite from scratch.
Cyril Hrubis
chrubis@suse.cz
Fri Jul 17 18:34:47 CEST 2020
Write the test from a scratch and validate the content of the shm_info
structure and the return value.
The return value is highest used index to a kernel table, so we call
shmctl() with SHM_STAT_ANY which shouldn't fail if the value is correct.
We also parse /proc/sysvipc/shm and check that the information is
consistent with the content of shm_info structure.
Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
---
testcases/kernel/syscalls/ipc/shmctl/Makefile | 4 +-
.../kernel/syscalls/ipc/shmctl/shmctl04.c | 190 ++++++++++--------
2 files changed, 109 insertions(+), 85 deletions(-)
diff --git a/testcases/kernel/syscalls/ipc/shmctl/Makefile b/testcases/kernel/syscalls/ipc/shmctl/Makefile
index 33e102797..30bb1a537 100644
--- a/testcases/kernel/syscalls/ipc/shmctl/Makefile
+++ b/testcases/kernel/syscalls/ipc/shmctl/Makefile
@@ -10,7 +10,7 @@ shmctl05: LDLIBS += -lrt
include $(top_srcdir)/include/mk/testcases.mk
-shmctl01 shmctl04 shmctl05: LDLIBS += -lltpipc
-shmctl02 shmctl06: LDLIBS += -lltpnewipc
+shmctl01 shmctl05: LDLIBS += -lltpipc
+shmctl02 shmctl04 shmctl06: LDLIBS += -lltpnewipc
include $(top_srcdir)/include/mk/generic_leaf_target.mk
diff --git a/testcases/kernel/syscalls/ipc/shmctl/shmctl04.c b/testcases/kernel/syscalls/ipc/shmctl/shmctl04.c
index 40cfa9419..bbcfd75f0 100644
--- a/testcases/kernel/syscalls/ipc/shmctl/shmctl04.c
+++ b/testcases/kernel/syscalls/ipc/shmctl/shmctl04.c
@@ -1,115 +1,139 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
/*
- *
- * Copyright (c) International Business Machines Corp., 2001
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
- * the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ * Copyright (C) 2020 Cyril Hrubis <chrubis@suse.cz>
*/
-
/*
- * NAME
- * shmctl04.c
- *
- * DESCRIPTION
- * shmctl04 - test the SHM_INFO command
- * they are used with shmctl() in ipcs
+ * Call shmctl() with SHM_INFO flag and check that:
*
- * USAGE: <for command-line>
- * shmctl04 [-c n] [-f] [-i n] [-I x] [-P x] [-t]
- * where, -c n : Run n copies concurrently.
- * -f : Turn off functionality Testing.
- * -i n : Execute test n times.
- * -I x : Execute test for x seconds.
- * -P x : Pause for x seconds between iterations.
- * -t : Turn on syscall timing.
+ * * The returned index points to a valid SHM by calling SHM_STAT_ANY
+ * * And the data are consistent with /proc/sysvipc/shm
*
- * HISTORY
- * 09/2002 - Written by Mingming Cao
+ * There is a possible race between the call to the shmctl() and read from the
+ * proc file so this test cannot be run in parallel with any IPC testcases that
+ * adds or removes SHM segments.
*
- * RESTRICTIONS
- * none
+ * Note what we create a SHM segment in the test setup to make sure that there
+ * is at least one during the testrun.
*/
-#include "ipcshm.h"
+#define _GNU_SOURCE
+#include <stdio.h>
+#include "tst_test.h"
+#include "tst_safe_sysv_ipc.h"
+#include "libnewipc.h"
-char *TCID = "shmctl04";
-int TST_TOTAL = 1;
+#define SHM_SIZE 2048
-struct shm_info shm_info;
-int max_ids;
-
-/*
- * These are the various setup and check functions for the commands
- * that we are checking.
- */
+static int shm_id = -1;
-int main(int ac, char **av)
+static void parse_proc_sysvipc(struct shm_info *info, int max_id)
{
- int lc;
-
- tst_parse_opts(ac, av, NULL, NULL);
-
- setup();
+ int page_size = getpagesize();
+ FILE *f = fopen("/proc/sysvipc/shm", "r");
+ int used_ids = 0;
+ int shmid_max = 0;
+ unsigned long shm_rss = 0;
+ unsigned long shm_swp = 0;
+ unsigned long shm_tot = 0;
+
+ /* Eat header */
+ for (;;) {
+ int c = fgetc(f);
+
+ if (c == '\n' || c == EOF)
+ break;
+ }
- /* The following loop checks looping state if -i option given */
+ int shmid, size, rss, swap;
- for (lc = 0; TEST_LOOPING(lc); lc++) {
- /* reset tst_count in case we are looping */
- tst_count = 0;
- TEST(shmctl(0, SHM_INFO, (struct shmid_ds *)&shm_info));
+ /*
+ * Sum rss, swap and size for all elements listed, which should equal
+ * the data returned in the shm_info structure.
+ *
+ * Note that the size has to be rounded up to nearest multiple of page
+ * size.
+ */
+ while (fscanf(f, "%*i %i %*i %i %*i %*i %*i %*i %*i %*i %*i %*i %*i %*i %i %i",
+ &shmid, &size, &rss, &swap) > 0) {
+ used_ids++;
+ shm_rss += rss/page_size;
+ shm_swp += swap/page_size;
+ shm_tot += (size + page_size - 1) / page_size;
+ if (shmid > shmid_max)
+ shmid_max = shmid;
+ }
- if (TEST_RETURN != -1) {
- tst_resm(TPASS, "SHM_INFO call succeeded");
- continue;
- }
+ if (info->used_ids != used_ids) {
+ tst_res(TFAIL, "used_ids = %i, expected %i",
+ info->used_ids, used_ids);
+ } else {
+ tst_res(TPASS, "used_ids = %i", used_ids);
+ }
- tst_resm(TFAIL, "SHM_INFO call failed with an unexpected error"
- " - %d : %s", TEST_ERRNO, strerror(TEST_ERRNO));
+ if (info->shm_rss != shm_rss) {
+ tst_res(TFAIL, "shm_rss = %li, expected %li",
+ info->shm_rss, shm_rss);
+ } else {
+ tst_res(TPASS, "shm_rss = %li", shm_rss);
+ }
+ if (info->shm_swp != shm_swp) {
+ tst_res(TFAIL, "shm_swp = %li, expected %li",
+ info->shm_swp, shm_swp);
+ } else {
+ tst_res(TPASS, "shm_swp = %li", shm_swp);
}
- cleanup();
+ if (info->shm_tot != shm_tot) {
+ tst_res(TFAIL, "shm_tot = %li, expected %li",
+ info->shm_tot, shm_tot);
+ } else {
+ tst_res(TPASS, "shm_tot = %li", shm_tot);
+ }
- tst_exit();
+ if (max_id != shmid_max) {
+ tst_res(TFAIL, "highest shmid = %i, expected %i",
+ max_id, shmid_max);
+ } else {
+ tst_res(TPASS, "highest shmid = %i", max_id);
+ }
}
-/*
- * setup() - performs all the ONE TIME setup for this test.
- */
-void setup(void)
+static void verify_shminfo(void)
{
+ struct shm_info info;
+ struct shmid_ds ds;
- tst_sig(NOFORK, DEF_HANDLER, cleanup);
+ TEST(shmctl(0, SHM_INFO, (struct shmid_ds *)&info));
- TEST_PAUSE;
+ if (TST_RET == -1) {
+ tst_res(TFAIL | TTERRNO, "shmctl(0, SHM_INFO, ...)");
+ return;
+ }
- /*
- * Create a temporary directory and cd into it.
- * This helps to ensure that a unique msgkey is created.
- * See libs/libltpipc/libipc.c for more information.
- */
- tst_tmpdir();
+ TEST(shmctl(TST_RET, SHM_STAT_ANY, &ds));
+ if (TST_RET == -1)
+ tst_res(TFAIL | TTERRNO, "SHM_INFO haven't returned a valid index");
+ else
+ tst_res(TPASS, "SHM_INFO returned valid index %li", TST_RET);
+
+ parse_proc_sysvipc(&info, TST_RET);
}
-/*
- * cleanup() - performs all the ONE TIME cleanup for this test at completion
- * or premature exit.
- */
-void cleanup(void)
+static void setup(void)
{
+ shm_id = SAFE_SHMGET(IPC_PRIVATE, SHM_SIZE, IPC_CREAT | SHM_RW);
+}
- tst_rmdir();
-
+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_shminfo,
+};
--
2.26.2
More information about the ltp
mailing list