1 /* $NetBSD: t_msync.c,v 1.2 2012/03/16 06:15:17 matt Exp $ */
4 * Copyright (c) 2011 The NetBSD Foundation, Inc.
7 * This code is derived from software contributed to The NetBSD Foundation
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
31 #include <sys/cdefs.h>
32 __RCSID("$NetBSD: t_msync.c,v 1.2 2012/03/16 06:15:17 matt Exp $");
45 static const off_t off
= 512;
46 static const char path
[] = "msync";
48 static const char *msync_sync(const char *, int);
51 msync_sync(const char *garbage
, int flags
)
53 char *buf
, *map
= MAP_FAILED
;
54 const char *str
= NULL
;
60 * Create a temporary file, write
61 * one page to it, and map the file.
68 for (i
= 0; i
< (size_t)page
; i
++)
71 fd
= open(path
, O_RDWR
| O_CREAT
, 0700);
74 str
= "failed to open";
82 rv
= write(fd
, buf
, sizeof(buf
));
85 str
= "failed to write";
92 map
= mmap(NULL
, page
, PROT_READ
| PROT_WRITE
, MAP_FILE
|MAP_PRIVATE
,
95 if (map
== MAP_FAILED
) {
96 str
= "failed to map";
101 * Seek to an arbitrary offset and
102 * write garbage to this position.
104 if (lseek(fd
, off
, SEEK_SET
) != off
) {
105 str
= "failed to seek";
109 len
= strlen(garbage
);
110 rv
= write(fd
, garbage
, len
);
112 if (rv
!= (ssize_t
)len
) {
113 str
= "failed to write garbage";
118 * Synchronize the mapping and verify
119 * that garbage is at the given offset.
121 if (msync(map
, page
, flags
) != 0) {
122 str
= "failed to msync";
126 if (memcmp(map
+ off
, garbage
, len
) != 0) {
127 str
= "msync did not synchronize";
137 if (map
!= MAP_FAILED
)
138 (void)munmap(map
, page
);
144 ATF_TC_HEAD(msync_async
, tc
)
146 atf_tc_set_md_var(tc
, "descr", "Test of msync(2), MS_ASYNC");
149 ATF_TC_BODY(msync_async
, tc
)
153 str
= msync_sync("garbage", MS_ASYNC
);
156 atf_tc_fail("%s", str
);
160 ATF_TC_HEAD(msync_err
, tc
)
162 atf_tc_set_md_var(tc
, "descr", "Test error conditions in msync(2)");
165 ATF_TC_BODY(msync_err
, tc
)
168 char *map
= MAP_FAILED
;
171 * Test that invalid flags error out.
173 ATF_REQUIRE(msync_sync("error", -1) != NULL
);
174 ATF_REQUIRE(msync_sync("error", INT_MAX
) != NULL
);
179 * Map a page and then unmap to get an unmapped address.
181 map
= mmap(NULL
, page
, PROT_READ
| PROT_WRITE
, MAP_ANON
| MAP_PRIVATE
,
183 ATF_REQUIRE(map
!= MAP_FAILED
);
185 (void)munmap(map
, page
);
187 ATF_REQUIRE(msync(map
, page
, MS_SYNC
) != 0);
188 ATF_REQUIRE(errno
== EFAULT
);
191 ATF_TC(msync_invalidate
);
192 ATF_TC_HEAD(msync_invalidate
, tc
)
194 atf_tc_set_md_var(tc
, "descr", "Test of msync(2), MS_INVALIDATE");
197 ATF_TC_BODY(msync_invalidate
, tc
)
201 str
= msync_sync("garbage", MS_INVALIDATE
);
204 atf_tc_fail("%s", str
);
208 ATF_TC_HEAD(msync_sync
, tc
)
210 atf_tc_set_md_var(tc
, "descr", "Test of msync(2), MS_SYNC");
213 ATF_TC_BODY(msync_sync
, tc
)
217 str
= msync_sync("garbage", MS_SYNC
);
220 atf_tc_fail("%s", str
);
226 page
= sysconf(_SC_PAGESIZE
);
228 ATF_REQUIRE(page
>= 0);
229 ATF_REQUIRE(page
> off
);
231 ATF_TP_ADD_TC(tp
, msync_async
);
232 ATF_TP_ADD_TC(tp
, msync_err
);
233 ATF_TP_ADD_TC(tp
, msync_invalidate
);
234 ATF_TP_ADD_TC(tp
, msync_sync
);
236 return atf_no_error();