liyujie
2025-08-28 b3810562527858a3b3d98ffa6e9c9c5b0f4a9a8e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
/* IBM Corporation */
/* 01/02/2003    Port to LTP    avenkat@us.ibm.com*/
/* 06/30/2001    Port to Linux    nsharoff@us.ibm.com */
/*
 *   Copyright (c) International Business Machines  Corp., 2003
 *
 *
 *   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
 */
 
/* mfile_insque:
 *    This test mmaps a portion of a file, and then mmaps the next
 *    portion of the file in front of the virtual space containing the
 *    original mmap.  It then mmaps the preceding portion of the file behind
 *    the original mmap.  None of the mmaps can be concatenated.
 */
#include <sys/types.h>
#include <sys/mman.h>
#include <unistd.h>
#include <fcntl.h>
#include <signal.h>
#include <stdio.h>
#include <errno.h>
/* #include <sys/pte.h> */
 
/*****    LTP Port    *****/
#include "test.h"
/*****    **    **    *****/
 
#ifndef MMU_NARROWPTEPG
#define MMU_NARROWPTEPG    1024
#endif
 
/*****    LTP Port    *****/
#define FAILED 0
#define PASSED 1
 
int local_flag = PASSED;
char *TCID = "mmapstress05";    //mfile_insque
FILE *temp;
int TST_TOTAL = 1;
 
int anyfail();
void ok_exit();
/*****    **    **    *****/
 
#define ERROR(M)    (void)fprintf(stderr, "%s:  errno = %d; " M "\n", \
               progname, errno);
#define CLEAN    (void)close(fd); \
       if (munmap(mmapaddr+pagesize, pagesize) == -1) { \
           ERROR("munmap failed"); \
       } \
       if (munmap(mmapaddr, pagesize) == -1) { \
           ERROR("munmap failed"); \
       } \
       if (munmap(mmapaddr+2*pagesize, pagesize) == -1) { \
           ERROR("munmap failed"); \
       } \
       if (unlink(tmpname)) { \
           ERROR("couldn't clean up temp file"); \
       }
 
#define CERROR(M)    CLEAN; ERROR(M)
 
#define CATCH_SIG(SIG) \
        if (sigaction(SIG, &sa, 0) == -1) { \
       ERROR("couldn't catch signal " #SIG); \
                exit(1); \
        }
 
extern time_t time(time_t *);
extern char *ctime(const time_t *);
extern void exit(int);
 
static int fd;
//static char *tmpname; 12/31/02
static char tmpname[] = "fileXXXXXX";
static char *progname;
 
 /*ARGSUSED*/ static
void cleanup(int sig)
{
   /*
    * Don't check error codes - we could be signaled before the file is
    * created.
    */
   (void)close(fd);
   (void)unlink(tmpname);
   exit(1);
}
 
int main(int argc, char *argv[])
{
   size_t pagesize = (size_t) sysconf(_SC_PAGE_SIZE);
   caddr_t mmapaddr;
   char *buf;
   time_t t;
   int i;
   struct sigaction sa;
 
   if (!argc) {
       (void)fprintf(stderr, "argc == 0\n");
       return 1;
   }
   tst_tmpdir();
   progname = argv[0];
   (void)time(&t);
//      (void)printf("%s: Started %s", argv[0], ctime(&t)); LTP Port
   if (sbrk(pagesize - ((ulong) sbrk(0) & (pagesize - 1))) == (char *)-1) {
       ERROR("couldn't round up brk");
       anyfail();
   }
   if ((buf = sbrk(pagesize)) == (char *)-1) {
       ERROR("couldn't allocate output buffer");
       anyfail();
   }
   if ((mmapaddr = (caddr_t) sbrk(0)) == (caddr_t) - 1) {
       ERROR("couldn't find top of brk");
       anyfail();
   }
 
   /* i changed the second argument to NULL
      from argv[0]. otherwise it causes the
      open to fail
      -- sreeni
    */
 
   if ((fd = mkstemp(tmpname)) == -1) {
       ERROR("mkstemp failed");
       anyfail();
   }
   sa.sa_handler = cleanup;
   sa.sa_flags = 0;
   if (sigemptyset(&sa.sa_mask)) {
       ERROR("sigemptyset failed");
       anyfail();
   }
   CATCH_SIG(SIGINT);
   CATCH_SIG(SIGQUIT);
   CATCH_SIG(SIGTERM);
   for (i = 0; i < pagesize; i++)
       buf[i] = 'a';
   if (write(fd, buf, pagesize) != pagesize) {
       CERROR("couldn't write page case 1");
       anyfail();
   }
   if (lseek(fd, MMU_NARROWPTEPG * pagesize, SEEK_SET) == -1) {
       CERROR("lseek case 1 failed");
       anyfail();
   }
   if (write(fd, buf, pagesize) != pagesize) {
       CERROR("couldn't write page case 2");
       anyfail();
   }
   if (lseek(fd, 2 * MMU_NARROWPTEPG * pagesize, SEEK_SET) == -1) {
       CERROR("lseek case 2 failed");
       anyfail();
   }
   if (write(fd, buf, pagesize) != pagesize) {
       CERROR("couldn't write page case 3");
       anyfail();
   }
   /* fd now references a sparce file which has three pages widely spaced.
    * Hopefully different mfile objects will be needed to reference each
    * page.
    */
   if (mmap(mmapaddr + pagesize, pagesize, PROT_READ,
        MAP_FILE | MAP_PRIVATE | MAP_FIXED, fd,
        MMU_NARROWPTEPG * pagesize)
       == (caddr_t) - 1) {
       CERROR("first mmap (of third page) failed");
       anyfail();
   }
   if (mmap(mmapaddr, pagesize, PROT_READ,
        MAP_FILE | MAP_PRIVATE | MAP_FIXED, fd,
        2 * MMU_NARROWPTEPG * pagesize)
       == (caddr_t) - 1) {
       CERROR("second mmap (of fifth page) failed");
       anyfail();
   }
   if (mmap(mmapaddr + 2 * pagesize, pagesize, PROT_READ,
        MAP_FILE | MAP_PRIVATE | MAP_FIXED, fd, 0) == (caddr_t) - 1) {
       CERROR("third mmap (of first page) failed");
       anyfail();
   }
   CLEAN;            /*comment */
   (void)time(&t);
//      (void)printf("%s: Finished %s", argv[0], ctime(&t)); LTP Port
   ok_exit();
   tst_exit();
}
 
void ok_exit(void)
{
   tst_resm(TPASS, "Test passed\n");
   tst_rmdir();
   tst_exit();
}
 
int anyfail(void)
{
   tst_brkm(TFAIL, tst_rmdir, "Test failed\n");
}