Home | History | Annotate | Line # | Download | only in sys
      1 /* $NetBSD: t_msync.c,v 1.3 2017/01/14 20:52:42 christos Exp $ */
      2 
      3 /*-
      4  * Copyright (c) 2011 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by Jukka Ruohonen.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     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.
     18  *
     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.
     30  */
     31 #include <sys/cdefs.h>
     32 __RCSID("$NetBSD: t_msync.c,v 1.3 2017/01/14 20:52:42 christos Exp $");
     33 
     34 #include <sys/mman.h>
     35 
     36 #include <atf-c.h>
     37 #include <errno.h>
     38 #include <fcntl.h>
     39 #include <limits.h>
     40 #include <stdlib.h>
     41 #include <string.h>
     42 #include <unistd.h>
     43 
     44 static long		page = 0;
     45 static const off_t	off = 512;
     46 static const char	path[] = "msync";
     47 
     48 static const char	*msync_sync(const char *, int);
     49 
     50 static const char *
     51 msync_sync(const char *garbage, int flags)
     52 {
     53 	char *buf, *map = MAP_FAILED;
     54 	const char *str = NULL;
     55 	size_t len;
     56 	int fd, rv;
     57 
     58 	/*
     59 	 * Create a temporary file, write
     60 	 * one page to it, and map the file.
     61 	 */
     62 	buf = malloc(page);
     63 
     64 	if (buf == NULL)
     65 		return NULL;
     66 
     67 	memset(buf, 'x', page);
     68 
     69 	fd = open(path, O_RDWR | O_CREAT, 0700);
     70 
     71 	if (fd < 0) {
     72 		free(buf);
     73 		return "failed to open";
     74 	}
     75 
     76 	ATF_REQUIRE_MSG(write(fd, buf, page) != -1, "write(2) failed: %s",
     77 	    strerror(errno));
     78 
     79 	map = mmap(NULL, page, PROT_READ | PROT_WRITE, MAP_FILE|MAP_PRIVATE,
     80 	     fd, 0);
     81 
     82 	if (map == MAP_FAILED) {
     83 		str = "failed to map";
     84 		goto out;
     85 	}
     86 
     87 	/*
     88 	 * Seek to an arbitrary offset and
     89 	 * write garbage to this position.
     90 	 */
     91 	if (lseek(fd, off, SEEK_SET) != off) {
     92 		str = "failed to seek";
     93 		goto out;
     94 	}
     95 
     96 	len = strlen(garbage);
     97 	rv = write(fd, garbage, len);
     98 
     99 	if (rv != (ssize_t)len) {
    100 		str = "failed to write garbage";
    101 		goto out;
    102 	}
    103 
    104 	/*
    105 	 * Synchronize the mapping and verify
    106 	 * that garbage is at the given offset.
    107 	 */
    108 	if (msync(map, page, flags) != 0) {
    109 		str = "failed to msync";
    110 		goto out;
    111 	}
    112 
    113 	if (memcmp(map + off, garbage, len) != 0) {
    114 		str = "msync did not synchronize";
    115 		goto out;
    116 	}
    117 
    118 out:
    119 	free(buf);
    120 
    121 	(void)close(fd);
    122 	(void)unlink(path);
    123 
    124 	if (map != MAP_FAILED)
    125 		(void)munmap(map, page);
    126 
    127 	return str;
    128 }
    129 
    130 ATF_TC(msync_async);
    131 ATF_TC_HEAD(msync_async, tc)
    132 {
    133 	atf_tc_set_md_var(tc, "descr", "Test of msync(2), MS_ASYNC");
    134 }
    135 
    136 ATF_TC_BODY(msync_async, tc)
    137 {
    138 	const char *str;
    139 
    140 	str = msync_sync("garbage", MS_ASYNC);
    141 
    142 	if (str != NULL)
    143 		atf_tc_fail("%s", str);
    144 }
    145 
    146 ATF_TC(msync_err);
    147 ATF_TC_HEAD(msync_err, tc)
    148 {
    149 	atf_tc_set_md_var(tc, "descr", "Test error conditions in msync(2)");
    150 }
    151 
    152 ATF_TC_BODY(msync_err, tc)
    153 {
    154 
    155 	char *map = MAP_FAILED;
    156 
    157 	/*
    158 	 * Test that invalid flags error out.
    159 	 */
    160 	ATF_REQUIRE(msync_sync("error", -1) != NULL);
    161 	ATF_REQUIRE(msync_sync("error", INT_MAX) != NULL);
    162 
    163 	errno = 0;
    164 
    165 	/*
    166 	 * Map a page and then unmap to get an unmapped address.
    167 	 */
    168 	map = mmap(NULL, page, PROT_READ | PROT_WRITE, MAP_ANON | MAP_PRIVATE,
    169 	    -1, 0);
    170 	ATF_REQUIRE(map != MAP_FAILED);
    171 
    172 	(void)munmap(map, page);
    173 
    174 	ATF_REQUIRE(msync(map, page, MS_SYNC) != 0);
    175 	ATF_REQUIRE(errno == EFAULT);
    176 }
    177 
    178 ATF_TC(msync_invalidate);
    179 ATF_TC_HEAD(msync_invalidate, tc)
    180 {
    181 	atf_tc_set_md_var(tc, "descr", "Test of msync(2), MS_INVALIDATE");
    182 }
    183 
    184 ATF_TC_BODY(msync_invalidate, tc)
    185 {
    186 	const char *str;
    187 
    188 	str = msync_sync("garbage", MS_INVALIDATE);
    189 
    190 	if (str != NULL)
    191 		atf_tc_fail("%s", str);
    192 }
    193 
    194 ATF_TC(msync_sync);
    195 ATF_TC_HEAD(msync_sync, tc)
    196 {
    197 	atf_tc_set_md_var(tc, "descr", "Test of msync(2), MS_SYNC");
    198 }
    199 
    200 ATF_TC_BODY(msync_sync, tc)
    201 {
    202 	const char *str;
    203 
    204 	str = msync_sync("garbage", MS_SYNC);
    205 
    206 	if (str != NULL)
    207 		atf_tc_fail("%s", str);
    208 }
    209 
    210 ATF_TP_ADD_TCS(tp)
    211 {
    212 
    213 	page = sysconf(_SC_PAGESIZE);
    214 
    215 	ATF_REQUIRE(page >= 0);
    216 	ATF_REQUIRE(page > off);
    217 
    218 	ATF_TP_ADD_TC(tp, msync_async);
    219 	ATF_TP_ADD_TC(tp, msync_err);
    220 	ATF_TP_ADD_TC(tp, msync_invalidate);
    221 	ATF_TP_ADD_TC(tp, msync_sync);
    222 
    223 	return atf_no_error();
    224 }
    225