Whamcloud - gitweb
b=21665 "lfs osts" incorrectly tries to traverse lustre mount
[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 static int cb_ostlist(char *path, DIR *parent, DIR *d, void *data,
1361                       struct dirent64 *de)
1362 {
1363         struct find_param *param = (struct find_param *)data;
1364         int ret;
1365
1366         LASSERT(parent != NULL || d != NULL);
1367
1368         /* Prepare odb. */
1369         ret = setup_obd_uuid(d ? d : parent, path, param);
1370
1371         /* We don't want to actually traverse the directory tree,
1372          * so return a positive value from sem_init to terminate
1373          * the traversal before it starts.
1374          */
1375         return ret == 0 ? 1 : ret;
1376 }
1377
1378 int llapi_ostlist(char *path, struct find_param *param)
1379 {
1380         return param_callback(path, cb_ostlist, cb_common_fini, param);
1381 }
1382
1383 static void lov_dump_user_lmm_header(struct lov_user_md *lum, char *path,
1384                                      int is_dir, int verbose, int depth,
1385                                      char *pool_name)
1386 {
1387         char *prefix = is_dir ? "" : "lmm_";
1388         char nl = is_dir ? ' ' : '\n';
1389
1390         if (is_dir && lum->lmm_object_seq == LOV_OBJECT_GROUP_DEFAULT) {
1391                 lum->lmm_object_seq = LOV_OBJECT_GROUP_CLEAR;
1392                 if (verbose & VERBOSE_DETAIL)
1393                         llapi_printf(LLAPI_MSG_NORMAL, "(Default) ");
1394         }
1395
1396         if (depth && path && ((verbose != VERBOSE_OBJID) || !is_dir))
1397                 llapi_printf(LLAPI_MSG_NORMAL, "%s\n", path);
1398
1399         if ((verbose & VERBOSE_DETAIL) && !is_dir) {
1400                 llapi_printf(LLAPI_MSG_NORMAL, "lmm_magic:          0x%08X\n",
1401                              lum->lmm_magic);
1402                 llapi_printf(LLAPI_MSG_NORMAL, "lmm_seq:            "LPX64"\n",
1403                              lum->lmm_object_seq);
1404                 llapi_printf(LLAPI_MSG_NORMAL, "lmm_object_id:      "LPX64"\n",
1405                              lum->lmm_object_id);
1406         }
1407
1408         if (verbose & VERBOSE_COUNT) {
1409                 if (verbose & ~VERBOSE_COUNT)
1410                         llapi_printf(LLAPI_MSG_NORMAL, "%sstripe_count:   ",
1411                                      prefix);
1412                 llapi_printf(LLAPI_MSG_NORMAL, "%hd%c",
1413                              (__s16)lum->lmm_stripe_count, nl);
1414         }
1415
1416         if (verbose & VERBOSE_SIZE) {
1417                 if (verbose & ~VERBOSE_SIZE)
1418                         llapi_printf(LLAPI_MSG_NORMAL, "%sstripe_size:    ",
1419                                      prefix);
1420                 llapi_printf(LLAPI_MSG_NORMAL, "%u%c", lum->lmm_stripe_size,
1421                              nl);
1422         }
1423
1424         if ((verbose & VERBOSE_DETAIL) && !is_dir) {
1425                 llapi_printf(LLAPI_MSG_NORMAL, "lmm_stripe_pattern: %x%c",
1426                              lum->lmm_pattern, nl);
1427         }
1428
1429         if (verbose & VERBOSE_OFFSET) {
1430                 if (verbose & ~VERBOSE_OFFSET)
1431                         llapi_printf(LLAPI_MSG_NORMAL, "%sstripe_offset:  ",
1432                                      prefix);
1433                 llapi_printf(LLAPI_MSG_NORMAL, "%u%c",
1434                              lum->lmm_objects[0].l_ost_idx, nl);
1435         }
1436
1437         if ((verbose & VERBOSE_POOL) && (pool_name != NULL)) {
1438                 llapi_printf(LLAPI_MSG_NORMAL, "pool: %s", pool_name);
1439                 is_dir = 1;
1440         }
1441
1442         if (is_dir && (verbose != VERBOSE_OBJID))
1443                 llapi_printf(LLAPI_MSG_NORMAL, "\n");
1444 }
1445
1446 void lov_dump_user_lmm_v1v3(struct lov_user_md *lum, char *pool_name,
1447                             struct lov_user_ost_data_v1 *objects,
1448                             char *path, int is_dir,
1449                             int obdindex, int depth, int header)
1450 {
1451         int i, obdstripe = (obdindex != OBD_NOT_FOUND) ? 0 : 1;
1452
1453         if (!obdstripe) {
1454                 for (i = 0; !is_dir && i < lum->lmm_stripe_count; i++) {
1455                         if (obdindex == objects[i].l_ost_idx) {
1456                                 obdstripe = 1;
1457                                 break;
1458                         }
1459                 }
1460         }
1461
1462         if (obdstripe == 1)
1463                 lov_dump_user_lmm_header(lum, path, is_dir, header, depth,
1464                                          pool_name);
1465
1466         if (!is_dir && (header & VERBOSE_OBJID)) {
1467                 if (obdstripe == 1)
1468                         llapi_printf(LLAPI_MSG_NORMAL,
1469                                      "\tobdidx\t\t objid\t\tobjid\t\t group\n");
1470
1471                 for (i = 0; i < lum->lmm_stripe_count; i++) {
1472                         int idx = objects[i].l_ost_idx;
1473                         long long oid = objects[i].l_object_id;
1474                         long long gr = objects[i].l_object_seq;
1475                         if ((obdindex == OBD_NOT_FOUND) || (obdindex == idx))
1476                                 llapi_printf(LLAPI_MSG_NORMAL,
1477                                            "\t%6u\t%14llu\t%#13llx\t%14llu%s\n",
1478                                            idx, oid, oid, gr,
1479                                            obdindex == idx ? " *" : "");
1480                 }
1481                 llapi_printf(LLAPI_MSG_NORMAL, "\n");
1482         }
1483 }
1484
1485 void llapi_lov_dump_user_lmm(struct find_param *param,
1486                              char *path, int is_dir)
1487 {
1488         switch(*(__u32 *)&param->lmd->lmd_lmm) { /* lum->lmm_magic */
1489         case LOV_USER_MAGIC_V1:
1490                 lov_dump_user_lmm_v1v3(&param->lmd->lmd_lmm, NULL,
1491                                        param->lmd->lmd_lmm.lmm_objects,
1492                                        path, is_dir,
1493                                        param->obdindex, param->maxdepth,
1494                                        param->verbose);
1495                 break;
1496         case LOV_USER_MAGIC_V3: {
1497                 char pool_name[LOV_MAXPOOLNAME + 1];
1498                 struct lov_user_ost_data_v1 *objects;
1499                 struct lov_user_md_v3 *lmmv3 = (void *)&param->lmd->lmd_lmm;
1500
1501                 strncpy(pool_name, lmmv3->lmm_pool_name, LOV_MAXPOOLNAME);
1502                 pool_name[LOV_MAXPOOLNAME] = '\0';
1503                 objects = lmmv3->lmm_objects;
1504                 lov_dump_user_lmm_v1v3(&param->lmd->lmd_lmm, pool_name,
1505                                        objects, path, is_dir,
1506                                        param->obdindex, param->maxdepth,
1507                                        param->verbose);
1508                 break;
1509         }
1510         default:
1511                 llapi_printf(LLAPI_MSG_NORMAL, "unknown lmm_magic:  %#x "
1512                              "(expecting one of %#x %#x %#x)\n",
1513                              *(__u32 *)&param->lmd->lmd_lmm,
1514                              LOV_USER_MAGIC_V1, LOV_USER_MAGIC_V3);
1515                 return;
1516         }
1517 }
1518
1519 int llapi_file_get_stripe(const char *path, struct lov_user_md *lum)
1520 {
1521         const char *fname;
1522         char *dname;
1523         int fd, rc = 0;
1524
1525         fname = strrchr(path, '/');
1526
1527         /* It should be a file (or other non-directory) */
1528         if (fname == NULL) {
1529                 dname = (char *)malloc(2);
1530                 if (dname == NULL)
1531                         return ENOMEM;
1532                 strcpy(dname, ".");
1533                 fname = (char *)path;
1534         } else {
1535                 dname = (char *)malloc(fname - path + 1);
1536                 if (dname == NULL)
1537                         return ENOMEM;
1538                 strncpy(dname, path, fname - path);
1539                 dname[fname - path] = '\0';
1540                 fname++;
1541         }
1542
1543         if ((fd = open(dname, O_RDONLY)) == -1) {
1544                 rc = errno;
1545                 free(dname);
1546                 return rc;
1547         }
1548
1549         strcpy((char *)lum, fname);
1550         if (ioctl(fd, IOC_MDC_GETFILESTRIPE, (void *)lum) == -1)
1551                 rc = errno;
1552
1553         if (close(fd) == -1 && rc == 0)
1554                 rc = errno;
1555
1556         free(dname);
1557
1558         return rc;
1559 }
1560
1561 int llapi_file_lookup(int dirfd, const char *name)
1562 {
1563         struct obd_ioctl_data data = { 0 };
1564         char rawbuf[8192];
1565         char *buf = rawbuf;
1566         int rc;
1567
1568         if (dirfd < 0 || name == NULL)
1569                 return -EINVAL;
1570
1571         data.ioc_version = OBD_IOCTL_VERSION;
1572         data.ioc_len = sizeof(data);
1573         data.ioc_inlbuf1 = (char *)name;
1574         data.ioc_inllen1 = strlen(name) + 1;
1575
1576         rc = obd_ioctl_pack(&data, &buf, sizeof(rawbuf));
1577         if (rc) {
1578                 llapi_err(LLAPI_MSG_ERROR,
1579                           "error: IOC_MDC_LOOKUP pack failed for '%s': rc %d",
1580                           name, rc);
1581                 return rc;
1582         }
1583
1584         return ioctl(dirfd, IOC_MDC_LOOKUP, buf);
1585 }
1586
1587 /* Check if the value matches 1 of the given criteria (e.g. --atime +/-N).
1588  * @mds indicates if this is MDS timestamps and there are attributes on OSTs.
1589  *
1590  * The result is -1 if it does not match, 0 if not yet clear, 1 if matches.
1591  * The table below gives the answers for the specified parameters (value and
1592  * sign), 1st column is the answer for the MDS value, the 2nd is for the OST:
1593  * --------------------------------------
1594  * 1 | file > limit; sign > 0 | -1 / -1 |
1595  * 2 | file = limit; sign > 0 |  ? /  1 |
1596  * 3 | file < limit; sign > 0 |  ? /  1 |
1597  * 4 | file > limit; sign = 0 | -1 / -1 |
1598  * 5 | file = limit; sign = 0 |  ? /  1 |  <- (see the Note below)
1599  * 6 | file < limit; sign = 0 |  ? / -1 |
1600  * 7 | file > limit; sign < 0 |  1 /  1 |
1601  * 8 | file = limit; sign < 0 |  ? / -1 |
1602  * 9 | file < limit; sign < 0 |  ? / -1 |
1603  * --------------------------------------
1604  * Note: 5th actually means that the value is within the interval
1605  * (limit - margin, limit]. */
1606 static int find_value_cmp(unsigned int file, unsigned int limit, int sign,
1607                           unsigned long long margin, int mds)
1608 {
1609         if (sign > 0) {
1610                 if (file < limit)
1611                         return mds ? 0 : 1;
1612         }
1613
1614         if (sign == 0) {
1615                 if (file <= limit && file + margin > limit)
1616                         return mds ? 0 : 1;
1617                 if (file + margin <= limit)
1618                         return mds ? 0 : -1;
1619         }
1620
1621         if (sign < 0) {
1622                 if (file > limit)
1623                         return 1;
1624                 if (mds)
1625                         return 0;
1626         }
1627
1628         return -1;
1629 }
1630
1631 /* Check if the file time matches all the given criteria (e.g. --atime +/-N).
1632  * Return -1 or 1 if file timestamp does not or does match the given criteria
1633  * correspondingly. Return 0 if the MDS time is being checked and there are
1634  * attributes on OSTs and it is not yet clear if the timespamp matches.
1635  *
1636  * If 0 is returned, we need to do another RPC to the OSTs to obtain the
1637  * updated timestamps. */
1638 static int find_time_check(lstat_t *st, struct find_param *param, int mds)
1639 {
1640         int ret;
1641         int rc = 0;
1642
1643         /* Check if file is accepted. */
1644         if (param->atime) {
1645                 ret = find_value_cmp(st->st_atime, param->atime,
1646                                      param->asign, 24 * 60 * 60, mds);
1647                 if (ret < 0)
1648                         return ret;
1649                 rc = ret;
1650         }
1651
1652         if (param->mtime) {
1653                 ret = find_value_cmp(st->st_mtime, param->mtime,
1654                                      param->msign, 24 * 60 * 60, mds);
1655                 if (ret < 0)
1656                         return ret;
1657
1658                 /* If the previous check matches, but this one is not yet clear,
1659                  * we should return 0 to do an RPC on OSTs. */
1660                 if (rc == 1)
1661                         rc = ret;
1662         }
1663
1664         if (param->ctime) {
1665                 ret = find_value_cmp(st->st_ctime, param->ctime,
1666                                      param->csign, 24 * 60 * 60, mds);
1667                 if (ret < 0)
1668                         return ret;
1669
1670                 /* If the previous check matches, but this one is not yet clear,
1671                  * we should return 0 to do an RPC on OSTs. */
1672                 if (rc == 1)
1673                         rc = ret;
1674         }
1675
1676         return rc;
1677 }
1678
1679 static int cb_find_init(char *path, DIR *parent, DIR *dir,
1680                         void *data, cfs_dirent_t *de)
1681 {
1682         struct find_param *param = (struct find_param *)data;
1683         int decision = 1; /* 1 is accepted; -1 is rejected. */
1684         lstat_t *st = &param->lmd->lmd_st;
1685         int lustre_fs = 1;
1686         int checked_type = 0;
1687         int ret = 0;
1688
1689         LASSERT(parent != NULL || dir != NULL);
1690
1691         param->lmd->lmd_lmm.lmm_stripe_count = 0;
1692
1693         /* If a regular expression is presented, make the initial decision */
1694         if (param->pattern != NULL) {
1695                 char *fname = strrchr(path, '/');
1696                 fname = (fname == NULL ? path : fname + 1);
1697                 ret = fnmatch(param->pattern, fname, 0);
1698                 if ((ret == FNM_NOMATCH && !param->exclude_pattern) ||
1699                     (ret == 0 && param->exclude_pattern))
1700                         goto decided;
1701         }
1702
1703         /* See if we can check the file type from the dirent. */
1704         if (param->type && de != NULL && de->d_type != DT_UNKNOWN &&
1705             de->d_type < DT_MAX) {
1706                 checked_type = 1;
1707                 if (llapi_dir_filetype_table[de->d_type] == param->type) {
1708                         if (param->exclude_type)
1709                                 goto decided;
1710                 } else {
1711                         if (!param->exclude_type)
1712                                 goto decided;
1713                 }
1714         }
1715
1716
1717         /* If a time or OST should be checked, the decision is not taken yet. */
1718         if (param->atime || param->ctime || param->mtime || param->obduuid ||
1719             param->size)
1720                 decision = 0;
1721
1722         ret = 0;
1723         /* Request MDS for the stat info. */
1724         if (param->have_fileinfo == 0) {
1725                 if (dir) {
1726                         /* retrieve needed file info */
1727                         ret = ioctl(dirfd(dir), LL_IOC_MDC_GETINFO,
1728                                     (void *)param->lmd);
1729                 } else {
1730                         char *fname = strrchr(path, '/');
1731                         fname = (fname == NULL ? path : fname + 1);
1732
1733                         /* retrieve needed file info */
1734                         strncpy((char *)param->lmd, fname, param->lumlen);
1735                         ret = ioctl(dirfd(parent), IOC_MDC_GETFILEINFO,
1736                                    (void *)param->lmd);
1737                 }
1738         }
1739
1740         if (ret) {
1741                 if (errno == ENOTTY) {
1742                         /* ioctl is not supported, it is not a lustre fs.
1743                          * Do the regular lstat(2) instead. */
1744                         lustre_fs = 0;
1745                         ret = lstat_f(path, st);
1746                         if (ret) {
1747                                 llapi_err(LLAPI_MSG_ERROR,
1748                                           "error: %s: lstat failed for %s",
1749                                           __func__, path);
1750                                 return ret;
1751                         }
1752                 } else if (errno == ENOENT) {
1753                         llapi_err(LLAPI_MSG_WARN,
1754                                   "warning: %s: %s does not exist",
1755                                   __func__, path);
1756                         goto decided;
1757                 } else {
1758                         llapi_err(LLAPI_MSG_ERROR,"error: %s: %s failed for %s",
1759                                   __func__, dir ? "LL_IOC_MDC_GETINFO" :
1760                                   "IOC_MDC_GETFILEINFO", path);
1761                         return ret;
1762                 }
1763         }
1764
1765         if (param->type && !checked_type) {
1766                 if ((st->st_mode & S_IFMT) == param->type) {
1767                         if (param->exclude_type)
1768                                 goto decided;
1769                 } else {
1770                         if (!param->exclude_type)
1771                                 goto decided;
1772                 }
1773         }
1774
1775         /* Prepare odb. */
1776         if (param->obduuid) {
1777                 if (lustre_fs && param->got_uuids &&
1778                     param->st_dev != st->st_dev) {
1779                         /* A lustre/lustre mount point is crossed. */
1780                         param->got_uuids = 0;
1781                         param->obds_printed = 0;
1782                         param->obdindex = OBD_NOT_FOUND;
1783                 }
1784
1785                 if (lustre_fs && !param->got_uuids) {
1786                         ret = setup_obd_indexes(dir ? dir : parent, param);
1787                         if (ret)
1788                                 return ret;
1789
1790                         param->st_dev = st->st_dev;
1791                 } else if (!lustre_fs && param->got_uuids) {
1792                         /* A lustre/non-lustre mount point is crossed. */
1793                         param->got_uuids = 0;
1794                         param->obdindex = OBD_NOT_FOUND;
1795                 }
1796         }
1797
1798         /* If an OBD UUID is specified but no one matches, skip this file. */
1799         if (param->obduuid && param->obdindex == OBD_NOT_FOUND)
1800                 goto decided;
1801
1802         /* If a OST UUID is given, and some OST matches, check it here. */
1803         if (param->obdindex != OBD_NOT_FOUND) {
1804                 if (!S_ISREG(st->st_mode))
1805                         goto decided;
1806
1807                 /* Only those files should be accepted, which have a
1808                  * stripe on the specified OST. */
1809                 if (!param->lmd->lmd_lmm.lmm_stripe_count) {
1810                         goto decided;
1811                 } else {
1812                         int i, j;
1813                         struct lov_user_ost_data_v1 *lmm_objects;
1814
1815                         if (param->lmd->lmd_lmm.lmm_magic ==
1816                             LOV_USER_MAGIC_V3) {
1817                                 struct lov_user_md_v3 *lmmv3 =
1818                                         (void *)&param->lmd->lmd_lmm;
1819
1820                                 lmm_objects = lmmv3->lmm_objects;
1821                         } else {
1822                                 lmm_objects = param->lmd->lmd_lmm.lmm_objects;
1823                         }
1824
1825                         for (i = 0;
1826                              i < param->lmd->lmd_lmm.lmm_stripe_count; i++) {
1827                                 for (j = 0; j < param->num_obds; j++) {
1828                                         if (param->obdindexes[j] ==
1829                                             lmm_objects[i].l_ost_idx) {
1830                                                 if (param->exclude_obd)
1831                                                         goto decided;
1832                                                 goto obd_matches;
1833                                         }
1834                                 }
1835                         }
1836
1837                         if (i == param->lmd->lmd_lmm.lmm_stripe_count) {
1838                                 if (param->exclude_obd)
1839                                         goto obd_matches;
1840                                 goto decided;
1841                         }
1842                 }
1843         }
1844
1845         if (param->check_uid) {
1846                 if (st->st_uid == param->uid) {
1847                         if (param->exclude_uid)
1848                                 goto decided;
1849                 } else {
1850                         if (!param->exclude_uid)
1851                                 goto decided;
1852                 }
1853         }
1854
1855         if (param->check_gid) {
1856                 if (st->st_gid == param->gid) {
1857                         if (param->exclude_gid)
1858                                 goto decided;
1859                 } else {
1860                         if (!param->exclude_gid)
1861                                 goto decided;
1862                 }
1863         }
1864
1865         if (param->check_pool) {
1866                 struct lov_user_md_v3 *lmmv3 = (void *)&param->lmd->lmd_lmm;
1867
1868                 /* empty requested pool is taken as no pool search => V1 */
1869                 if (((param->lmd->lmd_lmm.lmm_magic == LOV_USER_MAGIC_V1) &&
1870                      (param->poolname[0] == '\0')) ||
1871                     ((param->lmd->lmd_lmm.lmm_magic == LOV_USER_MAGIC_V3) &&
1872                      (strncmp(lmmv3->lmm_pool_name,
1873                               param->poolname, LOV_MAXPOOLNAME) == 0)) ||
1874                     ((param->lmd->lmd_lmm.lmm_magic == LOV_USER_MAGIC_V3) &&
1875                      (strcmp(param->poolname, "*") == 0))) {
1876                         if (param->exclude_pool)
1877                                 goto decided;
1878                 } else {
1879                         if (!param->exclude_pool)
1880                                 goto decided;
1881                 }
1882         }
1883
1884         /* Check the time on mds. */
1885         if (!decision) {
1886                 int for_mds;
1887
1888                 for_mds = lustre_fs ? (S_ISREG(st->st_mode) &&
1889                                        param->lmd->lmd_lmm.lmm_stripe_count)
1890                                     : 0;
1891                 decision = find_time_check(st, param, for_mds);
1892         }
1893
1894 obd_matches:
1895         /* If file still fits the request, ask ost for updated info.
1896            The regular stat is almost of the same speed as some new
1897            'glimpse-size-ioctl'. */
1898         if (!decision && S_ISREG(st->st_mode) &&
1899             param->lmd->lmd_lmm.lmm_stripe_count &&
1900             (param->size ||param->atime || param->mtime || param->ctime)) {
1901                 if (param->obdindex != OBD_NOT_FOUND) {
1902                         /* Check whether the obd is active or not, if it is
1903                          * not active, just print the object affected by this
1904                          * failed ost
1905                          * */
1906                         struct obd_statfs stat_buf;
1907                         struct obd_uuid uuid_buf;
1908
1909                         memset(&stat_buf, 0, sizeof(struct obd_statfs));
1910                         memset(&uuid_buf, 0, sizeof(struct obd_uuid));
1911                         ret = llapi_obd_statfs(path, LL_STATFS_LOV,
1912                                                param->obdindex, &stat_buf,
1913                                                &uuid_buf);
1914                         if (ret) {
1915                                 if (ret == -ENODATA || ret == -ENODEV
1916                                     || ret == -EIO)
1917                                         errno = EIO;
1918                                 llapi_printf(LLAPI_MSG_NORMAL,
1919                                              "obd_uuid: %s failed %s ",
1920                                              param->obduuid->uuid,
1921                                              strerror(errno));
1922                                 goto print_path;
1923                         }
1924                 }
1925                 if (dir) {
1926                         ret = ioctl(dirfd(dir), IOC_LOV_GETINFO,
1927                                     (void *)param->lmd);
1928                 } else if (parent) {
1929                         ret = ioctl(dirfd(parent), IOC_LOV_GETINFO,
1930                                     (void *)param->lmd);
1931                 }
1932
1933                 if (ret) {
1934                         if (errno == ENOENT) {
1935                                 llapi_err(LLAPI_MSG_ERROR,
1936                                           "warning: %s: %s does not exist",
1937                                           __func__, path);
1938                                 goto decided;
1939                         } else {
1940                                 llapi_err(LLAPI_MSG_ERROR,
1941                                           "%s: IOC_LOV_GETINFO on %s failed",
1942                                           __func__, path);
1943                                 return ret;
1944                         }
1945                 }
1946
1947                 /* Check the time on osc. */
1948                 decision = find_time_check(st, param, 0);
1949                 if (decision == -1)
1950                         goto decided;
1951         }
1952
1953         if (param->size)
1954                 decision = find_value_cmp(st->st_size, param->size,
1955                                           param->size_sign, param->size_units,
1956                                           0);
1957
1958 print_path:
1959         if (decision != -1) {
1960                 llapi_printf(LLAPI_MSG_NORMAL, "%s", path);
1961                 if (param->zeroend)
1962                         llapi_printf(LLAPI_MSG_NORMAL, "%c", '\0');
1963                 else
1964                         llapi_printf(LLAPI_MSG_NORMAL, "\n");
1965         }
1966
1967 decided:
1968         /* Do not get down anymore? */
1969         if (param->depth == param->maxdepth)
1970                 return 1;
1971
1972         param->depth++;
1973         return 0;
1974 }
1975
1976 int llapi_find(char *path, struct find_param *param)
1977 {
1978         return param_callback(path, cb_find_init, cb_common_fini, param);
1979 }
1980
1981 /*
1982  * Get MDT number that the file/directory inode referenced
1983  * by the open fd resides on.
1984  * Return 0 and mdtidx on success, or -ve errno.
1985  */
1986 int llapi_file_fget_mdtidx(int fd, int *mdtidx)
1987 {
1988         if (ioctl(fd, LL_IOC_GET_MDTIDX, &mdtidx) < 0)
1989                 return -errno;
1990         return 0;
1991 }
1992
1993 static int cb_get_mdt_index(char *path, DIR *parent, DIR *d, void *data,
1994                             cfs_dirent_t *de)
1995 {
1996         struct find_param *param = (struct find_param *)data;
1997         int ret = 0;
1998         int mdtidx;
1999
2000         LASSERT(parent != NULL || d != NULL);
2001
2002         if (d) {
2003                 ret = llapi_file_fget_mdtidx(dirfd(d), &mdtidx);
2004         } else if (parent) {
2005                 int fd;
2006
2007                 fd = open(path, O_RDONLY);
2008                 if (fd > 0) {
2009                         ret = llapi_file_fget_mdtidx(fd, &mdtidx);
2010                         close(fd);
2011                 } else {
2012                         ret = fd;
2013                 }
2014         }
2015
2016         if (ret) {
2017                 if (errno == ENODATA) {
2018                         if (!param->obduuid)
2019                                 llapi_printf(LLAPI_MSG_NORMAL,
2020                                              "%s has no stripe info\n", path);
2021                         goto out;
2022                 } else if (errno == ENOTTY) {
2023                         llapi_err(LLAPI_MSG_ERROR,
2024                                   "%s: '%s' not on a Lustre fs?",
2025                                   __func__, path);
2026                 } else if (errno == ENOENT) {
2027                         llapi_err(LLAPI_MSG_WARN,
2028                                   "warning: %s: %s does not exist",
2029                                   __func__, path);
2030                         goto out;
2031                 } else {
2032                         llapi_err(LLAPI_MSG_ERROR,
2033                                   "error: %s: LL_IOC_GET_MDTIDX failed for %s",
2034                                    __func__, path);
2035                 }
2036                 return ret;
2037         }
2038
2039         if (param->quiet)
2040                 llapi_printf(LLAPI_MSG_NORMAL, "%d\n", mdtidx);
2041         else
2042                 llapi_printf(LLAPI_MSG_NORMAL, "%s MDT index: %d\n",
2043                              path, mdtidx);
2044
2045 out:
2046         /* Do not get down anymore? */
2047         if (param->depth == param->maxdepth)
2048                 return 1;
2049
2050         param->depth++;
2051         return 0;
2052 }
2053
2054 static int cb_getstripe(char *path, DIR *parent, DIR *d, void *data,
2055                         cfs_dirent_t *de)
2056 {
2057         struct find_param *param = (struct find_param *)data;
2058         int ret = 0;
2059
2060         LASSERT(parent != NULL || d != NULL);
2061
2062         if (param->obduuid) {
2063                 param->quiet = 1;
2064                 ret = setup_obd_uuid(d ? d : parent, path, param);
2065                 if (ret)
2066                         return ret;
2067         }
2068
2069         if (d) {
2070                 ret = ioctl(dirfd(d), LL_IOC_LOV_GETSTRIPE,
2071                             (void *)&param->lmd->lmd_lmm);
2072         } else if (parent) {
2073                 char *fname = strrchr(path, '/');
2074                 fname = (fname == NULL ? path : fname + 1);
2075
2076                 strncpy((char *)&param->lmd->lmd_lmm, fname, param->lumlen);
2077
2078                 ret = ioctl(dirfd(parent), IOC_MDC_GETFILESTRIPE,
2079                             (void *)&param->lmd->lmd_lmm);
2080         }
2081
2082         if (ret) {
2083                 if (errno == ENODATA) {
2084                         if (!param->obduuid)
2085                                 llapi_printf(LLAPI_MSG_NORMAL,
2086                                              "%s has no stripe info\n", path);
2087                         goto out;
2088                 } else if (errno == ENOTTY) {
2089                         llapi_err(LLAPI_MSG_ERROR,
2090                                   "%s: '%s' not on a Lustre fs?",
2091                                   __func__, path);
2092                 } else if (errno == ENOENT) {
2093                         llapi_err(LLAPI_MSG_WARN,
2094                                   "warning: %s: %s does not exist",
2095                                   __func__, path);
2096                         goto out;
2097                 } else {
2098                         llapi_err(LLAPI_MSG_ERROR,
2099                                   "error: %s: %s failed for %s",
2100                                    __func__, d ? "LL_IOC_LOV_GETSTRIPE" :
2101                                   "IOC_MDC_GETFILESTRIPE", path);
2102                 }
2103
2104                 return ret;
2105         }
2106
2107         if (!param->get_mdt_index)
2108                 llapi_lov_dump_user_lmm(param, path, d ? 1 : 0);
2109
2110 out:
2111         /* Do not get down anymore? */
2112         if (param->depth == param->maxdepth)
2113                 return 1;
2114
2115         param->depth++;
2116         return 0;
2117 }
2118
2119 int llapi_getstripe(char *path, struct find_param *param)
2120 {
2121         return param_callback(path, param->get_mdt_index ?
2122                               cb_get_mdt_index : cb_getstripe,
2123                               cb_common_fini, param);
2124 }
2125
2126 int llapi_obd_statfs(char *path, __u32 type, __u32 index,
2127                      struct obd_statfs *stat_buf,
2128                      struct obd_uuid *uuid_buf)
2129 {
2130         int fd;
2131         char raw[OBD_MAX_IOCTL_BUFFER] = {'\0'};
2132         char *rawbuf = raw;
2133         struct obd_ioctl_data data = { 0 };
2134         int rc = 0;
2135
2136         data.ioc_inlbuf1 = (char *)&type;
2137         data.ioc_inllen1 = sizeof(__u32);
2138         data.ioc_inlbuf2 = (char *)&index;
2139         data.ioc_inllen2 = sizeof(__u32);
2140         data.ioc_pbuf1 = (char *)stat_buf;
2141         data.ioc_plen1 = sizeof(struct obd_statfs);
2142         data.ioc_pbuf2 = (char *)uuid_buf;
2143         data.ioc_plen2 = sizeof(struct obd_uuid);
2144
2145         if ((rc = obd_ioctl_pack(&data, &rawbuf, sizeof(raw))) != 0) {
2146                 llapi_err(LLAPI_MSG_ERROR,
2147                           "llapi_obd_statfs: error packing ioctl data");
2148                 return rc;
2149         }
2150
2151         fd = open(path, O_RDONLY);
2152         if (errno == EISDIR)
2153                 fd = open(path, O_DIRECTORY | O_RDONLY);
2154
2155         if (fd < 0) {
2156                 rc = errno ? -errno : -EBADF;
2157                 llapi_err(LLAPI_MSG_ERROR, "error: %s: opening '%s'",
2158                           __func__, path);
2159                 return rc;
2160         }
2161         rc = ioctl(fd, IOC_OBD_STATFS, (void *)rawbuf);
2162         if (rc)
2163                 rc = errno ? -errno : -EINVAL;
2164
2165         close(fd);
2166         return rc;
2167 }
2168
2169 #define MAX_STRING_SIZE 128
2170 #define DEVICES_LIST "/proc/fs/lustre/devices"
2171
2172 int llapi_ping(char *obd_type, char *obd_name)
2173 {
2174         char path[MAX_STRING_SIZE];
2175         char buf[1];
2176         int rc, fd;
2177
2178         snprintf(path, MAX_STRING_SIZE, "/proc/fs/lustre/%s/%s/ping",
2179                  obd_type, obd_name);
2180
2181         fd = open(path, O_WRONLY);
2182         if (fd < 0) {
2183                 rc = errno;
2184                 llapi_err(LLAPI_MSG_ERROR, "error opening %s", path);
2185                 return rc;
2186         }
2187
2188         rc = write(fd, buf, 1);
2189         close(fd);
2190
2191         if (rc == 1)
2192                 return 0;
2193         return rc;
2194 }
2195
2196 int llapi_target_iterate(int type_num, char **obd_type,void *args,llapi_cb_t cb)
2197 {
2198         char buf[MAX_STRING_SIZE];
2199         FILE *fp = fopen(DEVICES_LIST, "r");
2200         int i, rc = 0;
2201
2202         if (fp == NULL) {
2203                 rc = errno;
2204                 llapi_err(LLAPI_MSG_ERROR, "error: opening "DEVICES_LIST);
2205                 return rc;
2206         }
2207
2208         while (fgets(buf, sizeof(buf), fp) != NULL) {
2209                 char *obd_type_name = NULL;
2210                 char *obd_name = NULL;
2211                 char *obd_uuid = NULL;
2212                 char *bufp = buf;
2213                 struct obd_ioctl_data datal = { 0, };
2214                 struct obd_statfs osfs_buffer;
2215
2216                 while(bufp[0] == ' ')
2217                         ++bufp;
2218
2219                 for(i = 0; i < 3; i++) {
2220                         obd_type_name = strsep(&bufp, " ");
2221                 }
2222                 obd_name = strsep(&bufp, " ");
2223                 obd_uuid = strsep(&bufp, " ");
2224
2225                 memset(&osfs_buffer, 0, sizeof (osfs_buffer));
2226
2227                 datal.ioc_pbuf1 = (char *)&osfs_buffer;
2228                 datal.ioc_plen1 = sizeof(osfs_buffer);
2229
2230                 for (i = 0; i < type_num; i++) {
2231                         if (strcmp(obd_type_name, obd_type[i]) != 0)
2232                                 continue;
2233
2234                         cb(obd_type_name, obd_name, obd_uuid, args);
2235                 }
2236         }
2237         fclose(fp);
2238         return rc;
2239 }
2240
2241 static void do_target_check(char *obd_type_name, char *obd_name,
2242                             char *obd_uuid, void *args)
2243 {
2244         int rc;
2245
2246         rc = llapi_ping(obd_type_name, obd_name);
2247         if (rc == ENOTCONN) {
2248                 llapi_printf(LLAPI_MSG_NORMAL, "%s inactive.\n", obd_name);
2249         } else if (rc) {
2250                 llapi_err(LLAPI_MSG_ERROR, "error: check '%s'", obd_name);
2251         } else {
2252                 llapi_printf(LLAPI_MSG_NORMAL, "%s active.\n", obd_name);
2253         }
2254 }
2255
2256 int llapi_target_check(int type_num, char **obd_type, char *dir)
2257 {
2258         return llapi_target_iterate(type_num, obd_type, NULL, do_target_check);
2259 }
2260
2261 #undef MAX_STRING_SIZE
2262
2263 int llapi_catinfo(char *dir, char *keyword, char *node_name)
2264 {
2265         char raw[OBD_MAX_IOCTL_BUFFER];
2266         char out[LLOG_CHUNK_SIZE];
2267         char *buf = raw;
2268         struct obd_ioctl_data data = { 0 };
2269         char key[30];
2270         DIR *root;
2271         int rc;
2272
2273         sprintf(key, "%s", keyword);
2274         memset(raw, 0, sizeof(raw));
2275         memset(out, 0, sizeof(out));
2276         data.ioc_inlbuf1 = key;
2277         data.ioc_inllen1 = strlen(key) + 1;
2278         if (node_name) {
2279                 data.ioc_inlbuf2 = node_name;
2280                 data.ioc_inllen2 = strlen(node_name) + 1;
2281         }
2282         data.ioc_pbuf1 = out;
2283         data.ioc_plen1 = sizeof(out);
2284         rc = obd_ioctl_pack(&data, &buf, sizeof(raw));
2285         if (rc)
2286                 return rc;
2287
2288         root = opendir(dir);
2289         if (root == NULL) {
2290                 rc = errno;
2291                 llapi_err(LLAPI_MSG_ERROR, "open %s failed", dir);
2292                 return rc;
2293         }
2294
2295         rc = ioctl(dirfd(root), OBD_IOC_LLOG_CATINFO, buf);
2296         if (rc)
2297                 llapi_err(LLAPI_MSG_ERROR, "ioctl OBD_IOC_CATINFO failed");
2298         else
2299                 llapi_printf(LLAPI_MSG_NORMAL, "%s", data.ioc_pbuf1);
2300
2301         closedir(root);
2302         return rc;
2303 }
2304
2305 /* Is this a lustre fs? */
2306 int llapi_is_lustre_mnttype(const char *type)
2307 {
2308         return (strcmp(type, "lustre") == 0 || strcmp(type,"lustre_lite") == 0);
2309 }
2310
2311 /* Is this a lustre client fs? */
2312 int llapi_is_lustre_mnt(struct mntent *mnt)
2313 {
2314         return (llapi_is_lustre_mnttype(mnt->mnt_type) &&
2315                 strstr(mnt->mnt_fsname, ":/") != NULL);
2316 }
2317
2318 int llapi_quotacheck(char *mnt, int check_type)
2319 {
2320         DIR *root;
2321         int rc;
2322
2323         root = opendir(mnt);
2324         if (!root) {
2325                 llapi_err(LLAPI_MSG_ERROR, "open %s failed", mnt);
2326                 return -1;
2327         }
2328
2329         rc = ioctl(dirfd(root), LL_IOC_QUOTACHECK, check_type);
2330
2331         closedir(root);
2332         return rc;
2333 }
2334
2335 int llapi_poll_quotacheck(char *mnt, struct if_quotacheck *qchk)
2336 {
2337         DIR *root;
2338         int poll_intvl = 2;
2339         int rc;
2340
2341         root = opendir(mnt);
2342         if (!root) {
2343                 llapi_err(LLAPI_MSG_ERROR, "open %s failed", mnt);
2344                 return -1;
2345         }
2346
2347         while (1) {
2348                 rc = ioctl(dirfd(root), LL_IOC_POLL_QUOTACHECK, qchk);
2349                 if (!rc)
2350                         break;
2351                 sleep(poll_intvl);
2352                 if (poll_intvl < 30)
2353                         poll_intvl *= 2;
2354         }
2355
2356         closedir(root);
2357         return rc;
2358 }
2359
2360 int llapi_quotactl(char *mnt, struct if_quotactl *qctl)
2361 {
2362         DIR *root;
2363         int rc;
2364
2365         root = opendir(mnt);
2366         if (!root) {
2367                 llapi_err(LLAPI_MSG_ERROR, "open %s failed", mnt);
2368                 return -1;
2369         }
2370
2371         rc = ioctl(dirfd(root), LL_IOC_QUOTACTL, qctl);
2372
2373         closedir(root);
2374         return rc;
2375 }
2376
2377 static int cb_quotachown(char *path, DIR *parent, DIR *d, void *data,
2378                          cfs_dirent_t *de)
2379 {
2380         struct find_param *param = (struct find_param *)data;
2381         lstat_t *st;
2382         int rc;
2383
2384         LASSERT(parent != NULL || d != NULL);
2385
2386         if (d) {
2387                 rc = ioctl(dirfd(d), LL_IOC_MDC_GETINFO,
2388                            (void *)param->lmd);
2389         } else if (parent) {
2390                 char *fname = strrchr(path, '/');
2391                 fname = (fname == NULL ? path : fname + 1);
2392
2393                 strncpy((char *)param->lmd, fname, param->lumlen);
2394                 rc = ioctl(dirfd(parent), IOC_MDC_GETFILEINFO,
2395                            (void *)param->lmd);
2396         } else {
2397                 return 0;
2398         }
2399
2400         if (rc) {
2401                 if (errno == ENODATA) {
2402                         if (!param->obduuid && !param->quiet)
2403                                 llapi_err(LLAPI_MSG_ERROR,
2404                                           "%s has no stripe info", path);
2405                         rc = 0;
2406                 } else if (errno == ENOENT) {
2407                         llapi_err(LLAPI_MSG_ERROR,
2408                                   "warning: %s: %s does not exist",
2409                                   __func__, path);
2410                         rc = 0;
2411                 } else if (errno != EISDIR) {
2412                         rc = errno;
2413                         llapi_err(LLAPI_MSG_ERROR, "%s ioctl failed for %s.",
2414                                   d ? "LL_IOC_MDC_GETINFO" :
2415                                   "IOC_MDC_GETFILEINFO", path);
2416                 }
2417                 return rc;
2418         }
2419
2420         st = &param->lmd->lmd_st;
2421
2422         /* libc chown() will do extra check, and if the real owner is
2423          * the same as the ones to set, it won't fall into kernel, so
2424          * invoke syscall directly. */
2425         rc = syscall(SYS_chown, path, -1, -1);
2426         if (rc)
2427                 llapi_err(LLAPI_MSG_ERROR,"error: chown %s (%u,%u)", path);
2428
2429         rc = chmod(path, st->st_mode);
2430         if (rc)
2431                 llapi_err(LLAPI_MSG_ERROR, "error: chmod %s (%hu)",
2432                           path, st->st_mode);
2433
2434         return rc;
2435 }
2436
2437 int llapi_quotachown(char *path, int flag)
2438 {
2439         struct find_param param;
2440
2441         memset(&param, 0, sizeof(param));
2442         param.recursive = 1;
2443         param.verbose = 0;
2444         param.quiet = 1;
2445
2446         return param_callback(path, cb_quotachown, NULL, &param);
2447 }
2448
2449 #include <pwd.h>
2450 #include <grp.h>
2451 #include <mntent.h>
2452 #include <sys/wait.h>
2453 #include <errno.h>
2454 #include <ctype.h>
2455
2456 static int rmtacl_notify(int ops)
2457 {
2458         FILE *fp;
2459         struct mntent *mnt;
2460         int found = 0, fd, rc;
2461
2462         fp = setmntent(MOUNTED, "r");
2463         if (fp == NULL) {
2464                 perror("setmntent");
2465                 return -1;
2466         }
2467
2468         while (1) {
2469                 mnt = getmntent(fp);
2470                 if (!mnt)
2471                         break;
2472
2473                 if (!llapi_is_lustre_mnt(mnt))
2474                         continue;
2475
2476                 fd = open(mnt->mnt_dir, O_RDONLY | O_DIRECTORY);
2477                 if (fd < 0) {
2478                         perror("open");
2479                         return -1;
2480                 }
2481
2482                 rc = ioctl(fd, LL_IOC_RMTACL, ops);
2483                 if (rc < 0) {
2484                         perror("ioctl");
2485                 return -1;
2486                 }
2487
2488                 found++;
2489         }
2490         endmntent(fp);
2491         return found;
2492 }
2493
2494 static char *next_token(char *p, int div)
2495 {
2496         if (p == NULL)
2497                 return NULL;
2498
2499         if (div)
2500                 while (*p && *p != ':' && !isspace(*p))
2501                         p++;
2502         else
2503                 while (*p == ':' || isspace(*p))
2504                         p++;
2505
2506         return *p ? p : NULL;
2507 }
2508
2509 static int rmtacl_name2id(char *name, int is_user)
2510 {
2511         if (is_user) {
2512                 struct passwd *pw;
2513
2514                 if ((pw = getpwnam(name)) == NULL)
2515                         return INVALID_ID;
2516                 else
2517                         return (int)(pw->pw_uid);
2518         } else {
2519                 struct group *gr;
2520
2521                 if ((gr = getgrnam(name)) == NULL)
2522                         return INVALID_ID;
2523                 else
2524                         return (int)(gr->gr_gid);
2525         }
2526 }
2527
2528 static int isodigit(int c)
2529 {
2530         return (c >= '0' && c <= '7') ? 1 : 0;
2531 }
2532
2533 /*
2534  * Whether the name is just digits string (uid/gid) already or not.
2535  * Return value:
2536  * 1: str is id
2537  * 0: str is not id
2538  */
2539 static int str_is_id(char *str)
2540 {
2541         if (str == NULL)
2542                 return 0;
2543
2544         if (*str == '0') {
2545                 str++;
2546                 if (*str == 'x' || *str == 'X') { /* for Hex. */
2547                         if (!isxdigit(*(++str)))
2548                                 return 0;
2549
2550                         while (isxdigit(*(++str)));
2551                 } else if (isodigit(*str)) { /* for Oct. */
2552                         while (isodigit(*(++str)));
2553                 }
2554         } else if (isdigit(*str)) { /* for Dec. */
2555                 while (isdigit(*(++str)));
2556         }
2557
2558         return (*str == 0) ? 1 : 0;
2559 }
2560
2561 typedef struct {
2562         char *name;
2563         int   length;
2564         int   is_user;
2565         int   next_token;
2566 } rmtacl_name_t;
2567
2568 #define RMTACL_OPTNAME(name) name, sizeof(name) - 1
2569
2570 static rmtacl_name_t rmtacl_namelist[] = {
2571         { RMTACL_OPTNAME("user:"),            1,      0 },
2572         { RMTACL_OPTNAME("group:"),           0,      0 },
2573         { RMTACL_OPTNAME("default:user:"),    1,      0 },
2574         { RMTACL_OPTNAME("default:group:"),   0,      0 },
2575         /* for --tabular option */
2576         { RMTACL_OPTNAME("user"),             1,      1 },
2577         { RMTACL_OPTNAME("group"),            0,      1 },
2578         { 0 }
2579 };
2580
2581 static int rgetfacl_output(char *str)
2582 {
2583         char *start = NULL, *end = NULL;
2584         int is_user = 0, n, id;
2585         char c;
2586         rmtacl_name_t *rn;
2587
2588         if (str == NULL)
2589                 return -1;
2590
2591         for (rn = rmtacl_namelist; rn->name; rn++) {
2592                 if(strncmp(str, rn->name, rn->length) == 0) {
2593                         if (!rn->next_token)
2594                                 start = str + rn->length;
2595                         else
2596                                 start = next_token(str + rn->length, 0);
2597                         is_user = rn->is_user;
2598                         break;
2599                 }
2600         }
2601
2602         end = next_token(start, 1);
2603         if (end == NULL || start == end) {
2604                 n = printf("%s", str);
2605                 return n;
2606         }
2607
2608         c = *end;
2609         *end = 0;
2610         id = rmtacl_name2id(start, is_user);
2611         if (id == INVALID_ID) {
2612                 if (str_is_id(start)) {
2613                         *end = c;
2614                         n = printf("%s", str);
2615                 } else
2616                         return -1;
2617         } else if ((id == NOBODY_UID && is_user) ||
2618                    (id == NOBODY_GID && !is_user)) {
2619                 *end = c;
2620                 n = printf("%s", str);
2621         } else {
2622                 *end = c;
2623                 *start = 0;
2624                 n = printf("%s%d%s", str, id, end);
2625         }
2626         return n;
2627 }
2628
2629 static int child_status(int status)
2630 {
2631         return WIFEXITED(status) ? WEXITSTATUS(status) : -1;
2632 }
2633
2634 static int do_rmtacl(int argc, char *argv[], int ops, int (output_func)(char *))
2635 {
2636         pid_t pid = 0;
2637         int fd[2], status;
2638         FILE *fp;
2639         char buf[PIPE_BUF];
2640
2641         if (output_func) {
2642                 if (pipe(fd) < 0) {
2643                         perror("pipe");
2644                         return -1;
2645                 }
2646
2647                 if ((pid = fork()) < 0) {
2648                         perror("fork");
2649                         close(fd[0]);
2650                         close(fd[1]);
2651                         return -1;
2652                 } else if (!pid) {
2653                         /* child process redirects its output. */
2654                         close(fd[0]);
2655                         close(1);
2656                         if (dup2(fd[1], 1) < 0) {
2657                                 perror("dup2");
2658                                 close(fd[1]);
2659                                 return -1;
2660                         }
2661                 } else {
2662                         close(fd[1]);
2663                 }
2664         }
2665
2666         if (!pid) {
2667                 status = rmtacl_notify(ops);
2668                 if (status < 0)
2669                         return -1;
2670
2671                 exit(execvp(argv[0], argv));
2672         }
2673
2674         /* the following is parent process */
2675         if ((fp = fdopen(fd[0], "r")) == NULL) {
2676                 perror("fdopen");
2677                 kill(pid, SIGKILL);
2678                 close(fd[0]);
2679                 return -1;
2680         }
2681
2682         while (fgets(buf, PIPE_BUF, fp) != NULL) {
2683                 if (output_func(buf) < 0)
2684                         fprintf(stderr, "WARNING: unexpected error!\n[%s]\n",
2685                                 buf);
2686         }
2687         fclose(fp);
2688         close(fd[0]);
2689
2690         if (waitpid(pid, &status, 0) < 0) {
2691                 perror("waitpid");
2692                 return -1;
2693         }
2694
2695         return child_status(status);
2696 }
2697
2698 int llapi_lsetfacl(int argc, char *argv[])
2699 {
2700         return do_rmtacl(argc, argv, RMT_LSETFACL, NULL);
2701 }
2702
2703 int llapi_lgetfacl(int argc, char *argv[])
2704 {
2705         return do_rmtacl(argc, argv, RMT_LGETFACL, NULL);
2706 }
2707
2708 int llapi_rsetfacl(int argc, char *argv[])
2709 {
2710         return do_rmtacl(argc, argv, RMT_RSETFACL, NULL);
2711 }
2712
2713 int llapi_rgetfacl(int argc, char *argv[])
2714 {
2715         return do_rmtacl(argc, argv, RMT_RGETFACL, rgetfacl_output);
2716 }
2717
2718 int llapi_cp(int argc, char *argv[])
2719 {
2720         int rc;
2721
2722         rc = rmtacl_notify(RMT_RSETFACL);
2723         if (rc < 0)
2724                 return -1;
2725
2726         exit(execvp(argv[0], argv));
2727 }
2728
2729 int llapi_ls(int argc, char *argv[])
2730 {
2731         int rc;
2732
2733         rc = rmtacl_notify(RMT_LGETFACL);
2734         if (rc < 0)
2735                 return -1;
2736
2737         exit(execvp(argv[0], argv));
2738 }
2739
2740 /* Print mdtname 'name' into 'buf' using 'format'.  Add -MDT0000 if needed.
2741  * format must have %s%s, buf must be > 16
2742  * Eg: if name = "lustre-MDT0000", "lustre", or "lustre-MDT0000_UUID"
2743  *     then buf = "lustre-MDT0000"
2744  */
2745 static int get_mdtname(char *name, char *format, char *buf)
2746 {
2747         char suffix[]="-MDT0000";
2748         int len = strlen(name);
2749
2750         if ((len > 5) && (strncmp(name + len - 5, "_UUID", 5) == 0)) {
2751                 name[len - 5] = '\0';
2752                 len -= 5;
2753         }
2754
2755         if (len > 8) {
2756                 if ((len <= 16) && strncmp(name + len - 8, "-MDT", 4) == 0) {
2757                         suffix[0] = '\0';
2758                 } else {
2759                         /* Not enough room to add suffix */
2760                         llapi_err(LLAPI_MSG_ERROR | LLAPI_MSG_NO_ERRNO,
2761                                   "MDT name too long |%s|", name);
2762                         return -EINVAL;
2763                 }
2764         }
2765
2766         return sprintf(buf, format, name, suffix);
2767 }
2768
2769 /** ioctl on filsystem root, with mdtindex sent as data
2770  * \param mdtname path, fsname, or mdtname (lutre-MDT0004)
2771  * \param mdtidxp pointer to integer within data to be filled in with the
2772  *    mdt index (0 if no mdt is specified).  NULL won't be filled.
2773  */
2774 static int root_ioctl(const char *mdtname, int opc, void *data, int *mdtidxp,
2775                       int want_error)
2776 {
2777         char fsname[20];
2778         char *ptr;
2779         int fd, index, rc;
2780
2781         /* Take path, fsname, or MDTname.  Assume MDT0000 in the former cases.
2782          Open root and parse mdt index. */
2783         if (mdtname[0] == '/') {
2784                 index = 0;
2785                 rc = get_root_path(WANT_FD | want_error, NULL, &fd,
2786                                    (char *)mdtname, -1);
2787         } else {
2788                 if (get_mdtname((char *)mdtname, "%s%s", fsname) < 0)
2789                         return -EINVAL;
2790                 ptr = fsname + strlen(fsname) - 8;
2791                 *ptr = '\0';
2792                 index = strtol(ptr + 4, NULL, 10);
2793                 rc = get_root_path(WANT_FD | want_error, fsname, &fd, NULL, -1);
2794         }
2795         if (rc < 0) {
2796                 if (want_error)
2797                         llapi_err(LLAPI_MSG_ERROR | LLAPI_MSG_NO_ERRNO,
2798                                   "Can't open %s: %d\n", mdtname, rc);
2799                 return rc;
2800         }
2801
2802         if (mdtidxp)
2803                 *mdtidxp = index;
2804
2805         rc = ioctl(fd, opc, data);
2806         if (rc && want_error)
2807                 llapi_err(LLAPI_MSG_ERROR, "ioctl %d err %d", opc, rc);
2808
2809         close(fd);
2810         return rc;
2811 }
2812
2813 /****** Changelog API ********/
2814
2815 static int changelog_ioctl(const char *mdtname, int opc, int id,
2816                            long long recno, int flags)
2817 {
2818         struct ioc_changelog data;
2819         int *idx;
2820
2821         data.icc_id = id;
2822         data.icc_recno = recno;
2823         data.icc_flags = flags;
2824         idx = (int *)(&data.icc_mdtindex);
2825
2826         return root_ioctl(mdtname, opc, &data, idx, WANT_ERROR);
2827 }
2828
2829 #define CHANGELOG_PRIV_MAGIC 0xCA8E1080
2830 struct changelog_private {
2831         int magic;
2832         int flags;
2833         lustre_kernelcomm kuc;
2834         char *buf;
2835 };
2836
2837 /** Start reading from a changelog
2838  * @param priv Opaque private control structure
2839  * @param flags Start flags (e.g. CHANGELOG_FLAG_BLOCK)
2840  * @param device Report changes recorded on this MDT
2841  * @param startrec Report changes beginning with this record number
2842  * (just call llapi_changelog_fini when done; don't need an endrec)
2843  */
2844 int llapi_changelog_start(void **priv, int flags, const char *device,
2845                           long long startrec)
2846 {
2847         struct changelog_private *cp;
2848         int rc;
2849
2850         /* Set up the receiver control struct */
2851         cp = malloc(sizeof(*cp));
2852         if (cp == NULL)
2853                 return -ENOMEM;
2854
2855         cp->buf = malloc(CR_MAXSIZE);
2856         if (cp->buf == NULL) {
2857                 rc = -ENOMEM;
2858                 goto out_free;
2859         }
2860
2861         cp->magic = CHANGELOG_PRIV_MAGIC;
2862         cp->flags = flags;
2863
2864         /* Set up the receiver */
2865         rc = libcfs_ukuc_start(&cp->kuc, 0 /* no group registration */);
2866         if (rc < 0)
2867                 goto out_free;
2868
2869         *priv = cp;
2870
2871         /* Tell the kernel to start sending */
2872         rc = changelog_ioctl(device, OBD_IOC_CHANGELOG_SEND, cp->kuc.lk_wfd,
2873                              startrec, flags);
2874         /* Only the kernel reference keeps the write side open */
2875         close(cp->kuc.lk_wfd);
2876         cp->kuc.lk_wfd = 0;
2877         if (rc < 0) {
2878                 /* frees and clears priv */
2879                 llapi_changelog_fini(priv);
2880                 return rc;
2881         }
2882
2883         return 0;
2884
2885 out_free:
2886         if (cp->buf)
2887                 free(cp->buf);
2888         free(cp);
2889         return rc;
2890 }
2891
2892 /** Finish reading from a changelog */
2893 int llapi_changelog_fini(void **priv)
2894 {
2895         struct changelog_private *cp = (struct changelog_private *)*priv;
2896
2897         if (!cp || (cp->magic != CHANGELOG_PRIV_MAGIC))
2898                 return -EINVAL;
2899
2900         libcfs_ukuc_stop(&cp->kuc);
2901         free(cp->buf);
2902         free(cp);
2903         *priv = NULL;
2904         return 0;
2905 }
2906
2907 /** Read the next changelog entry
2908  * @param priv Opaque private control structure
2909  * @param rech Changelog record handle; record will be allocated here
2910  * @return 0 valid message received; rec is set
2911  *         <0 error code
2912  *         1 EOF
2913  */
2914 int llapi_changelog_recv(void *priv, struct changelog_rec **rech)
2915 {
2916         struct changelog_private *cp = (struct changelog_private *)priv;
2917         struct kuc_hdr *kuch;
2918         int rc = 0;
2919
2920         if (!cp || (cp->magic != CHANGELOG_PRIV_MAGIC))
2921                 return -EINVAL;
2922         if (rech == NULL)
2923                 return -EINVAL;
2924
2925 repeat:
2926         rc = libcfs_ukuc_msg_get(&cp->kuc, cp->buf, CR_MAXSIZE,
2927                                  KUC_TRANSPORT_CHANGELOG);
2928         if (rc < 0)
2929                 return rc;
2930
2931         kuch = (struct kuc_hdr *)cp->buf;
2932         if ((kuch->kuc_transport != KUC_TRANSPORT_CHANGELOG) ||
2933             ((kuch->kuc_msgtype != CL_RECORD) &&
2934              (kuch->kuc_msgtype != CL_EOF))) {
2935                 llapi_err(LLAPI_MSG_ERROR | LLAPI_MSG_NO_ERRNO,
2936                           "Unknown changelog message type %d:%d\n",
2937                           kuch->kuc_transport, kuch->kuc_msgtype);
2938                 rc = -EPROTO;
2939                 goto out_free;
2940         }
2941
2942         if (kuch->kuc_msgtype == CL_EOF) {
2943                 if (cp->flags & CHANGELOG_FLAG_FOLLOW) {
2944                         /* Ignore EOFs */
2945                         goto repeat;
2946                 } else {
2947                         rc = 1;
2948                         goto out_free;
2949                 }
2950         }
2951
2952         /* Our message is a changelog_rec */
2953         *rech = (struct changelog_rec *)(kuch + 1);
2954
2955         return 0;
2956
2957 out_free:
2958         *rech = NULL;
2959         return rc;
2960 }
2961
2962 /** Release the changelog record when done with it. */
2963 int llapi_changelog_free(struct changelog_rec **rech)
2964 {
2965         *rech = NULL;
2966         return 0;
2967 }
2968
2969 int llapi_changelog_clear(const char *mdtname, const char *idstr,
2970                           long long endrec)
2971 {
2972         int id;
2973
2974         if (endrec < 0) {
2975                 llapi_err(LLAPI_MSG_ERROR | LLAPI_MSG_NO_ERRNO,
2976                           "can't purge negative records\n");
2977                 return -EINVAL;
2978         }
2979
2980         id = strtol(idstr + strlen(CHANGELOG_USER_PREFIX), NULL, 10);
2981         if ((id == 0) || (strncmp(idstr, CHANGELOG_USER_PREFIX,
2982                                   strlen(CHANGELOG_USER_PREFIX)) != 0)) {
2983                 llapi_err(LLAPI_MSG_ERROR | LLAPI_MSG_NO_ERRNO,
2984                           "expecting id of the form '"CHANGELOG_USER_PREFIX
2985                           "<num>'; got '%s'\n", idstr);
2986                 return -EINVAL;
2987         }
2988
2989         return changelog_ioctl(mdtname, OBD_IOC_CHANGELOG_CLEAR, id, endrec, 0);
2990 }
2991
2992 int llapi_fid2path(const char *device, const char *fidstr, char *buf,
2993                    int buflen, long long *recno, int *linkno)
2994 {
2995         char path[PATH_MAX];
2996         struct lu_fid fid;
2997         struct getinfo_fid2path *gf;
2998         int fd, rc;
2999
3000         while (*fidstr == '[')
3001                 fidstr++;
3002
3003         sscanf(fidstr, SFID, RFID(&fid));
3004         if (!fid_is_sane(&fid)) {
3005                 llapi_err(LLAPI_MSG_ERROR | LLAPI_MSG_NO_ERRNO,
3006                           "bad FID format [%s], should be "DFID"\n",
3007                           fidstr, (__u64)1, 2, 0);
3008                 return -EINVAL;
3009         }
3010
3011         /* Take path or fsname */
3012         if (device[0] == '/') {
3013                 strcpy(path, device);
3014         } else {
3015                 rc = get_root_path(WANT_PATH | WANT_ERROR, (char *)device,
3016                                    NULL, path, -1);
3017                 if (rc < 0)
3018                         return rc;
3019         }
3020         sprintf(path, "%s/%s/fid/%s", path, dot_lustre_name, fidstr);
3021         fd = open(path, O_RDONLY | O_NONBLOCK);
3022         if (fd < 0)
3023                 return -errno;
3024
3025         gf = malloc(sizeof(*gf) + buflen);
3026         gf->gf_fid = fid;
3027         gf->gf_recno = *recno;
3028         gf->gf_linkno = *linkno;
3029         gf->gf_pathlen = buflen;
3030         rc = ioctl(fd, OBD_IOC_FID2PATH, gf);
3031         if (rc) {
3032                 llapi_err(LLAPI_MSG_ERROR, "ioctl err %d", rc);
3033         } else {
3034                 memcpy(buf, gf->gf_path, gf->gf_pathlen);
3035                 *recno = gf->gf_recno;
3036                 *linkno = gf->gf_linkno;
3037         }
3038
3039         free(gf);
3040         close(fd);
3041         return rc;
3042 }
3043
3044 static int path2fid_from_lma(const char *path, lustre_fid *fid)
3045 {
3046         char buf[512];
3047         struct lustre_mdt_attrs *lma;
3048         int rc;
3049
3050         rc = lgetxattr(path, XATTR_NAME_LMA, buf, sizeof(buf));
3051         if (rc < 0)
3052                 return -errno;
3053         lma = (struct lustre_mdt_attrs *)buf;
3054         fid_le_to_cpu(fid, &lma->lma_self_fid);
3055         return 0;
3056 }
3057
3058 int llapi_path2fid(const char *path, lustre_fid *fid)
3059 {
3060         int fd, rc;
3061
3062         memset(fid, 0, sizeof(*fid));
3063         fd = open(path, O_RDONLY | O_NONBLOCK | O_NOFOLLOW);
3064         if (fd < 0) {
3065                 if (errno == ELOOP) /* symbolic link */
3066                         return path2fid_from_lma(path, fid);
3067                 return -errno;
3068         }
3069
3070         rc = ioctl(fd, LL_IOC_PATH2FID, fid) < 0 ? -errno : 0;
3071         if (rc == -EINVAL) /* char special device */
3072                 rc = path2fid_from_lma(path, fid);
3073
3074         close(fd);
3075         return rc;
3076 }
3077
3078 /****** HSM Copytool API ********/
3079 #define CT_PRIV_MAGIC 0xC0BE2001
3080 struct copytool_private {
3081         int magic;
3082         char *buf;
3083         char *fsname;
3084         lustre_kernelcomm kuc;
3085         __u32 archives;
3086 };
3087
3088 #include <libcfs/libcfs.h>
3089
3090 /** Register a copytool
3091  * @param[out] priv Opaque private control structure
3092  * @param fsname Lustre filesystem
3093  * @param flags Open flags, currently unused (e.g. O_NONBLOCK)
3094  * @param archive_count
3095  * @param archives Which archive numbers this copytool is responsible for
3096  */
3097 int llapi_copytool_start(void **priv, char *fsname, int flags,
3098                          int archive_count, int *archives)
3099 {
3100         struct copytool_private *ct;
3101         int rc;
3102
3103         if (archive_count > 0 && archives == NULL) {
3104                 llapi_err(LLAPI_MSG_ERROR | LLAPI_MSG_NO_ERRNO,
3105                           "NULL archive numbers");
3106                 return -EINVAL;
3107         }
3108
3109         ct = malloc(sizeof(*ct));
3110         if (ct == NULL)
3111                 return -ENOMEM;
3112
3113         ct->buf = malloc(HAL_MAXSIZE);
3114         ct->fsname = malloc(strlen(fsname) + 1);
3115         if (ct->buf == NULL || ct->fsname == NULL) {
3116                 rc = -ENOMEM;
3117                 goto out_err;
3118         }
3119         strcpy(ct->fsname, fsname);
3120         ct->magic = CT_PRIV_MAGIC;
3121         ct->archives = 0;
3122         for (rc = 0; rc < archive_count; rc++) {
3123                 if (archives[rc] > sizeof(ct->archives)) {
3124                         llapi_err(LLAPI_MSG_ERROR | LLAPI_MSG_NO_ERRNO,
3125                                   "Maximum of %d archives supported",
3126                                   sizeof(ct->archives));
3127                         goto out_err;
3128                 }
3129                 ct->archives |= 1 << archives[rc];
3130         }
3131         /* special case: if no archives specified, default to archive #0. */
3132         if (ct->archives == 0)
3133                 ct->archives = 1;
3134
3135         rc = libcfs_ukuc_start(&ct->kuc, KUC_GRP_HSM);
3136         if (rc < 0)
3137                 goto out_err;
3138
3139         /* Storing archive(s) in lk_data; see mdc_ioc_hsm_ct_start */
3140         ct->kuc.lk_data = ct->archives;
3141         rc = root_ioctl(ct->fsname, LL_IOC_HSM_CT_START, &(ct->kuc), NULL,
3142                         WANT_ERROR);
3143         /* Only the kernel reference keeps the write side open */
3144         close(ct->kuc.lk_wfd);
3145         ct->kuc.lk_wfd = 0;
3146         if (rc < 0)
3147                 goto out_err;
3148
3149         *priv = ct;
3150         return 0;
3151
3152 out_err:
3153         if (ct->buf)
3154                 free(ct->buf);
3155         if (ct->fsname)
3156                 free(ct->fsname);
3157         free(ct);
3158         return rc;
3159 }
3160
3161 /** Deregister a copytool */
3162 int llapi_copytool_fini(void **priv)
3163 {
3164         struct copytool_private *ct = (struct copytool_private *)*priv;
3165
3166         if (!ct || (ct->magic != CT_PRIV_MAGIC))
3167                 return -EINVAL;
3168
3169         /* Tell the kernel to stop sending us messages */
3170         ct->kuc.lk_flags = LK_FLG_STOP;
3171         root_ioctl(ct->fsname, LL_IOC_HSM_CT_START, &(ct->kuc), NULL, 0);
3172
3173         /* Shut down the kernelcomms */
3174         libcfs_ukuc_stop(&ct->kuc);
3175
3176         free(ct->buf);
3177         free(ct->fsname);
3178         free(ct);
3179         *priv = NULL;
3180         return 0;
3181 }
3182
3183 /** Wait for the next hsm_action_list
3184  * @param priv Opaque private control structure
3185  * @param halh Action list handle, will be allocated here
3186  * @param msgsize Number of bytes in the message, will be set here
3187  * @return 0 valid message received; halh and msgsize are set
3188  *         <0 error code
3189  */
3190 int llapi_copytool_recv(void *priv, struct hsm_action_list **halh, int *msgsize)
3191 {
3192         struct copytool_private *ct = (struct copytool_private *)priv;
3193         struct kuc_hdr *kuch;
3194         struct hsm_action_list *hal;
3195         int rc = 0;
3196
3197         if (!ct || (ct->magic != CT_PRIV_MAGIC))
3198                 return -EINVAL;
3199         if (halh == NULL || msgsize == NULL)
3200                 return -EINVAL;
3201
3202         rc = libcfs_ukuc_msg_get(&ct->kuc, ct->buf, HAL_MAXSIZE,
3203                                  KUC_TRANSPORT_HSM);
3204         if (rc < 0)
3205                 return rc;
3206
3207         /* Handle generic messages */
3208         kuch = (struct kuc_hdr *)ct->buf;
3209         if (kuch->kuc_transport == KUC_TRANSPORT_GENERIC &&
3210             kuch->kuc_msgtype == KUC_MSG_SHUTDOWN) {
3211                 rc = -ESHUTDOWN;
3212                 goto out_free;
3213         }
3214
3215         if (kuch->kuc_transport != KUC_TRANSPORT_HSM ||
3216             kuch->kuc_msgtype != HMT_ACTION_LIST) {
3217                 llapi_err(LLAPI_MSG_ERROR | LLAPI_MSG_NO_ERRNO,
3218                           "Unknown HSM message type %d:%d\n",
3219                           kuch->kuc_transport, kuch->kuc_msgtype);
3220                 rc = -EPROTO;
3221                 goto out_free;
3222         }
3223
3224         /* Our message is an hsm_action_list */
3225
3226         hal = (struct hsm_action_list *)(kuch + 1);
3227
3228         /* Check that we have registered for this archive # */
3229         if (((1 << hal->hal_archive_num) & ct->archives) == 0) {
3230                     llapi_err(LLAPI_MSG_INFO | LLAPI_MSG_NO_ERRNO,
3231                           "Ignoring request for archive #%d (bitmask %#x)\n",
3232                           hal->hal_archive_num, ct->archives);
3233                 rc = 0;
3234                 goto out_free;
3235         }
3236
3237         *halh = hal;
3238         *msgsize = kuch->kuc_msglen - sizeof(*kuch);
3239         return 0;
3240
3241 out_free:
3242         *halh = NULL;
3243         *msgsize = 0;
3244         return rc;
3245 }
3246
3247 /** Release the action list when done with it. */
3248 int llapi_copytool_free(struct hsm_action_list **hal)
3249 {
3250         *hal = NULL;
3251         return 0;
3252 }
3253
3254 int llapi_get_connect_flags(const char *mnt, __u64 *flags)
3255 {
3256         DIR *root;
3257         int rc;
3258
3259         root = opendir(mnt);
3260         if (!root) {
3261                 llapi_err(LLAPI_MSG_ERROR, "open %s failed", mnt);
3262                 return -1;
3263         }
3264
3265         rc = ioctl(dirfd(root), LL_IOC_GET_CONNECT_FLAGS, flags);
3266         closedir(root);
3267         if (rc < 0)
3268                 llapi_err(LLAPI_MSG_ERROR,
3269                           "ioctl on %s for getting connect flags failed", mnt);
3270         return rc;
3271 }