functionality-test-suite-20020114
[openafs.git] / src / tests / mmap-vs-read.c
1 /*
2  * Copyright (c) 1995 - 2001 Kungliga Tekniska Högskolan
3  * (Royal Institute of Technology, Stockholm, Sweden).
4  * All rights reserved.
5  * 
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 
17  * 3. Neither the name of the Institute nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  * 
21  * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 #ifdef HAVE_CONFIG_H
35 #include <config.h>
36 #endif
37
38 #include <stdio.h>
39 #include <stdlib.h>
40 #include <sys/types.h>
41 #include <fcntl.h>
42 #include <time.h>
43 #include <unistd.h>
44 #include <string.h>
45 #include <sys/mman.h>
46 #include <sys/stat.h>
47 #include <err.h>
48
49 #ifdef RCSID
50 RCSID("$Id$");
51 #endif
52
53 static int debug = 0;
54
55 static void
56 generate_file (const char *filename, int randomp, size_t sz)
57 {
58     int fd;
59     char *buf;
60     int i;
61
62     buf = malloc (sz);
63     if (buf == NULL)
64         err (1, "malloc %u", (unsigned)sz);
65
66     fd = open (filename, O_WRONLY | O_CREAT, 0666);
67     if (fd < 0)
68         err (1, "open %s", filename);
69
70     for (i = 0; i < sz; ++i)
71         if (randomp)
72             buf[i] = rand();
73         else
74             buf[0] = 0;
75
76     if (write (fd, buf, sz) != sz)
77         err (1, "write");
78     if (close (fd))
79         err (1, "close");
80     free (buf);
81 }
82
83 static char *
84 read_file (int fd, size_t sz)
85 {
86     char *buf;
87     ssize_t ret;
88
89     buf = malloc (sz);
90     if (buf == NULL)
91         err (1, "malloc %u", (unsigned)sz);
92     ret = read (fd, buf, sz);
93     if (ret < 0)
94         err(1, "read");
95     if (ret != sz)
96         errx(1, "short read %d < %u", (int)ret, (unsigned)sz);
97     return buf;
98 }
99
100 #ifndef MAP_FAILED
101 #define MAP_FAILED ((void *)-1)
102 #endif
103
104 static void *
105 mmap_file (int fd, size_t sz)
106 {
107     void *ret;
108
109     ret = mmap (0, sz, PROT_READ, MAP_SHARED, fd, 0);
110     if (ret == (void *)MAP_FAILED)
111         err (1, "mmap");
112     return ret;
113 }
114
115 static void __attribute__ ((__unused__))
116 print_area (unsigned char *ptr,  size_t len)
117 {
118     while (len--) {
119         printf ("%x", *ptr);
120         ptr++;
121     }
122 }
123
124 static int
125 do_test (int randomp)
126 {
127     unsigned char *malloc_buf;
128     void *mmap_buf;
129     int fd;
130     const char *file = "foo";
131     const size_t sz  = 4 * getpagesize();
132
133     generate_file (file, randomp, sz);
134
135     fd = open (file, O_RDONLY, 0);
136     if (fd < 0)
137         err (1, "open %s", file);
138
139     mmap_buf   = mmap_file (fd, sz);
140     malloc_buf = read_file (fd, sz);
141     close (fd);
142     unlink (file);
143     if (memcmp (malloc_buf, mmap_buf, sz) != 0) {
144         if (debug) {
145             printf ("type: %s\n", randomp ? "random" : "allzero");
146             printf ("read: ");
147             print_area (malloc_buf, sz);
148             printf ("\nmmap: ");
149             print_area (mmap_buf, sz);
150             printf ("\n");
151         }
152         return 1;
153     }
154     return 0;
155 }
156
157 int
158 main (int argc, char **argv)
159 {
160
161     if (argc != 1)
162         debug = 1;
163
164     srand (time(NULL));
165
166     if (do_test (0))
167         return 1;
168     if (do_test (1))
169         return 2;
170
171     return 0;
172 }