Whamcloud - gitweb
b433549bcf6fb9356c5218e1760ad149006ac8ae
[fs/lustre-release.git] / lustre / utils / liblustreapi.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2016, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lustre/utils/liblustreapi.c
33  *
34  * Author: Peter J. Braam <braam@clusterfs.com>
35  * Author: Phil Schwan <phil@clusterfs.com>
36  * Author: Robert Read <rread@clusterfs.com>
37  */
38
39 /* for O_DIRECTORY */
40 #ifndef _GNU_SOURCE
41 #define _GNU_SOURCE
42 #endif
43
44 #include <ctype.h>
45 #include <mntent.h>
46 #include <stdlib.h>
47 #include <stdio.h>
48 #include <string.h>
49 #include <stddef.h>
50 #include <sys/ioctl.h>
51 #include <unistd.h>
52 #include <fcntl.h>
53 #include <errno.h>
54 #include <dirent.h>
55 #include <stdarg.h>
56 #include <sys/stat.h>
57 #include <sys/statfs.h>
58 #include <sys/syscall.h>
59 #include <sys/time.h>
60 #include <sys/types.h>
61 #include <sys/xattr.h>
62 #include <time.h>
63 #include <fnmatch.h>
64 #include <libgen.h> /* for dirname() */
65 #ifdef HAVE_LINUX_UNISTD_H
66 #include <linux/unistd.h>
67 #else
68 #include <unistd.h>
69 #endif
70 #include <poll.h>
71
72 #include <libcfs/util/ioctl.h>
73 #include <libcfs/util/param.h>
74 #include <libcfs/util/string.h>
75 #include <linux/lnet/lnetctl.h>
76 #include <lustre/lustreapi.h>
77 #include <linux/lustre/lustre_ostid.h>
78 #include <linux/lustre/lustre_ioctl.h>
79 #include "lustreapi_internal.h"
80
81 static int llapi_msg_level = LLAPI_MSG_MAX;
82
83 char *mdt_hash_name[] = { "none",
84                           LMV_HASH_NAME_ALL_CHARS,
85                           LMV_HASH_NAME_FNV_1A_64 };
86
87 void llapi_msg_set_level(int level)
88 {
89         /* ensure level is in the good range */
90         if (level < LLAPI_MSG_OFF)
91                 llapi_msg_level = LLAPI_MSG_OFF;
92         else if (level > LLAPI_MSG_MAX)
93                 llapi_msg_level = LLAPI_MSG_MAX;
94         else
95                 llapi_msg_level = level;
96 }
97
98 int llapi_msg_get_level(void)
99 {
100         return llapi_msg_level;
101 }
102
103 static void error_callback_default(enum llapi_message_level level, int err,
104                                    const char *fmt, va_list ap)
105 {
106         vfprintf(stderr, fmt, ap);
107         if (level & LLAPI_MSG_NO_ERRNO)
108                 fprintf(stderr, "\n");
109         else
110                 fprintf(stderr, ": %s (%d)\n", strerror(err), err);
111 }
112
113 static void info_callback_default(enum llapi_message_level level, int err,
114                                   const char *fmt, va_list ap)
115 {
116         vfprintf(stdout, fmt, ap);
117 }
118
119 static llapi_log_callback_t llapi_error_callback = error_callback_default;
120 static llapi_log_callback_t llapi_info_callback = info_callback_default;
121
122
123 /* llapi_error will preserve errno */
124 void llapi_error(enum llapi_message_level level, int err, const char *fmt, ...)
125 {
126         va_list  args;
127         int      tmp_errno = errno;
128
129         if ((level & LLAPI_MSG_MASK) > llapi_msg_level)
130                 return;
131
132         va_start(args, fmt);
133         llapi_error_callback(level, abs(err), fmt, args);
134         va_end(args);
135         errno = tmp_errno;
136 }
137
138 /* llapi_printf will preserve errno */
139 void llapi_printf(enum llapi_message_level level, const char *fmt, ...)
140 {
141         va_list  args;
142         int      tmp_errno = errno;
143
144         if ((level & LLAPI_MSG_MASK) > llapi_msg_level)
145                 return;
146
147         va_start(args, fmt);
148         llapi_info_callback(level, 0, fmt, args);
149         va_end(args);
150         errno = tmp_errno;
151 }
152
153 /**
154  * Set a custom error logging function. Passing in NULL will reset the logging
155  * callback to its default value.
156  *
157  * This function returns the value of the old callback.
158  */
159 llapi_log_callback_t llapi_error_callback_set(llapi_log_callback_t cb)
160 {
161         llapi_log_callback_t    old = llapi_error_callback;
162
163         if (cb != NULL)
164                 llapi_error_callback = cb;
165         else
166                 llapi_error_callback = error_callback_default;
167
168         return old;
169 }
170
171 /**
172  * Set a custom info logging function. Passing in NULL will reset the logging
173  * callback to its default value.
174  *
175  * This function returns the value of the old callback.
176  */
177 llapi_log_callback_t llapi_info_callback_set(llapi_log_callback_t cb)
178 {
179         llapi_log_callback_t    old = llapi_info_callback;
180
181         if (cb != NULL)
182                 llapi_info_callback = cb;
183         else
184                 llapi_info_callback = info_callback_default;
185
186         return old;
187 }
188
189 /**
190  * size_units is to be initialized (or zeroed) by caller.
191  */
192 int llapi_parse_size(const char *optarg, unsigned long long *size,
193                      unsigned long long *size_units, int bytes_spec)
194 {
195         char *end;
196         char *argbuf = (char *)optarg;
197         unsigned long long frac = 0, frac_d = 1;
198
199         if (strncmp(optarg, "-", 1) == 0)
200                 return -1;
201
202         if (*size_units == 0)
203                 *size_units = 1;
204
205         *size = strtoull(argbuf, &end, 0);
206         if (end != NULL && *end == '.') {
207                 int i;
208
209                 argbuf = end + 1;
210                 frac = strtoull(argbuf, &end, 10);
211                 /* count decimal places */
212                 for (i = 0; i < (end - argbuf); i++)
213                         frac_d *= 10;
214         }
215
216         if (*end != '\0') {
217                 if ((*end == 'b') && *(end + 1) == '\0' &&
218                     (*size & (~0ULL << (64 - 9))) == 0 &&
219                     !bytes_spec) {
220                         *size_units = 1 << 9;
221                 } else if ((*end == 'b') &&
222                            *(end + 1) == '\0' &&
223                            bytes_spec) {
224                         *size_units = 1;
225                 } else if ((*end == 'k' || *end == 'K') &&
226                            *(end + 1) == '\0' &&
227                            (*size & (~0ULL << (64 - 10))) == 0) {
228                         *size_units = 1 << 10;
229                 } else if ((*end == 'm' || *end == 'M') &&
230                            *(end + 1) == '\0' &&
231                            (*size & (~0ULL << (64 - 20))) == 0) {
232                         *size_units = 1 << 20;
233                 } else if ((*end == 'g' || *end == 'G') &&
234                            *(end + 1) == '\0' &&
235                            (*size & (~0ULL << (64 - 30))) == 0) {
236                         *size_units = 1 << 30;
237                 } else if ((*end == 't' || *end == 'T') &&
238                            *(end + 1) == '\0' &&
239                            (*size & (~0ULL << (64 - 40))) == 0) {
240                         *size_units = 1ULL << 40;
241                 } else if ((*end == 'p' || *end == 'P') &&
242                            *(end + 1) == '\0' &&
243                            (*size & (~0ULL << (64 - 50))) == 0) {
244                         *size_units = 1ULL << 50;
245                 } else if ((*end == 'e' || *end == 'E') &&
246                            *(end + 1) == '\0' &&
247                            (*size & (~0ULL << (64 - 60))) == 0) {
248                         *size_units = 1ULL << 60;
249                 } else {
250                         return -1;
251                 }
252         }
253         *size = *size * *size_units + frac * *size_units / frac_d;
254
255         return 0;
256 }
257
258 int llapi_ioctl_pack(struct obd_ioctl_data *data, char **pbuf, int max_len)
259 {
260         struct obd_ioctl_data *overlay;
261         char *ptr;
262
263         data->ioc_len = obd_ioctl_packlen(data);
264         data->ioc_version = OBD_IOCTL_VERSION;
265
266         if (*pbuf != NULL && data->ioc_len > max_len) {
267                 fprintf(stderr, "pbuf = %p, ioc_len = %u, max_len = %d\n",
268                         *pbuf, data->ioc_len, max_len);
269                 return -EINVAL;
270         }
271
272         if (*pbuf == NULL)
273                 *pbuf = malloc(data->ioc_len);
274
275         if (*pbuf == NULL)
276                 return -ENOMEM;
277
278         overlay = (struct obd_ioctl_data *)*pbuf;
279         memcpy(*pbuf, data, sizeof(*data));
280
281         ptr = overlay->ioc_bulk;
282         if (data->ioc_inlbuf1) {
283                 memcpy(ptr, data->ioc_inlbuf1, data->ioc_inllen1);
284                 ptr += cfs_size_round(data->ioc_inllen1);
285         }
286
287         if (data->ioc_inlbuf2) {
288                 memcpy(ptr, data->ioc_inlbuf2, data->ioc_inllen2);
289                 ptr += cfs_size_round(data->ioc_inllen2);
290         }
291
292         if (data->ioc_inlbuf3) {
293                 memcpy(ptr, data->ioc_inlbuf3, data->ioc_inllen3);
294                 ptr += cfs_size_round(data->ioc_inllen3);
295         }
296
297         if (data->ioc_inlbuf4) {
298                 memcpy(ptr, data->ioc_inlbuf4, data->ioc_inllen4);
299                 ptr += cfs_size_round(data->ioc_inllen4);
300         }
301
302         return 0;
303 }
304
305 int llapi_ioctl_unpack(struct obd_ioctl_data *data, char *pbuf, int max_len)
306 {
307         struct obd_ioctl_data *overlay;
308         char *ptr;
309
310         if (pbuf == NULL)
311                 return 1;
312
313         overlay = (struct obd_ioctl_data *)pbuf;
314
315         /* Preserve the caller's buffer pointers */
316         overlay->ioc_inlbuf1 = data->ioc_inlbuf1;
317         overlay->ioc_inlbuf2 = data->ioc_inlbuf2;
318         overlay->ioc_inlbuf3 = data->ioc_inlbuf3;
319         overlay->ioc_inlbuf4 = data->ioc_inlbuf4;
320
321         memcpy(data, pbuf, sizeof(*data));
322
323         ptr = overlay->ioc_bulk;
324         if (data->ioc_inlbuf1) {
325                 memcpy(data->ioc_inlbuf1, ptr, data->ioc_inllen1);
326                 ptr += cfs_size_round(data->ioc_inllen1);
327         }
328
329         if (data->ioc_inlbuf2) {
330                 memcpy(data->ioc_inlbuf2, ptr, data->ioc_inllen2);
331                 ptr += cfs_size_round(data->ioc_inllen2);
332         }
333
334         if (data->ioc_inlbuf3) {
335                 memcpy(data->ioc_inlbuf3, ptr, data->ioc_inllen3);
336                 ptr += cfs_size_round(data->ioc_inllen3);
337         }
338
339         if (data->ioc_inlbuf4) {
340                 memcpy(data->ioc_inlbuf4, ptr, data->ioc_inllen4);
341                 ptr += cfs_size_round(data->ioc_inllen4);
342         }
343
344         return 0;
345 }
346
347 /* XXX: llapi_xxx() functions return negative values upon failure */
348
349 int llapi_stripe_limit_check(unsigned long long stripe_size, int stripe_offset,
350                                 int stripe_count, int stripe_pattern)
351 {
352         int page_size, rc;
353
354         /* 64 KB is the largest common page size I'm aware of (on ia64), but
355          * check the local page size just in case. */
356         page_size = LOV_MIN_STRIPE_SIZE;
357         if (getpagesize() > page_size) {
358                 page_size = getpagesize();
359                 llapi_err_noerrno(LLAPI_MSG_WARN,
360                                 "warning: your page size (%u) is "
361                                 "larger than expected (%u)", page_size,
362                                 LOV_MIN_STRIPE_SIZE);
363         }
364         if (!llapi_stripe_size_is_aligned(stripe_size)) {
365                 rc = -EINVAL;
366                 llapi_error(LLAPI_MSG_ERROR, rc, "error: bad stripe_size %llu, "
367                                 "must be an even multiple of %d bytes",
368                                 stripe_size, page_size);
369                 return rc;
370         }
371         if (!llapi_stripe_index_is_valid(stripe_offset)) {
372                 rc = -EINVAL;
373                 llapi_error(LLAPI_MSG_ERROR, rc, "error: bad stripe offset %d",
374                                 stripe_offset);
375                 return rc;
376         }
377         if (!llapi_stripe_count_is_valid(stripe_count)) {
378                 rc = -EINVAL;
379                 llapi_error(LLAPI_MSG_ERROR, rc, "error: bad stripe count %d",
380                                 stripe_count);
381                 return rc;
382         }
383         if (llapi_stripe_size_is_too_big(stripe_size)) {
384                 rc = -EINVAL;
385                 llapi_error(LLAPI_MSG_ERROR, rc,
386                                 "warning: stripe size 4G or larger "
387                                 "is not currently supported and would wrap");
388                 return rc;
389         }
390         return 0;
391 }
392
393 /*
394  * Trim a trailing newline from a string, if it exists.
395  */
396 int llapi_chomp_string(char *buf)
397 {
398         if (!buf || !*buf)
399                 return 0;
400
401         while (buf[1])
402                 buf++;
403
404         if (*buf != '\n')
405                 return 0;
406
407         *buf = '\0';
408         return '\n';
409 }
410
411 /*
412  * Wrapper to grab parameter settings for lov.*-clilov-*.* values
413  */
414 static int get_param_lov(const char *path, const char *param,
415                          char *buf, size_t buf_size)
416 {
417         struct obd_uuid uuid;
418         int rc;
419
420         rc = llapi_file_get_lov_uuid(path, &uuid);
421         if (rc != 0)
422                 return rc;
423
424         return get_lustre_param_value("lov", uuid.uuid, FILTER_BY_EXACT, param,
425                                       buf, buf_size);
426 }
427
428 /*
429  * Wrapper to grab parameter settings for lmv.*-clilov-*.* values
430  */
431 static int get_param_lmv(const char *path, const char *param,
432                          char *buf, size_t buf_size)
433 {
434         struct obd_uuid uuid;
435         int rc;
436
437         rc = llapi_file_get_lmv_uuid(path, &uuid);
438         if (rc != 0)
439                 return rc;
440
441         return get_lustre_param_value("lmv", uuid.uuid, FILTER_BY_EXACT, param,
442                                buf, buf_size);
443 }
444
445 static int get_mds_md_size(const char *path)
446 {
447         char buf[PATH_MAX], inst[PATH_MAX];
448         int md_size = lov_user_md_size(LOV_MAX_STRIPE_COUNT, LOV_USER_MAGIC_V3);
449         int rc;
450
451         rc = llapi_getname(path, inst, sizeof(inst));
452         if (rc != 0)
453                 return md_size;
454
455         /* Get the max ea size from llite parameters. */
456         rc = get_lustre_param_value("llite", inst, FILTER_BY_EXACT,
457                                     "max_easize", buf, sizeof(buf));
458         if (rc != 0)
459                 return md_size;
460
461         rc = atoi(buf);
462
463         return rc > 0 ? rc : md_size;
464 }
465
466 int llapi_get_agent_uuid(char *path, char *buf, size_t bufsize)
467 {
468         return get_param_lmv(path, "uuid", buf, bufsize);
469 }
470
471 /*
472  * if pool is NULL, search ostname in target_obd
473  * if pool is not NULL:
474  *  if pool not found returns errno < 0
475  *  if ostname is NULL, returns 1 if pool is not empty and 0 if pool empty
476  *  if ostname is not NULL, returns 1 if OST is in pool and 0 if not
477  */
478 int llapi_search_ost(char *fsname, char *poolname, char *ostname)
479 {
480         char buffer[PATH_MAX];
481         size_t len = 0;
482         glob_t param;
483         FILE *fd;
484         int rc;
485
486         /* You need one or the other */
487         if (poolname == NULL && fsname == NULL)
488                 return -EINVAL;
489
490         if (ostname != NULL)
491                 len = strlen(ostname);
492
493         if (poolname == NULL && len == 0)
494                 return -EINVAL;
495
496         /* Search by poolname and fsname if is not NULL */
497         if (poolname != NULL) {
498                 rc = poolpath(&param, fsname, NULL);
499                 if (rc == 0) {
500                         snprintf(buffer, sizeof(buffer), "%s/%s",
501                                  param.gl_pathv[0], poolname);
502                 }
503         } else if (fsname != NULL) {
504                 rc = get_lustre_param_path("lov", fsname,
505                                            FILTER_BY_FS_NAME,
506                                            "target_obd", &param);
507                 if (rc == 0) {
508                         strncpy(buffer, param.gl_pathv[0],
509                                 sizeof(buffer));
510                 }
511         } else {
512                 return -EINVAL;
513         }
514         cfs_free_param_data(&param);
515         if (rc)
516                 return rc;
517
518         fd = fopen(buffer, "r");
519         if (fd == NULL)
520                 return -errno;
521
522         while (fgets(buffer, sizeof(buffer), fd) != NULL) {
523                 if (poolname == NULL) {
524                         char *ptr;
525                         /* Search for an ostname in the list of OSTs
526                          Line format is IDX: fsname-OSTxxxx_UUID STATUS */
527                         ptr = strchr(buffer, ' ');
528                         if ((ptr != NULL) &&
529                             (strncmp(ptr + 1, ostname, len) == 0)) {
530                                 fclose(fd);
531                                 return 1;
532                         }
533                 } else {
534                         /* Search for an ostname in a pool,
535                          (or an existing non-empty pool if no ostname) */
536                         if ((ostname == NULL) ||
537                             (strncmp(buffer, ostname, len) == 0)) {
538                                 fclose(fd);
539                                 return 1;
540                         }
541                 }
542         }
543         fclose(fd);
544         return 0;
545 }
546
547 /**
548  * Open a Lustre file.
549  *
550  * \param name     the name of the file to be opened
551  * \param flags    access mode, see flags in open(2)
552  * \param mode     permission of the file if it is created, see mode in open(2)
553  * \param param    stripe pattern of the newly created file
554  *
555  * \retval         file descriptor of opened file
556  * \retval         negative errno on failure
557  */
558 int llapi_file_open_param(const char *name, int flags, mode_t mode,
559                           const struct llapi_stripe_param *param)
560 {
561         char fsname[MAX_OBD_NAME + 1] = { 0 };
562         char *pool_name = param->lsp_pool;
563         struct lov_user_md *lum = NULL;
564         size_t lum_size = sizeof(*lum);
565         int fd, rc;
566
567         /* Make sure we are on a Lustre file system */
568         rc = llapi_search_fsname(name, fsname);
569         if (rc) {
570                 llapi_error(LLAPI_MSG_ERROR, rc,
571                             "'%s' is not on a Lustre filesystem",
572                             name);
573                 return rc;
574         }
575
576         /* Check if the stripe pattern is sane. */
577         rc = llapi_stripe_limit_check(param->lsp_stripe_size,
578                                       param->lsp_stripe_offset,
579                                       param->lsp_stripe_count,
580                                       param->lsp_stripe_pattern);
581         if (rc != 0)
582                 return rc;
583
584         /* Make sure we have a good pool */
585         if (pool_name != NULL) {
586                 /* in case user gives the full pool name <fsname>.<poolname>,
587                  * strip the fsname */
588                 char *ptr = strchr(pool_name, '.');
589                 if (ptr != NULL) {
590                         *ptr = '\0';
591                         if (strcmp(pool_name, fsname) != 0) {
592                                 *ptr = '.';
593                                 llapi_err_noerrno(LLAPI_MSG_ERROR,
594                                         "Pool '%s' is not on filesystem '%s'",
595                                         pool_name, fsname);
596                                 return -EINVAL;
597                         }
598                         pool_name = ptr + 1;
599                 }
600
601                 /* Make sure the pool exists and is non-empty */
602                 rc = llapi_search_ost(fsname, pool_name, NULL);
603                 if (rc < 1) {
604                         char *err = rc == 0 ? "has no OSTs" : "does not exist";
605
606                         llapi_err_noerrno(LLAPI_MSG_ERROR, "pool '%s.%s' %s",
607                                           fsname, pool_name, err);
608                         return -EINVAL;
609                 }
610
611                 lum_size = sizeof(struct lov_user_md_v3);
612         }
613
614         /* sanity check of target list */
615         if (param->lsp_is_specific) {
616                 char ostname[MAX_OBD_NAME + 1];
617                 bool found = false;
618                 int i;
619
620                 for (i = 0; i < param->lsp_stripe_count; i++) {
621                         snprintf(ostname, sizeof(ostname), "%s-OST%04x_UUID",
622                                  fsname, param->lsp_osts[i]);
623                         rc = llapi_search_ost(fsname, pool_name, ostname);
624                         if (rc <= 0) {
625                                 if (rc == 0)
626                                         rc = -ENODEV;
627
628                                 llapi_error(LLAPI_MSG_ERROR, rc,
629                                             "%s: cannot find OST %s in %s",
630                                             __func__, ostname,
631                                             pool_name != NULL ?
632                                             "pool" : "system");
633                                 return rc;
634                         }
635
636                         /* Make sure stripe offset is in OST list. */
637                         if (param->lsp_osts[i] == param->lsp_stripe_offset)
638                                 found = true;
639                 }
640                 if (!found) {
641                         llapi_error(LLAPI_MSG_ERROR, -EINVAL,
642                                     "%s: stripe offset '%d' is not in the "
643                                     "target list",
644                                     __func__, param->lsp_stripe_offset);
645                         return -EINVAL;
646                 }
647
648                 lum_size = lov_user_md_size(param->lsp_stripe_count,
649                                             LOV_USER_MAGIC_SPECIFIC);
650         }
651
652         lum = calloc(1, lum_size);
653         if (lum == NULL)
654                 return -ENOMEM;
655
656 retry_open:
657         fd = open(name, flags | O_LOV_DELAY_CREATE, mode);
658         if (fd < 0) {
659                 if (errno == EISDIR && !(flags & O_DIRECTORY)) {
660                         flags = O_DIRECTORY | O_RDONLY;
661                         goto retry_open;
662                 }
663         }
664
665         if (fd < 0) {
666                 rc = -errno;
667                 llapi_error(LLAPI_MSG_ERROR, rc, "unable to open '%s'", name);
668                 free(lum);
669                 return rc;
670         }
671
672         /*  Initialize IOCTL striping pattern structure */
673         lum->lmm_magic = LOV_USER_MAGIC_V1;
674         lum->lmm_pattern = param->lsp_stripe_pattern;
675         lum->lmm_stripe_size = param->lsp_stripe_size;
676         lum->lmm_stripe_count = param->lsp_stripe_count;
677         lum->lmm_stripe_offset = param->lsp_stripe_offset;
678         if (pool_name != NULL) {
679                 struct lov_user_md_v3 *lumv3 = (void *)lum;
680
681                 lumv3->lmm_magic = LOV_USER_MAGIC_V3;
682                 strncpy(lumv3->lmm_pool_name, pool_name, LOV_MAXPOOLNAME);
683         }
684         if (param->lsp_is_specific) {
685                 struct lov_user_md_v3 *lumv3 = (void *)lum;
686                 int i;
687
688                 lumv3->lmm_magic = LOV_USER_MAGIC_SPECIFIC;
689                 if (pool_name == NULL) {
690                         /* LOV_USER_MAGIC_SPECIFIC uses v3 format plus specified
691                          * OST list, therefore if pool is not specified we have
692                          * to pack a null pool name for placeholder. */
693                         memset(lumv3->lmm_pool_name, 0, LOV_MAXPOOLNAME);
694                 }
695
696                 for (i = 0; i < param->lsp_stripe_count; i++)
697                         lumv3->lmm_objects[i].l_ost_idx = param->lsp_osts[i];
698         }
699
700         if (ioctl(fd, LL_IOC_LOV_SETSTRIPE, lum) != 0) {
701                 char *errmsg = "stripe already set";
702
703                 rc = -errno;
704                 if (errno != EEXIST && errno != EALREADY)
705                         errmsg = strerror(errno);
706
707                 llapi_err_noerrno(LLAPI_MSG_ERROR,
708                                   "error on ioctl %#jx for '%s' (%d): %s",
709                                   (uintmax_t)LL_IOC_LOV_SETSTRIPE, name, fd,
710                                   errmsg);
711
712                 close(fd);
713                 fd = rc;
714         }
715
716         free(lum);
717
718         return fd;
719 }
720
721 int llapi_file_open_pool(const char *name, int flags, int mode,
722                          unsigned long long stripe_size, int stripe_offset,
723                          int stripe_count, int stripe_pattern, char *pool_name)
724 {
725         const struct llapi_stripe_param param = {
726                 .lsp_stripe_size = stripe_size,
727                 .lsp_stripe_count = stripe_count,
728                 .lsp_stripe_pattern = stripe_pattern,
729                 .lsp_stripe_offset = stripe_offset,
730                 .lsp_pool = pool_name
731         };
732         return llapi_file_open_param(name, flags, mode, &param);
733 }
734
735 int llapi_file_open(const char *name, int flags, int mode,
736                     unsigned long long stripe_size, int stripe_offset,
737                     int stripe_count, int stripe_pattern)
738 {
739         return llapi_file_open_pool(name, flags, mode, stripe_size,
740                                     stripe_offset, stripe_count,
741                                     stripe_pattern, NULL);
742 }
743
744 int llapi_file_create(const char *name, unsigned long long stripe_size,
745                       int stripe_offset, int stripe_count, int stripe_pattern)
746 {
747         int fd;
748
749         fd = llapi_file_open_pool(name, O_CREAT | O_WRONLY, 0644, stripe_size,
750                                   stripe_offset, stripe_count, stripe_pattern,
751                                   NULL);
752         if (fd < 0)
753                 return fd;
754
755         close(fd);
756         return 0;
757 }
758
759 int llapi_file_create_pool(const char *name, unsigned long long stripe_size,
760                            int stripe_offset, int stripe_count,
761                            int stripe_pattern, char *pool_name)
762 {
763         int fd;
764
765         fd = llapi_file_open_pool(name, O_CREAT | O_WRONLY, 0644, stripe_size,
766                                   stripe_offset, stripe_count, stripe_pattern,
767                                   pool_name);
768         if (fd < 0)
769                 return fd;
770
771         close(fd);
772         return 0;
773 }
774
775 int llapi_dir_set_default_lmv_stripe(const char *name, int stripe_offset,
776                                      int stripe_count, int stripe_pattern,
777                                      const char *pool_name)
778 {
779         struct lmv_user_md      lum = { 0 };
780         int                     fd;
781         int                     rc = 0;
782
783         lum.lum_magic = LMV_USER_MAGIC;
784         lum.lum_stripe_offset = stripe_offset;
785         lum.lum_stripe_count = stripe_count;
786         lum.lum_hash_type = stripe_pattern;
787         if (pool_name != NULL) {
788                 if (strlen(pool_name) >= sizeof(lum.lum_pool_name)) {
789                         llapi_err_noerrno(LLAPI_MSG_ERROR,
790                                   "error LL_IOC_LMV_SET_DEFAULT_STRIPE '%s'"
791                                   ": too large pool name: %s", name, pool_name);
792                         return -E2BIG;
793                 }
794                 strncpy(lum.lum_pool_name, pool_name,
795                         sizeof(lum.lum_pool_name));
796         }
797
798         fd = open(name, O_DIRECTORY | O_RDONLY);
799         if (fd < 0) {
800                 rc = -errno;
801                 llapi_error(LLAPI_MSG_ERROR, rc, "unable to open '%s'", name);
802                 return rc;
803         }
804
805         rc = ioctl(fd, LL_IOC_LMV_SET_DEFAULT_STRIPE, &lum);
806         if (rc < 0) {
807                 char *errmsg = "stripe already set";
808                 rc = -errno;
809                 if (errno != EEXIST && errno != EALREADY)
810                         errmsg = strerror(errno);
811
812                 llapi_err_noerrno(LLAPI_MSG_ERROR,
813                                   "error on LL_IOC_LMV_SETSTRIPE '%s' (%d): %s",
814                                   name, fd, errmsg);
815         }
816         close(fd);
817         return rc;
818 }
819
820 int llapi_dir_create_pool(const char *name, int mode, int stripe_offset,
821                           int stripe_count, int stripe_pattern,
822                           const char *pool_name)
823 {
824         struct lmv_user_md lmu = { 0 };
825         struct obd_ioctl_data data = { 0 };
826         char rawbuf[8192];
827         char *buf = rawbuf;
828         char *dirpath = NULL;
829         char *namepath = NULL;
830         char *dir;
831         char *filename;
832         int fd = -1;
833         int rc;
834
835         dirpath = strdup(name);
836         namepath = strdup(name);
837         if (!dirpath || !namepath)
838                 return -ENOMEM;
839
840         lmu.lum_magic = LMV_USER_MAGIC;
841         lmu.lum_stripe_offset = stripe_offset;
842         lmu.lum_stripe_count = stripe_count;
843         lmu.lum_hash_type = stripe_pattern;
844         if (pool_name != NULL) {
845                 if (strlen(pool_name) > LOV_MAXPOOLNAME) {
846                         llapi_err_noerrno(LLAPI_MSG_ERROR,
847                                   "error LL_IOC_LMV_SETSTRIPE '%s' : too large"
848                                   "pool name: %s", name, pool_name);
849                         rc = -E2BIG;
850                         goto out;
851                 }
852                 memcpy(lmu.lum_pool_name, pool_name, strlen(pool_name));
853         }
854
855         filename = basename(namepath);
856         dir = dirname(dirpath);
857
858         data.ioc_inlbuf1 = (char *)filename;
859         data.ioc_inllen1 = strlen(filename) + 1;
860         data.ioc_inlbuf2 = (char *)&lmu;
861         data.ioc_inllen2 = sizeof(struct lmv_user_md);
862         data.ioc_type = mode;
863         rc = llapi_ioctl_pack(&data, &buf, sizeof(rawbuf));
864         if (rc) {
865                 llapi_error(LLAPI_MSG_ERROR, rc,
866                             "error: LL_IOC_LMV_SETSTRIPE pack failed '%s'.",
867                             name);
868                 goto out;
869         }
870
871         fd = open(dir, O_DIRECTORY | O_RDONLY);
872         if (fd < 0) {
873                 rc = -errno;
874                 llapi_error(LLAPI_MSG_ERROR, rc, "unable to open '%s'", name);
875                 goto out;
876         }
877
878         if (ioctl(fd, LL_IOC_LMV_SETSTRIPE, buf)) {
879                 char *errmsg = "stripe already set";
880                 rc = -errno;
881                 if (errno != EEXIST && errno != EALREADY)
882                         errmsg = strerror(errno);
883
884                 llapi_err_noerrno(LLAPI_MSG_ERROR,
885                                   "error on LL_IOC_LMV_SETSTRIPE '%s' (%d): %s",
886                                   name, fd, errmsg);
887         }
888         close(fd);
889 out:
890         free(dirpath);
891         free(namepath);
892         return rc;
893 }
894
895 int llapi_direntry_remove(char *dname)
896 {
897         char *dirpath = NULL;
898         char *namepath = NULL;
899         char *dir;
900         char *filename;
901         int fd = -1;
902         int rc = 0;
903
904         dirpath = strdup(dname);
905         namepath = strdup(dname);
906         if (!dirpath || !namepath)
907                 return -ENOMEM;
908
909         filename = basename(namepath);
910
911         dir = dirname(dirpath);
912
913         fd = open(dir, O_DIRECTORY | O_RDONLY);
914         if (fd < 0) {
915                 rc = -errno;
916                 llapi_error(LLAPI_MSG_ERROR, rc, "unable to open '%s'",
917                             filename);
918                 goto out;
919         }
920
921         if (ioctl(fd, LL_IOC_REMOVE_ENTRY, filename)) {
922                 char *errmsg = strerror(errno);
923                 llapi_err_noerrno(LLAPI_MSG_ERROR,
924                                   "error on ioctl %#jx for '%s' (%d): %s",
925                                   (uintmax_t)LL_IOC_LMV_SETSTRIPE, filename,
926                                   fd, errmsg);
927         }
928 out:
929         free(dirpath);
930         free(namepath);
931         if (fd != -1)
932                 close(fd);
933         return rc;
934 }
935
936 /*
937  * Find the fsname, the full path, and/or an open fd.
938  * Either the fsname or path must not be NULL
939  */
940 int get_root_path(int want, char *fsname, int *outfd, char *path, int index)
941 {
942         struct mntent mnt;
943         char buf[PATH_MAX], mntdir[PATH_MAX];
944         char *ptr, *ptr_end;
945         FILE *fp;
946         int idx = 0, len = 0, mntlen, fd;
947         int rc = -ENODEV;
948
949         /* get the mount point */
950         fp = setmntent(PROC_MOUNTS, "r");
951         if (fp == NULL) {
952                 rc = -EIO;
953                 llapi_error(LLAPI_MSG_ERROR, rc,
954                             "setmntent(%s) failed", PROC_MOUNTS);
955                 return rc;
956         }
957         while (1) {
958                 if (getmntent_r(fp, &mnt, buf, sizeof(buf)) == NULL)
959                         break;
960
961                 if (!llapi_is_lustre_mnt(&mnt))
962                         continue;
963
964                 if ((want & WANT_INDEX) && (idx++ != index))
965                         continue;
966
967                 mntlen = strlen(mnt.mnt_dir);
968                 ptr = strchr(mnt.mnt_fsname, '/');
969                 while (ptr && *ptr == '/')
970                         ptr++;
971                 /* thanks to the call to llapi_is_lustre_mnt() above,
972                  * we are sure that mnt.mnt_fsname contains ":/",
973                  * so ptr should never be NULL */
974                 if (ptr == NULL)
975                         continue;
976                 ptr_end = ptr;
977                 while (*ptr_end != '/' && *ptr_end != '\0')
978                         ptr_end++;
979
980                 /* Check the fsname for a match, if given */
981                 if (!(want & WANT_FSNAME) && fsname != NULL &&
982                     (strlen(fsname) > 0) &&
983                     (strncmp(ptr, fsname, ptr_end - ptr) != 0))
984                         continue;
985
986                 /* If the path isn't set return the first one we find */
987                 if (path == NULL || strlen(path) == 0) {
988                         strncpy(mntdir, mnt.mnt_dir, strlen(mnt.mnt_dir));
989                         mntdir[strlen(mnt.mnt_dir)] = '\0';
990                         if ((want & WANT_FSNAME) && fsname != NULL) {
991                                 strncpy(fsname, ptr, ptr_end - ptr);
992                                 fsname[ptr_end - ptr] = '\0';
993                         }
994                         rc = 0;
995                         break;
996                 /* Otherwise find the longest matching path */
997                 } else if ((strlen(path) >= mntlen) && (mntlen >= len) &&
998                            (strncmp(mnt.mnt_dir, path, mntlen) == 0)) {
999                         strncpy(mntdir, mnt.mnt_dir, strlen(mnt.mnt_dir));
1000                         mntdir[strlen(mnt.mnt_dir)] = '\0';
1001                         len = mntlen;
1002                         if ((want & WANT_FSNAME) && fsname != NULL) {
1003                                 strncpy(fsname, ptr, ptr_end - ptr);
1004                                 fsname[ptr_end - ptr] = '\0';
1005                         }
1006                         rc = 0;
1007                 }
1008         }
1009         endmntent(fp);
1010
1011         /* Found it */
1012         if (rc == 0) {
1013                 if ((want & WANT_PATH) && path != NULL) {
1014                         strncpy(path, mntdir, strlen(mntdir));
1015                         path[strlen(mntdir)] = '\0';
1016                 }
1017                 if (want & WANT_FD) {
1018                         fd = open(mntdir, O_RDONLY | O_DIRECTORY | O_NONBLOCK);
1019                         if (fd < 0) {
1020                                 rc = -errno;
1021                                 llapi_error(LLAPI_MSG_ERROR, rc,
1022                                             "error opening '%s'", mntdir);
1023
1024                         } else {
1025                                 *outfd = fd;
1026                         }
1027                 }
1028         } else if (want & WANT_ERROR)
1029                 llapi_err_noerrno(LLAPI_MSG_ERROR,
1030                                   "can't find fs root for '%s': %d",
1031                                   (want & WANT_PATH) ? fsname : path, rc);
1032         return rc;
1033 }
1034
1035 /*
1036  * search lustre mounts
1037  *
1038  * Calling this function will return to the user the mount point, mntdir, and
1039  * the file system name, fsname, if the user passed a buffer to this routine.
1040  *
1041  * The user inputs are pathname and index. If the pathname is supplied then
1042  * the value of the index will be ignored. The pathname will return data if
1043  * the pathname is located on a lustre mount. Index is used to pick which
1044  * mount point you want in the case of multiple mounted lustre file systems.
1045  * See function lfs_osts in lfs.c for an example of the index use.
1046  */
1047 int llapi_search_mounts(const char *pathname, int index, char *mntdir,
1048                         char *fsname)
1049 {
1050         int want = WANT_PATH, idx = -1;
1051
1052         if (!pathname || pathname[0] == '\0') {
1053                 want |= WANT_INDEX;
1054                 idx = index;
1055         } else
1056                 strcpy(mntdir, pathname);
1057
1058         if (fsname)
1059                 want |= WANT_FSNAME;
1060         return get_root_path(want, fsname, NULL, mntdir, idx);
1061 }
1062
1063 /* Given a path, find the corresponding Lustre fsname */
1064 int llapi_search_fsname(const char *pathname, char *fsname)
1065 {
1066         char *path;
1067         int rc;
1068
1069         path = realpath(pathname, NULL);
1070         if (path == NULL) {
1071                 char buf[PATH_MAX], *ptr;
1072
1073                 buf[0] = '\0';
1074                 if (pathname[0] != '/') {
1075                         /* Need an absolute path, but realpath() only works for
1076                          * pathnames that actually exist.  We go through the
1077                          * extra hurdle of dirname(getcwd() + pathname) in
1078                          * case the relative pathname contains ".." in it. */
1079                         if (getcwd(buf, sizeof(buf) - 2) == NULL)
1080                                 return -errno;
1081                         rc = strlcat(buf, "/", sizeof(buf));
1082                         if (rc >= sizeof(buf))
1083                                 return -E2BIG;
1084                 }
1085                 rc = strlcat(buf, pathname, sizeof(buf));
1086                 if (rc >= sizeof(buf))
1087                         return -E2BIG;
1088                 path = realpath(buf, NULL);
1089                 if (path == NULL) {
1090                         ptr = strrchr(buf, '/');
1091                         if (ptr == NULL)
1092                                 return -ENOENT;
1093                         *ptr = '\0';
1094                         path = realpath(buf, NULL);
1095                         if (path == NULL) {
1096                                 rc = -errno;
1097                                 llapi_error(LLAPI_MSG_ERROR, rc,
1098                                             "pathname '%s' cannot expand",
1099                                             pathname);
1100                                 return rc;
1101                         }
1102                 }
1103         }
1104         rc = get_root_path(WANT_FSNAME | WANT_ERROR, fsname, NULL, path, -1);
1105         free(path);
1106         return rc;
1107 }
1108
1109 int llapi_search_rootpath(char *pathname, const char *fsname)
1110 {
1111         return get_root_path(WANT_PATH, (char *)fsname, NULL, pathname, -1);
1112 }
1113
1114 int llapi_getname(const char *path, char *buf, size_t size)
1115 {
1116         struct obd_uuid uuid_buf;
1117         char *uuid = uuid_buf.uuid;
1118         int rc, nr;
1119
1120         memset(&uuid_buf, 0, sizeof(uuid_buf));
1121         rc = llapi_file_get_lov_uuid(path, &uuid_buf);
1122         if (rc)
1123                 return rc;
1124
1125         /* We want to turn lustre-clilov-ffff88002738bc00 into
1126          * lustre-ffff88002738bc00. */
1127
1128         nr = snprintf(buf, size, "%.*s-%s",
1129                       (int) (strlen(uuid) - 24), uuid,
1130                       uuid + strlen(uuid) - 16);
1131
1132         if (nr >= size)
1133                 rc = -ENAMETOOLONG;
1134
1135         return rc;
1136 }
1137
1138 /**
1139  * Get the list of pool members.
1140  * \param poolname    string of format \<fsname\>.\<poolname\>
1141  * \param members     caller-allocated array of char*
1142  * \param list_size   size of the members array
1143  * \param buffer      caller-allocated buffer for storing OST names
1144  * \param buffer_size size of the buffer
1145  *
1146  * \return number of members retrieved for this pool
1147  * \retval -error failure
1148  */
1149 int llapi_get_poolmembers(const char *poolname, char **members,
1150                           int list_size, char *buffer, int buffer_size)
1151 {
1152         char fsname[PATH_MAX];
1153         char *pool, *tmp;
1154         glob_t pathname;
1155         char buf[PATH_MAX];
1156         FILE *fd;
1157         int rc = 0;
1158         int nb_entries = 0;
1159         int used = 0;
1160
1161         /* name is FSNAME.POOLNAME */
1162         if (strlen(poolname) >= sizeof(fsname))
1163                 return -EOVERFLOW;
1164         strlcpy(fsname, poolname, sizeof(fsname));
1165         pool = strchr(fsname, '.');
1166         if (pool == NULL)
1167                 return -EINVAL;
1168
1169         *pool = '\0';
1170         pool++;
1171
1172         rc = poolpath(&pathname, fsname, NULL);
1173         if (rc != 0) {
1174                 llapi_error(LLAPI_MSG_ERROR, rc,
1175                             "Lustre filesystem '%s' not found",
1176                             fsname);
1177                 return rc;
1178         }
1179
1180         llapi_printf(LLAPI_MSG_NORMAL, "Pool: %s.%s\n", fsname, pool);
1181         rc = snprintf(buf, sizeof(buf), "%s/%s", pathname.gl_pathv[0], pool);
1182         cfs_free_param_data(&pathname);
1183         if (rc >= sizeof(buf))
1184                 return -EOVERFLOW;
1185         fd = fopen(buf, "r");
1186         if (fd == NULL) {
1187                 rc = -errno;
1188                 llapi_error(LLAPI_MSG_ERROR, rc, "cannot open %s", buf);
1189                 return rc;
1190         }
1191
1192         rc = 0;
1193         while (fgets(buf, sizeof(buf), fd) != NULL) {
1194                 if (nb_entries >= list_size) {
1195                         rc = -EOVERFLOW;
1196                         break;
1197                 }
1198                 buf[sizeof(buf) - 1] = '\0';
1199                 /* remove '\n' */
1200                 tmp = strchr(buf, '\n');
1201                 if (tmp != NULL)
1202                         *tmp='\0';
1203                 if (used + strlen(buf) + 1 > buffer_size) {
1204                         rc = -EOVERFLOW;
1205                         break;
1206                 }
1207
1208                 strcpy(buffer + used, buf);
1209                 members[nb_entries] = buffer + used;
1210                 used += strlen(buf) + 1;
1211                 nb_entries++;
1212                 rc = nb_entries;
1213         }
1214
1215         fclose(fd);
1216         return rc;
1217 }
1218
1219 /**
1220  * Get the list of pools in a filesystem.
1221  * \param name        filesystem name or path
1222  * \param poollist    caller-allocated array of char*
1223  * \param list_size   size of the poollist array
1224  * \param buffer      caller-allocated buffer for storing pool names
1225  * \param buffer_size size of the buffer
1226  *
1227  * \return number of pools retrieved for this filesystem
1228  * \retval -error failure
1229  */
1230 int llapi_get_poollist(const char *name, char **poollist, int list_size,
1231                        char *buffer, int buffer_size)
1232 {
1233         char rname[PATH_MAX];
1234         glob_t pathname;
1235         char *fsname;
1236         char *ptr;
1237         DIR *dir;
1238         struct dirent *pool;
1239         int rc = 0;
1240         unsigned int nb_entries = 0;
1241         unsigned int used = 0;
1242         unsigned int i;
1243
1244         /* initialize output array */
1245         for (i = 0; i < list_size; i++)
1246                 poollist[i] = NULL;
1247
1248         /* is name a pathname ? */
1249         ptr = strchr(name, '/');
1250         if (ptr != NULL) {
1251                 /* only absolute pathname is supported */
1252                 if (*name != '/')
1253                         return -EINVAL;
1254
1255                 if (!realpath(name, rname)) {
1256                         rc = -errno;
1257                         llapi_error(LLAPI_MSG_ERROR, rc, "invalid path '%s'",
1258                                     name);
1259                         return rc;
1260                 }
1261
1262                 fsname = strdup(rname);
1263                 if (!fsname)
1264                         return -ENOMEM;
1265
1266                 rc = poolpath(&pathname, NULL, rname);
1267         } else {
1268                 /* name is FSNAME */
1269                 fsname = strdup(name);
1270                 if (!fsname)
1271                         return -ENOMEM;
1272                 rc = poolpath(&pathname, fsname, NULL);
1273         }
1274         if (rc != 0) {
1275                 llapi_error(LLAPI_MSG_ERROR, rc,
1276                             "Lustre filesystem '%s' not found", name);
1277                 goto free_path;
1278         }
1279
1280         llapi_printf(LLAPI_MSG_NORMAL, "Pools from %s:\n", fsname);
1281         dir = opendir(pathname.gl_pathv[0]);
1282         if (dir == NULL) {
1283                 rc = -errno;
1284                 llapi_error(LLAPI_MSG_ERROR, rc,
1285                             "Could not open pool list for '%s'",
1286                             name);
1287                 goto free_path;
1288         }
1289
1290         do {
1291                 errno = 0;
1292                 pool = readdir(dir);
1293                 if (pool == NULL) {
1294                         rc = -errno;
1295                         goto free_dir;
1296                 }
1297
1298                 /* ignore . and .. */
1299                 if (!strcmp(pool->d_name, ".") || !strcmp(pool->d_name, ".."))
1300                         continue;
1301
1302                 /* check output bounds */
1303                 if (nb_entries >= list_size) {
1304                         rc = -EOVERFLOW;
1305                         goto free_dir;
1306                 }
1307
1308                 /* +2 for '.' and final '\0' */
1309                 if (used + strlen(pool->d_name) + strlen(fsname) + 2
1310                     > buffer_size) {
1311                         rc = -EOVERFLOW;
1312                         goto free_dir;
1313                 }
1314
1315                 sprintf(buffer + used, "%s.%s", fsname, pool->d_name);
1316                 poollist[nb_entries] = buffer + used;
1317                 used += strlen(pool->d_name) + strlen(fsname) + 2;
1318                 nb_entries++;
1319         } while (1);
1320
1321 free_dir:
1322         if (rc)
1323                 llapi_error(LLAPI_MSG_ERROR, rc,
1324                             "Error reading pool list for '%s'", name);
1325         closedir(dir);
1326 free_path:
1327         cfs_free_param_data(&pathname);
1328         if (fsname)
1329                 free(fsname);
1330         return rc != 0 ? rc : nb_entries;
1331 }
1332
1333 /* wrapper for lfs.c and obd.c */
1334 int llapi_poollist(const char *name)
1335 {
1336         /* list of pool names (assume that pool count is smaller
1337            than OST count) */
1338         char **list, *buffer = NULL, *fsname = (char *)name;
1339         char *poolname = NULL, *tmp = NULL, data[16];
1340         enum param_filter type = FILTER_BY_PATH;
1341         int obdcount, bufsize, rc, nb, i;
1342
1343         if (name == NULL)
1344                 return -EINVAL;
1345
1346         if (name[0] != '/') {
1347                 fsname = strdup(name);
1348                 if (fsname == NULL)
1349                         return -ENOMEM;
1350
1351                 poolname = strchr(fsname, '.');
1352                 if (poolname)
1353                         *poolname = '\0';
1354                 type = FILTER_BY_FS_NAME;
1355         }
1356
1357         rc = get_lustre_param_value("lov", fsname, type, "numobd",
1358                                     data, sizeof(data));
1359         if (rc < 0)
1360                 goto err;
1361         obdcount = atoi(data);
1362
1363         /* Allocate space for each fsname-OST0000_UUID, 1 per OST,
1364          * and also an array to store the pointers for all that
1365          * allocated space. */
1366 retry_get_pools:
1367         bufsize = sizeof(struct obd_uuid) * obdcount;
1368         buffer = realloc(tmp, bufsize + sizeof(*list) * obdcount);
1369         if (buffer == NULL) {
1370                 rc = -ENOMEM;
1371                 goto err;
1372         }
1373         list = (char **) (buffer + bufsize);
1374
1375         if (!poolname) {
1376                 /* name is a path or fsname */
1377                 nb = llapi_get_poollist(name, list, obdcount,
1378                                         buffer, bufsize);
1379         } else {
1380                 /* name is a pool name (<fsname>.<poolname>) */
1381                 nb = llapi_get_poolmembers(name, list, obdcount,
1382                                            buffer, bufsize);
1383         }
1384
1385         if (nb == -EOVERFLOW) {
1386                 obdcount *= 2;
1387                 tmp = buffer;
1388                 goto retry_get_pools;
1389         }
1390
1391         for (i = 0; i < nb; i++)
1392                 llapi_printf(LLAPI_MSG_NORMAL, "%s\n", list[i]);
1393         rc = (nb < 0 ? nb : 0);
1394 err:
1395         if (buffer)
1396                 free(buffer);
1397         if (fsname != NULL && type == FILTER_BY_FS_NAME)
1398                 free(fsname);
1399         return rc;
1400 }
1401
1402 typedef int (semantic_func_t)(char *path, DIR *parent, DIR **d,
1403                               void *data, struct dirent64 *de);
1404
1405 #define OBD_NOT_FOUND           (-1)
1406
1407 static int common_param_init(struct find_param *param, char *path)
1408 {
1409         int lum_size = get_mds_md_size(path);
1410
1411         if (lum_size < PATH_MAX + 1)
1412                 lum_size = PATH_MAX + 1;
1413
1414         param->fp_lum_size = lum_size;
1415         param->fp_lmd = calloc(1, sizeof(lstat_t) + param->fp_lum_size);
1416         if (param->fp_lmd == NULL) {
1417                 llapi_error(LLAPI_MSG_ERROR, -ENOMEM,
1418                             "error: allocation of %zu bytes for ioctl",
1419                             sizeof(lstat_t) + param->fp_lum_size);
1420                 return -ENOMEM;
1421         }
1422
1423         param->fp_lmv_stripe_count = 256;
1424         param->fp_lmv_md = calloc(1,
1425                                   lmv_user_md_size(param->fp_lmv_stripe_count,
1426                                                    LMV_MAGIC_V1));
1427         if (param->fp_lmv_md == NULL) {
1428                 llapi_error(LLAPI_MSG_ERROR, -ENOMEM,
1429                             "error: allocation of %d bytes for ioctl",
1430                             lmv_user_md_size(param->fp_lmv_stripe_count,
1431                                              LMV_MAGIC_V1));
1432                 return -ENOMEM;
1433         }
1434
1435         param->fp_got_uuids = 0;
1436         param->fp_obd_indexes = NULL;
1437         param->fp_obd_index = OBD_NOT_FOUND;
1438         if (!param->fp_migrate)
1439                 param->fp_mdt_index = OBD_NOT_FOUND;
1440         return 0;
1441 }
1442
1443 static void find_param_fini(struct find_param *param)
1444 {
1445         if (param->fp_obd_indexes)
1446                 free(param->fp_obd_indexes);
1447
1448         if (param->fp_lmd)
1449                 free(param->fp_lmd);
1450
1451         if (param->fp_lmv_md)
1452                 free(param->fp_lmv_md);
1453 }
1454
1455 static int cb_common_fini(char *path, DIR *parent, DIR **dirp, void *data,
1456                           struct dirent64 *de)
1457 {
1458         struct find_param *param = data;
1459         param->fp_depth--;
1460
1461         return 0;
1462 }
1463
1464 /* set errno upon failure */
1465 static DIR *opendir_parent(const char *path)
1466 {
1467         char *path_copy;
1468         char *parent_path;
1469         DIR *parent;
1470
1471         path_copy = strdup(path);
1472         if (path_copy == NULL)
1473                 return NULL;
1474
1475         parent_path = dirname(path_copy);
1476         parent = opendir(parent_path);
1477         free(path_copy);
1478
1479         return parent;
1480 }
1481
1482 static int cb_get_dirstripe(char *path, DIR *d, struct find_param *param)
1483 {
1484         int ret;
1485
1486 again:
1487         param->fp_lmv_md->lum_stripe_count = param->fp_lmv_stripe_count;
1488         if (param->fp_get_default_lmv)
1489                 param->fp_lmv_md->lum_magic = LMV_USER_MAGIC;
1490         else
1491                 param->fp_lmv_md->lum_magic = LMV_MAGIC_V1;
1492
1493         ret = ioctl(dirfd(d), LL_IOC_LMV_GETSTRIPE, param->fp_lmv_md);
1494         if (errno == E2BIG && ret != 0) {
1495                 int stripe_count;
1496                 int lmv_size;
1497
1498                 stripe_count = (__u32)param->fp_lmv_md->lum_stripe_count;
1499                 if (stripe_count <= param->fp_lmv_stripe_count)
1500                         return ret;
1501
1502                 free(param->fp_lmv_md);
1503                 param->fp_lmv_stripe_count = stripe_count;
1504                 lmv_size = lmv_user_md_size(stripe_count, LMV_MAGIC_V1);
1505                 param->fp_lmv_md = malloc(lmv_size);
1506                 if (param->fp_lmv_md == NULL) {
1507                         llapi_error(LLAPI_MSG_ERROR, -ENOMEM,
1508                                     "error: allocation of %d bytes for ioctl",
1509                                     lmv_user_md_size(param->fp_lmv_stripe_count,
1510                                                      LMV_MAGIC_V1));
1511                         return -ENOMEM;
1512                 }
1513                 goto again;
1514         }
1515         return ret;
1516 }
1517
1518 static int get_lmd_info(char *path, DIR *parent, DIR *dir,
1519                  struct lov_user_mds_data *lmd, int lumlen)
1520 {
1521         lstat_t *st = &lmd->lmd_st;
1522         int ret = 0;
1523
1524         if (parent == NULL && dir == NULL)
1525                 return -EINVAL;
1526
1527         if (dir) {
1528                 ret = ioctl(dirfd(dir), LL_IOC_MDC_GETINFO, (void *)lmd);
1529         } else if (parent) {
1530                 char *fname = strrchr(path, '/');
1531
1532                 /* To avoid opening, locking, and closing each file on the
1533                  * client if that is not needed. The GETFILEINFO ioctl can
1534                  * be done on the patent dir with a single open for all
1535                  * files in that directory, and it also doesn't pollute the
1536                  * client dcache with millions of dentries when traversing
1537                  * a large filesystem.  */
1538                 fname = (fname == NULL ? path : fname + 1);
1539                 /* retrieve needed file info */
1540                 strlcpy((char *)lmd, fname, lumlen);
1541                 ret = ioctl(dirfd(parent), IOC_MDC_GETFILEINFO, (void *)lmd);
1542         }
1543
1544         if (ret) {
1545                 if (errno == ENOTTY) {
1546                         /* ioctl is not supported, it is not a lustre fs.
1547                          * Do the regular lstat(2) instead. */
1548                         ret = lstat_f(path, st);
1549                         if (ret) {
1550                                 ret = -errno;
1551                                 llapi_error(LLAPI_MSG_ERROR, ret,
1552                                             "error: %s: lstat failed for %s",
1553                                             __func__, path);
1554                         }
1555                 } else if (errno == ENOENT) {
1556                         ret = -errno;
1557                         llapi_error(LLAPI_MSG_WARN, ret,
1558                                     "warning: %s: %s does not exist",
1559                                     __func__, path);
1560                 } else if (errno != EISDIR) {
1561                         ret = -errno;
1562                         llapi_error(LLAPI_MSG_ERROR, ret,
1563                                     "%s ioctl failed for %s.",
1564                                     dir ? "LL_IOC_MDC_GETINFO" :
1565                                     "IOC_MDC_GETFILEINFO", path);
1566                 } else {
1567                         ret = -errno;
1568                         llapi_error(LLAPI_MSG_ERROR, ret,
1569                                  "error: %s: IOC_MDC_GETFILEINFO failed for %s",
1570                                    __func__, path);
1571                 }
1572         }
1573         return ret;
1574 }
1575
1576 static int llapi_semantic_traverse(char *path, int size, DIR *parent,
1577                                    semantic_func_t sem_init,
1578                                    semantic_func_t sem_fini, void *data,
1579                                    struct dirent64 *de)
1580 {
1581         struct find_param *param = (struct find_param *)data;
1582         struct dirent64 *dent;
1583         int len, ret;
1584         DIR *d, *p = NULL;
1585
1586         ret = 0;
1587         len = strlen(path);
1588
1589         d = opendir(path);
1590         if (!d && errno != ENOTDIR) {
1591                 ret = -errno;
1592                 llapi_error(LLAPI_MSG_ERROR, ret, "%s: Failed to open '%s'",
1593                             __func__, path);
1594                 return ret;
1595         } else if (!d && !parent) {
1596                 /* ENOTDIR. Open the parent dir. */
1597                 p = opendir_parent(path);
1598                 if (!p) {
1599                         ret = -errno;
1600                         goto out;
1601                 }
1602         }
1603
1604         if (sem_init && (ret = sem_init(path, parent ?: p, &d, data, de)))
1605                 goto err;
1606
1607         if (d == NULL)
1608                 goto out;
1609
1610         while ((dent = readdir64(d)) != NULL) {
1611                 int rc;
1612
1613                 if (!strcmp(dent->d_name, ".") || !strcmp(dent->d_name, ".."))
1614                         continue;
1615
1616                 /* Don't traverse .lustre directory */
1617                 if (!(strcmp(dent->d_name, dot_lustre_name)))
1618                         continue;
1619
1620                 path[len] = 0;
1621                 if ((len + dent->d_reclen + 2) > size) {
1622                         llapi_err_noerrno(LLAPI_MSG_ERROR,
1623                                           "error: %s: string buffer is too small",
1624                                           __func__);
1625                         break;
1626                 }
1627                 strcat(path, "/");
1628                 strcat(path, dent->d_name);
1629
1630                 if (dent->d_type == DT_UNKNOWN) {
1631                         lstat_t *st = &param->fp_lmd->lmd_st;
1632
1633                         rc = get_lmd_info(path, d, NULL, param->fp_lmd,
1634                                            param->fp_lum_size);
1635                         if (rc == 0)
1636                                 dent->d_type = IFTODT(st->st_mode);
1637                         else if (ret == 0)
1638                                 ret = rc;
1639
1640                         if (rc == -ENOENT)
1641                                 continue;
1642                 }
1643                 switch (dent->d_type) {
1644                 case DT_UNKNOWN:
1645                         llapi_err_noerrno(LLAPI_MSG_ERROR,
1646                                           "error: %s: '%s' is UNKNOWN type %d",
1647                                           __func__, dent->d_name, dent->d_type);
1648                         break;
1649                 case DT_DIR:
1650                         rc = llapi_semantic_traverse(path, size, d, sem_init,
1651                                                       sem_fini, data, dent);
1652                         if (rc != 0 && ret == 0)
1653                                 ret = rc;
1654                         break;
1655                 default:
1656                         rc = 0;
1657                         if (sem_init) {
1658                                 rc = sem_init(path, d, NULL, data, dent);
1659                                 if (rc < 0 && ret == 0)
1660                                         ret = rc;
1661                         }
1662                         if (sem_fini && rc == 0)
1663                                 sem_fini(path, d, NULL, data, dent);
1664                 }
1665         }
1666
1667 out:
1668         path[len] = 0;
1669
1670         if (sem_fini)
1671                 sem_fini(path, parent, &d, data, de);
1672 err:
1673         if (d)
1674                 closedir(d);
1675         if (p)
1676                 closedir(p);
1677         return ret;
1678 }
1679
1680 static int param_callback(char *path, semantic_func_t sem_init,
1681                           semantic_func_t sem_fini, struct find_param *param)
1682 {
1683         int ret, len = strlen(path);
1684         char *buf;
1685
1686         if (len > PATH_MAX) {
1687                 ret = -EINVAL;
1688                 llapi_error(LLAPI_MSG_ERROR, ret,
1689                             "Path name '%s' is too long", path);
1690                 return ret;
1691         }
1692
1693         buf = (char *)malloc(PATH_MAX + 1);
1694         if (!buf)
1695                 return -ENOMEM;
1696
1697         strlcpy(buf, path, PATH_MAX + 1);
1698         ret = common_param_init(param, buf);
1699         if (ret)
1700                 goto out;
1701
1702         param->fp_depth = 0;
1703
1704         ret = llapi_semantic_traverse(buf, PATH_MAX + 1, NULL, sem_init,
1705                                       sem_fini, param, NULL);
1706 out:
1707         find_param_fini(param);
1708         free(buf);
1709         return ret < 0 ? ret : 0;
1710 }
1711
1712 int llapi_file_fget_lov_uuid(int fd, struct obd_uuid *lov_name)
1713 {
1714         int rc = ioctl(fd, OBD_IOC_GETNAME, lov_name);
1715         if (rc) {
1716                 rc = -errno;
1717                 llapi_error(LLAPI_MSG_ERROR, rc, "error: can't get lov name.");
1718         }
1719         return rc;
1720 }
1721
1722 int llapi_file_fget_lmv_uuid(int fd, struct obd_uuid *lov_name)
1723 {
1724         int rc = ioctl(fd, OBD_IOC_GETMDNAME, lov_name);
1725         if (rc) {
1726                 rc = -errno;
1727                 llapi_error(LLAPI_MSG_ERROR, rc, "error: can't get lmv name.");
1728         }
1729         return rc;
1730 }
1731
1732 int llapi_file_get_lov_uuid(const char *path, struct obd_uuid *lov_uuid)
1733 {
1734         int fd, rc;
1735
1736         fd = open(path, O_RDONLY | O_NONBLOCK);
1737         if (fd < 0) {
1738                 rc = -errno;
1739                 llapi_error(LLAPI_MSG_ERROR, rc, "error opening %s", path);
1740                 return rc;
1741         }
1742
1743         rc = llapi_file_fget_lov_uuid(fd, lov_uuid);
1744
1745         close(fd);
1746         return rc;
1747 }
1748
1749 int llapi_file_get_lmv_uuid(const char *path, struct obd_uuid *lov_uuid)
1750 {
1751         int fd, rc;
1752
1753         fd = open(path, O_RDONLY | O_NONBLOCK);
1754         if (fd < 0) {
1755                 rc = -errno;
1756                 llapi_error(LLAPI_MSG_ERROR, rc, "error opening %s", path);
1757                 return rc;
1758         }
1759
1760         rc = llapi_file_fget_lmv_uuid(fd, lov_uuid);
1761
1762         close(fd);
1763         return rc;
1764 }
1765
1766 enum tgt_type {
1767         LOV_TYPE = 1,
1768         LMV_TYPE
1769 };
1770
1771 /*
1772  * If uuidp is NULL, return the number of available obd uuids.
1773  * If uuidp is non-NULL, then it will return the uuids of the obds. If
1774  * there are more OSTs than allocated to uuidp, then an error is returned with
1775  * the ost_count set to number of available obd uuids.
1776  */
1777 static int llapi_get_target_uuids(int fd, struct obd_uuid *uuidp,
1778                                   int *ost_count, enum tgt_type type)
1779 {
1780         char buf[PATH_MAX], format[32];
1781         int rc = 0, index = 0;
1782         struct obd_uuid name;
1783         glob_t param;
1784         FILE *fp;
1785
1786         /* Get the lov name */
1787         if (type == LOV_TYPE)
1788                 rc = llapi_file_fget_lov_uuid(fd, &name);
1789         else
1790                 rc = llapi_file_fget_lmv_uuid(fd, &name);
1791         if (rc != 0)
1792                 return rc;
1793
1794         /* Now get the ost uuids */
1795         rc = get_lustre_param_path(type == LOV_TYPE ? "lov" : "lmv", name.uuid,
1796                                    FILTER_BY_EXACT, "target_obd", &param);
1797         if (rc != 0)
1798                 return -ENOENT;
1799
1800         fp = fopen(param.gl_pathv[0], "r");
1801         if (fp == NULL) {
1802                 rc = -errno;
1803                 llapi_error(LLAPI_MSG_ERROR, rc, "error: opening '%s'",
1804                             param.gl_pathv[0]);
1805                 goto free_param;
1806         }
1807
1808         snprintf(format, sizeof(format),
1809                  "%%d: %%%zus", sizeof(uuidp[0].uuid) - 1);
1810         while (fgets(buf, sizeof(buf), fp) != NULL) {
1811                 if (uuidp && (index < *ost_count)) {
1812                         if (sscanf(buf, format, &index, uuidp[index].uuid) < 2)
1813                                 break;
1814                 }
1815                 index++;
1816         }
1817
1818         fclose(fp);
1819
1820         if (uuidp && (index > *ost_count))
1821                 rc = -EOVERFLOW;
1822
1823         *ost_count = index;
1824 free_param:
1825         cfs_free_param_data(&param);
1826         return rc;
1827 }
1828
1829 int llapi_lov_get_uuids(int fd, struct obd_uuid *uuidp, int *ost_count)
1830 {
1831         return llapi_get_target_uuids(fd, uuidp, ost_count, LOV_TYPE);
1832 }
1833
1834 int llapi_get_obd_count(char *mnt, int *count, int is_mdt)
1835 {
1836         int root;
1837         int rc;
1838
1839         root = open(mnt, O_RDONLY | O_DIRECTORY);
1840         if (root < 0) {
1841                 rc = -errno;
1842                 llapi_error(LLAPI_MSG_ERROR, rc, "open %s failed", mnt);
1843                 return rc;
1844         }
1845
1846         *count = is_mdt;
1847         rc = ioctl(root, LL_IOC_GETOBDCOUNT, count);
1848         if (rc < 0)
1849                 rc = -errno;
1850
1851         close(root);
1852         return rc;
1853 }
1854
1855 /* Check if user specified value matches a real uuid.  Ignore _UUID,
1856  * -osc-4ba41334, other trailing gunk in comparison.
1857  * @param real_uuid ends in "_UUID"
1858  * @param search_uuid may or may not end in "_UUID"
1859  */
1860 int llapi_uuid_match(char *real_uuid, char *search_uuid)
1861 {
1862         int cmplen = strlen(real_uuid);
1863         int searchlen = strlen(search_uuid);
1864
1865         if (cmplen > 5 && strcmp(real_uuid + cmplen - 5, "_UUID") == 0)
1866                 cmplen -= 5;
1867         if (searchlen > 5 && strcmp(search_uuid + searchlen - 5, "_UUID") == 0)
1868                 searchlen -= 5;
1869
1870         /* The UUIDs may legitimately be different lengths, if
1871          * the system was upgraded from an older version. */
1872         if (cmplen != searchlen)
1873                 return 0;
1874
1875         return (strncmp(search_uuid, real_uuid, cmplen) == 0);
1876 }
1877
1878 /* Here, param->fp_obd_uuid points to a single obduuid, the index of which is
1879  * returned in param->fp_obd_index */
1880 static int setup_obd_uuid(int fd, char *dname, struct find_param *param)
1881 {
1882         struct obd_uuid obd_uuid;
1883         char buf[PATH_MAX];
1884         glob_t param_data;
1885         char format[32];
1886         int rc = 0;
1887         FILE *fp;
1888
1889         if (param->fp_got_uuids)
1890                 return rc;
1891
1892         /* Get the lov/lmv name */
1893         if (param->fp_get_lmv)
1894                 rc = llapi_file_fget_lmv_uuid(fd, &obd_uuid);
1895         else
1896                 rc = llapi_file_fget_lov_uuid(fd, &obd_uuid);
1897         if (rc) {
1898                 if (rc != -ENOTTY) {
1899                         llapi_error(LLAPI_MSG_ERROR, rc,
1900                                     "error: can't get %s name: %s",
1901                                     param->fp_get_lmv ? "lmv" : "lov",
1902                                     dname);
1903                 } else {
1904                         rc = 0;
1905                 }
1906                 return rc;
1907         }
1908
1909         param->fp_got_uuids = 1;
1910
1911         /* Now get the ost uuids */
1912         rc = get_lustre_param_path(param->fp_get_lmv ? "lmv" : "lov",
1913                                    obd_uuid.uuid, FILTER_BY_EXACT,
1914                                    "target_obd", &param_data);
1915         if (rc != 0)
1916                 return -ENOENT;
1917
1918         fp = fopen(param_data.gl_pathv[0], "r");
1919         if (fp == NULL) {
1920                 rc = -errno;
1921                 llapi_error(LLAPI_MSG_ERROR, rc, "error: opening '%s'",
1922                             param_data.gl_pathv[0]);
1923                 goto free_param;
1924         }
1925
1926         if (!param->fp_obd_uuid && !param->fp_quiet && !param->fp_obds_printed)
1927                 llapi_printf(LLAPI_MSG_NORMAL, "%s:\n",
1928                              param->fp_get_lmv ? "MDTS" : "OBDS");
1929
1930         snprintf(format, sizeof(format),
1931                  "%%d: %%%zus", sizeof(obd_uuid.uuid) - 1);
1932         while (fgets(buf, sizeof(buf), fp) != NULL) {
1933                 int index;
1934
1935                 if (sscanf(buf, format, &index, obd_uuid.uuid) < 2)
1936                         break;
1937
1938                 if (param->fp_obd_uuid) {
1939                         if (llapi_uuid_match(obd_uuid.uuid,
1940                                              param->fp_obd_uuid->uuid)) {
1941                                 param->fp_obd_index = index;
1942                                 break;
1943                         }
1944                 } else if (!param->fp_quiet && !param->fp_obds_printed) {
1945                         /* Print everything */
1946                         llapi_printf(LLAPI_MSG_NORMAL, "%s", buf);
1947                 }
1948         }
1949         param->fp_obds_printed = 1;
1950
1951         fclose(fp);
1952
1953         if (param->fp_obd_uuid && (param->fp_obd_index == OBD_NOT_FOUND)) {
1954                 llapi_err_noerrno(LLAPI_MSG_ERROR,
1955                                   "error: %s: unknown obduuid: %s",
1956                                   __func__, param->fp_obd_uuid->uuid);
1957                 rc = -EINVAL;
1958         }
1959 free_param:
1960         cfs_free_param_data(&param_data);
1961         return rc;
1962 }
1963
1964 /* In this case, param->fp_obd_uuid will be an array of obduuids and
1965  * obd index for all these obduuids will be returned in
1966  * param->fp_obd_indexes */
1967 static int setup_indexes(DIR *dir, char *path, struct obd_uuid *obduuids,
1968                          int num_obds, int **obdindexes, int *obdindex,
1969                          enum tgt_type type)
1970 {
1971         int ret, obdcount, obd_valid = 0, obdnum;
1972         long i;
1973         struct obd_uuid *uuids = NULL;
1974         char buf[16];
1975         int *indexes;
1976
1977         if (type == LOV_TYPE)
1978                 ret = get_param_lov(path, "numobd", buf, sizeof(buf));
1979         else
1980                 ret = get_param_lmv(path, "numobd", buf, sizeof(buf));
1981         if (ret != 0)
1982                 return ret;
1983
1984         obdcount = atoi(buf);
1985         uuids = malloc(obdcount * sizeof(struct obd_uuid));
1986         if (uuids == NULL)
1987                 return -ENOMEM;
1988
1989 retry_get_uuids:
1990         ret = llapi_get_target_uuids(dirfd(dir), uuids, &obdcount, type);
1991         if (ret) {
1992                 if (ret == -EOVERFLOW) {
1993                         struct obd_uuid *uuids_temp;
1994
1995                         uuids_temp = realloc(uuids, obdcount *
1996                                              sizeof(struct obd_uuid));
1997                         if (uuids_temp != NULL) {
1998                                 uuids = uuids_temp;
1999                                 goto retry_get_uuids;
2000                         }
2001                         ret = -ENOMEM;
2002                 }
2003
2004                 llapi_error(LLAPI_MSG_ERROR, ret, "get ost uuid failed");
2005                 goto out_free;
2006         }
2007
2008         indexes = malloc(num_obds * sizeof(*obdindex));
2009         if (indexes == NULL) {
2010                 ret = -ENOMEM;
2011                 goto out_free;
2012         }
2013
2014         for (obdnum = 0; obdnum < num_obds; obdnum++) {
2015                 char *end = NULL;
2016
2017                 /* The user may have specified a simple index */
2018                 i = strtol(obduuids[obdnum].uuid, &end, 0);
2019                 if (end && *end == '\0' && i < obdcount) {
2020                         indexes[obdnum] = i;
2021                         obd_valid++;
2022                 } else {
2023                         for (i = 0; i < obdcount; i++) {
2024                                 if (llapi_uuid_match(uuids[i].uuid,
2025                                                      obduuids[obdnum].uuid)) {
2026                                         indexes[obdnum] = i;
2027                                         obd_valid++;
2028                                         break;
2029                                 }
2030                         }
2031                 }
2032                 if (i >= obdcount) {
2033                         indexes[obdnum] = OBD_NOT_FOUND;
2034                         llapi_err_noerrno(LLAPI_MSG_ERROR,
2035                                           "error: %s: unknown obduuid: %s",
2036                                           __func__, obduuids[obdnum].uuid);
2037                         ret = -EINVAL;
2038                 }
2039         }
2040
2041         if (obd_valid == 0)
2042                 *obdindex = OBD_NOT_FOUND;
2043         else
2044                 *obdindex = obd_valid;
2045
2046         *obdindexes = indexes;
2047 out_free:
2048         if (uuids)
2049                 free(uuids);
2050
2051         return ret;
2052 }
2053
2054 static int setup_target_indexes(DIR *dir, char *path, struct find_param *param)
2055 {
2056         int ret = 0;
2057
2058         if (param->fp_mdt_uuid) {
2059                 ret = setup_indexes(dir, path, param->fp_mdt_uuid,
2060                                     param->fp_num_mdts,
2061                                     &param->fp_mdt_indexes,
2062                                     &param->fp_mdt_index, LMV_TYPE);
2063                 if (ret)
2064                         return ret;
2065         }
2066
2067         if (param->fp_obd_uuid) {
2068                 ret = setup_indexes(dir, path, param->fp_obd_uuid,
2069                                     param->fp_num_obds,
2070                                     &param->fp_obd_indexes,
2071                                     &param->fp_obd_index, LOV_TYPE);
2072                 if (ret)
2073                         return ret;
2074         }
2075
2076         param->fp_got_uuids = 1;
2077
2078         return ret;
2079 }
2080
2081 int llapi_ostlist(char *path, struct find_param *param)
2082 {
2083         int fd;
2084         int ret;
2085
2086         fd = open(path, O_RDONLY | O_DIRECTORY);
2087         if (fd < 0)
2088                 return -errno;
2089
2090         ret = setup_obd_uuid(fd, path, param);
2091         close(fd);
2092
2093         return ret;
2094 }
2095
2096 /*
2097  * Tries to determine the default stripe attributes for a given filesystem. The
2098  * filesystem to check should be specified by fsname, or will be determined
2099  * using pathname.
2100  */
2101 static int sattr_get_defaults(const char *const fsname,
2102                               unsigned int *scount,
2103                               unsigned int *ssize,
2104                               unsigned int *soffset)
2105 {
2106         char val[PATH_MAX];
2107         int rc;
2108
2109         if (scount) {
2110                 rc = get_lustre_param_value("lov", fsname, FILTER_BY_FS_NAME,
2111                                             "stripecount", val, sizeof(val));
2112                 if (rc != 0)
2113                         return rc;
2114                 *scount = atoi(val);
2115         }
2116
2117         if (ssize) {
2118                 rc = get_lustre_param_value("lov", fsname, FILTER_BY_FS_NAME,
2119                                             "stripesize", val, sizeof(val));
2120                 if (rc != 0)
2121                         return rc;
2122                 *ssize = atoi(val);
2123         }
2124
2125         if (soffset) {
2126                 rc = get_lustre_param_value("lov", fsname, FILTER_BY_FS_NAME,
2127                                             "stripeoffset", val, sizeof(val));
2128                 if (rc != 0)
2129                         return rc;
2130                 *soffset = atoi(val);
2131         }
2132
2133         return 0;
2134 }
2135
2136 /*
2137  * Tries to gather the default stripe attributes for a given filesystem. If
2138  * the attributes can be determined, they are cached for easy retreival the
2139  * next time they are needed. Only a single filesystem's attributes are
2140  * cached at a time.
2141  */
2142 int sattr_cache_get_defaults(const char *const fsname,
2143                              const char *const pathname, unsigned int *scount,
2144                              unsigned int *ssize, unsigned int *soffset)
2145 {
2146         static struct {
2147                 char fsname[PATH_MAX + 1];
2148                 unsigned int stripecount;
2149                 unsigned int stripesize;
2150                 unsigned int stripeoffset;
2151         } cache = {
2152                 .fsname = {'\0'}
2153         };
2154
2155         int rc;
2156         char fsname_buf[PATH_MAX + 1];
2157         unsigned int tmp[3];
2158
2159         if (fsname == NULL) {
2160                 rc = llapi_search_fsname(pathname, fsname_buf);
2161                 if (rc)
2162                         return rc;
2163         } else {
2164                 strlcpy(fsname_buf, fsname, sizeof(fsname_buf));
2165         }
2166
2167         if (strncmp(fsname_buf, cache.fsname, sizeof(fsname_buf) - 1) != 0) {
2168                 /*
2169                  * Ensure all 3 sattrs (count, size, and offset) are
2170                  * successfully retrieved and stored in tmp before writing to
2171                  * cache.
2172                  */
2173                 rc = sattr_get_defaults(fsname_buf, &tmp[0], &tmp[1], &tmp[2]);
2174                 if (rc != 0)
2175                         return rc;
2176
2177                 cache.stripecount = tmp[0];
2178                 cache.stripesize = tmp[1];
2179                 cache.stripeoffset = tmp[2];
2180                 strlcpy(cache.fsname, fsname_buf, sizeof(cache.fsname));
2181         }
2182
2183         if (scount)
2184                 *scount = cache.stripecount;
2185         if (ssize)
2186                 *ssize = cache.stripesize;
2187         if (soffset)
2188                 *soffset = cache.stripeoffset;
2189
2190         return 0;
2191 }
2192
2193 enum lov_dump_flags {
2194         LDF_IS_DIR      = 0x0001,
2195         LDF_IS_RAW      = 0x0002,
2196         LDF_INDENT      = 0x0004,
2197         LDF_SKIP_OBJS   = 0x0008,
2198         LDF_YAML        = 0x0010,
2199 };
2200
2201 static void lov_dump_user_lmm_header(struct lov_user_md *lum, char *path,
2202                                      struct lov_user_ost_data_v1 *objects,
2203                                      int verbose, int depth, char *pool_name,
2204                                      enum lov_dump_flags flags)
2205 {
2206         bool is_dir = flags & LDF_IS_DIR;
2207         bool is_raw = flags & LDF_IS_RAW;
2208         bool indent = flags & LDF_INDENT;
2209         bool yaml = flags & LDF_YAML;
2210         bool skip_objs = flags & LDF_SKIP_OBJS;
2211         char *prefix = is_dir ? "" : "lmm_";
2212         char *separator = "";
2213         char *space = indent ? "      " : "";
2214         int rc;
2215
2216         if (is_dir && lmm_oi_seq(&lum->lmm_oi) == FID_SEQ_LOV_DEFAULT) {
2217                 lmm_oi_set_seq(&lum->lmm_oi, 0);
2218                 if (!indent && (verbose & VERBOSE_DETAIL))
2219                         llapi_printf(LLAPI_MSG_NORMAL, "%s(Default) ", space);
2220         }
2221
2222         if (!yaml && !indent && depth && path &&
2223             ((verbose != VERBOSE_OBJID) || !is_dir))
2224                 llapi_printf(LLAPI_MSG_NORMAL, "%s\n", path);
2225
2226         if ((verbose & VERBOSE_DETAIL) && !is_dir) {
2227                 llapi_printf(LLAPI_MSG_NORMAL, "%s%smagic:         0x%08X\n",
2228                              space, prefix, lum->lmm_magic);
2229                 llapi_printf(LLAPI_MSG_NORMAL, "%s%sseq:           %#jx\n",
2230                              space, prefix,
2231                              (uintmax_t)lmm_oi_seq(&lum->lmm_oi));
2232                 llapi_printf(LLAPI_MSG_NORMAL, "%s%sobject_id:     %#jx\n",
2233                              space, prefix,
2234                              (uintmax_t)lmm_oi_id(&lum->lmm_oi));
2235         }
2236         if ((verbose & (VERBOSE_DETAIL | VERBOSE_DFID)) && !is_dir) {
2237                 __u64 seq;
2238                 __u32 oid;
2239                 __u32 ver;
2240
2241                 if (verbose & ~VERBOSE_DFID)
2242                         llapi_printf(LLAPI_MSG_NORMAL, "%slmm_fid:           ",
2243                                      space);
2244                 /* This needs a bit of hand-holding since old 1.x lmm_oi
2245                  * have { oi.oi_id = mds_inum, oi.oi_seq = 0 } and 2.x lmm_oi
2246                  * have { oi.oi_id = mds_oid, oi.oi_seq = mds_seq } instead of
2247                  * a real FID.  Ideally the 2.x code would have stored this
2248                  * like a FID with { oi_id = mds_seq, oi_seq = mds_oid } so the
2249                  * ostid union lu_fid { f_seq = mds_seq, f_oid = mds_oid }
2250                  * worked properly (especially since IGIF FIDs use mds_inum as
2251                  * the FID SEQ), but unfortunately that didn't happen.
2252                  *
2253                  * Print it to look like an IGIF FID, even though the fields
2254                  * are reversed on disk, so that it makes sense to userspace.
2255                  *
2256                  * Don't use ostid_id() and ostid_seq(), since they assume the
2257                  * oi_fid fields are in the right order.  This is why there are
2258                  * separate lmm_oi_seq() and lmm_oi_id() routines for this.
2259                  *
2260                  * For newer layout types hopefully this will be a real FID. */
2261                 seq = lmm_oi_seq(&lum->lmm_oi) == 0 ?
2262                         lmm_oi_id(&lum->lmm_oi) : lmm_oi_seq(&lum->lmm_oi);
2263                 oid = lmm_oi_seq(&lum->lmm_oi) == 0 ?
2264                         0 : (__u32)lmm_oi_id(&lum->lmm_oi);
2265                 ver = (__u32)(lmm_oi_id(&lum->lmm_oi) >> 32);
2266                 if (yaml)
2267                         llapi_printf(LLAPI_MSG_NORMAL, DFID_NOBRACE"\n",
2268                                      seq, oid, ver);
2269                 else
2270                         llapi_printf(LLAPI_MSG_NORMAL, DFID"\n",
2271                                      seq, oid, ver);
2272         }
2273
2274         if (verbose & VERBOSE_COUNT) {
2275                 if (verbose & ~VERBOSE_COUNT)
2276                         llapi_printf(LLAPI_MSG_NORMAL, "%s%sstripe_count:  ",
2277                                      space, prefix);
2278                 if (is_dir) {
2279                         if (!is_raw && lum->lmm_stripe_count == 0) {
2280                                 unsigned int scount;
2281                                 rc = sattr_cache_get_defaults(NULL, path,
2282                                                               &scount, NULL,
2283                                                               NULL);
2284                                 if (rc == 0)
2285                                         llapi_printf(LLAPI_MSG_NORMAL, "%d",
2286                                                      scount);
2287                                 else
2288                                         llapi_error(LLAPI_MSG_ERROR, rc,
2289                                                     "Cannot determine default"
2290                                                     " stripe count.");
2291                         } else {
2292                                 llapi_printf(LLAPI_MSG_NORMAL, "%d",
2293                                              lum->lmm_stripe_count ==
2294                                              (typeof(lum->lmm_stripe_count))(-1)
2295                                              ? -1 : lum->lmm_stripe_count);
2296                         }
2297                 } else {
2298                         llapi_printf(LLAPI_MSG_NORMAL, "%hd",
2299                                      (__s16)lum->lmm_stripe_count);
2300                 }
2301                 if (!yaml && is_dir)
2302                         separator = " ";
2303                 else
2304                         separator = "\n";
2305         }
2306
2307         if (verbose & VERBOSE_SIZE) {
2308                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2309                 if (verbose & ~VERBOSE_SIZE)
2310                         llapi_printf(LLAPI_MSG_NORMAL, "%s%sstripe_size:   ",
2311                                      space, prefix);
2312                 if (is_dir && !is_raw && lum->lmm_stripe_size == 0) {
2313                         unsigned int ssize;
2314                         rc = sattr_cache_get_defaults(NULL, path, NULL, &ssize,
2315                                                       NULL);
2316                         if (rc == 0)
2317                                 llapi_printf(LLAPI_MSG_NORMAL, "%u", ssize);
2318                         else
2319                                 llapi_error(LLAPI_MSG_ERROR, rc,
2320                                             "Cannot determine default"
2321                                             " stripe size.");
2322                 } else {
2323                         llapi_printf(LLAPI_MSG_NORMAL, "%u",
2324                                      lum->lmm_stripe_size);
2325                 }
2326                 if (!yaml && is_dir)
2327                         separator = " ";
2328                 else
2329                         separator = "\n";
2330         }
2331
2332         if ((verbose & VERBOSE_LAYOUT) && !is_dir) {
2333                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2334                 if (verbose & ~VERBOSE_LAYOUT)
2335                         llapi_printf(LLAPI_MSG_NORMAL, "%s%spattern:       ",
2336                                      space, prefix);
2337                 llapi_printf(LLAPI_MSG_NORMAL, "%.x", lum->lmm_pattern);
2338                 separator = "\n";
2339         }
2340
2341         if ((verbose & VERBOSE_GENERATION) && !is_dir) {
2342                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2343                 if (verbose & ~VERBOSE_GENERATION)
2344                         llapi_printf(LLAPI_MSG_NORMAL, "%s%slayout_gen:    ",
2345                                      space, prefix);
2346                 llapi_printf(LLAPI_MSG_NORMAL, "%u",
2347                              (int)lum->lmm_layout_gen);
2348                 separator = "\n";
2349         }
2350
2351         if (verbose & VERBOSE_OFFSET) {
2352                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2353                 if (verbose & ~VERBOSE_OFFSET)
2354                         llapi_printf(LLAPI_MSG_NORMAL, "%s%sstripe_offset: ",
2355                                      space, prefix);
2356                 if (is_dir || skip_objs)
2357                         llapi_printf(LLAPI_MSG_NORMAL, "%d",
2358                                      lum->lmm_stripe_offset ==
2359                                      (typeof(lum->lmm_stripe_offset))(-1) ? -1 :
2360                                      lum->lmm_stripe_offset);
2361                 else
2362                         llapi_printf(LLAPI_MSG_NORMAL, "%u",
2363                                      objects[0].l_ost_idx);
2364                 if (!yaml && is_dir)
2365                         separator = " ";
2366                 else
2367                         separator = "\n";
2368         }
2369
2370         if ((verbose & VERBOSE_POOL) && pool_name && (pool_name[0] != '\0')) {
2371                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2372                 if (verbose & ~VERBOSE_POOL)
2373                         llapi_printf(LLAPI_MSG_NORMAL, "%s%spool:          ",
2374                                      space, prefix);
2375                 llapi_printf(LLAPI_MSG_NORMAL, "%s", pool_name);
2376                 if (!yaml && is_dir)
2377                         separator = " ";
2378                 else
2379                         separator = "\n";
2380         }
2381
2382         if (strlen(separator) != 0)
2383                 llapi_printf(LLAPI_MSG_NORMAL, "\n");
2384 }
2385
2386 void lov_dump_user_lmm_v1v3(struct lov_user_md *lum, char *pool_name,
2387                             struct lov_user_ost_data_v1 *objects,
2388                             char *path, int obdindex, int depth,
2389                             int header, enum lov_dump_flags flags)
2390 {
2391         bool is_dir = flags & LDF_IS_DIR;
2392         bool indent = flags & LDF_INDENT;
2393         bool skip_objs = flags & LDF_SKIP_OBJS;
2394         bool yaml = flags & LDF_YAML;
2395         int i, obdstripe = (obdindex != OBD_NOT_FOUND) ? 0 : 1;
2396
2397         if (!obdstripe) {
2398                 for (i = 0; !is_dir && i < lum->lmm_stripe_count; i++) {
2399                         if (obdindex == objects[i].l_ost_idx) {
2400                                 obdstripe = 1;
2401                                 break;
2402                         }
2403                 }
2404         }
2405
2406         if (obdstripe == 0)
2407                 return;
2408
2409         lov_dump_user_lmm_header(lum, path, objects, header, depth, pool_name,
2410                                  flags);
2411
2412         if (!is_dir && !skip_objs && (header & VERBOSE_OBJID) &&
2413             !(lum->lmm_pattern & LOV_PATTERN_F_RELEASED)) {
2414                 char *space = "      - ";
2415
2416                 if (indent)
2417                         llapi_printf(LLAPI_MSG_NORMAL,
2418                                      "%6slmm_objects:\n", " ");
2419                 else if (yaml)
2420                         llapi_printf(LLAPI_MSG_NORMAL, "lmm_objects:\n");
2421                 else
2422                         llapi_printf(LLAPI_MSG_NORMAL,
2423                                 "\tobdidx\t\t objid\t\t objid\t\t group\n");
2424
2425                 for (i = 0; i < lum->lmm_stripe_count; i++) {
2426                         int idx = objects[i].l_ost_idx;
2427                         long long oid = ostid_id(&objects[i].l_ost_oi);
2428                         long long gr = ostid_seq(&objects[i].l_ost_oi);
2429
2430                         if (obdindex != OBD_NOT_FOUND && obdindex != idx)
2431                                 continue;
2432
2433                         if (yaml) {
2434                                 struct lu_fid fid = { 0 };
2435
2436                                 ostid_to_fid(&fid, &objects[i].l_ost_oi, idx);
2437                                 llapi_printf(LLAPI_MSG_NORMAL,
2438                                     "%sl_ost_idx: %d\n", space, idx);
2439                                 llapi_printf(LLAPI_MSG_NORMAL,
2440                                     "%8sl_fid:     "DFID_NOBRACE"\n",
2441                                     " ", PFID(&fid));
2442                         } else if (indent) {
2443                                 struct lu_fid fid = { 0 };
2444
2445                                 ostid_to_fid(&fid, &objects[i].l_ost_oi, idx);
2446                                 llapi_printf(LLAPI_MSG_NORMAL,
2447                                     "%s%d: { l_ost_idx: %d, l_fid: "DFID" }\n",
2448                                     space, i, idx, PFID(&fid));
2449                         } else {
2450                                 char fmt[48];
2451                                 sprintf(fmt, "%s%s%s\n",
2452                                         "\t%6u\t%14llu\t%#13llx\t",
2453                                         (fid_seq_is_rsvd(gr) ||
2454                                          fid_seq_is_mdt0(gr)) ?
2455                                          "%14llu" : "%#14llx", "%s");
2456                                 llapi_printf(LLAPI_MSG_NORMAL, fmt, idx, oid,
2457                                              oid, gr,
2458                                              obdindex == idx ? " *" : "");
2459                         }
2460                 }
2461                 llapi_printf(LLAPI_MSG_NORMAL, "\n");
2462         }
2463 }
2464
2465 void lmv_dump_user_lmm(struct lmv_user_md *lum, char *pool_name,
2466                        char *path, int obdindex, int depth, int verbose,
2467                        enum lov_dump_flags flags)
2468 {
2469         struct lmv_user_mds_data *objects = lum->lum_objects;
2470         char *prefix = lum->lum_magic == LMV_USER_MAGIC ? "(Default)" : "";
2471         int i, obdstripe = 0;
2472         char *separator = "";
2473         bool yaml = flags & LDF_YAML;
2474
2475         if (obdindex != OBD_NOT_FOUND) {
2476                 if (lum->lum_stripe_count == 0) {
2477                         if (obdindex == lum->lum_stripe_offset)
2478                                 obdstripe = 1;
2479                 } else {
2480                         for (i = 0; i < lum->lum_stripe_count; i++) {
2481                                 if (obdindex == objects[i].lum_mds) {
2482                                         llapi_printf(LLAPI_MSG_NORMAL,
2483                                                      "%s%s\n", prefix,
2484                                                      path);
2485                                         obdstripe = 1;
2486                                         break;
2487                                 }
2488                         }
2489                 }
2490         } else {
2491                 obdstripe = 1;
2492         }
2493
2494         if (!obdstripe)
2495                 return;
2496
2497         /* show all information default */
2498         if (!verbose) {
2499                 if (lum->lum_magic == LMV_USER_MAGIC)
2500                         verbose = VERBOSE_POOL | VERBOSE_COUNT |
2501                                   VERBOSE_OFFSET | VERBOSE_HASH_TYPE;
2502                 else
2503                         verbose = VERBOSE_OBJID;
2504         }
2505
2506         if (depth && path && ((verbose != VERBOSE_OBJID)))
2507                 llapi_printf(LLAPI_MSG_NORMAL, "%s%s\n", prefix, path);
2508
2509         if (verbose & VERBOSE_COUNT) {
2510                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2511                 if (verbose & ~VERBOSE_COUNT)
2512                         llapi_printf(LLAPI_MSG_NORMAL, "lmv_stripe_count: ");
2513                 llapi_printf(LLAPI_MSG_NORMAL, "%u",
2514                              (int)lum->lum_stripe_count);
2515                 if ((verbose & VERBOSE_OFFSET) && !yaml)
2516                         separator = " ";
2517                 else
2518                         separator = "\n";
2519         }
2520
2521         if (verbose & VERBOSE_OFFSET) {
2522                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2523                 if (verbose & ~VERBOSE_OFFSET)
2524                         llapi_printf(LLAPI_MSG_NORMAL, "lmv_stripe_offset: ");
2525                 llapi_printf(LLAPI_MSG_NORMAL, "%d",
2526                              (int)lum->lum_stripe_offset);
2527                 if (verbose & VERBOSE_HASH_TYPE && !yaml)
2528                         separator = " ";
2529                 else
2530                         separator = "\n";
2531         }
2532
2533         if (verbose & VERBOSE_HASH_TYPE) {
2534                 unsigned int type = lum->lum_hash_type;
2535
2536                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2537                 if (verbose & ~VERBOSE_HASH_TYPE)
2538                         llapi_printf(LLAPI_MSG_NORMAL, "lmv_hash_type: ");
2539                 if (type < LMV_HASH_TYPE_MAX)
2540                         llapi_printf(LLAPI_MSG_NORMAL, "%s",
2541                                      mdt_hash_name[type]);
2542                 else
2543                         llapi_printf(LLAPI_MSG_NORMAL, "%d",
2544                                      (int)type);
2545                 separator = "\n";
2546         }
2547
2548         if (verbose & VERBOSE_OBJID && lum->lum_magic != LMV_USER_MAGIC) {
2549                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2550                 if (obdstripe == 1 && lum->lum_stripe_count > 0)
2551                         llapi_printf(LLAPI_MSG_NORMAL,
2552                                      "mdtidx\t\t FID[seq:oid:ver]\n");
2553                 for (i = 0; i < lum->lum_stripe_count; i++) {
2554                         int idx = objects[i].lum_mds;
2555                         struct lu_fid *fid = &objects[i].lum_fid;
2556                         if ((obdindex == OBD_NOT_FOUND) || (obdindex == idx))
2557                                 llapi_printf(LLAPI_MSG_NORMAL,
2558                                              "%6u\t\t "DFID"\t\t%s\n",
2559                                             idx, PFID(fid),
2560                                             obdindex == idx ? " *" : "");
2561                 }
2562
2563         }
2564
2565         if ((verbose & VERBOSE_POOL) && pool_name != NULL &&
2566              pool_name[0] != '\0') {
2567                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2568                 if (verbose & ~VERBOSE_POOL)
2569                         llapi_printf(LLAPI_MSG_NORMAL, "%slmv_pool:           ",
2570                                      prefix);
2571                 llapi_printf(LLAPI_MSG_NORMAL, "%s%c ", pool_name, ' ');
2572                 separator = "\n";
2573         }
2574
2575         if (!(verbose & VERBOSE_OBJID) || lum->lum_magic == LMV_USER_MAGIC)
2576                 llapi_printf(LLAPI_MSG_NORMAL, "\n");
2577 }
2578
2579 static void lov_dump_comp_v1_header(struct find_param *param, char *path,
2580                                     enum lov_dump_flags flags)
2581 {
2582         struct lov_comp_md_v1 *comp_v1 = (void *)&param->fp_lmd->lmd_lmm;
2583         int depth = param->fp_max_depth;
2584         int verbose = param->fp_verbose;
2585         bool yaml = flags & LDF_YAML;
2586
2587         if (depth && path && ((verbose != VERBOSE_OBJID) ||
2588                               !(flags & LDF_IS_DIR)) && !yaml)
2589                 llapi_printf(LLAPI_MSG_NORMAL, "%s\n", path);
2590
2591         if (verbose & VERBOSE_DETAIL) {
2592                 llapi_printf(LLAPI_MSG_NORMAL, "composite_header:\n");
2593                 llapi_printf(LLAPI_MSG_NORMAL, "%2slcm_magic:       0x%08X\n",
2594                              " ", comp_v1->lcm_magic);
2595                 llapi_printf(LLAPI_MSG_NORMAL, "%2slcm_size:        %u\n",
2596                              " ", comp_v1->lcm_size);
2597                 llapi_printf(LLAPI_MSG_NORMAL, "%2slcm_flags:       %u\n",
2598                              " ", comp_v1->lcm_flags);
2599         }
2600
2601         if (verbose & VERBOSE_GENERATION) {
2602                 if (verbose & ~VERBOSE_GENERATION)
2603                         llapi_printf(LLAPI_MSG_NORMAL, "%2slcm_layout_gen:  ",
2604                                      " ");
2605                 llapi_printf(LLAPI_MSG_NORMAL, "%u\n", comp_v1->lcm_layout_gen);
2606         }
2607
2608         if (verbose & VERBOSE_COMP_COUNT) {
2609                 if (verbose & ~VERBOSE_COMP_COUNT)
2610                         llapi_printf(LLAPI_MSG_NORMAL, "%2slcm_entry_count: ",
2611                                      " ");
2612                 llapi_printf(LLAPI_MSG_NORMAL, "%u\n",
2613                              comp_v1->lcm_magic == LOV_USER_MAGIC_COMP_V1 ?
2614                              comp_v1->lcm_entry_count : 0);
2615         }
2616
2617         if (verbose & VERBOSE_DETAIL && !yaml)
2618                 llapi_printf(LLAPI_MSG_NORMAL, "components:\n");
2619 }
2620
2621 static void comp_flags2str(__u32 comp_flags)
2622 {
2623         bool found = false;
2624         int i = 0;
2625
2626         if (!comp_flags) {
2627                 llapi_printf(LLAPI_MSG_NORMAL, "0");
2628                 return;
2629         }
2630         for (i = 0; i < ARRAY_SIZE(comp_flags_table); i++) {
2631                 if (comp_flags & comp_flags_table[i].cfn_flag) {
2632                         if (found)
2633                                 llapi_printf(LLAPI_MSG_NORMAL, ",");
2634                         llapi_printf(LLAPI_MSG_NORMAL, "%s",
2635                                      comp_flags_table[i].cfn_name);
2636                         comp_flags &= ~comp_flags_table[i].cfn_flag;
2637                         found = true;
2638                 }
2639         }
2640         if (comp_flags) {
2641                 if (found)
2642                         llapi_printf(LLAPI_MSG_NORMAL, ",");
2643                 llapi_printf(LLAPI_MSG_NORMAL, "%#x", comp_flags);
2644         }
2645 }
2646
2647 static void lov_dump_comp_v1_entry(struct find_param *param,
2648                                    enum lov_dump_flags flags, int index)
2649 {
2650         struct lov_comp_md_v1 *comp_v1 = (void *)&param->fp_lmd->lmd_lmm;
2651         struct lov_comp_md_entry_v1 *entry;
2652         char *separator = "";
2653         int verbose = param->fp_verbose;
2654         bool yaml = flags & LDF_YAML;
2655
2656         entry = &comp_v1->lcm_entries[index];
2657
2658         if (yaml)
2659                 llapi_printf(LLAPI_MSG_NORMAL, "%2scomponent%d:\n", " ", index);
2660
2661         if (verbose & VERBOSE_COMP_ID) {
2662                 if (verbose & VERBOSE_DETAIL && !yaml)
2663                         llapi_printf(LLAPI_MSG_NORMAL,
2664                                      "%slcme_id:             ", "  - ");
2665                 else if (verbose & ~VERBOSE_COMP_ID)
2666                         llapi_printf(LLAPI_MSG_NORMAL,
2667                                      "%4slcme_id:             ", " ");
2668                 if (entry->lcme_id != LCME_ID_INVAL)
2669                         llapi_printf(LLAPI_MSG_NORMAL, "%u", entry->lcme_id);
2670                 else
2671                         llapi_printf(LLAPI_MSG_NORMAL, "N/A");
2672                 separator = "\n";
2673         }
2674
2675         if (verbose & VERBOSE_COMP_FLAGS) {
2676                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2677                 if (verbose & ~VERBOSE_COMP_FLAGS)
2678                         llapi_printf(LLAPI_MSG_NORMAL,
2679                                      "%4slcme_flags:          ", " ");
2680                 comp_flags2str(entry->lcme_flags);
2681                 separator = "\n";
2682         }
2683
2684         if (verbose & VERBOSE_COMP_START) {
2685                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2686                 if (verbose & ~VERBOSE_COMP_START)
2687                         llapi_printf(LLAPI_MSG_NORMAL,
2688                                      "%4slcme_extent.e_start: ", " ");
2689                 llapi_printf(LLAPI_MSG_NORMAL, "%llu",
2690                              entry->lcme_extent.e_start);
2691                 separator = "\n";
2692         }
2693
2694         if (verbose & VERBOSE_COMP_END) {
2695                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2696                 if (verbose & ~VERBOSE_COMP_END)
2697                         llapi_printf(LLAPI_MSG_NORMAL,
2698                                      "%4slcme_extent.e_end:   ", " ");
2699                 if (entry->lcme_extent.e_end == LUSTRE_EOF)
2700                         llapi_printf(LLAPI_MSG_NORMAL, "%s", "EOF");
2701                 else
2702                         llapi_printf(LLAPI_MSG_NORMAL, "%llu",
2703                                         entry->lcme_extent.e_end);
2704                 separator = "\n";
2705         }
2706
2707         if (yaml) {
2708                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2709                 llapi_printf(LLAPI_MSG_NORMAL, "%4ssub_layout:\n", " ");
2710         } else if (verbose & VERBOSE_DETAIL) {
2711                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2712                 llapi_printf(LLAPI_MSG_NORMAL, "%4slcme_offset:         %u\n",
2713                              " ", entry->lcme_offset);
2714                 llapi_printf(LLAPI_MSG_NORMAL, "%4slcme_size:           %u\n",
2715                              " ", entry->lcme_size);
2716                 llapi_printf(LLAPI_MSG_NORMAL, "%4ssub_layout:\n", " ");
2717         } else {
2718                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2719         }
2720 }
2721
2722 /* Check if the value matches 1 of the given criteria (e.g. --atime +/-N).
2723  * @mds indicates if this is MDS timestamps and there are attributes on OSTs.
2724  *
2725  * The result is -1 if it does not match, 0 if not yet clear, 1 if matches.
2726  * The table below gives the answers for the specified parameters (value and
2727  * sign), 1st column is the answer for the MDS value, the 2nd is for the OST:
2728  * --------------------------------------
2729  * 1 | file > limit; sign > 0 | -1 / -1 |
2730  * 2 | file = limit; sign > 0 | -1 / -1 |
2731  * 3 | file < limit; sign > 0 |  ? /  1 |
2732  * 4 | file > limit; sign = 0 | -1 / -1 |
2733  * 5 | file = limit; sign = 0 |  ? /  1 |  <- (see the Note below)
2734  * 6 | file < limit; sign = 0 |  ? / -1 |
2735  * 7 | file > limit; sign < 0 |  1 /  1 |
2736  * 8 | file = limit; sign < 0 |  ? / -1 |
2737  * 9 | file < limit; sign < 0 |  ? / -1 |
2738  * --------------------------------------
2739  * Note: 5th actually means that the value is within the interval
2740  * (limit - margin, limit]. */
2741 static int find_value_cmp(unsigned long long file, unsigned long long limit,
2742                           int sign, int negopt, unsigned long long margin,
2743                           int mds)
2744 {
2745         int ret = -1;
2746
2747         if (sign > 0) {
2748                 /* Drop the fraction of margin (of days). */
2749                 if (file + margin <= limit)
2750                         ret = mds ? 0 : 1;
2751         } else if (sign == 0) {
2752                 if (file <= limit && file + margin > limit)
2753                         ret = mds ? 0 : 1;
2754                 else if (file + margin <= limit)
2755                         ret = mds ? 0 : -1;
2756         } else if (sign < 0) {
2757                 if (file > limit)
2758                         ret = 1;
2759                 else if (mds)
2760                         ret = 0;
2761         }
2762
2763         return negopt ? ~ret + 1 : ret;
2764 }
2765
2766 static inline struct lov_user_md *
2767 lov_comp_entry(struct lov_comp_md_v1 *comp_v1, int ent_idx)
2768 {
2769         return (struct lov_user_md *)((char *)comp_v1 +
2770                         comp_v1->lcm_entries[ent_idx].lcme_offset);
2771 }
2772
2773 static inline struct lov_user_ost_data_v1 *
2774 lov_v1v3_objects(struct lov_user_md *v1)
2775 {
2776         if (v1->lmm_magic == LOV_USER_MAGIC_V3)
2777                 return ((struct lov_user_md_v3 *)v1)->lmm_objects;
2778         else
2779                 return v1->lmm_objects;
2780 }
2781
2782 static inline void
2783 lov_v1v3_pool_name(struct lov_user_md *v1, char *pool_name)
2784 {
2785         if (v1->lmm_magic == LOV_USER_MAGIC_V3)
2786                 strlcpy(pool_name, ((struct lov_user_md_v3 *)v1)->lmm_pool_name,
2787                         LOV_MAXPOOLNAME);
2788         else
2789                 pool_name[0] = '\0';
2790 }
2791
2792 static inline bool
2793 print_last_init_comp(struct find_param *param)
2794 {
2795         /* print all component info */
2796         if ((param->fp_verbose & VERBOSE_DEFAULT) == VERBOSE_DEFAULT)
2797                 return false;
2798
2799         /* print specific component info */
2800         if (param->fp_check_comp_id || param->fp_check_comp_flags ||
2801             param->fp_check_comp_start || param->fp_check_comp_end)
2802                 return false;
2803
2804         return true;
2805 }
2806
2807 static int find_comp_end_cmp(unsigned long long end, struct find_param *param)
2808 {
2809         int match;
2810
2811         if (param->fp_comp_end == LUSTRE_EOF) {
2812                 if (param->fp_comp_end_sign == 0) /* equal to EOF */
2813                         match = end == LUSTRE_EOF ? 1 : -1;
2814                 else if (param->fp_comp_end_sign > 0) /* at most EOF */
2815                         match = end == LUSTRE_EOF ? -1 : 1;
2816                 else /* at least EOF */
2817                         match = -1;
2818                 if (param->fp_exclude_comp_end)
2819                         match = ~match + 1;
2820         } else {
2821                 unsigned long long margin;
2822
2823                 margin = end == LUSTRE_EOF ? 0 : param->fp_comp_end_units;
2824                 match = find_value_cmp(end, param->fp_comp_end,
2825                                        param->fp_comp_end_sign,
2826                                        param->fp_exclude_comp_end, margin, 0);
2827         }
2828
2829         return match;
2830 }
2831
2832 /**
2833  * An example of "getstripe -v" for a two components PFL file:
2834  *
2835  * composite_header:
2836  * lcm_magic:       0x0BD60BD0
2837  * lcm_size:        264
2838  * lcm_flags:       0
2839  * lcm_layout_gen:  2
2840  * lcm_entry_count: 2
2841  * components:
2842  * - lcme_id:             1
2843  *   lcme_flags:          0x10
2844  *   lcme_extent.e_start: 0
2845  *   lcme_extent.e_end:   1048576
2846  *   lcme_offset:         128
2847  *   lcme_size:           56
2848  *   sub_layout:
2849  *     lmm_magic:         0x0BD10BD0
2850  *     lmm_seq:           0x200000401
2851  *     lmm_object_id:     0x1
2852  *     lmm_fid:           [0x200000401:0x1:0x0]
2853  *     lmm_stripe_count:  1
2854  *     lmm_stripe_size:   1048576
2855  *     lmm_pattern:       1
2856  *     lmm_layout_gen:    0
2857  *     lmm_stripe_offset: 0
2858  *     lmm_objects:
2859  *     - 0: { l_ost_idx: 0, l_fid: [0x100000000:0x2:0x0] }
2860  *
2861  * - lcme_id:             2
2862  *   lcme_flags:          0x10
2863  *   lcme_extent.e_start: 1048576
2864  *   lcme_extent.e_end:   EOF
2865  *   lcme_offset:         184
2866  *   lcme_size:           80
2867  *     sub_layout:
2868  *     lmm_magic:         0x0BD10BD0
2869  *     lmm_seq:           0x200000401
2870  *     lmm_object_id:     0x1
2871  *     lmm_fid:           [0x200000401:0x1:0x0]
2872  *     lmm_stripe_count:  2
2873  *     lmm_stripe_size:   1048576
2874  *     lmm_pattern:       1
2875  *     lmm_layout_gen:    0
2876  *     lmm_stripe_offset: 1
2877  *     lmm_objects:
2878  *     - 0: { l_ost_idx: 1, l_fid: [0x100010000:0x2:0x0] }
2879  *     - 1: { l_ost_idx: 0, l_fid: [0x100000000:0x3:0x0] }
2880  */
2881 static void lov_dump_comp_v1(struct find_param *param, char *path,
2882                              enum lov_dump_flags flags)
2883 {
2884         struct lov_comp_md_entry_v1 *entry;
2885         struct lov_user_ost_data_v1 *objects;
2886         struct lov_comp_md_v1 *comp_v1 = (void *)&param->fp_lmd->lmd_lmm;
2887         struct lov_user_md_v1 *v1;
2888         char pool_name[LOV_MAXPOOLNAME + 1];
2889         int obdindex = param->fp_obd_index;
2890         int i, j, match, obdstripe = 0;
2891
2892         if (obdindex != OBD_NOT_FOUND) {
2893                 for (i = 0; !(flags & LDF_IS_DIR) &&
2894                             i < comp_v1->lcm_entry_count; i++) {
2895                         if (!(comp_v1->lcm_entries[i].lcme_flags &
2896                               LCME_FL_INIT))
2897                                 continue;
2898
2899                         v1 = lov_comp_entry(comp_v1, i);
2900                         objects = lov_v1v3_objects(v1);
2901
2902                         for (j = 0; j < v1->lmm_stripe_count; j++) {
2903                                 if (obdindex == objects[j].l_ost_idx) {
2904                                         obdstripe = 1;
2905                                         break;
2906                                 }
2907                         }
2908                 }
2909         } else {
2910                 obdstripe = 1;
2911         }
2912
2913         if (obdstripe == 0)
2914                 return;
2915
2916         lov_dump_comp_v1_header(param, path, flags);
2917
2918         flags |= LDF_INDENT;
2919
2920         for (i = 0; i < comp_v1->lcm_entry_count; i++) {
2921                 entry = &comp_v1->lcm_entries[i];
2922
2923                 if (param->fp_check_comp_flags) {
2924                         if ((param->fp_exclude_comp_flags &&
2925                              (param->fp_comp_flags & entry->lcme_flags)) ||
2926                             (!param->fp_exclude_comp_flags &&
2927                              !(param->fp_comp_flags & entry->lcme_flags)))
2928                                 continue;
2929                 }
2930
2931                 if (param->fp_check_comp_id &&
2932                     param->fp_comp_id != entry->lcme_id)
2933                         continue;
2934
2935                 if (param->fp_check_comp_start) {
2936                         match = find_value_cmp(entry->lcme_extent.e_start,
2937                                                param->fp_comp_start,
2938                                                param->fp_comp_start_sign,
2939                                                0,
2940                                                param->fp_comp_start_units, 0);
2941                         if (match == -1)
2942                                 continue;
2943                 }
2944
2945                 if (param->fp_check_comp_end) {
2946                         match = find_comp_end_cmp(entry->lcme_extent.e_end,
2947                                                   param);
2948                         if (match == -1)
2949                                 continue;
2950                 }
2951
2952                 if (print_last_init_comp(param)) {
2953                         /**
2954                          * if part of stripe info is needed, we'd print only
2955                          * the last instantiated component info.
2956                          */
2957                         if (entry->lcme_flags & LCME_FL_INIT)
2958                                 continue;
2959                         else
2960                                 break;
2961                 }
2962
2963                 if (entry->lcme_flags & LCME_FL_INIT)
2964                         flags &= ~LDF_SKIP_OBJS;
2965                 else
2966                         flags |= LDF_SKIP_OBJS;
2967
2968                 lov_dump_comp_v1_entry(param, flags, i);
2969
2970                 v1 = lov_comp_entry(comp_v1, i);
2971                 objects = lov_v1v3_objects(v1);
2972                 lov_v1v3_pool_name(v1, pool_name);
2973
2974                 lov_dump_user_lmm_v1v3(v1, pool_name, objects, path, obdindex,
2975                                        param->fp_max_depth, param->fp_verbose,
2976                                        flags);
2977         }
2978         if (print_last_init_comp(param)) {
2979                 /**
2980                  * directory layout contains only layout template, print the
2981                  * last component.
2982                  */
2983                 if (i == 0)
2984                         i = comp_v1->lcm_entry_count - 1;
2985                 else
2986                         i--;
2987                 flags &= ~LDF_SKIP_OBJS;
2988
2989                 lov_dump_comp_v1_entry(param, flags, i);
2990
2991                 v1 = lov_comp_entry(comp_v1, i);
2992                 objects = lov_v1v3_objects(v1);
2993                 lov_v1v3_pool_name(v1, pool_name);
2994
2995                 lov_dump_user_lmm_v1v3(v1, pool_name, objects, path, obdindex,
2996                                        param->fp_max_depth, param->fp_verbose,
2997                                        flags);
2998         }
2999 }
3000
3001 #define VERBOSE_COMP_OPTS       (VERBOSE_COMP_COUNT | VERBOSE_COMP_ID | \
3002                                  VERBOSE_COMP_START | VERBOSE_COMP_END | \
3003                                  VERBOSE_COMP_FLAGS)
3004
3005 static inline bool has_any_comp_options(struct find_param *param)
3006 {
3007         int verbose = param->fp_verbose;
3008
3009         if (param->fp_check_comp_id || param->fp_check_comp_count ||
3010             param->fp_check_comp_start || param->fp_check_comp_end ||
3011             param->fp_check_comp_flags)
3012                 return true;
3013
3014         /* show full layout information, not component specific */
3015         if ((verbose & ~VERBOSE_DETAIL) == VERBOSE_DEFAULT)
3016                 return false;
3017
3018         return verbose & VERBOSE_COMP_OPTS;
3019 }
3020
3021 struct lov_user_mds_data *lov_forge_comp_v1(struct lov_user_mds_data *orig,
3022                                             bool is_dir)
3023 {
3024         struct lov_user_md *lum = &orig->lmd_lmm;
3025         struct lov_user_mds_data *new;
3026         struct lov_comp_md_v1 *comp_v1;
3027         struct lov_comp_md_entry_v1 *ent;
3028         int lum_off = sizeof(*comp_v1) + sizeof(*ent);
3029         int lum_size = lov_user_md_size(is_dir ? 0 : lum->lmm_stripe_count,
3030                                         lum->lmm_magic);
3031
3032         new = malloc(sizeof(lstat_t) + lum_off + lum_size);
3033         if (new == NULL) {
3034                 llapi_printf(LLAPI_MSG_NORMAL, "out of memory\n");
3035                 return new;
3036         }
3037
3038         memcpy(new, orig, sizeof(lstat_t));
3039
3040         comp_v1 = (struct lov_comp_md_v1 *)&new->lmd_lmm;
3041         comp_v1->lcm_magic = lum->lmm_magic;
3042         comp_v1->lcm_size = lum_off + lum_size;
3043         comp_v1->lcm_layout_gen = is_dir ? 0 : lum->lmm_layout_gen;
3044         comp_v1->lcm_flags = 0;
3045         comp_v1->lcm_entry_count = 1;
3046
3047         ent = &comp_v1->lcm_entries[0];
3048         ent->lcme_id = 0;
3049         ent->lcme_flags = is_dir ? 0 : LCME_FL_INIT;
3050         ent->lcme_extent.e_start = 0;
3051         ent->lcme_extent.e_end = LUSTRE_EOF;
3052         ent->lcme_offset = lum_off;
3053         ent->lcme_size = lum_size;
3054
3055         memcpy((char *)comp_v1 + lum_off, lum, lum_size);
3056
3057         return new;
3058 }
3059
3060 static void lov_dump_plain_user_lmm(struct find_param *param, char *path,
3061                                     enum lov_dump_flags flags)
3062 {
3063         __u32 magic = *(__u32 *)&param->fp_lmd->lmd_lmm;
3064
3065         if (has_any_comp_options(param)) {
3066                 struct lov_user_mds_data *new_lmd, *orig_lmd;
3067
3068                 orig_lmd = param->fp_lmd;
3069                 new_lmd = lov_forge_comp_v1(orig_lmd, flags & LDF_IS_DIR);
3070                 if (new_lmd != NULL) {
3071                         param->fp_lmd = new_lmd;
3072                         lov_dump_comp_v1(param, path, flags);
3073                         param->fp_lmd = orig_lmd;
3074                         free(new_lmd);
3075                 }
3076                 return;
3077         }
3078
3079         if (magic == LOV_USER_MAGIC_V1) {
3080                 lov_dump_user_lmm_v1v3(&param->fp_lmd->lmd_lmm, NULL,
3081                                        param->fp_lmd->lmd_lmm.lmm_objects,
3082                                        path, param->fp_obd_index,
3083                                        param->fp_max_depth, param->fp_verbose,
3084                                        flags);
3085         } else {
3086                 char pool_name[LOV_MAXPOOLNAME + 1];
3087                 struct lov_user_ost_data_v1 *objects;
3088                 struct lov_user_md_v3 *lmmv3 = (void *)&param->fp_lmd->lmd_lmm;
3089
3090                 strlcpy(pool_name, lmmv3->lmm_pool_name, sizeof(pool_name));
3091                 objects = lmmv3->lmm_objects;
3092                 lov_dump_user_lmm_v1v3(&param->fp_lmd->lmd_lmm, pool_name,
3093                                        objects, path, param->fp_obd_index,
3094                                        param->fp_max_depth, param->fp_verbose,
3095                                        flags);
3096         }
3097 }
3098
3099 static void llapi_lov_dump_user_lmm(struct find_param *param, char *path,
3100                                     enum lov_dump_flags flags)
3101 {
3102         __u32 magic;
3103
3104         if (param->fp_get_lmv || param->fp_get_default_lmv)
3105                 magic = (__u32)param->fp_lmv_md->lum_magic;
3106         else
3107                 magic = *(__u32 *)&param->fp_lmd->lmd_lmm; /* lum->lmm_magic */
3108
3109         if (param->fp_raw)
3110                 flags |= LDF_IS_RAW;
3111         if (param->fp_yaml)
3112                 flags |= LDF_YAML;
3113
3114         switch (magic) {
3115         case LOV_USER_MAGIC_V1:
3116         case LOV_USER_MAGIC_V3:
3117                 lov_dump_plain_user_lmm(param, path, flags);
3118                 break;
3119         case LMV_MAGIC_V1:
3120         case LMV_USER_MAGIC: {
3121                 char pool_name[LOV_MAXPOOLNAME + 1];
3122                 struct lmv_user_md *lum;
3123
3124                 lum = (struct lmv_user_md *)param->fp_lmv_md;
3125                 strlcpy(pool_name, lum->lum_pool_name, sizeof(pool_name));
3126                 lmv_dump_user_lmm(lum, pool_name, path, param->fp_obd_index,
3127                                   param->fp_max_depth, param->fp_verbose,
3128                                   flags);
3129                 break;
3130         }
3131         case LOV_USER_MAGIC_COMP_V1:
3132                 lov_dump_comp_v1(param, path, flags);
3133                 break;
3134         default:
3135                 llapi_printf(LLAPI_MSG_NORMAL, "unknown lmm_magic:  %#x "
3136                              "(expecting one of %#x %#x %#x %#x)\n",
3137                              *(__u32 *)&param->fp_lmd->lmd_lmm,
3138                              LOV_USER_MAGIC_V1, LOV_USER_MAGIC_V3,
3139                              LMV_USER_MAGIC, LMV_MAGIC_V1);
3140                 return;
3141         }
3142 }
3143
3144 int llapi_file_get_stripe(const char *path, struct lov_user_md *lum)
3145 {
3146         const char *fname;
3147         char *dname;
3148         int fd, rc = 0;
3149
3150         fname = strrchr(path, '/');
3151
3152         /* It should be a file (or other non-directory) */
3153         if (fname == NULL) {
3154                 dname = (char *)malloc(2);
3155                 if (dname == NULL)
3156                         return -ENOMEM;
3157                 strcpy(dname, ".");
3158                 fname = (char *)path;
3159         } else {
3160                 dname = (char *)malloc(fname - path + 1);
3161                 if (dname == NULL)
3162                         return -ENOMEM;
3163                 strncpy(dname, path, fname - path);
3164                 dname[fname - path] = '\0';
3165                 fname++;
3166         }
3167
3168         fd = open(dname, O_RDONLY | O_NONBLOCK);
3169         if (fd == -1) {
3170                 rc = -errno;
3171                 free(dname);
3172                 return rc;
3173         }
3174
3175         strcpy((char *)lum, fname);
3176         if (ioctl(fd, IOC_MDC_GETFILESTRIPE, (void *)lum) == -1)
3177                 rc = -errno;
3178
3179         if (close(fd) == -1 && rc == 0)
3180                 rc = -errno;
3181
3182         free(dname);
3183         return rc;
3184 }
3185
3186 int llapi_file_lookup(int dirfd, const char *name)
3187 {
3188         struct obd_ioctl_data data = { 0 };
3189         char rawbuf[8192];
3190         char *buf = rawbuf;
3191         int rc;
3192
3193         if (dirfd < 0 || name == NULL)
3194                 return -EINVAL;
3195
3196         data.ioc_version = OBD_IOCTL_VERSION;
3197         data.ioc_len = sizeof(data);
3198         data.ioc_inlbuf1 = (char *)name;
3199         data.ioc_inllen1 = strlen(name) + 1;
3200
3201         rc = llapi_ioctl_pack(&data, &buf, sizeof(rawbuf));
3202         if (rc) {
3203                 llapi_error(LLAPI_MSG_ERROR, rc,
3204                             "error: IOC_MDC_LOOKUP pack failed for '%s': rc %d",
3205                             name, rc);
3206                 return rc;
3207         }
3208
3209         rc = ioctl(dirfd, IOC_MDC_LOOKUP, buf);
3210         if (rc < 0)
3211                 rc = -errno;
3212         return rc;
3213 }
3214
3215 /* Check if the file time matches all the given criteria (e.g. --atime +/-N).
3216  * Return -1 or 1 if file timestamp does not or does match the given criteria
3217  * correspondingly. Return 0 if the MDS time is being checked and there are
3218  * attributes on OSTs and it is not yet clear if the timespamp matches.
3219  *
3220  * If 0 is returned, we need to do another RPC to the OSTs to obtain the
3221  * updated timestamps. */
3222 static int find_time_check(lstat_t *st, struct find_param *param, int mds)
3223 {
3224         int rc = 1;
3225         int rc2;
3226
3227         /* Check if file is accepted. */
3228         if (param->fp_atime) {
3229                 rc2 = find_value_cmp(st->st_atime, param->fp_atime,
3230                                      param->fp_asign, param->fp_exclude_atime,
3231                                      24 * 60 * 60, mds);
3232                 if (rc2 < 0)
3233                         return rc2;
3234                 rc = rc2;
3235         }
3236
3237         if (param->fp_mtime) {
3238                 rc2 = find_value_cmp(st->st_mtime, param->fp_mtime,
3239                                      param->fp_msign, param->fp_exclude_mtime,
3240                                      24 * 60 * 60, mds);
3241                 if (rc2 < 0)
3242                         return rc2;
3243
3244                 /* If the previous check matches, but this one is not yet clear,
3245                  * we should return 0 to do an RPC on OSTs. */
3246                 if (rc == 1)
3247                         rc = rc2;
3248         }
3249
3250         if (param->fp_ctime) {
3251                 rc2 = find_value_cmp(st->st_ctime, param->fp_ctime,
3252                                      param->fp_csign, param->fp_exclude_ctime,
3253                                      24 * 60 * 60, mds);
3254                 if (rc2 < 0)
3255                         return rc2;
3256
3257                 /* If the previous check matches, but this one is not yet clear,
3258                  * we should return 0 to do an RPC on OSTs. */
3259                 if (rc == 1)
3260                         rc = rc2;
3261         }
3262
3263         return rc;
3264 }
3265
3266 /**
3267  * Check whether the stripes matches the indexes user provided
3268  *       1   : matched
3269  *       0   : Unmatched
3270  */
3271 static int check_obd_match(struct find_param *param)
3272 {
3273         struct lov_user_ost_data_v1 *objects;
3274         struct lov_comp_md_v1 *comp_v1 = NULL;
3275         struct lov_user_md_v1 *v1 = &param->fp_lmd->lmd_lmm;
3276         lstat_t *st = &param->fp_lmd->lmd_st;
3277         int i, j, k, count = 1;
3278
3279         if (param->fp_obd_uuid && param->fp_obd_index == OBD_NOT_FOUND)
3280                 return 0;
3281
3282         if (!S_ISREG(st->st_mode))
3283                 return 0;
3284
3285         /* Only those files should be accepted, which have a
3286          * stripe on the specified OST. */
3287         if (v1->lmm_magic == LOV_USER_MAGIC_COMP_V1) {
3288                 comp_v1 = (struct lov_comp_md_v1 *)v1;
3289                 count = comp_v1->lcm_entry_count;
3290         }
3291
3292         for (i = 0; i < count; i++) {
3293                 if (comp_v1)
3294                         v1 = lov_comp_entry(comp_v1, i);
3295
3296                 objects = lov_v1v3_objects(v1);
3297
3298                 for (j = 0; j < v1->lmm_stripe_count; j++) {
3299                         for (k = 0; k < param->fp_num_obds; k++) {
3300                                 if (param->fp_obd_indexes[k] ==
3301                                     objects[j].l_ost_idx)
3302                                         return !param->fp_exclude_obd;
3303                         }
3304                 }
3305         }
3306
3307         return param->fp_exclude_obd;
3308 }
3309
3310 static int check_mdt_match(struct find_param *param)
3311 {
3312         int i;
3313
3314         if (param->fp_mdt_uuid && param->fp_mdt_index == OBD_NOT_FOUND)
3315                 return 0;
3316
3317         /* FIXME: For striped dir, we should get stripe information and check */
3318         for (i = 0; i < param->fp_num_mdts; i++) {
3319                 if (param->fp_mdt_indexes[i] == param->fp_file_mdt_index)
3320                         return !param->fp_exclude_mdt;
3321         }
3322
3323         if (param->fp_exclude_mdt)
3324                 return 1;
3325
3326         return 0;
3327 }
3328
3329 /**
3330  * Check whether the obd is active or not, if it is
3331  * not active, just print the object affected by this
3332  * failed target
3333  **/
3334 static int print_failed_tgt(struct find_param *param, char *path, int type)
3335 {
3336         struct obd_statfs stat_buf;
3337         struct obd_uuid uuid_buf;
3338         int ret;
3339
3340         if (type != LL_STATFS_LOV && type != LL_STATFS_LMV)
3341                 return -EINVAL;
3342
3343         memset(&stat_buf, 0, sizeof(struct obd_statfs));
3344         memset(&uuid_buf, 0, sizeof(struct obd_uuid));
3345         ret = llapi_obd_statfs(path, type,
3346                                param->fp_obd_index, &stat_buf,
3347                                &uuid_buf);
3348         if (ret) {
3349                 llapi_printf(LLAPI_MSG_NORMAL,
3350                              "obd_uuid: %s failed %s ",
3351                              param->fp_obd_uuid->uuid,
3352                              strerror(errno));
3353         }
3354
3355         return ret;
3356 }
3357
3358 static int find_check_stripe_size(struct find_param *param)
3359 {
3360         struct lov_comp_md_v1 *comp_v1 = NULL;
3361         struct lov_user_md_v1 *v1 = &param->fp_lmd->lmd_lmm;
3362         int ret, i, count = 1;
3363
3364         if (v1->lmm_magic == LOV_USER_MAGIC_COMP_V1) {
3365                 comp_v1 = (struct lov_comp_md_v1 *)v1;
3366                 count = comp_v1->lcm_entry_count;
3367                 ret = param->fp_exclude_stripe_size ? 1 : -1;
3368         }
3369
3370         for (i = 0; i < count; i++) {
3371                 if (comp_v1)
3372                         v1 = lov_comp_entry(comp_v1, i);
3373
3374                 ret = find_value_cmp(v1->lmm_stripe_size, param->fp_stripe_size,
3375                                      param->fp_stripe_size_sign,
3376                                      param->fp_exclude_stripe_size,
3377                                      param->fp_stripe_size_units, 0);
3378                 /* If any stripe_size matches */
3379                 if (ret != -1)
3380                         break;
3381         }
3382
3383         return ret;
3384 }
3385
3386 static __u32 find_get_stripe_count(struct find_param *param)
3387 {
3388         struct lov_comp_md_v1 *comp_v1 = NULL;
3389         struct lov_user_md_v1 *v1 = &param->fp_lmd->lmd_lmm;
3390         int i, count = 1;
3391         __u32 stripe_count = 0;
3392
3393         if (v1->lmm_magic == LOV_USER_MAGIC_COMP_V1) {
3394                 comp_v1 = (struct lov_comp_md_v1 *)v1;
3395                 count = comp_v1->lcm_entry_count;
3396         }
3397
3398         for (i = 0; i < count; i++) {
3399                 if (comp_v1)
3400                         v1 = lov_comp_entry(comp_v1, i);
3401                 stripe_count += v1->lmm_stripe_count;
3402         }
3403
3404         return stripe_count;
3405 }
3406
3407 #define LOV_PATTERN_INVALID     0xFFFFFFFF
3408
3409 static int find_check_layout(struct find_param *param)
3410 {
3411         struct lov_comp_md_v1 *comp_v1 = NULL;
3412         struct lov_user_md_v1 *v1 = &param->fp_lmd->lmd_lmm;
3413         int i, count = 1;
3414         bool found = false, valid = false;
3415
3416         if (v1->lmm_magic == LOV_USER_MAGIC_COMP_V1) {
3417                 comp_v1 = (struct lov_comp_md_v1 *)v1;
3418                 count = comp_v1->lcm_entry_count;
3419         }
3420
3421         for (i = 0; i < count; i++) {
3422                 if (comp_v1)
3423                         v1 = lov_comp_entry(comp_v1, i);
3424
3425                 if (v1->lmm_pattern == LOV_PATTERN_INVALID)
3426                         continue;
3427
3428                 valid = true;
3429                 if (v1->lmm_pattern & param->fp_layout) {
3430                         found = true;
3431                         break;
3432                 }
3433         }
3434
3435         if (!valid)
3436                 return -1;
3437
3438         if ((found && !param->fp_exclude_layout) ||
3439             (!found && param->fp_exclude_layout))
3440                 return 1;
3441
3442         return -1;
3443 }
3444
3445 static int find_check_pool(struct find_param *param)
3446 {
3447         struct lov_comp_md_v1 *comp_v1 = NULL;
3448         struct lov_user_md_v1 *v1 = &param->fp_lmd->lmd_lmm;
3449         struct lov_user_md_v3 *v3 = (void *)v1;
3450         int i, count = 1;
3451         bool found = false;
3452
3453         if (v1->lmm_magic == LOV_USER_MAGIC_COMP_V1) {
3454                 comp_v1 = (struct lov_comp_md_v1 *)v1;
3455                 count = comp_v1->lcm_entry_count;
3456                 /* empty requested pool is taken as no pool search */
3457                 if (count == 0 && param->fp_poolname[0] == '\0')
3458                         found = true;
3459         }
3460
3461         for (i = 0; i < count; i++) {
3462                 if (comp_v1 != NULL)
3463                         v1 = lov_comp_entry(comp_v1, i);
3464
3465                 if (((v1->lmm_magic == LOV_USER_MAGIC_V1) &&
3466                      (param->fp_poolname[0] == '\0')) ||
3467                     ((v1->lmm_magic == LOV_USER_MAGIC_V3) &&
3468                      (strncmp(v3->lmm_pool_name,
3469                               param->fp_poolname, LOV_MAXPOOLNAME) == 0)) ||
3470                     ((v1->lmm_magic == LOV_USER_MAGIC_V3) &&
3471                      (strcmp(param->fp_poolname, "*") == 0))) {
3472                         found = true;
3473                         break;
3474                 }
3475         }
3476
3477         if ((found && !param->fp_exclude_pool) ||
3478             (!found && param->fp_exclude_pool))
3479                 return 1;
3480
3481         return -1;
3482 }
3483
3484 static int find_check_comp_options(struct find_param *param)
3485 {
3486         lstat_t *st = &param->fp_lmd->lmd_st;
3487         struct lov_comp_md_v1 *comp_v1, *forged_v1 = NULL;
3488         struct lov_user_md_v1 *v1 = &param->fp_lmd->lmd_lmm;
3489         struct lov_comp_md_entry_v1 *entry;
3490         int i, ret = 0;
3491
3492         if (v1->lmm_magic == LOV_USER_MAGIC_COMP_V1) {
3493                 comp_v1 = (struct lov_comp_md_v1 *)v1;
3494         } else {
3495                 forged_v1 = malloc(sizeof(*forged_v1) + sizeof(*entry));
3496                 if (forged_v1 == NULL)
3497                         return -1;
3498                 comp_v1 = forged_v1;
3499                 comp_v1->lcm_entry_count = 1;
3500                 entry = &comp_v1->lcm_entries[0];
3501                 entry->lcme_flags = S_ISDIR(st->st_mode) ? 0 : LCME_FL_INIT;
3502                 entry->lcme_extent.e_start = 0;
3503                 entry->lcme_extent.e_end = LUSTRE_EOF;
3504         }
3505
3506         /* invalid case, don't match for any kind of search. */
3507         if (comp_v1->lcm_entry_count == 0) {
3508                 ret = -1;
3509                 goto out;
3510         }
3511
3512         if (param->fp_check_comp_count) {
3513                 ret = find_value_cmp(forged_v1 ? 0 : comp_v1->lcm_entry_count,
3514                                      param->fp_comp_count,
3515                                      param->fp_comp_count_sign,
3516                                      param->fp_exclude_comp_count, 1, 0);
3517                 if (ret == -1)
3518                         goto out;
3519         }
3520
3521         ret = 1;
3522         for (i = 0; i < comp_v1->lcm_entry_count; i++) {
3523                 entry = &comp_v1->lcm_entries[i];
3524
3525                 if (param->fp_check_comp_flags) {
3526                         if (((entry->lcme_flags & param->fp_comp_flags) &&
3527                              param->fp_exclude_comp_flags) ||
3528                             (!(entry->lcme_flags & param->fp_comp_flags) &&
3529                              !param->fp_exclude_comp_flags))
3530                                 ret = -1;
3531                         else
3532                                 ret = 1;
3533
3534                         if (ret == -1)
3535                                 continue;
3536                 }
3537
3538                 if (param->fp_check_comp_start) {
3539                         ret = find_value_cmp(entry->lcme_extent.e_start,
3540                                              param->fp_comp_start,
3541                                              param->fp_comp_start_sign,
3542                                              param->fp_exclude_comp_start,
3543                                              param->fp_comp_start_units, 0);
3544                         if (ret == -1)
3545                                 continue;
3546                 }
3547
3548                 if (param->fp_check_comp_end) {
3549                         ret = find_comp_end_cmp(entry->lcme_extent.e_end,
3550                                                 param);
3551                         if (ret == -1)
3552                                 continue;
3553                 }
3554
3555                 /* the component matches all criteria */
3556                 break;
3557         }
3558 out:
3559         if (forged_v1 != NULL)
3560                 free(forged_v1);
3561         return ret;
3562 }
3563
3564 static bool find_check_lmm_info(struct find_param *param)
3565 {
3566         return param->fp_check_pool || param->fp_check_stripe_count ||
3567                param->fp_check_stripe_size || param->fp_check_layout ||
3568                param->fp_check_comp_count || param->fp_check_comp_end ||
3569                param->fp_check_comp_start || param->fp_check_comp_flags ||
3570                param->fp_check_projid;
3571 }
3572
3573 /*
3574  * Get file/directory project id.
3575  * by the open fd resides on.
3576  * Return 0 and project id on success, or -ve errno.
3577  */
3578 static int fget_projid(int fd, int *projid)
3579 {
3580         struct fsxattr fsx;
3581         int rc;
3582
3583         rc = ioctl(fd, LL_IOC_FSGETXATTR, &fsx);
3584         if (rc)
3585                 return -errno;
3586
3587         *projid = fsx.fsx_projid;
3588         return 0;
3589 }
3590
3591 static int cb_find_init(char *path, DIR *parent, DIR **dirp,
3592                         void *data, struct dirent64 *de)
3593 {
3594         struct find_param *param = (struct find_param *)data;
3595         DIR *dir = dirp == NULL ? NULL : *dirp;
3596         int decision = 1; /* 1 is accepted; -1 is rejected. */
3597         lstat_t *st = &param->fp_lmd->lmd_st;
3598         int lustre_fs = 1;
3599         int checked_type = 0;
3600         int ret = 0;
3601         __u32 stripe_count = 0;
3602         int fd = -2;
3603
3604         if (parent == NULL && dir == NULL)
3605                 return -EINVAL;
3606
3607         /* If a regular expression is presented, make the initial decision */
3608         if (param->fp_pattern != NULL) {
3609                 char *fname = strrchr(path, '/');
3610                 fname = (fname == NULL ? path : fname + 1);
3611                 ret = fnmatch(param->fp_pattern, fname, 0);
3612                 if ((ret == FNM_NOMATCH && !param->fp_exclude_pattern) ||
3613                     (ret == 0 && param->fp_exclude_pattern))
3614                         goto decided;
3615         }
3616
3617         /* See if we can check the file type from the dirent. */
3618         if (param->fp_type != 0 && de != NULL && de->d_type != DT_UNKNOWN) {
3619                 checked_type = 1;
3620
3621                 if (DTTOIF(de->d_type) == param->fp_type) {
3622                         if (param->fp_exclude_type)
3623                                 goto decided;
3624                 } else {
3625                         if (!param->fp_exclude_type)
3626                                 goto decided;
3627                 }
3628         }
3629
3630         ret = 0;
3631
3632         /* Request MDS for the stat info if some of these parameters need
3633          * to be compared. */
3634         if (param->fp_obd_uuid || param->fp_mdt_uuid ||
3635             param->fp_check_uid || param->fp_check_gid ||
3636             param->fp_atime || param->fp_mtime || param->fp_ctime ||
3637             param->fp_check_size || find_check_lmm_info(param) ||
3638             param->fp_check_mdt_count || param->fp_check_hash_type)
3639                 decision = 0;
3640
3641         if (param->fp_type != 0 && checked_type == 0)
3642                 decision = 0;
3643
3644         if (decision == 0) {
3645                 if (param->fp_check_mdt_count || param->fp_check_hash_type) {
3646                         param->fp_get_lmv = 1;
3647                         ret = cb_get_dirstripe(path, dir, param);
3648                         if (ret != 0)
3649                                 return ret;
3650                 }
3651
3652                 param->fp_lmd->lmd_lmm.lmm_magic = 0;
3653                 ret = get_lmd_info(path, parent, dir, param->fp_lmd,
3654                                    param->fp_lum_size);
3655                 if (ret == 0 && param->fp_lmd->lmd_lmm.lmm_magic == 0 &&
3656                     find_check_lmm_info(param)) {
3657                         struct lov_user_md *lmm = &param->fp_lmd->lmd_lmm;
3658
3659                         /* We need to "fake" the "use the default" values
3660                          * since the lmm struct is zeroed out at this point. */
3661                         lmm->lmm_magic = LOV_USER_MAGIC_V1;
3662                         lmm->lmm_pattern = 0xFFFFFFFF;
3663                         if (!param->fp_raw)
3664                                 ostid_set_seq(&lmm->lmm_oi,
3665                                               FID_SEQ_LOV_DEFAULT);
3666                         lmm->lmm_stripe_size = 0;
3667                         lmm->lmm_stripe_count = 0;
3668                         lmm->lmm_stripe_offset = -1;
3669                 }
3670                 if (ret == 0 && param->fp_mdt_uuid != NULL) {
3671                         if (dir != NULL) {
3672                                 ret = llapi_file_fget_mdtidx(dirfd(dir),
3673                                                      &param->fp_file_mdt_index);
3674                         } else if (S_ISREG(st->st_mode)) {
3675                                 /* FIXME: we could get the MDT index from the
3676                                  * file's FID in lmd->lmd_lmm.lmm_oi without
3677                                  * opening the file, once we are sure that
3678                                  * LFSCK2 (2.6) has fixed up pre-2.0 LOV EAs.
3679                                  * That would still be an ioctl() to map the
3680                                  * FID to the MDT, but not an open RPC. */
3681                                 fd = open(path, O_RDONLY);
3682                                 if (fd > 0) {
3683                                         ret = llapi_file_fget_mdtidx(fd,
3684                                                      &param->fp_file_mdt_index);
3685                                 } else {
3686                                         ret = -errno;
3687                                 }
3688                         } else {
3689                                 /* For a special file, we assume it resides on
3690                                  * the same MDT as the parent directory. */
3691                                 ret = llapi_file_fget_mdtidx(dirfd(parent),
3692                                                      &param->fp_file_mdt_index);
3693                         }
3694                 }
3695                 if (ret != 0) {
3696                         if (ret == -ENOTTY)
3697                                 lustre_fs = 0;
3698                         if (ret == -ENOENT)
3699                                 goto decided;
3700
3701                         goto out;
3702                 } else {
3703                         stripe_count = find_get_stripe_count(param);
3704                 }
3705         }
3706
3707         if (param->fp_type && !checked_type) {
3708                 if ((st->st_mode & S_IFMT) == param->fp_type) {
3709                         if (param->fp_exclude_type)
3710                                 goto decided;
3711                 } else {
3712                         if (!param->fp_exclude_type)
3713                                 goto decided;
3714                 }
3715         }
3716
3717         /* Prepare odb. */
3718         if (param->fp_obd_uuid || param->fp_mdt_uuid) {
3719                 if (lustre_fs && param->fp_got_uuids &&
3720                     param->fp_dev != st->st_dev) {
3721                         /* A lustre/lustre mount point is crossed. */
3722                         param->fp_got_uuids = 0;
3723                         param->fp_obds_printed = 0;
3724                         param->fp_mdt_index = OBD_NOT_FOUND;
3725                         param->fp_obd_index = OBD_NOT_FOUND;
3726                 }
3727
3728                 if (lustre_fs && !param->fp_got_uuids) {
3729                         ret = setup_target_indexes(dir ? dir : parent, path,
3730                                                    param);
3731                         if (ret)
3732                                 goto out;
3733
3734                         param->fp_dev = st->st_dev;
3735                 } else if (!lustre_fs && param->fp_got_uuids) {
3736                         /* A lustre/non-lustre mount point is crossed. */
3737                         param->fp_got_uuids = 0;
3738                         param->fp_mdt_index = OBD_NOT_FOUND;
3739                         param->fp_obd_index = OBD_NOT_FOUND;
3740                 }
3741         }
3742
3743         if (param->fp_check_stripe_size) {
3744                 decision = find_check_stripe_size(param);
3745                 if (decision == -1)
3746                         goto decided;
3747         }
3748
3749         if (param->fp_check_stripe_count) {
3750                 decision = find_value_cmp(stripe_count, param->fp_stripe_count,
3751                                           param->fp_stripe_count_sign,
3752                                           param->fp_exclude_stripe_count, 1, 0);
3753                 if (decision == -1)
3754                         goto decided;
3755         }
3756
3757         if (param->fp_check_mdt_count) {
3758                 decision = find_value_cmp(
3759                                 param->fp_lmv_md->lum_stripe_count,
3760                                 param->fp_mdt_count,
3761                                 param->fp_mdt_count_sign,
3762                                 param->fp_exclude_mdt_count, 1, 0);
3763                 if (decision == -1)
3764                         goto decided;
3765         }
3766
3767         if (param->fp_check_layout) {
3768                 decision = find_check_layout(param);
3769                 if (decision == -1)
3770                         goto decided;
3771         }
3772
3773         if (param->fp_check_hash_type) {
3774                 __u32 found;
3775
3776                 found = param->fp_lmv_md->lum_hash_type & param->fp_hash_type;
3777                 if ((found && param->fp_exclude_hash_type) ||
3778                     (!found && !param->fp_exclude_hash_type)) {
3779                         decision = -1;
3780                         goto decided;
3781                 }
3782         }
3783
3784         /* If an OBD UUID is specified but none matches, skip this file. */
3785         if ((param->fp_obd_uuid && param->fp_obd_index == OBD_NOT_FOUND) ||
3786             (param->fp_mdt_uuid && param->fp_mdt_index == OBD_NOT_FOUND))
3787                 goto decided;
3788
3789         /* If an OST or MDT UUID is given, and some OST matches,
3790          * check it here. */
3791         if (param->fp_obd_index != OBD_NOT_FOUND ||
3792             param->fp_mdt_index != OBD_NOT_FOUND) {
3793                 if (param->fp_obd_uuid) {
3794                         if (check_obd_match(param)) {
3795                                 /* If no mdtuuid is given, we are done.
3796                                  * Otherwise, fall through to the mdtuuid
3797                                  * check below. */
3798                                 if (!param->fp_mdt_uuid)
3799                                         goto obd_matches;
3800                         } else {
3801                                 goto decided;
3802                         }
3803                 }
3804
3805                 if (param->fp_mdt_uuid) {
3806                         if (check_mdt_match(param))
3807                                 goto obd_matches;
3808                         goto decided;
3809                 }
3810         }
3811
3812 obd_matches:
3813         if (param->fp_check_uid) {
3814                 if (st->st_uid == param->fp_uid) {
3815                         if (param->fp_exclude_uid)
3816                                 goto decided;
3817                 } else {
3818                         if (!param->fp_exclude_uid)
3819                                 goto decided;
3820                 }
3821         }
3822
3823         if (param->fp_check_gid) {
3824                 if (st->st_gid == param->fp_gid) {
3825                         if (param->fp_exclude_gid)
3826                                 goto decided;
3827                 } else {
3828                         if (!param->fp_exclude_gid)
3829                                 goto decided;
3830                 }
3831         }
3832
3833         if (param->fp_check_projid) {
3834                 int projid = 0;
3835
3836                 if (fd == -2)
3837                         fd = open(path, O_RDONLY);
3838
3839                 if (fd > 0)
3840                         ret = fget_projid(fd, &projid);
3841                 else
3842                         ret = -errno;
3843                 if (ret)
3844                         goto out;
3845                 if (projid == param->fp_projid) {
3846                         if (param->fp_exclude_uid)
3847                                 goto decided;
3848                 } else {
3849                         if (!param->fp_exclude_projid)
3850                                 goto decided;
3851                 }
3852         }
3853
3854         if (param->fp_check_pool) {
3855                 decision = find_check_pool(param);
3856                 if (decision == -1)
3857                         goto decided;
3858         }
3859
3860         if (param->fp_check_comp_count || param->fp_check_comp_flags ||
3861             param->fp_check_comp_start || param->fp_check_comp_end) {
3862                 decision = find_check_comp_options(param);
3863                 if (decision == -1)
3864                         goto decided;
3865         }
3866
3867         /* Check the time on mds. */
3868         decision = 1;
3869         if (param->fp_atime || param->fp_mtime || param->fp_ctime) {
3870                 int for_mds;
3871
3872                 for_mds = lustre_fs ?
3873                         (S_ISREG(st->st_mode) && stripe_count) : 0;
3874                 decision = find_time_check(st, param, for_mds);
3875                 if (decision == -1)
3876                         goto decided;
3877         }
3878
3879         /* If file still fits the request, ask ost for updated info.
3880            The regular stat is almost of the same speed as some new
3881            'glimpse-size-ioctl'. */
3882
3883         if (param->fp_check_size && S_ISREG(st->st_mode) && stripe_count)
3884                 decision = 0;
3885
3886         if (param->fp_check_size && S_ISDIR(st->st_mode))
3887                 decision = 0;
3888
3889         if (!decision) {
3890                 /* For regular files with the stripe the decision may have not
3891                  * been taken yet if *time or size is to be checked. */
3892                 if (param->fp_obd_index != OBD_NOT_FOUND)
3893                         print_failed_tgt(param, path, LL_STATFS_LOV);
3894
3895                 if (param->fp_mdt_index != OBD_NOT_FOUND)
3896                         print_failed_tgt(param, path, LL_STATFS_LMV);
3897
3898                 if (dir != NULL)
3899                         ret = fstat_f(dirfd(dir), st);
3900                 else if (de != NULL)
3901                         ret = fstatat_f(dirfd(parent), de->d_name, st,
3902                                         AT_SYMLINK_NOFOLLOW);
3903                 else
3904                         ret = lstat_f(path, st);
3905
3906                 if (ret) {
3907                         if (errno == ENOENT) {
3908                                 llapi_error(LLAPI_MSG_ERROR, -ENOENT,
3909                                             "warning: %s: %s does not exist",
3910                                             __func__, path);
3911                                 goto decided;
3912                         } else {
3913                                 ret = -errno;
3914                                 llapi_error(LLAPI_MSG_ERROR, ret,
3915                                             "%s: IOC_LOV_GETINFO on %s failed",
3916                                             __func__, path);
3917                                 goto out;
3918                         }
3919                 }
3920
3921                 /* Check the time on osc. */
3922                 decision = find_time_check(st, param, 0);
3923                 if (decision == -1)
3924                         goto decided;
3925         }
3926
3927         if (param->fp_check_size)
3928                 decision = find_value_cmp(st->st_size, param->fp_size,
3929                                           param->fp_size_sign,
3930                                           param->fp_exclude_size,
3931                                           param->fp_size_units, 0);
3932
3933         if (decision != -1) {
3934                 llapi_printf(LLAPI_MSG_NORMAL, "%s", path);
3935                 if (param->fp_zero_end)
3936                         llapi_printf(LLAPI_MSG_NORMAL, "%c", '\0');
3937                 else
3938                         llapi_printf(LLAPI_MSG_NORMAL, "\n");
3939         }
3940
3941 decided:
3942         ret = 0;
3943         /* Do not get down anymore? */
3944         if (param->fp_depth == param->fp_max_depth) {
3945                 ret = 1;
3946                 goto out;
3947         }
3948         param->fp_depth++;
3949 out:
3950         if (fd > 0)
3951                 close(fd);
3952         return ret;
3953 }
3954
3955 static int cb_migrate_mdt_init(char *path, DIR *parent, DIR **dirp,
3956                                void *param_data, struct dirent64 *de)
3957 {
3958         struct find_param       *param = (struct find_param *)param_data;
3959         DIR                     *tmp_parent = parent;
3960         char                    raw[MAX_IOC_BUFLEN] = {'\0'};
3961         char                    *rawbuf = raw;
3962         struct obd_ioctl_data   data = { 0 };
3963         int                     fd;
3964         int                     ret;
3965         char                    *path_copy;
3966         char                    *filename;
3967         bool                    retry = false;
3968
3969         if (parent == NULL && dirp == NULL)
3970                 return -EINVAL;
3971
3972         if (dirp != NULL)
3973                 closedir(*dirp);
3974
3975         if (parent == NULL) {
3976                 tmp_parent = opendir_parent(path);
3977                 if (tmp_parent == NULL) {
3978                         *dirp = NULL;
3979                         ret = -errno;
3980                         llapi_error(LLAPI_MSG_ERROR, ret,
3981                                     "can not open %s", path);
3982                         return ret;
3983                 }
3984         }
3985
3986         fd = dirfd(tmp_parent);
3987
3988         path_copy = strdup(path);
3989         filename = basename(path_copy);
3990         data.ioc_inlbuf1 = (char *)filename;
3991         data.ioc_inllen1 = strlen(filename) + 1;
3992         data.ioc_inlbuf2 = (char *)&param->fp_mdt_index;
3993         data.ioc_inllen2 = sizeof(param->fp_mdt_index);
3994         ret = llapi_ioctl_pack(&data, &rawbuf, sizeof(raw));
3995         if (ret != 0) {
3996                 llapi_error(LLAPI_MSG_ERROR, ret,
3997                             "llapi_obd_statfs: error packing ioctl data");
3998                 goto out;
3999         }
4000
4001 migrate:
4002         ret = ioctl(fd, LL_IOC_MIGRATE, rawbuf);
4003         if (ret != 0) {
4004                 if (errno == EBUSY && !retry) {
4005                         /* because migrate may not be able to lock all involved
4006                          * objects in order, for some of them it try lock, while
4007                          * there may be conflicting COS locks and cause migrate
4008                          * fail with EBUSY, hope a sync() could cause
4009                          * transaction commit and release these COS locks. */
4010                         sync();
4011                         retry = true;
4012                         goto migrate;
4013                 }
4014                 ret = -errno;
4015                 fprintf(stderr, "%s migrate failed: %s (%d)\n",
4016                         path, strerror(-ret), ret);
4017                 goto out;
4018         } else if (param->fp_verbose & VERBOSE_DETAIL) {
4019                 fprintf(stdout, "migrate %s to MDT%d\n",
4020                         path, param->fp_mdt_index);
4021         }
4022
4023 out:
4024         if (dirp != NULL) {
4025                 /* If the directory is being migration, we need
4026                  * close the directory after migration,
4027                  * so the old directory cache will be cleanup
4028                  * on the client side, and re-open to get the
4029                  * new directory handle */
4030                 *dirp = opendir(path);
4031                 if (*dirp == NULL) {
4032                         ret = -errno;
4033                         llapi_error(LLAPI_MSG_ERROR, ret,
4034                                     "%s: Failed to open '%s'", __func__, path);
4035                 }
4036         }
4037
4038         if (parent == NULL)
4039                 closedir(tmp_parent);
4040
4041         free(path_copy);
4042
4043         return ret;
4044 }
4045
4046 int llapi_migrate_mdt(char *path, struct find_param *param)
4047 {
4048         return param_callback(path, cb_migrate_mdt_init, cb_common_fini, param);
4049 }
4050
4051 int llapi_mv(char *path, struct find_param *param)
4052 {
4053 #if LUSTRE_VERSION_CODE > OBD_OCD_VERSION(2, 9, 59, 0)
4054         static bool printed;
4055
4056         if (!printed) {
4057                 llapi_error(LLAPI_MSG_ERROR, -ESTALE,
4058                             "llapi_mv() is deprecated, use llapi_migrate_mdt()\n");
4059                 printed = true;
4060         }
4061 #endif
4062         return llapi_migrate_mdt(path, param);
4063 }
4064
4065 int llapi_find(char *path, struct find_param *param)
4066 {
4067         return param_callback(path, cb_find_init, cb_common_fini, param);
4068 }
4069
4070 /*
4071  * Get MDT number that the file/directory inode referenced
4072  * by the open fd resides on.
4073  * Return 0 and mdtidx on success, or -ve errno.
4074  */
4075 int llapi_file_fget_mdtidx(int fd, int *mdtidx)
4076 {
4077         if (ioctl(fd, LL_IOC_GET_MDTIDX, mdtidx) < 0)
4078                 return -errno;
4079         return 0;
4080 }
4081
4082 static int cb_get_mdt_index(char *path, DIR *parent, DIR **dirp, void *data,
4083                             struct dirent64 *de)
4084 {
4085         struct find_param *param = (struct find_param *)data;
4086         DIR *d = dirp == NULL ? NULL : *dirp;
4087         int ret;
4088         int mdtidx;
4089
4090         if (parent == NULL && d == NULL)
4091                 return -EINVAL;
4092
4093         if (d != NULL) {
4094                 ret = llapi_file_fget_mdtidx(dirfd(d), &mdtidx);
4095         } else /* if (parent) */ {
4096                 int fd;
4097
4098                 fd = open(path, O_RDONLY | O_NOCTTY);
4099                 if (fd > 0) {
4100                         ret = llapi_file_fget_mdtidx(fd, &mdtidx);
4101                         close(fd);
4102                 } else {
4103                         ret = -errno;
4104                 }
4105         }
4106
4107         if (ret != 0) {
4108                 if (ret == -ENODATA) {
4109                         if (!param->fp_obd_uuid)
4110                                 llapi_printf(LLAPI_MSG_NORMAL,
4111                                              "'%s' has no stripe info\n", path);
4112                         goto out;
4113                 } else if (ret == -ENOENT) {
4114                         llapi_error(LLAPI_MSG_WARN, ret,
4115                                     "warning: %s: '%s' does not exist",
4116                                     __func__, path);
4117                         goto out;
4118                 } else if (ret == -ENOTTY) {
4119                         llapi_error(LLAPI_MSG_ERROR, ret,
4120                                     "%s: '%s' not on a Lustre fs",
4121                                     __func__, path);
4122                 } else {
4123                         llapi_error(LLAPI_MSG_ERROR, ret,
4124                                     "error: %s: '%s' failed get_mdtidx",
4125                                     __func__, path);
4126                 }
4127                 return ret;
4128         }
4129
4130         if (param->fp_quiet || !(param->fp_verbose & VERBOSE_DETAIL))
4131                 llapi_printf(LLAPI_MSG_NORMAL, "%d\n", mdtidx);
4132         else
4133                 llapi_printf(LLAPI_MSG_NORMAL, "%s\nmdt_index:\t%d\n",
4134                              path, mdtidx);
4135
4136 out:
4137         /* Do not go down anymore? */
4138         if (param->fp_depth == param->fp_max_depth)
4139                 return 1;
4140
4141         param->fp_depth++;
4142
4143         return 0;
4144 }
4145
4146 static int cb_getstripe(char *path, DIR *parent, DIR **dirp, void *data,
4147                         struct dirent64 *de)
4148 {
4149         struct find_param *param = (struct find_param *)data;
4150         DIR *d = dirp == NULL ? NULL : *dirp;
4151         int ret = 0;
4152
4153         if (parent == NULL && d == NULL)
4154                 return -EINVAL;
4155
4156         if (param->fp_obd_uuid) {
4157                 param->fp_quiet = 1;
4158                 ret = setup_obd_uuid(d ? dirfd(d) : dirfd(parent), path, param);
4159                 if (ret)
4160                         return ret;
4161         }
4162
4163         if (d) {
4164                 if (param->fp_get_lmv || param->fp_get_default_lmv) {
4165                         ret = cb_get_dirstripe(path, d, param);
4166                 } else {
4167                         ret = ioctl(dirfd(d), LL_IOC_LOV_GETSTRIPE,
4168                                      (void *)&param->fp_lmd->lmd_lmm);
4169                 }
4170
4171         } else if (parent && !param->fp_get_lmv && !param->fp_get_default_lmv) {
4172                 char *fname = strrchr(path, '/');
4173                 fname = (fname == NULL ? path : fname + 1);
4174
4175                 strlcpy((char *)&param->fp_lmd->lmd_lmm, fname,
4176                         param->fp_lum_size);
4177
4178                 ret = ioctl(dirfd(parent), IOC_MDC_GETFILESTRIPE,
4179                             (void *)&param->fp_lmd->lmd_lmm);
4180         } else {
4181                 return 0;
4182         }
4183
4184         if (ret) {
4185                 if (errno == ENODATA && d != NULL) {
4186                         /* We need to "fake" the "use the default" values
4187                          * since the lmm struct is zeroed out at this point.
4188                          * The magic needs to be set in order to satisfy
4189                          * a check later on in the code path.
4190                          * The object_seq needs to be set for the "(Default)"
4191                          * prefix to be displayed. */
4192                         if (param->fp_get_default_lmv) {
4193                                 struct lmv_user_md *lum = param->fp_lmv_md;
4194
4195                                 lum->lum_magic = LMV_USER_MAGIC;
4196                                 lum->lum_stripe_count = 0;
4197                                 lum->lum_stripe_offset = -1;
4198                                 goto dump;
4199                         } else if (param->fp_get_lmv) {
4200                                 struct lmv_user_md *lum = param->fp_lmv_md;
4201                                 int mdtidx;
4202
4203                                 ret = llapi_file_fget_mdtidx(dirfd(d), &mdtidx);
4204                                 if (ret != 0)
4205                                         goto err_out;
4206                                 lum->lum_magic = LMV_MAGIC_V1;
4207                                 lum->lum_stripe_count = 0;
4208                                 lum->lum_stripe_offset = mdtidx;
4209                                 goto dump;
4210                         } else {
4211                                 struct lov_user_md *lmm =
4212                                         &param->fp_lmd->lmd_lmm;
4213
4214                                 lmm->lmm_magic = LOV_USER_MAGIC_V1;
4215                                 if (!param->fp_raw)
4216                                         ostid_set_seq(&lmm->lmm_oi,
4217                                                       FID_SEQ_LOV_DEFAULT);
4218                                 lmm->lmm_stripe_count = 0;
4219                                 lmm->lmm_stripe_size = 0;
4220                                 lmm->lmm_stripe_offset = -1;
4221                                 goto dump;
4222                         }
4223                 } else if (errno == ENODATA && parent != NULL) {
4224                         if (!param->fp_obd_uuid && !param->fp_mdt_uuid)
4225                                 llapi_printf(LLAPI_MSG_NORMAL,
4226                                              "%s has no stripe info\n", path);
4227                         goto out;
4228                 } else if (errno == ENOENT) {
4229                         llapi_error(LLAPI_MSG_WARN, -ENOENT,
4230                                     "warning: %s: %s does not exist",
4231                                     __func__, path);
4232                         goto out;
4233                 } else if (errno == ENOTTY) {
4234                         ret = -errno;
4235                         llapi_error(LLAPI_MSG_ERROR, ret,
4236                                     "%s: '%s' not on a Lustre fs?",
4237                                     __func__, path);
4238                 } else {
4239                         ret = -errno;
4240 err_out:
4241                         llapi_error(LLAPI_MSG_ERROR, ret,
4242                                     "error: %s: %s failed for %s",
4243                                      __func__, d ? "LL_IOC_LOV_GETSTRIPE" :
4244                                     "IOC_MDC_GETFILESTRIPE", path);
4245                 }
4246
4247                 return ret;
4248         }
4249
4250 dump:
4251         if (!(param->fp_verbose & VERBOSE_MDTINDEX))
4252                 llapi_lov_dump_user_lmm(param, path, d ? LDF_IS_DIR : 0);
4253
4254 out:
4255         /* Do not get down anymore? */
4256         if (param->fp_depth == param->fp_max_depth)
4257                 return 1;
4258
4259         param->fp_depth++;
4260
4261         return 0;
4262 }
4263
4264 int llapi_getstripe(char *path, struct find_param *param)
4265 {
4266         return param_callback(path, (param->fp_verbose & VERBOSE_MDTINDEX) ?
4267                               cb_get_mdt_index : cb_getstripe,
4268                               cb_common_fini, param);
4269 }
4270
4271 int llapi_obd_fstatfs(int fd, __u32 type, __u32 index,
4272                       struct obd_statfs *stat_buf, struct obd_uuid *uuid_buf)
4273 {
4274         char raw[MAX_IOC_BUFLEN] = {'\0'};
4275         char *rawbuf = raw;
4276         struct obd_ioctl_data data = { 0 };
4277         int rc = 0;
4278
4279         data.ioc_inlbuf1 = (char *)&type;
4280         data.ioc_inllen1 = sizeof(__u32);
4281         data.ioc_inlbuf2 = (char *)&index;
4282         data.ioc_inllen2 = sizeof(__u32);
4283         data.ioc_pbuf1 = (char *)stat_buf;
4284         data.ioc_plen1 = sizeof(struct obd_statfs);
4285         data.ioc_pbuf2 = (char *)uuid_buf;
4286         data.ioc_plen2 = sizeof(struct obd_uuid);
4287
4288         rc = llapi_ioctl_pack(&data, &rawbuf, sizeof(raw));
4289         if (rc != 0) {
4290                 llapi_error(LLAPI_MSG_ERROR, rc,
4291                             "llapi_obd_statfs: error packing ioctl data");
4292                 return rc;
4293         }
4294
4295         rc = ioctl(fd, IOC_OBD_STATFS, (void *)rawbuf);
4296
4297         return rc < 0 ? -errno : 0;
4298 }
4299
4300 int llapi_obd_statfs(char *path, __u32 type, __u32 index,
4301                      struct obd_statfs *stat_buf, struct obd_uuid *uuid_buf)
4302 {
4303         int fd;
4304         int rc;
4305
4306         fd = open(path, O_RDONLY);
4307         if (fd < 0) {
4308                 rc = -errno;
4309                 llapi_error(LLAPI_MSG_ERROR, rc, "error: %s: opening '%s'",
4310                             __func__, path);
4311                 /* If we can't even open a file on the filesystem (e.g. with
4312                  * -ESHUTDOWN), force caller to exit or it will loop forever. */
4313                 return -ENODEV;
4314         }
4315
4316         rc = llapi_obd_fstatfs(fd, type, index, stat_buf, uuid_buf);
4317
4318         close(fd);
4319
4320         return rc;
4321 }
4322
4323 #define MAX_STRING_SIZE 128
4324
4325 int llapi_ping(char *obd_type, char *obd_name)
4326 {
4327         glob_t path;
4328         char buf[1];
4329         int rc, fd;
4330
4331         rc = cfs_get_param_paths(&path, "%s/%s/ping",
4332                                 obd_type, obd_name);
4333         if (rc != 0)
4334                 return -errno;
4335
4336         fd = open(path.gl_pathv[0], O_WRONLY);
4337         if (fd < 0) {
4338                 rc = -errno;
4339                 llapi_error(LLAPI_MSG_ERROR, rc, "error opening %s",
4340                             path.gl_pathv[0]);
4341                 goto failed;
4342         }
4343
4344         /* The purpose is to send a byte as a ping, whatever this byte is. */
4345         /* coverity[uninit_use_in_call] */
4346         rc = write(fd, buf, 1);
4347         if (rc < 0)
4348                 rc = -errno;
4349         close(fd);
4350
4351         if (rc == 1)
4352                 rc = 0;
4353 failed:
4354         cfs_free_param_data(&path);
4355         return rc;
4356 }
4357
4358 int llapi_target_iterate(int type_num, char **obd_type,
4359                          void *args, llapi_cb_t cb)
4360 {
4361         char buf[MAX_STRING_SIZE];
4362         int i, rc = 0;
4363         glob_t param;
4364         FILE *fp;
4365
4366         rc = cfs_get_param_paths(&param, "devices");
4367         if (rc != 0)
4368                 return -ENOENT;
4369
4370         fp = fopen(param.gl_pathv[0], "r");
4371         if (fp == NULL) {
4372                 rc = -errno;
4373                 llapi_error(LLAPI_MSG_ERROR, rc, "error: opening '%s'",
4374                             param.gl_pathv[0]);
4375                 goto free_path;
4376         }
4377
4378         while (fgets(buf, sizeof(buf), fp) != NULL) {
4379                 char *obd_type_name = NULL;
4380                 char *obd_name = NULL;
4381                 char *obd_uuid = NULL;
4382                 char *bufp = buf;
4383                 struct obd_statfs osfs_buffer;
4384
4385                 while(bufp[0] == ' ')
4386                         ++bufp;
4387
4388                 for(i = 0; i < 3; i++) {
4389                         obd_type_name = strsep(&bufp, " ");
4390                 }
4391                 obd_name = strsep(&bufp, " ");
4392                 obd_uuid = strsep(&bufp, " ");
4393
4394                 memset(&osfs_buffer, 0, sizeof (osfs_buffer));
4395
4396                 for (i = 0; i < type_num; i++) {
4397                         if (strcmp(obd_type_name, obd_type[i]) != 0)
4398                                 continue;
4399
4400                         cb(obd_type_name, obd_name, obd_uuid, args);
4401                 }
4402         }
4403         fclose(fp);
4404 free_path:
4405         cfs_free_param_data(&param);
4406         return 0;
4407 }
4408
4409 static void do_target_check(char *obd_type_name, char *obd_name,
4410                             char *obd_uuid, void *args)
4411 {
4412         int rc;
4413
4414         rc = llapi_ping(obd_type_name, obd_name);
4415         if (rc == ENOTCONN) {
4416                 llapi_printf(LLAPI_MSG_NORMAL, "%s inactive.\n", obd_name);
4417         } else if (rc) {
4418                 llapi_error(LLAPI_MSG_ERROR, rc, "error: check '%s'", obd_name);
4419         } else {
4420                 llapi_printf(LLAPI_MSG_NORMAL, "%s active.\n", obd_name);
4421         }
4422 }
4423
4424 int llapi_target_check(int type_num, char **obd_type, char *dir)
4425 {
4426         return llapi_target_iterate(type_num, obd_type, NULL, do_target_check);
4427 }
4428
4429 #undef MAX_STRING_SIZE
4430
4431 /* Is this a lustre fs? */
4432 int llapi_is_lustre_mnttype(const char *type)
4433 {
4434         return (strcmp(type, "lustre") == 0 || strcmp(type,"lustre_lite") == 0);
4435 }
4436
4437 /* Is this a lustre client fs? */
4438 int llapi_is_lustre_mnt(struct mntent *mnt)
4439 {
4440         return (llapi_is_lustre_mnttype(mnt->mnt_type) &&
4441                 strstr(mnt->mnt_fsname, ":/") != NULL);
4442 }
4443
4444 int llapi_quotactl(char *mnt, struct if_quotactl *qctl)
4445 {
4446         char fsname[PATH_MAX + 1];
4447         int root;
4448         int rc;
4449
4450         rc = llapi_search_fsname(mnt, fsname);
4451         if (rc) {
4452                 llapi_err_noerrno(LLAPI_MSG_ERROR,
4453                                   "'%s' isn't on Lustre filesystem", mnt);
4454                 return rc;
4455         }
4456
4457         root = open(mnt, O_RDONLY | O_DIRECTORY);
4458         if (root < 0) {
4459                 rc = -errno;
4460                 llapi_error(LLAPI_MSG_ERROR, rc, "open %s failed", mnt);
4461                 return rc;
4462         }
4463
4464         rc = ioctl(root, OBD_IOC_QUOTACTL, qctl);
4465         if (rc < 0)
4466                 rc = -errno;
4467
4468         close(root);
4469         return rc;
4470 }
4471
4472 /* Print mdtname 'name' into 'buf' using 'format'.  Add -MDT0000 if needed.
4473  * format must have %s%s, buf must be > 16
4474  * Eg: if name = "lustre-MDT0000", "lustre", or "lustre-MDT0000_UUID"
4475  *     then buf = "lustre-MDT0000"
4476  */
4477 static int get_mdtname(char *name, char *format, char *buf)
4478 {
4479         char suffix[]="-MDT0000";
4480         int len = strlen(name);
4481
4482         if ((len > 5) && (strncmp(name + len - 5, "_UUID", 5) == 0)) {
4483                 name[len - 5] = '\0';
4484                 len -= 5;
4485         }
4486
4487         if (len > 8) {
4488                 if ((len <= 16) && strncmp(name + len - 8, "-MDT", 4) == 0) {
4489                         suffix[0] = '\0';
4490                 } else {
4491                         /* Not enough room to add suffix */
4492                         llapi_err_noerrno(LLAPI_MSG_ERROR,
4493                                           "MDT name too long |%s|", name);
4494                         return -EINVAL;
4495                 }
4496         }
4497
4498         return sprintf(buf, format, name, suffix);
4499 }
4500
4501 /** ioctl on filsystem root, with mdtindex sent as data
4502  * \param mdtname path, fsname, or mdtname (lutre-MDT0004)
4503  * \param mdtidxp pointer to integer within data to be filled in with the
4504  *    mdt index (0 if no mdt is specified).  NULL won't be filled.
4505  */
4506 int root_ioctl(const char *mdtname, int opc, void *data, int *mdtidxp,
4507                int want_error)
4508 {
4509         char fsname[20];
4510         char *ptr;
4511         int fd, rc;
4512         long index;
4513
4514         /* Take path, fsname, or MDTname.  Assume MDT0000 in the former cases.
4515          Open root and parse mdt index. */
4516         if (mdtname[0] == '/') {
4517                 index = 0;
4518                 rc = get_root_path(WANT_FD | want_error, NULL, &fd,
4519                                    (char *)mdtname, -1);
4520         } else {
4521                 if (get_mdtname((char *)mdtname, "%s%s", fsname) < 0)
4522                         return -EINVAL;
4523                 ptr = fsname + strlen(fsname) - 8;
4524                 *ptr = '\0';
4525                 index = strtol(ptr + 4, NULL, 16);
4526                 rc = get_root_path(WANT_FD | want_error, fsname, &fd, NULL, -1);
4527         }
4528         if (rc < 0) {
4529                 if (want_error)
4530                         llapi_err_noerrno(LLAPI_MSG_ERROR,
4531                                           "Can't open %s: %d\n", mdtname, rc);
4532                 return rc;
4533         }
4534
4535         if (mdtidxp)
4536                 *mdtidxp = index;
4537
4538         rc = ioctl(fd, opc, data);
4539         if (rc == -1)
4540                 rc = -errno;
4541         else
4542                 rc = 0;
4543         close(fd);
4544         return rc;
4545 }
4546
4547 int llapi_fid2path(const char *device, const char *fidstr, char *buf,
4548                    int buflen, long long *recno, int *linkno)
4549 {
4550         const char *fidstr_orig = fidstr;
4551         struct lu_fid fid;
4552         struct getinfo_fid2path *gf;
4553         int rc;
4554
4555         while (*fidstr == '[')
4556                 fidstr++;
4557
4558         sscanf(fidstr, SFID, RFID(&fid));
4559         if (!fid_is_sane(&fid)) {
4560                 llapi_err_noerrno(LLAPI_MSG_ERROR,
4561                                   "bad FID format '%s', should be [seq:oid:ver]"
4562                                   " (e.g. "DFID")\n", fidstr_orig,
4563                                   (unsigned long long)FID_SEQ_NORMAL, 2, 0);
4564                 return -EINVAL;
4565         }
4566
4567         gf = malloc(sizeof(*gf) + buflen);
4568         if (gf == NULL)
4569                 return -ENOMEM;
4570
4571         gf->gf_fid = fid;
4572         gf->gf_recno = *recno;
4573         gf->gf_linkno = *linkno;
4574         gf->gf_pathlen = buflen;
4575
4576         /* Take path or fsname */
4577         rc = root_ioctl(device, OBD_IOC_FID2PATH, gf, NULL, 0);
4578         if (rc)
4579                 goto out_free;
4580
4581         memcpy(buf, gf->gf_u.gf_path, gf->gf_pathlen);
4582         if (buf[0] == '\0') { /* ROOT path */
4583                 buf[0] = '/';
4584                 buf[1] = '\0';
4585         }
4586         *recno = gf->gf_recno;
4587         *linkno = gf->gf_linkno;
4588
4589 out_free:
4590         free(gf);
4591         return rc;
4592 }
4593
4594 static int fid_from_lma(const char *path, int fd, lustre_fid *fid)
4595 {
4596         char                     buf[512];
4597         struct lustre_mdt_attrs *lma;
4598         int                      rc;
4599
4600         if (path == NULL)
4601                 rc = fgetxattr(fd, XATTR_NAME_LMA, buf, sizeof(buf));
4602         else
4603                 rc = lgetxattr(path, XATTR_NAME_LMA, buf, sizeof(buf));
4604         if (rc < 0)
4605                 return -errno;
4606         lma = (struct lustre_mdt_attrs *)buf;
4607         fid_le_to_cpu(fid, &lma->lma_self_fid);
4608         return 0;
4609 }
4610
4611 int llapi_get_mdt_index_by_fid(int fd, const lustre_fid *fid,
4612                                int *mdt_index)
4613 {
4614         int     rc;
4615
4616         rc = ioctl(fd, LL_IOC_FID2MDTIDX, fid);
4617         if (rc < 0)
4618                 return -errno;
4619
4620         *mdt_index = rc;
4621
4622         return rc;
4623 }
4624
4625 int llapi_fd2fid(int fd, lustre_fid *fid)
4626 {
4627         int rc;
4628
4629         memset(fid, 0, sizeof(*fid));
4630
4631         rc = ioctl(fd, LL_IOC_PATH2FID, fid) < 0 ? -errno : 0;
4632         if (rc == -EINVAL || rc == -ENOTTY)
4633                 rc = fid_from_lma(NULL, fd, fid);
4634
4635         return rc;
4636 }
4637
4638 int llapi_path2fid(const char *path, lustre_fid *fid)
4639 {
4640         int fd, rc;
4641
4642         memset(fid, 0, sizeof(*fid));
4643         fd = open(path, O_RDONLY | O_NONBLOCK | O_NOFOLLOW);
4644         if (fd < 0) {
4645                 if (errno == ELOOP || errno == ENXIO)
4646                         return fid_from_lma(path, -1, fid);
4647                 return -errno;
4648         }
4649
4650         rc = llapi_fd2fid(fd, fid);
4651         if (rc == -EINVAL || rc == -ENOTTY)
4652                 rc = fid_from_lma(path, -1, fid);
4653
4654         close(fd);
4655         return rc;
4656 }
4657
4658 int llapi_fd2parent(int fd, unsigned int linkno, lustre_fid *parent_fid,
4659                     char *name, size_t name_size)
4660 {
4661         struct getparent        *gp;
4662         int                      rc;
4663
4664         gp = malloc(sizeof(*gp) + name_size);
4665         if (gp == NULL)
4666                 return -ENOMEM;
4667
4668         gp->gp_linkno = linkno;
4669         gp->gp_name_size = name_size;
4670
4671         rc = ioctl(fd, LL_IOC_GETPARENT, gp);
4672         if (rc < 0) {
4673                 rc = -errno;
4674                 goto err_free;
4675         }
4676
4677         *parent_fid = gp->gp_fid;
4678
4679         strncpy(name, gp->gp_name, name_size);
4680         name[name_size - 1] = '\0';
4681
4682 err_free:
4683         free(gp);
4684         return rc;
4685 }
4686
4687 int llapi_path2parent(const char *path, unsigned int linkno,
4688                       lustre_fid *parent_fid, char *name, size_t name_size)
4689 {
4690         int     fd;
4691         int     rc;
4692
4693         fd = open(path, O_RDONLY | O_NONBLOCK | O_NOFOLLOW);
4694         if (fd < 0)
4695                 return -errno;
4696
4697         rc = llapi_fd2parent(fd, linkno, parent_fid, name, name_size);
4698         close(fd);
4699         return rc;
4700 }
4701
4702 int llapi_get_connect_flags(const char *mnt, __u64 *flags)
4703 {
4704         int root;
4705         int rc;
4706
4707         root = open(mnt, O_RDONLY | O_DIRECTORY);
4708         if (root < 0) {
4709                 rc = -errno;
4710                 llapi_error(LLAPI_MSG_ERROR, rc, "open %s failed", mnt);
4711                 return rc;
4712         }
4713
4714         rc = ioctl(root, LL_IOC_GET_CONNECT_FLAGS, flags);
4715         if (rc < 0) {
4716                 rc = -errno;
4717                 llapi_error(LLAPI_MSG_ERROR, rc,
4718                         "ioctl on %s for getting connect flags failed", mnt);
4719         }
4720         close(root);
4721         return rc;
4722 }
4723
4724 /**
4725  * Get a 64-bit value representing the version of file data pointed by fd.
4726  *
4727  * Each write or truncate, flushed on OST, will change this value. You can use
4728  * this value to verify if file data was modified. This only checks the file
4729  * data, not metadata.
4730  *
4731  * \param  flags  0: no flush pages, usually used it the process has already
4732  *                  taken locks;
4733  *                LL_DV_RD_FLUSH: OSTs will take LCK_PR to flush dirty pages
4734  *                  from clients;
4735  *                LL_DV_WR_FLUSH: OSTs will take LCK_PW to flush all caching
4736  *                  pages from clients.
4737  *
4738  * \retval 0 on success.
4739  * \retval -errno on error.
4740  */
4741 int llapi_get_data_version(int fd, __u64 *data_version, __u64 flags)
4742 {
4743         int rc;
4744         struct ioc_data_version idv;
4745
4746         idv.idv_flags = flags;
4747
4748         rc = ioctl(fd, LL_IOC_DATA_VERSION, &idv);
4749         if (rc)
4750                 rc = -errno;
4751         else
4752                 *data_version = idv.idv_version;
4753
4754         return rc;
4755 }
4756
4757 /*
4758  * Create a file without any name open it for read/write
4759  *
4760  * - file is created as if it were a standard file in the given \a directory
4761  * - file does not appear in \a directory and mtime does not change because
4762  *   the filename is handled specially by the Lustre MDS.
4763  * - file is removed at final close
4764  * - file modes are rw------- since it doesn't make sense to have a read-only
4765  *   or write-only file that cannot be opened again.
4766  * - if user wants another mode it must use fchmod() on the open file, no
4767  *   security problems arise because it cannot be opened by another process.
4768  *
4769  * \param[in]   directory       directory from which to inherit layout/MDT idx
4770  * \param[in]   idx             MDT index on which the file is created,
4771  *                              \a idx == -1 means no specific MDT is requested
4772  * \param[in]   open_flags      standard open(2) flags
4773  *
4774  * \retval      0 on success.
4775  * \retval      -errno on error.
4776  */
4777 int llapi_create_volatile_idx(char *directory, int idx, int open_flags)
4778 {
4779         char    file_path[PATH_MAX];
4780         char    filename[PATH_MAX];
4781         int     saved_errno = errno;
4782         int     fd;
4783         int     rnumber;
4784         int     rc;
4785
4786         do {
4787                 rnumber = random();
4788                 if (idx == -1)
4789                         snprintf(filename, sizeof(filename),
4790                                  LUSTRE_VOLATILE_HDR"::%.4X", rnumber);
4791                 else
4792                         snprintf(filename, sizeof(filename),
4793                                  LUSTRE_VOLATILE_HDR":%.4X:%.4X", idx, rnumber);
4794
4795                 rc = snprintf(file_path, sizeof(file_path),
4796                               "%s/%s", directory, filename);
4797                 if (rc >= sizeof(file_path))
4798                         return -E2BIG;
4799
4800                 fd = open(file_path,
4801                           O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW | open_flags,
4802                           S_IRUSR | S_IWUSR);
4803         } while (fd < 0 && errno == EEXIST);
4804
4805         if (fd < 0) {
4806                 llapi_error(LLAPI_MSG_ERROR, errno,
4807                             "Cannot create volatile file '%s' in '%s'",
4808                             filename + LUSTRE_VOLATILE_HDR_LEN,
4809                             directory);
4810                 return -errno;
4811         }
4812
4813         /* Unlink file in case this wasn't a Lustre filesystem and the
4814          * magic volatile filename wasn't handled as intended. The
4815          * effect is the same. If volatile open was supported then we
4816          * expect unlink() to return -ENOENT. */
4817         (void)unlink(file_path);
4818
4819         /* Since we are returning successfully we restore errno (and
4820          * mask out possible EEXIST from open() and ENOENT from
4821          * unlink(). */
4822         errno = saved_errno;
4823
4824         return fd;
4825 }
4826
4827 /**
4828  * Swap the layouts between 2 file descriptors
4829  * the 2 files must be open for writing
4830  * first fd received the ioctl, second fd is passed as arg
4831  * this is assymetric but avoid use of root path for ioctl
4832  */
4833 int llapi_fswap_layouts_grouplock(int fd1, int fd2, __u64 dv1, __u64 dv2,
4834                                   int gid, __u64 flags)
4835 {
4836         struct lustre_swap_layouts      lsl;
4837         struct stat                     st1;
4838         struct stat                     st2;
4839         int                             rc;
4840
4841         if (flags & (SWAP_LAYOUTS_KEEP_ATIME | SWAP_LAYOUTS_KEEP_MTIME)) {
4842                 rc = fstat(fd1, &st1);
4843                 if (rc < 0)
4844                         return -errno;
4845
4846                 rc = fstat(fd2, &st2);
4847                 if (rc < 0)
4848                         return -errno;
4849         }
4850         lsl.sl_fd = fd2;
4851         lsl.sl_flags = flags;
4852         lsl.sl_gid = gid;
4853         lsl.sl_dv1 = dv1;
4854         lsl.sl_dv2 = dv2;
4855         rc = ioctl(fd1, LL_IOC_LOV_SWAP_LAYOUTS, &lsl);
4856         if (rc < 0)
4857                 return -errno;
4858
4859         if (flags & (SWAP_LAYOUTS_KEEP_ATIME | SWAP_LAYOUTS_KEEP_MTIME)) {
4860                 struct timeval  tv1[2];
4861                 struct timeval  tv2[2];
4862
4863                 memset(tv1, 0, sizeof(tv1));
4864                 memset(tv2, 0, sizeof(tv2));
4865
4866                 if (flags & SWAP_LAYOUTS_KEEP_ATIME) {
4867                         tv1[0].tv_sec = st1.st_atime;
4868                         tv2[0].tv_sec = st2.st_atime;
4869                 } else {
4870                         tv1[0].tv_sec = st2.st_atime;
4871                         tv2[0].tv_sec = st1.st_atime;
4872                 }
4873
4874                 if (flags & SWAP_LAYOUTS_KEEP_MTIME) {
4875                         tv1[1].tv_sec = st1.st_mtime;
4876                         tv2[1].tv_sec = st2.st_mtime;
4877                 } else {
4878                         tv1[1].tv_sec = st2.st_mtime;
4879                         tv2[1].tv_sec = st1.st_mtime;
4880                 }
4881
4882                 rc = futimes(fd1, tv1);
4883                 if (rc < 0)
4884                         return -errno;
4885
4886                 rc = futimes(fd2, tv2);
4887                 if (rc < 0)
4888                         return -errno;
4889         }
4890
4891         return 0;
4892 }
4893
4894 int llapi_fswap_layouts(int fd1, int fd2, __u64 dv1, __u64 dv2, __u64 flags)
4895 {
4896         int     rc;
4897         int     grp_id;
4898
4899         do
4900                 grp_id = random();
4901         while (grp_id == 0);
4902
4903         rc = llapi_fswap_layouts_grouplock(fd1, fd2, dv1, dv2, grp_id, flags);
4904         if (rc < 0)
4905                 return rc;
4906
4907         return 0;
4908 }
4909
4910 /**
4911  * Swap the layouts between 2 files
4912  * the 2 files are open in write
4913  */
4914 int llapi_swap_layouts(const char *path1, const char *path2,
4915                        __u64 dv1, __u64 dv2, __u64 flags)
4916 {
4917         int     fd1, fd2, rc;
4918
4919         fd1 = open(path1, O_WRONLY | O_LOV_DELAY_CREATE);
4920         if (fd1 < 0) {
4921                 rc = -errno;
4922                 llapi_error(LLAPI_MSG_ERROR, rc,
4923                             "error: cannot open '%s' for write", path1);
4924                 goto out;
4925         }
4926
4927         fd2 = open(path2, O_WRONLY | O_LOV_DELAY_CREATE);
4928         if (fd2 < 0) {
4929                 rc = -errno;
4930                 llapi_error(LLAPI_MSG_ERROR, rc,
4931                             "error: cannot open '%s' for write", path2);
4932                 goto out_close;
4933         }
4934
4935         rc = llapi_fswap_layouts(fd1, fd2, dv1, dv2, flags);
4936         if (rc < 0)
4937                 llapi_error(LLAPI_MSG_ERROR, rc,
4938                             "error: cannot swap layout between '%s' and '%s'",
4939                             path1, path2);
4940
4941         close(fd2);
4942 out_close:
4943         close(fd1);
4944 out:
4945         return rc;
4946 }
4947
4948 /**
4949  * Attempt to open a file with Lustre file identifier \a fid
4950  * and return an open file descriptor.
4951  *
4952  * \param[in] lustre_dir        path within Lustre filesystem containing \a fid
4953  * \param[in] fid               Lustre file identifier of file to open
4954  * \param[in] flags             open() flags
4955  *
4956  * \retval                      non-negative file descriptor on successful open
4957  * \retval                      -1 if an error occurred
4958  */
4959 int llapi_open_by_fid(const char *lustre_dir, const lustre_fid *fid, int flags)
4960 {
4961         char mntdir[PATH_MAX];
4962         char path[PATH_MAX];
4963         int rc;
4964
4965         rc = llapi_search_mounts(lustre_dir, 0, mntdir, NULL);
4966         if (rc != 0)
4967                 return -1;
4968
4969         snprintf(path, sizeof(path), "%s/.lustre/fid/"DFID, mntdir, PFID(fid));
4970         return open(path, flags);
4971 }
4972
4973 /**
4974  * Take group lock.
4975  *
4976  * \param fd   File to lock.
4977  * \param gid  Group Identifier.
4978  *
4979  * \retval 0 on success.
4980  * \retval -errno on failure.
4981  */
4982 int llapi_group_lock(int fd, int gid)
4983 {
4984         int rc;
4985
4986         rc = ioctl(fd, LL_IOC_GROUP_LOCK, gid);
4987         if (rc < 0) {
4988                 rc = -errno;
4989                 llapi_error(LLAPI_MSG_ERROR, rc, "cannot get group lock");
4990         }
4991         return rc;
4992 }
4993
4994 /**
4995  * Put group lock.
4996  *
4997  * \param fd   File to unlock.
4998  * \param gid  Group Identifier.
4999  *
5000  * \retval 0 on success.
5001  * \retval -errno on failure.
5002  */
5003 int llapi_group_unlock(int fd, int gid)
5004 {
5005         int rc;
5006
5007         rc = ioctl(fd, LL_IOC_GROUP_UNLOCK, gid);
5008         if (rc < 0) {
5009                 rc = -errno;
5010                 llapi_error(LLAPI_MSG_ERROR, rc, "cannot put group lock");
5011         }
5012         return rc;
5013 }