Whamcloud - gitweb
LU-3549 llapi: add printf attribute to llapi_{printf,error}
[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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/tests/ll_dirstripe_verify.c
37  *
38  * ll_dirstripe_verify <dir> <file>:
39  * - to verify if the file has the same lov_user_md setting as the parent dir.
40  * - if dir's offset is set -1, ll_dirstripe_verify <dir> <file1> <file2>
41  *      is used to further verify if file1 and file2's obdidx is continuous.
42  */
43
44 #include <stdio.h>
45 #include <stdlib.h>
46 #include <string.h>
47 #include <ctype.h>
48 #include <sys/ioctl.h>
49 #include <unistd.h>
50 #include <fcntl.h>
51 #include <errno.h>
52 #include <dirent.h>
53
54 #include <liblustre.h>
55 #include <obd.h>
56 #include <lustre_lib.h>
57 #include <lustre/lustreapi.h>
58 #include <obd_lov.h>
59
60 #include <lnet/lnetctl.h>
61
62
63 #define MAX_LOV_UUID_COUNT      1000
64 union {
65         struct obd_uuid uuid;
66         char name[0];
67 } lov;
68 #define lov_uuid lov.uuid
69 #define lov_name lov.name
70
71 /* Returns bytes read on success and a negative value on failure.
72  * If zero bytes are read it will be treated as failure as such
73  * zero cannot be returned from this function.
74  */
75 int read_proc_entry(char *proc_path, char *buf, int len)
76 {
77         int rc, fd;
78
79         memset(buf, 0, len);
80
81         fd = open(proc_path, O_RDONLY);
82         if (fd < 0) {
83                 llapi_error(LLAPI_MSG_ERROR, -errno, "cannot open '%s'",
84                             proc_path);
85                 return -2;
86         }
87
88         rc = read(fd, buf, len - 1);
89         if (rc < 0) {
90                 llapi_error(LLAPI_MSG_ERROR, -errno,
91                             "error reading from '%s'", proc_path);
92                 rc = -3;
93         } else if (rc == 0) {
94                 llapi_err_noerrno(LLAPI_MSG_ERROR,
95                                   "read zero bytes from '%s'", proc_path);
96                 rc = -4;
97         } else if (buf[rc - 1] == '\n') {
98                 buf[rc - 1] = '\0'; /* Remove trailing newline */
99         }
100
101         close(fd);
102
103         return rc;
104 }
105
106 int compare(struct lov_user_md *lum_dir, struct lov_user_md *lum_file1,
107             struct lov_user_md *lum_file2)
108 {
109         int stripe_count = 0, min_stripe_count = 0, def_stripe_count = 1;
110         int stripe_size = 0;
111         int stripe_offset = -1;
112         int ost_count;
113         char buf[128];
114         char lov_path[PATH_MAX];
115         char tmp_path[PATH_MAX];
116         int i;
117         FILE *fp;
118
119         fp = popen("\\ls -d  /proc/fs/lustre/lov/*clilov* | head -1", "r");
120         if (fp == NULL) {
121                 llapi_error(LLAPI_MSG_ERROR, -errno,
122                             "open(lustre/lov/*clilov*) failed");
123                 return 2;
124         }
125
126         if (fscanf(fp, "%s", lov_path) < 1) {
127                 llapi_error(LLAPI_MSG_ERROR, -EINVAL,
128                             "read(lustre/lov/*clilov*) failed");
129                 pclose(fp);
130                 return 3;
131         }
132
133         pclose(fp);
134
135         snprintf(tmp_path, sizeof(tmp_path) - 1, "%s/stripecount",
136                  lov_path);
137         if (read_proc_entry(tmp_path, buf, sizeof(buf)) < 0)
138                 return 5;
139         def_stripe_count = (short)atoi(buf);
140
141         snprintf(tmp_path, sizeof(tmp_path) - 1, "%s/numobd", lov_path);
142         if (read_proc_entry(tmp_path, buf, sizeof(buf)) < 0)
143                 return 6;
144         ost_count = atoi(buf);
145
146         if (lum_dir == NULL) {
147                 stripe_count = def_stripe_count;
148                 min_stripe_count = -1;
149         } else {
150                 stripe_count = (signed short)lum_dir->lmm_stripe_count;
151                 printf("dir stripe %d, ", stripe_count);
152                 min_stripe_count = 1;
153         }
154
155         printf("default stripe %d, ost count %d\n",
156                def_stripe_count, ost_count);
157
158         if (stripe_count == 0) {
159                 min_stripe_count = -1;
160                 stripe_count = 1;
161         }
162
163         stripe_count = (stripe_count > 0 && stripe_count <= ost_count) ?
164                                                 stripe_count : ost_count;
165         min_stripe_count = min_stripe_count > 0 ? stripe_count :
166                                                 ((stripe_count + 1) / 2);
167
168         if (lum_file1->lmm_stripe_count != stripe_count ||
169             lum_file1->lmm_stripe_count < min_stripe_count) {
170                 llapi_err_noerrno(LLAPI_MSG_ERROR,
171                                   "file1 stripe count %d != dir %d\n",
172                                   lum_file1->lmm_stripe_count, stripe_count);
173                 return 7;
174         }
175
176         if (lum_file1->lmm_stripe_count < stripe_count)
177                 llapi_err_noerrno(LLAPI_MSG_WARN,
178                                   "warning: file1 used fewer stripes"
179                                   " %d < dir %d (likely due to bug 4900)\n",
180                                   lum_file1->lmm_stripe_count, stripe_count);
181
182         if (lum_dir != NULL)
183                 stripe_size = (int)lum_dir->lmm_stripe_size;
184         if (stripe_size == 0) {
185                 snprintf(tmp_path, sizeof(tmp_path) - 1, "%s/stripesize",
186                          lov_path);
187                 if (read_proc_entry(tmp_path, buf, sizeof(buf)) < 0)
188                         return 5;
189
190                 stripe_size = atoi(buf);
191         }
192
193         if (lum_file1->lmm_stripe_size != stripe_size) {
194                 llapi_err_noerrno(LLAPI_MSG_ERROR,
195                                   "file1 stripe size %d != dir %d\n",
196                                   lum_file1->lmm_stripe_size, stripe_size);
197                 return 8;
198         }
199
200         if (lum_dir != NULL)
201                 stripe_offset = (short int)lum_dir->lmm_stripe_offset;
202         if (stripe_offset != -1) {
203                 for (i = 0; i < stripe_count; i++)
204                         if (lum_file1->lmm_objects[i].l_ost_idx !=
205                             (stripe_offset + i) % ost_count) {
206                                 llapi_err_noerrno(LLAPI_MSG_WARN,
207                                           "warning: file1 non-sequential "
208                                           "stripe[%d] %d != %d\n", i,
209                                           lum_file1->lmm_objects[i].l_ost_idx,
210                                           (stripe_offset + i) % ost_count);
211                         }
212         } else if (lum_file2 != NULL) {
213                 int next, idx, stripe = stripe_count - 1;
214                 next = (lum_file1->lmm_objects[stripe].l_ost_idx + 1) %
215                        ost_count;
216                 idx = lum_file2->lmm_objects[0].l_ost_idx;
217                 if (idx != next) {
218                         llapi_err_noerrno(LLAPI_MSG_WARN,
219                                   "warning: non-sequential "
220                                   "file1 stripe[%d] %d != file2 stripe[0] %d\n",
221                                   stripe, lum_file1->lmm_objects[stripe].l_ost_idx,
222                                   idx);
223                 }
224         }
225
226         return 0;
227 }
228
229 int main(int argc, char **argv)
230 {
231         DIR * dir;
232         struct lov_user_md *lum_dir, *lum_file1 = NULL, *lum_file2 = NULL;
233         int rc;
234         int lum_size;
235
236         if (argc < 3) {
237                 llapi_err_noerrno(LLAPI_MSG_ERROR,
238                                 "Usage: %s <dirname> <filename1> [filename2]\n",
239                                 argv[0]);
240                 return 1;
241         }
242
243         dir = opendir(argv[1]);
244         if (dir == NULL) {
245                 rc = -errno;
246                 llapi_error(LLAPI_MSG_ERROR, rc,
247                             "error: %s opendir failed\n", argv[1]);
248                 return rc;
249         }
250
251         lum_size = lov_user_md_size(MAX_LOV_UUID_COUNT, LOV_USER_MAGIC);
252         lum_dir = (struct lov_user_md *)malloc(lum_size);
253         if (lum_dir == NULL) {
254                 rc = -ENOMEM;
255                 llapi_error(LLAPI_MSG_ERROR, rc,
256                             "error: can't allocate %d bytes "
257                             "for dir EA", lum_size);
258                 goto cleanup;
259         }
260
261         rc = llapi_file_get_stripe(argv[1], lum_dir);
262         if (rc) {
263                 if (rc == -ENODATA) {
264                         free(lum_dir);
265                         lum_dir = NULL;
266                 } else {
267                         llapi_error(LLAPI_MSG_ERROR, rc,
268                                     "error: can't get EA for %s\n", argv[1]);
269                         goto cleanup;
270                 }
271         }
272
273         /* XXX should be llapi_lov_getname() */
274         rc = llapi_file_get_lov_uuid(argv[1], &lov_uuid);
275         if (rc) {
276                 llapi_error(LLAPI_MSG_ERROR, rc,
277                             "error: can't get lov name for %s\n",
278                             argv[1]);
279                 return rc;
280         }
281
282         if ((lum_file1 = (struct lov_user_md *)malloc(lum_size)) == NULL) {
283                 rc = -ENOMEM;
284                 llapi_error(LLAPI_MSG_ERROR, rc,
285                             "error: can't allocate %d bytes for EA\n",
286                             lum_size);
287                 goto cleanup;
288         }
289
290         rc = llapi_file_get_stripe(argv[2], lum_file1);
291         if (rc) {
292                 llapi_error(LLAPI_MSG_ERROR, rc,
293                             "error: unable to get EA for %s\n", argv[2]);
294                 goto cleanup;
295         }
296
297         if (argc == 4) {
298                 lum_file2 = (struct lov_user_md *)malloc(lum_size);
299                 if (lum_file2 == NULL) {
300                         rc = -ENOMEM;
301                         llapi_error(LLAPI_MSG_ERROR, rc,
302                                     "error: can't allocate %d "
303                                     "bytes for file2 EA\n", lum_size);
304                         goto cleanup;
305                 }
306
307                 rc = llapi_file_get_stripe(argv[3], lum_file2);
308                 if (rc) {
309                         llapi_error(LLAPI_MSG_ERROR, rc,
310                                     "error: can't get EA for %s\n", argv[3]);
311                         goto cleanup;
312                 }
313         }
314
315         rc = compare(lum_dir, lum_file1, lum_file2);
316
317 cleanup:
318         closedir(dir);
319         if (lum_dir != NULL)
320                 free(lum_dir);
321         if (lum_file1 != NULL)
322                 free(lum_file1);
323         if (lum_file2 != NULL)
324                 free(lum_file2);
325
326         return rc;
327 }