blob: 4c1e61b5d880e8b7e25f5eb254cd8d30d6ebed5c [file] [log] [blame]
plars865695b2001-08-27 22:15:12 +00001/*
2 *
3 * Copyright (c) International Business Machines Corp., 2001
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
13 * the GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
Wanlong Gao4548c6c2012-10-19 18:03:36 +080017 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
plars865695b2001-08-27 22:15:12 +000018 */
19
20/*
21 * Test Name: mremap02
22 *
23 * Test Description:
subrata_modak4bb656a2009-02-26 12:02:09 +000024 * Verify that,
25 * mremap() fails when used to expand the existing virtual memory mapped
26 * region to the requested size, if the virtual memory area previously
plars865695b2001-08-27 22:15:12 +000027 * mapped was not page aligned or invalid argument specified.
28 *
29 * Expected Result:
30 * mremap() should return -1 and set errno to EINVAL.
31 *
32 * Algorithm:
33 * Setup:
34 * Setup signal handling.
35 * Pause for SIGUSR1 if option specified.
36 *
37 * Test:
38 * Loop if the proper options are given.
39 * Execute system call
40 * Check return code, if system call failed (return=-1)
subrata_modak56207ce2009-03-23 13:35:39 +000041 * if errno set == expected errno
42 * Issue sys call fails with expected return value and errno.
43 * Otherwise,
plars865695b2001-08-27 22:15:12 +000044 * Issue sys call fails with unexpected errno.
45 * Otherwise,
46 * Issue sys call returns unexpected value.
47 *
48 * Cleanup:
49 * Print errno log and/or timing stats if options given
50 *
51 * Usage: <for command-line>
52 * mremap02 [-c n] [-e] [-i n] [-I x] [-P x] [-t]
53 * where, -c n : Run n copies concurrently.
54 * -e : Turn on errno logging.
55 * -i n : Execute test n times.
56 * -I x : Execute test for x seconds.
57 * -p x : Pause for x seconds between iterations.
58 * -t : Turn on syscall timing.
59 *
60 * HISTORY
61 * 07/2001 Ported by Wayne Boyer
62 *
iyermanoj874176f2001-11-09 07:07:02 +000063 * 11/09/2001 Manoj Iyer (manjo@austin.ibm.com)
64 * Modified.
65 * - #include <linux/mman.h> should not be included as per man page for
66 * mremap, #include <sys/mman.h> alone should do the job. But inorder
67 * to include definition of MREMAP_MAYMOVE defined in bits/mman.h
68 * (included by sys/mman.h) __USE_GNU needs to be defined.
69 * There may be a more elegant way of doing this...
70 *
71 *
plars865695b2001-08-27 22:15:12 +000072 * RESTRICTIONS:
73 * None.
74 */
75#include <errno.h>
76#include <unistd.h>
77#include <fcntl.h>
iyermanoj874176f2001-11-09 07:07:02 +000078#define __USE_GNU
plars865695b2001-08-27 22:15:12 +000079#include <sys/mman.h>
iyermanoj874176f2001-11-09 07:07:02 +000080#undef __USE_GNU
plars865695b2001-08-27 22:15:12 +000081
82#include "test.h"
plars865695b2001-08-27 22:15:12 +000083
Cyril Hrubisfdce7d52013-04-04 18:35:48 +020084char *TCID = "mremap02";
85int TST_TOTAL = 1;
plars865695b2001-08-27 22:15:12 +000086char *addr; /* addr of memory mapped region */
87int memsize; /* memory mapped size */
88int newsize; /* new size of virtual memory block */
plars865695b2001-08-27 22:15:12 +000089
90void setup(); /* Main setup function of test */
91void cleanup(); /* cleanup function for the test */
92
subrata_modak56207ce2009-03-23 13:35:39 +000093int main(int ac, char **av)
plars865695b2001-08-27 22:15:12 +000094{
Cyril Hrubis89af32a2012-10-24 16:39:11 +020095 int lc;
Cyril Hrubis0b9589f2014-05-27 17:40:33 +020096 const char *msg;
subrata_modakbdbaec52009-02-26 12:14:51 +000097
Garrett Cooper7d0a4a52010-12-16 10:05:08 -080098 if ((msg = parse_opts(ac, av, NULL, NULL)) != NULL)
Garrett Cooper60fa8012010-11-22 13:50:58 -080099 tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
plars865695b2001-08-27 22:15:12 +0000100
plars865695b2001-08-27 22:15:12 +0000101 setup();
102
plars865695b2001-08-27 22:15:12 +0000103 for (lc = 0; TEST_LOOPING(lc); lc++) {
104
Caspar Zhangd59a6592013-03-07 14:59:12 +0800105 tst_count = 0;
plars865695b2001-08-27 22:15:12 +0000106
subrata_modak4bb656a2009-02-26 12:02:09 +0000107 /*
108 * Attempt to expand the existing mapped
plars865695b2001-08-27 22:15:12 +0000109 * memory region (memsize) by newsize limits using
110 * mremap() should fail as old virtual address is not
111 * page aligned.
112 */
robbiewd5c21122002-03-22 16:22:40 +0000113 errno = 0;
114 addr = mremap(addr, memsize, newsize, MREMAP_MAYMOVE);
115 TEST_ERRNO = errno;
plars865695b2001-08-27 22:15:12 +0000116
117 /* Check for the return value of mremap() */
robbiewd5c21122002-03-22 16:22:40 +0000118 if (addr != MAP_FAILED) {
plars865695b2001-08-27 22:15:12 +0000119 tst_resm(TFAIL,
120 "mremap returned invalid value, expected: -1");
121
122 /* Unmap the mapped memory region */
robbiewd5c21122002-03-22 16:22:40 +0000123 if (munmap(addr, newsize) != 0) {
plars865695b2001-08-27 22:15:12 +0000124 tst_brkm(TBROK, cleanup, "munmap fails to "
125 "unmap the expanded memory region, "
126 "error=%d", errno);
127 }
128 continue;
129 }
130
plars865695b2001-08-27 22:15:12 +0000131 if (errno == EINVAL) {
132 tst_resm(TPASS, "mremap() Failed, 'invalid argument "
133 "specified' - errno %d", TEST_ERRNO);
134 } else {
135 tst_resm(TFAIL, "mremap() Failed, "
136 "'Unexpected errno %d", TEST_ERRNO);
137 }
Garrett Cooper2c282152010-12-16 00:55:50 -0800138 }
subrata_modak56207ce2009-03-23 13:35:39 +0000139
plars865695b2001-08-27 22:15:12 +0000140 cleanup();
Garrett Cooper1e6f5a62010-12-19 09:58:10 -0800141 tst_exit();
plars865695b2001-08-27 22:15:12 +0000142
Garrett Cooper2c282152010-12-16 00:55:50 -0800143}
plars865695b2001-08-27 22:15:12 +0000144
145/*
146 * setup() - performs all ONE TIME setup for this test.
147 *
148 * Get system page size, Set the size of virtual memory area and the
149 * new size after resize, Set the virtual memory address such that it
150 * is not aligned.
151 */
Mike Frysingerc57fba52014-04-09 18:56:30 -0400152void setup(void)
plars865695b2001-08-27 22:15:12 +0000153{
Garrett Cooper2c282152010-12-16 00:55:50 -0800154
plars865695b2001-08-27 22:15:12 +0000155 tst_sig(FORK, DEF_HANDLER, cleanup);
156
plars865695b2001-08-27 22:15:12 +0000157 TEST_PAUSE;
158
159 /* Get the system page size */
160 if ((memsize = getpagesize()) < 0) {
Garrett Cooper53740502010-12-16 00:04:01 -0800161 tst_brkm(TFAIL, NULL,
plars865695b2001-08-27 22:15:12 +0000162 "getpagesize() fails to get system page size");
163 }
164
165 /* Get the New size of virtual memory block after resize */
166 newsize = (memsize * 2);
167
168 /* Set the old virtual memory address */
169 addr = (char *)(addr + (memsize - 1));
170}
171
172/*
173 * cleanup() - performs all ONE TIME cleanup for this test at
174 * completion or premature exit.
175 */
Mike Frysingerc57fba52014-04-09 18:56:30 -0400176void cleanup(void)
plars865695b2001-08-27 22:15:12 +0000177{
plars865695b2001-08-27 22:15:12 +0000178
179 /* Exit the program */
Garrett Cooper2c282152010-12-16 00:55:50 -0800180
Chris Dearmanec6edca2012-10-17 19:54:01 -0700181}