Whamcloud - gitweb
d5292f7b8d7ca2d4c4700ada0abfffc76d51ee84
[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 <sys/stat.h>
59 #include <sys/types.h>
60 #include <sys/syscall.h>
61 #include <sys/xattr.h>
62 #include <fnmatch.h>
63 #include <glob.h>
64 #ifdef HAVE_LINUX_UNISTD_H
65 #include <linux/unistd.h>
66 #else
67 #include <unistd.h>
68 #endif
69 #include <poll.h>
70
71 #include <liblustre.h>
72 #include <lnet/lnetctl.h>
73 #include <obd.h>
74 #include <lustre_lib.h>
75 #include <obd_lov.h>
76 #include <lustre/liblustreapi.h>
77
78 static unsigned llapi_dir_filetype_table[] = {
79         [DT_UNKNOWN]= 0,
80         [DT_FIFO]= S_IFIFO,
81         [DT_CHR] = S_IFCHR,
82         [DT_DIR] = S_IFDIR,
83         [DT_BLK] = S_IFBLK,
84         [DT_REG] = S_IFREG,
85         [DT_LNK] = S_IFLNK,
86         [DT_SOCK]= S_IFSOCK,
87 #if defined(DT_DOOR) && defined(S_IFDOOR)
88         [DT_DOOR]= S_IFDOOR,
89 #endif
90 };
91
92 #if defined(DT_DOOR) && defined(S_IFDOOR)
93 static const int DT_MAX = DT_DOOR;
94 #else
95 static const int DT_MAX = DT_SOCK;
96 #endif
97
98 static unsigned llapi_filetype_dir_table[] = {
99         [0]= DT_UNKNOWN,
100         [S_IFIFO]= DT_FIFO,
101         [S_IFCHR] = DT_CHR,
102         [S_IFDIR] = DT_DIR,
103         [S_IFBLK] = DT_BLK,
104         [S_IFREG] = DT_REG,
105         [S_IFLNK] = DT_LNK,
106         [S_IFSOCK]= DT_SOCK,
107 #if defined(DT_DOOR) && defined(S_IFDOOR)
108         [S_IFDOOR]= DT_DOOR,
109 #endif
110 };
111
112 #if defined(DT_DOOR) && defined(S_IFDOOR)
113 static const int S_IFMAX = DT_DOOR;
114 #else
115 static const int S_IFMAX = DT_SOCK;
116 #endif
117
118 /* liblustreapi message level */
119 static int llapi_msg_level = LLAPI_MSG_MAX;
120
121 void llapi_msg_set_level(int level)
122 {
123         /* ensure level is in the good range */
124         if (level < LLAPI_MSG_OFF)
125                 llapi_msg_level = LLAPI_MSG_OFF;
126         else if (level > LLAPI_MSG_MAX)
127                 llapi_msg_level = LLAPI_MSG_MAX;
128         else
129                 llapi_msg_level = level;
130 }
131
132 void llapi_err(int level, char *fmt, ...)
133 {
134         va_list args;
135         int tmp_errno = abs(errno);
136
137         if ((level & LLAPI_MSG_MASK) > llapi_msg_level)
138                 return;
139
140         va_start(args, fmt);
141         vfprintf(stderr, fmt, args);
142         va_end(args);
143
144         if (level & LLAPI_MSG_NO_ERRNO)
145                 fprintf(stderr, "\n");
146         else
147                 fprintf(stderr, ": %s (%d)\n", strerror(tmp_errno), tmp_errno);
148 }
149
150 #define llapi_err_noerrno(level, fmt, a...)                             \
151         llapi_err((level) | LLAPI_MSG_NO_ERRNO, fmt, ## a)
152
153 void llapi_printf(int level, char *fmt, ...)
154 {
155         va_list args;
156
157         if ((level & LLAPI_MSG_MASK) > llapi_msg_level)
158                 return;
159
160         va_start(args, fmt);
161         vfprintf(stdout, fmt, args);
162         va_end(args);
163 }
164
165 /**
166  * size_units is unchanged if no specifier used
167  */
168 int parse_size(char *optarg, unsigned long long *size,
169                unsigned long long *size_units, int bytes_spec)
170 {
171         char *end;
172
173         *size = strtoull(optarg, &end, 0);
174
175         if (*end != '\0') {
176                 if ((*end == 'b') && *(end+1) == '\0' &&
177                     (*size & (~0ULL << (64 - 9))) == 0 &&
178                     !bytes_spec) {
179                         *size <<= 9;
180                         *size_units = 1 << 9;
181                 } else if ((*end == 'b') && *(end+1) == '\0' &&
182                            bytes_spec) {
183                         *size_units = 1;
184                 } else if ((*end == 'k' || *end == 'K') &&
185                            *(end+1) == '\0' && (*size &
186                            (~0ULL << (64 - 10))) == 0) {
187                         *size <<= 10;
188                         *size_units = 1 << 10;
189                 } else if ((*end == 'm' || *end == 'M') &&
190                            *(end+1) == '\0' && (*size &
191                            (~0ULL << (64 - 20))) == 0) {
192                         *size <<= 20;
193                         *size_units = 1 << 20;
194                 } else if ((*end == 'g' || *end == 'G') &&
195                            *(end+1) == '\0' && (*size &
196                            (~0ULL << (64 - 30))) == 0) {
197                         *size <<= 30;
198                         *size_units = 1 << 30;
199                 } else if ((*end == 't' || *end == 'T') &&
200                            *(end+1) == '\0' && (*size &
201                            (~0ULL << (64 - 40))) == 0) {
202                         *size <<= 40;
203                         *size_units = 1ULL << 40;
204                 } else if ((*end == 'p' || *end == 'P') &&
205                            *(end+1) == '\0' && (*size &
206                            (~0ULL << (64 - 50))) == 0) {
207                         *size <<= 50;
208                         *size_units = 1ULL << 50;
209                 } else if ((*end == 'e' || *end == 'E') &&
210                            *(end+1) == '\0' && (*size &
211                            (~0ULL << (64 - 60))) == 0) {
212                         *size <<= 60;
213                         *size_units = 1ULL << 60;
214                 } else {
215                         return -1;
216                 }
217         }
218
219         return 0;
220 }
221
222 int llapi_stripe_limit_check(unsigned long long stripe_size, int stripe_offset,
223                              int stripe_count, int stripe_pattern)
224 {
225         int page_size;
226
227         /* 64 KB is the largest common page size I'm aware of (on ia64), but
228          * check the local page size just in case. */
229         page_size = LOV_MIN_STRIPE_SIZE;
230         if (getpagesize() > page_size) {
231                 page_size = getpagesize();
232                 llapi_err_noerrno(LLAPI_MSG_WARN,
233                                   "warning: your page size (%u) is "
234                                   "larger than expected (%u)", page_size,
235                                   LOV_MIN_STRIPE_SIZE);
236         }
237         if (stripe_size < 0 || (stripe_size & (LOV_MIN_STRIPE_SIZE - 1))) {
238                 llapi_err(LLAPI_MSG_ERROR, "error: bad stripe_size %lu, "
239                           "must be an even multiple of %d bytes",
240                           stripe_size, page_size);
241                 return -EINVAL;
242         }
243         if (stripe_offset < -1 || stripe_offset > MAX_OBD_DEVICES) {
244                 errno = -EINVAL;
245                 llapi_err(LLAPI_MSG_ERROR, "error: bad stripe offset %d",
246                           stripe_offset);
247                 return -EINVAL;
248         }
249         if (stripe_count < -1 || stripe_count > LOV_MAX_STRIPE_COUNT) {
250                 errno = -EINVAL;
251                 llapi_err(LLAPI_MSG_ERROR, "error: bad stripe count %d",
252                           stripe_count);
253                 return -EINVAL;
254         }
255         if (stripe_size >= (1ULL << 32)){
256                 errno = -EINVAL;
257                 llapi_err(LLAPI_MSG_ERROR, "warning: stripe size larger than 4G"
258                           " is not currently supported and would wrap");
259                 return -EINVAL;
260         }
261         return 0;
262 }
263
264 static int find_target_obdpath(char *fsname, char *path)
265 {
266         glob_t glob_info;
267         char pattern[PATH_MAX + 1];
268         int rc;
269
270         snprintf(pattern, PATH_MAX,
271                  "/proc/fs/lustre/lov/%s-*/target_obd",
272                  fsname);
273         rc = glob(pattern, GLOB_BRACE, NULL, &glob_info);
274         if (rc == GLOB_NOMATCH)
275                 return -ENODEV;
276         else if (rc)
277                 return -EINVAL;
278
279         strcpy(path, glob_info.gl_pathv[0]);
280         globfree(&glob_info);
281         return 0;
282 }
283
284 static int find_poolpath(char *fsname, char *poolname, char *poolpath)
285 {
286         glob_t glob_info;
287         char pattern[PATH_MAX + 1];
288         int rc;
289
290         snprintf(pattern, PATH_MAX,
291                  "/proc/fs/lustre/lov/%s-*/pools/%s",
292                  fsname, poolname);
293         rc = glob(pattern, GLOB_BRACE, NULL, &glob_info);
294         /* If no pools, make sure the lov is available */
295         if ((rc == GLOB_NOMATCH) &&
296             (find_target_obdpath(fsname, poolpath) == -ENODEV))
297                 return -ENODEV;
298         if (rc)
299                 return -EINVAL;
300
301         strcpy(poolpath, glob_info.gl_pathv[0]);
302         globfree(&glob_info);
303         return 0;
304 }
305
306 /*
307  * if pool is NULL, search ostname in target_obd
308  * if pool is not NULL:
309  *  if pool not found returns errno < 0
310  *  if ostname is NULL, returns 1 if pool is not empty and 0 if pool empty
311  *  if ostname is not NULL, returns 1 if OST is in pool and 0 if not
312  */
313 int llapi_search_ost(char *fsname, char *poolname, char *ostname)
314 {
315         FILE *fd;
316         char buffer[PATH_MAX + 1];
317         int len = 0, rc;
318
319         if (ostname != NULL)
320                 len = strlen(ostname);
321
322         if (poolname == NULL)
323                 rc = find_target_obdpath(fsname, buffer);
324         else
325                 rc = find_poolpath(fsname, poolname, buffer);
326         if (rc)
327                 return rc;
328
329         if ((fd = fopen(buffer, "r")) == NULL)
330                 return -EINVAL;
331
332         while (fgets(buffer, sizeof(buffer), fd) != NULL) {
333                 if (poolname == NULL) {
334                         char *ptr;
335                         /* Search for an ostname in the list of OSTs
336                          Line format is IDX: fsname-OSTxxxx_UUID STATUS */
337                         ptr = strchr(buffer, ' ');
338                         if ((ptr != NULL) &&
339                             (strncmp(ptr + 1, ostname, len) == 0)) {
340                                 fclose(fd);
341                                 return 1;
342                         }
343                 } else {
344                         /* Search for an ostname in a pool,
345                          (or an existing non-empty pool if no ostname) */
346                         if ((ostname == NULL) ||
347                             (strncmp(buffer, ostname, len) == 0)) {
348                                 fclose(fd);
349                                 return 1;
350                         }
351                 }
352         }
353         fclose(fd);
354         return 0;
355 }
356
357 int llapi_file_open_pool(const char *name, int flags, int mode,
358                          unsigned long long stripe_size, int stripe_offset,
359                          int stripe_count, int stripe_pattern, char *pool_name)
360 {
361         struct lov_user_md_v3 lum = { 0 };
362         int fd, rc = 0;
363         int isdir = 0;
364
365         /* Make sure we have a good pool */
366         if (pool_name != NULL) {
367                 char fsname[MAX_OBD_NAME + 1], *ptr;
368
369                 if (llapi_search_fsname(name, fsname)) {
370                     llapi_err(LLAPI_MSG_ERROR | LLAPI_MSG_NO_ERRNO,
371                               "'%s' is not on a Lustre filesystem", name);
372                     return -EINVAL;
373                 }
374
375                 /* in case user gives the full pool name <fsname>.<poolname>,
376                  * strip the fsname */
377                 ptr = strchr(pool_name, '.');
378                 if (ptr != NULL) {
379                         *ptr = '\0';
380                         if (strcmp(pool_name, fsname) != 0) {
381                                 *ptr = '.';
382                                 llapi_err(LLAPI_MSG_ERROR | LLAPI_MSG_NO_ERRNO,
383                                    "Pool '%s' is not on filesystem '%s'",
384                                    pool_name, fsname);
385                                 return -EINVAL;
386                         }
387                         pool_name = ptr + 1;
388                 }
389
390                 /* Make sure the pool exists and is non-empty */
391                 if ((rc = llapi_search_ost(fsname, pool_name, NULL)) < 1) {
392                         llapi_err(LLAPI_MSG_ERROR | LLAPI_MSG_NO_ERRNO,
393                                   "pool '%s.%s' %s", fsname, pool_name,
394                                   rc == 0 ? "has no OSTs" : "does not exist");
395                         return -EINVAL;
396                 }
397         }
398
399         fd = open(name, flags | O_LOV_DELAY_CREATE, mode);
400         if (fd < 0 && errno == EISDIR) {
401                 fd = open(name, O_DIRECTORY | O_RDONLY);
402                 isdir++;
403         }
404
405         if (fd < 0) {
406                 rc = -errno;
407                 llapi_err(LLAPI_MSG_ERROR, "unable to open '%s'", name);
408                 return rc;
409         }
410
411         if ((rc = llapi_stripe_limit_check(stripe_size, stripe_offset,
412                                            stripe_count, stripe_pattern)) != 0){
413                 errno = rc;
414                 goto out;
415         }
416
417         /*  Initialize IOCTL striping pattern structure */
418         lum.lmm_magic = LOV_USER_MAGIC_V3;
419         lum.lmm_pattern = stripe_pattern;
420         lum.lmm_stripe_size = stripe_size;
421         lum.lmm_stripe_count = stripe_count;
422         lum.lmm_stripe_offset = stripe_offset;
423         if (pool_name != NULL) {
424                 strncpy(lum.lmm_pool_name, pool_name, LOV_MAXPOOLNAME);
425         } else {
426                 /* If no pool is specified at all, use V1 request */
427                 lum.lmm_magic = LOV_USER_MAGIC_V1;
428         }
429
430         if (ioctl(fd, LL_IOC_LOV_SETSTRIPE, &lum)) {
431                 char *errmsg = "stripe already set";
432                 rc = -errno;
433                 if (errno != EEXIST && errno != EALREADY)
434                         errmsg = strerror(errno);
435
436                 llapi_err_noerrno(LLAPI_MSG_ERROR,
437                                   "error on ioctl "LPX64" for '%s' (%d): %s",
438                                   (__u64)LL_IOC_LOV_SETSTRIPE, name, fd,errmsg);
439         }
440 out:
441         if (rc) {
442                 close(fd);
443                 fd = rc;
444         }
445
446         return fd;
447 }
448
449 int llapi_file_open(const char *name, int flags, int mode,
450                     unsigned long long stripe_size, int stripe_offset,
451                     int stripe_count, int stripe_pattern)
452 {
453         return llapi_file_open_pool(name, flags, mode, stripe_size,
454                                     stripe_offset, stripe_count,
455                                     stripe_pattern, NULL);
456 }
457
458 int llapi_file_create(const char *name, unsigned long long stripe_size,
459                       int stripe_offset, int stripe_count, int stripe_pattern)
460 {
461         int fd;
462
463         fd = llapi_file_open_pool(name, O_CREAT | O_WRONLY, 0644, stripe_size,
464                                   stripe_offset, stripe_count, stripe_pattern,
465                                   NULL);
466         if (fd < 0)
467                 return fd;
468
469         close(fd);
470         return 0;
471 }
472
473 int llapi_file_create_pool(const char *name, unsigned long long stripe_size,
474                            int stripe_offset, int stripe_count,
475                            int stripe_pattern, char *pool_name)
476 {
477         int fd;
478
479         fd = llapi_file_open_pool(name, O_CREAT | O_WRONLY, 0644, stripe_size,
480                                   stripe_offset, stripe_count, stripe_pattern,
481                                   pool_name);
482         if (fd < 0)
483                 return fd;
484
485         close(fd);
486         return 0;
487 }
488
489 /*
490  * Find the fsname, the full path, and/or an open fd.
491  * Either the fsname or path must not be NULL
492  */
493 #define WANT_PATH   0x1
494 #define WANT_FSNAME 0x2
495 #define WANT_FD     0x4
496 #define WANT_INDEX  0x8
497 #define WANT_ERROR  0x10
498 static int get_root_path(int want, char *fsname, int *outfd, char *path,
499                          int index)
500 {
501         struct mntent mnt;
502         char buf[PATH_MAX], mntdir[PATH_MAX];
503         char *ptr;
504         FILE *fp;
505         int idx = 0, len = 0, mntlen, fd;
506         int rc = -ENODEV;
507
508         /* get the mount point */
509         fp = setmntent(MOUNTED, "r");
510         if (fp == NULL) {
511                  llapi_err(LLAPI_MSG_ERROR,
512                            "setmntent(%s) failed: %s:", MOUNTED,
513                            strerror (errno));
514                  return -EIO;
515         }
516         while (1) {
517                 if (getmntent_r(fp, &mnt, buf, sizeof(buf)) == NULL)
518                         break;
519
520                 if (!llapi_is_lustre_mnt(&mnt))
521                         continue;
522
523                 if ((want & WANT_INDEX) && (idx++ != index))
524                         continue;
525
526                 mntlen = strlen(mnt.mnt_dir);
527                 ptr = strrchr(mnt.mnt_fsname, '/');
528                 if (!ptr && !len) {
529                         rc = -EINVAL;
530                         break;
531                 }
532                 ptr++;
533
534                 /* Check the fsname for a match, if given */
535                 if (!(want & WANT_FSNAME) && fsname != NULL &&
536                     (strlen(fsname) > 0) && (strcmp(ptr, fsname) != 0))
537                         continue;
538
539                 /* If the path isn't set return the first one we find */
540                 if (path == NULL || strlen(path) == 0) {
541                         strcpy(mntdir, mnt.mnt_dir);
542                         if ((want & WANT_FSNAME) && fsname != NULL)
543                                 strcpy(fsname, ptr);
544                         rc = 0;
545                         break;
546                 /* Otherwise find the longest matching path */
547                 } else if ((strlen(path) >= mntlen) && (mntlen >= len) &&
548                            (strncmp(mnt.mnt_dir, path, mntlen) == 0)) {
549                         strcpy(mntdir, mnt.mnt_dir);
550                         len = mntlen;
551                         if ((want & WANT_FSNAME) && fsname != NULL)
552                                 strcpy(fsname, ptr);
553                         rc = 0;
554                 }
555         }
556         endmntent(fp);
557
558         /* Found it */
559         if (rc == 0) {
560                 if ((want & WANT_PATH) && path != NULL)
561                         strcpy(path, mntdir);
562                 if (want & WANT_FD) {
563                         fd = open(mntdir, O_RDONLY | O_DIRECTORY | O_NONBLOCK);
564                         if (fd < 0) {
565                                 perror("open");
566                                 rc = -errno;
567                         } else {
568                                 *outfd = fd;
569                         }
570                 }
571         } else if (want & WANT_ERROR)
572                 llapi_err(LLAPI_MSG_ERROR | LLAPI_MSG_NO_ERRNO,
573                           "can't find fs root for '%s': %d",
574                           (want & WANT_PATH) ? fsname : path, rc);
575         return rc;
576 }
577
578 /*
579  * search lustre mounts
580  *
581  * Calling this function will return to the user the mount point, mntdir, and
582  * the file system name, fsname, if the user passed a buffer to this routine.
583  *
584  * The user inputs are pathname and index. If the pathname is supplied then
585  * the value of the index will be ignored. The pathname will return data if
586  * the pathname is located on a lustre mount. Index is used to pick which
587  * mount point you want in the case of multiple mounted lustre file systems.
588  * See function lfs_osts in lfs.c for a example of the index use.
589  */
590 int llapi_search_mounts(const char *pathname, int index, char *mntdir,
591                         char *fsname)
592 {
593         int want = WANT_PATH, idx = -1;
594
595         if (!pathname) {
596                 want |= WANT_INDEX;
597                 idx = index;
598         } else
599                 strcpy(mntdir, pathname);
600
601         if (fsname)
602                 want |= WANT_FSNAME;
603         return get_root_path(want, fsname, NULL, mntdir, idx);
604 }
605
606 /* Given a path, find the corresponding Lustre fsname */
607 int llapi_search_fsname(const char *pathname, char *fsname)
608 {
609         char *path = (char*)pathname, buf[PATH_MAX + 1];
610
611         if (pathname[0] != '/') { /* Need a absolute path */
612                 memset(buf, '\0', sizeof(buf));
613                 if (realpath(pathname, buf) == NULL) {
614                         llapi_err(LLAPI_MSG_ERROR, "pathname '%s' cannot expand",
615                                   pathname);
616                         return -EINVAL;
617                 }
618                 path = buf;
619         }
620         return get_root_path(WANT_FSNAME | WANT_ERROR, fsname, NULL,
621                              path, -1);
622 }
623
624 /* return the first file matching this pattern */
625 static int first_match(char *pattern, char *buffer)
626 {
627         glob_t glob_info;
628
629         if (glob(pattern, GLOB_BRACE, NULL, &glob_info))
630                 return -ENOENT;
631
632         if (glob_info.gl_pathc < 1) {
633                 globfree(&glob_info);
634                 return -ENOENT;
635         }
636
637         strcpy(buffer, glob_info.gl_pathv[0]);
638
639         globfree(&glob_info);
640         return 0;
641 }
642
643 /*
644  * find the pool directory path under /proc
645  * (can be also used to test if a fsname is known)
646  */
647 static int poolpath(char *fsname, char *pathname, char *pool_pathname)
648 {
649         int rc = 0;
650         char pattern[PATH_MAX + 1];
651         char buffer[PATH_MAX];
652
653         if (fsname == NULL) {
654                 rc = llapi_search_fsname(pathname, buffer);
655                 if (rc != 0)
656                         return rc;
657                 fsname = buffer;
658                 strcpy(pathname, fsname);
659         }
660
661         snprintf(pattern, PATH_MAX, "/proc/fs/lustre/lov/%s-*/pools", fsname);
662         rc = first_match(pattern, buffer);
663         if (rc)
664                 return rc;
665
666         /* in fsname test mode, pool_pathname is NULL */
667         if (pool_pathname != NULL)
668                 strcpy(pool_pathname, buffer);
669
670         return 0;
671 }
672
673 /**
674  * Get the list of pool members.
675  * \param poolname    string of format \<fsname\>.\<poolname\>
676  * \param members     caller-allocated array of char*
677  * \param list_size   size of the members array
678  * \param buffer      caller-allocated buffer for storing OST names
679  * \param buffer_size size of the buffer
680  *
681  * \return number of members retrieved for this pool
682  * \retval -error failure
683  */
684 int llapi_get_poolmembers(const char *poolname, char **members,
685                           int list_size, char *buffer, int buffer_size)
686 {
687         char fsname[PATH_MAX + 1];
688         char *pool, *tmp;
689         char pathname[PATH_MAX + 1];
690         char path[PATH_MAX + 1];
691         char buf[1024];
692         FILE *fd;
693         int rc = 0;
694         int nb_entries = 0;
695         int used = 0;
696
697         /* name is FSNAME.POOLNAME */
698         if (strlen(poolname) > PATH_MAX)
699                 return -EOVERFLOW;
700         strcpy(fsname, poolname);
701         pool = strchr(fsname, '.');
702         if (pool == NULL)
703                 return -EINVAL;
704
705         *pool = '\0';
706         pool++;
707
708         rc = poolpath(fsname, NULL, pathname);
709         if (rc != 0) {
710                 errno = -rc;
711                 llapi_err(LLAPI_MSG_ERROR, "Lustre filesystem '%s' not found",
712                           fsname);
713                 return rc;
714         }
715
716         llapi_printf(LLAPI_MSG_NORMAL, "Pool: %s.%s\n", fsname, pool);
717         sprintf(path, "%s/%s", pathname, pool);
718         if ((fd = fopen(path, "r")) == NULL) {
719                 llapi_err(LLAPI_MSG_ERROR, "Cannot open %s", path);
720                 return -EINVAL;
721         }
722
723         rc = 0;
724         while (fgets(buf, sizeof(buf), fd) != NULL) {
725                 if (nb_entries >= list_size) {
726                         rc = -EOVERFLOW;
727                         break;
728                 }
729                 /* remove '\n' */
730                 if ((tmp = strchr(buf, '\n')) != NULL)
731                         *tmp='\0';
732                 if (used + strlen(buf) + 1 > buffer_size) {
733                         rc = -EOVERFLOW;
734                         break;
735                 }
736
737                 strcpy(buffer + used, buf);
738                 members[nb_entries] = buffer + used;
739                 used += strlen(buf) + 1;
740                 nb_entries++;
741                 rc = nb_entries;
742         }
743
744         fclose(fd);
745         return rc;
746 }
747
748 /**
749  * Get the list of pools in a filesystem.
750  * \param name        filesystem name or path
751  * \param poollist    caller-allocated array of char*
752  * \param list_size   size of the poollist array
753  * \param buffer      caller-allocated buffer for storing pool names
754  * \param buffer_size size of the buffer
755  *
756  * \return number of pools retrieved for this filesystem
757  * \retval -error failure
758  */
759 int llapi_get_poollist(const char *name, char **poollist, int list_size,
760                        char *buffer, int buffer_size)
761 {
762         char fsname[PATH_MAX + 1], rname[PATH_MAX + 1], pathname[PATH_MAX + 1];
763         char *ptr;
764         DIR *dir;
765         struct dirent pool;
766         struct dirent *cookie = NULL;
767         int rc = 0;
768         unsigned int nb_entries = 0;
769         unsigned int used = 0;
770         unsigned int i;
771
772         /* initilize output array */
773         for (i = 0; i < list_size; i++)
774                 poollist[i] = NULL;
775
776         /* is name a pathname ? */
777         ptr = strchr(name, '/');
778         if (ptr != NULL) {
779                 /* only absolute pathname is supported */
780                 if (*name != '/')
781                         return -EINVAL;
782                 if (!realpath(name, rname)) {
783                         rc = -errno;
784                         llapi_err(LLAPI_MSG_ERROR, "invalid path '%s'", name);
785                         return rc;
786                 }
787
788                 rc = poolpath(NULL, rname, pathname);
789                 if (rc != 0) {
790                         errno = -rc;
791                         llapi_err(LLAPI_MSG_ERROR, "'%s' is not"
792                                   " a Lustre filesystem", name);
793                         return rc;
794                 }
795                 strcpy(fsname, rname);
796         } else {
797                 /* name is FSNAME */
798                 strcpy(fsname, name);
799                 rc = poolpath(fsname, NULL, pathname);
800         }
801         if (rc != 0) {
802                 errno = -rc;
803                 llapi_err(LLAPI_MSG_ERROR, "Lustre filesystem '%s' not found",
804                           name);
805                 return rc;
806         }
807
808         llapi_printf(LLAPI_MSG_NORMAL, "Pools from %s:\n", fsname);
809         if ((dir = opendir(pathname)) == NULL) {
810                 llapi_err(LLAPI_MSG_ERROR, "Could not open pool list for '%s'",
811                           name);
812                 return -errno;
813         }
814
815         while(1) {
816                 rc = readdir_r(dir, &pool, &cookie);
817
818                 if (rc != 0) {
819                         llapi_err(LLAPI_MSG_ERROR,
820                                   "Error reading pool list for '%s'", name);
821                         return -errno;
822                 } else if ((rc == 0) && (cookie == NULL))
823                         /* end of directory */
824                         break;
825
826                 /* ignore . and .. */
827                 if (!strcmp(pool.d_name, ".") || !strcmp(pool.d_name, ".."))
828                         continue;
829
830                 /* check output bounds */
831                 if (nb_entries >= list_size)
832                         return -EOVERFLOW;
833
834                 /* +2 for '.' and final '\0' */
835                 if (used + strlen(pool.d_name) + strlen(fsname) + 2
836                     > buffer_size)
837                         return -EOVERFLOW;
838
839                 sprintf(buffer + used, "%s.%s", fsname, pool.d_name);
840                 poollist[nb_entries] = buffer + used;
841                 used += strlen(pool.d_name) + strlen(fsname) + 2;
842                 nb_entries++;
843         }
844
845         closedir(dir);
846         return nb_entries;
847 }
848
849 /* wrapper for lfs.c and obd.c */
850 int llapi_poollist(const char *name)
851 {
852         /* list of pool names (assume that pool count is smaller
853            than OST count) */
854         char *list[FIND_MAX_OSTS];
855         char *buffer;
856         /* fsname-OST0000_UUID < 32 char, 1 per OST */
857         int bufsize = FIND_MAX_OSTS * 32;
858         int i, nb;
859
860         buffer = malloc(bufsize);
861         if (buffer == NULL)
862                 return -ENOMEM;
863
864         if ((name[0] == '/') || (strchr(name, '.') == NULL))
865                 /* name is a path or fsname */
866                 nb = llapi_get_poollist(name, list, FIND_MAX_OSTS, buffer,
867                                         bufsize);
868         else
869                 /* name is a pool name (<fsname>.<poolname>) */
870                 nb = llapi_get_poolmembers(name, list, FIND_MAX_OSTS, buffer,
871                                            bufsize);
872
873         for (i = 0; i < nb; i++)
874                 llapi_printf(LLAPI_MSG_NORMAL, "%s\n", list[i]);
875
876         free(buffer);
877         return (nb < 0 ? nb : 0);
878 }
879
880
881 typedef int (semantic_func_t)(char *path, DIR *parent, DIR *d,
882                               void *data, cfs_dirent_t *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                           cfs_dirent_t *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,
950                 lov_mds_md_size(MAX_LOV_UUID_COUNT, 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                                    cfs_dirent_t *de)
984 {
985         cfs_dirent_t *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                 /* Don't traverse .lustre directory */
1017                 if (!(strcmp(dent->d_name, dot_lustre_name)))
1018                         continue;
1019
1020                 path[len] = 0;
1021                 if ((len + dent->d_reclen + 2) > size) {
1022                         llapi_err(LLAPI_MSG_ERROR,
1023                                   "error: %s: string buffer is too small",
1024                                   __func__);
1025                         break;
1026                 }
1027                 strcat(path, "/");
1028                 strcat(path, dent->d_name);
1029
1030                 if (dent->d_type == DT_UNKNOWN) {
1031                         lstat_t *st = &((struct find_param *)data)->lmd->lmd_st;
1032
1033                         ret = llapi_mds_getfileinfo(path, d,
1034                                              ((struct find_param *)data)->lmd);
1035                         if (ret == 0) {
1036                                 ((struct find_param *)data)->have_fileinfo = 1;
1037                                 dent->d_type =
1038                                         llapi_filetype_dir_table[st->st_mode &
1039                                                                  S_IFMT];
1040                         }
1041                         if (ret == -ENOENT)
1042                                 continue;
1043                 }
1044
1045                 switch (dent->d_type) {
1046                 case DT_UNKNOWN:
1047                         llapi_err(LLAPI_MSG_ERROR,
1048                                   "error: %s: '%s' is UNKNOWN type %d",
1049                                   __func__, dent->d_name, dent->d_type);
1050                         break;
1051                 case DT_DIR:
1052                         ret = llapi_semantic_traverse(path, size, d, sem_init,
1053                                                       sem_fini, data, dent);
1054                         if (ret < 0)
1055                                 goto out;
1056                         break;
1057                 default:
1058                         ret = 0;
1059                         if (sem_init) {
1060                                 ret = sem_init(path, d, NULL, data, dent);
1061                                 if (ret < 0)
1062                                         goto out;
1063                         }
1064                         if (sem_fini && ret == 0)
1065                                 sem_fini(path, d, NULL, data, dent);
1066                 }
1067         }
1068
1069 out:
1070         path[len] = 0;
1071
1072         if (sem_fini)
1073                 sem_fini(path, parent, d, data, de);
1074 err:
1075         if (d)
1076                 closedir(d);
1077         if (p)
1078                 closedir(p);
1079         return ret;
1080 }
1081
1082 static int param_callback(char *path, semantic_func_t sem_init,
1083                           semantic_func_t sem_fini, struct find_param *param)
1084 {
1085         int ret, len = strlen(path);
1086         char *buf;
1087
1088         if (len > PATH_MAX) {
1089                 llapi_err(LLAPI_MSG_ERROR, "Path name '%s' is too long", path);
1090                 return -EINVAL;
1091         }
1092
1093         buf = (char *)malloc(PATH_MAX + 1);
1094         if (!buf)
1095                 return -ENOMEM;
1096
1097         ret = common_param_init(param);
1098         if (ret)
1099                 goto out;
1100         param->depth = 0;
1101
1102         strncpy(buf, path, PATH_MAX + 1);
1103         ret = llapi_semantic_traverse(buf, PATH_MAX + 1, NULL, sem_init,
1104                                       sem_fini, param, NULL);
1105 out:
1106         find_param_fini(param);
1107         free(buf);
1108         return ret < 0 ? ret : 0;
1109 }
1110
1111 int llapi_file_fget_lov_uuid(int fd, struct obd_uuid *lov_name)
1112 {
1113         int rc = ioctl(fd, OBD_IOC_GETNAME, lov_name);
1114         if (rc) {
1115                 rc = errno;
1116                 llapi_err(LLAPI_MSG_ERROR, "error: can't get lov name.");
1117         }
1118         return rc;
1119 }
1120
1121 int llapi_file_get_lov_uuid(const char *path, struct obd_uuid *lov_uuid)
1122 {
1123         int fd, rc;
1124
1125         fd = open(path, O_RDONLY);
1126         if (fd < 0) {
1127                 rc = errno;
1128                 llapi_err(LLAPI_MSG_ERROR, "error opening %s", path);
1129                 return rc;
1130         }
1131
1132         rc = llapi_file_fget_lov_uuid(fd, lov_uuid);
1133
1134         close(fd);
1135
1136         return rc;
1137 }
1138
1139 /*
1140  * If uuidp is NULL, return the number of available obd uuids.
1141  * If uuidp is non-NULL, then it will return the uuids of the obds. If
1142  * there are more OSTs then allocated to uuidp, then an error is returned with
1143  * the ost_count set to number of available obd uuids.
1144  */
1145 int llapi_lov_get_uuids(int fd, struct obd_uuid *uuidp, int *ost_count)
1146 {
1147         struct obd_uuid lov_name;
1148         char buf[1024];
1149         FILE *fp;
1150         int rc = 0, index = 0;
1151
1152         /* Get the lov name */
1153         rc = llapi_file_fget_lov_uuid(fd, &lov_name);
1154         if (rc)
1155                 return rc;
1156
1157         /* Now get the ost uuids from /proc */
1158         snprintf(buf, sizeof(buf), "/proc/fs/lustre/lov/%s/target_obd",
1159                  lov_name.uuid);
1160         fp = fopen(buf, "r");
1161         if (fp == NULL) {
1162                 rc = errno;
1163                 llapi_err(LLAPI_MSG_ERROR, "error: opening '%s'", buf);
1164                 return rc;
1165         }
1166
1167         while (fgets(buf, sizeof(buf), fp) != NULL) {
1168                 if (uuidp && (index < *ost_count)) {
1169                         if (sscanf(buf, "%d: %s", &index, uuidp[index].uuid) <2)
1170                                 break;
1171                 }
1172                 index++;
1173         }
1174
1175         fclose(fp);
1176
1177         if (uuidp && (index >= *ost_count))
1178                 return -EOVERFLOW;
1179
1180         *ost_count = index;
1181         return rc;
1182 }
1183
1184 int llapi_get_obd_count(char *mnt, int *count, int is_mdt)
1185 {
1186         DIR *root;
1187         int rc;
1188
1189         root = opendir(mnt);
1190         if (!root) {
1191                 llapi_err(LLAPI_MSG_ERROR, "open %s failed", mnt);
1192                 return -1;
1193         }
1194
1195         *count = is_mdt;
1196         rc = ioctl(dirfd(root), LL_IOC_GETOBDCOUNT, count);
1197
1198         closedir(root);
1199         return rc;
1200 }
1201
1202 /* Check if user specified value matches a real uuid.  Ignore _UUID,
1203  * -osc-4ba41334, other trailing gunk in comparison.
1204  * @param real_uuid ends in "_UUID"
1205  * @param search_uuid may or may not end in "_UUID"
1206  */
1207 int llapi_uuid_match(char *real_uuid, char *search_uuid)
1208 {
1209         int cmplen = strlen(real_uuid);
1210         int searchlen = strlen(search_uuid);
1211
1212         if (cmplen > 5 && strcmp(real_uuid + cmplen - 5, "_UUID") == 0)
1213                 cmplen -= 5;
1214         if (searchlen > 5 && strcmp(search_uuid + searchlen - 5, "_UUID") == 0)
1215                 searchlen -= 5;
1216
1217         /* The UUIDs may legitimately be different lengths, if
1218          * the system was upgraded from an older version. */
1219         if (cmplen != searchlen)
1220                 return 0;
1221
1222         return (strncmp(search_uuid, real_uuid, cmplen) == 0);
1223 }
1224
1225 /* Here, param->obduuid points to a single obduuid, the index of which is
1226  * returned in param->obdindex */
1227 static int setup_obd_uuid(DIR *dir, char *dname, struct find_param *param)
1228 {
1229         struct obd_uuid lov_uuid;
1230         char uuid[sizeof(struct obd_uuid)];
1231         char buf[1024];
1232         FILE *fp;
1233         int rc = 0, index;
1234
1235         if (param->got_uuids)
1236                 return rc;
1237
1238         /* Get the lov name */
1239         rc = llapi_file_fget_lov_uuid(dirfd(dir), &lov_uuid);
1240         if (rc) {
1241                 if (errno != ENOTTY) {
1242                         rc = errno;
1243                         llapi_err(LLAPI_MSG_ERROR,
1244                                   "error: can't get lov name: %s", dname);
1245                 } else {
1246                         rc = 0;
1247                 }
1248                 return rc;
1249         }
1250
1251         param->got_uuids = 1;
1252
1253         /* Now get the ost uuids from /proc */
1254         snprintf(buf, sizeof(buf), "/proc/fs/lustre/lov/%s/target_obd",
1255                  lov_uuid.uuid);
1256         fp = fopen(buf, "r");
1257         if (fp == NULL) {
1258                 rc = errno;
1259                 llapi_err(LLAPI_MSG_ERROR, "error: opening '%s'", buf);
1260                 return rc;
1261         }
1262
1263         if (!param->obduuid && !param->quiet && !param->obds_printed)
1264                 llapi_printf(LLAPI_MSG_NORMAL, "OBDS:\n");
1265
1266         while (fgets(buf, sizeof(buf), fp) != NULL) {
1267                 if (sscanf(buf, "%d: %s", &index, uuid) < 2)
1268                         break;
1269
1270                 if (param->obduuid) {
1271                         if (llapi_uuid_match(uuid, param->obduuid->uuid)) {
1272                                 param->obdindex = index;
1273                                 break;
1274                         }
1275                 } else if (!param->quiet && !param->obds_printed) {
1276                         /* Print everything */
1277                         llapi_printf(LLAPI_MSG_NORMAL, "%s", buf);
1278                 }
1279         }
1280         param->obds_printed = 1;
1281
1282         fclose(fp);
1283
1284         if (param->obduuid && (param->obdindex == OBD_NOT_FOUND)) {
1285                 llapi_err_noerrno(LLAPI_MSG_ERROR,
1286                                   "error: %s: unknown obduuid: %s",
1287                                   __func__, param->obduuid->uuid);
1288                 rc = -EINVAL;
1289         }
1290
1291         return (rc);
1292 }
1293
1294 /* In this case, param->obduuid will be an array of obduuids and
1295  * obd index for all these obduuids will be returned in
1296  * param->obdindexes */
1297 static int setup_obd_indexes(DIR *dir, struct find_param *param)
1298 {
1299         struct obd_uuid *uuids = NULL;
1300         int obdcount = INIT_ALLOC_NUM_OSTS;
1301         int ret, obd_valid = 0, obdnum, i;
1302
1303         uuids = (struct obd_uuid *)malloc(INIT_ALLOC_NUM_OSTS *
1304                                           sizeof(struct obd_uuid));
1305         if (uuids == NULL)
1306                 return -ENOMEM;
1307
1308 retry_get_uuids:
1309         ret = llapi_lov_get_uuids(dirfd(dir), uuids,
1310                                   &obdcount);
1311         if (ret) {
1312                 struct obd_uuid *uuids_temp;
1313
1314                 if (ret == -EOVERFLOW) {
1315                         uuids_temp = realloc(uuids, obdcount *
1316                                              sizeof(struct obd_uuid));
1317                         if (uuids_temp != NULL)
1318                                 goto retry_get_uuids;
1319                         else
1320                                 ret = -ENOMEM;
1321                 }
1322
1323                 llapi_err(LLAPI_MSG_ERROR, "get ost uuid failed");
1324                 return ret;
1325         }
1326
1327         param->obdindexes = malloc(param->num_obds * sizeof(param->obdindex));
1328         if (param->obdindexes == NULL)
1329                 return -ENOMEM;
1330
1331         for (obdnum = 0; obdnum < param->num_obds; obdnum++) {
1332                 for (i = 0; i < obdcount; i++) {
1333                         if (llapi_uuid_match(uuids[i].uuid,
1334                                              param->obduuid[obdnum].uuid)) {
1335                                 param->obdindexes[obdnum] = i;
1336                                 obd_valid++;
1337                                 break;
1338                         }
1339                 }
1340                 if (i >= obdcount) {
1341                         param->obdindexes[obdnum] = OBD_NOT_FOUND;
1342                         llapi_err_noerrno(LLAPI_MSG_ERROR,
1343                                           "error: %s: unknown obduuid: %s",
1344                                           __func__,
1345                                           param->obduuid[obdnum].uuid);
1346                         ret = -EINVAL;
1347                 }
1348         }
1349
1350         if (obd_valid == 0)
1351                 param->obdindex = OBD_NOT_FOUND;
1352         else
1353                 param->obdindex = obd_valid;
1354
1355         param->got_uuids = 1;
1356
1357         return ret;
1358 }
1359
1360 int llapi_ostlist(char *path, struct find_param *param)
1361 {
1362         DIR *dir;
1363         int ret;
1364
1365         dir = opendir(path);
1366         if (dir == NULL)
1367                 return -errno;
1368
1369         ret = setup_obd_uuid(dir, path, param);
1370         closedir(dir);
1371
1372         return ret;
1373 }
1374
1375 static void lov_dump_user_lmm_header(struct lov_user_md *lum, char *path,
1376                                      struct lov_user_ost_data_v1 *objects,
1377                                      int is_dir, int verbose, int depth,
1378                                      char *pool_name)
1379 {
1380         char *prefix = is_dir ? "" : "lmm_";
1381         char nl = is_dir ? ' ' : '\n';
1382
1383         if (is_dir && lum->lmm_object_seq == LOV_OBJECT_GROUP_DEFAULT) {
1384                 lum->lmm_object_seq = LOV_OBJECT_GROUP_CLEAR;
1385                 if (verbose & VERBOSE_DETAIL)
1386                         llapi_printf(LLAPI_MSG_NORMAL, "(Default) ");
1387         }
1388
1389         if (depth && path && ((verbose != VERBOSE_OBJID) || !is_dir))
1390                 llapi_printf(LLAPI_MSG_NORMAL, "%s\n", path);
1391
1392         if ((verbose & VERBOSE_DETAIL) && !is_dir) {
1393                 llapi_printf(LLAPI_MSG_NORMAL, "lmm_magic:          0x%08X\n",
1394                              lum->lmm_magic);
1395                 llapi_printf(LLAPI_MSG_NORMAL, "lmm_seq:            "LPX64"\n",
1396                              lum->lmm_object_seq);
1397                 llapi_printf(LLAPI_MSG_NORMAL, "lmm_object_id:      "LPX64"\n",
1398                              lum->lmm_object_id);
1399         }
1400
1401         if (verbose & VERBOSE_COUNT) {
1402                 if (verbose & ~VERBOSE_COUNT)
1403                         llapi_printf(LLAPI_MSG_NORMAL, "%sstripe_count:   ",
1404                                      prefix);
1405                 llapi_printf(LLAPI_MSG_NORMAL, "%hd%c",
1406                              (__s16)lum->lmm_stripe_count, nl);
1407         }
1408
1409         if (verbose & VERBOSE_SIZE) {
1410                 if (verbose & ~VERBOSE_SIZE)
1411                         llapi_printf(LLAPI_MSG_NORMAL, "%sstripe_size:    ",
1412                                      prefix);
1413                 llapi_printf(LLAPI_MSG_NORMAL, "%u%c", lum->lmm_stripe_size,
1414                              nl);
1415         }
1416
1417         if ((verbose & VERBOSE_DETAIL) && !is_dir) {
1418                 llapi_printf(LLAPI_MSG_NORMAL, "lmm_stripe_pattern: %x%c",
1419                              lum->lmm_pattern, nl);
1420         }
1421
1422         if (verbose & VERBOSE_OFFSET) {
1423                 if (verbose & ~VERBOSE_OFFSET)
1424                         llapi_printf(LLAPI_MSG_NORMAL, "%sstripe_offset:  ",
1425                                      prefix);
1426                 if (is_dir) 
1427                         llapi_printf(LLAPI_MSG_NORMAL, "%d%c",
1428                                      lum->lmm_stripe_offset ==
1429                                      (typeof(lum->lmm_stripe_offset))(-1) ? -1 :
1430                                      lum->lmm_stripe_offset, nl);
1431                 else
1432                         llapi_printf(LLAPI_MSG_NORMAL, "%u%c",
1433                                      objects[0].l_ost_idx, nl);
1434         }
1435
1436         if ((verbose & VERBOSE_POOL) && (pool_name != NULL)) {
1437                 llapi_printf(LLAPI_MSG_NORMAL, "pool: %s", pool_name);
1438                 is_dir = 1;
1439         }
1440
1441         if (is_dir && (verbose != VERBOSE_OBJID))
1442                 llapi_printf(LLAPI_MSG_NORMAL, "\n");
1443 }
1444
1445 void lov_dump_user_lmm_v1v3(struct lov_user_md *lum, char *pool_name,
1446                             struct lov_user_ost_data_v1 *objects,
1447                             char *path, int is_dir,
1448                             int obdindex, int depth, int header)
1449 {
1450         int i, obdstripe = (obdindex != OBD_NOT_FOUND) ? 0 : 1;
1451
1452         if (!obdstripe) {
1453                 for (i = 0; !is_dir && i < lum->lmm_stripe_count; i++) {
1454                         if (obdindex == objects[i].l_ost_idx) {
1455                                 obdstripe = 1;
1456                                 break;
1457                         }
1458                 }
1459         }
1460
1461         if (obdstripe == 1)
1462                 lov_dump_user_lmm_header(lum, path, objects, is_dir, header, depth,
1463                                          pool_name);
1464
1465         if (!is_dir && (header & VERBOSE_OBJID)) {
1466                 if (obdstripe == 1)
1467                         llapi_printf(LLAPI_MSG_NORMAL,
1468                                      "\tobdidx\t\t objid\t\tobjid\t\t group\n");
1469
1470                 for (i = 0; i < lum->lmm_stripe_count; i++) {
1471                         int idx = objects[i].l_ost_idx;
1472                         long long oid = objects[i].l_object_id;
1473                         long long gr = objects[i].l_object_seq;
1474                         if ((obdindex == OBD_NOT_FOUND) || (obdindex == idx))
1475                                 llapi_printf(LLAPI_MSG_NORMAL,
1476                                            "\t%6u\t%14llu\t%#13llx\t%14llu%s\n",
1477                                            idx, oid, oid, gr,
1478                                            obdindex == idx ? " *" : "");
1479                 }
1480                 llapi_printf(LLAPI_MSG_NORMAL, "\n");
1481         }
1482 }
1483
1484 void llapi_lov_dump_user_lmm(struct find_param *param,
1485                              char *path, int is_dir)
1486 {
1487         switch(*(__u32 *)&param->lmd->lmd_lmm) { /* lum->lmm_magic */
1488         case LOV_USER_MAGIC_V1:
1489                 lov_dump_user_lmm_v1v3(&param->lmd->lmd_lmm, NULL,
1490                                        param->lmd->lmd_lmm.lmm_objects,
1491                                        path, is_dir,
1492                                        param->obdindex, param->maxdepth,
1493                                        param->verbose);
1494                 break;
1495         case LOV_USER_MAGIC_V3: {
1496                 char pool_name[LOV_MAXPOOLNAME + 1];
1497                 struct lov_user_ost_data_v1 *objects;
1498                 struct lov_user_md_v3 *lmmv3 = (void *)&param->lmd->lmd_lmm;
1499
1500                 strncpy(pool_name, lmmv3->lmm_pool_name, LOV_MAXPOOLNAME);
1501                 pool_name[LOV_MAXPOOLNAME] = '\0';
1502                 objects = lmmv3->lmm_objects;
1503                 lov_dump_user_lmm_v1v3(&param->lmd->lmd_lmm, pool_name,
1504                                        objects, path, is_dir,
1505                                        param->obdindex, param->maxdepth,
1506                                        param->verbose);
1507                 break;
1508         }
1509         default:
1510                 llapi_printf(LLAPI_MSG_NORMAL, "unknown lmm_magic:  %#x "
1511                              "(expecting one of %#x %#x %#x)\n",
1512                              *(__u32 *)&param->lmd->lmd_lmm,
1513                              LOV_USER_MAGIC_V1, LOV_USER_MAGIC_V3);
1514                 return;
1515         }
1516 }
1517
1518 int llapi_file_get_stripe(const char *path, struct lov_user_md *lum)
1519 {
1520         const char *fname;
1521         char *dname;
1522         int fd, rc = 0;
1523
1524         fname = strrchr(path, '/');
1525
1526         /* It should be a file (or other non-directory) */
1527         if (fname == NULL) {
1528                 dname = (char *)malloc(2);
1529                 if (dname == NULL)
1530                         return ENOMEM;
1531                 strcpy(dname, ".");
1532                 fname = (char *)path;
1533         } else {
1534                 dname = (char *)malloc(fname - path + 1);
1535                 if (dname == NULL)
1536                         return ENOMEM;
1537                 strncpy(dname, path, fname - path);
1538                 dname[fname - path] = '\0';
1539                 fname++;
1540         }
1541
1542         if ((fd = open(dname, O_RDONLY)) == -1) {
1543                 rc = errno;
1544                 free(dname);
1545                 return rc;
1546         }
1547
1548         strcpy((char *)lum, fname);
1549         if (ioctl(fd, IOC_MDC_GETFILESTRIPE, (void *)lum) == -1)
1550                 rc = errno;
1551
1552         if (close(fd) == -1 && rc == 0)
1553                 rc = errno;
1554
1555         free(dname);
1556
1557         return rc;
1558 }
1559
1560 int llapi_file_lookup(int dirfd, const char *name)
1561 {
1562         struct obd_ioctl_data data = { 0 };
1563         char rawbuf[8192];
1564         char *buf = rawbuf;
1565         int rc;
1566
1567         if (dirfd < 0 || name == NULL)
1568                 return -EINVAL;
1569
1570         data.ioc_version = OBD_IOCTL_VERSION;
1571         data.ioc_len = sizeof(data);
1572         data.ioc_inlbuf1 = (char *)name;
1573         data.ioc_inllen1 = strlen(name) + 1;
1574
1575         rc = obd_ioctl_pack(&data, &buf, sizeof(rawbuf));
1576         if (rc) {
1577                 llapi_err(LLAPI_MSG_ERROR,
1578                           "error: IOC_MDC_LOOKUP pack failed for '%s': rc %d",
1579                           name, rc);
1580                 return rc;
1581         }
1582
1583         return ioctl(dirfd, IOC_MDC_LOOKUP, buf);
1584 }
1585
1586 /* Check if the value matches 1 of the given criteria (e.g. --atime +/-N).
1587  * @mds indicates if this is MDS timestamps and there are attributes on OSTs.
1588  *
1589  * The result is -1 if it does not match, 0 if not yet clear, 1 if matches.
1590  * The table below gives the answers for the specified parameters (value and
1591  * sign), 1st column is the answer for the MDS value, the 2nd is for the OST:
1592  * --------------------------------------
1593  * 1 | file > limit; sign > 0 | -1 / -1 |
1594  * 2 | file = limit; sign > 0 |  ? /  1 |
1595  * 3 | file < limit; sign > 0 |  ? /  1 |
1596  * 4 | file > limit; sign = 0 | -1 / -1 |
1597  * 5 | file = limit; sign = 0 |  ? /  1 |  <- (see the Note below)
1598  * 6 | file < limit; sign = 0 |  ? / -1 |
1599  * 7 | file > limit; sign < 0 |  1 /  1 |
1600  * 8 | file = limit; sign < 0 |  ? / -1 |
1601  * 9 | file < limit; sign < 0 |  ? / -1 |
1602  * --------------------------------------
1603  * Note: 5th actually means that the value is within the interval
1604  * (limit - margin, limit]. */
1605 static int find_value_cmp(unsigned int file, unsigned int limit, int sign,
1606                           unsigned long long margin, int mds)
1607 {
1608         if (sign > 0) {
1609                 if (file < limit)
1610                         return mds ? 0 : 1;
1611         }
1612
1613         if (sign == 0) {
1614                 if (file <= limit && file + margin > limit)
1615                         return mds ? 0 : 1;
1616                 if (file + margin <= limit)
1617                         return mds ? 0 : -1;
1618         }
1619
1620         if (sign < 0) {
1621                 if (file > limit)
1622                         return 1;
1623                 if (mds)
1624                         return 0;
1625         }
1626
1627         return -1;
1628 }
1629
1630 /* Check if the file time matches all the given criteria (e.g. --atime +/-N).
1631  * Return -1 or 1 if file timestamp does not or does match the given criteria
1632  * correspondingly. Return 0 if the MDS time is being checked and there are
1633  * attributes on OSTs and it is not yet clear if the timespamp matches.
1634  *
1635  * If 0 is returned, we need to do another RPC to the OSTs to obtain the
1636  * updated timestamps. */
1637 static int find_time_check(lstat_t *st, struct find_param *param, int mds)
1638 {
1639         int ret;
1640         int rc = 0;
1641
1642         /* Check if file is accepted. */
1643         if (param->atime) {
1644                 ret = find_value_cmp(st->st_atime, param->atime,
1645                                      param->asign, 24 * 60 * 60, mds);
1646                 if (ret < 0)
1647                         return ret;
1648                 rc = ret;
1649         }
1650
1651         if (param->mtime) {
1652                 ret = find_value_cmp(st->st_mtime, param->mtime,
1653                                      param->msign, 24 * 60 * 60, mds);
1654                 if (ret < 0)
1655                         return ret;
1656
1657                 /* If the previous check matches, but this one is not yet clear,
1658                  * we should return 0 to do an RPC on OSTs. */
1659                 if (rc == 1)
1660                         rc = ret;
1661         }
1662
1663         if (param->ctime) {
1664                 ret = find_value_cmp(st->st_ctime, param->ctime,
1665                                      param->csign, 24 * 60 * 60, mds);
1666                 if (ret < 0)
1667                         return ret;
1668
1669                 /* If the previous check matches, but this one is not yet clear,
1670                  * we should return 0 to do an RPC on OSTs. */
1671                 if (rc == 1)
1672                         rc = ret;
1673         }
1674
1675         return rc;
1676 }
1677
1678 static int cb_find_init(char *path, DIR *parent, DIR *dir,
1679                         void *data, cfs_dirent_t *de)
1680 {
1681         struct find_param *param = (struct find_param *)data;
1682         int decision = 1; /* 1 is accepted; -1 is rejected. */
1683         lstat_t *st = &param->lmd->lmd_st;
1684         int lustre_fs = 1;
1685         int checked_type = 0;
1686         int ret = 0;
1687
1688         LASSERT(parent != NULL || dir != NULL);
1689
1690         param->lmd->lmd_lmm.lmm_stripe_count = 0;
1691
1692         /* If a regular expression is presented, make the initial decision */
1693         if (param->pattern != NULL) {
1694                 char *fname = strrchr(path, '/');
1695                 fname = (fname == NULL ? path : fname + 1);
1696                 ret = fnmatch(param->pattern, fname, 0);
1697                 if ((ret == FNM_NOMATCH && !param->exclude_pattern) ||
1698                     (ret == 0 && param->exclude_pattern))
1699                         goto decided;
1700         }
1701
1702         /* See if we can check the file type from the dirent. */
1703         if (param->type && de != NULL && de->d_type != DT_UNKNOWN &&
1704             de->d_type < DT_MAX) {
1705                 checked_type = 1;
1706                 if (llapi_dir_filetype_table[de->d_type] == param->type) {
1707                         if (param->exclude_type)
1708                                 goto decided;
1709                 } else {
1710                         if (!param->exclude_type)
1711                                 goto decided;
1712                 }
1713         }
1714
1715
1716         /* If a time or OST should be checked, the decision is not taken yet. */
1717         if (param->atime || param->ctime || param->mtime || param->obduuid ||
1718             param->size)
1719                 decision = 0;
1720
1721         ret = 0;
1722         /* Request MDS for the stat info. */
1723         if (param->have_fileinfo == 0) {
1724                 if (dir) {
1725                         /* retrieve needed file info */
1726                         ret = ioctl(dirfd(dir), LL_IOC_MDC_GETINFO,
1727                                     (void *)param->lmd);
1728                 } else {
1729                         char *fname = strrchr(path, '/');
1730                         fname = (fname == NULL ? path : fname + 1);
1731
1732                         /* retrieve needed file info */
1733                         strncpy((char *)param->lmd, fname, param->lumlen);
1734                         ret = ioctl(dirfd(parent), IOC_MDC_GETFILEINFO,
1735                                    (void *)param->lmd);
1736                 }
1737         }
1738
1739         if (ret) {
1740                 if (errno == ENOTTY) {
1741                         /* ioctl is not supported, it is not a lustre fs.
1742                          * Do the regular lstat(2) instead. */
1743                         lustre_fs = 0;
1744                         ret = lstat_f(path, st);
1745                         if (ret) {
1746                                 llapi_err(LLAPI_MSG_ERROR,
1747                                           "error: %s: lstat failed for %s",
1748                                           __func__, path);
1749                                 return ret;
1750                         }
1751                 } else if (errno == ENOENT) {
1752                         llapi_err(LLAPI_MSG_WARN,
1753                                   "warning: %s: %s does not exist",
1754                                   __func__, path);
1755                         goto decided;
1756                 } else {
1757                         llapi_err(LLAPI_MSG_ERROR,"error: %s: %s failed for %s",
1758                                   __func__, dir ? "LL_IOC_MDC_GETINFO" :
1759                                   "IOC_MDC_GETFILEINFO", path);
1760                         return ret;
1761                 }
1762         }
1763
1764         if (param->type && !checked_type) {
1765                 if ((st->st_mode & S_IFMT) == param->type) {
1766                         if (param->exclude_type)
1767                                 goto decided;
1768                 } else {
1769                         if (!param->exclude_type)
1770                                 goto decided;
1771                 }
1772         }
1773
1774         /* Prepare odb. */
1775         if (param->obduuid) {
1776                 if (lustre_fs && param->got_uuids &&
1777                     param->st_dev != st->st_dev) {
1778                         /* A lustre/lustre mount point is crossed. */
1779                         param->got_uuids = 0;
1780                         param->obds_printed = 0;
1781                         param->obdindex = OBD_NOT_FOUND;
1782                 }
1783
1784                 if (lustre_fs && !param->got_uuids) {
1785                         ret = setup_obd_indexes(dir ? dir : parent, param);
1786                         if (ret)
1787                                 return ret;
1788
1789                         param->st_dev = st->st_dev;
1790                 } else if (!lustre_fs && param->got_uuids) {
1791                         /* A lustre/non-lustre mount point is crossed. */
1792                         param->got_uuids = 0;
1793                         param->obdindex = OBD_NOT_FOUND;
1794                 }
1795         }
1796
1797         /* If an OBD UUID is specified but no one matches, skip this file. */
1798         if (param->obduuid && param->obdindex == OBD_NOT_FOUND)
1799                 goto decided;
1800
1801         /* If a OST UUID is given, and some OST matches, check it here. */
1802         if (param->obdindex != OBD_NOT_FOUND) {
1803                 if (!S_ISREG(st->st_mode))
1804                         goto decided;
1805
1806                 /* Only those files should be accepted, which have a
1807                  * stripe on the specified OST. */
1808                 if (!param->lmd->lmd_lmm.lmm_stripe_count) {
1809                         goto decided;
1810                 } else {
1811                         int i, j;
1812                         struct lov_user_ost_data_v1 *lmm_objects;
1813
1814                         if (param->lmd->lmd_lmm.lmm_magic ==
1815                             LOV_USER_MAGIC_V3) {
1816                                 struct lov_user_md_v3 *lmmv3 =
1817                                         (void *)&param->lmd->lmd_lmm;
1818
1819                                 lmm_objects = lmmv3->lmm_objects;
1820                         } else {
1821                                 lmm_objects = param->lmd->lmd_lmm.lmm_objects;
1822                         }
1823
1824                         for (i = 0;
1825                              i < param->lmd->lmd_lmm.lmm_stripe_count; i++) {
1826                                 for (j = 0; j < param->num_obds; j++) {
1827                                         if (param->obdindexes[j] ==
1828                                             lmm_objects[i].l_ost_idx) {
1829                                                 if (param->exclude_obd)
1830                                                         goto decided;
1831                                                 goto obd_matches;
1832                                         }
1833                                 }
1834                         }
1835
1836                         if (i == param->lmd->lmd_lmm.lmm_stripe_count) {
1837                                 if (param->exclude_obd)
1838                                         goto obd_matches;
1839                                 goto decided;
1840                         }
1841                 }
1842         }
1843
1844         if (param->check_uid) {
1845                 if (st->st_uid == param->uid) {
1846                         if (param->exclude_uid)
1847                                 goto decided;
1848                 } else {
1849                         if (!param->exclude_uid)
1850                                 goto decided;
1851                 }
1852         }
1853
1854         if (param->check_gid) {
1855                 if (st->st_gid == param->gid) {
1856                         if (param->exclude_gid)
1857                                 goto decided;
1858                 } else {
1859                         if (!param->exclude_gid)
1860                                 goto decided;
1861                 }
1862         }
1863
1864         if (param->check_pool) {
1865                 struct lov_user_md_v3 *lmmv3 = (void *)&param->lmd->lmd_lmm;
1866
1867                 /* empty requested pool is taken as no pool search => V1 */
1868                 if (((param->lmd->lmd_lmm.lmm_magic == LOV_USER_MAGIC_V1) &&
1869                      (param->poolname[0] == '\0')) ||
1870                     ((param->lmd->lmd_lmm.lmm_magic == LOV_USER_MAGIC_V3) &&
1871                      (strncmp(lmmv3->lmm_pool_name,
1872                               param->poolname, LOV_MAXPOOLNAME) == 0)) ||
1873                     ((param->lmd->lmd_lmm.lmm_magic == LOV_USER_MAGIC_V3) &&
1874                      (strcmp(param->poolname, "*") == 0))) {
1875                         if (param->exclude_pool)
1876                                 goto decided;
1877                 } else {
1878                         if (!param->exclude_pool)
1879                                 goto decided;
1880                 }
1881         }
1882
1883         /* Check the time on mds. */
1884         if (!decision) {
1885                 int for_mds;
1886
1887                 for_mds = lustre_fs ? (S_ISREG(st->st_mode) &&
1888                                        param->lmd->lmd_lmm.lmm_stripe_count)
1889                                     : 0;
1890                 decision = find_time_check(st, param, for_mds);
1891         }
1892
1893 obd_matches:
1894         /* If file still fits the request, ask ost for updated info.
1895            The regular stat is almost of the same speed as some new
1896            'glimpse-size-ioctl'. */
1897         if (!decision && S_ISREG(st->st_mode) &&
1898             param->lmd->lmd_lmm.lmm_stripe_count &&
1899             (param->size ||param->atime || param->mtime || param->ctime)) {
1900                 if (param->obdindex != OBD_NOT_FOUND) {
1901                         /* Check whether the obd is active or not, if it is
1902                          * not active, just print the object affected by this
1903                          * failed ost
1904                          * */
1905                         struct obd_statfs stat_buf;
1906                         struct obd_uuid uuid_buf;
1907
1908                         memset(&stat_buf, 0, sizeof(struct obd_statfs));
1909                         memset(&uuid_buf, 0, sizeof(struct obd_uuid));
1910                         ret = llapi_obd_statfs(path, LL_STATFS_LOV,
1911                                                param->obdindex, &stat_buf,
1912                                                &uuid_buf);
1913                         if (ret) {
1914                                 if (ret == -ENODATA || ret == -ENODEV
1915                                     || ret == -EIO)
1916                                         errno = EIO;
1917                                 llapi_printf(LLAPI_MSG_NORMAL,
1918                                              "obd_uuid: %s failed %s ",
1919                                              param->obduuid->uuid,
1920                                              strerror(errno));
1921                                 goto print_path;
1922                         }
1923                 }
1924                 if (dir) {
1925                         ret = ioctl(dirfd(dir), IOC_LOV_GETINFO,
1926                                     (void *)param->lmd);
1927                 } else if (parent) {
1928                         ret = ioctl(dirfd(parent), IOC_LOV_GETINFO,
1929                                     (void *)param->lmd);
1930                 }
1931
1932                 if (ret) {
1933                         if (errno == ENOENT) {
1934                                 llapi_err(LLAPI_MSG_ERROR,
1935                                           "warning: %s: %s does not exist",
1936                                           __func__, path);
1937                                 goto decided;
1938                         } else {
1939                                 llapi_err(LLAPI_MSG_ERROR,
1940                                           "%s: IOC_LOV_GETINFO on %s failed",
1941                                           __func__, path);
1942                                 return ret;
1943                         }
1944                 }
1945
1946                 /* Check the time on osc. */
1947                 decision = find_time_check(st, param, 0);
1948                 if (decision == -1)
1949                         goto decided;
1950         }
1951
1952         if (param->size)
1953                 decision = find_value_cmp(st->st_size, param->size,
1954                                           param->size_sign, param->size_units,
1955                                           0);
1956
1957 print_path:
1958         if (decision != -1) {
1959                 llapi_printf(LLAPI_MSG_NORMAL, "%s", path);
1960                 if (param->zeroend)
1961                         llapi_printf(LLAPI_MSG_NORMAL, "%c", '\0');
1962                 else
1963                         llapi_printf(LLAPI_MSG_NORMAL, "\n");
1964         }
1965
1966 decided:
1967         /* Do not get down anymore? */
1968         if (param->depth == param->maxdepth)
1969                 return 1;
1970
1971         param->depth++;
1972         return 0;
1973 }
1974
1975 int llapi_find(char *path, struct find_param *param)
1976 {
1977         return param_callback(path, cb_find_init, cb_common_fini, param);
1978 }
1979
1980 /*
1981  * Get MDT number that the file/directory inode referenced
1982  * by the open fd resides on.
1983  * Return 0 and mdtidx on success, or -ve errno.
1984  */
1985 int llapi_file_fget_mdtidx(int fd, int *mdtidx)
1986 {
1987         if (ioctl(fd, LL_IOC_GET_MDTIDX, &mdtidx) < 0)
1988                 return -errno;
1989         return 0;
1990 }
1991
1992 static int cb_get_mdt_index(char *path, DIR *parent, DIR *d, void *data,
1993                             cfs_dirent_t *de)
1994 {
1995         struct find_param *param = (struct find_param *)data;
1996         int ret = 0;
1997         int mdtidx;
1998
1999         LASSERT(parent != NULL || d != NULL);
2000
2001         if (d) {
2002                 ret = llapi_file_fget_mdtidx(dirfd(d), &mdtidx);
2003         } else if (parent) {
2004                 int fd;
2005
2006                 fd = open(path, O_RDONLY);
2007                 if (fd > 0) {
2008                         ret = llapi_file_fget_mdtidx(fd, &mdtidx);
2009                         close(fd);
2010                 } else {
2011                         ret = fd;
2012                 }
2013         }
2014
2015         if (ret) {
2016                 if (errno == ENODATA) {
2017                         if (!param->obduuid)
2018                                 llapi_printf(LLAPI_MSG_NORMAL,
2019                                              "%s has no stripe info\n", path);
2020                         goto out;
2021                 } else if (errno == ENOTTY) {
2022                         llapi_err(LLAPI_MSG_ERROR,
2023                                   "%s: '%s' not on a Lustre fs?",
2024                                   __func__, path);
2025                 } else if (errno == ENOENT) {
2026                         llapi_err(LLAPI_MSG_WARN,
2027                                   "warning: %s: %s does not exist",
2028                                   __func__, path);
2029                         goto out;
2030                 } else {
2031                         llapi_err(LLAPI_MSG_ERROR,
2032                                   "error: %s: LL_IOC_GET_MDTIDX failed for %s",
2033                                    __func__, path);
2034                 }
2035                 return ret;
2036         }
2037
2038         if (param->quiet)
2039                 llapi_printf(LLAPI_MSG_NORMAL, "%d\n", mdtidx);
2040         else
2041                 llapi_printf(LLAPI_MSG_NORMAL, "%s MDT index: %d\n",
2042                              path, mdtidx);
2043
2044 out:
2045         /* Do not get down anymore? */
2046         if (param->depth == param->maxdepth)
2047                 return 1;
2048
2049         param->depth++;
2050         return 0;
2051 }
2052
2053 static int cb_getstripe(char *path, DIR *parent, DIR *d, void *data,
2054                         cfs_dirent_t *de)
2055 {
2056         struct find_param *param = (struct find_param *)data;
2057         int ret = 0;
2058
2059         LASSERT(parent != NULL || d != NULL);
2060
2061         if (param->obduuid) {
2062                 param->quiet = 1;
2063                 ret = setup_obd_uuid(d ? d : parent, path, param);
2064                 if (ret)
2065                         return ret;
2066         }
2067
2068         if (d) {
2069                 ret = ioctl(dirfd(d), LL_IOC_LOV_GETSTRIPE,
2070                             (void *)&param->lmd->lmd_lmm);
2071         } else if (parent) {
2072                 char *fname = strrchr(path, '/');
2073                 fname = (fname == NULL ? path : fname + 1);
2074
2075                 strncpy((char *)&param->lmd->lmd_lmm, fname, param->lumlen);
2076
2077                 ret = ioctl(dirfd(parent), IOC_MDC_GETFILESTRIPE,
2078                             (void *)&param->lmd->lmd_lmm);
2079         }
2080
2081         if (ret) {
2082                 if (errno == ENODATA) {
2083                         if (!param->obduuid)
2084                                 llapi_printf(LLAPI_MSG_NORMAL,
2085                                              "%s has no stripe info\n", path);
2086                         goto out;
2087                 } else if (errno == ENOTTY) {
2088                         llapi_err(LLAPI_MSG_ERROR,
2089                                   "%s: '%s' not on a Lustre fs?",
2090                                   __func__, path);
2091                 } else if (errno == ENOENT) {
2092                         llapi_err(LLAPI_MSG_WARN,
2093                                   "warning: %s: %s does not exist",
2094                                   __func__, path);
2095                         goto out;
2096                 } else {
2097                         llapi_err(LLAPI_MSG_ERROR,
2098                                   "error: %s: %s failed for %s",
2099                                    __func__, d ? "LL_IOC_LOV_GETSTRIPE" :
2100                                   "IOC_MDC_GETFILESTRIPE", path);
2101                 }
2102
2103                 return ret;
2104         }
2105
2106         if (!param->get_mdt_index)
2107                 llapi_lov_dump_user_lmm(param, path, d ? 1 : 0);
2108
2109 out:
2110         /* Do not get down anymore? */
2111         if (param->depth == param->maxdepth)
2112                 return 1;
2113
2114         param->depth++;
2115         return 0;
2116 }
2117
2118 int llapi_getstripe(char *path, struct find_param *param)
2119 {
2120         return param_callback(path, param->get_mdt_index ?
2121                               cb_get_mdt_index : cb_getstripe,
2122                               cb_common_fini, param);
2123 }
2124
2125 int llapi_obd_statfs(char *path, __u32 type, __u32 index,
2126                      struct obd_statfs *stat_buf,
2127                      struct obd_uuid *uuid_buf)
2128 {
2129         int fd;
2130         char raw[OBD_MAX_IOCTL_BUFFER] = {'\0'};
2131         char *rawbuf = raw;
2132         struct obd_ioctl_data data = { 0 };
2133         int rc = 0;
2134
2135         data.ioc_inlbuf1 = (char *)&type;
2136         data.ioc_inllen1 = sizeof(__u32);
2137         data.ioc_inlbuf2 = (char *)&index;
2138         data.ioc_inllen2 = sizeof(__u32);
2139         data.ioc_pbuf1 = (char *)stat_buf;
2140         data.ioc_plen1 = sizeof(struct obd_statfs);
2141         data.ioc_pbuf2 = (char *)uuid_buf;
2142         data.ioc_plen2 = sizeof(struct obd_uuid);
2143
2144         if ((rc = obd_ioctl_pack(&data, &rawbuf, sizeof(raw))) != 0) {
2145                 llapi_err(LLAPI_MSG_ERROR,
2146                           "llapi_obd_statfs: error packing ioctl data");
2147                 return rc;
2148         }
2149
2150         fd = open(path, O_RDONLY);
2151         if (errno == EISDIR)
2152                 fd = open(path, O_DIRECTORY | O_RDONLY);
2153
2154         if (fd < 0) {
2155                 rc = errno ? -errno : -EBADF;
2156                 llapi_err(LLAPI_MSG_ERROR, "error: %s: opening '%s'",
2157                           __func__, path);
2158                 return rc;
2159         }
2160         rc = ioctl(fd, IOC_OBD_STATFS, (void *)rawbuf);
2161         if (rc)
2162                 rc = errno ? -errno : -EINVAL;
2163
2164         close(fd);
2165         return rc;
2166 }
2167
2168 #define MAX_STRING_SIZE 128
2169 #define DEVICES_LIST "/proc/fs/lustre/devices"
2170
2171 int llapi_ping(char *obd_type, char *obd_name)
2172 {
2173         char path[MAX_STRING_SIZE];
2174         char buf[1];
2175         int rc, fd;
2176
2177         snprintf(path, MAX_STRING_SIZE, "/proc/fs/lustre/%s/%s/ping",
2178                  obd_type, obd_name);
2179
2180         fd = open(path, O_WRONLY);
2181         if (fd < 0) {
2182                 rc = errno;
2183                 llapi_err(LLAPI_MSG_ERROR, "error opening %s", path);
2184                 return rc;
2185         }
2186
2187         rc = write(fd, buf, 1);
2188         close(fd);
2189
2190         if (rc == 1)
2191                 return 0;
2192         return rc;
2193 }
2194
2195 int llapi_target_iterate(int type_num, char **obd_type,void *args,llapi_cb_t cb)
2196 {
2197         char buf[MAX_STRING_SIZE];
2198         FILE *fp = fopen(DEVICES_LIST, "r");
2199         int i, rc = 0;
2200
2201         if (fp == NULL) {
2202                 rc = errno;
2203                 llapi_err(LLAPI_MSG_ERROR, "error: opening "DEVICES_LIST);
2204                 return rc;
2205         }
2206
2207         while (fgets(buf, sizeof(buf), fp) != NULL) {
2208                 char *obd_type_name = NULL;
2209                 char *obd_name = NULL;
2210                 char *obd_uuid = NULL;
2211                 char *bufp = buf;
2212                 struct obd_ioctl_data datal = { 0, };
2213                 struct obd_statfs osfs_buffer;
2214
2215                 while(bufp[0] == ' ')
2216                         ++bufp;
2217
2218                 for(i = 0; i < 3; i++) {
2219                         obd_type_name = strsep(&bufp, " ");
2220                 }
2221                 obd_name = strsep(&bufp, " ");
2222                 obd_uuid = strsep(&bufp, " ");
2223
2224                 memset(&osfs_buffer, 0, sizeof (osfs_buffer));
2225
2226                 datal.ioc_pbuf1 = (char *)&osfs_buffer;
2227                 datal.ioc_plen1 = sizeof(osfs_buffer);
2228
2229                 for (i = 0; i < type_num; i++) {
2230                         if (strcmp(obd_type_name, obd_type[i]) != 0)
2231                                 continue;
2232
2233                         cb(obd_type_name, obd_name, obd_uuid, args);
2234                 }
2235         }
2236         fclose(fp);
2237         return rc;
2238 }
2239
2240 static void do_target_check(char *obd_type_name, char *obd_name,
2241                             char *obd_uuid, void *args)
2242 {
2243         int rc;
2244
2245         rc = llapi_ping(obd_type_name, obd_name);
2246         if (rc == ENOTCONN) {
2247                 llapi_printf(LLAPI_MSG_NORMAL, "%s inactive.\n", obd_name);
2248         } else if (rc) {
2249                 llapi_err(LLAPI_MSG_ERROR, "error: check '%s'", obd_name);
2250         } else {
2251                 llapi_printf(LLAPI_MSG_NORMAL, "%s active.\n", obd_name);
2252         }
2253 }
2254
2255 int llapi_target_check(int type_num, char **obd_type, char *dir)
2256 {
2257         return llapi_target_iterate(type_num, obd_type, NULL, do_target_check);
2258 }
2259
2260 #undef MAX_STRING_SIZE
2261
2262 int llapi_catinfo(char *dir, char *keyword, char *node_name)
2263 {
2264         char raw[OBD_MAX_IOCTL_BUFFER];
2265         char out[LLOG_CHUNK_SIZE];
2266         char *buf = raw;
2267         struct obd_ioctl_data data = { 0 };
2268         char key[30];
2269         DIR *root;
2270         int rc;
2271
2272         sprintf(key, "%s", keyword);
2273         memset(raw, 0, sizeof(raw));
2274         memset(out, 0, sizeof(out));
2275         data.ioc_inlbuf1 = key;
2276         data.ioc_inllen1 = strlen(key) + 1;
2277         if (node_name) {
2278                 data.ioc_inlbuf2 = node_name;
2279                 data.ioc_inllen2 = strlen(node_name) + 1;
2280         }
2281         data.ioc_pbuf1 = out;
2282         data.ioc_plen1 = sizeof(out);
2283         rc = obd_ioctl_pack(&data, &buf, sizeof(raw));
2284         if (rc)
2285                 return rc;
2286
2287         root = opendir(dir);
2288         if (root == NULL) {
2289                 rc = errno;
2290                 llapi_err(LLAPI_MSG_ERROR, "open %s failed", dir);
2291                 return rc;
2292         }
2293
2294         rc = ioctl(dirfd(root), OBD_IOC_LLOG_CATINFO, buf);
2295         if (rc)
2296                 llapi_err(LLAPI_MSG_ERROR, "ioctl OBD_IOC_CATINFO failed");
2297         else
2298                 llapi_printf(LLAPI_MSG_NORMAL, "%s", data.ioc_pbuf1);
2299
2300         closedir(root);
2301         return rc;
2302 }
2303
2304 /* Is this a lustre fs? */
2305 int llapi_is_lustre_mnttype(const char *type)
2306 {
2307         return (strcmp(type, "lustre") == 0 || strcmp(type,"lustre_lite") == 0);
2308 }
2309
2310 /* Is this a lustre client fs? */
2311 int llapi_is_lustre_mnt(struct mntent *mnt)
2312 {
2313         return (llapi_is_lustre_mnttype(mnt->mnt_type) &&
2314                 strstr(mnt->mnt_fsname, ":/") != NULL);
2315 }
2316
2317 int llapi_quotacheck(char *mnt, int check_type)
2318 {
2319         DIR *root;
2320         int rc;
2321
2322         root = opendir(mnt);
2323         if (!root) {
2324                 llapi_err(LLAPI_MSG_ERROR, "open %s failed", mnt);
2325                 return -1;
2326         }
2327
2328         rc = ioctl(dirfd(root), LL_IOC_QUOTACHECK, check_type);
2329
2330         closedir(root);
2331         return rc;
2332 }
2333
2334 int llapi_poll_quotacheck(char *mnt, struct if_quotacheck *qchk)
2335 {
2336         DIR *root;
2337         int poll_intvl = 2;
2338         int rc;
2339
2340         root = opendir(mnt);
2341         if (!root) {
2342                 llapi_err(LLAPI_MSG_ERROR, "open %s failed", mnt);
2343                 return -1;
2344         }
2345
2346         while (1) {
2347                 rc = ioctl(dirfd(root), LL_IOC_POLL_QUOTACHECK, qchk);
2348                 if (!rc)
2349                         break;
2350                 sleep(poll_intvl);
2351                 if (poll_intvl < 30)
2352                         poll_intvl *= 2;
2353         }
2354
2355         closedir(root);
2356         return rc;
2357 }
2358
2359 int llapi_quotactl(char *mnt, struct if_quotactl *qctl)
2360 {
2361         DIR *root;
2362         int rc;
2363
2364         root = opendir(mnt);
2365         if (!root) {
2366                 llapi_err(LLAPI_MSG_ERROR, "open %s failed", mnt);
2367                 return -1;
2368         }
2369
2370         rc = ioctl(dirfd(root), LL_IOC_QUOTACTL, qctl);
2371
2372         closedir(root);
2373         return rc;
2374 }
2375
2376 static int cb_quotachown(char *path, DIR *parent, DIR *d, void *data,
2377                          cfs_dirent_t *de)
2378 {
2379         struct find_param *param = (struct find_param *)data;
2380         lstat_t *st;
2381         int rc;
2382
2383         LASSERT(parent != NULL || d != NULL);
2384
2385         if (d) {
2386                 rc = ioctl(dirfd(d), LL_IOC_MDC_GETINFO,
2387                            (void *)param->lmd);
2388         } else if (parent) {
2389                 char *fname = strrchr(path, '/');
2390                 fname = (fname == NULL ? path : fname + 1);
2391
2392                 strncpy((char *)param->lmd, fname, param->lumlen);
2393                 rc = ioctl(dirfd(parent), IOC_MDC_GETFILEINFO,
2394                            (void *)param->lmd);
2395         } else {
2396                 return 0;
2397         }
2398
2399         if (rc) {
2400                 if (errno == ENODATA) {
2401                         if (!param->obduuid && !param->quiet)
2402                                 llapi_err(LLAPI_MSG_ERROR,
2403                                           "%s has no stripe info", path);
2404                         rc = 0;
2405                 } else if (errno == ENOENT) {
2406                         llapi_err(LLAPI_MSG_ERROR,
2407                                   "warning: %s: %s does not exist",
2408                                   __func__, path);
2409                         rc = 0;
2410                 } else if (errno != EISDIR) {
2411                         rc = errno;
2412                         llapi_err(LLAPI_MSG_ERROR, "%s ioctl failed for %s.",
2413                                   d ? "LL_IOC_MDC_GETINFO" :
2414                                   "IOC_MDC_GETFILEINFO", path);
2415                 }
2416                 return rc;
2417         }
2418
2419         st = &param->lmd->lmd_st;
2420
2421         /* libc chown() will do extra check, and if the real owner is
2422          * the same as the ones to set, it won't fall into kernel, so
2423          * invoke syscall directly. */
2424         rc = syscall(SYS_chown, path, -1, -1);
2425         if (rc)
2426                 llapi_err(LLAPI_MSG_ERROR,"error: chown %s (%u,%u)", path);
2427
2428         rc = chmod(path, st->st_mode);
2429         if (rc)
2430                 llapi_err(LLAPI_MSG_ERROR, "error: chmod %s (%hu)",
2431                           path, st->st_mode);
2432
2433         return rc;
2434 }
2435
2436 int llapi_quotachown(char *path, int flag)
2437 {
2438         struct find_param param;
2439
2440         memset(&param, 0, sizeof(param));
2441         param.recursive = 1;
2442         param.verbose = 0;
2443         param.quiet = 1;
2444
2445         return param_callback(path, cb_quotachown, NULL, &param);
2446 }
2447
2448 #include <pwd.h>
2449 #include <grp.h>
2450 #include <mntent.h>
2451 #include <sys/wait.h>
2452 #include <errno.h>
2453 #include <ctype.h>
2454
2455 static int rmtacl_notify(int ops)
2456 {
2457         FILE *fp;
2458         struct mntent *mnt;
2459         int found = 0, fd, rc;
2460
2461         fp = setmntent(MOUNTED, "r");
2462         if (fp == NULL) {
2463                 perror("setmntent");
2464                 return -1;
2465         }
2466
2467         while (1) {
2468                 mnt = getmntent(fp);
2469                 if (!mnt)
2470                         break;
2471
2472                 if (!llapi_is_lustre_mnt(mnt))
2473                         continue;
2474
2475                 fd = open(mnt->mnt_dir, O_RDONLY | O_DIRECTORY);
2476                 if (fd < 0) {
2477                         perror("open");
2478                         return -1;
2479                 }
2480
2481                 rc = ioctl(fd, LL_IOC_RMTACL, ops);
2482                 if (rc < 0) {
2483                         perror("ioctl");
2484                 return -1;
2485                 }
2486
2487                 found++;
2488         }
2489         endmntent(fp);
2490         return found;
2491 }
2492
2493 static char *next_token(char *p, int div)
2494 {
2495         if (p == NULL)
2496                 return NULL;
2497
2498         if (div)
2499                 while (*p && *p != ':' && !isspace(*p))
2500                         p++;
2501         else
2502                 while (*p == ':' || isspace(*p))
2503                         p++;
2504
2505         return *p ? p : NULL;
2506 }
2507
2508 static int rmtacl_name2id(char *name, int is_user)
2509 {
2510         if (is_user) {
2511                 struct passwd *pw;
2512
2513                 if ((pw = getpwnam(name)) == NULL)
2514                         return INVALID_ID;
2515                 else
2516                         return (int)(pw->pw_uid);
2517         } else {
2518                 struct group *gr;
2519
2520                 if ((gr = getgrnam(name)) == NULL)
2521                         return INVALID_ID;
2522                 else
2523                         return (int)(gr->gr_gid);
2524         }
2525 }
2526
2527 static int isodigit(int c)
2528 {
2529         return (c >= '0' && c <= '7') ? 1 : 0;
2530 }
2531
2532 /*
2533  * Whether the name is just digits string (uid/gid) already or not.
2534  * Return value:
2535  * 1: str is id
2536  * 0: str is not id
2537  */
2538 static int str_is_id(char *str)
2539 {
2540         if (str == NULL)
2541                 return 0;
2542
2543         if (*str == '0') {
2544                 str++;
2545                 if (*str == 'x' || *str == 'X') { /* for Hex. */
2546                         if (!isxdigit(*(++str)))
2547                                 return 0;
2548
2549                         while (isxdigit(*(++str)));
2550                 } else if (isodigit(*str)) { /* for Oct. */
2551                         while (isodigit(*(++str)));
2552                 }
2553         } else if (isdigit(*str)) { /* for Dec. */
2554                 while (isdigit(*(++str)));
2555         }
2556
2557         return (*str == 0) ? 1 : 0;
2558 }
2559
2560 typedef struct {
2561         char *name;
2562         int   length;
2563         int   is_user;
2564         int   next_token;
2565 } rmtacl_name_t;
2566
2567 #define RMTACL_OPTNAME(name) name, sizeof(name) - 1
2568
2569 static rmtacl_name_t rmtacl_namelist[] = {
2570         { RMTACL_OPTNAME("user:"),            1,      0 },
2571         { RMTACL_OPTNAME("group:"),           0,      0 },
2572         { RMTACL_OPTNAME("default:user:"),    1,      0 },
2573         { RMTACL_OPTNAME("default:group:"),   0,      0 },
2574         /* for --tabular option */
2575         { RMTACL_OPTNAME("user"),             1,      1 },
2576         { RMTACL_OPTNAME("group"),            0,      1 },
2577         { 0 }
2578 };
2579
2580 static int rgetfacl_output(char *str)
2581 {
2582         char *start = NULL, *end = NULL;
2583         int is_user = 0, n, id;
2584         char c;
2585         rmtacl_name_t *rn;
2586
2587         if (str == NULL)
2588                 return -1;
2589
2590         for (rn = rmtacl_namelist; rn->name; rn++) {
2591                 if(strncmp(str, rn->name, rn->length) == 0) {
2592                         if (!rn->next_token)
2593                                 start = str + rn->length;
2594                         else
2595                                 start = next_token(str + rn->length, 0);
2596                         is_user = rn->is_user;
2597                         break;
2598                 }
2599         }
2600
2601         end = next_token(start, 1);
2602         if (end == NULL || start == end) {
2603                 n = printf("%s", str);
2604                 return n;
2605         }
2606
2607         c = *end;
2608         *end = 0;
2609         id = rmtacl_name2id(start, is_user);
2610         if (id == INVALID_ID) {
2611                 if (str_is_id(start)) {
2612                         *end = c;
2613                         n = printf("%s", str);
2614                 } else
2615                         return -1;
2616         } else if ((id == NOBODY_UID && is_user) ||
2617                    (id == NOBODY_GID && !is_user)) {
2618                 *end = c;
2619                 n = printf("%s", str);
2620         } else {
2621                 *end = c;
2622                 *start = 0;
2623                 n = printf("%s%d%s", str, id, end);
2624         }
2625         return n;
2626 }
2627
2628 static int child_status(int status)
2629 {
2630         return WIFEXITED(status) ? WEXITSTATUS(status) : -1;
2631 }
2632
2633 static int do_rmtacl(int argc, char *argv[], int ops, int (output_func)(char *))
2634 {
2635         pid_t pid = 0;
2636         int fd[2], status;
2637         FILE *fp;
2638         char buf[PIPE_BUF];
2639
2640         if (output_func) {
2641                 if (pipe(fd) < 0) {
2642                         perror("pipe");
2643                         return -1;
2644                 }
2645
2646                 if ((pid = fork()) < 0) {
2647                         perror("fork");
2648                         close(fd[0]);
2649                         close(fd[1]);
2650                         return -1;
2651                 } else if (!pid) {
2652                         /* child process redirects its output. */
2653                         close(fd[0]);
2654                         close(1);
2655                         if (dup2(fd[1], 1) < 0) {
2656                                 perror("dup2");
2657                                 close(fd[1]);
2658                                 return -1;
2659                         }
2660                 } else {
2661                         close(fd[1]);
2662                 }
2663         }
2664
2665         if (!pid) {
2666                 status = rmtacl_notify(ops);
2667                 if (status < 0)
2668                         return -1;
2669
2670                 exit(execvp(argv[0], argv));
2671         }
2672
2673         /* the following is parent process */
2674         if ((fp = fdopen(fd[0], "r")) == NULL) {
2675                 perror("fdopen");
2676                 kill(pid, SIGKILL);
2677                 close(fd[0]);
2678                 return -1;
2679         }
2680
2681         while (fgets(buf, PIPE_BUF, fp) != NULL) {
2682                 if (output_func(buf) < 0)
2683                         fprintf(stderr, "WARNING: unexpected error!\n[%s]\n",
2684                                 buf);
2685         }
2686         fclose(fp);
2687         close(fd[0]);
2688
2689         if (waitpid(pid, &status, 0) < 0) {
2690                 perror("waitpid");
2691                 return -1;
2692         }
2693
2694         return child_status(status);
2695 }
2696
2697 int llapi_lsetfacl(int argc, char *argv[])
2698 {
2699         return do_rmtacl(argc, argv, RMT_LSETFACL, NULL);
2700 }
2701
2702 int llapi_lgetfacl(int argc, char *argv[])
2703 {
2704         return do_rmtacl(argc, argv, RMT_LGETFACL, NULL);
2705 }
2706
2707 int llapi_rsetfacl(int argc, char *argv[])
2708 {
2709         return do_rmtacl(argc, argv, RMT_RSETFACL, NULL);
2710 }
2711
2712 int llapi_rgetfacl(int argc, char *argv[])
2713 {
2714         return do_rmtacl(argc, argv, RMT_RGETFACL, rgetfacl_output);
2715 }
2716
2717 int llapi_cp(int argc, char *argv[])
2718 {
2719         int rc;
2720
2721         rc = rmtacl_notify(RMT_RSETFACL);
2722         if (rc < 0)
2723                 return -1;
2724
2725         exit(execvp(argv[0], argv));
2726 }
2727
2728 int llapi_ls(int argc, char *argv[])
2729 {
2730         int rc;
2731
2732         rc = rmtacl_notify(RMT_LGETFACL);
2733         if (rc < 0)
2734                 return -1;
2735
2736         exit(execvp(argv[0], argv));
2737 }
2738
2739 /* Print mdtname 'name' into 'buf' using 'format'.  Add -MDT0000 if needed.
2740  * format must have %s%s, buf must be > 16
2741  * Eg: if name = "lustre-MDT0000", "lustre", or "lustre-MDT0000_UUID"
2742  *     then buf = "lustre-MDT0000"
2743  */
2744 static int get_mdtname(char *name, char *format, char *buf)
2745 {
2746         char suffix[]="-MDT0000";
2747         int len = strlen(name);
2748
2749         if ((len > 5) && (strncmp(name + len - 5, "_UUID", 5) == 0)) {
2750                 name[len - 5] = '\0';
2751                 len -= 5;
2752         }
2753
2754         if (len > 8) {
2755                 if ((len <= 16) && strncmp(name + len - 8, "-MDT", 4) == 0) {
2756                         suffix[0] = '\0';
2757                 } else {
2758                         /* Not enough room to add suffix */
2759                         llapi_err(LLAPI_MSG_ERROR | LLAPI_MSG_NO_ERRNO,
2760                                   "MDT name too long |%s|", name);
2761                         return -EINVAL;
2762                 }
2763         }
2764
2765         return sprintf(buf, format, name, suffix);
2766 }
2767
2768 /** ioctl on filsystem root, with mdtindex sent as data
2769  * \param mdtname path, fsname, or mdtname (lutre-MDT0004)
2770  * \param mdtidxp pointer to integer within data to be filled in with the
2771  *    mdt index (0 if no mdt is specified).  NULL won't be filled.
2772  */
2773 static int root_ioctl(const char *mdtname, int opc, void *data, int *mdtidxp,
2774                       int want_error)
2775 {
2776         char fsname[20];
2777         char *ptr;
2778         int fd, index, rc;
2779
2780         /* Take path, fsname, or MDTname.  Assume MDT0000 in the former cases.
2781          Open root and parse mdt index. */
2782         if (mdtname[0] == '/') {
2783                 index = 0;
2784                 rc = get_root_path(WANT_FD | want_error, NULL, &fd,
2785                                    (char *)mdtname, -1);
2786         } else {
2787                 if (get_mdtname((char *)mdtname, "%s%s", fsname) < 0)
2788                         return -EINVAL;
2789                 ptr = fsname + strlen(fsname) - 8;
2790                 *ptr = '\0';
2791                 index = strtol(ptr + 4, NULL, 10);
2792                 rc = get_root_path(WANT_FD | want_error, fsname, &fd, NULL, -1);
2793         }
2794         if (rc < 0) {
2795                 if (want_error)
2796                         llapi_err(LLAPI_MSG_ERROR | LLAPI_MSG_NO_ERRNO,
2797                                   "Can't open %s: %d\n", mdtname, rc);
2798                 return rc;
2799         }
2800
2801         if (mdtidxp)
2802                 *mdtidxp = index;
2803
2804         rc = ioctl(fd, opc, data);
2805         if (rc && want_error)
2806                 llapi_err(LLAPI_MSG_ERROR, "ioctl %d err %d", opc, rc);
2807
2808         close(fd);
2809         return rc;
2810 }
2811
2812 /****** Changelog API ********/
2813
2814 static int changelog_ioctl(const char *mdtname, int opc, int id,
2815                            long long recno, int flags)
2816 {
2817         struct ioc_changelog data;
2818         int *idx;
2819
2820         data.icc_id = id;
2821         data.icc_recno = recno;
2822         data.icc_flags = flags;
2823         idx = (int *)(&data.icc_mdtindex);
2824
2825         return root_ioctl(mdtname, opc, &data, idx, WANT_ERROR);
2826 }
2827
2828 #define CHANGELOG_PRIV_MAGIC 0xCA8E1080
2829 struct changelog_private {
2830         int magic;
2831         int flags;
2832         lustre_kernelcomm kuc;
2833 };
2834
2835 /** Start reading from a changelog
2836  * @param priv Opaque private control structure
2837  * @param flags Start flags (e.g. CHANGELOG_FLAG_BLOCK)
2838  * @param device Report changes recorded on this MDT
2839  * @param startrec Report changes beginning with this record number
2840  * (just call llapi_changelog_fini when done; don't need an endrec)
2841  */
2842 int llapi_changelog_start(void **priv, int flags, const char *device,
2843                           long long startrec)
2844 {
2845         struct changelog_private *cp;
2846         int rc;
2847
2848         /* Set up the receiver control struct */
2849         cp = calloc(1, sizeof(*cp));
2850         if (cp == NULL)
2851                 return -ENOMEM;
2852
2853         cp->magic = CHANGELOG_PRIV_MAGIC;
2854         cp->flags = flags;
2855
2856         /* Set up the receiver */
2857         rc = libcfs_ukuc_start(&cp->kuc, 0 /* no group registration */);
2858         if (rc < 0)
2859                 goto out_free;
2860
2861         *priv = cp;
2862
2863         /* Tell the kernel to start sending */
2864         rc = changelog_ioctl(device, OBD_IOC_CHANGELOG_SEND, cp->kuc.lk_wfd,
2865                              startrec, flags);
2866         /* Only the kernel reference keeps the write side open */
2867         close(cp->kuc.lk_wfd);
2868         cp->kuc.lk_wfd = 0;
2869         if (rc < 0) {
2870                 /* frees and clears priv */
2871                 llapi_changelog_fini(priv);
2872                 return rc;
2873         }
2874
2875         return 0;
2876
2877 out_free:
2878         free(cp);
2879         return rc;
2880 }
2881
2882 /** Finish reading from a changelog */
2883 int llapi_changelog_fini(void **priv)
2884 {
2885         struct changelog_private *cp = (struct changelog_private *)*priv;
2886
2887         if (!cp || (cp->magic != CHANGELOG_PRIV_MAGIC))
2888                 return -EINVAL;
2889
2890         libcfs_ukuc_stop(&cp->kuc);
2891         free(cp);
2892         *priv = NULL;
2893         return 0;
2894 }
2895
2896 /** Read the next changelog entry
2897  * @param priv Opaque private control structure
2898  * @param rech Changelog record handle; record will be allocated here
2899  * @return 0 valid message received; rec is set
2900  *         <0 error code
2901  *         1 EOF
2902  */
2903 int llapi_changelog_recv(void *priv, struct changelog_rec **rech)
2904 {
2905         struct changelog_private *cp = (struct changelog_private *)priv;
2906         struct kuc_hdr *kuch;
2907         int rc = 0;
2908
2909         if (!cp || (cp->magic != CHANGELOG_PRIV_MAGIC))
2910                 return -EINVAL;
2911         if (rech == NULL)
2912                 return -EINVAL;
2913         kuch = malloc(CR_MAXSIZE + sizeof(*kuch));
2914         if (kuch == NULL)
2915                 return -ENOMEM;
2916
2917 repeat:
2918         rc = libcfs_ukuc_msg_get(&cp->kuc, (char *)kuch,
2919                                  CR_MAXSIZE + sizeof(*kuch),
2920                                  KUC_TRANSPORT_CHANGELOG);
2921         if (rc < 0)
2922                 goto out_free;
2923
2924         if ((kuch->kuc_transport != KUC_TRANSPORT_CHANGELOG) ||
2925             ((kuch->kuc_msgtype != CL_RECORD) &&
2926              (kuch->kuc_msgtype != CL_EOF))) {
2927                 llapi_err(LLAPI_MSG_ERROR | LLAPI_MSG_NO_ERRNO,
2928                           "Unknown changelog message type %d:%d\n",
2929                           kuch->kuc_transport, kuch->kuc_msgtype);
2930                 rc = -EPROTO;
2931                 goto out_free;
2932         }
2933
2934         if (kuch->kuc_msgtype == CL_EOF) {
2935                 if (cp->flags & CHANGELOG_FLAG_FOLLOW) {
2936                         /* Ignore EOFs */
2937                         goto repeat;
2938                 } else {
2939                         rc = 1;
2940                         goto out_free;
2941                 }
2942         }
2943
2944         /* Our message is a changelog_rec.  Use pointer math to skip
2945          * kuch_hdr and point directly to the message payload.
2946          */
2947         *rech = (struct changelog_rec *)(kuch + 1);
2948
2949         return 0;
2950
2951 out_free:
2952         *rech = NULL;
2953         free(kuch);
2954         return rc;
2955 }
2956
2957 /** Release the changelog record when done with it. */
2958 int llapi_changelog_free(struct changelog_rec **rech)
2959 {
2960         if (*rech) {
2961                 /* We allocated memory starting at the kuc_hdr, but passed
2962                  * the consumer a pointer to the payload.
2963                  * Use pointer math to get back to the header.
2964                  */
2965                 struct kuc_hdr *kuch = (struct kuc_hdr *)*rech - 1;
2966                 free(kuch);
2967         }
2968         *rech = NULL;
2969         return 0;
2970 }
2971
2972 int llapi_changelog_clear(const char *mdtname, const char *idstr,
2973                           long long endrec)
2974 {
2975         int id;
2976
2977         if (endrec < 0) {
2978                 llapi_err(LLAPI_MSG_ERROR | LLAPI_MSG_NO_ERRNO,
2979                           "can't purge negative records\n");
2980                 return -EINVAL;
2981         }
2982
2983         id = strtol(idstr + strlen(CHANGELOG_USER_PREFIX), NULL, 10);
2984         if ((id == 0) || (strncmp(idstr, CHANGELOG_USER_PREFIX,
2985                                   strlen(CHANGELOG_USER_PREFIX)) != 0)) {
2986                 llapi_err(LLAPI_MSG_ERROR | LLAPI_MSG_NO_ERRNO,
2987                           "expecting id of the form '"CHANGELOG_USER_PREFIX
2988                           "<num>'; got '%s'\n", idstr);
2989                 return -EINVAL;
2990         }
2991
2992         return changelog_ioctl(mdtname, OBD_IOC_CHANGELOG_CLEAR, id, endrec, 0);
2993 }
2994
2995 int llapi_fid2path(const char *device, const char *fidstr, char *buf,
2996                    int buflen, long long *recno, int *linkno)
2997 {
2998         char path[PATH_MAX];
2999         struct lu_fid fid;
3000         struct getinfo_fid2path *gf;
3001         int fd, rc;
3002
3003         while (*fidstr == '[')
3004                 fidstr++;
3005
3006         sscanf(fidstr, SFID, RFID(&fid));
3007         if (!fid_is_sane(&fid)) {
3008                 llapi_err(LLAPI_MSG_ERROR | LLAPI_MSG_NO_ERRNO,
3009                           "bad FID format [%s], should be "DFID"\n",
3010                           fidstr, (__u64)1, 2, 0);
3011                 return -EINVAL;
3012         }
3013
3014         /* Take path or fsname */
3015         if (device[0] == '/') {
3016                 strcpy(path, device);
3017         } else {
3018                 rc = get_root_path(WANT_PATH | WANT_ERROR, (char *)device,
3019                                    NULL, path, -1);
3020                 if (rc < 0)
3021                         return rc;
3022         }
3023         sprintf(path, "%s/%s/fid/%s", path, dot_lustre_name, fidstr);
3024         fd = open(path, O_RDONLY | O_NONBLOCK);
3025         if (fd < 0)
3026                 return -errno;
3027
3028         gf = malloc(sizeof(*gf) + buflen);
3029         gf->gf_fid = fid;
3030         gf->gf_recno = *recno;
3031         gf->gf_linkno = *linkno;
3032         gf->gf_pathlen = buflen;
3033         rc = ioctl(fd, OBD_IOC_FID2PATH, gf);
3034         if (rc) {
3035                 llapi_err(LLAPI_MSG_ERROR, "ioctl err %d", rc);
3036         } else {
3037                 memcpy(buf, gf->gf_path, gf->gf_pathlen);
3038                 *recno = gf->gf_recno;
3039                 *linkno = gf->gf_linkno;
3040         }
3041
3042         free(gf);
3043         close(fd);
3044         return rc;
3045 }
3046
3047 static int path2fid_from_lma(const char *path, lustre_fid *fid)
3048 {
3049         char buf[512];
3050         struct lustre_mdt_attrs *lma;
3051         int rc;
3052
3053         rc = lgetxattr(path, XATTR_NAME_LMA, buf, sizeof(buf));
3054         if (rc < 0)
3055                 return -errno;
3056         lma = (struct lustre_mdt_attrs *)buf;
3057         fid_le_to_cpu(fid, &lma->lma_self_fid);
3058         return 0;
3059 }
3060
3061 int llapi_path2fid(const char *path, lustre_fid *fid)
3062 {
3063         int fd, rc;
3064
3065         memset(fid, 0, sizeof(*fid));
3066         fd = open(path, O_RDONLY | O_NONBLOCK | O_NOFOLLOW);
3067         if (fd < 0) {
3068                 if (errno == ELOOP) /* symbolic link */
3069                         return path2fid_from_lma(path, fid);
3070                 return -errno;
3071         }
3072
3073         rc = ioctl(fd, LL_IOC_PATH2FID, fid) < 0 ? -errno : 0;
3074         if (rc == -EINVAL) /* char special device */
3075                 rc = path2fid_from_lma(path, fid);
3076
3077         close(fd);
3078         return rc;
3079 }
3080
3081 /****** HSM Copytool API ********/
3082 #define CT_PRIV_MAGIC 0xC0BE2001
3083 struct copytool_private {
3084         int magic;
3085         char *fsname;
3086         lustre_kernelcomm kuc;
3087         __u32 archives;
3088 };
3089
3090 #include <libcfs/libcfs.h>
3091
3092 /** Register a copytool
3093  * @param[out] priv Opaque private control structure
3094  * @param fsname Lustre filesystem
3095  * @param flags Open flags, currently unused (e.g. O_NONBLOCK)
3096  * @param archive_count
3097  * @param archives Which archive numbers this copytool is responsible for
3098  */
3099 int llapi_copytool_start(void **priv, char *fsname, int flags,
3100                          int archive_count, int *archives)
3101 {
3102         struct copytool_private *ct;
3103         int rc;
3104
3105         if (archive_count > 0 && archives == NULL) {
3106                 llapi_err(LLAPI_MSG_ERROR | LLAPI_MSG_NO_ERRNO,
3107                           "NULL archive numbers");
3108                 return -EINVAL;
3109         }
3110
3111         ct = calloc(1, sizeof(*ct));
3112         if (ct == NULL)
3113                 return -ENOMEM;
3114
3115         ct->fsname = malloc(strlen(fsname) + 1);
3116         if (ct->fsname == NULL) {
3117                 rc = -ENOMEM;
3118                 goto out_err;
3119         }
3120         strcpy(ct->fsname, fsname);
3121         ct->magic = CT_PRIV_MAGIC;
3122         ct->archives = 0;
3123         for (rc = 0; rc < archive_count; rc++) {
3124                 if (archives[rc] > sizeof(ct->archives)) {
3125                         llapi_err(LLAPI_MSG_ERROR | LLAPI_MSG_NO_ERRNO,
3126                                   "Maximum of %d archives supported",
3127                                   sizeof(ct->archives));
3128                         goto out_err;
3129                 }
3130                 ct->archives |= 1 << archives[rc];
3131         }
3132         /* special case: if no archives specified, default to archive #0. */
3133         if (ct->archives == 0)
3134                 ct->archives = 1;
3135
3136         rc = libcfs_ukuc_start(&ct->kuc, KUC_GRP_HSM);
3137         if (rc < 0)
3138                 goto out_err;
3139
3140         /* Storing archive(s) in lk_data; see mdc_ioc_hsm_ct_start */
3141         ct->kuc.lk_data = ct->archives;
3142         rc = root_ioctl(ct->fsname, LL_IOC_HSM_CT_START, &(ct->kuc), NULL,
3143                         WANT_ERROR);
3144         /* Only the kernel reference keeps the write side open */
3145         close(ct->kuc.lk_wfd);
3146         ct->kuc.lk_wfd = 0;
3147         if (rc < 0)
3148                 goto out_err;
3149
3150         *priv = ct;
3151         return 0;
3152
3153 out_err:
3154         if (ct->fsname)
3155                 free(ct->fsname);
3156         free(ct);
3157         return rc;
3158 }
3159
3160 /** Deregister a copytool */
3161 int llapi_copytool_fini(void **priv)
3162 {
3163         struct copytool_private *ct = (struct copytool_private *)*priv;
3164
3165         if (!ct || (ct->magic != CT_PRIV_MAGIC))
3166                 return -EINVAL;
3167
3168         /* Tell the kernel to stop sending us messages */
3169         ct->kuc.lk_flags = LK_FLG_STOP;
3170         root_ioctl(ct->fsname, LL_IOC_HSM_CT_START, &(ct->kuc), NULL, 0);
3171
3172         /* Shut down the kernelcomms */
3173         libcfs_ukuc_stop(&ct->kuc);
3174
3175         free(ct->fsname);
3176         free(ct);
3177         *priv = NULL;
3178         return 0;
3179 }
3180
3181 /** Wait for the next hsm_action_list
3182  * @param priv Opaque private control structure
3183  * @param halh Action list handle, will be allocated here
3184  * @param msgsize Number of bytes in the message, will be set here
3185  * @return 0 valid message received; halh and msgsize are set
3186  *         <0 error code
3187  */
3188 int llapi_copytool_recv(void *priv, struct hsm_action_list **halh, int *msgsize)
3189 {
3190         struct copytool_private *ct = (struct copytool_private *)priv;
3191         struct kuc_hdr *kuch;
3192         struct hsm_action_list *hal;
3193         int rc = 0;
3194
3195         if (!ct || (ct->magic != CT_PRIV_MAGIC))
3196                 return -EINVAL;
3197         if (halh == NULL || msgsize == NULL)
3198                 return -EINVAL;
3199
3200         kuch = malloc(HAL_MAXSIZE + sizeof(*kuch));
3201         if (kuch == NULL)
3202                 return -ENOMEM;
3203
3204         rc = libcfs_ukuc_msg_get(&ct->kuc, (char *)kuch,
3205                                  HAL_MAXSIZE + sizeof(*kuch),
3206                                  KUC_TRANSPORT_HSM);
3207         if (rc < 0)
3208                 goto out_free;
3209
3210         /* Handle generic messages */
3211         if (kuch->kuc_transport == KUC_TRANSPORT_GENERIC &&
3212             kuch->kuc_msgtype == KUC_MSG_SHUTDOWN) {
3213                 rc = -ESHUTDOWN;
3214                 goto out_free;
3215         }
3216
3217         if (kuch->kuc_transport != KUC_TRANSPORT_HSM ||
3218             kuch->kuc_msgtype != HMT_ACTION_LIST) {
3219                 llapi_err(LLAPI_MSG_ERROR | LLAPI_MSG_NO_ERRNO,
3220                           "Unknown HSM message type %d:%d\n",
3221                           kuch->kuc_transport, kuch->kuc_msgtype);
3222                 rc = -EPROTO;
3223                 goto out_free;
3224         }
3225
3226         /* Our message is a hsm_action_list.  Use pointer math to skip
3227          * kuch_hdr and point directly to the message payload.
3228          */
3229         hal = (struct hsm_action_list *)(kuch + 1);
3230
3231         /* Check that we have registered for this archive # */
3232         if (((1 << hal->hal_archive_num) & ct->archives) == 0) {
3233                     llapi_err(LLAPI_MSG_INFO | LLAPI_MSG_NO_ERRNO,
3234                           "Ignoring request for archive #%d (bitmask %#x)\n",
3235                           hal->hal_archive_num, ct->archives);
3236                 rc = 0;
3237                 goto out_free;
3238         }
3239
3240         *halh = hal;
3241         *msgsize = kuch->kuc_msglen - sizeof(*kuch);
3242         return 0;
3243
3244 out_free:
3245         *halh = NULL;
3246         *msgsize = 0;
3247         free(kuch);
3248         return rc;
3249 }
3250
3251 /** Release the action list when done with it. */
3252 int llapi_copytool_free(struct hsm_action_list **hal)
3253 {
3254         /* Reuse the llapi_changelog_free function */
3255         return llapi_changelog_free((struct changelog_rec **)hal);
3256 }
3257
3258 int llapi_get_connect_flags(const char *mnt, __u64 *flags)
3259 {
3260         DIR *root;
3261         int rc;
3262
3263         root = opendir(mnt);
3264         if (!root) {
3265                 llapi_err(LLAPI_MSG_ERROR, "open %s failed", mnt);
3266                 return -1;
3267         }
3268
3269         rc = ioctl(dirfd(root), LL_IOC_GET_CONNECT_FLAGS, flags);
3270         closedir(root);
3271         if (rc < 0)
3272                 llapi_err(LLAPI_MSG_ERROR,
3273                           "ioctl on %s for getting connect flags failed", mnt);
3274         return rc;
3275 }
3276
3277 int llapi_get_version(char *buffer, int buffer_size,
3278                       char **version)
3279 {
3280         int rc;
3281         int fd;
3282         struct obd_ioctl_data *data = (struct obd_ioctl_data *)buffer;
3283
3284         fd = open(OBD_DEV_PATH, O_RDONLY);
3285         if (fd == -1)
3286                 return -errno;
3287
3288         memset(buffer, 0, buffer_size);
3289         data->ioc_version = OBD_IOCTL_VERSION;
3290         data->ioc_inllen1 = buffer_size - cfs_size_round(sizeof(*data));
3291         data->ioc_inlbuf1 = buffer + cfs_size_round(sizeof(*data));
3292         data->ioc_len = obd_ioctl_packlen(data);
3293
3294         rc = ioctl(fd, OBD_GET_VERSION, buffer);
3295         if (rc == -1) {
3296                 rc = errno;
3297                 close(fd);
3298                 return -rc;
3299         }
3300         close(fd);
3301         *version = data->ioc_bulk;
3302         return 0;
3303 }