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