Whamcloud - gitweb
LU-14095 gss: use RCU protection for sunrpc cache
[fs/lustre-release.git] / lustre / tests / test_brw.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2014, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  */
32
33 /* for O_DIRECT */
34 #ifndef _GNU_SOURCE
35 #define _GNU_SOURCE
36 #endif
37
38 #include <inttypes.h>
39 #include <stdio.h>
40 #include <string.h>
41 #include <unistd.h>
42 #include <fcntl.h>
43 #include <stdlib.h>
44 #include <errno.h>
45 #include <sys/mman.h>
46 #include <sys/types.h>
47 #include <sys/stat.h>
48 #include <linux/types.h>
49
50 #define READ  1
51 #define WRITE 2
52
53 #define LPDS sizeof(uint64_t)
54 int block_debug_setup(void *addr, int len, uint64_t off, uint64_t id)
55 {
56         off = htole64(off);
57         id = htole64(id);
58         memcpy(addr, (char *)&off, LPDS);
59         memcpy(addr + LPDS, (char *)&id, LPDS);
60
61         addr += len - LPDS - LPDS;
62         memcpy(addr, (char *)&off, LPDS);
63         memcpy(addr + LPDS, (char *)&id, LPDS);
64
65         return 0;
66 }
67
68 int block_debug_check(char *who, void *addr, int size, uint64_t off,
69                       uint64_t id)
70 {
71         uint64_t ne_off;
72         int err = 0;
73
74         ne_off = le64toh(off);
75         id = le64toh(id);
76         if (memcmp(addr, (char *)&ne_off, LPDS)) {
77                 fprintf(stderr, "%s: for offset %"PRIu64" off: %"PRIx64" != %"PRIx64"\n",
78                         who, off, *(uint64_t *)addr, ne_off);
79                 err = -EINVAL;
80         }
81         if (memcmp(addr + LPDS, (char *)&id, LPDS)) {
82                 fprintf(stderr, "%s: for offset %"PRIu64" id: %"PRIx64" != %"PRIx64"\n",
83                         who, off, *(uint64_t *)(addr + LPDS), id);
84                 err = -EINVAL;
85         }
86
87         addr += size - LPDS - LPDS;
88         if (memcmp(addr, (char *)&ne_off, LPDS)) {
89                 fprintf(stderr, "%s: for offset %"PRIu64" end off: %"PRIx64" != %"PRIx64"\n",
90                         who, off, *(uint64_t *)addr, ne_off);
91                 err = -EINVAL;
92         }
93         if (memcmp(addr + LPDS, (char *)&id, LPDS)) {
94                 fprintf(stderr, "%s: for offset %"PRIu64" end id: %"PRIx64" != %"PRIx64"\n",
95                         who, off, *(uint64_t *)(addr + LPDS), id);
96                 err = -EINVAL;
97         }
98
99         return err;
100 }
101
102 #undef LPDS
103
104 void usage(char *prog)
105 {
106         fprintf(stderr,
107                 "usage: %s file count [[d]{r|w|rw} [pages_per_vec [objid]]]\n",
108                 prog);
109         exit(1);
110 }
111
112 int main(int argc, char **argv)
113 {
114         int fd;
115         char *buf;
116         long long count, last;
117         long pg_vec, len;
118         uint64_t objid, offset;
119         struct stat st;
120         int flags = 0;
121         int cmd = 0;
122         char *end;
123         int rc;
124
125         if (argc < 3 || argc > 6)
126                 usage(argv[0]);
127
128         count = strtoull(argv[2], &end, 0);
129         if (*end) {
130                 fprintf(stderr, "%s: invalid count '%s'\n", argv[0], argv[2]);
131                 usage(argv[0]);
132         }
133         if (argc >= 4) {
134                 if (strchr(argv[3], 'r')) {
135                         cmd = READ;
136                         flags = O_RDONLY;
137                 }
138                 if (strchr(argv[3], 'w')) {
139                         cmd |= WRITE;
140                         flags = O_RDWR | O_CREAT;
141                 }
142                 if (strchr(argv[3], 'd')) {
143 #ifdef O_DIRECT
144                         flags |= O_DIRECT;
145 #else
146                         fprintf(stderr,
147                                 "%s: O_DIRECT not supported in this build\n",
148                                 argv[0]);
149                         exit(1);
150 #endif
151                 }
152                 if (!cmd)
153                         usage(argv[0]);
154         } else {
155                 cmd = READ | WRITE;
156                 flags = O_RDWR | O_CREAT;
157 #ifdef O_DIRECT
158                 flags |= O_DIRECT;
159 #else
160                 fprintf(stderr, "%s: warning: not setting O_DIRECT\n",
161                         argv[0]);
162 #endif
163         }
164
165         if (argc >= 5) {
166                 pg_vec = strtoul(argv[4], &end, 0);
167                 if (*end) {
168                         fprintf(stderr, "%s: invalid pages_per_vec '%s'\n",
169                                 argv[0], argv[4]);
170                         usage(argv[0]);
171                 }
172         } else {
173                 pg_vec = 16;
174         }
175
176         if (argc >= 6) {
177                 objid = strtoull(argv[5], &end, 0);
178                 if (*end) {
179                         fprintf(stderr, "%s: invalid objid '%s'\n",
180                                 argv[0], argv[5]);
181                         usage(argv[0]);
182                 }
183         } else {
184                 objid = 3;
185         }
186
187         printf("%s: %s on %s(objid %"PRIx64") for %llux%ld pages\n",
188                argv[0],
189 #ifdef O_DIRECT
190                flags & O_DIRECT ? "directio" : "i/o",
191 #else
192                "i/o",
193 #endif
194                argv[1], objid, count, pg_vec);
195
196         fd = open(argv[1], flags | O_LARGEFILE);
197         if (fd == -1) {
198                 fprintf(stderr, "%s: cannot open %s:  %s\n", argv[0],
199                         argv[1], strerror(errno));
200                 return 3;
201         }
202
203         rc = fstat(fd, &st);
204         if (rc < 0) {
205                 fprintf(stderr, "%s: cannot stat %s: %s\n", argv[0],
206                         argv[1], strerror(errno));
207                 return 4;
208         }
209
210         len = pg_vec * st.st_blksize;
211         last = (long long)count * len;
212
213         buf = mmap(0, len, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANON,
214                    0, 0);
215         if (buf == MAP_FAILED) {
216                 fprintf(stderr, "%s: no buffer memory %s\n",
217                         argv[0], strerror(errno));
218                 return 2;
219         }
220
221         for (offset = 0; offset < last && cmd & WRITE; offset += len) {
222                 unsigned int i;
223
224                 for (i = 0; i < len; i += st.st_blksize)
225                         block_debug_setup(buf + i, st.st_blksize,
226                                           offset + i, objid);
227
228                 rc = write(fd, buf, len);
229
230                 for (i = 0; i < len; i += st.st_blksize) {
231                         if (block_debug_check("write", buf + i, st.st_blksize,
232                                               offset + i, objid))
233                                 return 10;
234                 }
235
236                 if (rc != len) {
237                         fprintf(stderr, "%s: write error: %s, rc %d != %ld\n",
238                                 argv[0], strerror(errno), rc, len);
239                         return 4;
240                 }
241         }
242
243         if (lseek(fd, 0, SEEK_SET) != 0) {
244                 fprintf(stderr, "%s: cannot seek %s\n",
245                         argv[0], strerror(errno));
246                 return 5;
247         }
248
249         for (offset = 0; offset < last && cmd & READ; offset += len) {
250                 int i;
251
252                 rc = read(fd, buf, len);
253                 if (rc != len) {
254                         fprintf(stderr, "%s: read error: %s, rc %d != %ld\n",
255                                 argv[0], strerror(errno), rc, len);
256                         return 6;
257                 }
258
259                 for (i = 0; i < len; i += st.st_blksize) {
260                         if (block_debug_check("read", buf + i, st.st_blksize,
261                                               offset + i, objid))
262                                 return 11;
263                 }
264         }
265
266         return 0;
267 }