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