Whamcloud - gitweb
LU-17705 ptlrpc: replace synchronize_rcu() with rcu_barrier()
[fs/lustre-release.git] / lustre / tests / ll_dirstripe_verify.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) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  *
31  * lustre/tests/ll_dirstripe_verify.c
32  *
33  * ll_dirstripe_verify <dir> <file>:
34  * - to verify if the file has the same lov_user_md setting as the parent dir.
35  * - if dir's offset is set -1, ll_dirstripe_verify <dir> <file1> <file2>
36  *      is used to further verify if file1 and file2's obdidx is continuous.
37  */
38
39 #include <stdio.h>
40 #include <stdlib.h>
41 #include <string.h>
42 #include <ctype.h>
43 #include <sys/ioctl.h>
44 #include <unistd.h>
45 #include <fcntl.h>
46 #include <errno.h>
47 #include <dirent.h>
48
49 #include <libcfs/util/param.h>
50 #include <libcfs/util/string.h>
51 #include <lustre/lustreapi.h>
52 #include <linux/lustre/lustre_idl.h>
53
54 #define MAX_LOV_UUID_COUNT      1000
55
56 /*
57  * Returns bytes read on success and a negative value on failure.
58  * If zero bytes are read it will be treated as failure as such
59  * zero cannot be returned from this function.
60  */
61 int read_proc_entry(char *proc_path, char *buf, int len)
62 {
63         int rc, fd;
64
65         memset(buf, 0, len);
66
67         fd = open(proc_path, O_RDONLY);
68         if (fd < 0) {
69                 llapi_error(LLAPI_MSG_ERROR, -errno, "cannot open '%s'",
70                             proc_path);
71                 return -2;
72         }
73
74         rc = read(fd, buf, len - 1);
75         if (rc < 0) {
76                 llapi_error(LLAPI_MSG_ERROR, -errno,
77                             "error reading from '%s'", proc_path);
78                 rc = -3;
79         } else if (rc == 0) {
80                 llapi_err_noerrno(LLAPI_MSG_ERROR,
81                                   "read zero bytes from '%s'", proc_path);
82                 rc = -4;
83         } else if (buf[rc - 1] == '\n') {
84                 buf[rc - 1] = '\0'; /* Remove trailing newline */
85         }
86
87         close(fd);
88
89         return rc;
90 }
91
92 int compare(struct obd_uuid *puuid, struct lov_user_md *lum_dir,
93             struct lov_user_md *lum_file1, struct lov_user_md *lum_file2)
94 {
95         int stripe_count = 0, min_stripe_count = 0, def_stripe_count = 1;
96         int stripe_size = 0;
97         int stripe_offset = -1;
98         int ost_count;
99         char buf[128];
100         glob_t path;
101         int i;
102
103         if (cfs_get_param_paths(&path, "lov/%s/stripecount", puuid->uuid) != 0)
104                 return 2;
105         if (read_proc_entry(path.gl_pathv[0], buf, sizeof(buf)) < 0) {
106                 cfs_free_param_data(&path);
107                 return 5;
108         }
109         cfs_free_param_data(&path);
110         def_stripe_count = (short)atoi(buf);
111
112         if (cfs_get_param_paths(&path, "lov/%s/numobd", puuid->uuid) != 0)
113                 return 2;
114         if (read_proc_entry(path.gl_pathv[0], buf, sizeof(buf)) < 0) {
115                 cfs_free_param_data(&path);
116                 return 6;
117         }
118         cfs_free_param_data(&path);
119         ost_count = atoi(buf);
120
121         if (!lum_dir) {
122                 stripe_count = def_stripe_count;
123                 min_stripe_count = -1;
124         } else {
125                 stripe_count = (signed short)lum_dir->lmm_stripe_count;
126                 printf("dir stripe %d, ", stripe_count);
127                 min_stripe_count = 1;
128         }
129
130         printf("default stripe %d, ost count %d\n",
131                def_stripe_count, ost_count);
132
133         if (stripe_count == 0) {
134                 min_stripe_count = -1;
135                 stripe_count = 1;
136         }
137
138         stripe_count = (stripe_count > 0 && stripe_count <= ost_count) ?
139                                                 stripe_count : ost_count;
140         min_stripe_count = min_stripe_count > 0 ? stripe_count :
141                                                 ((stripe_count + 1) / 2);
142
143         if (lum_file1->lmm_stripe_count != stripe_count ||
144             lum_file1->lmm_stripe_count < min_stripe_count) {
145                 llapi_err_noerrno(LLAPI_MSG_ERROR,
146                                   "file1 stripe count %d != dir %d\n",
147                                   lum_file1->lmm_stripe_count, stripe_count);
148                 return 7;
149         }
150
151         if (lum_file1->lmm_stripe_count < stripe_count)
152                 llapi_err_noerrno(LLAPI_MSG_WARN,
153                                   "warning: file1 used fewer stripes %d < dir %d (likely due to bug 4900)\n",
154                                   lum_file1->lmm_stripe_count, stripe_count);
155
156         if (lum_dir)
157                 stripe_size = (int)lum_dir->lmm_stripe_size;
158         if (stripe_size == 0) {
159                 if (cfs_get_param_paths(&path, "lov/%s/stripesize",
160                                         puuid->uuid) != 0)
161                         return 2;
162                 if (read_proc_entry(path.gl_pathv[0], buf, sizeof(buf)) < 0) {
163                         cfs_free_param_data(&path);
164                         return 5;
165                 }
166                 cfs_free_param_data(&path);
167
168                 stripe_size = atoi(buf);
169         }
170
171         if (lum_file1->lmm_stripe_size != stripe_size) {
172                 llapi_err_noerrno(LLAPI_MSG_ERROR,
173                                   "file1 stripe size %d != dir %d\n",
174                                   lum_file1->lmm_stripe_size, stripe_size);
175                 return 8;
176         }
177
178         if (lum_dir)
179                 stripe_offset = (short int)lum_dir->lmm_stripe_offset;
180         if (stripe_offset != -1) {
181                 for (i = 0; i < stripe_count; i++)
182                         if (lum_file1->lmm_objects[i].l_ost_idx !=
183                             (stripe_offset + i) % ost_count) {
184                                 llapi_err_noerrno(LLAPI_MSG_WARN,
185                                                   "warning: file1 non-sequential stripe[%d] %d != %d\n",
186                                                   i, lum_file1->lmm_objects[i].l_ost_idx,
187                                                   (stripe_offset + i) %
188                                                   ost_count);
189                         }
190         } else if (lum_file2) {
191                 int next, idx, stripe = stripe_count - 1;
192
193                 next = (lum_file1->lmm_objects[stripe].l_ost_idx + 1) %
194                         ost_count;
195                 idx = lum_file2->lmm_objects[0].l_ost_idx;
196                 if (idx != next) {
197                         llapi_err_noerrno(LLAPI_MSG_WARN,
198                                           "warning: non-sequential file1 stripe[%d] %d != file2 stripe[0] %d\n",
199                                           stripe,
200                                           lum_file1->lmm_objects[stripe].l_ost_idx,
201                                           idx);
202                 }
203         }
204
205         return 0;
206 }
207
208 int compare_lum(struct obd_uuid *puuid, struct lov_user_md *lum_dir,
209                 struct lov_user_md *lum_file1, struct lov_user_md *lum_file2)
210 {
211         struct lov_comp_md_v1 *comp_dir, *comp_file1;
212         struct lov_user_md *sub_dir, *sub_file1;
213         int i, rc = 0;
214
215         if (!lum_dir || lum_dir->lmm_magic != LOV_MAGIC_COMP_V1)
216                 return compare(puuid, lum_dir, lum_file1, lum_file2);
217
218         comp_dir = (struct lov_comp_md_v1 *)lum_dir;
219         comp_file1 = (struct lov_comp_md_v1 *)lum_file1;
220
221         if (lum_file1->lmm_magic != lum_dir->lmm_magic) {
222                 llapi_err_noerrno(LLAPI_MSG_ERROR, "file1 magic %#x != %#x\n",
223                                   lum_file1->lmm_magic, lum_dir->lmm_magic);
224                 return 10;
225         }
226
227         if (comp_file1->lcm_entry_count != comp_dir->lcm_entry_count) {
228                 llapi_err_noerrno(LLAPI_MSG_ERROR, "file1 comp cnt %d != %d\n",
229                                   comp_file1->lcm_entry_count,
230                                   comp_dir->lcm_entry_count);
231                 return 11;
232         }
233
234         for (i = 0; i < comp_dir->lcm_entry_count; i++) {
235                 sub_dir = (struct lov_user_md *)((char *)comp_dir +
236                                 comp_dir->lcm_entries[i].lcme_offset);
237                 sub_file1 = (struct lov_user_md *)((char *)comp_file1 +
238                                 comp_file1->lcm_entries[i].lcme_offset);
239
240                 rc = compare(puuid, sub_dir, sub_file1, NULL);
241                 if (rc)
242                         break;
243         }
244
245         return rc;
246 }
247
248 int main(int argc, char **argv)
249 {
250         struct lov_user_md *lum_dir, *lum_file1 = NULL, *lum_file2 = NULL;
251         struct obd_uuid uuid;
252         int lum_size, rc;
253         DIR *dir;
254
255         if (argc < 3) {
256                 llapi_err_noerrno(LLAPI_MSG_ERROR,
257                                   "Usage: %s <dirname> <filename1> [filename2]\n",
258                                   argv[0]);
259                 return 1;
260         }
261
262         dir = opendir(argv[1]);
263         if (!dir) {
264                 rc = -errno;
265                 llapi_error(LLAPI_MSG_ERROR, rc,
266                             "error: %s opendir failed", argv[1]);
267                 return rc;
268         }
269
270         lum_size = lov_user_md_size(MAX_LOV_UUID_COUNT, LOV_USER_MAGIC);
271         lum_dir = (struct lov_user_md *)malloc(lum_size);
272         if (!lum_dir) {
273                 rc = -ENOMEM;
274                 llapi_error(LLAPI_MSG_ERROR, rc,
275                             "error: can't allocate %d bytes for dir EA",
276                             lum_size);
277                 goto cleanup;
278         }
279
280         rc = llapi_file_get_stripe(argv[1], lum_dir);
281         if (rc == -ENODATA) {
282                 char root[PATH_MAX], path[PATH_MAX + 2];
283
284                 rc = llapi_search_mounts(argv[1], 0, root, NULL);
285                 if (rc) {
286                         llapi_error(LLAPI_MSG_ERROR, rc,
287                                     "error: can't get root path for %s\n",
288                                     argv[1]);
289                         goto cleanup;
290                 }
291
292                 snprintf(path, sizeof(path), "%s/.", root);
293                 rc = llapi_file_get_stripe(path, lum_dir);
294                 if (rc == -ENODATA) {
295                         free(lum_dir);
296                         lum_dir = NULL;
297                 } else if (rc) {
298                         llapi_error(LLAPI_MSG_ERROR, rc,
299                                     "error: cant't get root's LOVEA for %s\n",
300                                     path);
301                         goto cleanup;
302                 }
303         } else if (rc) {
304                 llapi_error(LLAPI_MSG_ERROR, rc,
305                             "error: can't get LOVEA for %s", argv[1]);
306                 goto cleanup;
307         }
308
309         /* XXX should be llapi_lov_getname() */
310         rc = llapi_file_get_lov_uuid(argv[1], &uuid);
311         if (rc) {
312                 llapi_error(LLAPI_MSG_ERROR, rc,
313                             "error: can't get lov name for %s",
314                             argv[1]);
315                 return rc;
316         }
317
318         lum_file1 = malloc(lum_size);
319         if (!lum_file1) {
320                 rc = -ENOMEM;
321                 llapi_error(LLAPI_MSG_ERROR, rc,
322                             "error: can't allocate %d bytes for EA",
323                             lum_size);
324                 goto cleanup;
325         }
326
327         rc = llapi_file_get_stripe(argv[2], lum_file1);
328         if (rc) {
329                 llapi_error(LLAPI_MSG_ERROR, rc,
330                             "error: unable to get EA for %s", argv[2]);
331                 goto cleanup;
332         }
333
334         if (argc == 4) {
335                 lum_file2 = (struct lov_user_md *)malloc(lum_size);
336                 if (!lum_file2) {
337                         rc = -ENOMEM;
338                         llapi_error(LLAPI_MSG_ERROR, rc,
339                                     "error: can't allocate %d bytes for file2 EA",
340                                     lum_size);
341                         goto cleanup;
342                 }
343
344                 rc = llapi_file_get_stripe(argv[3], lum_file2);
345                 if (rc) {
346                         llapi_error(LLAPI_MSG_ERROR, rc,
347                                     "error: can't get EA for %s", argv[3]);
348                         goto cleanup;
349                 }
350         }
351
352         rc = compare_lum(&uuid, lum_dir, lum_file1, lum_file2);
353
354 cleanup:
355         closedir(dir);
356         if (lum_dir)
357                 free(lum_dir);
358         if (lum_file1)
359                 free(lum_file1);
360         if (lum_file2)
361                 free(lum_file2);
362
363         return rc;
364 }