reindent-20030715
[openafs.git] / src / tests / invalidate-file.c
1 /*
2  * Copyright (c) 2000 - 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 <sys/types.h>
40 #include <sys/mman.h>
41 #include <sys/stat.h>
42
43 #include <unistd.h>
44 #include <fcntl.h>
45
46 #include <atypes.h>
47
48 #include <kafs.h>
49
50 #include <fs.h>
51 #include <arlalib.h>
52
53 #include <err.h>
54
55 RCSID("$Id$");
56
57 #ifndef MAP_FAILED
58 #define MAP_FAILED ((void *)-1)
59 #endif
60
61 #ifdef KERBEROS
62
63 static void
64 create_write_file(char *filename)
65 {
66     int ret;
67     int fd;
68
69     fs_invalidate(filename);
70
71     fd = open(filename, O_RDWR | O_CREAT, 0666);
72     if (fd < 0)
73         err(1, "open(rw): %s", filename);
74
75     ret = write(fd, "foo", 3);
76     if (ret < 0)
77         err(1, "write");
78
79     fs_invalidate(filename);
80
81     ret = write(fd, "foo", 3);
82     if (ret < 0)
83         err(1, "write2");
84
85     ret = close(fd);
86     if (ret < 0)
87         err(1, "close");
88 }
89
90 static void
91 read_file(char *filename)
92 {
93     int ret;
94     int fd;
95     char buf[3];
96
97     fs_invalidate(filename);
98
99     fd = open(filename, O_RDONLY, 0666);
100     if (fd < 0)
101         err(1, "open(ro)");
102
103     ret = read(fd, buf, sizeof(buf));
104     if (ret < 0)
105         err(1, "read");
106
107     fs_invalidate(filename);
108
109     ret = read(fd, buf, sizeof(buf));
110     if (ret < 0)
111         err(1, "read");
112
113     ret = close(fd);
114     if (ret < 0)
115         err(1, "close");
116 }
117
118 static void
119 mmap_read_file(char *filename)
120 {
121     int fd;
122     void *v;
123     char buf[6];
124
125     fs_invalidate(filename);
126
127     fd = open(filename, O_RDONLY, 0666);
128     if (fd < 0)
129         err(1, "open(ro-mmap)");
130
131     v = mmap(NULL, 6, PROT_READ, MAP_SHARED, fd, 0);
132     if (v == (void *)MAP_FAILED)
133         err(1, "mmap(ro) %s", filename);
134
135     memcpy(buf, v, 3);
136     fs_invalidate(filename);
137     memcpy(buf, v, 3);
138
139     munmap(v, 6);
140 }
141
142 static void
143 mmap_write_file(char *filename)
144 {
145     int fd;
146     void *v;
147
148     fs_invalidate(filename);
149
150     fd = open(filename, O_RDWR, 0666);
151     if (fd < 0)
152         err(1, "open(rw-mmap)");
153
154     v = mmap(NULL, 6, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
155     if (v == (void *)MAP_FAILED)
156         err(1, "mmap(rw) %s", filename);
157
158     memcpy(v, "foo", 3);
159     fs_invalidate(filename);
160     memcpy(v, "foo", 3);
161
162     munmap(v, 6);
163     close(fd);
164 }
165
166 int
167 main(int argc, char **argv)
168 {
169     char *filename = "foo";
170
171
172 #ifdef KERBEROS
173     if (!k_hasafs())
174 #endif
175         exit(1);
176
177     create_write_file(filename);
178     read_file(filename);
179     read_file(filename);
180     read_file(filename);
181     read_file(filename);
182     mmap_read_file(filename);
183     mmap_read_file(filename);
184     mmap_read_file(filename);
185     mmap_read_file(filename);
186     mmap_write_file(filename);
187     mmap_write_file(filename);
188     mmap_write_file(filename);
189     mmap_write_file(filename);
190
191     return 0;
192 }
193
194 #else
195
196 int
197 main(int argc, char **argv)
198 {
199
200     errx(1, "no kafs support");
201 }
202 #endif