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