The previous version of this can be dropped.
Signed-off-by: CAI Qian <[email protected]>
---
v2: code cleanup and skip 32-bit since there is no guarantee of running out of
virtual memory address space there.
testcases/kernel/mem/oom/Makefile | 24 +++++
testcases/kernel/mem/oom/oom01.c | 186 +++++++++++++++++++++++++++++++++++++
2 files changed, 210 insertions(+), 0 deletions(-)
create mode 100644 testcases/kernel/mem/oom/Makefile
create mode 100644 testcases/kernel/mem/oom/oom01.c
diff --git a/testcases/kernel/mem/oom/Makefile
b/testcases/kernel/mem/oom/Makefile
new file mode 100644
index 0000000..2381ce2
--- /dev/null
+++ b/testcases/kernel/mem/oom/Makefile
@@ -0,0 +1,24 @@
+#
+# Copyright (C) 2010 Red Hat, Inc.
+#
+# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+#
+
+top_srcdir ?= ../../../..
+
+include $(top_srcdir)/include/mk/testcases.mk
+include $(top_srcdir)/include/mk/generic_leaf_target.mk
+
+LDLIBS += $(NUMA_LIBS)
\ No newline at end of file
diff --git a/testcases/kernel/mem/oom/oom01.c b/testcases/kernel/mem/oom/oom01.c
new file mode 100644
index 0000000..7c490ca
--- /dev/null
+++ b/testcases/kernel/mem/oom/oom01.c
@@ -0,0 +1,186 @@
+/*
+ * Out Of Memory (OOM)
+ *
+ * The program is designed to cope with unpredictable like amount and
+ * system physical memory, swap size and other VMM technology like KSM,
+ * memcg, memory hotplug and so on which may affect the OOM
+ * behaviours. It simply increase the memory consumption 3G each time
+ * until all the available memory is consumed and OOM is triggered.
+ *
+ * Copyright (C) 2010 Red Hat, Inc.
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of version 2 of the GNU General Public
+ * License as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it would be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ *
+ * Further, this software is distributed without any warranty that it
+ * is free of the rightful claim of any third person regarding
+ * infringement or the like. Any license provided herein, whether
+ * implied or otherwise, applies only to this software file. Patent
+ * licenses, if any, provided herein do not apply to combinations of
+ * this program with other software, or any other product whatsoever.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+ * 02110-1301, USA.
+ */
+#include <sys/mman.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <sys/wait.h>
+#include <asm/types.h>
+#include <fcntl.h>
+#include <stdio.h>
+#include <errno.h>
+#include <stdlib.h>
+#include <string.h>
+#include <signal.h>
+#include <unistd.h>
+#include <stdarg.h>
+#include "test.h"
+#include "usctest.h"
+
+char *TCID = "oom01";
+int TST_TOTAL = 1;
+extern int Tst_count;
+
+#define LENGTH (3UL<<30)
+#define SYSFS_OVER "/proc/sys/vm/overcommit_memory"
+#define OVERCOMMIT 1
+#define NORMAL 2
+#define MLOCK 3
+#define KSM 4
+
+static char overcommit[BUFSIZ];
+
+static void setup(void);
+static void cleanup(void) LTP_ATTRIBUTE_NORETURN;
+static void oom(int testcase);
+
+int main(int argc, char *argv[])
+{
+ char *msg;
+ int lc, fd;
+
+ msg = parse_opts(argc, argv, NULL, NULL);
+ if (msg != (char *)NULL)
+ tst_brkm(TBROK, tst_exit, "OPTION PARSING ERROR - %s", msg);
+
+#ifdef __i386__
+ tst_brkm(TCONF, tst_exit,
+ "test is not designed for 32-bit system.");
+#endif /* __i386__ */
+
+ setup();
+
+ for (lc = 0; TEST_LOOPING(lc); lc++) {
+ Tst_count = 0;
+ tst_resm(TINFO, "start testing overcommit_memory=2.");
+ fd = open(SYSFS_OVER, O_WRONLY);
+ if (fd == -1)
+ tst_brkm(TBROK|TERRNO, cleanup, "open");
+ if (write(fd, "2", 1) != 1)
+ tst_brkm(TBROK|TERRNO, cleanup, "write");
+ oom(OVERCOMMIT);
+
+ tst_resm(TINFO, "start testing overcommit_memory=0.");
+ if (lseek(fd, SEEK_SET, 0) == -1)
+ tst_brkm(TBROK|TERRNO, cleanup, "lseek");
+ if (write(fd, "0", 1) != 1)
+ tst_brkm(TBROK|TERRNO, cleanup, "write");
+ oom(OVERCOMMIT);
+
+ tst_resm(TINFO, "start normal OOM testing.");
+ if (lseek(fd, SEEK_SET, 0) == -1)
+ tst_brkm(TBROK|TERRNO, cleanup, "lseek");
+ if (write(fd, "1", 1) != 1)
+ tst_brkm(TBROK|TERRNO, cleanup, "write");
+ oom(NORMAL);
+
+ tst_resm(TINFO, "start OOM testing for mlocked pages.");
+ oom(MLOCK);
+
+ tst_resm(TINFO, "start OOM testing for KSM pages.");
+ oom(KSM);
+ }
+ cleanup();
+}
+
+void setup(void)
+{
+ int fd;
+
+ tst_sig(FORK, DEF_HANDLER, cleanup);
+ TEST_PAUSE;
+
+ fd = open(SYSFS_OVER, O_RDONLY);
+ if (fd == -1)
+ tst_brkm(TBROK|TERRNO, cleanup, "open");
+ if (read(fd, &overcommit, 1) != 1)
+ tst_brkm(TBROK|TERRNO, cleanup, "read");
+ close(fd);
+}
+
+void cleanup(void)
+{
+ int fd;
+
+ fd = open(SYSFS_OVER, O_WRONLY);
+ if (fd == -1)
+ tst_brkm(TBROK|TERRNO, cleanup, "open");
+ if (write(fd, &overcommit, 1) != 1)
+ tst_brkm(TBROK|TERRNO, cleanup, "write");
+ close(fd);
+
+ TEST_CLEANUP;
+ tst_exit();
+}
+
+void oom(int testcase)
+{
+ pid_t pid;
+ int status;
+ void *s;
+
+ switch(pid = fork()) {
+ case -1:
+ tst_brkm(TBROK|TERRNO, cleanup, "fork");
+ case 0:
+ while(1) {
+ s = mmap(NULL, LENGTH, PROT_READ|PROT_WRITE,
+ MAP_ANONYMOUS|MAP_PRIVATE, -1, 0);
+ if (s == MAP_FAILED) {
+ if (testcase == OVERCOMMIT && errno == ENOMEM)
+ break;
+ else
+ tst_brkm(TBROK|TERRNO, cleanup, "mmap");
+ }
+ if (testcase == MLOCK && mlock(s, LENGTH) == -1)
+ tst_brkm(TINFO|TERRNO, cleanup, "mlock");
+ if (testcase == KSM
+ && madvise(s, LENGTH, MADV_MERGEABLE) == -1)
+ tst_brkm(TBROK|TERRNO, cleanup, "madvise");
+ memset(s, '\a', LENGTH);
+ }
+ exit(0);
+ default:
+ break;
+ }
+ tst_resm(TINFO, "expected victim is %d.", pid);
+ if (waitpid(-1, &status, 0) == -1)
+ tst_brkm(TBROK|TERRNO, cleanup, "waitpid");
+
+ if (testcase == OVERCOMMIT) {
+ if (!WIFEXITED(status) || WEXITSTATUS(status) != 0)
+ tst_resm(TFAIL, "the victim unexpectedly failed: %d",
+ status);
+ } else {
+ if (!WIFSIGNALED(status) || WTERMSIG(status) != SIGKILL)
+ tst_resm(TFAIL, "the victim unexpectedly failed: %d",
+ status);
+ }
+}
--
1.7.3.2From 98107ef33f962c52d7c3acec3383882028e0ee37 Mon Sep 17 00:00:00 2001
From: CAI Qian <[email protected]>
Date: Tue, 21 Dec 2010 10:31:53 +0800
Subject: [PATCH v2 1/5] oom01: test OOM
The previous version of this can be dropped.
Signed-off-by: CAI Qian <[email protected]>
---
v2: code cleanup and skip 32-bit since there is no guarantee of running out of
virtual memory address space there.
testcases/kernel/mem/oom/Makefile | 24 +++++
testcases/kernel/mem/oom/oom01.c | 186 +++++++++++++++++++++++++++++++++++++
2 files changed, 210 insertions(+), 0 deletions(-)
create mode 100644 testcases/kernel/mem/oom/Makefile
create mode 100644 testcases/kernel/mem/oom/oom01.c
diff --git a/testcases/kernel/mem/oom/Makefile b/testcases/kernel/mem/oom/Makefile
new file mode 100644
index 0000000..2381ce2
--- /dev/null
+++ b/testcases/kernel/mem/oom/Makefile
@@ -0,0 +1,24 @@
+#
+# Copyright (C) 2010 Red Hat, Inc.
+#
+# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+#
+
+top_srcdir ?= ../../../..
+
+include $(top_srcdir)/include/mk/testcases.mk
+include $(top_srcdir)/include/mk/generic_leaf_target.mk
+
+LDLIBS += $(NUMA_LIBS)
\ No newline at end of file
diff --git a/testcases/kernel/mem/oom/oom01.c b/testcases/kernel/mem/oom/oom01.c
new file mode 100644
index 0000000..7c490ca
--- /dev/null
+++ b/testcases/kernel/mem/oom/oom01.c
@@ -0,0 +1,186 @@
+/*
+ * Out Of Memory (OOM)
+ *
+ * The program is designed to cope with unpredictable like amount and
+ * system physical memory, swap size and other VMM technology like KSM,
+ * memcg, memory hotplug and so on which may affect the OOM
+ * behaviours. It simply increase the memory consumption 3G each time
+ * until all the available memory is consumed and OOM is triggered.
+ *
+ * Copyright (C) 2010 Red Hat, Inc.
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of version 2 of the GNU General Public
+ * License as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it would be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ *
+ * Further, this software is distributed without any warranty that it
+ * is free of the rightful claim of any third person regarding
+ * infringement or the like. Any license provided herein, whether
+ * implied or otherwise, applies only to this software file. Patent
+ * licenses, if any, provided herein do not apply to combinations of
+ * this program with other software, or any other product whatsoever.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+ * 02110-1301, USA.
+ */
+#include <sys/mman.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <sys/wait.h>
+#include <asm/types.h>
+#include <fcntl.h>
+#include <stdio.h>
+#include <errno.h>
+#include <stdlib.h>
+#include <string.h>
+#include <signal.h>
+#include <unistd.h>
+#include <stdarg.h>
+#include "test.h"
+#include "usctest.h"
+
+char *TCID = "oom01";
+int TST_TOTAL = 1;
+extern int Tst_count;
+
+#define LENGTH (3UL<<30)
+#define SYSFS_OVER "/proc/sys/vm/overcommit_memory"
+#define OVERCOMMIT 1
+#define NORMAL 2
+#define MLOCK 3
+#define KSM 4
+
+static char overcommit[BUFSIZ];
+
+static void setup(void);
+static void cleanup(void) LTP_ATTRIBUTE_NORETURN;
+static void oom(int testcase);
+
+int main(int argc, char *argv[])
+{
+ char *msg;
+ int lc, fd;
+
+ msg = parse_opts(argc, argv, NULL, NULL);
+ if (msg != (char *)NULL)
+ tst_brkm(TBROK, tst_exit, "OPTION PARSING ERROR - %s", msg);
+
+#ifdef __i386__
+ tst_brkm(TCONF, tst_exit,
+ "test is not designed for 32-bit system.");
+#endif /* __i386__ */
+
+ setup();
+
+ for (lc = 0; TEST_LOOPING(lc); lc++) {
+ Tst_count = 0;
+ tst_resm(TINFO, "start testing overcommit_memory=2.");
+ fd = open(SYSFS_OVER, O_WRONLY);
+ if (fd == -1)
+ tst_brkm(TBROK|TERRNO, cleanup, "open");
+ if (write(fd, "2", 1) != 1)
+ tst_brkm(TBROK|TERRNO, cleanup, "write");
+ oom(OVERCOMMIT);
+
+ tst_resm(TINFO, "start testing overcommit_memory=0.");
+ if (lseek(fd, SEEK_SET, 0) == -1)
+ tst_brkm(TBROK|TERRNO, cleanup, "lseek");
+ if (write(fd, "0", 1) != 1)
+ tst_brkm(TBROK|TERRNO, cleanup, "write");
+ oom(OVERCOMMIT);
+
+ tst_resm(TINFO, "start normal OOM testing.");
+ if (lseek(fd, SEEK_SET, 0) == -1)
+ tst_brkm(TBROK|TERRNO, cleanup, "lseek");
+ if (write(fd, "1", 1) != 1)
+ tst_brkm(TBROK|TERRNO, cleanup, "write");
+ oom(NORMAL);
+
+ tst_resm(TINFO, "start OOM testing for mlocked pages.");
+ oom(MLOCK);
+
+ tst_resm(TINFO, "start OOM testing for KSM pages.");
+ oom(KSM);
+ }
+ cleanup();
+}
+
+void setup(void)
+{
+ int fd;
+
+ tst_sig(FORK, DEF_HANDLER, cleanup);
+ TEST_PAUSE;
+
+ fd = open(SYSFS_OVER, O_RDONLY);
+ if (fd == -1)
+ tst_brkm(TBROK|TERRNO, cleanup, "open");
+ if (read(fd, &overcommit, 1) != 1)
+ tst_brkm(TBROK|TERRNO, cleanup, "read");
+ close(fd);
+}
+
+void cleanup(void)
+{
+ int fd;
+
+ fd = open(SYSFS_OVER, O_WRONLY);
+ if (fd == -1)
+ tst_brkm(TBROK|TERRNO, cleanup, "open");
+ if (write(fd, &overcommit, 1) != 1)
+ tst_brkm(TBROK|TERRNO, cleanup, "write");
+ close(fd);
+
+ TEST_CLEANUP;
+ tst_exit();
+}
+
+void oom(int testcase)
+{
+ pid_t pid;
+ int status;
+ void *s;
+
+ switch(pid = fork()) {
+ case -1:
+ tst_brkm(TBROK|TERRNO, cleanup, "fork");
+ case 0:
+ while(1) {
+ s = mmap(NULL, LENGTH, PROT_READ|PROT_WRITE,
+ MAP_ANONYMOUS|MAP_PRIVATE, -1, 0);
+ if (s == MAP_FAILED) {
+ if (testcase == OVERCOMMIT && errno == ENOMEM)
+ break;
+ else
+ tst_brkm(TBROK|TERRNO, cleanup, "mmap");
+ }
+ if (testcase == MLOCK && mlock(s, LENGTH) == -1)
+ tst_brkm(TINFO|TERRNO, cleanup, "mlock");
+ if (testcase == KSM
+ && madvise(s, LENGTH, MADV_MERGEABLE) == -1)
+ tst_brkm(TBROK|TERRNO, cleanup, "madvise");
+ memset(s, '\a', LENGTH);
+ }
+ exit(0);
+ default:
+ break;
+ }
+ tst_resm(TINFO, "expected victim is %d.", pid);
+ if (waitpid(-1, &status, 0) == -1)
+ tst_brkm(TBROK|TERRNO, cleanup, "waitpid");
+
+ if (testcase == OVERCOMMIT) {
+ if (!WIFEXITED(status) || WEXITSTATUS(status) != 0)
+ tst_resm(TFAIL, "the victim unexpectedly failed: %d",
+ status);
+ } else {
+ if (!WIFSIGNALED(status) || WTERMSIG(status) != SIGKILL)
+ tst_resm(TFAIL, "the victim unexpectedly failed: %d",
+ status);
+ }
+}
--
1.7.3.2
------------------------------------------------------------------------------
Lotusphere 2011
Register now for Lotusphere 2011 and learn how
to connect the dots, take your collaborative environment
to the next level, and enter the era of Social Business.
http://p.sf.net/sfu/lotusphere-d2d
_______________________________________________
Ltp-list mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ltp-list