Whamcloud - gitweb
LU-9424 tools: v1/v3 as composite layout
[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 <lnet/lnetctl.h>
76 #include <lustre/lustreapi.h>
77 #include <linux/lustre_ostid.h>
78 #include <linux/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 obd_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 obd_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 = obd_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         struct dirent *cookie = NULL;
1240         int rc = 0;
1241         unsigned int nb_entries = 0;
1242         unsigned int used = 0;
1243         unsigned int i;
1244
1245         /* initialize output array */
1246         for (i = 0; i < list_size; i++)
1247                 poollist[i] = NULL;
1248
1249         /* is name a pathname ? */
1250         ptr = strchr(name, '/');
1251         if (ptr != NULL) {
1252                 /* only absolute pathname is supported */
1253                 if (*name != '/')
1254                         return -EINVAL;
1255
1256                 if (!realpath(name, rname)) {
1257                         rc = -errno;
1258                         llapi_error(LLAPI_MSG_ERROR, rc, "invalid path '%s'",
1259                                     name);
1260                         return rc;
1261                 }
1262
1263                 fsname = strdup(rname);
1264                 if (!fsname)
1265                         return -ENOMEM;
1266
1267                 rc = poolpath(&pathname, NULL, rname);
1268         } else {
1269                 /* name is FSNAME */
1270                 fsname = strdup(name);
1271                 if (!fsname)
1272                         return -ENOMEM;
1273                 rc = poolpath(&pathname, fsname, NULL);
1274         }
1275         if (rc != 0) {
1276                 llapi_error(LLAPI_MSG_ERROR, rc,
1277                             "Lustre filesystem '%s' not found", name);
1278                 goto free_path;
1279         }
1280
1281         llapi_printf(LLAPI_MSG_NORMAL, "Pools from %s:\n", fsname);
1282         dir = opendir(pathname.gl_pathv[0]);
1283         if (dir == NULL) {
1284                 rc = -errno;
1285                 llapi_error(LLAPI_MSG_ERROR, rc,
1286                             "Could not open pool list for '%s'",
1287                             name);
1288                 goto free_path;
1289         }
1290
1291         while(1) {
1292                 rc = readdir_r(dir, &pool, &cookie);
1293                 if (rc != 0) {
1294                         rc = -errno;
1295                         llapi_error(LLAPI_MSG_ERROR, rc,
1296                                     "Error reading pool list for '%s'", name);
1297                         goto free_path;
1298                 } else if ((rc == 0) && (cookie == NULL)) {
1299                         /* end of directory */
1300                         break;
1301                 }
1302
1303                 /* ignore . and .. */
1304                 if (!strcmp(pool.d_name, ".") || !strcmp(pool.d_name, ".."))
1305                         continue;
1306
1307                 /* check output bounds */
1308                 if (nb_entries >= list_size) {
1309                         rc = -EOVERFLOW;
1310                         goto free_dir;
1311                 }
1312
1313                 /* +2 for '.' and final '\0' */
1314                 if (used + strlen(pool.d_name) + strlen(fsname) + 2
1315                     > buffer_size) {
1316                         rc = -EOVERFLOW;
1317                         goto free_dir;
1318                 }
1319
1320                 sprintf(buffer + used, "%s.%s", fsname, pool.d_name);
1321                 poollist[nb_entries] = buffer + used;
1322                 used += strlen(pool.d_name) + strlen(fsname) + 2;
1323                 nb_entries++;
1324         }
1325
1326 free_dir:
1327         closedir(dir);
1328 free_path:
1329         cfs_free_param_data(&pathname);
1330         if (fsname)
1331                 free(fsname);
1332         return rc != 0 ? rc : nb_entries;
1333 }
1334
1335 /* wrapper for lfs.c and obd.c */
1336 int llapi_poollist(const char *name)
1337 {
1338         /* list of pool names (assume that pool count is smaller
1339            than OST count) */
1340         char **list, *buffer = NULL, *fsname = (char *)name;
1341         char *poolname = NULL, *tmp = NULL, data[16];
1342         enum param_filter type = FILTER_BY_PATH;
1343         int obdcount, bufsize, rc, nb, i;
1344
1345         if (name == NULL)
1346                 return -EINVAL;
1347
1348         if (name[0] != '/') {
1349                 fsname = strdup(name);
1350                 if (fsname == NULL)
1351                         return -ENOMEM;
1352
1353                 poolname = strchr(fsname, '.');
1354                 if (poolname)
1355                         *poolname = '\0';
1356                 type = FILTER_BY_FS_NAME;
1357         }
1358
1359         rc = get_lustre_param_value("lov", fsname, type, "numobd",
1360                                     data, sizeof(data));
1361         if (rc < 0)
1362                 goto err;
1363         obdcount = atoi(data);
1364
1365         /* Allocate space for each fsname-OST0000_UUID, 1 per OST,
1366          * and also an array to store the pointers for all that
1367          * allocated space. */
1368 retry_get_pools:
1369         bufsize = sizeof(struct obd_uuid) * obdcount;
1370         buffer = realloc(tmp, bufsize + sizeof(*list) * obdcount);
1371         if (buffer == NULL) {
1372                 rc = -ENOMEM;
1373                 goto err;
1374         }
1375         list = (char **) (buffer + bufsize);
1376
1377         if (!poolname) {
1378                 /* name is a path or fsname */
1379                 nb = llapi_get_poollist(name, list, obdcount,
1380                                         buffer, bufsize);
1381         } else {
1382                 /* name is a pool name (<fsname>.<poolname>) */
1383                 nb = llapi_get_poolmembers(name, list, obdcount,
1384                                            buffer, bufsize);
1385         }
1386
1387         if (nb == -EOVERFLOW) {
1388                 obdcount *= 2;
1389                 tmp = buffer;
1390                 goto retry_get_pools;
1391         }
1392
1393         for (i = 0; i < nb; i++)
1394                 llapi_printf(LLAPI_MSG_NORMAL, "%s\n", list[i]);
1395         rc = (nb < 0 ? nb : 0);
1396 err:
1397         if (buffer)
1398                 free(buffer);
1399         if (fsname != NULL && type == FILTER_BY_FS_NAME)
1400                 free(fsname);
1401         return rc;
1402 }
1403
1404 typedef int (semantic_func_t)(char *path, DIR *parent, DIR **d,
1405                               void *data, struct dirent64 *de);
1406
1407 #define OBD_NOT_FOUND           (-1)
1408
1409 static int common_param_init(struct find_param *param, char *path)
1410 {
1411         int lum_size = get_mds_md_size(path);
1412
1413         if (lum_size < PATH_MAX + 1)
1414                 lum_size = PATH_MAX + 1;
1415
1416         param->fp_lum_size = lum_size;
1417         param->fp_lmd = calloc(1, sizeof(lstat_t) + param->fp_lum_size);
1418         if (param->fp_lmd == NULL) {
1419                 llapi_error(LLAPI_MSG_ERROR, -ENOMEM,
1420                             "error: allocation of %zu bytes for ioctl",
1421                             sizeof(lstat_t) + param->fp_lum_size);
1422                 return -ENOMEM;
1423         }
1424
1425         param->fp_lmv_stripe_count = 256;
1426         param->fp_lmv_md = calloc(1,
1427                                   lmv_user_md_size(param->fp_lmv_stripe_count,
1428                                                    LMV_MAGIC_V1));
1429         if (param->fp_lmv_md == NULL) {
1430                 llapi_error(LLAPI_MSG_ERROR, -ENOMEM,
1431                             "error: allocation of %d bytes for ioctl",
1432                             lmv_user_md_size(param->fp_lmv_stripe_count,
1433                                              LMV_MAGIC_V1));
1434                 return -ENOMEM;
1435         }
1436
1437         param->fp_got_uuids = 0;
1438         param->fp_obd_indexes = NULL;
1439         param->fp_obd_index = OBD_NOT_FOUND;
1440         if (!param->fp_migrate)
1441                 param->fp_mdt_index = OBD_NOT_FOUND;
1442         return 0;
1443 }
1444
1445 static void find_param_fini(struct find_param *param)
1446 {
1447         if (param->fp_obd_indexes)
1448                 free(param->fp_obd_indexes);
1449
1450         if (param->fp_lmd)
1451                 free(param->fp_lmd);
1452
1453         if (param->fp_lmv_md)
1454                 free(param->fp_lmv_md);
1455 }
1456
1457 static int cb_common_fini(char *path, DIR *parent, DIR **dirp, void *data,
1458                           struct dirent64 *de)
1459 {
1460         struct find_param *param = data;
1461         param->fp_depth--;
1462
1463         return 0;
1464 }
1465
1466 /* set errno upon failure */
1467 static DIR *opendir_parent(const char *path)
1468 {
1469         char *path_copy;
1470         char *parent_path;
1471         DIR *parent;
1472
1473         path_copy = strdup(path);
1474         if (path_copy == NULL)
1475                 return NULL;
1476
1477         parent_path = dirname(path_copy);
1478         parent = opendir(parent_path);
1479         free(path_copy);
1480
1481         return parent;
1482 }
1483
1484 static int cb_get_dirstripe(char *path, DIR *d, struct find_param *param)
1485 {
1486         int ret;
1487
1488 again:
1489         param->fp_lmv_md->lum_stripe_count = param->fp_lmv_stripe_count;
1490         if (param->fp_get_default_lmv)
1491                 param->fp_lmv_md->lum_magic = LMV_USER_MAGIC;
1492         else
1493                 param->fp_lmv_md->lum_magic = LMV_MAGIC_V1;
1494
1495         ret = ioctl(dirfd(d), LL_IOC_LMV_GETSTRIPE, param->fp_lmv_md);
1496         if (errno == E2BIG && ret != 0) {
1497                 int stripe_count;
1498                 int lmv_size;
1499
1500                 stripe_count = (__u32)param->fp_lmv_md->lum_stripe_count;
1501                 if (stripe_count <= param->fp_lmv_stripe_count)
1502                         return ret;
1503
1504                 free(param->fp_lmv_md);
1505                 param->fp_lmv_stripe_count = stripe_count;
1506                 lmv_size = lmv_user_md_size(stripe_count, LMV_MAGIC_V1);
1507                 param->fp_lmv_md = malloc(lmv_size);
1508                 if (param->fp_lmv_md == NULL) {
1509                         llapi_error(LLAPI_MSG_ERROR, -ENOMEM,
1510                                     "error: allocation of %d bytes for ioctl",
1511                                     lmv_user_md_size(param->fp_lmv_stripe_count,
1512                                                      LMV_MAGIC_V1));
1513                         return -ENOMEM;
1514                 }
1515                 goto again;
1516         }
1517         return ret;
1518 }
1519
1520 static int get_lmd_info(char *path, DIR *parent, DIR *dir,
1521                  struct lov_user_mds_data *lmd, int lumlen)
1522 {
1523         lstat_t *st = &lmd->lmd_st;
1524         int ret = 0;
1525
1526         if (parent == NULL && dir == NULL)
1527                 return -EINVAL;
1528
1529         if (dir) {
1530                 ret = ioctl(dirfd(dir), LL_IOC_MDC_GETINFO, (void *)lmd);
1531         } else if (parent) {
1532                 char *fname = strrchr(path, '/');
1533
1534                 /* To avoid opening, locking, and closing each file on the
1535                  * client if that is not needed. The GETFILEINFO ioctl can
1536                  * be done on the patent dir with a single open for all
1537                  * files in that directory, and it also doesn't pollute the
1538                  * client dcache with millions of dentries when traversing
1539                  * a large filesystem.  */
1540                 fname = (fname == NULL ? path : fname + 1);
1541                 /* retrieve needed file info */
1542                 strlcpy((char *)lmd, fname, lumlen);
1543                 ret = ioctl(dirfd(parent), IOC_MDC_GETFILEINFO, (void *)lmd);
1544         }
1545
1546         if (ret) {
1547                 if (errno == ENOTTY) {
1548                         /* ioctl is not supported, it is not a lustre fs.
1549                          * Do the regular lstat(2) instead. */
1550                         ret = lstat_f(path, st);
1551                         if (ret) {
1552                                 ret = -errno;
1553                                 llapi_error(LLAPI_MSG_ERROR, ret,
1554                                             "error: %s: lstat failed for %s",
1555                                             __func__, path);
1556                         }
1557                 } else if (errno == ENOENT) {
1558                         ret = -errno;
1559                         llapi_error(LLAPI_MSG_WARN, ret,
1560                                     "warning: %s: %s does not exist",
1561                                     __func__, path);
1562                 } else if (errno != EISDIR) {
1563                         ret = -errno;
1564                         llapi_error(LLAPI_MSG_ERROR, ret,
1565                                     "%s ioctl failed for %s.",
1566                                     dir ? "LL_IOC_MDC_GETINFO" :
1567                                     "IOC_MDC_GETFILEINFO", path);
1568                 } else {
1569                         ret = -errno;
1570                         llapi_error(LLAPI_MSG_ERROR, ret,
1571                                  "error: %s: IOC_MDC_GETFILEINFO failed for %s",
1572                                    __func__, path);
1573                 }
1574         }
1575         return ret;
1576 }
1577
1578 static int llapi_semantic_traverse(char *path, int size, DIR *parent,
1579                                    semantic_func_t sem_init,
1580                                    semantic_func_t sem_fini, void *data,
1581                                    struct dirent64 *de)
1582 {
1583         struct find_param *param = (struct find_param *)data;
1584         struct dirent64 *dent;
1585         int len, ret;
1586         DIR *d, *p = NULL;
1587
1588         ret = 0;
1589         len = strlen(path);
1590
1591         d = opendir(path);
1592         if (!d && errno != ENOTDIR) {
1593                 ret = -errno;
1594                 llapi_error(LLAPI_MSG_ERROR, ret, "%s: Failed to open '%s'",
1595                             __func__, path);
1596                 return ret;
1597         } else if (!d && !parent) {
1598                 /* ENOTDIR. Open the parent dir. */
1599                 p = opendir_parent(path);
1600                 if (!p) {
1601                         ret = -errno;
1602                         goto out;
1603                 }
1604         }
1605
1606         if (sem_init && (ret = sem_init(path, parent ?: p, &d, data, de)))
1607                 goto err;
1608
1609         if (d == NULL)
1610                 goto out;
1611
1612         while ((dent = readdir64(d)) != NULL) {
1613                 int rc;
1614
1615                 if (!strcmp(dent->d_name, ".") || !strcmp(dent->d_name, ".."))
1616                         continue;
1617
1618                 /* Don't traverse .lustre directory */
1619                 if (!(strcmp(dent->d_name, dot_lustre_name)))
1620                         continue;
1621
1622                 path[len] = 0;
1623                 if ((len + dent->d_reclen + 2) > size) {
1624                         llapi_err_noerrno(LLAPI_MSG_ERROR,
1625                                           "error: %s: string buffer is too small",
1626                                           __func__);
1627                         break;
1628                 }
1629                 strcat(path, "/");
1630                 strcat(path, dent->d_name);
1631
1632                 if (dent->d_type == DT_UNKNOWN) {
1633                         lstat_t *st = &param->fp_lmd->lmd_st;
1634
1635                         rc = get_lmd_info(path, d, NULL, param->fp_lmd,
1636                                            param->fp_lum_size);
1637                         if (rc == 0)
1638                                 dent->d_type = IFTODT(st->st_mode);
1639                         else if (ret == 0)
1640                                 ret = rc;
1641
1642                         if (rc == -ENOENT)
1643                                 continue;
1644                 }
1645                 switch (dent->d_type) {
1646                 case DT_UNKNOWN:
1647                         llapi_err_noerrno(LLAPI_MSG_ERROR,
1648                                           "error: %s: '%s' is UNKNOWN type %d",
1649                                           __func__, dent->d_name, dent->d_type);
1650                         break;
1651                 case DT_DIR:
1652                         rc = llapi_semantic_traverse(path, size, d, sem_init,
1653                                                       sem_fini, data, dent);
1654                         if (rc != 0 && ret == 0)
1655                                 ret = rc;
1656                         break;
1657                 default:
1658                         rc = 0;
1659                         if (sem_init) {
1660                                 rc = sem_init(path, d, NULL, data, dent);
1661                                 if (rc < 0 && ret == 0)
1662                                         ret = rc;
1663                         }
1664                         if (sem_fini && rc == 0)
1665                                 sem_fini(path, d, NULL, data, dent);
1666                 }
1667         }
1668
1669 out:
1670         path[len] = 0;
1671
1672         if (sem_fini)
1673                 sem_fini(path, parent, &d, data, de);
1674 err:
1675         if (d)
1676                 closedir(d);
1677         if (p)
1678                 closedir(p);
1679         return ret;
1680 }
1681
1682 static int param_callback(char *path, semantic_func_t sem_init,
1683                           semantic_func_t sem_fini, struct find_param *param)
1684 {
1685         int ret, len = strlen(path);
1686         char *buf;
1687
1688         if (len > PATH_MAX) {
1689                 ret = -EINVAL;
1690                 llapi_error(LLAPI_MSG_ERROR, ret,
1691                             "Path name '%s' is too long", path);
1692                 return ret;
1693         }
1694
1695         buf = (char *)malloc(PATH_MAX + 1);
1696         if (!buf)
1697                 return -ENOMEM;
1698
1699         strlcpy(buf, path, PATH_MAX + 1);
1700         ret = common_param_init(param, buf);
1701         if (ret)
1702                 goto out;
1703
1704         param->fp_depth = 0;
1705
1706         ret = llapi_semantic_traverse(buf, PATH_MAX + 1, NULL, sem_init,
1707                                       sem_fini, param, NULL);
1708 out:
1709         find_param_fini(param);
1710         free(buf);
1711         return ret < 0 ? ret : 0;
1712 }
1713
1714 int llapi_file_fget_lov_uuid(int fd, struct obd_uuid *lov_name)
1715 {
1716         int rc = ioctl(fd, OBD_IOC_GETNAME, lov_name);
1717         if (rc) {
1718                 rc = -errno;
1719                 llapi_error(LLAPI_MSG_ERROR, rc, "error: can't get lov name.");
1720         }
1721         return rc;
1722 }
1723
1724 int llapi_file_fget_lmv_uuid(int fd, struct obd_uuid *lov_name)
1725 {
1726         int rc = ioctl(fd, OBD_IOC_GETMDNAME, lov_name);
1727         if (rc) {
1728                 rc = -errno;
1729                 llapi_error(LLAPI_MSG_ERROR, rc, "error: can't get lmv name.");
1730         }
1731         return rc;
1732 }
1733
1734 int llapi_file_get_lov_uuid(const char *path, struct obd_uuid *lov_uuid)
1735 {
1736         int fd, rc;
1737
1738         fd = open(path, O_RDONLY | O_NONBLOCK);
1739         if (fd < 0) {
1740                 rc = -errno;
1741                 llapi_error(LLAPI_MSG_ERROR, rc, "error opening %s", path);
1742                 return rc;
1743         }
1744
1745         rc = llapi_file_fget_lov_uuid(fd, lov_uuid);
1746
1747         close(fd);
1748         return rc;
1749 }
1750
1751 int llapi_file_get_lmv_uuid(const char *path, struct obd_uuid *lov_uuid)
1752 {
1753         int fd, rc;
1754
1755         fd = open(path, O_RDONLY | O_NONBLOCK);
1756         if (fd < 0) {
1757                 rc = -errno;
1758                 llapi_error(LLAPI_MSG_ERROR, rc, "error opening %s", path);
1759                 return rc;
1760         }
1761
1762         rc = llapi_file_fget_lmv_uuid(fd, lov_uuid);
1763
1764         close(fd);
1765         return rc;
1766 }
1767
1768 enum tgt_type {
1769         LOV_TYPE = 1,
1770         LMV_TYPE
1771 };
1772
1773 /*
1774  * If uuidp is NULL, return the number of available obd uuids.
1775  * If uuidp is non-NULL, then it will return the uuids of the obds. If
1776  * there are more OSTs than allocated to uuidp, then an error is returned with
1777  * the ost_count set to number of available obd uuids.
1778  */
1779 static int llapi_get_target_uuids(int fd, struct obd_uuid *uuidp,
1780                                   int *ost_count, enum tgt_type type)
1781 {
1782         char buf[PATH_MAX], format[32];
1783         int rc = 0, index = 0;
1784         struct obd_uuid name;
1785         glob_t param;
1786         FILE *fp;
1787
1788         /* Get the lov name */
1789         if (type == LOV_TYPE)
1790                 rc = llapi_file_fget_lov_uuid(fd, &name);
1791         else
1792                 rc = llapi_file_fget_lmv_uuid(fd, &name);
1793         if (rc != 0)
1794                 return rc;
1795
1796         /* Now get the ost uuids */
1797         rc = get_lustre_param_path(type == LOV_TYPE ? "lov" : "lmv", name.uuid,
1798                                    FILTER_BY_EXACT, "target_obd", &param);
1799         if (rc != 0)
1800                 return -ENOENT;
1801
1802         fp = fopen(param.gl_pathv[0], "r");
1803         if (fp == NULL) {
1804                 rc = -errno;
1805                 llapi_error(LLAPI_MSG_ERROR, rc, "error: opening '%s'",
1806                             param.gl_pathv[0]);
1807                 goto free_param;
1808         }
1809
1810         snprintf(format, sizeof(format),
1811                  "%%d: %%%zus", sizeof(uuidp[0].uuid) - 1);
1812         while (fgets(buf, sizeof(buf), fp) != NULL) {
1813                 if (uuidp && (index < *ost_count)) {
1814                         if (sscanf(buf, format, &index, uuidp[index].uuid) < 2)
1815                                 break;
1816                 }
1817                 index++;
1818         }
1819
1820         fclose(fp);
1821
1822         if (uuidp && (index > *ost_count))
1823                 rc = -EOVERFLOW;
1824
1825         *ost_count = index;
1826 free_param:
1827         cfs_free_param_data(&param);
1828         return rc;
1829 }
1830
1831 int llapi_lov_get_uuids(int fd, struct obd_uuid *uuidp, int *ost_count)
1832 {
1833         return llapi_get_target_uuids(fd, uuidp, ost_count, LOV_TYPE);
1834 }
1835
1836 int llapi_get_obd_count(char *mnt, int *count, int is_mdt)
1837 {
1838         int root;
1839         int rc;
1840
1841         root = open(mnt, O_RDONLY | O_DIRECTORY);
1842         if (root < 0) {
1843                 rc = -errno;
1844                 llapi_error(LLAPI_MSG_ERROR, rc, "open %s failed", mnt);
1845                 return rc;
1846         }
1847
1848         *count = is_mdt;
1849         rc = ioctl(root, LL_IOC_GETOBDCOUNT, count);
1850         if (rc < 0)
1851                 rc = -errno;
1852
1853         close(root);
1854         return rc;
1855 }
1856
1857 /* Check if user specified value matches a real uuid.  Ignore _UUID,
1858  * -osc-4ba41334, other trailing gunk in comparison.
1859  * @param real_uuid ends in "_UUID"
1860  * @param search_uuid may or may not end in "_UUID"
1861  */
1862 int llapi_uuid_match(char *real_uuid, char *search_uuid)
1863 {
1864         int cmplen = strlen(real_uuid);
1865         int searchlen = strlen(search_uuid);
1866
1867         if (cmplen > 5 && strcmp(real_uuid + cmplen - 5, "_UUID") == 0)
1868                 cmplen -= 5;
1869         if (searchlen > 5 && strcmp(search_uuid + searchlen - 5, "_UUID") == 0)
1870                 searchlen -= 5;
1871
1872         /* The UUIDs may legitimately be different lengths, if
1873          * the system was upgraded from an older version. */
1874         if (cmplen != searchlen)
1875                 return 0;
1876
1877         return (strncmp(search_uuid, real_uuid, cmplen) == 0);
1878 }
1879
1880 /* Here, param->fp_obd_uuid points to a single obduuid, the index of which is
1881  * returned in param->fp_obd_index */
1882 static int setup_obd_uuid(int fd, char *dname, struct find_param *param)
1883 {
1884         struct obd_uuid obd_uuid;
1885         char buf[PATH_MAX];
1886         glob_t param_data;
1887         char format[32];
1888         int rc = 0;
1889         FILE *fp;
1890
1891         if (param->fp_got_uuids)
1892                 return rc;
1893
1894         /* Get the lov/lmv name */
1895         if (param->fp_get_lmv)
1896                 rc = llapi_file_fget_lmv_uuid(fd, &obd_uuid);
1897         else
1898                 rc = llapi_file_fget_lov_uuid(fd, &obd_uuid);
1899         if (rc) {
1900                 if (rc != -ENOTTY) {
1901                         llapi_error(LLAPI_MSG_ERROR, rc,
1902                                     "error: can't get %s name: %s",
1903                                     param->fp_get_lmv ? "lmv" : "lov",
1904                                     dname);
1905                 } else {
1906                         rc = 0;
1907                 }
1908                 return rc;
1909         }
1910
1911         param->fp_got_uuids = 1;
1912
1913         /* Now get the ost uuids */
1914         rc = get_lustre_param_path(param->fp_get_lmv ? "lmv" : "lov",
1915                                    obd_uuid.uuid, FILTER_BY_EXACT,
1916                                    "target_obd", &param_data);
1917         if (rc != 0)
1918                 return -ENOENT;
1919
1920         fp = fopen(param_data.gl_pathv[0], "r");
1921         if (fp == NULL) {
1922                 rc = -errno;
1923                 llapi_error(LLAPI_MSG_ERROR, rc, "error: opening '%s'",
1924                             param_data.gl_pathv[0]);
1925                 goto free_param;
1926         }
1927
1928         if (!param->fp_obd_uuid && !param->fp_quiet && !param->fp_obds_printed)
1929                 llapi_printf(LLAPI_MSG_NORMAL, "%s:\n",
1930                              param->fp_get_lmv ? "MDTS" : "OBDS");
1931
1932         snprintf(format, sizeof(format),
1933                  "%%d: %%%zus", sizeof(obd_uuid.uuid) - 1);
1934         while (fgets(buf, sizeof(buf), fp) != NULL) {
1935                 int index;
1936
1937                 if (sscanf(buf, format, &index, obd_uuid.uuid) < 2)
1938                         break;
1939
1940                 if (param->fp_obd_uuid) {
1941                         if (llapi_uuid_match(obd_uuid.uuid,
1942                                              param->fp_obd_uuid->uuid)) {
1943                                 param->fp_obd_index = index;
1944                                 break;
1945                         }
1946                 } else if (!param->fp_quiet && !param->fp_obds_printed) {
1947                         /* Print everything */
1948                         llapi_printf(LLAPI_MSG_NORMAL, "%s", buf);
1949                 }
1950         }
1951         param->fp_obds_printed = 1;
1952
1953         fclose(fp);
1954
1955         if (param->fp_obd_uuid && (param->fp_obd_index == OBD_NOT_FOUND)) {
1956                 llapi_err_noerrno(LLAPI_MSG_ERROR,
1957                                   "error: %s: unknown obduuid: %s",
1958                                   __func__, param->fp_obd_uuid->uuid);
1959                 rc = -EINVAL;
1960         }
1961 free_param:
1962         cfs_free_param_data(&param_data);
1963         return rc;
1964 }
1965
1966 /* In this case, param->fp_obd_uuid will be an array of obduuids and
1967  * obd index for all these obduuids will be returned in
1968  * param->fp_obd_indexes */
1969 static int setup_indexes(DIR *dir, char *path, struct obd_uuid *obduuids,
1970                          int num_obds, int **obdindexes, int *obdindex,
1971                          enum tgt_type type)
1972 {
1973         int ret, obdcount, obd_valid = 0, obdnum;
1974         long i;
1975         struct obd_uuid *uuids = NULL;
1976         char buf[16];
1977         int *indexes;
1978
1979         if (type == LOV_TYPE)
1980                 ret = get_param_lov(path, "numobd", buf, sizeof(buf));
1981         else
1982                 ret = get_param_lmv(path, "numobd", buf, sizeof(buf));
1983         if (ret != 0)
1984                 return ret;
1985
1986         obdcount = atoi(buf);
1987         uuids = malloc(obdcount * sizeof(struct obd_uuid));
1988         if (uuids == NULL)
1989                 return -ENOMEM;
1990
1991 retry_get_uuids:
1992         ret = llapi_get_target_uuids(dirfd(dir), uuids, &obdcount, type);
1993         if (ret) {
1994                 if (ret == -EOVERFLOW) {
1995                         struct obd_uuid *uuids_temp;
1996
1997                         uuids_temp = realloc(uuids, obdcount *
1998                                              sizeof(struct obd_uuid));
1999                         if (uuids_temp != NULL) {
2000                                 uuids = uuids_temp;
2001                                 goto retry_get_uuids;
2002                         }
2003                         ret = -ENOMEM;
2004                 }
2005
2006                 llapi_error(LLAPI_MSG_ERROR, ret, "get ost uuid failed");
2007                 goto out_free;
2008         }
2009
2010         indexes = malloc(num_obds * sizeof(*obdindex));
2011         if (indexes == NULL) {
2012                 ret = -ENOMEM;
2013                 goto out_free;
2014         }
2015
2016         for (obdnum = 0; obdnum < num_obds; obdnum++) {
2017                 char *end = NULL;
2018
2019                 /* The user may have specified a simple index */
2020                 i = strtol(obduuids[obdnum].uuid, &end, 0);
2021                 if (end && *end == '\0' && i < obdcount) {
2022                         indexes[obdnum] = i;
2023                         obd_valid++;
2024                 } else {
2025                         for (i = 0; i < obdcount; i++) {
2026                                 if (llapi_uuid_match(uuids[i].uuid,
2027                                                      obduuids[obdnum].uuid)) {
2028                                         indexes[obdnum] = i;
2029                                         obd_valid++;
2030                                         break;
2031                                 }
2032                         }
2033                 }
2034                 if (i >= obdcount) {
2035                         indexes[obdnum] = OBD_NOT_FOUND;
2036                         llapi_err_noerrno(LLAPI_MSG_ERROR,
2037                                           "error: %s: unknown obduuid: %s",
2038                                           __func__, obduuids[obdnum].uuid);
2039                         ret = -EINVAL;
2040                 }
2041         }
2042
2043         if (obd_valid == 0)
2044                 *obdindex = OBD_NOT_FOUND;
2045         else
2046                 *obdindex = obd_valid;
2047
2048         *obdindexes = indexes;
2049 out_free:
2050         if (uuids)
2051                 free(uuids);
2052
2053         return ret;
2054 }
2055
2056 static int setup_target_indexes(DIR *dir, char *path, struct find_param *param)
2057 {
2058         int ret = 0;
2059
2060         if (param->fp_mdt_uuid) {
2061                 ret = setup_indexes(dir, path, param->fp_mdt_uuid,
2062                                     param->fp_num_mdts,
2063                                     &param->fp_mdt_indexes,
2064                                     &param->fp_mdt_index, LMV_TYPE);
2065                 if (ret)
2066                         return ret;
2067         }
2068
2069         if (param->fp_obd_uuid) {
2070                 ret = setup_indexes(dir, path, param->fp_obd_uuid,
2071                                     param->fp_num_obds,
2072                                     &param->fp_obd_indexes,
2073                                     &param->fp_obd_index, LOV_TYPE);
2074                 if (ret)
2075                         return ret;
2076         }
2077
2078         param->fp_got_uuids = 1;
2079
2080         return ret;
2081 }
2082
2083 int llapi_ostlist(char *path, struct find_param *param)
2084 {
2085         int fd;
2086         int ret;
2087
2088         fd = open(path, O_RDONLY | O_DIRECTORY);
2089         if (fd < 0)
2090                 return -errno;
2091
2092         ret = setup_obd_uuid(fd, path, param);
2093         close(fd);
2094
2095         return ret;
2096 }
2097
2098 /*
2099  * Tries to determine the default stripe attributes for a given filesystem. The
2100  * filesystem to check should be specified by fsname, or will be determined
2101  * using pathname.
2102  */
2103 static int sattr_get_defaults(const char *const fsname,
2104                               unsigned int *scount,
2105                               unsigned int *ssize,
2106                               unsigned int *soffset)
2107 {
2108         char val[PATH_MAX];
2109         int rc;
2110
2111         if (scount) {
2112                 rc = get_lustre_param_value("lov", fsname, FILTER_BY_FS_NAME,
2113                                             "stripecount", val, sizeof(val));
2114                 if (rc != 0)
2115                         return rc;
2116                 *scount = atoi(val);
2117         }
2118
2119         if (ssize) {
2120                 rc = get_lustre_param_value("lov", fsname, FILTER_BY_FS_NAME,
2121                                             "stripesize", val, sizeof(val));
2122                 if (rc != 0)
2123                         return rc;
2124                 *ssize = atoi(val);
2125         }
2126
2127         if (soffset) {
2128                 rc = get_lustre_param_value("lov", fsname, FILTER_BY_FS_NAME,
2129                                             "stripeoffset", val, sizeof(val));
2130                 if (rc != 0)
2131                         return rc;
2132                 *soffset = atoi(val);
2133         }
2134
2135         return 0;
2136 }
2137
2138 /*
2139  * Tries to gather the default stripe attributes for a given filesystem. If
2140  * the attributes can be determined, they are cached for easy retreival the
2141  * next time they are needed. Only a single filesystem's attributes are
2142  * cached at a time.
2143  */
2144 int sattr_cache_get_defaults(const char *const fsname,
2145                              const char *const pathname, unsigned int *scount,
2146                              unsigned int *ssize, unsigned int *soffset)
2147 {
2148         static struct {
2149                 char fsname[PATH_MAX + 1];
2150                 unsigned int stripecount;
2151                 unsigned int stripesize;
2152                 unsigned int stripeoffset;
2153         } cache = {
2154                 .fsname = {'\0'}
2155         };
2156
2157         int rc;
2158         char fsname_buf[PATH_MAX + 1];
2159         unsigned int tmp[3];
2160
2161         if (fsname == NULL) {
2162                 rc = llapi_search_fsname(pathname, fsname_buf);
2163                 if (rc)
2164                         return rc;
2165         } else {
2166                 strlcpy(fsname_buf, fsname, sizeof(fsname_buf));
2167         }
2168
2169         if (strncmp(fsname_buf, cache.fsname, sizeof(fsname_buf) - 1) != 0) {
2170                 /*
2171                  * Ensure all 3 sattrs (count, size, and offset) are
2172                  * successfully retrieved and stored in tmp before writing to
2173                  * cache.
2174                  */
2175                 rc = sattr_get_defaults(fsname_buf, &tmp[0], &tmp[1], &tmp[2]);
2176                 if (rc != 0)
2177                         return rc;
2178
2179                 cache.stripecount = tmp[0];
2180                 cache.stripesize = tmp[1];
2181                 cache.stripeoffset = tmp[2];
2182                 strlcpy(cache.fsname, fsname_buf, sizeof(cache.fsname));
2183         }
2184
2185         if (scount)
2186                 *scount = cache.stripecount;
2187         if (ssize)
2188                 *ssize = cache.stripesize;
2189         if (soffset)
2190                 *soffset = cache.stripeoffset;
2191
2192         return 0;
2193 }
2194
2195 enum lov_dump_flags {
2196         LDF_IS_DIR      = 0x0001,
2197         LDF_IS_RAW      = 0x0002,
2198         LDF_INDENT      = 0x0004,
2199         LDF_SKIP_OBJS   = 0x0008,
2200         LDF_YAML        = 0x0010,
2201 };
2202
2203 static void lov_dump_user_lmm_header(struct lov_user_md *lum, char *path,
2204                                      struct lov_user_ost_data_v1 *objects,
2205                                      int verbose, int depth, char *pool_name,
2206                                      enum lov_dump_flags flags)
2207 {
2208         bool is_dir = flags & LDF_IS_DIR;
2209         bool is_raw = flags & LDF_IS_RAW;
2210         bool indent = flags & LDF_INDENT;
2211         bool yaml = flags & LDF_YAML;
2212         bool skip_objs = flags & LDF_SKIP_OBJS;
2213         char *prefix = is_dir ? "" : "lmm_";
2214         char *separator = "";
2215         char *space = indent ? "      " : "";
2216         int rc;
2217
2218         if (is_dir && lmm_oi_seq(&lum->lmm_oi) == FID_SEQ_LOV_DEFAULT) {
2219                 lmm_oi_set_seq(&lum->lmm_oi, 0);
2220                 if (!indent && (verbose & VERBOSE_DETAIL))
2221                         llapi_printf(LLAPI_MSG_NORMAL, "%s(Default) ", space);
2222         }
2223
2224         if (!yaml && !indent && depth && path &&
2225             ((verbose != VERBOSE_OBJID) || !is_dir))
2226                 llapi_printf(LLAPI_MSG_NORMAL, "%s\n", path);
2227
2228         if ((verbose & VERBOSE_DETAIL) && !is_dir) {
2229                 llapi_printf(LLAPI_MSG_NORMAL, "%s%smagic:         0x%08X\n",
2230                              space, prefix, lum->lmm_magic);
2231                 llapi_printf(LLAPI_MSG_NORMAL, "%s%sseq:           %#jx\n",
2232                              space, prefix,
2233                              (uintmax_t)lmm_oi_seq(&lum->lmm_oi));
2234                 llapi_printf(LLAPI_MSG_NORMAL, "%s%sobject_id:     %#jx\n",
2235                              space, prefix,
2236                              (uintmax_t)lmm_oi_id(&lum->lmm_oi));
2237         }
2238         if ((verbose & (VERBOSE_DETAIL | VERBOSE_DFID)) && !is_dir) {
2239                 __u64 seq;
2240                 __u32 oid;
2241                 __u32 ver;
2242
2243                 if (verbose & ~VERBOSE_DFID)
2244                         llapi_printf(LLAPI_MSG_NORMAL, "%slmm_fid:           ",
2245                                      space);
2246                 /* This needs a bit of hand-holding since old 1.x lmm_oi
2247                  * have { oi.oi_id = mds_inum, oi.oi_seq = 0 } and 2.x lmm_oi
2248                  * have { oi.oi_id = mds_oid, oi.oi_seq = mds_seq } instead of
2249                  * a real FID.  Ideally the 2.x code would have stored this
2250                  * like a FID with { oi_id = mds_seq, oi_seq = mds_oid } so the
2251                  * ostid union lu_fid { f_seq = mds_seq, f_oid = mds_oid }
2252                  * worked properly (especially since IGIF FIDs use mds_inum as
2253                  * the FID SEQ), but unfortunately that didn't happen.
2254                  *
2255                  * Print it to look like an IGIF FID, even though the fields
2256                  * are reversed on disk, so that it makes sense to userspace.
2257                  *
2258                  * Don't use ostid_id() and ostid_seq(), since they assume the
2259                  * oi_fid fields are in the right order.  This is why there are
2260                  * separate lmm_oi_seq() and lmm_oi_id() routines for this.
2261                  *
2262                  * For newer layout types hopefully this will be a real FID. */
2263                 seq = lmm_oi_seq(&lum->lmm_oi) == 0 ?
2264                         lmm_oi_id(&lum->lmm_oi) : lmm_oi_seq(&lum->lmm_oi);
2265                 oid = lmm_oi_seq(&lum->lmm_oi) == 0 ?
2266                         0 : (__u32)lmm_oi_id(&lum->lmm_oi);
2267                 ver = (__u32)(lmm_oi_id(&lum->lmm_oi) >> 32);
2268                 if (yaml)
2269                         llapi_printf(LLAPI_MSG_NORMAL, DFID_NOBRACE"\n",
2270                                      seq, oid, ver);
2271                 else
2272                         llapi_printf(LLAPI_MSG_NORMAL, DFID"\n",
2273                                      seq, oid, ver);
2274         }
2275
2276         if (verbose & VERBOSE_COUNT) {
2277                 if (verbose & ~VERBOSE_COUNT)
2278                         llapi_printf(LLAPI_MSG_NORMAL, "%s%sstripe_count:  ",
2279                                      space, prefix);
2280                 if (is_dir) {
2281                         if (!is_raw && lum->lmm_stripe_count == 0) {
2282                                 unsigned int scount;
2283                                 rc = sattr_cache_get_defaults(NULL, path,
2284                                                               &scount, NULL,
2285                                                               NULL);
2286                                 if (rc == 0)
2287                                         llapi_printf(LLAPI_MSG_NORMAL, "%d",
2288                                                      scount);
2289                                 else
2290                                         llapi_error(LLAPI_MSG_ERROR, rc,
2291                                                     "Cannot determine default"
2292                                                     " stripe count.");
2293                         } else {
2294                                 llapi_printf(LLAPI_MSG_NORMAL, "%d",
2295                                              lum->lmm_stripe_count ==
2296                                              (typeof(lum->lmm_stripe_count))(-1)
2297                                              ? -1 : lum->lmm_stripe_count);
2298                         }
2299                 } else {
2300                         llapi_printf(LLAPI_MSG_NORMAL, "%hd",
2301                                      (__s16)lum->lmm_stripe_count);
2302                 }
2303                 if (!yaml && is_dir)
2304                         separator = " ";
2305                 else
2306                         separator = "\n";
2307         }
2308
2309         if (verbose & VERBOSE_SIZE) {
2310                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2311                 if (verbose & ~VERBOSE_SIZE)
2312                         llapi_printf(LLAPI_MSG_NORMAL, "%s%sstripe_size:   ",
2313                                      space, prefix);
2314                 if (is_dir && !is_raw && lum->lmm_stripe_size == 0) {
2315                         unsigned int ssize;
2316                         rc = sattr_cache_get_defaults(NULL, path, NULL, &ssize,
2317                                                       NULL);
2318                         if (rc == 0)
2319                                 llapi_printf(LLAPI_MSG_NORMAL, "%u", ssize);
2320                         else
2321                                 llapi_error(LLAPI_MSG_ERROR, rc,
2322                                             "Cannot determine default"
2323                                             " stripe size.");
2324                 } else {
2325                         llapi_printf(LLAPI_MSG_NORMAL, "%u",
2326                                      lum->lmm_stripe_size);
2327                 }
2328                 if (!yaml && is_dir)
2329                         separator = " ";
2330                 else
2331                         separator = "\n";
2332         }
2333
2334         if ((verbose & VERBOSE_LAYOUT) && !is_dir) {
2335                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2336                 if (verbose & ~VERBOSE_LAYOUT)
2337                         llapi_printf(LLAPI_MSG_NORMAL, "%s%spattern:       ",
2338                                      space, prefix);
2339                 llapi_printf(LLAPI_MSG_NORMAL, "%.x", lum->lmm_pattern);
2340                 separator = "\n";
2341         }
2342
2343         if ((verbose & VERBOSE_GENERATION) && !is_dir) {
2344                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2345                 if (verbose & ~VERBOSE_GENERATION)
2346                         llapi_printf(LLAPI_MSG_NORMAL, "%s%slayout_gen:    ",
2347                                      space, prefix);
2348                 llapi_printf(LLAPI_MSG_NORMAL, "%u",
2349                              (int)lum->lmm_layout_gen);
2350                 separator = "\n";
2351         }
2352
2353         if (verbose & VERBOSE_OFFSET) {
2354                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2355                 if (verbose & ~VERBOSE_OFFSET)
2356                         llapi_printf(LLAPI_MSG_NORMAL, "%s%sstripe_offset: ",
2357                                      space, prefix);
2358                 if (is_dir || skip_objs)
2359                         llapi_printf(LLAPI_MSG_NORMAL, "%d",
2360                                      lum->lmm_stripe_offset ==
2361                                      (typeof(lum->lmm_stripe_offset))(-1) ? -1 :
2362                                      lum->lmm_stripe_offset);
2363                 else
2364                         llapi_printf(LLAPI_MSG_NORMAL, "%u",
2365                                      objects[0].l_ost_idx);
2366                 if (!yaml && is_dir)
2367                         separator = " ";
2368                 else
2369                         separator = "\n";
2370         }
2371
2372         if ((verbose & VERBOSE_POOL) && pool_name && (pool_name[0] != '\0')) {
2373                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2374                 if (verbose & ~VERBOSE_POOL)
2375                         llapi_printf(LLAPI_MSG_NORMAL, "%s%spool:          ",
2376                                      space, prefix);
2377                 llapi_printf(LLAPI_MSG_NORMAL, "%s", pool_name);
2378                 if (!yaml && is_dir)
2379                         separator = " ";
2380                 else
2381                         separator = "\n";
2382         }
2383
2384         if (strlen(separator) != 0)
2385                 llapi_printf(LLAPI_MSG_NORMAL, "\n");
2386 }
2387
2388 void lov_dump_user_lmm_v1v3(struct lov_user_md *lum, char *pool_name,
2389                             struct lov_user_ost_data_v1 *objects,
2390                             char *path, int obdindex, int depth,
2391                             int header, enum lov_dump_flags flags)
2392 {
2393         bool is_dir = flags & LDF_IS_DIR;
2394         bool indent = flags & LDF_INDENT;
2395         bool skip_objs = flags & LDF_SKIP_OBJS;
2396         bool yaml = flags & LDF_YAML;
2397         int i, obdstripe = (obdindex != OBD_NOT_FOUND) ? 0 : 1;
2398
2399         if (!obdstripe) {
2400                 for (i = 0; !is_dir && i < lum->lmm_stripe_count; i++) {
2401                         if (obdindex == objects[i].l_ost_idx) {
2402                                 obdstripe = 1;
2403                                 break;
2404                         }
2405                 }
2406         }
2407
2408         if (obdstripe == 0)
2409                 return;
2410
2411         lov_dump_user_lmm_header(lum, path, objects, header, depth, pool_name,
2412                                  flags);
2413
2414         if (!is_dir && !skip_objs && (header & VERBOSE_OBJID) &&
2415             !(lum->lmm_pattern & LOV_PATTERN_F_RELEASED)) {
2416                 char *space = "      - ";
2417
2418                 if (indent)
2419                         llapi_printf(LLAPI_MSG_NORMAL,
2420                                      "%6slmm_objects:\n", " ");
2421                 else if (yaml)
2422                         llapi_printf(LLAPI_MSG_NORMAL, "lmm_objects:\n");
2423                 else
2424                         llapi_printf(LLAPI_MSG_NORMAL,
2425                                 "\tobdidx\t\t objid\t\t objid\t\t group\n");
2426
2427                 for (i = 0; i < lum->lmm_stripe_count; i++) {
2428                         int idx = objects[i].l_ost_idx;
2429                         long long oid = ostid_id(&objects[i].l_ost_oi);
2430                         long long gr = ostid_seq(&objects[i].l_ost_oi);
2431
2432                         if (obdindex != OBD_NOT_FOUND && obdindex != idx)
2433                                 continue;
2434
2435                         if (yaml) {
2436                                 struct lu_fid fid = { 0 };
2437
2438                                 ostid_to_fid(&fid, &objects[i].l_ost_oi, idx);
2439                                 llapi_printf(LLAPI_MSG_NORMAL,
2440                                     "%sl_ost_idx: %d\n", space, idx);
2441                                 llapi_printf(LLAPI_MSG_NORMAL,
2442                                     "%8sl_fid:     "DFID_NOBRACE"\n",
2443                                     " ", PFID(&fid));
2444                         } else if (indent) {
2445                                 struct lu_fid fid = { 0 };
2446
2447                                 ostid_to_fid(&fid, &objects[i].l_ost_oi, idx);
2448                                 llapi_printf(LLAPI_MSG_NORMAL,
2449                                     "%s%d: { l_ost_idx: %d, l_fid: "DFID" }\n",
2450                                     space, i, idx, PFID(&fid));
2451                         } else {
2452                                 char fmt[48];
2453                                 sprintf(fmt, "%s%s%s\n",
2454                                         "\t%6u\t%14llu\t%#13llx\t",
2455                                         (fid_seq_is_rsvd(gr) ||
2456                                          fid_seq_is_mdt0(gr)) ?
2457                                          "%14llu" : "%#14llx", "%s");
2458                                 llapi_printf(LLAPI_MSG_NORMAL, fmt, idx, oid,
2459                                              oid, gr,
2460                                              obdindex == idx ? " *" : "");
2461                         }
2462                 }
2463                 llapi_printf(LLAPI_MSG_NORMAL, "\n");
2464         }
2465 }
2466
2467 void lmv_dump_user_lmm(struct lmv_user_md *lum, char *pool_name,
2468                        char *path, int obdindex, int depth, int verbose,
2469                        enum lov_dump_flags flags)
2470 {
2471         struct lmv_user_mds_data *objects = lum->lum_objects;
2472         char *prefix = lum->lum_magic == LMV_USER_MAGIC ? "(Default)" : "";
2473         int i, obdstripe = 0;
2474         char *separator = "";
2475         bool yaml = flags & LDF_YAML;
2476
2477         if (obdindex != OBD_NOT_FOUND) {
2478                 if (lum->lum_stripe_count == 0) {
2479                         if (obdindex == lum->lum_stripe_offset)
2480                                 obdstripe = 1;
2481                 } else {
2482                         for (i = 0; i < lum->lum_stripe_count; i++) {
2483                                 if (obdindex == objects[i].lum_mds) {
2484                                         llapi_printf(LLAPI_MSG_NORMAL,
2485                                                      "%s%s\n", prefix,
2486                                                      path);
2487                                         obdstripe = 1;
2488                                         break;
2489                                 }
2490                         }
2491                 }
2492         } else {
2493                 obdstripe = 1;
2494         }
2495
2496         if (!obdstripe)
2497                 return;
2498
2499         /* show all information default */
2500         if (!verbose) {
2501                 if (lum->lum_magic == LMV_USER_MAGIC)
2502                         verbose = VERBOSE_POOL | VERBOSE_COUNT |
2503                                   VERBOSE_OFFSET | VERBOSE_HASH_TYPE;
2504                 else
2505                         verbose = VERBOSE_OBJID;
2506         }
2507
2508         if (depth && path && ((verbose != VERBOSE_OBJID)))
2509                 llapi_printf(LLAPI_MSG_NORMAL, "%s%s\n", prefix, path);
2510
2511         if (verbose & VERBOSE_COUNT) {
2512                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2513                 if (verbose & ~VERBOSE_COUNT)
2514                         llapi_printf(LLAPI_MSG_NORMAL, "lmv_stripe_count: ");
2515                 llapi_printf(LLAPI_MSG_NORMAL, "%u",
2516                              (int)lum->lum_stripe_count);
2517                 if ((verbose & VERBOSE_OFFSET) && !yaml)
2518                         separator = " ";
2519                 else
2520                         separator = "\n";
2521         }
2522
2523         if (verbose & VERBOSE_OFFSET) {
2524                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2525                 if (verbose & ~VERBOSE_OFFSET)
2526                         llapi_printf(LLAPI_MSG_NORMAL, "lmv_stripe_offset: ");
2527                 llapi_printf(LLAPI_MSG_NORMAL, "%d",
2528                              (int)lum->lum_stripe_offset);
2529                 if (verbose & VERBOSE_HASH_TYPE && !yaml)
2530                         separator = " ";
2531                 else
2532                         separator = "\n";
2533         }
2534
2535         if (verbose & VERBOSE_HASH_TYPE) {
2536                 unsigned int type = lum->lum_hash_type;
2537
2538                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2539                 if (verbose & ~VERBOSE_HASH_TYPE)
2540                         llapi_printf(LLAPI_MSG_NORMAL, "lmv_hash_type: ");
2541                 if (type < LMV_HASH_TYPE_MAX)
2542                         llapi_printf(LLAPI_MSG_NORMAL, "%s",
2543                                      mdt_hash_name[type]);
2544                 else
2545                         llapi_printf(LLAPI_MSG_NORMAL, "%d",
2546                                      (int)type);
2547                 separator = "\n";
2548         }
2549
2550         if (verbose & VERBOSE_OBJID && lum->lum_magic != LMV_USER_MAGIC) {
2551                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2552                 if (obdstripe == 1 && lum->lum_stripe_count > 0)
2553                         llapi_printf(LLAPI_MSG_NORMAL,
2554                                      "mdtidx\t\t FID[seq:oid:ver]\n");
2555                 for (i = 0; i < lum->lum_stripe_count; i++) {
2556                         int idx = objects[i].lum_mds;
2557                         struct lu_fid *fid = &objects[i].lum_fid;
2558                         if ((obdindex == OBD_NOT_FOUND) || (obdindex == idx))
2559                                 llapi_printf(LLAPI_MSG_NORMAL,
2560                                              "%6u\t\t "DFID"\t\t%s\n",
2561                                             idx, PFID(fid),
2562                                             obdindex == idx ? " *" : "");
2563                 }
2564
2565         }
2566
2567         if ((verbose & VERBOSE_POOL) && pool_name != NULL &&
2568              pool_name[0] != '\0') {
2569                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2570                 if (verbose & ~VERBOSE_POOL)
2571                         llapi_printf(LLAPI_MSG_NORMAL, "%slmv_pool:           ",
2572                                      prefix);
2573                 llapi_printf(LLAPI_MSG_NORMAL, "%s%c ", pool_name, ' ');
2574                 separator = "\n";
2575         }
2576
2577         if (!(verbose & VERBOSE_OBJID) || lum->lum_magic == LMV_USER_MAGIC)
2578                 llapi_printf(LLAPI_MSG_NORMAL, "\n");
2579 }
2580
2581 static void lov_dump_comp_v1_header(struct find_param *param, char *path,
2582                                     enum lov_dump_flags flags)
2583 {
2584         struct lov_comp_md_v1 *comp_v1 = (void *)&param->fp_lmd->lmd_lmm;
2585         int depth = param->fp_max_depth;
2586         int verbose = param->fp_verbose;
2587         bool yaml = flags & LDF_YAML;
2588
2589         if (depth && path && ((verbose != VERBOSE_OBJID) ||
2590                               !(flags & LDF_IS_DIR)) && !yaml)
2591                 llapi_printf(LLAPI_MSG_NORMAL, "%s\n", path);
2592
2593         if (verbose & VERBOSE_DETAIL) {
2594                 llapi_printf(LLAPI_MSG_NORMAL, "composite_header:\n");
2595                 llapi_printf(LLAPI_MSG_NORMAL, "%2slcm_magic:       0x%08X\n",
2596                              " ", comp_v1->lcm_magic);
2597                 llapi_printf(LLAPI_MSG_NORMAL, "%2slcm_size:        %u\n",
2598                              " ", comp_v1->lcm_size);
2599                 llapi_printf(LLAPI_MSG_NORMAL, "%2slcm_flags:       %u\n",
2600                              " ", comp_v1->lcm_flags);
2601         }
2602
2603         if (verbose & VERBOSE_GENERATION) {
2604                 if (verbose & ~VERBOSE_GENERATION)
2605                         llapi_printf(LLAPI_MSG_NORMAL, "%2slcm_layout_gen:  ",
2606                                      " ");
2607                 llapi_printf(LLAPI_MSG_NORMAL, "%u\n", comp_v1->lcm_layout_gen);
2608         }
2609
2610         if (verbose & VERBOSE_COMP_COUNT) {
2611                 if (verbose & ~VERBOSE_COMP_COUNT)
2612                         llapi_printf(LLAPI_MSG_NORMAL, "%2slcm_entry_count: ",
2613                                      " ");
2614                 llapi_printf(LLAPI_MSG_NORMAL, "%u\n",
2615                              comp_v1->lcm_magic == LOV_USER_MAGIC_COMP_V1 ?
2616                              comp_v1->lcm_entry_count : 0);
2617         }
2618
2619         if (verbose & VERBOSE_DETAIL && !yaml)
2620                 llapi_printf(LLAPI_MSG_NORMAL, "components:\n");
2621 }
2622
2623 static void lov_dump_comp_v1_entry(struct find_param *param,
2624                                    enum lov_dump_flags flags, int index)
2625 {
2626         struct lov_comp_md_v1 *comp_v1 = (void *)&param->fp_lmd->lmd_lmm;
2627         struct lov_comp_md_entry_v1 *entry;
2628         char *separator = "";
2629         int verbose = param->fp_verbose;
2630         bool yaml = flags & LDF_YAML;
2631
2632         entry = &comp_v1->lcm_entries[index];
2633
2634         if (yaml)
2635                 llapi_printf(LLAPI_MSG_NORMAL, "%2scomponent%d:\n", " ", index);
2636
2637         if (verbose & VERBOSE_COMP_ID) {
2638                 if (verbose & VERBOSE_DETAIL && !yaml)
2639                         llapi_printf(LLAPI_MSG_NORMAL,
2640                                      "%slcme_id:             ", "  - ");
2641                 else if (verbose & ~VERBOSE_COMP_ID)
2642                         llapi_printf(LLAPI_MSG_NORMAL,
2643                                      "%4slcme_id:             ", " ");
2644                 if (entry->lcme_id != LCME_ID_INVAL)
2645                         llapi_printf(LLAPI_MSG_NORMAL, "%u", entry->lcme_id);
2646                 else
2647                         llapi_printf(LLAPI_MSG_NORMAL, "N/A");
2648                 separator = "\n";
2649         }
2650
2651         if (verbose & VERBOSE_COMP_FLAGS) {
2652                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2653                 if (verbose & ~VERBOSE_COMP_FLAGS)
2654                         llapi_printf(LLAPI_MSG_NORMAL,
2655                                      "%4slcme_flags:          ", " ");
2656                 llapi_printf(LLAPI_MSG_NORMAL, "%#x", entry->lcme_flags);
2657                 separator = "\n";
2658         }
2659
2660         if (verbose & VERBOSE_COMP_START) {
2661                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2662                 if (verbose & ~VERBOSE_COMP_START)
2663                         llapi_printf(LLAPI_MSG_NORMAL,
2664                                      "%4slcme_extent.e_start: ", " ");
2665                 llapi_printf(LLAPI_MSG_NORMAL, "%llu",
2666                              entry->lcme_extent.e_start);
2667                 separator = "\n";
2668         }
2669
2670         if (verbose & VERBOSE_COMP_END) {
2671                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2672                 if (verbose & ~VERBOSE_COMP_END)
2673                         llapi_printf(LLAPI_MSG_NORMAL,
2674                                      "%4slcme_extent.e_end:   ", " ");
2675                 if (entry->lcme_extent.e_end == LUSTRE_EOF)
2676                         llapi_printf(LLAPI_MSG_NORMAL, "%s", "EOF");
2677                 else
2678                         llapi_printf(LLAPI_MSG_NORMAL, "%llu",
2679                                         entry->lcme_extent.e_end);
2680                 separator = "\n";
2681         }
2682
2683         if (yaml) {
2684                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2685                 llapi_printf(LLAPI_MSG_NORMAL, "%4ssub_layout:\n", " ");
2686         } else if (verbose & VERBOSE_DETAIL) {
2687                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2688                 llapi_printf(LLAPI_MSG_NORMAL, "%4slcme_offset:         %u\n",
2689                              " ", entry->lcme_offset);
2690                 llapi_printf(LLAPI_MSG_NORMAL, "%4slcme_size:           %u\n",
2691                              " ", entry->lcme_size);
2692                 llapi_printf(LLAPI_MSG_NORMAL, "%4ssub_layout:\n", " ");
2693         } else {
2694                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2695         }
2696 }
2697
2698 /* Check if the value matches 1 of the given criteria (e.g. --atime +/-N).
2699  * @mds indicates if this is MDS timestamps and there are attributes on OSTs.
2700  *
2701  * The result is -1 if it does not match, 0 if not yet clear, 1 if matches.
2702  * The table below gives the answers for the specified parameters (value and
2703  * sign), 1st column is the answer for the MDS value, the 2nd is for the OST:
2704  * --------------------------------------
2705  * 1 | file > limit; sign > 0 | -1 / -1 |
2706  * 2 | file = limit; sign > 0 | -1 / -1 |
2707  * 3 | file < limit; sign > 0 |  ? /  1 |
2708  * 4 | file > limit; sign = 0 | -1 / -1 |
2709  * 5 | file = limit; sign = 0 |  ? /  1 |  <- (see the Note below)
2710  * 6 | file < limit; sign = 0 |  ? / -1 |
2711  * 7 | file > limit; sign < 0 |  1 /  1 |
2712  * 8 | file = limit; sign < 0 |  ? / -1 |
2713  * 9 | file < limit; sign < 0 |  ? / -1 |
2714  * --------------------------------------
2715  * Note: 5th actually means that the value is within the interval
2716  * (limit - margin, limit]. */
2717 static int find_value_cmp(unsigned long long file, unsigned long long limit,
2718                           int sign, int negopt, unsigned long long margin,
2719                           int mds)
2720 {
2721         int ret = -1;
2722
2723         if (sign > 0) {
2724                 /* Drop the fraction of margin (of days). */
2725                 if (file + margin <= limit)
2726                         ret = mds ? 0 : 1;
2727         } else if (sign == 0) {
2728                 if (file <= limit && file + margin > limit)
2729                         ret = mds ? 0 : 1;
2730                 else if (file + margin <= limit)
2731                         ret = mds ? 0 : -1;
2732         } else if (sign < 0) {
2733                 if (file > limit)
2734                         ret = 1;
2735                 else if (mds)
2736                         ret = 0;
2737         }
2738
2739         return negopt ? ~ret + 1 : ret;
2740 }
2741
2742 static inline struct lov_user_md *
2743 lov_comp_entry(struct lov_comp_md_v1 *comp_v1, int ent_idx)
2744 {
2745         return (struct lov_user_md *)((char *)comp_v1 +
2746                         comp_v1->lcm_entries[ent_idx].lcme_offset);
2747 }
2748
2749 static inline struct lov_user_ost_data_v1 *
2750 lov_v1v3_objects(struct lov_user_md *v1)
2751 {
2752         if (v1->lmm_magic == LOV_USER_MAGIC_V3)
2753                 return ((struct lov_user_md_v3 *)v1)->lmm_objects;
2754         else
2755                 return v1->lmm_objects;
2756 }
2757
2758 static inline void
2759 lov_v1v3_pool_name(struct lov_user_md *v1, char *pool_name)
2760 {
2761         if (v1->lmm_magic == LOV_USER_MAGIC_V3)
2762                 strlcpy(pool_name, ((struct lov_user_md_v3 *)v1)->lmm_pool_name,
2763                         LOV_MAXPOOLNAME);
2764         else
2765                 pool_name[0] = '\0';
2766 }
2767
2768 static inline bool
2769 print_last_init_comp(struct find_param *param)
2770 {
2771         /* print all component info */
2772         if ((param->fp_verbose & VERBOSE_DEFAULT) == VERBOSE_DEFAULT)
2773                 return false;
2774
2775         /* print specific component info */
2776         if (param->fp_check_comp_id || param->fp_check_comp_flags ||
2777             param->fp_check_comp_start || param->fp_check_comp_end)
2778                 return false;
2779
2780         return true;
2781 }
2782
2783 static int find_comp_end_cmp(unsigned long long end, struct find_param *param)
2784 {
2785         int match;
2786
2787         if (param->fp_comp_end == LUSTRE_EOF) {
2788                 if (param->fp_comp_end_sign == 0) /* equal to EOF */
2789                         match = end == LUSTRE_EOF ? 1 : -1;
2790                 else if (param->fp_comp_end_sign > 0) /* at most EOF */
2791                         match = end == LUSTRE_EOF ? -1 : 1;
2792                 else /* at least EOF */
2793                         match = -1;
2794                 if (param->fp_exclude_comp_end)
2795                         match = ~match + 1;
2796         } else {
2797                 unsigned long long margin;
2798
2799                 margin = end == LUSTRE_EOF ? 0 : param->fp_comp_end_units;
2800                 match = find_value_cmp(end, param->fp_comp_end,
2801                                        param->fp_comp_end_sign,
2802                                        param->fp_exclude_comp_end, margin, 0);
2803         }
2804
2805         return match;
2806 }
2807
2808 /**
2809  * An example of "getstripe -v" for a two components PFL file:
2810  *
2811  * composite_header:
2812  * lcm_magic:       0x0BD60BD0
2813  * lcm_size:        264
2814  * lcm_flags:       0
2815  * lcm_layout_gen:  2
2816  * lcm_entry_count: 2
2817  * components:
2818  * - lcme_id:             1
2819  *   lcme_flags:          0x10
2820  *   lcme_extent.e_start: 0
2821  *   lcme_extent.e_end:   1048576
2822  *   lcme_offset:         128
2823  *   lcme_size:           56
2824  *   sub_layout:
2825  *     lmm_magic:         0x0BD10BD0
2826  *     lmm_seq:           0x200000401
2827  *     lmm_object_id:     0x1
2828  *     lmm_fid:           [0x200000401:0x1:0x0]
2829  *     lmm_stripe_count:  1
2830  *     lmm_stripe_size:   1048576
2831  *     lmm_pattern:       1
2832  *     lmm_layout_gen:    0
2833  *     lmm_stripe_offset: 0
2834  *     lmm_objects:
2835  *     - 0: { l_ost_idx: 0, l_fid: [0x100000000:0x2:0x0] }
2836  *
2837  * - lcme_id:             2
2838  *   lcme_flags:          0x10
2839  *   lcme_extent.e_start: 1048576
2840  *   lcme_extent.e_end:   EOF
2841  *   lcme_offset:         184
2842  *   lcme_size:           80
2843  *     sub_layout:
2844  *     lmm_magic:         0x0BD10BD0
2845  *     lmm_seq:           0x200000401
2846  *     lmm_object_id:     0x1
2847  *     lmm_fid:           [0x200000401:0x1:0x0]
2848  *     lmm_stripe_count:  2
2849  *     lmm_stripe_size:   1048576
2850  *     lmm_pattern:       1
2851  *     lmm_layout_gen:    0
2852  *     lmm_stripe_offset: 1
2853  *     lmm_objects:
2854  *     - 0: { l_ost_idx: 1, l_fid: [0x100010000:0x2:0x0] }
2855  *     - 1: { l_ost_idx: 0, l_fid: [0x100000000:0x3:0x0] }
2856  */
2857 static void lov_dump_comp_v1(struct find_param *param, char *path,
2858                              enum lov_dump_flags flags)
2859 {
2860         struct lov_comp_md_entry_v1 *entry;
2861         struct lov_user_ost_data_v1 *objects;
2862         struct lov_comp_md_v1 *comp_v1 = (void *)&param->fp_lmd->lmd_lmm;
2863         struct lov_user_md_v1 *v1;
2864         char pool_name[LOV_MAXPOOLNAME + 1];
2865         int obdindex = param->fp_obd_index;
2866         int i, j, match, obdstripe = 0;
2867
2868         if (obdindex != OBD_NOT_FOUND) {
2869                 for (i = 0; !(flags & LDF_IS_DIR) &&
2870                             i < comp_v1->lcm_entry_count; i++) {
2871                         if (!(comp_v1->lcm_entries[i].lcme_flags &
2872                               LCME_FL_INIT))
2873                                 continue;
2874
2875                         v1 = lov_comp_entry(comp_v1, i);
2876                         objects = lov_v1v3_objects(v1);
2877
2878                         for (j = 0; j < v1->lmm_stripe_count; j++) {
2879                                 if (obdindex == objects[j].l_ost_idx) {
2880                                         obdstripe = 1;
2881                                         break;
2882                                 }
2883                         }
2884                 }
2885         } else {
2886                 obdstripe = 1;
2887         }
2888
2889         if (obdstripe == 0)
2890                 return;
2891
2892         lov_dump_comp_v1_header(param, path, flags);
2893
2894         flags |= LDF_INDENT;
2895
2896         for (i = 0; i < comp_v1->lcm_entry_count; i++) {
2897                 entry = &comp_v1->lcm_entries[i];
2898
2899                 if (param->fp_check_comp_flags) {
2900                         if ((param->fp_exclude_comp_flags &&
2901                              (param->fp_comp_flags & entry->lcme_flags)) ||
2902                             (!param->fp_exclude_comp_flags &&
2903                              !(param->fp_comp_flags & entry->lcme_flags)))
2904                                 continue;
2905                 }
2906
2907                 if (param->fp_check_comp_id &&
2908                     param->fp_comp_id != entry->lcme_id)
2909                         continue;
2910
2911                 if (param->fp_check_comp_start) {
2912                         match = find_value_cmp(entry->lcme_extent.e_start,
2913                                                param->fp_comp_start,
2914                                                param->fp_comp_start_sign,
2915                                                0,
2916                                                param->fp_comp_start_units, 0);
2917                         if (match == -1)
2918                                 continue;
2919                 }
2920
2921                 if (param->fp_check_comp_end) {
2922                         match = find_comp_end_cmp(entry->lcme_extent.e_end,
2923                                                   param);
2924                         if (match == -1)
2925                                 continue;
2926                 }
2927
2928                 if (print_last_init_comp(param)) {
2929                         /**
2930                          * if part of stripe info is needed, we'd print only
2931                          * the last instantiated component info.
2932                          */
2933                         if (entry->lcme_flags & LCME_FL_INIT)
2934                                 continue;
2935                         else
2936                                 break;
2937                 }
2938
2939                 if (entry->lcme_flags & LCME_FL_INIT)
2940                         flags &= ~LDF_SKIP_OBJS;
2941                 else
2942                         flags |= LDF_SKIP_OBJS;
2943
2944                 lov_dump_comp_v1_entry(param, flags, i);
2945
2946                 v1 = lov_comp_entry(comp_v1, i);
2947                 objects = lov_v1v3_objects(v1);
2948                 lov_v1v3_pool_name(v1, pool_name);
2949
2950                 lov_dump_user_lmm_v1v3(v1, pool_name, objects, path, obdindex,
2951                                        param->fp_max_depth, param->fp_verbose,
2952                                        flags);
2953         }
2954         if (print_last_init_comp(param)) {
2955                 /**
2956                  * directory layout contains only layout template, print the
2957                  * last component.
2958                  */
2959                 if (i == 0)
2960                         i = comp_v1->lcm_entry_count - 1;
2961                 else
2962                         i--;
2963                 flags &= ~LDF_SKIP_OBJS;
2964
2965                 lov_dump_comp_v1_entry(param, flags, i);
2966
2967                 v1 = lov_comp_entry(comp_v1, i);
2968                 objects = lov_v1v3_objects(v1);
2969                 lov_v1v3_pool_name(v1, pool_name);
2970
2971                 lov_dump_user_lmm_v1v3(v1, pool_name, objects, path, obdindex,
2972                                        param->fp_max_depth, param->fp_verbose,
2973                                        flags);
2974         }
2975 }
2976
2977 #define VERBOSE_COMP_OPTS       (VERBOSE_COMP_COUNT | VERBOSE_COMP_ID | \
2978                                  VERBOSE_COMP_START | VERBOSE_COMP_END | \
2979                                  VERBOSE_COMP_FLAGS)
2980
2981 static inline bool has_any_comp_options(struct find_param *param)
2982 {
2983         int verbose = param->fp_verbose;
2984
2985         if (param->fp_check_comp_id || param->fp_check_comp_count ||
2986             param->fp_check_comp_start || param->fp_check_comp_end ||
2987             param->fp_check_comp_flags)
2988                 return true;
2989
2990         /* show full layout information, not component specific */
2991         if ((verbose & ~VERBOSE_DETAIL) == VERBOSE_DEFAULT)
2992                 return false;
2993
2994         return verbose & VERBOSE_COMP_OPTS;
2995 }
2996
2997 struct lov_user_mds_data *lov_forge_comp_v1(struct lov_user_mds_data *orig,
2998                                             bool is_dir)
2999 {
3000         struct lov_user_md *lum = &orig->lmd_lmm;
3001         struct lov_user_mds_data *new;
3002         struct lov_comp_md_v1 *comp_v1;
3003         struct lov_comp_md_entry_v1 *ent;
3004         int lum_off = sizeof(*comp_v1) + sizeof(*ent);
3005         int lum_size = lov_user_md_size(is_dir ? 0 : lum->lmm_stripe_count,
3006                                         lum->lmm_magic);
3007
3008         new = malloc(sizeof(lstat_t) + lum_off + lum_size);
3009         if (new == NULL) {
3010                 llapi_printf(LLAPI_MSG_NORMAL, "out of memory\n");
3011                 return new;
3012         }
3013
3014         memcpy(new, orig, sizeof(lstat_t));
3015
3016         comp_v1 = (struct lov_comp_md_v1 *)&new->lmd_lmm;
3017         comp_v1->lcm_magic = lum->lmm_magic;
3018         comp_v1->lcm_size = lum_off + lum_size;
3019         comp_v1->lcm_layout_gen = is_dir ? 0 : lum->lmm_layout_gen;
3020         comp_v1->lcm_flags = 0;
3021         comp_v1->lcm_entry_count = 1;
3022
3023         ent = &comp_v1->lcm_entries[0];
3024         ent->lcme_id = 0;
3025         ent->lcme_flags = is_dir ? 0 : LCME_FL_INIT;
3026         ent->lcme_extent.e_start = 0;
3027         ent->lcme_extent.e_end = LUSTRE_EOF;
3028         ent->lcme_offset = lum_off;
3029         ent->lcme_size = lum_size;
3030
3031         memcpy((char *)comp_v1 + lum_off, lum, lum_size);
3032
3033         return new;
3034 }
3035
3036 static void lov_dump_plain_user_lmm(struct find_param *param, char *path,
3037                                     enum lov_dump_flags flags)
3038 {
3039         __u32 magic = *(__u32 *)&param->fp_lmd->lmd_lmm;
3040
3041         if (has_any_comp_options(param)) {
3042                 struct lov_user_mds_data *new_lmd, *orig_lmd;
3043
3044                 orig_lmd = param->fp_lmd;
3045                 new_lmd = lov_forge_comp_v1(orig_lmd, flags & LDF_IS_DIR);
3046                 if (new_lmd != NULL) {
3047                         param->fp_lmd = new_lmd;
3048                         lov_dump_comp_v1(param, path, flags);
3049                         param->fp_lmd = orig_lmd;
3050                         free(new_lmd);
3051                 }
3052                 return;
3053         }
3054
3055         if (magic == LOV_USER_MAGIC_V1) {
3056                 lov_dump_user_lmm_v1v3(&param->fp_lmd->lmd_lmm, NULL,
3057                                        param->fp_lmd->lmd_lmm.lmm_objects,
3058                                        path, param->fp_obd_index,
3059                                        param->fp_max_depth, param->fp_verbose,
3060                                        flags);
3061         } else {
3062                 char pool_name[LOV_MAXPOOLNAME + 1];
3063                 struct lov_user_ost_data_v1 *objects;
3064                 struct lov_user_md_v3 *lmmv3 = (void *)&param->fp_lmd->lmd_lmm;
3065
3066                 strlcpy(pool_name, lmmv3->lmm_pool_name, sizeof(pool_name));
3067                 objects = lmmv3->lmm_objects;
3068                 lov_dump_user_lmm_v1v3(&param->fp_lmd->lmd_lmm, pool_name,
3069                                        objects, path, param->fp_obd_index,
3070                                        param->fp_max_depth, param->fp_verbose,
3071                                        flags);
3072         }
3073 }
3074
3075 static void llapi_lov_dump_user_lmm(struct find_param *param, char *path,
3076                                     enum lov_dump_flags flags)
3077 {
3078         __u32 magic;
3079
3080         if (param->fp_get_lmv || param->fp_get_default_lmv)
3081                 magic = (__u32)param->fp_lmv_md->lum_magic;
3082         else
3083                 magic = *(__u32 *)&param->fp_lmd->lmd_lmm; /* lum->lmm_magic */
3084
3085         if (param->fp_raw)
3086                 flags |= LDF_IS_RAW;
3087         if (param->fp_yaml)
3088                 flags |= LDF_YAML;
3089
3090         switch (magic) {
3091         case LOV_USER_MAGIC_V1:
3092         case LOV_USER_MAGIC_V3:
3093                 lov_dump_plain_user_lmm(param, path, flags);
3094                 break;
3095         case LMV_MAGIC_V1:
3096         case LMV_USER_MAGIC: {
3097                 char pool_name[LOV_MAXPOOLNAME + 1];
3098                 struct lmv_user_md *lum;
3099
3100                 lum = (struct lmv_user_md *)param->fp_lmv_md;
3101                 strlcpy(pool_name, lum->lum_pool_name, sizeof(pool_name));
3102                 lmv_dump_user_lmm(lum, pool_name, path, param->fp_obd_index,
3103                                   param->fp_max_depth, param->fp_verbose,
3104                                   flags);
3105                 break;
3106         }
3107         case LOV_USER_MAGIC_COMP_V1:
3108                 lov_dump_comp_v1(param, path, flags);
3109                 break;
3110         default:
3111                 llapi_printf(LLAPI_MSG_NORMAL, "unknown lmm_magic:  %#x "
3112                              "(expecting one of %#x %#x %#x %#x)\n",
3113                              *(__u32 *)&param->fp_lmd->lmd_lmm,
3114                              LOV_USER_MAGIC_V1, LOV_USER_MAGIC_V3,
3115                              LMV_USER_MAGIC, LMV_MAGIC_V1);
3116                 return;
3117         }
3118 }
3119
3120 int llapi_file_get_stripe(const char *path, struct lov_user_md *lum)
3121 {
3122         const char *fname;
3123         char *dname;
3124         int fd, rc = 0;
3125
3126         fname = strrchr(path, '/');
3127
3128         /* It should be a file (or other non-directory) */
3129         if (fname == NULL) {
3130                 dname = (char *)malloc(2);
3131                 if (dname == NULL)
3132                         return -ENOMEM;
3133                 strcpy(dname, ".");
3134                 fname = (char *)path;
3135         } else {
3136                 dname = (char *)malloc(fname - path + 1);
3137                 if (dname == NULL)
3138                         return -ENOMEM;
3139                 strncpy(dname, path, fname - path);
3140                 dname[fname - path] = '\0';
3141                 fname++;
3142         }
3143
3144         fd = open(dname, O_RDONLY | O_NONBLOCK);
3145         if (fd == -1) {
3146                 rc = -errno;
3147                 free(dname);
3148                 return rc;
3149         }
3150
3151         strcpy((char *)lum, fname);
3152         if (ioctl(fd, IOC_MDC_GETFILESTRIPE, (void *)lum) == -1)
3153                 rc = -errno;
3154
3155         if (close(fd) == -1 && rc == 0)
3156                 rc = -errno;
3157
3158         free(dname);
3159         return rc;
3160 }
3161
3162 int llapi_file_lookup(int dirfd, const char *name)
3163 {
3164         struct obd_ioctl_data data = { 0 };
3165         char rawbuf[8192];
3166         char *buf = rawbuf;
3167         int rc;
3168
3169         if (dirfd < 0 || name == NULL)
3170                 return -EINVAL;
3171
3172         data.ioc_version = OBD_IOCTL_VERSION;
3173         data.ioc_len = sizeof(data);
3174         data.ioc_inlbuf1 = (char *)name;
3175         data.ioc_inllen1 = strlen(name) + 1;
3176
3177         rc = obd_ioctl_pack(&data, &buf, sizeof(rawbuf));
3178         if (rc) {
3179                 llapi_error(LLAPI_MSG_ERROR, rc,
3180                             "error: IOC_MDC_LOOKUP pack failed for '%s': rc %d",
3181                             name, rc);
3182                 return rc;
3183         }
3184
3185         rc = ioctl(dirfd, IOC_MDC_LOOKUP, buf);
3186         if (rc < 0)
3187                 rc = -errno;
3188         return rc;
3189 }
3190
3191 /* Check if the file time matches all the given criteria (e.g. --atime +/-N).
3192  * Return -1 or 1 if file timestamp does not or does match the given criteria
3193  * correspondingly. Return 0 if the MDS time is being checked and there are
3194  * attributes on OSTs and it is not yet clear if the timespamp matches.
3195  *
3196  * If 0 is returned, we need to do another RPC to the OSTs to obtain the
3197  * updated timestamps. */
3198 static int find_time_check(lstat_t *st, struct find_param *param, int mds)
3199 {
3200         int rc = 1;
3201         int rc2;
3202
3203         /* Check if file is accepted. */
3204         if (param->fp_atime) {
3205                 rc2 = find_value_cmp(st->st_atime, param->fp_atime,
3206                                      param->fp_asign, param->fp_exclude_atime,
3207                                      24 * 60 * 60, mds);
3208                 if (rc2 < 0)
3209                         return rc2;
3210                 rc = rc2;
3211         }
3212
3213         if (param->fp_mtime) {
3214                 rc2 = find_value_cmp(st->st_mtime, param->fp_mtime,
3215                                      param->fp_msign, param->fp_exclude_mtime,
3216                                      24 * 60 * 60, mds);
3217                 if (rc2 < 0)
3218                         return rc2;
3219
3220                 /* If the previous check matches, but this one is not yet clear,
3221                  * we should return 0 to do an RPC on OSTs. */
3222                 if (rc == 1)
3223                         rc = rc2;
3224         }
3225
3226         if (param->fp_ctime) {
3227                 rc2 = find_value_cmp(st->st_ctime, param->fp_ctime,
3228                                      param->fp_csign, param->fp_exclude_ctime,
3229                                      24 * 60 * 60, mds);
3230                 if (rc2 < 0)
3231                         return rc2;
3232
3233                 /* If the previous check matches, but this one is not yet clear,
3234                  * we should return 0 to do an RPC on OSTs. */
3235                 if (rc == 1)
3236                         rc = rc2;
3237         }
3238
3239         return rc;
3240 }
3241
3242 /**
3243  * Check whether the stripes matches the indexes user provided
3244  *       1   : matched
3245  *       0   : Unmatched
3246  */
3247 static int check_obd_match(struct find_param *param)
3248 {
3249         struct lov_user_ost_data_v1 *objects;
3250         struct lov_comp_md_v1 *comp_v1 = NULL;
3251         struct lov_user_md_v1 *v1 = &param->fp_lmd->lmd_lmm;
3252         lstat_t *st = &param->fp_lmd->lmd_st;
3253         int i, j, k, count = 1;
3254
3255         if (param->fp_obd_uuid && param->fp_obd_index == OBD_NOT_FOUND)
3256                 return 0;
3257
3258         if (!S_ISREG(st->st_mode))
3259                 return 0;
3260
3261         /* Only those files should be accepted, which have a
3262          * stripe on the specified OST. */
3263         if (v1->lmm_magic == LOV_USER_MAGIC_COMP_V1) {
3264                 comp_v1 = (struct lov_comp_md_v1 *)v1;
3265                 count = comp_v1->lcm_entry_count;
3266         }
3267
3268         for (i = 0; i < count; i++) {
3269                 if (comp_v1)
3270                         v1 = lov_comp_entry(comp_v1, i);
3271
3272                 objects = lov_v1v3_objects(v1);
3273
3274                 for (j = 0; j < v1->lmm_stripe_count; j++) {
3275                         for (k = 0; k < param->fp_num_obds; k++) {
3276                                 if (param->fp_obd_indexes[k] ==
3277                                     objects[j].l_ost_idx)
3278                                         return !param->fp_exclude_obd;
3279                         }
3280                 }
3281         }
3282
3283         return param->fp_exclude_obd;
3284 }
3285
3286 static int check_mdt_match(struct find_param *param)
3287 {
3288         int i;
3289
3290         if (param->fp_mdt_uuid && param->fp_mdt_index == OBD_NOT_FOUND)
3291                 return 0;
3292
3293         /* FIXME: For striped dir, we should get stripe information and check */
3294         for (i = 0; i < param->fp_num_mdts; i++) {
3295                 if (param->fp_mdt_indexes[i] == param->fp_file_mdt_index)
3296                         return !param->fp_exclude_mdt;
3297         }
3298
3299         if (param->fp_exclude_mdt)
3300                 return 1;
3301
3302         return 0;
3303 }
3304
3305 /**
3306  * Check whether the obd is active or not, if it is
3307  * not active, just print the object affected by this
3308  * failed target
3309  **/
3310 static int print_failed_tgt(struct find_param *param, char *path, int type)
3311 {
3312         struct obd_statfs stat_buf;
3313         struct obd_uuid uuid_buf;
3314         int ret;
3315
3316         if (type != LL_STATFS_LOV && type != LL_STATFS_LMV)
3317                 return -EINVAL;
3318
3319         memset(&stat_buf, 0, sizeof(struct obd_statfs));
3320         memset(&uuid_buf, 0, sizeof(struct obd_uuid));
3321         ret = llapi_obd_statfs(path, type,
3322                                param->fp_obd_index, &stat_buf,
3323                                &uuid_buf);
3324         if (ret) {
3325                 llapi_printf(LLAPI_MSG_NORMAL,
3326                              "obd_uuid: %s failed %s ",
3327                              param->fp_obd_uuid->uuid,
3328                              strerror(errno));
3329         }
3330
3331         return ret;
3332 }
3333
3334 static int find_check_stripe_size(struct find_param *param)
3335 {
3336         struct lov_comp_md_v1 *comp_v1 = NULL;
3337         struct lov_user_md_v1 *v1 = &param->fp_lmd->lmd_lmm;
3338         int ret, i, count = 1;
3339
3340         if (v1->lmm_magic == LOV_USER_MAGIC_COMP_V1) {
3341                 comp_v1 = (struct lov_comp_md_v1 *)v1;
3342                 count = comp_v1->lcm_entry_count;
3343                 ret = param->fp_exclude_stripe_size ? 1 : -1;
3344         }
3345
3346         for (i = 0; i < count; i++) {
3347                 if (comp_v1)
3348                         v1 = lov_comp_entry(comp_v1, i);
3349
3350                 ret = find_value_cmp(v1->lmm_stripe_size, param->fp_stripe_size,
3351                                      param->fp_stripe_size_sign,
3352                                      param->fp_exclude_stripe_size,
3353                                      param->fp_stripe_size_units, 0);
3354                 /* If any stripe_size matches */
3355                 if (ret != -1)
3356                         break;
3357         }
3358
3359         return ret;
3360 }
3361
3362 static __u32 find_get_stripe_count(struct find_param *param)
3363 {
3364         struct lov_comp_md_v1 *comp_v1 = NULL;
3365         struct lov_user_md_v1 *v1 = &param->fp_lmd->lmd_lmm;
3366         int i, count = 1;
3367         __u32 stripe_count = 0;
3368
3369         if (v1->lmm_magic == LOV_USER_MAGIC_COMP_V1) {
3370                 comp_v1 = (struct lov_comp_md_v1 *)v1;
3371                 count = comp_v1->lcm_entry_count;
3372         }
3373
3374         for (i = 0; i < count; i++) {
3375                 if (comp_v1)
3376                         v1 = lov_comp_entry(comp_v1, i);
3377                 stripe_count += v1->lmm_stripe_count;
3378         }
3379
3380         return stripe_count;
3381 }
3382
3383 #define LOV_PATTERN_INVALID     0xFFFFFFFF
3384
3385 static int find_check_layout(struct find_param *param)
3386 {
3387         struct lov_comp_md_v1 *comp_v1 = NULL;
3388         struct lov_user_md_v1 *v1 = &param->fp_lmd->lmd_lmm;
3389         int i, count = 1;
3390         bool found = false, valid = false;
3391
3392         if (v1->lmm_magic == LOV_USER_MAGIC_COMP_V1) {
3393                 comp_v1 = (struct lov_comp_md_v1 *)v1;
3394                 count = comp_v1->lcm_entry_count;
3395         }
3396
3397         for (i = 0; i < count; i++) {
3398                 if (comp_v1)
3399                         v1 = lov_comp_entry(comp_v1, i);
3400
3401                 if (v1->lmm_pattern == LOV_PATTERN_INVALID)
3402                         continue;
3403
3404                 valid = true;
3405                 if (v1->lmm_pattern & param->fp_layout) {
3406                         found = true;
3407                         break;
3408                 }
3409         }
3410
3411         if (!valid)
3412                 return -1;
3413
3414         if ((found && !param->fp_exclude_layout) ||
3415             (!found && param->fp_exclude_layout))
3416                 return 1;
3417
3418         return -1;
3419 }
3420
3421 static int find_check_pool(struct find_param *param)
3422 {
3423         struct lov_comp_md_v1 *comp_v1 = NULL;
3424         struct lov_user_md_v1 *v1 = &param->fp_lmd->lmd_lmm;
3425         struct lov_user_md_v3 *v3 = (void *)v1;
3426         int i, count = 1;
3427         bool found = false;
3428
3429         if (v1->lmm_magic == LOV_USER_MAGIC_COMP_V1) {
3430                 comp_v1 = (struct lov_comp_md_v1 *)v1;
3431                 count = comp_v1->lcm_entry_count;
3432                 /* empty requested pool is taken as no pool search */
3433                 if (count == 0 && param->fp_poolname[0] == '\0')
3434                         found = true;
3435         }
3436
3437         for (i = 0; i < count; i++) {
3438                 if (comp_v1 != NULL)
3439                         v1 = lov_comp_entry(comp_v1, i);
3440
3441                 if (((v1->lmm_magic == LOV_USER_MAGIC_V1) &&
3442                      (param->fp_poolname[0] == '\0')) ||
3443                     ((v1->lmm_magic == LOV_USER_MAGIC_V3) &&
3444                      (strncmp(v3->lmm_pool_name,
3445                               param->fp_poolname, LOV_MAXPOOLNAME) == 0)) ||
3446                     ((v1->lmm_magic == LOV_USER_MAGIC_V3) &&
3447                      (strcmp(param->fp_poolname, "*") == 0))) {
3448                         found = true;
3449                         break;
3450                 }
3451         }
3452
3453         if ((found && !param->fp_exclude_pool) ||
3454             (!found && param->fp_exclude_pool))
3455                 return 1;
3456
3457         return -1;
3458 }
3459
3460 static int find_check_comp_options(struct find_param *param)
3461 {
3462         lstat_t *st = &param->fp_lmd->lmd_st;
3463         struct lov_comp_md_v1 *comp_v1, *forged_v1 = NULL;
3464         struct lov_user_md_v1 *v1 = &param->fp_lmd->lmd_lmm;
3465         struct lov_comp_md_entry_v1 *entry;
3466         int i, ret = 0;
3467
3468         if (v1->lmm_magic == LOV_USER_MAGIC_COMP_V1) {
3469                 comp_v1 = (struct lov_comp_md_v1 *)v1;
3470         } else {
3471                 forged_v1 = malloc(sizeof(*forged_v1) + sizeof(*entry));
3472                 if (forged_v1 == NULL)
3473                         return -1;
3474                 comp_v1 = forged_v1;
3475                 comp_v1->lcm_entry_count = 1;
3476                 entry = &comp_v1->lcm_entries[0];
3477                 entry->lcme_flags = S_ISDIR(st->st_mode) ? 0 : LCME_FL_INIT;
3478                 entry->lcme_extent.e_start = 0;
3479                 entry->lcme_extent.e_end = LUSTRE_EOF;
3480         }
3481
3482         /* invalid case, don't match for any kind of search. */
3483         if (comp_v1->lcm_entry_count == 0) {
3484                 ret = -1;
3485                 goto out;
3486         }
3487
3488         if (param->fp_check_comp_count) {
3489                 ret = find_value_cmp(forged_v1 ? 0 : comp_v1->lcm_entry_count,
3490                                      param->fp_comp_count,
3491                                      param->fp_comp_count_sign,
3492                                      param->fp_exclude_comp_count, 1, 0);
3493                 if (ret == -1)
3494                         goto out;
3495         }
3496
3497         ret = 1;
3498         for (i = 0; i < comp_v1->lcm_entry_count; i++) {
3499                 entry = &comp_v1->lcm_entries[i];
3500
3501                 if (param->fp_check_comp_flags) {
3502                         if (((entry->lcme_flags & param->fp_comp_flags) &&
3503                              param->fp_exclude_comp_flags) ||
3504                             (!(entry->lcme_flags & param->fp_comp_flags) &&
3505                              !param->fp_exclude_comp_flags))
3506                                 ret = -1;
3507                         else
3508                                 ret = 1;
3509
3510                         if (ret == -1)
3511                                 continue;
3512                 }
3513
3514                 if (param->fp_check_comp_start) {
3515                         ret = find_value_cmp(entry->lcme_extent.e_start,
3516                                              param->fp_comp_start,
3517                                              param->fp_comp_start_sign,
3518                                              param->fp_exclude_comp_start,
3519                                              param->fp_comp_start_units, 0);
3520                         if (ret == -1)
3521                                 continue;
3522                 }
3523
3524                 if (param->fp_check_comp_end) {
3525                         ret = find_comp_end_cmp(entry->lcme_extent.e_end,
3526                                                 param);
3527                         if (ret == -1)
3528                                 continue;
3529                 }
3530
3531                 /* the component matches all criteria */
3532                 break;
3533         }
3534 out:
3535         if (forged_v1 != NULL)
3536                 free(forged_v1);
3537         return ret;
3538 }
3539
3540 static bool find_check_lmm_info(struct find_param *param)
3541 {
3542         return param->fp_check_pool || param->fp_check_stripe_count ||
3543                param->fp_check_stripe_size || param->fp_check_layout ||
3544                param->fp_check_comp_count || param->fp_check_comp_end ||
3545                param->fp_check_comp_start || param->fp_check_comp_flags ||
3546                param->fp_check_projid;
3547 }
3548
3549 /*
3550  * Get file/directory project id.
3551  * by the open fd resides on.
3552  * Return 0 and project id on success, or -ve errno.
3553  */
3554 static int fget_projid(int fd, int *projid)
3555 {
3556         struct fsxattr fsx;
3557         int rc;
3558
3559         rc = ioctl(fd, LL_IOC_FSGETXATTR, &fsx);
3560         if (rc)
3561                 return -errno;
3562
3563         *projid = fsx.fsx_projid;
3564         return 0;
3565 }
3566
3567 static int cb_find_init(char *path, DIR *parent, DIR **dirp,
3568                         void *data, struct dirent64 *de)
3569 {
3570         struct find_param *param = (struct find_param *)data;
3571         DIR *dir = dirp == NULL ? NULL : *dirp;
3572         int decision = 1; /* 1 is accepted; -1 is rejected. */
3573         lstat_t *st = &param->fp_lmd->lmd_st;
3574         int lustre_fs = 1;
3575         int checked_type = 0;
3576         int ret = 0;
3577         __u32 stripe_count = 0;
3578         int fd = -2;
3579
3580         if (parent == NULL && dir == NULL)
3581                 return -EINVAL;
3582
3583         /* If a regular expression is presented, make the initial decision */
3584         if (param->fp_pattern != NULL) {
3585                 char *fname = strrchr(path, '/');
3586                 fname = (fname == NULL ? path : fname + 1);
3587                 ret = fnmatch(param->fp_pattern, fname, 0);
3588                 if ((ret == FNM_NOMATCH && !param->fp_exclude_pattern) ||
3589                     (ret == 0 && param->fp_exclude_pattern))
3590                         goto decided;
3591         }
3592
3593         /* See if we can check the file type from the dirent. */
3594         if (param->fp_type != 0 && de != NULL && de->d_type != DT_UNKNOWN) {
3595                 checked_type = 1;
3596
3597                 if (DTTOIF(de->d_type) == param->fp_type) {
3598                         if (param->fp_exclude_type)
3599                                 goto decided;
3600                 } else {
3601                         if (!param->fp_exclude_type)
3602                                 goto decided;
3603                 }
3604         }
3605
3606         ret = 0;
3607
3608         /* Request MDS for the stat info if some of these parameters need
3609          * to be compared. */
3610         if (param->fp_obd_uuid || param->fp_mdt_uuid ||
3611             param->fp_check_uid || param->fp_check_gid ||
3612             param->fp_atime || param->fp_mtime || param->fp_ctime ||
3613             param->fp_check_size || find_check_lmm_info(param) ||
3614             param->fp_check_mdt_count || param->fp_check_hash_type)
3615                 decision = 0;
3616
3617         if (param->fp_type != 0 && checked_type == 0)
3618                 decision = 0;
3619
3620         if (decision == 0) {
3621                 if (param->fp_check_mdt_count || param->fp_check_hash_type) {
3622                         param->fp_get_lmv = 1;
3623                         ret = cb_get_dirstripe(path, dir, param);
3624                         if (ret != 0)
3625                                 return ret;
3626                 }
3627
3628                 param->fp_lmd->lmd_lmm.lmm_magic = 0;
3629                 ret = get_lmd_info(path, parent, dir, param->fp_lmd,
3630                                    param->fp_lum_size);
3631                 if (ret == 0 && param->fp_lmd->lmd_lmm.lmm_magic == 0 &&
3632                     find_check_lmm_info(param)) {
3633                         struct lov_user_md *lmm = &param->fp_lmd->lmd_lmm;
3634
3635                         /* We need to "fake" the "use the default" values
3636                          * since the lmm struct is zeroed out at this point. */
3637                         lmm->lmm_magic = LOV_USER_MAGIC_V1;
3638                         lmm->lmm_pattern = 0xFFFFFFFF;
3639                         if (!param->fp_raw)
3640                                 ostid_set_seq(&lmm->lmm_oi,
3641                                               FID_SEQ_LOV_DEFAULT);
3642                         lmm->lmm_stripe_size = 0;
3643                         lmm->lmm_stripe_count = 0;
3644                         lmm->lmm_stripe_offset = -1;
3645                 }
3646                 if (ret == 0 && param->fp_mdt_uuid != NULL) {
3647                         if (dir != NULL) {
3648                                 ret = llapi_file_fget_mdtidx(dirfd(dir),
3649                                                      &param->fp_file_mdt_index);
3650                         } else if (S_ISREG(st->st_mode)) {
3651                                 /* FIXME: we could get the MDT index from the
3652                                  * file's FID in lmd->lmd_lmm.lmm_oi without
3653                                  * opening the file, once we are sure that
3654                                  * LFSCK2 (2.6) has fixed up pre-2.0 LOV EAs.
3655                                  * That would still be an ioctl() to map the
3656                                  * FID to the MDT, but not an open RPC. */
3657                                 fd = open(path, O_RDONLY);
3658                                 if (fd > 0) {
3659                                         ret = llapi_file_fget_mdtidx(fd,
3660                                                      &param->fp_file_mdt_index);
3661                                 } else {
3662                                         ret = -errno;
3663                                 }
3664                         } else {
3665                                 /* For a special file, we assume it resides on
3666                                  * the same MDT as the parent directory. */
3667                                 ret = llapi_file_fget_mdtidx(dirfd(parent),
3668                                                      &param->fp_file_mdt_index);
3669                         }
3670                 }
3671                 if (ret != 0) {
3672                         if (ret == -ENOTTY)
3673                                 lustre_fs = 0;
3674                         if (ret == -ENOENT)
3675                                 goto decided;
3676
3677                         goto out;
3678                 } else {
3679                         stripe_count = find_get_stripe_count(param);
3680                 }
3681         }
3682
3683         if (param->fp_type && !checked_type) {
3684                 if ((st->st_mode & S_IFMT) == param->fp_type) {
3685                         if (param->fp_exclude_type)
3686                                 goto decided;
3687                 } else {
3688                         if (!param->fp_exclude_type)
3689                                 goto decided;
3690                 }
3691         }
3692
3693         /* Prepare odb. */
3694         if (param->fp_obd_uuid || param->fp_mdt_uuid) {
3695                 if (lustre_fs && param->fp_got_uuids &&
3696                     param->fp_dev != st->st_dev) {
3697                         /* A lustre/lustre mount point is crossed. */
3698                         param->fp_got_uuids = 0;
3699                         param->fp_obds_printed = 0;
3700                         param->fp_mdt_index = OBD_NOT_FOUND;
3701                         param->fp_obd_index = OBD_NOT_FOUND;
3702                 }
3703
3704                 if (lustre_fs && !param->fp_got_uuids) {
3705                         ret = setup_target_indexes(dir ? dir : parent, path,
3706                                                    param);
3707                         if (ret)
3708                                 goto out;
3709
3710                         param->fp_dev = st->st_dev;
3711                 } else if (!lustre_fs && param->fp_got_uuids) {
3712                         /* A lustre/non-lustre mount point is crossed. */
3713                         param->fp_got_uuids = 0;
3714                         param->fp_mdt_index = OBD_NOT_FOUND;
3715                         param->fp_obd_index = OBD_NOT_FOUND;
3716                 }
3717         }
3718
3719         if (param->fp_check_stripe_size) {
3720                 decision = find_check_stripe_size(param);
3721                 if (decision == -1)
3722                         goto decided;
3723         }
3724
3725         if (param->fp_check_stripe_count) {
3726                 decision = find_value_cmp(stripe_count, param->fp_stripe_count,
3727                                           param->fp_stripe_count_sign,
3728                                           param->fp_exclude_stripe_count, 1, 0);
3729                 if (decision == -1)
3730                         goto decided;
3731         }
3732
3733         if (param->fp_check_mdt_count) {
3734                 decision = find_value_cmp(
3735                                 param->fp_lmv_md->lum_stripe_count,
3736                                 param->fp_mdt_count,
3737                                 param->fp_mdt_count_sign,
3738                                 param->fp_exclude_mdt_count, 1, 0);
3739                 if (decision == -1)
3740                         goto decided;
3741         }
3742
3743         if (param->fp_check_layout) {
3744                 decision = find_check_layout(param);
3745                 if (decision == -1)
3746                         goto decided;
3747         }
3748
3749         if (param->fp_check_hash_type) {
3750                 __u32 found;
3751
3752                 found = param->fp_lmv_md->lum_hash_type & param->fp_hash_type;
3753                 if ((found && param->fp_exclude_hash_type) ||
3754                     (!found && !param->fp_exclude_hash_type)) {
3755                         decision = -1;
3756                         goto decided;
3757                 }
3758         }
3759
3760         /* If an OBD UUID is specified but none matches, skip this file. */
3761         if ((param->fp_obd_uuid && param->fp_obd_index == OBD_NOT_FOUND) ||
3762             (param->fp_mdt_uuid && param->fp_mdt_index == OBD_NOT_FOUND))
3763                 goto decided;
3764
3765         /* If an OST or MDT UUID is given, and some OST matches,
3766          * check it here. */
3767         if (param->fp_obd_index != OBD_NOT_FOUND ||
3768             param->fp_mdt_index != OBD_NOT_FOUND) {
3769                 if (param->fp_obd_uuid) {
3770                         if (check_obd_match(param)) {
3771                                 /* If no mdtuuid is given, we are done.
3772                                  * Otherwise, fall through to the mdtuuid
3773                                  * check below. */
3774                                 if (!param->fp_mdt_uuid)
3775                                         goto obd_matches;
3776                         } else {
3777                                 goto decided;
3778                         }
3779                 }
3780
3781                 if (param->fp_mdt_uuid) {
3782                         if (check_mdt_match(param))
3783                                 goto obd_matches;
3784                         goto decided;
3785                 }
3786         }
3787
3788 obd_matches:
3789         if (param->fp_check_uid) {
3790                 if (st->st_uid == param->fp_uid) {
3791                         if (param->fp_exclude_uid)
3792                                 goto decided;
3793                 } else {
3794                         if (!param->fp_exclude_uid)
3795                                 goto decided;
3796                 }
3797         }
3798
3799         if (param->fp_check_gid) {
3800                 if (st->st_gid == param->fp_gid) {
3801                         if (param->fp_exclude_gid)
3802                                 goto decided;
3803                 } else {
3804                         if (!param->fp_exclude_gid)
3805                                 goto decided;
3806                 }
3807         }
3808
3809         if (param->fp_check_projid) {
3810                 int projid = 0;
3811
3812                 if (fd == -2)
3813                         fd = open(path, O_RDONLY);
3814
3815                 if (fd > 0)
3816                         ret = fget_projid(fd, &projid);
3817                 else
3818                         ret = -errno;
3819                 if (ret)
3820                         goto out;
3821                 if (projid == param->fp_projid) {
3822                         if (param->fp_exclude_uid)
3823                                 goto decided;
3824                 } else {
3825                         if (!param->fp_exclude_projid)
3826                                 goto decided;
3827                 }
3828         }
3829
3830         if (param->fp_check_pool) {
3831                 decision = find_check_pool(param);
3832                 if (decision == -1)
3833                         goto decided;
3834         }
3835
3836         if (param->fp_check_comp_count || param->fp_check_comp_flags ||
3837             param->fp_check_comp_start || param->fp_check_comp_end) {
3838                 decision = find_check_comp_options(param);
3839                 if (decision == -1)
3840                         goto decided;
3841         }
3842
3843         /* Check the time on mds. */
3844         decision = 1;
3845         if (param->fp_atime || param->fp_mtime || param->fp_ctime) {
3846                 int for_mds;
3847
3848                 for_mds = lustre_fs ?
3849                         (S_ISREG(st->st_mode) && stripe_count) : 0;
3850                 decision = find_time_check(st, param, for_mds);
3851                 if (decision == -1)
3852                         goto decided;
3853         }
3854
3855         /* If file still fits the request, ask ost for updated info.
3856            The regular stat is almost of the same speed as some new
3857            'glimpse-size-ioctl'. */
3858
3859         if (param->fp_check_size && S_ISREG(st->st_mode) && stripe_count)
3860                 decision = 0;
3861
3862         if (param->fp_check_size && S_ISDIR(st->st_mode))
3863                 decision = 0;
3864
3865         if (!decision) {
3866                 /* For regular files with the stripe the decision may have not
3867                  * been taken yet if *time or size is to be checked. */
3868                 if (param->fp_obd_index != OBD_NOT_FOUND)
3869                         print_failed_tgt(param, path, LL_STATFS_LOV);
3870
3871                 if (param->fp_mdt_index != OBD_NOT_FOUND)
3872                         print_failed_tgt(param, path, LL_STATFS_LMV);
3873
3874                 if (dir != NULL)
3875                         ret = fstat_f(dirfd(dir), st);
3876                 else if (de != NULL)
3877                         ret = fstatat_f(dirfd(parent), de->d_name, st,
3878                                         AT_SYMLINK_NOFOLLOW);
3879                 else
3880                         ret = lstat_f(path, st);
3881
3882                 if (ret) {
3883                         if (errno == ENOENT) {
3884                                 llapi_error(LLAPI_MSG_ERROR, -ENOENT,
3885                                             "warning: %s: %s does not exist",
3886                                             __func__, path);
3887                                 goto decided;
3888                         } else {
3889                                 ret = -errno;
3890                                 llapi_error(LLAPI_MSG_ERROR, ret,
3891                                             "%s: IOC_LOV_GETINFO on %s failed",
3892                                             __func__, path);
3893                                 goto out;
3894                         }
3895                 }
3896
3897                 /* Check the time on osc. */
3898                 decision = find_time_check(st, param, 0);
3899                 if (decision == -1)
3900                         goto decided;
3901         }
3902
3903         if (param->fp_check_size)
3904                 decision = find_value_cmp(st->st_size, param->fp_size,
3905                                           param->fp_size_sign,
3906                                           param->fp_exclude_size,
3907                                           param->fp_size_units, 0);
3908
3909         if (decision != -1) {
3910                 llapi_printf(LLAPI_MSG_NORMAL, "%s", path);
3911                 if (param->fp_zero_end)
3912                         llapi_printf(LLAPI_MSG_NORMAL, "%c", '\0');
3913                 else
3914                         llapi_printf(LLAPI_MSG_NORMAL, "\n");
3915         }
3916
3917 decided:
3918         ret = 0;
3919         /* Do not get down anymore? */
3920         if (param->fp_depth == param->fp_max_depth) {
3921                 ret = 1;
3922                 goto out;
3923         }
3924         param->fp_depth++;
3925 out:
3926         if (fd > 0)
3927                 close(fd);
3928         return ret;
3929 }
3930
3931 static int cb_migrate_mdt_init(char *path, DIR *parent, DIR **dirp,
3932                                void *param_data, struct dirent64 *de)
3933 {
3934         struct find_param       *param = (struct find_param *)param_data;
3935         DIR                     *tmp_parent = parent;
3936         char                    raw[OBD_MAX_IOCTL_BUFFER] = {'\0'};
3937         char                    *rawbuf = raw;
3938         struct obd_ioctl_data   data = { 0 };
3939         int                     fd;
3940         int                     ret;
3941         char                    *path_copy;
3942         char                    *filename;
3943         bool                    retry = false;
3944
3945         if (parent == NULL && dirp == NULL)
3946                 return -EINVAL;
3947
3948         if (dirp != NULL)
3949                 closedir(*dirp);
3950
3951         if (parent == NULL) {
3952                 tmp_parent = opendir_parent(path);
3953                 if (tmp_parent == NULL) {
3954                         *dirp = NULL;
3955                         ret = -errno;
3956                         llapi_error(LLAPI_MSG_ERROR, ret,
3957                                     "can not open %s", path);
3958                         return ret;
3959                 }
3960         }
3961
3962         fd = dirfd(tmp_parent);
3963
3964         path_copy = strdup(path);
3965         filename = basename(path_copy);
3966         data.ioc_inlbuf1 = (char *)filename;
3967         data.ioc_inllen1 = strlen(filename) + 1;
3968         data.ioc_inlbuf2 = (char *)&param->fp_mdt_index;
3969         data.ioc_inllen2 = sizeof(param->fp_mdt_index);
3970         ret = obd_ioctl_pack(&data, &rawbuf, sizeof(raw));
3971         if (ret != 0) {
3972                 llapi_error(LLAPI_MSG_ERROR, ret,
3973                             "llapi_obd_statfs: error packing ioctl data");
3974                 goto out;
3975         }
3976
3977 migrate:
3978         ret = ioctl(fd, LL_IOC_MIGRATE, rawbuf);
3979         if (ret != 0) {
3980                 if (errno == EBUSY && !retry) {
3981                         /* because migrate may not be able to lock all involved
3982                          * objects in order, for some of them it try lock, while
3983                          * there may be conflicting COS locks and cause migrate
3984                          * fail with EBUSY, hope a sync() could cause
3985                          * transaction commit and release these COS locks. */
3986                         sync();
3987                         retry = true;
3988                         goto migrate;
3989                 }
3990                 ret = -errno;
3991                 fprintf(stderr, "%s migrate failed: %s (%d)\n",
3992                         path, strerror(-ret), ret);
3993                 goto out;
3994         } else if (param->fp_verbose & VERBOSE_DETAIL) {
3995                 fprintf(stdout, "migrate %s to MDT%d\n",
3996                         path, param->fp_mdt_index);
3997         }
3998
3999 out:
4000         if (dirp != NULL) {
4001                 /* If the directory is being migration, we need
4002                  * close the directory after migration,
4003                  * so the old directory cache will be cleanup
4004                  * on the client side, and re-open to get the
4005                  * new directory handle */
4006                 *dirp = opendir(path);
4007                 if (*dirp == NULL) {
4008                         ret = -errno;
4009                         llapi_error(LLAPI_MSG_ERROR, ret,
4010                                     "%s: Failed to open '%s'", __func__, path);
4011                 }
4012         }
4013
4014         if (parent == NULL)
4015                 closedir(tmp_parent);
4016
4017         free(path_copy);
4018
4019         return ret;
4020 }
4021
4022 int llapi_migrate_mdt(char *path, struct find_param *param)
4023 {
4024         return param_callback(path, cb_migrate_mdt_init, cb_common_fini, param);
4025 }
4026
4027 int llapi_mv(char *path, struct find_param *param)
4028 {
4029 #if LUSTRE_VERSION_CODE > OBD_OCD_VERSION(2, 9, 59, 0)
4030         static bool printed;
4031
4032         if (!printed) {
4033                 llapi_error(LLAPI_MSG_ERROR, -ESTALE,
4034                             "llapi_mv() is deprecated, use llapi_migrate_mdt()\n");
4035                 printed = true;
4036         }
4037 #endif
4038         return llapi_migrate_mdt(path, param);
4039 }
4040
4041 int llapi_find(char *path, struct find_param *param)
4042 {
4043         return param_callback(path, cb_find_init, cb_common_fini, param);
4044 }
4045
4046 /*
4047  * Get MDT number that the file/directory inode referenced
4048  * by the open fd resides on.
4049  * Return 0 and mdtidx on success, or -ve errno.
4050  */
4051 int llapi_file_fget_mdtidx(int fd, int *mdtidx)
4052 {
4053         if (ioctl(fd, LL_IOC_GET_MDTIDX, mdtidx) < 0)
4054                 return -errno;
4055         return 0;
4056 }
4057
4058 static int cb_get_mdt_index(char *path, DIR *parent, DIR **dirp, void *data,
4059                             struct dirent64 *de)
4060 {
4061         struct find_param *param = (struct find_param *)data;
4062         DIR *d = dirp == NULL ? NULL : *dirp;
4063         int ret;
4064         int mdtidx;
4065
4066         if (parent == NULL && d == NULL)
4067                 return -EINVAL;
4068
4069         if (d != NULL) {
4070                 ret = llapi_file_fget_mdtidx(dirfd(d), &mdtidx);
4071         } else /* if (parent) */ {
4072                 int fd;
4073
4074                 fd = open(path, O_RDONLY | O_NOCTTY);
4075                 if (fd > 0) {
4076                         ret = llapi_file_fget_mdtidx(fd, &mdtidx);
4077                         close(fd);
4078                 } else {
4079                         ret = -errno;
4080                 }
4081         }
4082
4083         if (ret != 0) {
4084                 if (ret == -ENODATA) {
4085                         if (!param->fp_obd_uuid)
4086                                 llapi_printf(LLAPI_MSG_NORMAL,
4087                                              "'%s' has no stripe info\n", path);
4088                         goto out;
4089                 } else if (ret == -ENOENT) {
4090                         llapi_error(LLAPI_MSG_WARN, ret,
4091                                     "warning: %s: '%s' does not exist",
4092                                     __func__, path);
4093                         goto out;
4094                 } else if (ret == -ENOTTY) {
4095                         llapi_error(LLAPI_MSG_ERROR, ret,
4096                                     "%s: '%s' not on a Lustre fs",
4097                                     __func__, path);
4098                 } else {
4099                         llapi_error(LLAPI_MSG_ERROR, ret,
4100                                     "error: %s: '%s' failed get_mdtidx",
4101                                     __func__, path);
4102                 }
4103                 return ret;
4104         }
4105
4106         if (param->fp_quiet || !(param->fp_verbose & VERBOSE_DETAIL))
4107                 llapi_printf(LLAPI_MSG_NORMAL, "%d\n", mdtidx);
4108         else
4109                 llapi_printf(LLAPI_MSG_NORMAL, "%s\nmdt_index:\t%d\n",
4110                              path, mdtidx);
4111
4112 out:
4113         /* Do not go down anymore? */
4114         if (param->fp_depth == param->fp_max_depth)
4115                 return 1;
4116
4117         param->fp_depth++;
4118
4119         return 0;
4120 }
4121
4122 static int cb_getstripe(char *path, DIR *parent, DIR **dirp, void *data,
4123                         struct dirent64 *de)
4124 {
4125         struct find_param *param = (struct find_param *)data;
4126         DIR *d = dirp == NULL ? NULL : *dirp;
4127         int ret = 0;
4128
4129         if (parent == NULL && d == NULL)
4130                 return -EINVAL;
4131
4132         if (param->fp_obd_uuid) {
4133                 param->fp_quiet = 1;
4134                 ret = setup_obd_uuid(d ? dirfd(d) : dirfd(parent), path, param);
4135                 if (ret)
4136                         return ret;
4137         }
4138
4139         if (d) {
4140                 if (param->fp_get_lmv || param->fp_get_default_lmv) {
4141                         ret = cb_get_dirstripe(path, d, param);
4142                 } else {
4143                         ret = ioctl(dirfd(d), LL_IOC_LOV_GETSTRIPE,
4144                                      (void *)&param->fp_lmd->lmd_lmm);
4145                 }
4146
4147         } else if (parent && !param->fp_get_lmv && !param->fp_get_default_lmv) {
4148                 char *fname = strrchr(path, '/');
4149                 fname = (fname == NULL ? path : fname + 1);
4150
4151                 strlcpy((char *)&param->fp_lmd->lmd_lmm, fname,
4152                         param->fp_lum_size);
4153
4154                 ret = ioctl(dirfd(parent), IOC_MDC_GETFILESTRIPE,
4155                             (void *)&param->fp_lmd->lmd_lmm);
4156         } else {
4157                 return 0;
4158         }
4159
4160         if (ret) {
4161                 if (errno == ENODATA && d != NULL) {
4162                         /* We need to "fake" the "use the default" values
4163                          * since the lmm struct is zeroed out at this point.
4164                          * The magic needs to be set in order to satisfy
4165                          * a check later on in the code path.
4166                          * The object_seq needs to be set for the "(Default)"
4167                          * prefix to be displayed. */
4168                         if (param->fp_get_default_lmv) {
4169                                 struct lmv_user_md *lum = param->fp_lmv_md;
4170
4171                                 lum->lum_magic = LMV_USER_MAGIC;
4172                                 lum->lum_stripe_count = 0;
4173                                 lum->lum_stripe_offset = -1;
4174                                 goto dump;
4175                         } else if (param->fp_get_lmv) {
4176                                 struct lmv_user_md *lum = param->fp_lmv_md;
4177                                 int mdtidx;
4178
4179                                 ret = llapi_file_fget_mdtidx(dirfd(d), &mdtidx);
4180                                 if (ret != 0)
4181                                         goto err_out;
4182                                 lum->lum_magic = LMV_MAGIC_V1;
4183                                 lum->lum_stripe_count = 0;
4184                                 lum->lum_stripe_offset = mdtidx;
4185                                 goto dump;
4186                         } else {
4187                                 struct lov_user_md *lmm =
4188                                         &param->fp_lmd->lmd_lmm;
4189
4190                                 lmm->lmm_magic = LOV_USER_MAGIC_V1;
4191                                 if (!param->fp_raw)
4192                                         ostid_set_seq(&lmm->lmm_oi,
4193                                                       FID_SEQ_LOV_DEFAULT);
4194                                 lmm->lmm_stripe_count = 0;
4195                                 lmm->lmm_stripe_size = 0;
4196                                 lmm->lmm_stripe_offset = -1;
4197                                 goto dump;
4198                         }
4199                 } else if (errno == ENODATA && parent != NULL) {
4200                         if (!param->fp_obd_uuid && !param->fp_mdt_uuid)
4201                                 llapi_printf(LLAPI_MSG_NORMAL,
4202                                              "%s has no stripe info\n", path);
4203                         goto out;
4204                 } else if (errno == ENOENT) {
4205                         llapi_error(LLAPI_MSG_WARN, -ENOENT,
4206                                     "warning: %s: %s does not exist",
4207                                     __func__, path);
4208                         goto out;
4209                 } else if (errno == ENOTTY) {
4210                         ret = -errno;
4211                         llapi_error(LLAPI_MSG_ERROR, ret,
4212                                     "%s: '%s' not on a Lustre fs?",
4213                                     __func__, path);
4214                 } else {
4215                         ret = -errno;
4216 err_out:
4217                         llapi_error(LLAPI_MSG_ERROR, ret,
4218                                     "error: %s: %s failed for %s",
4219                                      __func__, d ? "LL_IOC_LOV_GETSTRIPE" :
4220                                     "IOC_MDC_GETFILESTRIPE", path);
4221                 }
4222
4223                 return ret;
4224         }
4225
4226 dump:
4227         if (!(param->fp_verbose & VERBOSE_MDTINDEX))
4228                 llapi_lov_dump_user_lmm(param, path, d ? LDF_IS_DIR : 0);
4229
4230 out:
4231         /* Do not get down anymore? */
4232         if (param->fp_depth == param->fp_max_depth)
4233                 return 1;
4234
4235         param->fp_depth++;
4236
4237         return 0;
4238 }
4239
4240 int llapi_getstripe(char *path, struct find_param *param)
4241 {
4242         return param_callback(path, (param->fp_verbose & VERBOSE_MDTINDEX) ?
4243                               cb_get_mdt_index : cb_getstripe,
4244                               cb_common_fini, param);
4245 }
4246
4247 int llapi_obd_fstatfs(int fd, __u32 type, __u32 index,
4248                       struct obd_statfs *stat_buf, struct obd_uuid *uuid_buf)
4249 {
4250         char raw[OBD_MAX_IOCTL_BUFFER] = {'\0'};
4251         char *rawbuf = raw;
4252         struct obd_ioctl_data data = { 0 };
4253         int rc = 0;
4254
4255         data.ioc_inlbuf1 = (char *)&type;
4256         data.ioc_inllen1 = sizeof(__u32);
4257         data.ioc_inlbuf2 = (char *)&index;
4258         data.ioc_inllen2 = sizeof(__u32);
4259         data.ioc_pbuf1 = (char *)stat_buf;
4260         data.ioc_plen1 = sizeof(struct obd_statfs);
4261         data.ioc_pbuf2 = (char *)uuid_buf;
4262         data.ioc_plen2 = sizeof(struct obd_uuid);
4263
4264         rc = obd_ioctl_pack(&data, &rawbuf, sizeof(raw));
4265         if (rc != 0) {
4266                 llapi_error(LLAPI_MSG_ERROR, rc,
4267                             "llapi_obd_statfs: error packing ioctl data");
4268                 return rc;
4269         }
4270
4271         rc = ioctl(fd, IOC_OBD_STATFS, (void *)rawbuf);
4272
4273         return rc < 0 ? -errno : 0;
4274 }
4275
4276 int llapi_obd_statfs(char *path, __u32 type, __u32 index,
4277                      struct obd_statfs *stat_buf, struct obd_uuid *uuid_buf)
4278 {
4279         int fd;
4280         int rc;
4281
4282         fd = open(path, O_RDONLY);
4283         if (fd < 0) {
4284                 rc = -errno;
4285                 llapi_error(LLAPI_MSG_ERROR, rc, "error: %s: opening '%s'",
4286                             __func__, path);
4287                 /* If we can't even open a file on the filesystem (e.g. with
4288                  * -ESHUTDOWN), force caller to exit or it will loop forever. */
4289                 return -ENODEV;
4290         }
4291
4292         rc = llapi_obd_fstatfs(fd, type, index, stat_buf, uuid_buf);
4293
4294         close(fd);
4295
4296         return rc;
4297 }
4298
4299 #define MAX_STRING_SIZE 128
4300
4301 int llapi_ping(char *obd_type, char *obd_name)
4302 {
4303         glob_t path;
4304         char buf[1];
4305         int rc, fd;
4306
4307         rc = cfs_get_param_paths(&path, "%s/%s/ping",
4308                                 obd_type, obd_name);
4309         if (rc != 0)
4310                 return -errno;
4311
4312         fd = open(path.gl_pathv[0], O_WRONLY);
4313         if (fd < 0) {
4314                 rc = -errno;
4315                 llapi_error(LLAPI_MSG_ERROR, rc, "error opening %s",
4316                             path.gl_pathv[0]);
4317                 goto failed;
4318         }
4319
4320         /* The purpose is to send a byte as a ping, whatever this byte is. */
4321         /* coverity[uninit_use_in_call] */
4322         rc = write(fd, buf, 1);
4323         if (rc < 0)
4324                 rc = -errno;
4325         close(fd);
4326
4327         if (rc == 1)
4328                 rc = 0;
4329 failed:
4330         cfs_free_param_data(&path);
4331         return rc;
4332 }
4333
4334 int llapi_target_iterate(int type_num, char **obd_type,
4335                          void *args, llapi_cb_t cb)
4336 {
4337         char buf[MAX_STRING_SIZE];
4338         int i, rc = 0;
4339         glob_t param;
4340         FILE *fp;
4341
4342         rc = cfs_get_param_paths(&param, "devices");
4343         if (rc != 0)
4344                 return -ENOENT;
4345
4346         fp = fopen(param.gl_pathv[0], "r");
4347         if (fp == NULL) {
4348                 rc = -errno;
4349                 llapi_error(LLAPI_MSG_ERROR, rc, "error: opening '%s'",
4350                             param.gl_pathv[0]);
4351                 goto free_path;
4352         }
4353
4354         while (fgets(buf, sizeof(buf), fp) != NULL) {
4355                 char *obd_type_name = NULL;
4356                 char *obd_name = NULL;
4357                 char *obd_uuid = NULL;
4358                 char *bufp = buf;
4359                 struct obd_statfs osfs_buffer;
4360
4361                 while(bufp[0] == ' ')
4362                         ++bufp;
4363
4364                 for(i = 0; i < 3; i++) {
4365                         obd_type_name = strsep(&bufp, " ");
4366                 }
4367                 obd_name = strsep(&bufp, " ");
4368                 obd_uuid = strsep(&bufp, " ");
4369
4370                 memset(&osfs_buffer, 0, sizeof (osfs_buffer));
4371
4372                 for (i = 0; i < type_num; i++) {
4373                         if (strcmp(obd_type_name, obd_type[i]) != 0)
4374                                 continue;
4375
4376                         cb(obd_type_name, obd_name, obd_uuid, args);
4377                 }
4378         }
4379         fclose(fp);
4380 free_path:
4381         cfs_free_param_data(&param);
4382         return 0;
4383 }
4384
4385 static void do_target_check(char *obd_type_name, char *obd_name,
4386                             char *obd_uuid, void *args)
4387 {
4388         int rc;
4389
4390         rc = llapi_ping(obd_type_name, obd_name);
4391         if (rc == ENOTCONN) {
4392                 llapi_printf(LLAPI_MSG_NORMAL, "%s inactive.\n", obd_name);
4393         } else if (rc) {
4394                 llapi_error(LLAPI_MSG_ERROR, rc, "error: check '%s'", obd_name);
4395         } else {
4396                 llapi_printf(LLAPI_MSG_NORMAL, "%s active.\n", obd_name);
4397         }
4398 }
4399
4400 int llapi_target_check(int type_num, char **obd_type, char *dir)
4401 {
4402         return llapi_target_iterate(type_num, obd_type, NULL, do_target_check);
4403 }
4404
4405 #undef MAX_STRING_SIZE
4406
4407 /* Is this a lustre fs? */
4408 int llapi_is_lustre_mnttype(const char *type)
4409 {
4410         return (strcmp(type, "lustre") == 0 || strcmp(type,"lustre_lite") == 0);
4411 }
4412
4413 /* Is this a lustre client fs? */
4414 int llapi_is_lustre_mnt(struct mntent *mnt)
4415 {
4416         return (llapi_is_lustre_mnttype(mnt->mnt_type) &&
4417                 strstr(mnt->mnt_fsname, ":/") != NULL);
4418 }
4419
4420 int llapi_quotactl(char *mnt, struct if_quotactl *qctl)
4421 {
4422         char fsname[PATH_MAX + 1];
4423         int root;
4424         int rc;
4425
4426         rc = llapi_search_fsname(mnt, fsname);
4427         if (rc) {
4428                 llapi_err_noerrno(LLAPI_MSG_ERROR,
4429                                   "'%s' isn't on Lustre filesystem", mnt);
4430                 return rc;
4431         }
4432
4433         root = open(mnt, O_RDONLY | O_DIRECTORY);
4434         if (root < 0) {
4435                 rc = -errno;
4436                 llapi_error(LLAPI_MSG_ERROR, rc, "open %s failed", mnt);
4437                 return rc;
4438         }
4439
4440         rc = ioctl(root, OBD_IOC_QUOTACTL, qctl);
4441         if (rc < 0)
4442                 rc = -errno;
4443
4444         close(root);
4445         return rc;
4446 }
4447
4448 /* Print mdtname 'name' into 'buf' using 'format'.  Add -MDT0000 if needed.
4449  * format must have %s%s, buf must be > 16
4450  * Eg: if name = "lustre-MDT0000", "lustre", or "lustre-MDT0000_UUID"
4451  *     then buf = "lustre-MDT0000"
4452  */
4453 static int get_mdtname(char *name, char *format, char *buf)
4454 {
4455         char suffix[]="-MDT0000";
4456         int len = strlen(name);
4457
4458         if ((len > 5) && (strncmp(name + len - 5, "_UUID", 5) == 0)) {
4459                 name[len - 5] = '\0';
4460                 len -= 5;
4461         }
4462
4463         if (len > 8) {
4464                 if ((len <= 16) && strncmp(name + len - 8, "-MDT", 4) == 0) {
4465                         suffix[0] = '\0';
4466                 } else {
4467                         /* Not enough room to add suffix */
4468                         llapi_err_noerrno(LLAPI_MSG_ERROR,
4469                                           "MDT name too long |%s|", name);
4470                         return -EINVAL;
4471                 }
4472         }
4473
4474         return sprintf(buf, format, name, suffix);
4475 }
4476
4477 /** ioctl on filsystem root, with mdtindex sent as data
4478  * \param mdtname path, fsname, or mdtname (lutre-MDT0004)
4479  * \param mdtidxp pointer to integer within data to be filled in with the
4480  *    mdt index (0 if no mdt is specified).  NULL won't be filled.
4481  */
4482 int root_ioctl(const char *mdtname, int opc, void *data, int *mdtidxp,
4483                int want_error)
4484 {
4485         char fsname[20];
4486         char *ptr;
4487         int fd, rc;
4488         long index;
4489
4490         /* Take path, fsname, or MDTname.  Assume MDT0000 in the former cases.
4491          Open root and parse mdt index. */
4492         if (mdtname[0] == '/') {
4493                 index = 0;
4494                 rc = get_root_path(WANT_FD | want_error, NULL, &fd,
4495                                    (char *)mdtname, -1);
4496         } else {
4497                 if (get_mdtname((char *)mdtname, "%s%s", fsname) < 0)
4498                         return -EINVAL;
4499                 ptr = fsname + strlen(fsname) - 8;
4500                 *ptr = '\0';
4501                 index = strtol(ptr + 4, NULL, 10);
4502                 rc = get_root_path(WANT_FD | want_error, fsname, &fd, NULL, -1);
4503         }
4504         if (rc < 0) {
4505                 if (want_error)
4506                         llapi_err_noerrno(LLAPI_MSG_ERROR,
4507                                           "Can't open %s: %d\n", mdtname, rc);
4508                 return rc;
4509         }
4510
4511         if (mdtidxp)
4512                 *mdtidxp = index;
4513
4514         rc = ioctl(fd, opc, data);
4515         if (rc == -1)
4516                 rc = -errno;
4517         else
4518                 rc = 0;
4519         close(fd);
4520         return rc;
4521 }
4522
4523 int llapi_fid2path(const char *device, const char *fidstr, char *buf,
4524                    int buflen, long long *recno, int *linkno)
4525 {
4526         const char *fidstr_orig = fidstr;
4527         struct lu_fid fid;
4528         struct getinfo_fid2path *gf;
4529         int rc;
4530
4531         while (*fidstr == '[')
4532                 fidstr++;
4533
4534         sscanf(fidstr, SFID, RFID(&fid));
4535         if (!fid_is_sane(&fid)) {
4536                 llapi_err_noerrno(LLAPI_MSG_ERROR,
4537                                   "bad FID format '%s', should be [seq:oid:ver]"
4538                                   " (e.g. "DFID")\n", fidstr_orig,
4539                                   (unsigned long long)FID_SEQ_NORMAL, 2, 0);
4540                 return -EINVAL;
4541         }
4542
4543         gf = malloc(sizeof(*gf) + buflen);
4544         if (gf == NULL)
4545                 return -ENOMEM;
4546
4547         gf->gf_fid = fid;
4548         gf->gf_recno = *recno;
4549         gf->gf_linkno = *linkno;
4550         gf->gf_pathlen = buflen;
4551
4552         /* Take path or fsname */
4553         rc = root_ioctl(device, OBD_IOC_FID2PATH, gf, NULL, 0);
4554         if (rc)
4555                 goto out_free;
4556
4557         memcpy(buf, gf->gf_u.gf_path, gf->gf_pathlen);
4558         if (buf[0] == '\0') { /* ROOT path */
4559                 buf[0] = '/';
4560                 buf[1] = '\0';
4561         }
4562         *recno = gf->gf_recno;
4563         *linkno = gf->gf_linkno;
4564
4565 out_free:
4566         free(gf);
4567         return rc;
4568 }
4569
4570 static int fid_from_lma(const char *path, const int fd, lustre_fid *fid)
4571 {
4572         char                     buf[512];
4573         struct lustre_mdt_attrs *lma;
4574         int                      rc;
4575
4576         if (path == NULL)
4577                 rc = fgetxattr(fd, XATTR_NAME_LMA, buf, sizeof(buf));
4578         else
4579                 rc = lgetxattr(path, XATTR_NAME_LMA, buf, sizeof(buf));
4580         if (rc < 0)
4581                 return -errno;
4582         lma = (struct lustre_mdt_attrs *)buf;
4583         fid_le_to_cpu(fid, &lma->lma_self_fid);
4584         return 0;
4585 }
4586
4587 int llapi_get_mdt_index_by_fid(int fd, const lustre_fid *fid,
4588                                int *mdt_index)
4589 {
4590         int     rc;
4591
4592         rc = ioctl(fd, LL_IOC_FID2MDTIDX, fid);
4593         if (rc < 0)
4594                 return -errno;
4595
4596         *mdt_index = rc;
4597
4598         return rc;
4599 }
4600
4601 int llapi_fd2fid(const int fd, lustre_fid *fid)
4602 {
4603         int rc;
4604
4605         memset(fid, 0, sizeof(*fid));
4606
4607         rc = ioctl(fd, LL_IOC_PATH2FID, fid) < 0 ? -errno : 0;
4608         if (rc == -EINVAL || rc == -ENOTTY)
4609                 rc = fid_from_lma(NULL, fd, fid);
4610
4611         return rc;
4612 }
4613
4614 int llapi_path2fid(const char *path, lustre_fid *fid)
4615 {
4616         int fd, rc;
4617
4618         memset(fid, 0, sizeof(*fid));
4619         fd = open(path, O_RDONLY | O_NONBLOCK | O_NOFOLLOW);
4620         if (fd < 0) {
4621                 if (errno == ELOOP || errno == ENXIO)
4622                         return fid_from_lma(path, -1, fid);
4623                 return -errno;
4624         }
4625
4626         rc = llapi_fd2fid(fd, fid);
4627         if (rc == -EINVAL || rc == -ENOTTY)
4628                 rc = fid_from_lma(path, -1, fid);
4629
4630         close(fd);
4631         return rc;
4632 }
4633
4634 int llapi_fd2parent(int fd, unsigned int linkno, lustre_fid *parent_fid,
4635                     char *name, size_t name_size)
4636 {
4637         struct getparent        *gp;
4638         int                      rc;
4639
4640         gp = malloc(sizeof(*gp) + name_size);
4641         if (gp == NULL)
4642                 return -ENOMEM;
4643
4644         gp->gp_linkno = linkno;
4645         gp->gp_name_size = name_size;
4646
4647         rc = ioctl(fd, LL_IOC_GETPARENT, gp);
4648         if (rc < 0) {
4649                 rc = -errno;
4650                 goto err_free;
4651         }
4652
4653         *parent_fid = gp->gp_fid;
4654
4655         strncpy(name, gp->gp_name, name_size);
4656         name[name_size - 1] = '\0';
4657
4658 err_free:
4659         free(gp);
4660         return rc;
4661 }
4662
4663 int llapi_path2parent(const char *path, unsigned int linkno,
4664                       lustre_fid *parent_fid, char *name, size_t name_size)
4665 {
4666         int     fd;
4667         int     rc;
4668
4669         fd = open(path, O_RDONLY | O_NONBLOCK | O_NOFOLLOW);
4670         if (fd < 0)
4671                 return -errno;
4672
4673         rc = llapi_fd2parent(fd, linkno, parent_fid, name, name_size);
4674         close(fd);
4675         return rc;
4676 }
4677
4678 int llapi_get_connect_flags(const char *mnt, __u64 *flags)
4679 {
4680         int root;
4681         int rc;
4682
4683         root = open(mnt, O_RDONLY | O_DIRECTORY);
4684         if (root < 0) {
4685                 rc = -errno;
4686                 llapi_error(LLAPI_MSG_ERROR, rc, "open %s failed", mnt);
4687                 return rc;
4688         }
4689
4690         rc = ioctl(root, LL_IOC_GET_CONNECT_FLAGS, flags);
4691         if (rc < 0) {
4692                 rc = -errno;
4693                 llapi_error(LLAPI_MSG_ERROR, rc,
4694                         "ioctl on %s for getting connect flags failed", mnt);
4695         }
4696         close(root);
4697         return rc;
4698 }
4699
4700 /**
4701  * Get a 64-bit value representing the version of file data pointed by fd.
4702  *
4703  * Each write or truncate, flushed on OST, will change this value. You can use
4704  * this value to verify if file data was modified. This only checks the file
4705  * data, not metadata.
4706  *
4707  * \param  flags  0: no flush pages, usually used it the process has already
4708  *                  taken locks;
4709  *                LL_DV_RD_FLUSH: OSTs will take LCK_PR to flush dirty pages
4710  *                  from clients;
4711  *                LL_DV_WR_FLUSH: OSTs will take LCK_PW to flush all caching
4712  *                  pages from clients.
4713  *
4714  * \retval 0 on success.
4715  * \retval -errno on error.
4716  */
4717 int llapi_get_data_version(int fd, __u64 *data_version, __u64 flags)
4718 {
4719         int rc;
4720         struct ioc_data_version idv;
4721
4722         idv.idv_flags = flags;
4723
4724         rc = ioctl(fd, LL_IOC_DATA_VERSION, &idv);
4725         if (rc)
4726                 rc = -errno;
4727         else
4728                 *data_version = idv.idv_version;
4729
4730         return rc;
4731 }
4732
4733 /*
4734  * Create a file without any name open it for read/write
4735  *
4736  * - file is created as if it were a standard file in the given \a directory
4737  * - file does not appear in \a directory and mtime does not change because
4738  *   the filename is handled specially by the Lustre MDS.
4739  * - file is removed at final close
4740  * - file modes are rw------- since it doesn't make sense to have a read-only
4741  *   or write-only file that cannot be opened again.
4742  * - if user wants another mode it must use fchmod() on the open file, no
4743  *   security problems arise because it cannot be opened by another process.
4744  *
4745  * \param[in]   directory       directory from which to inherit layout/MDT idx
4746  * \param[in]   idx             MDT index on which the file is created,
4747  *                              \a idx == -1 means no specific MDT is requested
4748  * \param[in]   open_flags      standard open(2) flags
4749  *
4750  * \retval      0 on success.
4751  * \retval      -errno on error.
4752  */
4753 int llapi_create_volatile_idx(char *directory, int idx, int open_flags)
4754 {
4755         char    file_path[PATH_MAX];
4756         char    filename[PATH_MAX];
4757         int     saved_errno = errno;
4758         int     fd;
4759         int     rnumber;
4760         int     rc;
4761
4762         do {
4763                 rnumber = random();
4764                 if (idx == -1)
4765                         snprintf(filename, sizeof(filename),
4766                                  LUSTRE_VOLATILE_HDR"::%.4X", rnumber);
4767                 else
4768                         snprintf(filename, sizeof(filename),
4769                                  LUSTRE_VOLATILE_HDR":%.4X:%.4X", idx, rnumber);
4770
4771                 rc = snprintf(file_path, sizeof(file_path),
4772                               "%s/%s", directory, filename);
4773                 if (rc >= sizeof(file_path))
4774                         return -E2BIG;
4775
4776                 fd = open(file_path,
4777                           O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW | open_flags,
4778                           S_IRUSR | S_IWUSR);
4779         } while (fd < 0 && errno == EEXIST);
4780
4781         if (fd < 0) {
4782                 llapi_error(LLAPI_MSG_ERROR, errno,
4783                             "Cannot create volatile file '%s' in '%s'",
4784                             filename + LUSTRE_VOLATILE_HDR_LEN,
4785                             directory);
4786                 return -errno;
4787         }
4788
4789         /* Unlink file in case this wasn't a Lustre filesystem and the
4790          * magic volatile filename wasn't handled as intended. The
4791          * effect is the same. If volatile open was supported then we
4792          * expect unlink() to return -ENOENT. */
4793         (void)unlink(file_path);
4794
4795         /* Since we are returning successfully we restore errno (and
4796          * mask out possible EEXIST from open() and ENOENT from
4797          * unlink(). */
4798         errno = saved_errno;
4799
4800         return fd;
4801 }
4802
4803 /**
4804  * Swap the layouts between 2 file descriptors
4805  * the 2 files must be open for writing
4806  * first fd received the ioctl, second fd is passed as arg
4807  * this is assymetric but avoid use of root path for ioctl
4808  */
4809 int llapi_fswap_layouts_grouplock(int fd1, int fd2, __u64 dv1, __u64 dv2,
4810                                   int gid, __u64 flags)
4811 {
4812         struct lustre_swap_layouts      lsl;
4813         struct stat                     st1;
4814         struct stat                     st2;
4815         int                             rc;
4816
4817         if (flags & (SWAP_LAYOUTS_KEEP_ATIME | SWAP_LAYOUTS_KEEP_MTIME)) {
4818                 rc = fstat(fd1, &st1);
4819                 if (rc < 0)
4820                         return -errno;
4821
4822                 rc = fstat(fd2, &st2);
4823                 if (rc < 0)
4824                         return -errno;
4825         }
4826         lsl.sl_fd = fd2;
4827         lsl.sl_flags = flags;
4828         lsl.sl_gid = gid;
4829         lsl.sl_dv1 = dv1;
4830         lsl.sl_dv2 = dv2;
4831         rc = ioctl(fd1, LL_IOC_LOV_SWAP_LAYOUTS, &lsl);
4832         if (rc < 0)
4833                 return -errno;
4834
4835         if (flags & (SWAP_LAYOUTS_KEEP_ATIME | SWAP_LAYOUTS_KEEP_MTIME)) {
4836                 struct timeval  tv1[2];
4837                 struct timeval  tv2[2];
4838
4839                 memset(tv1, 0, sizeof(tv1));
4840                 memset(tv2, 0, sizeof(tv2));
4841
4842                 if (flags & SWAP_LAYOUTS_KEEP_ATIME) {
4843                         tv1[0].tv_sec = st1.st_atime;
4844                         tv2[0].tv_sec = st2.st_atime;
4845                 } else {
4846                         tv1[0].tv_sec = st2.st_atime;
4847                         tv2[0].tv_sec = st1.st_atime;
4848                 }
4849
4850                 if (flags & SWAP_LAYOUTS_KEEP_MTIME) {
4851                         tv1[1].tv_sec = st1.st_mtime;
4852                         tv2[1].tv_sec = st2.st_mtime;
4853                 } else {
4854                         tv1[1].tv_sec = st2.st_mtime;
4855                         tv2[1].tv_sec = st1.st_mtime;
4856                 }
4857
4858                 rc = futimes(fd1, tv1);
4859                 if (rc < 0)
4860                         return -errno;
4861
4862                 rc = futimes(fd2, tv2);
4863                 if (rc < 0)
4864                         return -errno;
4865         }
4866
4867         return 0;
4868 }
4869
4870 int llapi_fswap_layouts(int fd1, int fd2, __u64 dv1, __u64 dv2, __u64 flags)
4871 {
4872         int     rc;
4873         int     grp_id;
4874
4875         do
4876                 grp_id = random();
4877         while (grp_id == 0);
4878
4879         rc = llapi_fswap_layouts_grouplock(fd1, fd2, dv1, dv2, grp_id, flags);
4880         if (rc < 0)
4881                 return rc;
4882
4883         return 0;
4884 }
4885
4886 /**
4887  * Swap the layouts between 2 files
4888  * the 2 files are open in write
4889  */
4890 int llapi_swap_layouts(const char *path1, const char *path2,
4891                        __u64 dv1, __u64 dv2, __u64 flags)
4892 {
4893         int     fd1, fd2, rc;
4894
4895         fd1 = open(path1, O_WRONLY | O_LOV_DELAY_CREATE);
4896         if (fd1 < 0) {
4897                 rc = -errno;
4898                 llapi_error(LLAPI_MSG_ERROR, rc,
4899                             "error: cannot open '%s' for write", path1);
4900                 goto out;
4901         }
4902
4903         fd2 = open(path2, O_WRONLY | O_LOV_DELAY_CREATE);
4904         if (fd2 < 0) {
4905                 rc = -errno;
4906                 llapi_error(LLAPI_MSG_ERROR, rc,
4907                             "error: cannot open '%s' for write", path2);
4908                 goto out_close;
4909         }
4910
4911         rc = llapi_fswap_layouts(fd1, fd2, dv1, dv2, flags);
4912         if (rc < 0)
4913                 llapi_error(LLAPI_MSG_ERROR, rc,
4914                             "error: cannot swap layout between '%s' and '%s'",
4915                             path1, path2);
4916
4917         close(fd2);
4918 out_close:
4919         close(fd1);
4920 out:
4921         return rc;
4922 }
4923
4924 /**
4925  * Attempt to open a file with Lustre file identifier \a fid
4926  * and return an open file descriptor.
4927  *
4928  * \param[in] lustre_dir        path within Lustre filesystem containing \a fid
4929  * \param[in] fid               Lustre file identifier of file to open
4930  * \param[in] flags             open() flags
4931  *
4932  * \retval                      non-negative file descriptor on successful open
4933  * \retval                      -1 if an error occurred
4934  */
4935 int llapi_open_by_fid(const char *lustre_dir, const lustre_fid *fid, int flags)
4936 {
4937         char mntdir[PATH_MAX];
4938         char path[PATH_MAX];
4939         int rc;
4940
4941         rc = llapi_search_mounts(lustre_dir, 0, mntdir, NULL);
4942         if (rc != 0)
4943                 return -1;
4944
4945         snprintf(path, sizeof(path), "%s/.lustre/fid/"DFID, mntdir, PFID(fid));
4946         return open(path, flags);
4947 }
4948
4949 /**
4950  * Take group lock.
4951  *
4952  * \param fd   File to lock.
4953  * \param gid  Group Identifier.
4954  *
4955  * \retval 0 on success.
4956  * \retval -errno on failure.
4957  */
4958 int llapi_group_lock(int fd, int gid)
4959 {
4960         int rc;
4961
4962         rc = ioctl(fd, LL_IOC_GROUP_LOCK, gid);
4963         if (rc < 0) {
4964                 rc = -errno;
4965                 llapi_error(LLAPI_MSG_ERROR, rc, "cannot get group lock");
4966         }
4967         return rc;
4968 }
4969
4970 /**
4971  * Put group lock.
4972  *
4973  * \param fd   File to unlock.
4974  * \param gid  Group Identifier.
4975  *
4976  * \retval 0 on success.
4977  * \retval -errno on failure.
4978  */
4979 int llapi_group_unlock(int fd, int gid)
4980 {
4981         int rc;
4982
4983         rc = ioctl(fd, LL_IOC_GROUP_UNLOCK, gid);
4984         if (rc < 0) {
4985                 rc = -errno;
4986                 llapi_error(LLAPI_MSG_ERROR, rc, "cannot put group lock");
4987         }
4988         return rc;
4989 }