Whamcloud - gitweb
9a0aeb460c14932ddb116c83409a51910ffb59f4
[fs/lustre-release.git] / lustre / utils / liblustreapi.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
30  * Use is subject to license terms.
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/utils/liblustreapi.c
37  *
38  * Author: Peter J. Braam <braam@clusterfs.com>
39  * Author: Phil Schwan <phil@clusterfs.com>
40  * Author: Robert Read <rread@clusterfs.com>
41  */
42
43 /* for O_DIRECTORY */
44 #ifndef _GNU_SOURCE
45 #define _GNU_SOURCE
46 #endif
47
48 #include <stdlib.h>
49 #include <stdio.h>
50 #include <string.h>
51 #include <stddef.h>
52 #include <sys/ioctl.h>
53 #include <unistd.h>
54 #include <fcntl.h>
55 #include <errno.h>
56 #include <dirent.h>
57 #include <stdarg.h>
58 #include <ctype.h>
59 #include <sys/stat.h>
60 #include <sys/types.h>
61 #include <sys/syscall.h>
62 #include <sys/param.h>
63 #include <fnmatch.h>
64 #include <glob.h>
65 #ifdef HAVE_ASM_TYPES_H
66 #include <asm/types.h>
67 #endif
68 #ifdef HAVE_LINUX_UNISTD_H
69 #include <linux/unistd.h>
70 #else
71 #include <unistd.h>
72 #endif
73
74 #include <liblustre.h>
75 #include <lnet/lnetctl.h>
76 #include <obd.h>
77 #include <lustre_lib.h>
78 #include <lustre/liblustreapi.h>
79 #include <obd_lov.h>
80
81 static unsigned llapi_dir_filetype_table[] = {
82         [DT_UNKNOWN]= 0,
83         [DT_FIFO]= S_IFIFO,
84         [DT_CHR] = S_IFCHR,
85         [DT_DIR] = S_IFDIR,
86         [DT_BLK] = S_IFBLK,
87         [DT_REG] = S_IFREG,
88         [DT_LNK] = S_IFLNK,
89         [DT_SOCK]= S_IFSOCK,
90 #if defined(DT_DOOR) && defined(S_IFDOOR)
91         [DT_DOOR]= S_IFDOOR,
92 #endif
93 };
94
95 #if defined(DT_DOOR) && defined(S_IFDOOR)
96 static const int DT_MAX = DT_DOOR;
97 #else
98 static const int DT_MAX = DT_SOCK;
99 #endif
100
101 static unsigned llapi_filetype_dir_table[] = {
102         [0]= DT_UNKNOWN,
103         [S_IFIFO]= DT_FIFO,
104         [S_IFCHR] = DT_CHR,
105         [S_IFDIR] = DT_DIR,
106         [S_IFBLK] = DT_BLK,
107         [S_IFREG] = DT_REG,
108         [S_IFLNK] = DT_LNK,
109         [S_IFSOCK]= DT_SOCK,
110 #if defined(DT_DOOR) && defined(S_IFDOOR)
111         [S_IFDOOR]= DT_DOOR,
112 #endif
113 };
114
115 #if defined(DT_DOOR) && defined(S_IFDOOR)
116 static const int S_IFMAX = DT_DOOR;
117 #else
118 static const int S_IFMAX = DT_SOCK;
119 #endif
120
121 /* liblustreapi message level */
122 static int llapi_msg_level = LLAPI_MSG_MAX;
123
124 void llapi_msg_set_level(int level)
125 {
126         /* ensure level is in the good range */
127         if (level < LLAPI_MSG_OFF)
128                 llapi_msg_level = LLAPI_MSG_OFF;
129         else if (level > LLAPI_MSG_MAX)
130                 llapi_msg_level = LLAPI_MSG_MAX;
131         else
132                 llapi_msg_level = level;
133 }
134
135 void llapi_err(int level, char *fmt, ...)
136 {
137         va_list args;
138         int tmp_errno = abs(errno);
139
140         if ((level & LLAPI_MSG_MASK) > llapi_msg_level)
141                 return;
142
143         va_start(args, fmt);
144         vfprintf(stderr, fmt, args);
145         va_end(args);
146
147         if (level & LLAPI_MSG_NO_ERRNO)
148                 fprintf(stderr, "\n");
149         else
150                 fprintf(stderr, ": %s (%d)\n", strerror(tmp_errno), tmp_errno);
151 }
152
153 #define llapi_err_noerrno(level, fmt, a...)                             \
154         llapi_err((level) | LLAPI_MSG_NO_ERRNO, fmt, ## a)
155
156 void llapi_printf(int level, char *fmt, ...)
157 {
158         va_list args;
159
160         if ((level & LLAPI_MSG_MASK) > llapi_msg_level)
161                 return;
162
163         va_start(args, fmt);
164         vfprintf(stdout, fmt, args);
165         va_end(args);
166 }
167
168 /* size_units is unchanged if no specifier used */
169 int parse_size(char *optarg, unsigned long long *size,
170                unsigned long long *size_units, int bytes_spec)
171 {
172         char *end;
173
174         *size = strtoull(optarg, &end, 0);
175
176         if (*end != '\0') {
177                 if ((*end == 'b') && *(end+1) == '\0' &&
178                     (*size & (~0ULL << (64 - 9))) == 0 &&
179                     !bytes_spec) {
180                         *size <<= 9;
181                         *size_units = 1 << 9;
182                 } else if ((*end == 'b') && *(end+1) == '\0' &&
183                            bytes_spec) {
184                         *size_units = 1;
185                 } else if ((*end == 'k' || *end == 'K') &&
186                            *(end+1) == '\0' && (*size &
187                            (~0ULL << (64 - 10))) == 0) {
188                         *size <<= 10;
189                         *size_units = 1 << 10;
190                 } else if ((*end == 'm' || *end == 'M') &&
191                            *(end+1) == '\0' && (*size &
192                            (~0ULL << (64 - 20))) == 0) {
193                         *size <<= 20;
194                         *size_units = 1 << 20;
195                 } else if ((*end == 'g' || *end == 'G') &&
196                            *(end+1) == '\0' && (*size &
197                            (~0ULL << (64 - 30))) == 0) {
198                         *size <<= 30;
199                         *size_units = 1 << 30;
200                 } else if ((*end == 't' || *end == 'T') &&
201                            *(end+1) == '\0' && (*size &
202                            (~0ULL << (64 - 40))) == 0) {
203                         *size <<= 40;
204                         *size_units = 1ULL << 40;
205                 } else if ((*end == 'p' || *end == 'P') &&
206                            *(end+1) == '\0' && (*size &
207                            (~0ULL << (64 - 50))) == 0) {
208                         *size <<= 50;
209                         *size_units = 1ULL << 50;
210                 } else if ((*end == 'e' || *end == 'E') &&
211                            *(end+1) == '\0' && (*size &
212                            (~0ULL << (64 - 60))) == 0) {
213                         *size <<= 60;
214                         *size_units = 1ULL << 60;
215                 } else {
216                         return -1;
217                 }
218         }
219
220         return 0;
221 }
222
223 int llapi_stripe_limit_check(unsigned long long stripe_size, int stripe_offset,
224                              int stripe_count, int stripe_pattern)
225 {
226         int page_size;
227
228         /* 64 KB is the largest common page size I'm aware of (on ia64), but
229          * check the local page size just in case. */
230         page_size = LOV_MIN_STRIPE_SIZE;
231         if (getpagesize() > page_size) {
232                 page_size = getpagesize();
233                 llapi_err_noerrno(LLAPI_MSG_WARN,
234                                   "warning: your page size (%u) is "
235                                   "larger than expected (%u)", page_size,
236                                   LOV_MIN_STRIPE_SIZE);
237         }
238         if (stripe_size < 0 || (stripe_size & (LOV_MIN_STRIPE_SIZE - 1))) {
239                 errno = -EINVAL;
240                 llapi_err(LLAPI_MSG_ERROR, "error: bad stripe_size %lu, "
241                           "must be an even multiple of %d bytes",
242                           stripe_size, page_size);
243                 return errno;
244         }
245         if (stripe_offset < -1 || stripe_offset > MAX_OBD_DEVICES) {
246                 errno = -EINVAL;
247                 llapi_err(LLAPI_MSG_ERROR, "error: bad stripe offset %d",
248                           stripe_offset);
249                 return errno;
250         }
251         if (stripe_count < -1 || stripe_count > LOV_MAX_STRIPE_COUNT) {
252                 errno = -EINVAL;
253                 llapi_err(LLAPI_MSG_ERROR, "error: bad stripe count %d",
254                           stripe_count);
255                 return errno;
256         }
257         if (stripe_size >= (1ULL << 32)) {
258                 errno = -EINVAL;
259                 llapi_err(LLAPI_MSG_ERROR, "warning: stripe size larger than 4G"
260                           " is not currently supported and would wrap");
261                 return errno;
262         }
263         return 0;
264 }
265
266 static int find_target_obdpath(char *fsname, char *path)
267 {
268         glob_t glob_info;
269         char pattern[PATH_MAX + 1];
270         int rc;
271
272         snprintf(pattern, PATH_MAX,
273                  "/proc/fs/lustre/lov/%s-*/target_obd",
274                  fsname);
275         rc = glob(pattern, GLOB_BRACE, NULL, &glob_info);
276         if (rc == GLOB_NOMATCH)
277                 return -ENODEV;
278         else if (rc)
279                 return -EINVAL;
280
281         strcpy(path, glob_info.gl_pathv[0]);
282         globfree(&glob_info);
283         return 0;
284 }
285
286 static int find_poolpath(char *fsname, char *poolname, char *poolpath)
287 {
288         glob_t glob_info;
289         char pattern[PATH_MAX + 1];
290         int rc;
291
292         snprintf(pattern, PATH_MAX,
293                  "/proc/fs/lustre/lov/%s-*/pools/%s",
294                  fsname, poolname);
295         rc = glob(pattern, GLOB_BRACE, NULL, &glob_info);
296         /* If no pools, make sure the lov is available */
297         if ((rc == GLOB_NOMATCH) &&
298             (find_target_obdpath(fsname, poolpath) == -ENODEV))
299                 return -ENODEV;
300         if (rc)
301                 return -EINVAL;
302
303         strcpy(poolpath, glob_info.gl_pathv[0]);
304         globfree(&glob_info);
305         return 0;
306 }
307
308 /*
309  * if pool is NULL, search ostname in target_obd
310  * if pool is not NULL:
311  *  if pool not found returns errno < 0
312  *  if ostname is NULL, returns 1 if pool is not empty and 0 if pool empty
313  *  if ostname is not NULL, returns 1 if OST is in pool and 0 if not
314  */
315 int llapi_search_ost(char *fsname, char *poolname, char *ostname)
316 {
317         FILE *fd;
318         char buffer[PATH_MAX + 1];
319         int len = 0, rc;
320
321         if (ostname != NULL)
322                 len = strlen(ostname);
323
324         if (poolname == NULL)
325                 rc = find_target_obdpath(fsname, buffer);
326         else
327                 rc = find_poolpath(fsname, poolname, buffer);
328         if (rc)
329                 return rc;
330
331         if ((fd = fopen(buffer, "r")) == NULL)
332                 return -EINVAL;
333
334         while (fgets(buffer, sizeof(buffer), fd) != NULL) {
335                 if (poolname == NULL) {
336                         char *ptr;
337                         /* Search for an ostname in the list of OSTs
338                          Line format is IDX: fsname-OSTxxxx_UUID STATUS */
339                         ptr = strchr(buffer, ' ');
340                         if ((ptr != NULL) &&
341                             (strncmp(ptr + 1, ostname, len) == 0)) {
342                                 fclose(fd);
343                                 return 1;
344                         }
345                 } else {
346                         /* Search for an ostname in a pool,
347                          (or an existing non-empty pool if no ostname) */
348                         if ((ostname == NULL) ||
349                             (strncmp(buffer, ostname, len) == 0)) {
350                                 fclose(fd);
351                                 return 1;
352                         }
353                 }
354         }
355         fclose(fd);
356         return 0;
357 }
358
359 int llapi_file_open_pool(const char *name, int flags, int mode,
360                          unsigned long long stripe_size, int stripe_offset,
361                          int stripe_count, int stripe_pattern, char *pool_name)
362 {
363         struct lov_user_md_v3 lum = { 0 };
364         int fd, rc = 0;
365         int isdir = 0;
366
367         /* Make sure we have a good pool */
368         if (pool_name != NULL) {
369                 char fsname[MAX_OBD_NAME + 1], *ptr;
370
371                 if (llapi_search_fsname(name, fsname)) {
372                     llapi_err(LLAPI_MSG_ERROR | LLAPI_MSG_NO_ERRNO,
373                               "'%s' is not on a Lustre filesystem", name);
374                     return -EINVAL;
375                 }
376
377                 /* in case user gives the full pool name <fsname>.<poolname>,
378                  * strip the fsname */
379                 ptr = strchr(pool_name, '.');
380                 if (ptr != NULL) {
381                         *ptr = '\0';
382                         if (strcmp(pool_name, fsname) != 0) {
383                                 *ptr = '.';
384                                 llapi_err(LLAPI_MSG_ERROR | LLAPI_MSG_NO_ERRNO,
385                                    "Pool '%s' is not on filesystem '%s'",
386                                    pool_name, fsname);
387                                 return -EINVAL;
388                         }
389                         pool_name = ptr + 1;
390                 }
391
392                 /* Make sure the pool exists and is non-empty */
393                 if ((rc = llapi_search_ost(fsname, pool_name, NULL)) < 1) {
394                         llapi_err(LLAPI_MSG_ERROR | LLAPI_MSG_NO_ERRNO,
395                                   "pool '%s.%s' %s", fsname, pool_name,
396                                   rc == 0 ? "has no OSTs" : "does not exist");
397                         return -EINVAL;
398                 }
399         }
400
401         fd = open(name, flags | O_LOV_DELAY_CREATE, mode);
402         if (fd < 0 && errno == EISDIR) {
403                 fd = open(name, O_DIRECTORY | O_RDONLY);
404                 isdir++;
405         }
406
407         if (fd < 0) {
408                 rc = -errno;
409                 llapi_err(LLAPI_MSG_ERROR, "unable to open '%s'", name);
410                 return rc;
411         }
412
413         if ((rc = llapi_stripe_limit_check(stripe_size, stripe_offset,
414                                            stripe_count, stripe_pattern)) != 0){
415                 errno = rc;
416                 goto out;
417         }
418
419         /*  Initialize IOCTL striping pattern structure */
420         lum.lmm_magic = LOV_USER_MAGIC_V3;
421         lum.lmm_pattern = stripe_pattern;
422         lum.lmm_stripe_size = stripe_size;
423         lum.lmm_stripe_count = stripe_count;
424         lum.lmm_stripe_offset = stripe_offset;
425         if (pool_name != NULL) {
426                 strncpy(lum.lmm_pool_name, pool_name, LOV_MAXPOOLNAME);
427         } else {
428                 /* If no pool is specified at all, use V1 request */
429                 lum.lmm_magic = LOV_USER_MAGIC_V1;
430         }
431
432         if (ioctl(fd, LL_IOC_LOV_SETSTRIPE, &lum)) {
433                 char *errmsg = "stripe already set";
434                 rc = -errno;
435                 if (errno != EEXIST && errno != EALREADY)
436                         errmsg = strerror(errno);
437
438                 llapi_err_noerrno(LLAPI_MSG_ERROR,
439                                   "error on ioctl "LPX64" for '%s' (%d): %s",
440                                   (__u64)LL_IOC_LOV_SETSTRIPE, name, fd,errmsg);
441         }
442 out:
443         if (rc) {
444                 close(fd);
445                 fd = rc;
446         }
447
448         return fd;
449 }
450
451 int llapi_file_open(const char *name, int flags, int mode,
452                     unsigned long long stripe_size, int stripe_offset,
453                     int stripe_count, int stripe_pattern)
454 {
455         return llapi_file_open_pool(name, flags, mode, stripe_size,
456                                     stripe_offset, stripe_count,
457                                     stripe_pattern, NULL);
458 }
459
460 int llapi_file_create(const char *name, unsigned long long stripe_size,
461                       int stripe_offset, int stripe_count, int stripe_pattern)
462 {
463         int fd;
464
465         fd = llapi_file_open_pool(name, O_CREAT | O_WRONLY, 0644, stripe_size,
466                                   stripe_offset, stripe_count, stripe_pattern,
467                                   NULL);
468         if (fd < 0)
469                 return fd;
470
471         close(fd);
472         return 0;
473 }
474
475 int llapi_file_create_pool(const char *name, unsigned long long stripe_size,
476                            int stripe_offset, int stripe_count,
477                            int stripe_pattern, char *pool_name)
478 {
479         int fd;
480
481         fd = llapi_file_open_pool(name, O_CREAT | O_WRONLY, 0644, stripe_size,
482                                   stripe_offset, stripe_count, stripe_pattern,
483                                   pool_name);
484         if (fd < 0)
485                 return fd;
486
487         close(fd);
488         return 0;
489 }
490
491 /*
492  * Find the fsname, the full path, and/or an open fd.
493  * Either the fsname or path must not be NULL
494  */
495 #define WANT_PATH   0x1
496 #define WANT_FSNAME 0x2
497 #define WANT_FD     0x4
498 #define WANT_INDEX  0x8
499 #define WANT_ERROR  0x10
500 static int get_root_path(int want, char *fsname, int *outfd, char *path,
501                          int index)
502 {
503         struct mntent mnt;
504         char buf[PATH_MAX], mntdir[PATH_MAX];
505         char *ptr;
506         FILE *fp;
507         int idx = 0, len = 0, mntlen, fd;
508         int rc = -ENODEV;
509
510         /* get the mount point */
511         fp = setmntent(MOUNTED, "r");
512         if (fp == NULL) {
513                  llapi_err(LLAPI_MSG_ERROR,
514                            "setmntent(%s) failed: %s:", MOUNTED,
515                            strerror (errno));
516                  return -EIO;
517         }
518         while (1) {
519                 if (getmntent_r(fp, &mnt, buf, sizeof(buf)) == NULL)
520                         break;
521
522                 if (!llapi_is_lustre_mnt(&mnt))
523                         continue;
524
525                 if ((want & WANT_INDEX) && (idx++ != index))
526                         continue;
527
528                 mntlen = strlen(mnt.mnt_dir);
529                 ptr = strrchr(mnt.mnt_fsname, '/');
530                 if (!ptr && !len) {
531                         rc = -EINVAL;
532                         break;
533                 }
534                 ptr++;
535
536                 /* Check the fsname for a match, if given */
537                 if (!(want & WANT_FSNAME) && fsname != NULL &&
538                     (strlen(fsname) > 0) && (strcmp(ptr, fsname) != 0))
539                         continue;
540
541                 /* If the path isn't set return the first one we find */
542                 if (path == NULL || strlen(path) == 0) {
543                         strcpy(mntdir, mnt.mnt_dir);
544                         if ((want & WANT_FSNAME) && fsname != NULL)
545                                 strcpy(fsname, ptr);
546                         rc = 0;
547                         break;
548                 /* Otherwise find the longest matching path */
549                 } else if ((strlen(path) >= mntlen) && (mntlen >= len) &&
550                            (strncmp(mnt.mnt_dir, path, mntlen) == 0)) {
551                         strcpy(mntdir, mnt.mnt_dir);
552                         len = mntlen;
553                         if ((want & WANT_FSNAME) && fsname != NULL)
554                                 strcpy(fsname, ptr);
555                         rc = 0;
556                 }
557         }
558         endmntent(fp);
559
560         /* Found it */
561         if (rc == 0) {
562                 if ((want & WANT_PATH) && path != NULL)
563                         strcpy(path, mntdir);
564                 if (want & WANT_FD) {
565                         fd = open(mntdir, O_RDONLY | O_DIRECTORY | O_NONBLOCK);
566                         if (fd < 0) {
567                                 perror("open");
568                                 rc = -errno;
569                         } else {
570                                 *outfd = fd;
571                         }
572                 }
573         } else if (want & WANT_ERROR)
574                 llapi_err(LLAPI_MSG_ERROR | LLAPI_MSG_NO_ERRNO,
575                           "can't find fs root for '%s': %d",
576                           (want & WANT_PATH) ? fsname : path, rc);
577         return rc;
578 }
579
580 /*
581  * search lustre mounts
582  *
583  * Calling this function will return to the user the mount point, mntdir, and
584  * the file system name, fsname, if the user passed a buffer to this routine.
585  *
586  * The user inputs are pathname and index. If the pathname is supplied then
587  * the value of the index will be ignored. The pathname will return data if
588  * the pathname is located on a lustre mount. Index is used to pick which
589  * mount point you want in the case of multiple mounted lustre file systems.
590  * See function lfs_osts in lfs.c for a example of the index use.
591  */
592 int llapi_search_mounts(const char *pathname, int index, char *mntdir,
593                         char *fsname)
594 {
595         int want = WANT_PATH, idx = -1;
596
597         if (!pathname || pathname[0] == '\0') {
598                 want |= WANT_INDEX;
599                 idx = index;
600         } else
601                 strcpy(mntdir, pathname);
602
603         if (fsname)
604                 want |= WANT_FSNAME;
605         return get_root_path(want, fsname, NULL, mntdir, idx);
606 }
607
608 int llapi_search_fsname(const char *pathname, char *fsname)
609 {
610         char *path = (char*)pathname, buf[PATH_MAX + 1];
611
612         if (pathname[0] != '/') { /* Need a absolute path */
613                 memset(buf, '\0', sizeof(buf));
614                 if (realpath(pathname, buf) == NULL) {
615                         llapi_err(LLAPI_MSG_ERROR, "pathname '%s' cannot expand",
616                                   pathname);
617                         return -EINVAL;
618                 }
619                 path = buf;
620         }
621         return get_root_path(WANT_FSNAME | WANT_ERROR, fsname, NULL,
622                              path, -1);
623 }
624
625 /* return the first file matching this pattern */
626 static int first_match(char *pattern, char *buffer)
627 {
628         glob_t glob_info;
629
630         if (glob(pattern, GLOB_BRACE, NULL, &glob_info))
631                 return -ENOENT;
632
633         if (glob_info.gl_pathc < 1) {
634                 globfree(&glob_info);
635                 return -ENOENT;
636         }
637
638         strcpy(buffer, glob_info.gl_pathv[0]);
639
640         globfree(&glob_info);
641         return 0;
642 }
643
644 /*
645  * find the pool directory path under /proc
646  * (can be also used to test if a fsname is known)
647  */
648 static int poolpath(char *fsname, char *pathname, char *pool_pathname)
649 {
650         int rc = 0;
651         char pattern[PATH_MAX + 1];
652         char buffer[PATH_MAX];
653
654         if (fsname == NULL) {
655                 rc = llapi_search_fsname(pathname, buffer);
656                 if (rc != 0)
657                         return rc;
658                 fsname = buffer;
659                 strcpy(pathname, fsname);
660         }
661
662         snprintf(pattern, PATH_MAX, "/proc/fs/lustre/lov/%s-*/pools", fsname);
663         rc = first_match(pattern, buffer);
664         if (rc)
665                 return rc;
666
667         /* in fsname test mode, pool_pathname is NULL */
668         if (pool_pathname != NULL)
669                 strcpy(pool_pathname, buffer);
670
671         return 0;
672 }
673
674 /**
675  * Get the list of pool members.
676  * \param poolname    string of format \<fsname\>.\<poolname\>
677  * \param members     caller-allocated array of char*
678  * \param list_size   size of the members array
679  * \param buffer      caller-allocated buffer for storing OST names
680  * \param buffer_size size of the buffer
681  *
682  * \return number of members retrieved for this pool
683  * \retval -error failure
684  */
685 int llapi_get_poolmembers(const char *poolname, char **members,
686                           int list_size, char *buffer, int buffer_size)
687 {
688         char fsname[PATH_MAX + 1];
689         char *pool, *tmp;
690         char pathname[PATH_MAX + 1];
691         char path[PATH_MAX + 1];
692         char buf[1024];
693         FILE *fd;
694         int rc = 0;
695         int nb_entries = 0;
696         int used = 0;
697
698         /* name is FSNAME.POOLNAME */
699         if (strlen(poolname) > PATH_MAX)
700                 return -EOVERFLOW;
701         strcpy(fsname, poolname);
702         pool = strchr(fsname, '.');
703         if (pool == NULL)
704                 return -EINVAL;
705
706         *pool = '\0';
707         pool++;
708
709         rc = poolpath(fsname, NULL, pathname);
710         if (rc != 0) {
711                 errno = -rc;
712                 llapi_err(LLAPI_MSG_ERROR, "Lustre filesystem '%s' not found",
713                           fsname);
714                 return rc;
715         }
716
717         llapi_printf(LLAPI_MSG_NORMAL, "Pool: %s.%s\n", fsname, pool);
718         sprintf(path, "%s/%s", pathname, pool);
719         if ((fd = fopen(path, "r")) == NULL) {
720                 llapi_err(LLAPI_MSG_ERROR, "Cannot open %s", path);
721                 return -EINVAL;
722         }
723
724         rc = 0;
725         while (fgets(buf, sizeof(buf), fd) != NULL) {
726                 if (nb_entries >= list_size) {
727                         rc = -EOVERFLOW;
728                         break;
729                 }
730                 /* remove '\n' */
731                 if ((tmp = strchr(buf, '\n')) != NULL)
732                         *tmp='\0';
733                 if (used + strlen(buf) + 1 > buffer_size) {
734                         rc = -EOVERFLOW;
735                         break;
736                 }
737
738                 strcpy(buffer + used, buf);
739                 members[nb_entries] = buffer + used;
740                 used += strlen(buf) + 1;
741                 nb_entries++;
742                 rc = nb_entries;
743         }
744
745         fclose(fd);
746         return rc;
747 }
748
749 /**
750  * Get the list of pools in a filesystem.
751  * \param name        filesystem name or path
752  * \param poollist    caller-allocated array of char*
753  * \param list_size   size of the poollist array
754  * \param buffer      caller-allocated buffer for storing pool names
755  * \param buffer_size size of the buffer
756  *
757  * \return number of pools retrieved for this filesystem
758  * \retval -error failure
759  */
760 int llapi_get_poollist(const char *name, char **poollist, int list_size,
761                        char *buffer, int buffer_size)
762 {
763         char fsname[PATH_MAX + 1], rname[PATH_MAX + 1], pathname[PATH_MAX + 1];
764         char *ptr;
765         DIR *dir;
766         struct dirent pool;
767         struct dirent *cookie = NULL;
768         int rc = 0;
769         unsigned int nb_entries = 0;
770         unsigned int used = 0;
771         unsigned int i;
772
773         /* initilize output array */
774         for (i = 0; i < list_size; i++)
775                 poollist[i] = NULL;
776
777         /* is name a pathname ? */
778         ptr = strchr(name, '/');
779         if (ptr != NULL) {
780                 /* only absolute pathname is supported */
781                 if (*name != '/')
782                         return -EINVAL;
783                 if (!realpath(name, rname)) {
784                         rc = -errno;
785                         llapi_err(LLAPI_MSG_ERROR, "invalid path '%s'", name);
786                         return rc;
787                 }
788
789                 rc = poolpath(NULL, rname, pathname);
790                 if (rc != 0) {
791                         errno = -rc;
792                         llapi_err(LLAPI_MSG_ERROR, "'%s' is not"
793                                   " a Lustre filesystem", name);
794                         return rc;
795                 }
796                 strcpy(fsname, rname);
797         } else {
798                 /* name is FSNAME */
799                 strcpy(fsname, name);
800                 rc = poolpath(fsname, NULL, pathname);
801         }
802         if (rc != 0) {
803                 errno = -rc;
804                 llapi_err(LLAPI_MSG_ERROR, "Lustre filesystem '%s' not found",
805                           name);
806                 return rc;
807         }
808
809         llapi_printf(LLAPI_MSG_NORMAL, "Pools from %s:\n", fsname);
810         if ((dir = opendir(pathname)) == NULL) {
811                 llapi_err(LLAPI_MSG_ERROR, "Could not open pool list for '%s'",
812                           name);
813                 return -errno;
814         }
815
816         while(1) {
817                 rc = readdir_r(dir, &pool, &cookie);
818
819                 if (rc != 0) {
820                         llapi_err(LLAPI_MSG_ERROR,
821                                   "Error reading pool list for '%s'", name);
822                         return -errno;
823                 } else if ((rc == 0) && (cookie == NULL))
824                         /* end of directory */
825                         break;
826
827                 /* ignore . and .. */
828                 if (!strcmp(pool.d_name, ".") || !strcmp(pool.d_name, ".."))
829                         continue;
830
831                 /* check output bounds */
832                 if (nb_entries >= list_size)
833                         return -EOVERFLOW;
834
835                 /* +2 for '.' and final '\0' */
836                 if (used + strlen(pool.d_name) + strlen(fsname) + 2
837                     > buffer_size)
838                         return -EOVERFLOW;
839
840                 sprintf(buffer + used, "%s.%s", fsname, pool.d_name);
841                 poollist[nb_entries] = buffer + used;
842                 used += strlen(pool.d_name) + strlen(fsname) + 2;
843                 nb_entries++;
844         }
845
846         closedir(dir);
847         return nb_entries;
848 }
849
850 /* wrapper for lfs.c and obd.c */
851 int llapi_poollist(const char *name)
852 {
853         /* list of pool names (assume that pool count is smaller
854            than OST count) */
855         char *list[FIND_MAX_OSTS];
856         char *buffer;
857         /* fsname-OST0000_UUID < 32 char, 1 per OST */
858         int bufsize = FIND_MAX_OSTS * 32;
859         int i, nb;
860
861         buffer = malloc(bufsize);
862         if (buffer == NULL)
863                 return -ENOMEM;
864
865         if ((name[0] == '/') || (strchr(name, '.') == NULL))
866                 /* name is a path or fsname */
867                 nb = llapi_get_poollist(name, list, FIND_MAX_OSTS, buffer,
868                                         bufsize);
869         else
870                 /* name is a pool name (<fsname>.<poolname>) */
871                 nb = llapi_get_poolmembers(name, list, FIND_MAX_OSTS, buffer,
872                                            bufsize);
873
874         for (i = 0; i < nb; i++)
875                 llapi_printf(LLAPI_MSG_NORMAL, "%s\n", list[i]);
876
877         free(buffer);
878         return (nb < 0 ? nb : 0);
879 }
880
881 typedef int (semantic_func_t)(char *path, DIR *parent, DIR *d,
882                               void *data, struct dirent64 *de);
883
884 #define MAX_LOV_UUID_COUNT      max(LOV_MAX_STRIPE_COUNT, 1000)
885 #define OBD_NOT_FOUND           (-1)
886
887 static int common_param_init(struct find_param *param)
888 {
889         param->lumlen = lov_mds_md_size(MAX_LOV_UUID_COUNT, LOV_MAGIC_V3);
890         if ((param->lmd = malloc(sizeof(lstat_t) + param->lumlen)) == NULL) {
891                 llapi_err(LLAPI_MSG_ERROR,
892                           "error: allocation of %d bytes for ioctl",
893                           sizeof(lstat_t) + param->lumlen);
894                 return -ENOMEM;
895         }
896
897         param->got_uuids = 0;
898         param->obdindexes = NULL;
899         param->obdindex = OBD_NOT_FOUND;
900         return 0;
901 }
902
903 static void find_param_fini(struct find_param *param)
904 {
905         if (param->obdindexes)
906                 free(param->obdindexes);
907
908         if (param->lmd)
909                 free(param->lmd);
910 }
911
912 static int cb_common_fini(char *path, DIR *parent, DIR *d, void *data,
913                           struct dirent64 *de)
914 {
915         struct find_param *param = (struct find_param *)data;
916         param->depth--;
917         return 0;
918 }
919
920 static DIR *opendir_parent(char *path)
921 {
922         DIR *parent;
923         char *fname;
924         char c;
925
926         fname = strrchr(path, '/');
927         if (fname == NULL)
928                 return opendir(".");
929
930         c = fname[1];
931         fname[1] = '\0';
932         parent = opendir(path);
933         fname[1] = c;
934         return parent;
935 }
936
937 int llapi_mds_getfileinfo(char *path, DIR *parent,
938                           struct lov_user_mds_data *lmd)
939 {
940         lstat_t *st = &lmd->lmd_st;
941         char *fname = strrchr(path, '/');
942         int ret = 0;
943
944         if (parent == NULL)
945                 return -EINVAL;
946
947         fname = (fname == NULL ? path : fname + 1);
948         /* retrieve needed file info */
949         strncpy((char *)lmd, fname, lov_mds_md_size(MAX_LOV_UUID_COUNT,
950                 LOV_MAGIC));
951         ret = ioctl(dirfd(parent), IOC_MDC_GETFILEINFO, (void *)lmd);
952
953         if (ret) {
954                 if (errno == ENOTTY) {
955                         /* ioctl is not supported, it is not a lustre fs.
956                          * Do the regular lstat(2) instead. */
957                         ret = lstat_f(path, st);
958                         if (ret) {
959                                 llapi_err(LLAPI_MSG_ERROR,
960                                           "error: %s: lstat failed for %s",
961                                           __func__, path);
962                                 return ret;
963                         }
964                 } else if (errno == ENOENT) {
965                         llapi_err(LLAPI_MSG_WARN,
966                                   "warning: %s: %s does not exist",
967                                   __func__, path);
968                         return -ENOENT;
969                 } else {
970                         llapi_err(LLAPI_MSG_ERROR,
971                                  "error: %s: IOC_MDC_GETFILEINFO failed for %s",
972                                  __func__, path);
973                         return ret;
974                 }
975         }
976
977         return 0;
978 }
979
980 static int llapi_semantic_traverse(char *path, int size, DIR *parent,
981                                    semantic_func_t sem_init,
982                                    semantic_func_t sem_fini, void *data,
983                                    struct dirent64 *de)
984 {
985         struct dirent64 *dent;
986         int len, ret;
987         DIR *d, *p = NULL;
988
989         ret = 0;
990         len = strlen(path);
991
992         d = opendir(path);
993         if (!d && errno != ENOTDIR) {
994                 llapi_err(LLAPI_MSG_ERROR, "%s: Failed to open '%s'",
995                           __func__, path);
996                 return -EINVAL;
997         } else if (!d && !parent) {
998                 /* ENOTDIR. Open the parent dir. */
999                 p = opendir_parent(path);
1000                 if (!p)
1001                         GOTO(out, ret = -EINVAL);
1002         }
1003
1004         if (sem_init && (ret = sem_init(path, parent ?: p, d, data, de)))
1005                 goto err;
1006
1007         if (!d)
1008                 GOTO(out, ret = 0);
1009
1010         while ((dent = readdir64(d)) != NULL) {
1011                 ((struct find_param *)data)->have_fileinfo = 0;
1012
1013                 if (!strcmp(dent->d_name, ".") || !strcmp(dent->d_name, ".."))
1014                         continue;
1015
1016                 path[len] = 0;
1017                 if ((len + dent->d_reclen + 2) > size) {
1018                         llapi_err(LLAPI_MSG_ERROR,
1019                                   "error: %s: string buffer is too small",
1020                                   __func__);
1021                         break;
1022                 }
1023
1024                 if (path[len-1] != '/')
1025                         strcat(path, "/");
1026                 strcat(path, dent->d_name);
1027
1028                 if (dent->d_type == DT_UNKNOWN) {
1029                         lstat_t *st = &((struct find_param *)data)->lmd->lmd_st;
1030
1031                         ret = llapi_mds_getfileinfo(path, d,
1032                                              ((struct find_param *)data)->lmd);
1033                         if (ret == 0) {
1034                                 ((struct find_param *)data)->have_fileinfo = 1;
1035                                 dent->d_type =
1036                                         llapi_filetype_dir_table[st->st_mode &
1037                                                                  S_IFMT];
1038                         }
1039                         if (ret == -ENOENT)
1040                                 continue;
1041                 }
1042
1043                 switch (dent->d_type) {
1044                 case DT_UNKNOWN:
1045                         llapi_err(LLAPI_MSG_ERROR,
1046                                   "error: %s: '%s' is UNKNOWN type %d",
1047                                   __func__, dent->d_name, dent->d_type);
1048                         break;
1049                 case DT_DIR:
1050                         ret = llapi_semantic_traverse(path, size, d, sem_init,
1051                                                       sem_fini, data, dent);
1052                         if (ret < 0)
1053                                 goto out;
1054                         break;
1055                 default:
1056                         ret = 0;
1057                         if (sem_init) {
1058                                 ret = sem_init(path, d, NULL, data, dent);
1059                                 if (ret < 0)
1060                                         goto out;
1061                         }
1062                         if (sem_fini && ret == 0)
1063                                 sem_fini(path, d, NULL, data, dent);
1064                 }
1065         }
1066
1067 out:
1068         path[len] = 0;
1069
1070         if (sem_fini)
1071                 sem_fini(path, parent, d, data, de);
1072 err:
1073         if (d)
1074                 closedir(d);
1075         if (p)
1076                 closedir(p);
1077         return ret;
1078 }
1079
1080 static int param_callback(char *path, semantic_func_t sem_init,
1081                           semantic_func_t sem_fini, struct find_param *param)
1082 {
1083         int ret, len = strlen(path);
1084         char *buf;
1085
1086         if (len > PATH_MAX) {
1087                 llapi_err(LLAPI_MSG_ERROR, "Path name '%s' is too long", path);
1088                 return -EINVAL;
1089         }
1090
1091         buf = (char *)malloc(PATH_MAX + 1);
1092         if (!buf)
1093                 return -ENOMEM;
1094
1095         ret = common_param_init(param);
1096         if (ret)
1097                 goto out;
1098         param->depth = 0;
1099
1100         strncpy(buf, path, PATH_MAX + 1);
1101         ret = llapi_semantic_traverse(buf, PATH_MAX + 1, NULL, sem_init,
1102                                       sem_fini, param, NULL);
1103 out:
1104         find_param_fini(param);
1105         free(buf);
1106         return ret < 0 ? ret : 0;
1107 }
1108
1109 int llapi_file_fget_lov_uuid(int fd, struct obd_uuid *lov_name)
1110 {
1111         int rc = ioctl(fd, OBD_IOC_GETNAME, lov_name);
1112         if (rc) {
1113                 rc = errno;
1114                 llapi_err(LLAPI_MSG_ERROR, "error: can't get lov name.");
1115         }
1116         return rc;
1117 }
1118
1119 int llapi_file_get_lov_uuid(const char *path, struct obd_uuid *lov_uuid)
1120 {
1121         int fd, rc;
1122
1123         fd = open(path, O_RDONLY);
1124         if (fd < 0) {
1125                 rc = errno;
1126                 llapi_err(LLAPI_MSG_ERROR, "error opening %s", path);
1127                 return rc;
1128         }
1129
1130         rc = llapi_file_fget_lov_uuid(fd, lov_uuid);
1131
1132         close(fd);
1133
1134         return rc;
1135 }
1136
1137 /*
1138  * If uuidp is NULL, return the number of available obd uuids.
1139  * If uuidp is non-NULL, then it will return the uuids of the obds. If
1140  * there are more OSTs then allocated to uuidp, then an error is returned with
1141  * the ost_count set to number of available obd uuids.
1142  */
1143 int llapi_lov_get_uuids(int fd, struct obd_uuid *uuidp, int *ost_count)
1144 {
1145         struct obd_uuid lov_name;
1146         char buf[1024];
1147         FILE *fp;
1148         int rc = 0, index = 0;
1149
1150         /* Get the lov name */
1151         rc = llapi_file_fget_lov_uuid(fd, &lov_name);
1152         if (rc)
1153                 return rc;
1154
1155         /* Now get the ost uuids from /proc */
1156         snprintf(buf, sizeof(buf), "/proc/fs/lustre/lov/%s/target_obd",
1157                  lov_name.uuid);
1158         fp = fopen(buf, "r");
1159         if (fp == NULL) {
1160                 rc = errno;
1161                 llapi_err(LLAPI_MSG_ERROR, "error: opening '%s'", buf);
1162                 return rc;
1163         }
1164
1165         while (fgets(buf, sizeof(buf), fp) != NULL) {
1166                 if (uuidp && (index < *ost_count)) {
1167                         if (sscanf(buf, "%d: %s", &index, uuidp[index].uuid) <2)
1168                                 break;
1169                 }
1170                 index++;
1171         }
1172
1173         fclose(fp);
1174
1175         if (uuidp && (index >= *ost_count))
1176                 return -EOVERFLOW;
1177
1178         *ost_count = index;
1179         return rc;
1180 }
1181
1182 /* Check if user specified value matches a real uuid.  Ignore _UUID,
1183  * -osc-4ba41334, other trailing gunk in comparison.
1184  * @param real_uuid ends in "_UUID"
1185  * @param search_uuid may or may not end in "_UUID"
1186  */
1187 int llapi_uuid_match(char *real_uuid, char *search_uuid)
1188 {
1189         int cmplen = strlen(real_uuid);
1190         int searchlen = strlen(search_uuid);
1191
1192         if (cmplen > 5 && strcmp(real_uuid + cmplen - 5, "_UUID") == 0)
1193                 cmplen -= 5;
1194         if (searchlen > 5 && strcmp(search_uuid + searchlen - 5, "_UUID") == 0)
1195                 searchlen -= 5;
1196
1197         /* The UUIDs may legitimately be different lengths, if
1198          * the system was upgraded from an older version. */
1199         if (cmplen != searchlen)
1200                 return 0;
1201
1202         return (strncmp(search_uuid, real_uuid, cmplen) == 0);
1203 }
1204
1205 /* Here, param->obduuid points to a single obduuid, the index of which is
1206  * returned in param->obdindex */
1207 static int setup_obd_uuid(DIR *dir, char *dname, struct find_param *param)
1208 {
1209         struct obd_uuid lov_uuid;
1210         char uuid[sizeof(struct obd_uuid)];
1211         char buf[1024];
1212         FILE *fp;
1213         int rc = 0, index;
1214
1215         if (param->got_uuids)
1216                 return rc;
1217
1218         /* Get the lov name */
1219         rc = llapi_file_fget_lov_uuid(dirfd(dir), &lov_uuid);
1220         if (rc) {
1221                 if (errno != ENOTTY) {
1222                         rc = errno;
1223                         llapi_err(LLAPI_MSG_ERROR,
1224                                   "error: can't get lov name: %s", dname);
1225                 } else {
1226                         rc = 0;
1227                 }
1228                 return rc;
1229         }
1230
1231         param->got_uuids = 1;
1232
1233         /* Now get the ost uuids from /proc */
1234         snprintf(buf, sizeof(buf), "/proc/fs/lustre/lov/%s/target_obd",
1235                  lov_uuid.uuid);
1236         fp = fopen(buf, "r");
1237         if (fp == NULL) {
1238                 rc = errno;
1239                 llapi_err(LLAPI_MSG_ERROR, "error: opening '%s'", buf);
1240                 return rc;
1241         }
1242
1243         if (!param->obduuid && !param->quiet && !param->obds_printed)
1244                 llapi_printf(LLAPI_MSG_NORMAL, "OBDS:\n");
1245
1246         while (fgets(buf, sizeof(buf), fp) != NULL) {
1247                 if (sscanf(buf, "%d: %s", &index, uuid) < 2)
1248                         break;
1249
1250                 if (param->obduuid) {
1251                         if (llapi_uuid_match(uuid, param->obduuid->uuid)) {
1252                                 param->obdindex = index;
1253                                 break;
1254                         }
1255                 } else if (!param->quiet && !param->obds_printed) {
1256                         /* Print everything */
1257                         llapi_printf(LLAPI_MSG_NORMAL, "%s", buf);
1258                 }
1259         }
1260         param->obds_printed = 1;
1261
1262         fclose(fp);
1263
1264         if (param->obduuid && (param->obdindex == OBD_NOT_FOUND)) {
1265                 llapi_err_noerrno(LLAPI_MSG_ERROR,
1266                                   "error: %s: unknown obduuid: %s",
1267                                   __FUNCTION__, param->obduuid->uuid);
1268                 rc = -EINVAL;
1269         }
1270
1271         return (rc);
1272 }
1273
1274 /* In this case, param->obduuid will be an array of obduuids and
1275  * obd index for all these obduuids will be returned in
1276  * param->obdindexes */
1277 static int setup_obd_indexes(DIR *dir, struct find_param *param)
1278 {
1279         struct obd_uuid *uuids = NULL;
1280         int obdcount = INIT_ALLOC_NUM_OSTS;
1281         int ret, obd_valid = 0, obdnum, i;
1282
1283         uuids = (struct obd_uuid *)malloc(INIT_ALLOC_NUM_OSTS *
1284                                           sizeof(struct obd_uuid));
1285         if (uuids == NULL)
1286                 return -ENOMEM;
1287
1288 retry_get_uuids:
1289         ret = llapi_lov_get_uuids(dirfd(dir), uuids,
1290                                   &obdcount);
1291         if (ret) {
1292                 struct obd_uuid *uuids_temp;
1293
1294                 if (ret == -EOVERFLOW) {
1295                         uuids_temp = realloc(uuids, obdcount *
1296                                              sizeof(struct obd_uuid));
1297                         if (uuids_temp != NULL)
1298                                 goto retry_get_uuids;
1299                         else
1300                                 ret = -ENOMEM;
1301                 }
1302
1303                 llapi_err(LLAPI_MSG_ERROR, "get ost uuid failed");
1304                 return ret;
1305         }
1306
1307         param->obdindexes = malloc(param->num_obds * sizeof(param->obdindex));
1308         if (param->obdindexes == NULL)
1309                 return -ENOMEM;
1310
1311         for (obdnum = 0; obdnum < param->num_obds; obdnum++) {
1312                 for (i = 0; i < obdcount; i++) {
1313                         if (llapi_uuid_match(uuids[i].uuid,
1314                                              param->obduuid[obdnum].uuid)) {
1315                                 param->obdindexes[obdnum] = i;
1316                                 obd_valid++;
1317                                 break;
1318                         }
1319                 }
1320                 if (i >= obdcount) {
1321                         param->obdindexes[obdnum] = OBD_NOT_FOUND;
1322                         llapi_err_noerrno(LLAPI_MSG_ERROR,
1323                                           "error: %s: unknown obduuid: %s",
1324                                           __FUNCTION__,
1325                                           param->obduuid[obdnum].uuid);
1326                         ret = -EINVAL;
1327                 }
1328         }
1329
1330         if (obd_valid == 0)
1331                 param->obdindex = OBD_NOT_FOUND;
1332         else
1333                 param->obdindex = obd_valid;
1334
1335         param->got_uuids = 1;
1336
1337         return ret;
1338 }
1339
1340
1341 int llapi_ostlist(char *path, struct find_param *param)
1342 {
1343         DIR *dir;
1344         int ret;
1345
1346         dir = opendir(path);
1347         if (dir == NULL)
1348                 return -errno;
1349
1350         ret = setup_obd_uuid(dir, path, param);
1351         closedir(dir);
1352
1353         return ret;
1354 }
1355
1356 static void lov_dump_user_lmm_header(struct lov_user_md *lum, char *path,
1357                                      int is_dir, int verbose, int depth,
1358                                      char *pool_name)
1359 {
1360         char *prefix = is_dir ? "" : "lmm_";
1361         char nl = is_dir ? ' ' : '\n';
1362
1363         if (is_dir && lum->lmm_object_gr == LOV_OBJECT_GROUP_DEFAULT) {
1364                 lum->lmm_object_gr = LOV_OBJECT_GROUP_CLEAR;
1365                 if (verbose & VERBOSE_DETAIL)
1366                         llapi_printf(LLAPI_MSG_NORMAL, "(Default) ");
1367         }
1368
1369         if (depth && path && ((verbose != VERBOSE_OBJID) || !is_dir))
1370                 llapi_printf(LLAPI_MSG_NORMAL, "%s\n", path);
1371
1372         if ((verbose & VERBOSE_DETAIL) && !is_dir) {
1373                 llapi_printf(LLAPI_MSG_NORMAL, "lmm_magic:          0x%08X\n",
1374                              lum->lmm_magic);
1375                 llapi_printf(LLAPI_MSG_NORMAL, "lmm_object_gr:      "LPX64"\n",
1376                              lum->lmm_object_gr);
1377                 llapi_printf(LLAPI_MSG_NORMAL, "lmm_object_id:      "LPX64"\n",
1378                              lum->lmm_object_id);
1379         }
1380
1381         if (verbose & VERBOSE_COUNT) {
1382                 if (verbose & ~VERBOSE_COUNT)
1383                         llapi_printf(LLAPI_MSG_NORMAL, "%sstripe_count:   ",
1384                                      prefix);
1385                 llapi_printf(LLAPI_MSG_NORMAL, "%u%c",
1386                              (int)lum->lmm_stripe_count, nl);
1387         }
1388
1389         if (verbose & VERBOSE_SIZE) {
1390                 if (verbose & ~VERBOSE_SIZE)
1391                         llapi_printf(LLAPI_MSG_NORMAL, "%sstripe_size:    ",
1392                                      prefix);
1393                 llapi_printf(LLAPI_MSG_NORMAL, "%u%c", lum->lmm_stripe_size,
1394                              nl);
1395         }
1396
1397         if ((verbose & VERBOSE_DETAIL) && !is_dir) {
1398                 llapi_printf(LLAPI_MSG_NORMAL, "lmm_stripe_pattern: %x%c",
1399                              lum->lmm_pattern, nl);
1400         }
1401
1402         if (verbose & VERBOSE_OFFSET) {
1403                 if (verbose & ~VERBOSE_OFFSET)
1404                         llapi_printf(LLAPI_MSG_NORMAL, "%sstripe_offset:  ",
1405                                      prefix);
1406                 if (is_dir) 
1407                         llapi_printf(LLAPI_MSG_NORMAL, "%d%c",
1408                                      lum->lmm_stripe_offset ==
1409                                      (typeof(lum->lmm_stripe_offset))(-1) ? -1 :
1410                                      lum->lmm_stripe_offset, nl);
1411                 else
1412                         llapi_printf(LLAPI_MSG_NORMAL, "%u%c",
1413                                      lum->lmm_objects[0].l_ost_idx, nl);
1414         }
1415
1416         if ((verbose & VERBOSE_POOL) && (pool_name != NULL)) {
1417                 llapi_printf(LLAPI_MSG_NORMAL, "pool: %s", pool_name);
1418                 is_dir = 1;
1419         }
1420
1421         if (is_dir && (verbose != VERBOSE_OBJID))
1422                 llapi_printf(LLAPI_MSG_NORMAL, "\n");
1423 }
1424
1425 static void lov_dump_user_lmm_join(struct lov_user_md_v1 *lum, int is_dir,
1426                                    int obdstripe, int obdindex, int header)
1427 {
1428         struct lov_user_md_join *lumj = (struct lov_user_md_join *)lum;
1429         int i;
1430
1431         if (header && (obdstripe == 1))
1432                 llapi_printf(LLAPI_MSG_NORMAL, "lmm_extent_count:   %x\n",
1433                              lumj->lmm_extent_count);
1434
1435         if (!is_dir && (header & VERBOSE_OBJID)) {
1436                 unsigned long long start = -1, end = 0;
1437
1438                 if (obdstripe == 1)
1439                         llapi_printf(LLAPI_MSG_NORMAL,
1440                                      "joined\tobdidx\t\t objid\t\tobjid\t\t "
1441                                      "group\t\tstart\t\tend\n");
1442                 for (i = 0; i < lumj->lmm_stripe_count; i++) {
1443                         int idx = lumj->lmm_objects[i].l_ost_idx;
1444                         long long oid = lumj->lmm_objects[i].l_object_id;
1445                         long long gr = lumj->lmm_objects[i].l_object_gr;
1446                         if (obdindex == OBD_NOT_FOUND || obdindex == idx)
1447                                 llapi_printf(LLAPI_MSG_NORMAL,
1448                                              "\t%6u\t%14llu\t%#13llx\t%14llu%s",
1449                                              idx, oid, oid, gr,
1450                                              obdindex == idx ? " *" : "");
1451                         if (start != lumj->lmm_objects[i].l_extent_start ||
1452                             end != lumj->lmm_objects[i].l_extent_end) {
1453                                 start = lumj->lmm_objects[i].l_extent_start;
1454                                 llapi_printf(LLAPI_MSG_NORMAL,"\t%14llu",start);
1455                                 end = lumj->lmm_objects[i].l_extent_end;
1456                                 if (end == (unsigned long long)-1)
1457                                         llapi_printf(LLAPI_MSG_NORMAL,
1458                                                      "\t\tEOF\n");
1459                                 else
1460                                         llapi_printf(LLAPI_MSG_NORMAL,
1461                                                      "\t\t%llu\n", end);
1462                         } else {
1463                                 llapi_printf(LLAPI_MSG_NORMAL, "\t\t\t\t\n");
1464                         }
1465                 }
1466                 llapi_printf(LLAPI_MSG_NORMAL, "\n");
1467         }
1468 }
1469
1470 static void lov_dump_user_lmm_v1v3(struct lov_user_md *lum,
1471                                    struct lov_user_ost_data_v1 *objects,
1472                                    int is_dir, int obdstripe,
1473                                    int obdindex,int header)
1474 {
1475         int i;
1476
1477         if (!is_dir && (header & VERBOSE_OBJID)) {
1478                 if (obdstripe == 1)
1479                         llapi_printf(LLAPI_MSG_NORMAL,
1480                                      "\tobdidx\t\t objid\t\tobjid\t\t group\n");
1481
1482                 for (i = 0; i < lum->lmm_stripe_count; i++) {
1483                         int idx = objects[i].l_ost_idx;
1484                         long long oid = objects[i].l_object_id;
1485                         long long gr = objects[i].l_object_gr;
1486                         if ((obdindex == OBD_NOT_FOUND) || (obdindex == idx))
1487                                 llapi_printf(LLAPI_MSG_NORMAL,
1488                                            "\t%6u\t%14llu\t%#13llx\t%14llu%s\n",
1489                                            idx, oid, oid, gr,
1490                                            obdindex == idx ? " *" : "");
1491                 }
1492                 llapi_printf(LLAPI_MSG_NORMAL, "\n");
1493         }
1494 }
1495
1496 void llapi_lov_dump_user_lmm(struct find_param *param,
1497                              char *path, int is_dir)
1498 {
1499         int i, obdstripe = (param->obdindex != OBD_NOT_FOUND) ? 0 : 1;
1500         struct lov_user_md *lum = &param->lmd->lmd_lmm;
1501
1502         if (!obdstripe) {
1503                 for (i = 0; !is_dir && i < lum->lmm_stripe_count; i++) {
1504                         if (param->obdindex == lum->lmm_objects[i].l_ost_idx) {
1505                                 obdstripe = 1;
1506                                 break;
1507                         }
1508                 }
1509         }
1510
1511         switch(*(__u32 *)&param->lmd->lmd_lmm) { /* lum->lmm_magic */
1512         case LOV_USER_MAGIC_V1:
1513                 if (param->verbose && (obdstripe == 1))
1514                         lov_dump_user_lmm_header(lum, path, is_dir,
1515                                                  param->verbose,
1516                                                  param->maxdepth,
1517                                                  NULL);
1518                 lov_dump_user_lmm_v1v3(&param->lmd->lmd_lmm,
1519                                        param->lmd->lmd_lmm.lmm_objects,
1520                                        is_dir, obdstripe,
1521                                        param->obdindex,
1522                                        param->verbose);
1523                 break;
1524         case LOV_USER_MAGIC_JOIN:
1525                 if (param->verbose && (obdstripe == 1))
1526                         lov_dump_user_lmm_header(lum, path, is_dir,
1527                                                  param->verbose,
1528                                                  param->maxdepth,
1529                                                  NULL);
1530                 lov_dump_user_lmm_join(&param->lmd->lmd_lmm, is_dir,
1531                                        obdstripe, param->obdindex,
1532                                        param->verbose);
1533                 break;
1534         case LOV_USER_MAGIC_V3: {
1535                 char pool_name[LOV_MAXPOOLNAME + 1];
1536                 struct lov_user_ost_data_v1 *objects;
1537                 struct lov_user_md_v3 *lmmv3 = (void *)&param->lmd->lmd_lmm;
1538
1539                 strncpy(pool_name, lmmv3->lmm_pool_name, LOV_MAXPOOLNAME);
1540                 pool_name[LOV_MAXPOOLNAME] = '\0';
1541                 objects = lmmv3->lmm_objects;
1542                 if (param->verbose && (obdstripe == 1))
1543                         lov_dump_user_lmm_header(lum, path, is_dir,
1544                                                  param->verbose,
1545                                                  param->maxdepth,
1546                                                  pool_name);
1547                 lov_dump_user_lmm_v1v3(&param->lmd->lmd_lmm, objects, is_dir,
1548                                        obdstripe, param->obdindex,
1549                                        param->verbose);
1550                 break;
1551         }
1552         default:
1553                 llapi_printf(LLAPI_MSG_NORMAL, "unknown lmm_magic:  %#x "
1554                              "(expecting one of %#x %#x %#x)\n",
1555                              param->lmd->lmd_lmm.lmm_magic,
1556                              LOV_USER_MAGIC_V1, LOV_USER_MAGIC_JOIN,
1557                              LOV_USER_MAGIC_V3);
1558                 return;
1559         }
1560 }
1561
1562 int llapi_file_get_stripe(const char *path, struct lov_user_md *lum)
1563 {
1564         const char *fname;
1565         char *dname;
1566         int fd, rc = 0;
1567
1568         fname = strrchr(path, '/');
1569
1570         /* It should be a file (or other non-directory) */
1571         if (fname == NULL) {
1572                 dname = (char *)malloc(2);
1573                 if (dname == NULL)
1574                         return ENOMEM;
1575                 strcpy(dname, ".");
1576                 fname = (char *)path;
1577         } else {
1578                 dname = (char *)malloc(fname - path + 1);
1579                 if (dname == NULL)
1580                         return ENOMEM;
1581                 strncpy(dname, path, fname - path);
1582                 dname[fname - path] = '\0';
1583                 fname++;
1584         }
1585
1586         if ((fd = open(dname, O_RDONLY)) == -1) {
1587                 rc = errno;
1588                 free(dname);
1589                 return rc;
1590         }
1591
1592         strcpy((char *)lum, fname);
1593         if (ioctl(fd, IOC_MDC_GETFILESTRIPE, (void *)lum) == -1)
1594                 rc = errno;
1595
1596         if (close(fd) == -1 && rc == 0)
1597                 rc = errno;
1598
1599         free(dname);
1600
1601         return rc;
1602 }
1603
1604 int llapi_file_lookup(int dirfd, const char *name)
1605 {
1606         struct obd_ioctl_data data = { 0 };
1607         char rawbuf[8192];
1608         char *buf = rawbuf;
1609         int rc;
1610
1611         if (dirfd < 0 || name == NULL)
1612                 return -EINVAL;
1613
1614         data.ioc_version = OBD_IOCTL_VERSION;
1615         data.ioc_len = sizeof(data);
1616         data.ioc_inlbuf1 = (char *)name;
1617         data.ioc_inllen1 = strlen(name) + 1;
1618
1619         rc = obd_ioctl_pack(&data, &buf, sizeof(rawbuf));
1620         if (rc) {
1621                 llapi_err(LLAPI_MSG_ERROR,
1622                           "error: IOC_MDC_LOOKUP pack failed for '%s': rc %d",
1623                           name, rc);
1624                 return rc;
1625         }
1626
1627         return ioctl(dirfd, IOC_MDC_LOOKUP, buf);
1628 }
1629
1630 /* Check if the value matches 1 of the given criteria (e.g. --atime +/-N).
1631  * @mds indicates if this is MDS timestamps and there are attributes on OSTs.
1632  *
1633  * The result is -1 if it does not match, 0 if not yet clear, 1 if matches.
1634  * The table below gives the answers for the specified parameters (value and
1635  * sign), 1st column is the answer for the MDS value, the 2nd is for the OST:
1636  * --------------------------------------
1637  * 1 | file > limit; sign > 0 | -1 / -1 |
1638  * 2 | file = limit; sign > 0 |  ? /  1 |
1639  * 3 | file < limit; sign > 0 |  ? /  1 |
1640  * 4 | file > limit; sign = 0 | -1 / -1 |
1641  * 5 | file = limit; sign = 0 |  ? /  1 |  <- (see the Note below)
1642  * 6 | file < limit; sign = 0 |  ? / -1 |
1643  * 7 | file > limit; sign < 0 |  1 /  1 |
1644  * 8 | file = limit; sign < 0 |  ? / -1 |
1645  * 9 | file < limit; sign < 0 |  ? / -1 |
1646  * --------------------------------------
1647  * Note: 5th actually means that the value is within the interval
1648  * (limit - margin, limit]. */
1649 static int find_value_cmp(unsigned int file, unsigned int limit, int sign,
1650                           int negopt, unsigned long long margin, int mds)
1651 {
1652         int ret = -1;
1653
1654         if (sign > 0) {
1655                 if (file <= limit)
1656                         ret = mds ? 0 : 1;
1657         } else if (sign == 0) {
1658                 if (file <= limit && file + margin >= limit)
1659                         ret = mds ? 0 : 1;
1660                 else if (file + margin <= limit)
1661                         ret = mds ? 0 : -1;
1662         } else if (sign < 0) {
1663                 if (file >= limit)
1664                         ret = 1;
1665                 else if (mds)
1666                         ret = 0;
1667         }
1668
1669         return negopt ? ~ret + 1 : ret;
1670 }
1671
1672 /* Check if the file time matches all the given criteria (e.g. --atime +/-N).
1673  * Return -1 or 1 if file timestamp does not or does match the given criteria
1674  * correspondingly. Return 0 if the MDS time is being checked and there are
1675  * attributes on OSTs and it is not yet clear if the timespamp matches.
1676  *
1677  * If 0 is returned, we need to do another RPC to the OSTs to obtain the
1678  * updated timestamps. */
1679 static int find_time_check(lstat_t *st, struct find_param *param, int mds)
1680 {
1681         int ret;
1682         int rc = 0;
1683
1684         /* Check if file is accepted. */
1685         if (param->atime) {
1686                 ret = find_value_cmp(st->st_atime, param->atime,
1687                                      param->asign, param->exclude_atime,
1688                                      24 * 60 * 60, mds);
1689                 if (ret < 0)
1690                         return ret;
1691                 rc = ret;
1692         }
1693
1694         if (param->mtime) {
1695                 ret = find_value_cmp(st->st_mtime, param->mtime,
1696                                      param->msign, param->exclude_mtime,
1697                                      24 * 60 * 60, mds);
1698                 if (ret < 0)
1699                         return ret;
1700
1701                 /* If the previous check matches, but this one is not yet clear,
1702                  * we should return 0 to do an RPC on OSTs. */
1703                 if (rc == 1)
1704                         rc = ret;
1705         }
1706
1707         if (param->ctime) {
1708                 ret = find_value_cmp(st->st_ctime, param->ctime,
1709                                      param->csign, param->exclude_ctime,
1710                                      24 * 60 * 60, mds);
1711                 if (ret < 0)
1712                         return ret;
1713
1714                 /* If the previous check matches, but this one is not yet clear,
1715                  * we should return 0 to do an RPC on OSTs. */
1716                 if (rc == 1)
1717                         rc = ret;
1718         }
1719
1720         return rc;
1721 }
1722
1723 static int cb_find_init(char *path, DIR *parent, DIR *dir,
1724                         void *data, struct dirent64 *de)
1725 {
1726         struct find_param *param = (struct find_param *)data;
1727         struct lov_user_md_v3 *lmmv3 = (void *)&param->lmd->lmd_lmm;
1728         int decision = 1; /* 1 is accepted; -1 is rejected. */
1729         lstat_t *st = &param->lmd->lmd_st;
1730         int lustre_fs = 1;
1731         int checked_type = 0;
1732         int ret = 0;
1733
1734         LASSERT(parent != NULL || dir != NULL);
1735
1736         param->lmd->lmd_lmm.lmm_stripe_count = 0;
1737
1738         /* If a regular expression is presented, make the initial decision */
1739         if (param->pattern != NULL) {
1740                 char *fname = strrchr(path, '/');
1741                 fname = (fname == NULL ? path : fname + 1);
1742                 ret = fnmatch(param->pattern, fname, 0);
1743                 if ((ret == FNM_NOMATCH && !param->exclude_pattern) ||
1744                     (ret == 0 && param->exclude_pattern))
1745                         goto decided;
1746         }
1747
1748         /* See if we can check the file type from the dirent. */
1749         if (param->type && de != NULL && de->d_type != DT_UNKNOWN &&
1750             de->d_type <= DT_MAX) {
1751                 checked_type = 1;
1752                 if (llapi_dir_filetype_table[de->d_type] == param->type) {
1753                         if (param->exclude_type)
1754                                 goto decided;
1755                 } else {
1756                         if (!param->exclude_type)
1757                                 goto decided;
1758                 }
1759         }
1760
1761
1762         /* If a time or OST should be checked, the decision is not taken yet. */
1763         if (param->atime || param->ctime || param->mtime || param->obduuid ||
1764             param->size_check)
1765                 decision = 0;
1766
1767         ret = 0;
1768         /* Request MDS for the stat info. */
1769         if (param->have_fileinfo == 0) {
1770                 if (dir) {
1771                         /* retrieve needed file info */
1772                         ret = ioctl(dirfd(dir), LL_IOC_MDC_GETINFO,
1773                                     (void *)param->lmd);
1774                 } else {
1775                         char *fname = strrchr(path, '/');
1776                         fname = (fname == NULL ? path : fname + 1);
1777
1778                         /* retrieve needed file info */
1779                         strncpy((char *)param->lmd, fname, param->lumlen);
1780                         ret = ioctl(dirfd(parent), IOC_MDC_GETFILEINFO,
1781                                    (void *)param->lmd);
1782                 }
1783         }
1784
1785         if (ret) {
1786                 if (errno == ENOTTY) {
1787                         /* ioctl is not supported, it is not a lustre fs.
1788                          * Do the regular lstat(2) instead. */
1789                         lustre_fs = 0;
1790                         ret = lstat_f(path, st);
1791                         if (ret) {
1792                                 llapi_err(LLAPI_MSG_ERROR,
1793                                           "error: %s: lstat failed for %s",
1794                                           __func__, path);
1795                                 return ret;
1796                         }
1797                 } else if (errno == ENOENT) {
1798                         llapi_err(LLAPI_MSG_WARN,
1799                                   "warning: %s: %s does not exist",
1800                                   __func__, path);
1801                         goto decided;
1802                 } else {
1803                         llapi_err(LLAPI_MSG_ERROR,"error: %s: %s failed for %s",
1804                                   __func__, dir ? "LL_IOC_MDC_GETINFO" :
1805                                   "IOC_MDC_GETFILEINFO", path);
1806                         return ret;
1807                 }
1808         }
1809
1810         if (param->check_uid) {
1811                 if (st->st_uid == param->uid) {
1812                         if (param->exclude_uid)
1813                                 goto decided;
1814                 } else {
1815                         if (!param->exclude_uid)
1816                                 goto decided;
1817                 }
1818         }
1819
1820         if (param->check_gid) {
1821                 if (st->st_gid == param->gid) {
1822                         if (param->exclude_gid)
1823                                 goto decided;
1824                 } else {
1825                         if (!param->exclude_gid)
1826                                 goto decided;
1827                 }
1828         }
1829
1830         if (param->check_pool) {
1831                 /* empty requested pool is taken as no pool search => V1 */
1832                 if ((param->lmd->lmd_lmm.lmm_magic == LOV_USER_MAGIC_V1 &&
1833                      param->poolname[0] == '\0') ||
1834                     (param->lmd->lmd_lmm.lmm_magic == LOV_USER_MAGIC_V3 &&
1835                      (strncmp(lmmv3->lmm_pool_name, param->poolname,
1836                               LOV_MAXPOOLNAME) == 0 ||
1837                       strcmp(param->poolname, "*") == 0))) {
1838                         if (param->exclude_pool)
1839                                 goto decided;
1840                 } else {
1841                         if (!param->exclude_pool)
1842                                 goto decided;
1843                 }
1844         }
1845
1846         /* Check the time on mds. */
1847         if (!decision) {
1848                 int for_mds;
1849
1850                 for_mds = lustre_fs ? (S_ISREG(st->st_mode) &&
1851                                        param->lmd->lmd_lmm.lmm_stripe_count)
1852                                     : 0;
1853                 decision = find_time_check(st, param, for_mds);
1854                 if (decision == -1)
1855                         goto decided;
1856         }
1857
1858         if (param->type && !checked_type) {
1859                 if ((st->st_mode & S_IFMT) == param->type) {
1860                         if (param->exclude_type)
1861                                 goto decided;
1862                 } else {
1863                         if (!param->exclude_type)
1864                                 goto decided;
1865                 }
1866         }
1867
1868         /* Prepare odb. */
1869         if (param->obduuid) {
1870                 if (lustre_fs && param->got_uuids &&
1871                     param->st_dev != st->st_dev) {
1872                         /* A lustre/lustre mount point is crossed. */
1873                         param->got_uuids = 0;
1874                         param->obds_printed = 0;
1875                         param->obdindex = OBD_NOT_FOUND;
1876                 }
1877
1878                 if (lustre_fs && !param->got_uuids) {
1879                         ret = setup_obd_indexes(dir ? dir : parent, param);
1880                         if (ret)
1881                                 return ret;
1882
1883                         param->st_dev = st->st_dev;
1884                 } else if (!lustre_fs && param->got_uuids) {
1885                         /* A lustre/non-lustre mount point is crossed. */
1886                         param->got_uuids = 0;
1887                         param->obdindex = OBD_NOT_FOUND;
1888                 }
1889         }
1890
1891         /* If an OBD UUID is specified but no one matches, skip this file. */
1892         if (param->obduuid && param->obdindex == OBD_NOT_FOUND)
1893                 goto decided;
1894
1895         /* If a OST UUID is given, and some OST matches, check it here. */
1896         if (param->obdindex != OBD_NOT_FOUND) {
1897                 if (!S_ISREG(st->st_mode))
1898                         goto decided;
1899
1900                 /* Only those files should be accepted, which have a
1901                  * stripe on the specified OST. */
1902                 if (!param->lmd->lmd_lmm.lmm_stripe_count) {
1903                         goto decided;
1904                 } else {
1905                         int i, j;
1906                         struct lov_user_ost_data_v1 *lmm_objects;
1907
1908                         if (param->lmd->lmd_lmm.lmm_magic == LOV_USER_MAGIC_V3)
1909                                 lmm_objects = lmmv3->lmm_objects;
1910                         else
1911                                 lmm_objects = param->lmd->lmd_lmm.lmm_objects;
1912
1913                         for (i = 0;
1914                              i < param->lmd->lmd_lmm.lmm_stripe_count; i++) {
1915                                 for (j = 0; j < param->num_obds; j++) {
1916                                         if (param->obdindexes[j] ==
1917                                             lmm_objects[i].l_ost_idx) {
1918                                                 if (param->exclude_obd)
1919                                                         goto decided;
1920                                                 goto obd_matches;
1921                                         }
1922                                 }
1923                         }
1924
1925                         if (i == param->lmd->lmd_lmm.lmm_stripe_count) {
1926                                 if (param->exclude_obd)
1927                                         goto obd_matches;
1928                                 goto decided;
1929                         }
1930                 }
1931         }
1932
1933 obd_matches:
1934
1935         /* If file still fits the request, ask osd for updated info.
1936            The regulat stat is almost of the same speed as some new
1937            'glimpse-size-ioctl'. */
1938         if (!decision && S_ISREG(st->st_mode) &&
1939             param->lmd->lmd_lmm.lmm_stripe_count &&
1940             (param->size_check ||param->atime ||param->mtime ||param->ctime)) {
1941                 if (dir) {
1942                         ret = ioctl(dirfd(dir), IOC_LOV_GETINFO,
1943                                     (void *)param->lmd);
1944                 } else if (parent) {
1945                         ret = ioctl(dirfd(parent), IOC_LOV_GETINFO,
1946                                     (void *)param->lmd);
1947                 }
1948
1949                 if (ret) {
1950                         if (errno == ENOENT) {
1951                                 llapi_err(LLAPI_MSG_ERROR,
1952                                           "warning: %s: %s does not exist",
1953                                           __func__, path);
1954                                 goto decided;
1955                         } else {
1956                                 llapi_err(LLAPI_MSG_ERROR,
1957                                           "%s: IOC_LOV_GETINFO on %s failed",
1958                                           __func__, path);
1959                                 return ret;
1960                         }
1961                 }
1962
1963                 /* Check the time on osc. */
1964                 decision = find_time_check(st, param, 0);
1965                 if (decision == -1)
1966                         goto decided;
1967         }
1968
1969         if (param->size_check) {
1970                 decision = find_value_cmp(st->st_size, param->size,
1971                                           param->size_sign, param->exclude_size,
1972                                           param->size_units, 0);
1973         }
1974
1975         if (decision != -1) {
1976                 llapi_printf(LLAPI_MSG_NORMAL, "%s", path);
1977                 if (param->zeroend)
1978                         llapi_printf(LLAPI_MSG_NORMAL, "%c", '\0');
1979                 else
1980                         llapi_printf(LLAPI_MSG_NORMAL, "\n");
1981         }
1982
1983 decided:
1984         /* Do not get down anymore? */
1985         if (param->depth == param->maxdepth)
1986                 return 1;
1987
1988         param->depth++;
1989         return 0;
1990 }
1991
1992 int llapi_find(char *path, struct find_param *param)
1993 {
1994         return param_callback(path, cb_find_init, cb_common_fini, param);
1995 }
1996
1997 static int cb_getstripe(char *path, DIR *parent, DIR *d, void *data,
1998                         struct dirent64 *de)
1999 {
2000         struct find_param *param = (struct find_param *)data;
2001         int ret = 0;
2002
2003         LASSERT(parent != NULL || d != NULL);
2004
2005         if (param->obduuid) {
2006                 param->quiet = 1;
2007                 ret = setup_obd_uuid(d ? d : parent, path, param);
2008                 if (ret)
2009                         return ret;
2010         }
2011
2012         if (d) {
2013                 ret = ioctl(dirfd(d), LL_IOC_LOV_GETSTRIPE,
2014                             (void *)&param->lmd->lmd_lmm);
2015         } else if (parent) {
2016                 char *fname = strrchr(path, '/');
2017                 fname = (fname == NULL ? path : fname + 1);
2018
2019                 strncpy((char *)&param->lmd->lmd_lmm, fname, param->lumlen);
2020                 ret = ioctl(dirfd(parent), IOC_MDC_GETFILESTRIPE,
2021                             (void *)&param->lmd->lmd_lmm);
2022         }
2023
2024         if (ret) {
2025                 if (errno == ENODATA) {
2026                         if (!param->obduuid)
2027                                 llapi_printf(LLAPI_MSG_NORMAL,
2028                                              "%s has no stripe info\n", path);
2029                         goto out;
2030                 } else if (errno == ENOTTY) {
2031                         llapi_err(LLAPI_MSG_ERROR,
2032                                   "%s: '%s' not on a Lustre fs?",
2033                                   __func__, path);
2034                 } else if (errno == ENOENT) {
2035                         llapi_err(LLAPI_MSG_WARN,
2036                                   "warning: %s: %s does not exist",
2037                                   __func__, path);
2038                         goto out;
2039                 } else {
2040                         llapi_err(LLAPI_MSG_ERROR,
2041                                   "error: %s: %s failed for %s",
2042                                    __func__, d ? "LL_IOC_LOV_GETSTRIPE" :
2043                                   "IOC_MDC_GETFILESTRIPE", path);
2044                 }
2045
2046                 return ret;
2047         }
2048
2049         llapi_lov_dump_user_lmm(param, path, d ? 1 : 0);
2050 out:
2051         /* Do not get down anymore? */
2052         if (param->depth == param->maxdepth)
2053                 return 1;
2054
2055         param->depth++;
2056         return 0;
2057 }
2058
2059 int llapi_getstripe(char *path, struct find_param *param)
2060 {
2061         return param_callback(path, cb_getstripe, cb_common_fini, param);
2062 }
2063
2064 int llapi_obd_statfs(char *path, __u32 type, __u32 index,
2065                      struct obd_statfs *stat_buf,
2066                      struct obd_uuid *uuid_buf)
2067 {
2068         int fd;
2069         char raw[OBD_MAX_IOCTL_BUFFER] = {'\0'};
2070         char *rawbuf = raw;
2071         struct obd_ioctl_data data = { 0 };
2072         int rc = 0;
2073
2074         data.ioc_inlbuf1 = (char *)&type;
2075         data.ioc_inllen1 = sizeof(__u32);
2076         data.ioc_inlbuf2 = (char *)&index;
2077         data.ioc_inllen2 = sizeof(__u32);
2078         data.ioc_pbuf1 = (char *)stat_buf;
2079         data.ioc_plen1 = sizeof(struct obd_statfs);
2080         data.ioc_pbuf2 = (char *)uuid_buf;
2081         data.ioc_plen2 = sizeof(struct obd_uuid);
2082
2083         if ((rc = obd_ioctl_pack(&data, &rawbuf, sizeof(raw))) != 0) {
2084                 llapi_err(LLAPI_MSG_ERROR,
2085                           "llapi_obd_statfs: error packing ioctl data");
2086                 return rc;
2087         }
2088
2089         fd = open(path, O_RDONLY);
2090         if (errno == EISDIR)
2091                 fd = open(path, O_DIRECTORY | O_RDONLY);
2092
2093         if (fd < 0) {
2094                 rc = errno ? -errno : -EBADF;
2095                 llapi_err(LLAPI_MSG_ERROR, "error: %s: opening '%s'",
2096                           __func__, path);
2097                 return rc;
2098         }
2099         rc = ioctl(fd, IOC_OBD_STATFS, (void *)rawbuf);
2100         if (rc)
2101                 rc = errno ? -errno : -EINVAL;
2102
2103         close(fd);
2104         return rc;
2105 }
2106
2107 #define MAX_STRING_SIZE 128
2108 #define DEVICES_LIST "/proc/fs/lustre/devices"
2109
2110 int llapi_ping(char *obd_type, char *obd_name)
2111 {
2112         char path[MAX_STRING_SIZE];
2113         char buf[1];
2114         int rc, fd;
2115
2116         snprintf(path, MAX_STRING_SIZE, "/proc/fs/lustre/%s/%s/ping",
2117                  obd_type, obd_name);
2118
2119         fd = open(path, O_WRONLY);
2120         if (fd < 0) {
2121                 rc = errno;
2122                 llapi_err(LLAPI_MSG_ERROR, "error opening %s", path);
2123                 return rc;
2124         }
2125
2126         rc = write(fd, buf, 1);
2127         close(fd);
2128
2129         if (rc == 1)
2130                 return 0;
2131         return rc;
2132 }
2133
2134 int llapi_target_iterate(int type_num, char **obd_type,void *args,llapi_cb_t cb)
2135 {
2136         char buf[MAX_STRING_SIZE];
2137         FILE *fp = fopen(DEVICES_LIST, "r");
2138         int i, rc = 0;
2139
2140         if (fp == NULL) {
2141                 rc = errno;
2142                 llapi_err(LLAPI_MSG_ERROR, "error: opening "DEVICES_LIST);
2143                 return rc;
2144         }
2145
2146         while (fgets(buf, sizeof(buf), fp) != NULL) {
2147                 char *obd_type_name = NULL;
2148                 char *obd_name = NULL;
2149                 char *obd_uuid = NULL;
2150                 char rawbuf[OBD_MAX_IOCTL_BUFFER];
2151                 char *bufl = rawbuf;
2152                 char *bufp = buf;
2153                 struct obd_ioctl_data datal = { 0, };
2154                 struct obd_statfs osfs_buffer;
2155
2156                 while(bufp[0] == ' ')
2157                         ++bufp;
2158
2159                 for(i = 0; i < 3; i++) {
2160                         obd_type_name = strsep(&bufp, " ");
2161                 }
2162                 obd_name = strsep(&bufp, " ");
2163                 obd_uuid = strsep(&bufp, " ");
2164
2165                 memset(&osfs_buffer, 0, sizeof (osfs_buffer));
2166
2167                 memset(bufl, 0, sizeof(rawbuf));
2168                 datal.ioc_pbuf1 = (char *)&osfs_buffer;
2169                 datal.ioc_plen1 = sizeof(osfs_buffer);
2170
2171                 for (i = 0; i < type_num; i++) {
2172                         if (strcmp(obd_type_name, obd_type[i]) != 0)
2173                                 continue;
2174
2175                         cb(obd_type_name, obd_name, obd_uuid, args);
2176                 }
2177         }
2178         fclose(fp);
2179         return rc;
2180 }
2181
2182 static void do_target_check(char *obd_type_name, char *obd_name,
2183                             char *obd_uuid, void *args)
2184 {
2185         int rc;
2186
2187         rc = llapi_ping(obd_type_name, obd_name);
2188         if (rc == ENOTCONN) {
2189                 llapi_printf(LLAPI_MSG_NORMAL, "%s inactive.\n", obd_name);
2190         } else if (rc) {
2191                 llapi_err(LLAPI_MSG_ERROR, "error: check '%s'", obd_name);
2192         } else {
2193                 llapi_printf(LLAPI_MSG_NORMAL, "%s active.\n", obd_name);
2194         }
2195 }
2196
2197 int llapi_target_check(int type_num, char **obd_type, char *dir)
2198 {
2199         return llapi_target_iterate(type_num, obd_type, NULL, do_target_check);
2200 }
2201
2202 #undef MAX_STRING_SIZE
2203
2204 int llapi_catinfo(char *dir, char *keyword, char *node_name)
2205 {
2206         char raw[OBD_MAX_IOCTL_BUFFER];
2207         char out[LLOG_CHUNK_SIZE];
2208         char *buf = raw;
2209         struct obd_ioctl_data data = { 0 };
2210         char key[30];
2211         DIR *root;
2212         int rc;
2213
2214         sprintf(key, "%s", keyword);
2215         memset(raw, 0, sizeof(raw));
2216         memset(out, 0, sizeof(out));
2217         data.ioc_inlbuf1 = key;
2218         data.ioc_inllen1 = strlen(key) + 1;
2219         if (node_name) {
2220                 data.ioc_inlbuf2 = node_name;
2221                 data.ioc_inllen2 = strlen(node_name) + 1;
2222         }
2223         data.ioc_pbuf1 = out;
2224         data.ioc_plen1 = sizeof(out);
2225         rc = obd_ioctl_pack(&data, &buf, sizeof(raw));
2226         if (rc)
2227                 return rc;
2228
2229         root = opendir(dir);
2230         if (root == NULL) {
2231                 rc = errno;
2232                 llapi_err(LLAPI_MSG_ERROR, "open %s failed", dir);
2233                 return rc;
2234         }
2235
2236         rc = ioctl(dirfd(root), OBD_IOC_LLOG_CATINFO, buf);
2237         if (rc)
2238                 llapi_err(LLAPI_MSG_ERROR, "ioctl OBD_IOC_CATINFO failed");
2239         else
2240                 llapi_printf(LLAPI_MSG_NORMAL, "%s", data.ioc_pbuf1);
2241
2242         closedir(root);
2243         return rc;
2244 }
2245
2246 /* Is this a lustre fs? */
2247 int llapi_is_lustre_mnttype(const char *type)
2248 {
2249         return (strcmp(type, "lustre") == 0 || strcmp(type,"lustre_lite") == 0);
2250 }
2251
2252 /* Is this a lustre client fs? */
2253 int llapi_is_lustre_mnt(struct mntent *mnt)
2254 {
2255         return (llapi_is_lustre_mnttype(mnt->mnt_type) &&
2256                 strstr(mnt->mnt_fsname, ":/") != NULL);
2257 }
2258
2259 int llapi_quotacheck(char *mnt, int check_type)
2260 {
2261         DIR *root;
2262         int rc;
2263
2264         root = opendir(mnt);
2265         if (!root) {
2266                 llapi_err(LLAPI_MSG_ERROR, "open %s failed", mnt);
2267                 return -1;
2268         }
2269
2270         rc = ioctl(dirfd(root), LL_IOC_QUOTACHECK, check_type);
2271
2272         closedir(root);
2273         return rc;
2274 }
2275
2276 int llapi_poll_quotacheck(char *mnt, struct if_quotacheck *qchk)
2277 {
2278         DIR *root;
2279         int poll_intvl = 2;
2280         int rc;
2281
2282         root = opendir(mnt);
2283         if (!root) {
2284                 llapi_err(LLAPI_MSG_ERROR, "open %s failed", mnt);
2285                 return -1;
2286         }
2287
2288         while (1) {
2289                 rc = ioctl(dirfd(root), LL_IOC_POLL_QUOTACHECK, qchk);
2290                 if (!rc)
2291                         break;
2292                 sleep(poll_intvl);
2293                 if (poll_intvl < 30)
2294                         poll_intvl *= 2;
2295         }
2296
2297         closedir(root);
2298         return rc;
2299 }
2300
2301 int llapi_quotactl(char *mnt, struct if_quotactl *qctl)
2302 {
2303         DIR *root;
2304         int rc;
2305
2306         root = opendir(mnt);
2307         if (!root) {
2308                 llapi_err(LLAPI_MSG_ERROR, "open %s failed", mnt);
2309                 return -1;
2310         }
2311
2312         rc = ioctl(dirfd(root), LL_IOC_QUOTACTL, qctl);
2313
2314         closedir(root);
2315         return rc;
2316 }
2317
2318 static int cb_quotachown(char *path, DIR *parent, DIR *d, void *data,
2319                          struct dirent64 *de)
2320 {
2321         struct find_param *param = (struct find_param *)data;
2322         lstat_t *st;
2323         int rc;
2324
2325         LASSERT(parent != NULL || d != NULL);
2326
2327         if (d) {
2328                 rc = ioctl(dirfd(d), LL_IOC_MDC_GETINFO,
2329                            (void *)param->lmd);
2330         } else if (parent) {
2331                 char *fname = strrchr(path, '/');
2332                 fname = (fname == NULL ? path : fname + 1);
2333
2334                 strncpy((char *)param->lmd, fname, param->lumlen);
2335                 rc = ioctl(dirfd(parent), IOC_MDC_GETFILEINFO,
2336                            (void *)param->lmd);
2337         } else {
2338                 return 0;
2339         }
2340
2341         if (rc) {
2342                 if (errno == ENODATA) {
2343                         if (!param->obduuid && !param->quiet)
2344                                 llapi_err(LLAPI_MSG_ERROR,
2345                                           "%s has no stripe info", path);
2346                         rc = 0;
2347                 } else if (errno == ENOENT) {
2348                         llapi_err(LLAPI_MSG_ERROR,
2349                                   "warning: %s: %s does not exist",
2350                                   __func__, path);
2351                         rc = 0;
2352                 } else if (errno != EISDIR) {
2353                         rc = errno;
2354                         llapi_err(LLAPI_MSG_ERROR, "%s ioctl failed for %s.",
2355                                   d ? "LL_IOC_MDC_GETINFO" :
2356                                   "IOC_MDC_GETFILEINFO", path);
2357                 }
2358                 return rc;
2359         }
2360
2361         st = &param->lmd->lmd_st;
2362
2363         /* libc chown() will do extra check, and if the real owner is
2364          * the same as the ones to set, it won't fall into kernel, so
2365          * invoke syscall directly. */
2366         rc = syscall(SYS_chown, path, -1, -1);
2367         if (rc)
2368                 llapi_err(LLAPI_MSG_ERROR, "error: chown %s", path);
2369
2370         rc = chmod(path, st->st_mode);
2371         if (rc)
2372                 llapi_err(LLAPI_MSG_ERROR, "error: chmod %s (%hu)",
2373                           path, st->st_mode);
2374
2375         return rc;
2376 }
2377
2378 int llapi_quotachown(char *path, int flag)
2379 {
2380         struct find_param param;
2381         
2382         memset(&param, 0, sizeof(param));
2383         param.recursive = 1;
2384         param.verbose = 0;
2385         param.quiet = 1;
2386
2387         return param_callback(path, cb_quotachown, NULL, &param);
2388 }
2389
2390 int llapi_path2fid(const char *path, lustre_fid *fid)
2391 {
2392         int fd, rc;
2393
2394         fd = open(path, O_RDONLY);
2395         if (fd < 0)
2396                 return -errno;
2397
2398         rc = ioctl(fd, LL_IOC_PATH2FID, fid);
2399
2400         close(fd);
2401         return rc;
2402 }
2403
2404 int llapi_get_connect_flags(const char *mnt, __u64 *flags)
2405 {
2406         DIR *root;
2407         int rc;
2408
2409         root = opendir(mnt);
2410         if (!root) {
2411                 llapi_err(LLAPI_MSG_ERROR, "open %s failed", mnt);
2412                 return -1;
2413         }
2414
2415         rc = ioctl(dirfd(root), LL_IOC_GET_CONNECT_FLAGS, flags);
2416         closedir(root);
2417         if (rc < 0)
2418                 llapi_err(LLAPI_MSG_ERROR,
2419                           "ioctl on %s for getting connect flags failed", mnt);
2420         return rc;
2421 }