Whamcloud - gitweb
b=14929 a tiny fix for mkfs build
[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) {
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 static int cb_ostlist(char *path, DIR *parent, DIR *d, void *data,
1341                        struct dirent64 *de)
1342 {
1343         struct find_param *param = (struct find_param *)data;
1344         int ret;
1345
1346         LASSERT(parent != NULL || d != NULL);
1347
1348         /* Prepare odb. */
1349         ret = setup_obd_uuid(d ? d : parent, path, param);
1350
1351         /* We don't want to actually traverse the directory tree,
1352          * so return a positive value from sem_init to terminate
1353          * the traversal before it starts.
1354          */
1355         return ret == 0 ? 1 : ret;
1356 }
1357
1358 int llapi_ostlist(char *path, struct find_param *param)
1359 {
1360         return param_callback(path, cb_ostlist, cb_common_fini, param);
1361 }
1362
1363 static void lov_dump_user_lmm_header(struct lov_user_md *lum, char *path,
1364                                      int is_dir, int verbose, int depth,
1365                                      char *pool_name)
1366 {
1367         char *prefix = is_dir ? "" : "lmm_";
1368         char nl = is_dir ? ' ' : '\n';
1369
1370         if (is_dir && lum->lmm_object_gr == LOV_OBJECT_GROUP_DEFAULT) {
1371                 lum->lmm_object_gr = LOV_OBJECT_GROUP_CLEAR;
1372                 if (verbose & VERBOSE_DETAIL)
1373                         llapi_printf(LLAPI_MSG_NORMAL, "(Default) ");
1374         }
1375
1376         if (depth && path && ((verbose != VERBOSE_OBJID) || !is_dir))
1377                 llapi_printf(LLAPI_MSG_NORMAL, "%s\n", path);
1378
1379         if ((verbose & VERBOSE_DETAIL) && !is_dir) {
1380                 llapi_printf(LLAPI_MSG_NORMAL, "lmm_magic:          0x%08X\n",
1381                              lum->lmm_magic);
1382                 llapi_printf(LLAPI_MSG_NORMAL, "lmm_object_gr:      "LPX64"\n",
1383                              lum->lmm_object_gr);
1384                 llapi_printf(LLAPI_MSG_NORMAL, "lmm_object_id:      "LPX64"\n",
1385                              lum->lmm_object_id);
1386         }
1387
1388         if (verbose & VERBOSE_COUNT) {
1389                 if (verbose & ~VERBOSE_COUNT)
1390                         llapi_printf(LLAPI_MSG_NORMAL, "%sstripe_count:   ",
1391                                      prefix);
1392                 llapi_printf(LLAPI_MSG_NORMAL, "%u%c",
1393                              (int)lum->lmm_stripe_count, nl);
1394         }
1395
1396         if (verbose & VERBOSE_SIZE) {
1397                 if (verbose & ~VERBOSE_SIZE)
1398                         llapi_printf(LLAPI_MSG_NORMAL, "%sstripe_size:    ",
1399                                      prefix);
1400                 llapi_printf(LLAPI_MSG_NORMAL, "%u%c", lum->lmm_stripe_size,
1401                              nl);
1402         }
1403
1404         if ((verbose & VERBOSE_DETAIL) && !is_dir) {
1405                 llapi_printf(LLAPI_MSG_NORMAL, "lmm_stripe_pattern: %x%c",
1406                              lum->lmm_pattern, nl);
1407         }
1408
1409         if (verbose & VERBOSE_OFFSET) {
1410                 if (verbose & ~VERBOSE_OFFSET)
1411                         llapi_printf(LLAPI_MSG_NORMAL, "%sstripe_offset:  ",
1412                                      prefix);
1413                 if (is_dir) 
1414                         llapi_printf(LLAPI_MSG_NORMAL, "%d%c",
1415                                      lum->lmm_stripe_offset ==
1416                                      (typeof(lum->lmm_stripe_offset))(-1) ? -1 :
1417                                      lum->lmm_stripe_offset, nl);
1418                 else
1419                         llapi_printf(LLAPI_MSG_NORMAL, "%u%c",
1420                                      lum->lmm_objects[0].l_ost_idx, nl);
1421         }
1422
1423         if ((verbose & VERBOSE_POOL) && (pool_name != NULL)) {
1424                 llapi_printf(LLAPI_MSG_NORMAL, "pool: %s", pool_name);
1425                 is_dir = 1;
1426         }
1427
1428         if (is_dir && (verbose != VERBOSE_OBJID))
1429                 llapi_printf(LLAPI_MSG_NORMAL, "\n");
1430 }
1431
1432 static void lov_dump_user_lmm_join(struct lov_user_md_v1 *lum, int is_dir,
1433                                    int obdstripe, int obdindex, int header)
1434 {
1435         struct lov_user_md_join *lumj = (struct lov_user_md_join *)lum;
1436         int i;
1437
1438         if (header && (obdstripe == 1))
1439                 llapi_printf(LLAPI_MSG_NORMAL, "lmm_extent_count:   %x\n",
1440                              lumj->lmm_extent_count);
1441
1442         if (!is_dir && (header & VERBOSE_OBJID)) {
1443                 unsigned long long start = -1, end = 0;
1444
1445                 if (obdstripe == 1)
1446                         llapi_printf(LLAPI_MSG_NORMAL,
1447                                      "joined\tobdidx\t\t objid\t\tobjid\t\t "
1448                                      "group\t\tstart\t\tend\n");
1449                 for (i = 0; i < lumj->lmm_stripe_count; i++) {
1450                         int idx = lumj->lmm_objects[i].l_ost_idx;
1451                         long long oid = lumj->lmm_objects[i].l_object_id;
1452                         long long gr = lumj->lmm_objects[i].l_object_gr;
1453                         if (obdindex == OBD_NOT_FOUND || obdindex == idx)
1454                                 llapi_printf(LLAPI_MSG_NORMAL,
1455                                              "\t%6u\t%14llu\t%#13llx\t%14llu%s",
1456                                              idx, oid, oid, gr,
1457                                              obdindex == idx ? " *" : "");
1458                         if (start != lumj->lmm_objects[i].l_extent_start ||
1459                             end != lumj->lmm_objects[i].l_extent_end) {
1460                                 start = lumj->lmm_objects[i].l_extent_start;
1461                                 llapi_printf(LLAPI_MSG_NORMAL,"\t%14llu",start);
1462                                 end = lumj->lmm_objects[i].l_extent_end;
1463                                 if (end == (unsigned long long)-1)
1464                                         llapi_printf(LLAPI_MSG_NORMAL,
1465                                                      "\t\tEOF\n");
1466                                 else
1467                                         llapi_printf(LLAPI_MSG_NORMAL,
1468                                                      "\t\t%llu\n", end);
1469                         } else {
1470                                 llapi_printf(LLAPI_MSG_NORMAL, "\t\t\t\t\n");
1471                         }
1472                 }
1473                 llapi_printf(LLAPI_MSG_NORMAL, "\n");
1474         }
1475 }
1476
1477 static void lov_dump_user_lmm_v1v3(struct lov_user_md *lum,
1478                                    struct lov_user_ost_data_v1 *objects,
1479                                    int is_dir, int obdstripe,
1480                                    int obdindex,int header)
1481 {
1482         int i;
1483
1484         if (!is_dir && (header & VERBOSE_OBJID)) {
1485                 if (obdstripe == 1)
1486                         llapi_printf(LLAPI_MSG_NORMAL,
1487                                      "\tobdidx\t\t objid\t\tobjid\t\t group\n");
1488
1489                 for (i = 0; i < lum->lmm_stripe_count; i++) {
1490                         int idx = objects[i].l_ost_idx;
1491                         long long oid = objects[i].l_object_id;
1492                         long long gr = objects[i].l_object_gr;
1493                         if ((obdindex == OBD_NOT_FOUND) || (obdindex == idx))
1494                                 llapi_printf(LLAPI_MSG_NORMAL,
1495                                            "\t%6u\t%14llu\t%#13llx\t%14llu%s\n",
1496                                            idx, oid, oid, gr,
1497                                            obdindex == idx ? " *" : "");
1498                 }
1499                 llapi_printf(LLAPI_MSG_NORMAL, "\n");
1500         }
1501 }
1502
1503 void llapi_lov_dump_user_lmm(struct find_param *param,
1504                              char *path, int is_dir)
1505 {
1506         int i, obdstripe = (param->obdindex != OBD_NOT_FOUND) ? 0 : 1;
1507         struct lov_user_md *lum = &param->lmd->lmd_lmm;
1508
1509         if (!obdstripe) {
1510                 for (i = 0; !is_dir && i < lum->lmm_stripe_count; i++) {
1511                         if (param->obdindex == lum->lmm_objects[i].l_ost_idx) {
1512                                 obdstripe = 1;
1513                                 break;
1514                         }
1515                 }
1516         }
1517
1518         switch(*(__u32 *)&param->lmd->lmd_lmm) { /* lum->lmm_magic */
1519         case LOV_USER_MAGIC_V1:
1520                 if (param->verbose && (obdstripe == 1))
1521                         lov_dump_user_lmm_header(lum, path, is_dir,
1522                                                  param->verbose,
1523                                                  param->maxdepth,
1524                                                  NULL);
1525                 lov_dump_user_lmm_v1v3(&param->lmd->lmd_lmm,
1526                                        param->lmd->lmd_lmm.lmm_objects,
1527                                        is_dir, obdstripe,
1528                                        param->obdindex,
1529                                        param->verbose);
1530                 break;
1531         case LOV_USER_MAGIC_JOIN:
1532                 if (param->verbose && (obdstripe == 1))
1533                         lov_dump_user_lmm_header(lum, path, is_dir,
1534                                                  param->verbose,
1535                                                  param->maxdepth,
1536                                                  NULL);
1537                 lov_dump_user_lmm_join(&param->lmd->lmd_lmm, is_dir,
1538                                        obdstripe, param->obdindex,
1539                                        param->verbose);
1540                 break;
1541         case LOV_USER_MAGIC_V3: {
1542                 char pool_name[LOV_MAXPOOLNAME + 1];
1543                 struct lov_user_ost_data_v1 *objects;
1544                 struct lov_user_md_v3 *lmmv3 = (void *)&param->lmd->lmd_lmm;
1545
1546                 strncpy(pool_name, lmmv3->lmm_pool_name, LOV_MAXPOOLNAME);
1547                 pool_name[LOV_MAXPOOLNAME] = '\0';
1548                 objects = lmmv3->lmm_objects;
1549                 if (param->verbose && (obdstripe == 1))
1550                         lov_dump_user_lmm_header(lum, path, is_dir,
1551                                                  param->verbose,
1552                                                  param->maxdepth,
1553                                                  pool_name);
1554                 lov_dump_user_lmm_v1v3(&param->lmd->lmd_lmm, objects, is_dir,
1555                                        obdstripe, param->obdindex,
1556                                        param->verbose);
1557                 break;
1558         }
1559         default:
1560                 llapi_printf(LLAPI_MSG_NORMAL, "unknown lmm_magic:  %#x "
1561                              "(expecting one of %#x %#x %#x)\n",
1562                              param->lmd->lmd_lmm.lmm_magic,
1563                              LOV_USER_MAGIC_V1, LOV_USER_MAGIC_JOIN,
1564                              LOV_USER_MAGIC_V3);
1565                 return;
1566         }
1567 }
1568
1569 int llapi_file_get_stripe(const char *path, struct lov_user_md *lum)
1570 {
1571         const char *fname;
1572         char *dname;
1573         int fd, rc = 0;
1574
1575         fname = strrchr(path, '/');
1576
1577         /* It should be a file (or other non-directory) */
1578         if (fname == NULL) {
1579                 dname = (char *)malloc(2);
1580                 if (dname == NULL)
1581                         return ENOMEM;
1582                 strcpy(dname, ".");
1583                 fname = (char *)path;
1584         } else {
1585                 dname = (char *)malloc(fname - path + 1);
1586                 if (dname == NULL)
1587                         return ENOMEM;
1588                 strncpy(dname, path, fname - path);
1589                 dname[fname - path] = '\0';
1590                 fname++;
1591         }
1592
1593         if ((fd = open(dname, O_RDONLY)) == -1) {
1594                 rc = errno;
1595                 free(dname);
1596                 return rc;
1597         }
1598
1599         strcpy((char *)lum, fname);
1600         if (ioctl(fd, IOC_MDC_GETFILESTRIPE, (void *)lum) == -1)
1601                 rc = errno;
1602
1603         if (close(fd) == -1 && rc == 0)
1604                 rc = errno;
1605
1606         free(dname);
1607
1608         return rc;
1609 }
1610
1611 int llapi_file_lookup(int dirfd, const char *name)
1612 {
1613         struct obd_ioctl_data data = { 0 };
1614         char rawbuf[8192];
1615         char *buf = rawbuf;
1616         int rc;
1617
1618         if (dirfd < 0 || name == NULL)
1619                 return -EINVAL;
1620
1621         data.ioc_version = OBD_IOCTL_VERSION;
1622         data.ioc_len = sizeof(data);
1623         data.ioc_inlbuf1 = (char *)name;
1624         data.ioc_inllen1 = strlen(name) + 1;
1625
1626         rc = obd_ioctl_pack(&data, &buf, sizeof(rawbuf));
1627         if (rc) {
1628                 llapi_err(LLAPI_MSG_ERROR,
1629                           "error: IOC_MDC_LOOKUP pack failed for '%s': rc %d",
1630                           name, rc);
1631                 return rc;
1632         }
1633
1634         return ioctl(dirfd, IOC_MDC_LOOKUP, buf);
1635 }
1636
1637 /* Check if the value matches 1 of the given criteria (e.g. --atime +/-N).
1638  * @mds indicates if this is MDS timestamps and there are attributes on OSTs.
1639  *
1640  * The result is -1 if it does not match, 0 if not yet clear, 1 if matches.
1641  * The table below gives the answers for the specified parameters (value and
1642  * sign), 1st column is the answer for the MDS value, the 2nd is for the OST:
1643  * --------------------------------------
1644  * 1 | file > limit; sign > 0 | -1 / -1 |
1645  * 2 | file = limit; sign > 0 |  ? /  1 |
1646  * 3 | file < limit; sign > 0 |  ? /  1 |
1647  * 4 | file > limit; sign = 0 | -1 / -1 |
1648  * 5 | file = limit; sign = 0 |  ? /  1 |  <- (see the Note below)
1649  * 6 | file < limit; sign = 0 |  ? / -1 |
1650  * 7 | file > limit; sign < 0 |  1 /  1 |
1651  * 8 | file = limit; sign < 0 |  ? / -1 |
1652  * 9 | file < limit; sign < 0 |  ? / -1 |
1653  * --------------------------------------
1654  * Note: 5th actually means that the value is within the interval
1655  * (limit - margin, limit]. */
1656 static int find_value_cmp(unsigned int file, unsigned int limit, int sign,
1657                           int negopt, unsigned long long margin, int mds)
1658 {
1659         int ret = -1;
1660
1661         if (sign > 0) {
1662                 if (file <= limit)
1663                         ret = mds ? 0 : 1;
1664         } else if (sign == 0) {
1665                 if (file <= limit && file + margin >= limit)
1666                         ret = mds ? 0 : 1;
1667                 else if (file + margin <= limit)
1668                         ret = mds ? 0 : -1;
1669         } else if (sign < 0) {
1670                 if (file >= limit)
1671                         ret = 1;
1672                 else if (mds)
1673                         ret = 0;
1674         }
1675
1676         return negopt ? ~ret + 1 : ret;
1677 }
1678
1679 /* Check if the file time matches all the given criteria (e.g. --atime +/-N).
1680  * Return -1 or 1 if file timestamp does not or does match the given criteria
1681  * correspondingly. Return 0 if the MDS time is being checked and there are
1682  * attributes on OSTs and it is not yet clear if the timespamp matches.
1683  *
1684  * If 0 is returned, we need to do another RPC to the OSTs to obtain the
1685  * updated timestamps. */
1686 static int find_time_check(lstat_t *st, struct find_param *param, int mds)
1687 {
1688         int ret;
1689         int rc = 0;
1690
1691         /* Check if file is accepted. */
1692         if (param->atime) {
1693                 ret = find_value_cmp(st->st_atime, param->atime,
1694                                      param->asign, param->exclude_atime,
1695                                      24 * 60 * 60, mds);
1696                 if (ret < 0)
1697                         return ret;
1698                 rc = ret;
1699         }
1700
1701         if (param->mtime) {
1702                 ret = find_value_cmp(st->st_mtime, param->mtime,
1703                                      param->msign, param->exclude_mtime,
1704                                      24 * 60 * 60, mds);
1705                 if (ret < 0)
1706                         return ret;
1707
1708                 /* If the previous check matches, but this one is not yet clear,
1709                  * we should return 0 to do an RPC on OSTs. */
1710                 if (rc == 1)
1711                         rc = ret;
1712         }
1713
1714         if (param->ctime) {
1715                 ret = find_value_cmp(st->st_ctime, param->ctime,
1716                                      param->csign, param->exclude_ctime,
1717                                      24 * 60 * 60, mds);
1718                 if (ret < 0)
1719                         return ret;
1720
1721                 /* If the previous check matches, but this one is not yet clear,
1722                  * we should return 0 to do an RPC on OSTs. */
1723                 if (rc == 1)
1724                         rc = ret;
1725         }
1726
1727         return rc;
1728 }
1729
1730 static int cb_find_init(char *path, DIR *parent, DIR *dir,
1731                         void *data, struct dirent64 *de)
1732 {
1733         struct find_param *param = (struct find_param *)data;
1734         struct lov_user_md_v3 *lmmv3 = (void *)&param->lmd->lmd_lmm;
1735         int decision = 1; /* 1 is accepted; -1 is rejected. */
1736         lstat_t *st = &param->lmd->lmd_st;
1737         int lustre_fs = 1;
1738         int checked_type = 0;
1739         int ret = 0;
1740
1741         LASSERT(parent != NULL || dir != NULL);
1742
1743         param->lmd->lmd_lmm.lmm_stripe_count = 0;
1744
1745         /* If a regular expression is presented, make the initial decision */
1746         if (param->pattern != NULL) {
1747                 char *fname = strrchr(path, '/');
1748                 fname = (fname == NULL ? path : fname + 1);
1749                 ret = fnmatch(param->pattern, fname, 0);
1750                 if ((ret == FNM_NOMATCH && !param->exclude_pattern) ||
1751                     (ret == 0 && param->exclude_pattern))
1752                         goto decided;
1753         }
1754
1755         /* See if we can check the file type from the dirent. */
1756         if (param->type && de != NULL && de->d_type != DT_UNKNOWN &&
1757             de->d_type <= DT_MAX) {
1758                 checked_type = 1;
1759                 if (llapi_dir_filetype_table[de->d_type] == param->type) {
1760                         if (param->exclude_type)
1761                                 goto decided;
1762                 } else {
1763                         if (!param->exclude_type)
1764                                 goto decided;
1765                 }
1766         }
1767
1768
1769         /* If a time or OST should be checked, the decision is not taken yet. */
1770         if (param->atime || param->ctime || param->mtime || param->obduuid ||
1771             param->size_check)
1772                 decision = 0;
1773
1774         ret = 0;
1775         /* Request MDS for the stat info. */
1776         if (param->have_fileinfo == 0) {
1777                 if (dir) {
1778                         /* retrieve needed file info */
1779                         ret = ioctl(dirfd(dir), LL_IOC_MDC_GETINFO,
1780                                     (void *)param->lmd);
1781                 } else {
1782                         char *fname = strrchr(path, '/');
1783                         fname = (fname == NULL ? path : fname + 1);
1784
1785                         /* retrieve needed file info */
1786                         strncpy((char *)param->lmd, fname, param->lumlen);
1787                         ret = ioctl(dirfd(parent), IOC_MDC_GETFILEINFO,
1788                                    (void *)param->lmd);
1789                 }
1790         }
1791
1792         if (ret) {
1793                 if (errno == ENOTTY) {
1794                         /* ioctl is not supported, it is not a lustre fs.
1795                          * Do the regular lstat(2) instead. */
1796                         lustre_fs = 0;
1797                         ret = lstat_f(path, st);
1798                         if (ret) {
1799                                 llapi_err(LLAPI_MSG_ERROR,
1800                                           "error: %s: lstat failed for %s",
1801                                           __func__, path);
1802                                 return ret;
1803                         }
1804                 } else if (errno == ENOENT) {
1805                         llapi_err(LLAPI_MSG_WARN,
1806                                   "warning: %s: %s does not exist",
1807                                   __func__, path);
1808                         goto decided;
1809                 } else {
1810                         llapi_err(LLAPI_MSG_ERROR,"error: %s: %s failed for %s",
1811                                   __func__, dir ? "LL_IOC_MDC_GETINFO" :
1812                                   "IOC_MDC_GETFILEINFO", path);
1813                         return ret;
1814                 }
1815         }
1816
1817         if (param->check_uid) {
1818                 if (st->st_uid == param->uid) {
1819                         if (param->exclude_uid)
1820                                 goto decided;
1821                 } else {
1822                         if (!param->exclude_uid)
1823                                 goto decided;
1824                 }
1825         }
1826
1827         if (param->check_gid) {
1828                 if (st->st_gid == param->gid) {
1829                         if (param->exclude_gid)
1830                                 goto decided;
1831                 } else {
1832                         if (!param->exclude_gid)
1833                                 goto decided;
1834                 }
1835         }
1836
1837         if (param->check_pool) {
1838                 /* empty requested pool is taken as no pool search => V1 */
1839                 if ((param->lmd->lmd_lmm.lmm_magic == LOV_USER_MAGIC_V1 &&
1840                      param->poolname[0] == '\0') ||
1841                     (param->lmd->lmd_lmm.lmm_magic == LOV_USER_MAGIC_V3 &&
1842                      (strncmp(lmmv3->lmm_pool_name, param->poolname,
1843                               LOV_MAXPOOLNAME) == 0 ||
1844                       strcmp(param->poolname, "*") == 0))) {
1845                         if (param->exclude_pool)
1846                                 goto decided;
1847                 } else {
1848                         if (!param->exclude_pool)
1849                                 goto decided;
1850                 }
1851         }
1852
1853         /* Check the time on mds. */
1854         if (!decision) {
1855                 int for_mds;
1856
1857                 for_mds = lustre_fs ? (S_ISREG(st->st_mode) &&
1858                                        param->lmd->lmd_lmm.lmm_stripe_count)
1859                                     : 0;
1860                 decision = find_time_check(st, param, for_mds);
1861                 if (decision == -1)
1862                         goto decided;
1863         }
1864
1865         if (param->type && !checked_type) {
1866                 if ((st->st_mode & S_IFMT) == param->type) {
1867                         if (param->exclude_type)
1868                                 goto decided;
1869                 } else {
1870                         if (!param->exclude_type)
1871                                 goto decided;
1872                 }
1873         }
1874
1875         /* Prepare odb. */
1876         if (param->obduuid) {
1877                 if (lustre_fs && param->got_uuids &&
1878                     param->st_dev != st->st_dev) {
1879                         /* A lustre/lustre mount point is crossed. */
1880                         param->got_uuids = 0;
1881                         param->obds_printed = 0;
1882                         param->obdindex = OBD_NOT_FOUND;
1883                 }
1884
1885                 if (lustre_fs && !param->got_uuids) {
1886                         ret = setup_obd_indexes(dir ? dir : parent, param);
1887                         if (ret)
1888                                 return ret;
1889
1890                         param->st_dev = st->st_dev;
1891                 } else if (!lustre_fs && param->got_uuids) {
1892                         /* A lustre/non-lustre mount point is crossed. */
1893                         param->got_uuids = 0;
1894                         param->obdindex = OBD_NOT_FOUND;
1895                 }
1896         }
1897
1898         /* If an OBD UUID is specified but no one matches, skip this file. */
1899         if (param->obduuid && param->obdindex == OBD_NOT_FOUND)
1900                 goto decided;
1901
1902         /* If a OST UUID is given, and some OST matches, check it here. */
1903         if (param->obdindex != OBD_NOT_FOUND) {
1904                 if (!S_ISREG(st->st_mode))
1905                         goto decided;
1906
1907                 /* Only those files should be accepted, which have a
1908                  * stripe on the specified OST. */
1909                 if (!param->lmd->lmd_lmm.lmm_stripe_count) {
1910                         goto decided;
1911                 } else {
1912                         int i, j;
1913                         struct lov_user_ost_data_v1 *lmm_objects;
1914
1915                         if (param->lmd->lmd_lmm.lmm_magic == LOV_USER_MAGIC_V3)
1916                                 lmm_objects = lmmv3->lmm_objects;
1917                         else
1918                                 lmm_objects = param->lmd->lmd_lmm.lmm_objects;
1919
1920                         for (i = 0;
1921                              i < param->lmd->lmd_lmm.lmm_stripe_count; i++) {
1922                                 for (j = 0; j < param->num_obds; j++) {
1923                                         if (param->obdindexes[j] ==
1924                                             lmm_objects[i].l_ost_idx) {
1925                                                 if (param->exclude_obd)
1926                                                         goto decided;
1927                                                 goto obd_matches;
1928                                         }
1929                                 }
1930                         }
1931
1932                         if (i == param->lmd->lmd_lmm.lmm_stripe_count) {
1933                                 if (param->exclude_obd)
1934                                         goto obd_matches;
1935                                 goto decided;
1936                         }
1937                 }
1938         }
1939
1940 obd_matches:
1941
1942         /* If file still fits the request, ask osd for updated info.
1943            The regulat stat is almost of the same speed as some new
1944            'glimpse-size-ioctl'. */
1945         if (!decision && S_ISREG(st->st_mode) &&
1946             param->lmd->lmd_lmm.lmm_stripe_count &&
1947             (param->size_check ||param->atime ||param->mtime ||param->ctime)) {
1948                 if (dir) {
1949                         ret = ioctl(dirfd(dir), IOC_LOV_GETINFO,
1950                                     (void *)param->lmd);
1951                 } else if (parent) {
1952                         ret = ioctl(dirfd(parent), IOC_LOV_GETINFO,
1953                                     (void *)param->lmd);
1954                 }
1955
1956                 if (ret) {
1957                         if (errno == ENOENT) {
1958                                 llapi_err(LLAPI_MSG_ERROR,
1959                                           "warning: %s: %s does not exist",
1960                                           __func__, path);
1961                                 goto decided;
1962                         } else {
1963                                 llapi_err(LLAPI_MSG_ERROR,
1964                                           "%s: IOC_LOV_GETINFO on %s failed",
1965                                           __func__, path);
1966                                 return ret;
1967                         }
1968                 }
1969
1970                 /* Check the time on osc. */
1971                 decision = find_time_check(st, param, 0);
1972                 if (decision == -1)
1973                         goto decided;
1974         }
1975
1976         if (param->size_check) {
1977                 decision = find_value_cmp(st->st_size, param->size,
1978                                           param->size_sign, param->exclude_size,
1979                                           param->size_units, 0);
1980         }
1981
1982         if (decision != -1) {
1983                 llapi_printf(LLAPI_MSG_NORMAL, "%s", path);
1984                 if (param->zeroend)
1985                         llapi_printf(LLAPI_MSG_NORMAL, "%c", '\0');
1986                 else
1987                         llapi_printf(LLAPI_MSG_NORMAL, "\n");
1988         }
1989
1990 decided:
1991         /* Do not get down anymore? */
1992         if (param->depth == param->maxdepth)
1993                 return 1;
1994
1995         param->depth++;
1996         return 0;
1997 }
1998
1999 int llapi_find(char *path, struct find_param *param)
2000 {
2001         return param_callback(path, cb_find_init, cb_common_fini, param);
2002 }
2003
2004 static int cb_getstripe(char *path, DIR *parent, DIR *d, void *data,
2005                         struct dirent64 *de)
2006 {
2007         struct find_param *param = (struct find_param *)data;
2008         int ret = 0;
2009
2010         LASSERT(parent != NULL || d != NULL);
2011
2012         if (param->obduuid) {
2013                 param->quiet = 1;
2014                 ret = setup_obd_uuid(d ? d : parent, path, param);
2015                 if (ret)
2016                         return ret;
2017         }
2018
2019         if (d) {
2020                 ret = ioctl(dirfd(d), LL_IOC_LOV_GETSTRIPE,
2021                             (void *)&param->lmd->lmd_lmm);
2022         } else if (parent) {
2023                 char *fname = strrchr(path, '/');
2024                 fname = (fname == NULL ? path : fname + 1);
2025
2026                 strncpy((char *)&param->lmd->lmd_lmm, fname, param->lumlen);
2027                 ret = ioctl(dirfd(parent), IOC_MDC_GETFILESTRIPE,
2028                             (void *)&param->lmd->lmd_lmm);
2029         }
2030
2031         if (ret) {
2032                 if (errno == ENODATA) {
2033                         if (!param->obduuid)
2034                                 llapi_printf(LLAPI_MSG_NORMAL,
2035                                              "%s has no stripe info\n", path);
2036                         goto out;
2037                 } else if (errno == ENOTTY) {
2038                         llapi_err(LLAPI_MSG_ERROR,
2039                                   "%s: '%s' not on a Lustre fs?",
2040                                   __func__, path);
2041                 } else if (errno == ENOENT) {
2042                         llapi_err(LLAPI_MSG_WARN,
2043                                   "warning: %s: %s does not exist",
2044                                   __func__, path);
2045                         goto out;
2046                 } else {
2047                         llapi_err(LLAPI_MSG_ERROR,
2048                                   "error: %s: %s failed for %s",
2049                                    __func__, d ? "LL_IOC_LOV_GETSTRIPE" :
2050                                   "IOC_MDC_GETFILESTRIPE", path);
2051                 }
2052
2053                 return ret;
2054         }
2055
2056         llapi_lov_dump_user_lmm(param, path, d ? 1 : 0);
2057 out:
2058         /* Do not get down anymore? */
2059         if (param->depth == param->maxdepth)
2060                 return 1;
2061
2062         param->depth++;
2063         return 0;
2064 }
2065
2066 int llapi_getstripe(char *path, struct find_param *param)
2067 {
2068         return param_callback(path, cb_getstripe, cb_common_fini, param);
2069 }
2070
2071 int llapi_obd_statfs(char *path, __u32 type, __u32 index,
2072                      struct obd_statfs *stat_buf,
2073                      struct obd_uuid *uuid_buf)
2074 {
2075         int fd;
2076         char raw[OBD_MAX_IOCTL_BUFFER] = {'\0'};
2077         char *rawbuf = raw;
2078         struct obd_ioctl_data data = { 0 };
2079         int rc = 0;
2080
2081         data.ioc_inlbuf1 = (char *)&type;
2082         data.ioc_inllen1 = sizeof(__u32);
2083         data.ioc_inlbuf2 = (char *)&index;
2084         data.ioc_inllen2 = sizeof(__u32);
2085         data.ioc_pbuf1 = (char *)stat_buf;
2086         data.ioc_plen1 = sizeof(struct obd_statfs);
2087         data.ioc_pbuf2 = (char *)uuid_buf;
2088         data.ioc_plen2 = sizeof(struct obd_uuid);
2089
2090         if ((rc = obd_ioctl_pack(&data, &rawbuf, sizeof(raw))) != 0) {
2091                 llapi_err(LLAPI_MSG_ERROR,
2092                           "llapi_obd_statfs: error packing ioctl data");
2093                 return rc;
2094         }
2095
2096         fd = open(path, O_RDONLY);
2097         if (errno == EISDIR)
2098                 fd = open(path, O_DIRECTORY | O_RDONLY);
2099
2100         if (fd < 0) {
2101                 rc = errno ? -errno : -EBADF;
2102                 llapi_err(LLAPI_MSG_ERROR, "error: %s: opening '%s'",
2103                           __func__, path);
2104                 return rc;
2105         }
2106         rc = ioctl(fd, IOC_OBD_STATFS, (void *)rawbuf);
2107         if (rc)
2108                 rc = errno ? -errno : -EINVAL;
2109
2110         close(fd);
2111         return rc;
2112 }
2113
2114 #define MAX_STRING_SIZE 128
2115 #define DEVICES_LIST "/proc/fs/lustre/devices"
2116
2117 int llapi_ping(char *obd_type, char *obd_name)
2118 {
2119         char path[MAX_STRING_SIZE];
2120         char buf[1];
2121         int rc, fd;
2122
2123         snprintf(path, MAX_STRING_SIZE, "/proc/fs/lustre/%s/%s/ping",
2124                  obd_type, obd_name);
2125
2126         fd = open(path, O_WRONLY);
2127         if (fd < 0) {
2128                 rc = errno;
2129                 llapi_err(LLAPI_MSG_ERROR, "error opening %s", path);
2130                 return rc;
2131         }
2132
2133         rc = write(fd, buf, 1);
2134         close(fd);
2135
2136         if (rc == 1)
2137                 return 0;
2138         return rc;
2139 }
2140
2141 int llapi_target_iterate(int type_num, char **obd_type,void *args,llapi_cb_t cb)
2142 {
2143         char buf[MAX_STRING_SIZE];
2144         FILE *fp = fopen(DEVICES_LIST, "r");
2145         int i, rc = 0;
2146
2147         if (fp == NULL) {
2148                 rc = errno;
2149                 llapi_err(LLAPI_MSG_ERROR, "error: opening "DEVICES_LIST);
2150                 return rc;
2151         }
2152
2153         while (fgets(buf, sizeof(buf), fp) != NULL) {
2154                 char *obd_type_name = NULL;
2155                 char *obd_name = NULL;
2156                 char *obd_uuid = NULL;
2157                 char rawbuf[OBD_MAX_IOCTL_BUFFER];
2158                 char *bufl = rawbuf;
2159                 char *bufp = buf;
2160                 struct obd_ioctl_data datal = { 0, };
2161                 struct obd_statfs osfs_buffer;
2162
2163                 while(bufp[0] == ' ')
2164                         ++bufp;
2165
2166                 for(i = 0; i < 3; i++) {
2167                         obd_type_name = strsep(&bufp, " ");
2168                 }
2169                 obd_name = strsep(&bufp, " ");
2170                 obd_uuid = strsep(&bufp, " ");
2171
2172                 memset(&osfs_buffer, 0, sizeof (osfs_buffer));
2173
2174                 memset(bufl, 0, sizeof(rawbuf));
2175                 datal.ioc_pbuf1 = (char *)&osfs_buffer;
2176                 datal.ioc_plen1 = sizeof(osfs_buffer);
2177
2178                 for (i = 0; i < type_num; i++) {
2179                         if (strcmp(obd_type_name, obd_type[i]) != 0)
2180                                 continue;
2181
2182                         cb(obd_type_name, obd_name, obd_uuid, args);
2183                 }
2184         }
2185         fclose(fp);
2186         return rc;
2187 }
2188
2189 static void do_target_check(char *obd_type_name, char *obd_name,
2190                             char *obd_uuid, void *args)
2191 {
2192         int rc;
2193
2194         rc = llapi_ping(obd_type_name, obd_name);
2195         if (rc == ENOTCONN) {
2196                 llapi_printf(LLAPI_MSG_NORMAL, "%s inactive.\n", obd_name);
2197         } else if (rc) {
2198                 llapi_err(LLAPI_MSG_ERROR, "error: check '%s'", obd_name);
2199         } else {
2200                 llapi_printf(LLAPI_MSG_NORMAL, "%s active.\n", obd_name);
2201         }
2202 }
2203
2204 int llapi_target_check(int type_num, char **obd_type, char *dir)
2205 {
2206         return llapi_target_iterate(type_num, obd_type, NULL, do_target_check);
2207 }
2208
2209 #undef MAX_STRING_SIZE
2210
2211 int llapi_catinfo(char *dir, char *keyword, char *node_name)
2212 {
2213         char raw[OBD_MAX_IOCTL_BUFFER];
2214         char out[LLOG_CHUNK_SIZE];
2215         char *buf = raw;
2216         struct obd_ioctl_data data = { 0 };
2217         char key[30];
2218         DIR *root;
2219         int rc;
2220
2221         sprintf(key, "%s", keyword);
2222         memset(raw, 0, sizeof(raw));
2223         memset(out, 0, sizeof(out));
2224         data.ioc_inlbuf1 = key;
2225         data.ioc_inllen1 = strlen(key) + 1;
2226         if (node_name) {
2227                 data.ioc_inlbuf2 = node_name;
2228                 data.ioc_inllen2 = strlen(node_name) + 1;
2229         }
2230         data.ioc_pbuf1 = out;
2231         data.ioc_plen1 = sizeof(out);
2232         rc = obd_ioctl_pack(&data, &buf, sizeof(raw));
2233         if (rc)
2234                 return rc;
2235
2236         root = opendir(dir);
2237         if (root == NULL) {
2238                 rc = errno;
2239                 llapi_err(LLAPI_MSG_ERROR, "open %s failed", dir);
2240                 return rc;
2241         }
2242
2243         rc = ioctl(dirfd(root), OBD_IOC_LLOG_CATINFO, buf);
2244         if (rc)
2245                 llapi_err(LLAPI_MSG_ERROR, "ioctl OBD_IOC_CATINFO failed");
2246         else
2247                 llapi_printf(LLAPI_MSG_NORMAL, "%s", data.ioc_pbuf1);
2248
2249         closedir(root);
2250         return rc;
2251 }
2252
2253 /* Is this a lustre fs? */
2254 int llapi_is_lustre_mnttype(const char *type)
2255 {
2256         return (strcmp(type, "lustre") == 0 || strcmp(type,"lustre_lite") == 0);
2257 }
2258
2259 /* Is this a lustre client fs? */
2260 int llapi_is_lustre_mnt(struct mntent *mnt)
2261 {
2262         return (llapi_is_lustre_mnttype(mnt->mnt_type) &&
2263                 strstr(mnt->mnt_fsname, ":/") != NULL);
2264 }
2265
2266 int llapi_quotacheck(char *mnt, int check_type)
2267 {
2268         DIR *root;
2269         int rc;
2270
2271         root = opendir(mnt);
2272         if (!root) {
2273                 llapi_err(LLAPI_MSG_ERROR, "open %s failed", mnt);
2274                 return -1;
2275         }
2276
2277         rc = ioctl(dirfd(root), LL_IOC_QUOTACHECK, check_type);
2278
2279         closedir(root);
2280         return rc;
2281 }
2282
2283 int llapi_poll_quotacheck(char *mnt, struct if_quotacheck *qchk)
2284 {
2285         DIR *root;
2286         int poll_intvl = 2;
2287         int rc;
2288
2289         root = opendir(mnt);
2290         if (!root) {
2291                 llapi_err(LLAPI_MSG_ERROR, "open %s failed", mnt);
2292                 return -1;
2293         }
2294
2295         while (1) {
2296                 rc = ioctl(dirfd(root), LL_IOC_POLL_QUOTACHECK, qchk);
2297                 if (!rc)
2298                         break;
2299                 sleep(poll_intvl);
2300                 if (poll_intvl < 30)
2301                         poll_intvl *= 2;
2302         }
2303
2304         closedir(root);
2305         return rc;
2306 }
2307
2308 int llapi_quotactl(char *mnt, struct if_quotactl *qctl)
2309 {
2310         DIR *root;
2311         int rc;
2312
2313         root = opendir(mnt);
2314         if (!root) {
2315                 llapi_err(LLAPI_MSG_ERROR, "open %s failed", mnt);
2316                 return -1;
2317         }
2318
2319         rc = ioctl(dirfd(root), LL_IOC_QUOTACTL, qctl);
2320
2321         closedir(root);
2322         return rc;
2323 }
2324
2325 static int cb_quotachown(char *path, DIR *parent, DIR *d, void *data,
2326                          struct dirent64 *de)
2327 {
2328         struct find_param *param = (struct find_param *)data;
2329         lstat_t *st;
2330         int rc;
2331
2332         LASSERT(parent != NULL || d != NULL);
2333
2334         if (d) {
2335                 rc = ioctl(dirfd(d), LL_IOC_MDC_GETINFO,
2336                            (void *)param->lmd);
2337         } else if (parent) {
2338                 char *fname = strrchr(path, '/');
2339                 fname = (fname == NULL ? path : fname + 1);
2340
2341                 strncpy((char *)param->lmd, fname, param->lumlen);
2342                 rc = ioctl(dirfd(parent), IOC_MDC_GETFILEINFO,
2343                            (void *)param->lmd);
2344         } else {
2345                 return 0;
2346         }
2347
2348         if (rc) {
2349                 if (errno == ENODATA) {
2350                         if (!param->obduuid && !param->quiet)
2351                                 llapi_err(LLAPI_MSG_ERROR,
2352                                           "%s has no stripe info", path);
2353                         rc = 0;
2354                 } else if (errno == ENOENT) {
2355                         llapi_err(LLAPI_MSG_ERROR,
2356                                   "warning: %s: %s does not exist",
2357                                   __func__, path);
2358                         rc = 0;
2359                 } else if (errno != EISDIR) {
2360                         rc = errno;
2361                         llapi_err(LLAPI_MSG_ERROR, "%s ioctl failed for %s.",
2362                                   d ? "LL_IOC_MDC_GETINFO" :
2363                                   "IOC_MDC_GETFILEINFO", path);
2364                 }
2365                 return rc;
2366         }
2367
2368         st = &param->lmd->lmd_st;
2369
2370         /* libc chown() will do extra check, and if the real owner is
2371          * the same as the ones to set, it won't fall into kernel, so
2372          * invoke syscall directly. */
2373         rc = syscall(SYS_chown, path, -1, -1);
2374         if (rc)
2375                 llapi_err(LLAPI_MSG_ERROR, "error: chown %s", path);
2376
2377         rc = chmod(path, st->st_mode);
2378         if (rc)
2379                 llapi_err(LLAPI_MSG_ERROR, "error: chmod %s (%hu)",
2380                           path, st->st_mode);
2381
2382         return rc;
2383 }
2384
2385 int llapi_quotachown(char *path, int flag)
2386 {
2387         struct find_param param;
2388         
2389         memset(&param, 0, sizeof(param));
2390         param.recursive = 1;
2391         param.verbose = 0;
2392         param.quiet = 1;
2393
2394         return param_callback(path, cb_quotachown, NULL, &param);
2395 }
2396
2397 int llapi_path2fid(const char *path, lustre_fid *fid)
2398 {
2399         int fd, rc;
2400
2401         fd = open(path, O_RDONLY);
2402         if (fd < 0)
2403                 return -errno;
2404
2405         rc = ioctl(fd, LL_IOC_PATH2FID, fid);
2406
2407         close(fd);
2408         return rc;
2409 }
2410
2411 int llapi_get_connect_flags(const char *mnt, __u64 *flags)
2412 {
2413         DIR *root;
2414         int rc;
2415
2416         root = opendir(mnt);
2417         if (!root) {
2418                 llapi_err(LLAPI_MSG_ERROR, "open %s failed", mnt);
2419                 return -1;
2420         }
2421
2422         rc = ioctl(dirfd(root), LL_IOC_GET_CONNECT_FLAGS, flags);
2423         closedir(root);
2424         if (rc < 0)
2425                 llapi_err(LLAPI_MSG_ERROR,
2426                           "ioctl on %s for getting connect flags failed", mnt);
2427         return rc;
2428 }