Whamcloud - gitweb
LU-14095 gss: use RCU protection for sunrpc cache
[fs/lustre-release.git] / lustre / tests / rwv.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, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 021110-1307, USA
20  *
21  * GPL HEADER END
22  */
23 /*
24  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
25  * Use is subject to license terms.
26  *
27  * Copyright (c) 2014, 2017, Intel Corporation.
28  */
29 /*
30  * This file is part of Lustre, http://www.lustre.org/
31  * Lustre is a trademark of Sun Microsystems, Inc.
32  *
33  * lustre/tests/rwv.c
34  */
35
36 #include <stdio.h>
37 #include <sys/types.h>
38 #include <sys/stat.h>
39 #include <sys/uio.h>
40 #include <sys/mman.h>
41 #include <fcntl.h>
42 #include <errno.h>
43 #include <stdlib.h>
44 #include <unistd.h>
45
46 #include <lustre/lustreapi.h>
47
48 #define ACT_NONE        0
49 #define ACT_READ        1
50 #define ACT_WRITE       2
51 #define ACT_SEEK        4
52 #define ACT_READHOLE    8
53 #define ACT_VERIFY      16
54 #define ACT_OUTPUT      32
55
56 void usage()
57 {
58         printf("usage: rwv -f filename <-r|-w> [-a] [-z] [-d] [-v]");
59         printf(" [-s offset] [-o[outf]] -n iovcnt SIZE1 SIZE2 SIZE3...\n");
60         printf("-a  append IO (O_APPEND)\n");
61         printf("-r  file read (O_RDONLY)\n");
62         printf("-w  file write (O_WRONLY)\n");
63         printf("-s  set the start pos of the read/write test\n");
64         printf("-z  test for read hitting hole\n");
65         printf("-d  create flags (O_LOV_DELAY_CREATE)\n");
66         printf("-v  verify the data content of read\n");
67         printf("-o  write the file content of read to an optional file\n");
68 }
69
70 int data_verify(struct iovec *iov, int iovcnt, char c)
71 {
72         int i;
73
74         for (i = 0; i < iovcnt; i++) {
75                 size_t count = iov[i].iov_len;
76                 char *s = iov[i].iov_base;
77
78                 for (; count > 0; ++s, count--) {
79                         if (*s != c) {
80                                 printf("Data mismatch %x: %x\n", *s, c);
81                                 return 1;
82                         }
83                 }
84         }
85         return 0;
86 }
87
88 int main(int argc, char **argv)
89 {
90         int c;
91         int fd;
92         int rc = 0;
93         int flags = 0;
94         int iovcnt = 0;
95         int act = ACT_NONE;
96         int out_fd = -1;
97         char pad = 0xba;
98         char *end;
99         char *fname = "FILE";
100         unsigned long len = 0;
101         struct iovec *iov;
102         off64_t offset = 0;
103
104         while ((c = getopt(argc, argv, "f:n:s:rwahvdzo::")) != -1) {
105                 switch (c) {
106                 case 'f':
107                         fname = optarg;
108                         break;
109                 case 'n':
110                         iovcnt = strtoul(optarg, &end, 0);
111                         if (*end) {
112                                 printf("Bad iov count: %s\n", optarg);
113                                 return 1;
114                         }
115                         if (iovcnt > UIO_MAXIOV || iovcnt <= 0) {
116                                 printf("Wrong iov count\n");
117                                 return 1;
118                         }
119                         break;
120                 case 's':
121                         act |= ACT_SEEK;
122                         offset = strtoull(optarg, &end, 0);
123                         if (*end) {
124                                 printf("Bad seek offset: %s\n", optarg);
125                                 return 1;
126                         }
127                         break;
128                 case 'w':
129                         act |= ACT_WRITE;
130                         flags |= O_WRONLY | O_CREAT;
131                         break;
132                 case 'r':
133                         act |= ACT_READ;
134                         flags |= O_RDONLY;
135                         break;
136                 case 'a':
137                         flags |= O_APPEND;
138                         break;
139                 case 'd':
140                         flags |= O_LOV_DELAY_CREATE;
141                         break;
142                 case 'z':
143                         pad = 0;
144                         act |= ACT_READHOLE;
145                         break;
146                 case 'v':
147                         act |= ACT_VERIFY;
148                         break;
149                 case 'o':
150                         act |= ACT_OUTPUT;
151                         if (optarg)
152                                 out_fd = open(optarg, O_WRONLY | O_CREAT, 0644);
153                         else
154                                 out_fd = fileno(stdout);
155                         break;
156                 case 'h':
157                         usage();
158                         break;
159                 }
160         }
161
162         if (act == ACT_NONE) {
163                 usage();
164                 return 1;
165         }
166
167         if ((act & ACT_READ) &&  (act & ACT_WRITE)) {
168                 printf("Read and write test should be exclusive\n");
169                 return 1;
170         }
171
172         if (act & ACT_OUTPUT && (!(act & ACT_READ) || out_fd < 0)) {
173                 printf("-o not in read mode or cannot open the output file");
174                 return 1;
175         }
176
177         if (argc - optind < iovcnt) {
178                 printf("Not enough parameters for iov size\n");
179                 return 1;
180         }
181
182         iov = (struct iovec *)malloc(iovcnt * sizeof(struct iovec));
183         if (!iov) {
184                 printf("No memory %s\n", strerror(errno));
185                 return 1;
186         }
187
188         for (c = 0; c < iovcnt; c++) {
189                 struct iovec *iv = &iov[c];
190
191                 iv->iov_len = strtoul(argv[optind++], &end, 0);
192                 if (*end) {
193                         printf("Error iov size\n");
194                         rc = 1;
195                         goto out;
196                 }
197                 iv->iov_base = mmap(NULL, iv->iov_len, PROT_READ | PROT_WRITE,
198                                     MAP_PRIVATE | MAP_ANON, 0, 0);
199                 if (iv->iov_base == MAP_FAILED) {
200                         printf("No memory %s\n", strerror(errno));
201                         rc = 1;
202                         goto out;
203                 }
204                 if (act & ACT_WRITE)
205                         memset(iv->iov_base, pad, iv->iov_len);
206                 len += iv->iov_len;
207         }
208
209         fd = open(fname, O_LARGEFILE | flags, 0644);
210         if (fd == -1) {
211                 printf("Cannot open %s:%s\n", fname, strerror(errno));
212                 return 1;
213         }
214
215         if ((act & ACT_SEEK) && (lseek64(fd, offset, SEEK_SET) < 0)) {
216                 printf("Cannot seek %s\n", strerror(errno));
217                 rc = 1;
218                 goto out;
219         }
220
221         if (act & ACT_WRITE) {
222                 rc = writev(fd, iov, iovcnt);
223                 if (rc != len) {
224                         printf("Write error: %s (rc = %d, len = %ld)\n",
225                                strerror(errno), rc, len);
226                         rc = 1;
227                         goto out;
228                 }
229         } else if (act & ACT_READ) {
230                 rc = readv(fd, iov, iovcnt);
231                 if (rc != len) {
232                         printf("Read error: %s rc = %d\n", strerror(errno), rc);
233                         rc = 1;
234                         goto out;
235                 }
236
237                 /* It should return zeroed buf if the read hits hole.*/
238                 if (((act & ACT_READHOLE) || (act & ACT_VERIFY)) &&
239                     data_verify(iov, iovcnt, pad)) {
240                         rc = 1;
241                         goto out;
242                 }
243
244                 if (act & ACT_OUTPUT) {
245                         rc = writev(out_fd, iov, iovcnt);
246                         if (rc != len) {
247                                 printf("write error: %s rc = %d\n",
248                                        strerror(errno), rc);
249                                 rc = 1;
250                                 goto out;
251                         }
252                 }
253         }
254
255         rc = 0;
256 out:
257         if (iov)
258                 free(iov);
259         if (out_fd >= 0)
260                 close(out_fd);
261         return rc;
262 }