Whamcloud - gitweb
LU-11783 build: remove lustre_user.h deprecation warning
[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                                      enum llapi_layout_verbose verbose,
2488                                      int depth, char *pool_name,
2489                                      enum lov_dump_flags flags)
2490 {
2491         bool is_dir = flags & LDF_IS_DIR;
2492         bool is_raw = flags & LDF_IS_RAW;
2493         bool indent = flags & LDF_INDENT;
2494         bool yaml = flags & LDF_YAML;
2495         bool skip_objs = flags & LDF_SKIP_OBJS;
2496         char *prefix = is_dir ? "" : "lmm_";
2497         char *separator = "";
2498         char *space = indent ? "      " : "";
2499         int rc;
2500
2501         if (is_dir && lmm_oi_seq(&lum->lmm_oi) == FID_SEQ_LOV_DEFAULT) {
2502                 lmm_oi_set_seq(&lum->lmm_oi, 0);
2503                 if (!indent && (verbose & VERBOSE_DETAIL))
2504                         llapi_printf(LLAPI_MSG_NORMAL, "%s(Default) ", space);
2505         }
2506
2507         if (!yaml && !indent && depth && path &&
2508             ((verbose != VERBOSE_OBJID) || !is_dir))
2509                 llapi_printf(LLAPI_MSG_NORMAL, "%s\n", path);
2510
2511         if ((verbose & VERBOSE_DETAIL) && !is_dir) {
2512                 llapi_printf(LLAPI_MSG_NORMAL, "%s%smagic:         0x%08X\n",
2513                              space, prefix, lum->lmm_magic);
2514                 llapi_printf(LLAPI_MSG_NORMAL, "%s%sseq:           %#jx\n",
2515                              space, prefix,
2516                              (uintmax_t)lmm_oi_seq(&lum->lmm_oi));
2517                 llapi_printf(LLAPI_MSG_NORMAL, "%s%sobject_id:     %#jx\n",
2518                              space, prefix,
2519                              (uintmax_t)lmm_oi_id(&lum->lmm_oi));
2520         }
2521         if ((verbose & (VERBOSE_DETAIL | VERBOSE_DFID)) && !is_dir) {
2522                 __u64 seq;
2523                 __u32 oid;
2524                 __u32 ver;
2525
2526                 if (verbose & ~VERBOSE_DFID)
2527                         llapi_printf(LLAPI_MSG_NORMAL, "%slmm_fid:           ",
2528                                      space);
2529                 /* This needs a bit of hand-holding since old 1.x lmm_oi
2530                  * have { oi.oi_id = mds_inum, oi.oi_seq = 0 } and 2.x lmm_oi
2531                  * have { oi.oi_id = mds_oid, oi.oi_seq = mds_seq } instead of
2532                  * a real FID.  Ideally the 2.x code would have stored this
2533                  * like a FID with { oi_id = mds_seq, oi_seq = mds_oid } so the
2534                  * ostid union lu_fid { f_seq = mds_seq, f_oid = mds_oid }
2535                  * worked properly (especially since IGIF FIDs use mds_inum as
2536                  * the FID SEQ), but unfortunately that didn't happen.
2537                  *
2538                  * Print it to look like an IGIF FID, even though the fields
2539                  * are reversed on disk, so that it makes sense to userspace.
2540                  *
2541                  * Don't use ostid_id() and ostid_seq(), since they assume the
2542                  * oi_fid fields are in the right order.  This is why there are
2543                  * separate lmm_oi_seq() and lmm_oi_id() routines for this.
2544                  *
2545                  * For newer layout types hopefully this will be a real FID. */
2546                 seq = lmm_oi_seq(&lum->lmm_oi) == 0 ?
2547                         lmm_oi_id(&lum->lmm_oi) : lmm_oi_seq(&lum->lmm_oi);
2548                 oid = lmm_oi_seq(&lum->lmm_oi) == 0 ?
2549                         0 : (__u32)lmm_oi_id(&lum->lmm_oi);
2550                 ver = (__u32)(lmm_oi_id(&lum->lmm_oi) >> 32);
2551                 if (yaml)
2552                         llapi_printf(LLAPI_MSG_NORMAL, DFID_NOBRACE"\n",
2553                                      seq, oid, ver);
2554                 else
2555                         llapi_printf(LLAPI_MSG_NORMAL, DFID"\n",
2556                                      seq, oid, ver);
2557         }
2558
2559         if (verbose & VERBOSE_STRIPE_COUNT) {
2560                 if (verbose & ~VERBOSE_STRIPE_COUNT)
2561                         llapi_printf(LLAPI_MSG_NORMAL, "%s%sstripe_count:  ",
2562                                      space, prefix);
2563                 if (is_dir) {
2564                         if (!is_raw && lum->lmm_stripe_count == 0 &&
2565                             lov_pattern(lum->lmm_pattern) != LOV_PATTERN_MDT) {
2566                                 unsigned int scount;
2567                                 rc = sattr_cache_get_defaults(NULL, path,
2568                                                               &scount, NULL,
2569                                                               NULL);
2570                                 if (rc == 0)
2571                                         llapi_printf(LLAPI_MSG_NORMAL, "%d",
2572                                                      scount);
2573                                 else
2574                                         llapi_error(LLAPI_MSG_ERROR, rc,
2575                                                     "Cannot determine default"
2576                                                     " stripe count.");
2577                         } else {
2578                                 llapi_printf(LLAPI_MSG_NORMAL, "%d",
2579                                              lum->lmm_stripe_count ==
2580                                              (typeof(lum->lmm_stripe_count))(-1)
2581                                              ? -1 : lum->lmm_stripe_count);
2582                         }
2583                 } else {
2584                         llapi_printf(LLAPI_MSG_NORMAL, "%hd",
2585                                      (__s16)lum->lmm_stripe_count);
2586                 }
2587                 if (!yaml && is_dir)
2588                         separator = " ";
2589                 else
2590                         separator = "\n";
2591         }
2592
2593         if (verbose & VERBOSE_STRIPE_SIZE) {
2594                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2595                 if (verbose & ~VERBOSE_STRIPE_SIZE)
2596                         llapi_printf(LLAPI_MSG_NORMAL, "%s%sstripe_size:   ",
2597                                      space, prefix);
2598                 if (is_dir && !is_raw && lum->lmm_stripe_size == 0) {
2599                         unsigned int ssize;
2600                         rc = sattr_cache_get_defaults(NULL, path, NULL, &ssize,
2601                                                       NULL);
2602                         if (rc == 0)
2603                                 llapi_printf(LLAPI_MSG_NORMAL, "%u", ssize);
2604                         else
2605                                 llapi_error(LLAPI_MSG_ERROR, rc,
2606                                             "Cannot determine default"
2607                                             " stripe size.");
2608                 } else {
2609                         llapi_printf(LLAPI_MSG_NORMAL, "%u",
2610                                      lum->lmm_stripe_size);
2611                 }
2612                 if (!yaml && is_dir)
2613                         separator = " ";
2614                 else
2615                         separator = "\n";
2616         }
2617
2618         if ((verbose & VERBOSE_PATTERN)) {
2619                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2620                 if (verbose & ~VERBOSE_PATTERN)
2621                         llapi_printf(LLAPI_MSG_NORMAL, "%s%spattern:       ",
2622                                      space, prefix);
2623                 if (lov_pattern_supported(lum->lmm_pattern))
2624                         llapi_printf(LLAPI_MSG_NORMAL, "%s",
2625                                      layout2name(lum->lmm_pattern));
2626                 else
2627                         llapi_printf(LLAPI_MSG_NORMAL, "%x", lum->lmm_pattern);
2628                 separator = (!yaml && is_dir) ? " " : "\n";
2629         }
2630
2631         if ((verbose & VERBOSE_GENERATION) && !is_dir) {
2632                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2633                 if (verbose & ~VERBOSE_GENERATION)
2634                         llapi_printf(LLAPI_MSG_NORMAL, "%s%slayout_gen:    ",
2635                                      space, prefix);
2636                 llapi_printf(LLAPI_MSG_NORMAL, "%u",
2637                              skip_objs ? 0 : (int)lum->lmm_layout_gen);
2638                 separator = "\n";
2639         }
2640
2641         if (verbose & VERBOSE_STRIPE_OFFSET) {
2642                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2643                 if (verbose & ~VERBOSE_STRIPE_OFFSET)
2644                         llapi_printf(LLAPI_MSG_NORMAL, "%s%sstripe_offset: ",
2645                                      space, prefix);
2646                 if (is_dir || skip_objs)
2647                         llapi_printf(LLAPI_MSG_NORMAL, "%d",
2648                                      lum->lmm_stripe_offset ==
2649                                      (typeof(lum->lmm_stripe_offset))(-1) ? -1 :
2650                                      lum->lmm_stripe_offset);
2651                 else if (lov_pattern(lum->lmm_pattern) == LOV_PATTERN_MDT)
2652                         llapi_printf(LLAPI_MSG_NORMAL, "0");
2653                 else
2654                         llapi_printf(LLAPI_MSG_NORMAL, "%u",
2655                                      objects[0].l_ost_idx);
2656                 if (!yaml && is_dir)
2657                         separator = " ";
2658                 else
2659                         separator = "\n";
2660         }
2661
2662         if ((verbose & VERBOSE_POOL) && pool_name && (pool_name[0] != '\0')) {
2663                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2664                 if (verbose & ~VERBOSE_POOL)
2665                         llapi_printf(LLAPI_MSG_NORMAL, "%s%spool:          ",
2666                                      space, prefix);
2667                 llapi_printf(LLAPI_MSG_NORMAL, "%s", pool_name);
2668                 if (!yaml && is_dir)
2669                         separator = " ";
2670                 else
2671                         separator = "\n";
2672         }
2673
2674         if (strlen(separator) != 0)
2675                 llapi_printf(LLAPI_MSG_NORMAL, "\n");
2676 }
2677
2678 void lov_dump_user_lmm_v1v3(struct lov_user_md *lum, char *pool_name,
2679                             struct lov_user_ost_data_v1 *objects,
2680                             char *path, int obdindex, int depth,
2681                             enum llapi_layout_verbose verbose,
2682                             enum lov_dump_flags flags)
2683 {
2684         bool is_dir = flags & LDF_IS_DIR;
2685         bool indent = flags & LDF_INDENT;
2686         bool skip_objs = flags & LDF_SKIP_OBJS;
2687         bool yaml = flags & LDF_YAML;
2688         bool obdstripe = obdindex == OBD_NOT_FOUND;
2689         int i;
2690
2691         if (!obdstripe && !skip_objs) {
2692                 for (i = 0; !is_dir && i < lum->lmm_stripe_count; i++) {
2693                         if (obdindex == objects[i].l_ost_idx) {
2694                                 obdstripe = true;
2695                                 break;
2696                         }
2697                 }
2698         }
2699
2700         if (!obdstripe)
2701                 return;
2702
2703         lov_dump_user_lmm_header(lum, path, objects, verbose, depth, pool_name,
2704                                  flags);
2705
2706         if (!is_dir && !skip_objs && (verbose & VERBOSE_OBJID) &&
2707             !(lum->lmm_pattern & LOV_PATTERN_F_RELEASED ||
2708               lov_pattern(lum->lmm_pattern) == LOV_PATTERN_MDT)) {
2709                 char *space = "      - ";
2710
2711                 if (indent)
2712                         llapi_printf(LLAPI_MSG_NORMAL,
2713                                      "%6slmm_objects:\n", " ");
2714                 else if (yaml)
2715                         llapi_printf(LLAPI_MSG_NORMAL, "lmm_objects:\n");
2716                 else
2717                         llapi_printf(LLAPI_MSG_NORMAL,
2718                                 "\tobdidx\t\t objid\t\t objid\t\t group\n");
2719
2720                 for (i = 0; i < lum->lmm_stripe_count; i++) {
2721                         int idx = objects[i].l_ost_idx;
2722                         long long oid = ostid_id(&objects[i].l_ost_oi);
2723                         long long gr = ostid_seq(&objects[i].l_ost_oi);
2724
2725                         if (obdindex != OBD_NOT_FOUND && obdindex != idx)
2726                                 continue;
2727
2728                         if (yaml) {
2729                                 struct lu_fid fid = { 0 };
2730
2731                                 ostid_to_fid(&fid, &objects[i].l_ost_oi, idx);
2732                                 llapi_printf(LLAPI_MSG_NORMAL,
2733                                     "%sl_ost_idx: %d\n", space, idx);
2734                                 llapi_printf(LLAPI_MSG_NORMAL,
2735                                     "%8sl_fid:     "DFID_NOBRACE"\n",
2736                                     " ", PFID(&fid));
2737                         } else if (indent) {
2738                                 struct lu_fid fid = { 0 };
2739
2740                                 ostid_to_fid(&fid, &objects[i].l_ost_oi, idx);
2741                                 llapi_printf(LLAPI_MSG_NORMAL,
2742                                     "%s%d: { l_ost_idx: %d, l_fid: "DFID" }\n",
2743                                     space, i, idx, PFID(&fid));
2744                         } else {
2745                                 char fmt[48];
2746                                 sprintf(fmt, "%s%s%s\n",
2747                                         "\t%6u\t%14llu\t%#13llx\t",
2748                                         (fid_seq_is_rsvd(gr) ||
2749                                          fid_seq_is_mdt0(gr)) ?
2750                                          "%14llu" : "%#14llx", "%s");
2751                                 llapi_printf(LLAPI_MSG_NORMAL, fmt, idx, oid,
2752                                              oid, gr,
2753                                              obdindex == idx ? " *" : "");
2754                         }
2755                 }
2756         }
2757         llapi_printf(LLAPI_MSG_NORMAL, "\n");
2758 }
2759
2760 void lmv_dump_user_lmm(struct lmv_user_md *lum, char *pool_name,
2761                        char *path, int obdindex, int depth,
2762                        enum llapi_layout_verbose verbose,
2763                        enum lov_dump_flags flags)
2764 {
2765         struct lmv_user_mds_data *objects = lum->lum_objects;
2766         char *prefix = lum->lum_magic == LMV_USER_MAGIC ? "(Default)" : "";
2767         char *separator = "";
2768         bool yaml = flags & LDF_YAML;
2769         bool obdstripe = false;
2770         int i;
2771
2772         if (obdindex != OBD_NOT_FOUND) {
2773                 if (lum->lum_stripe_count == 0) {
2774                         if (obdindex == lum->lum_stripe_offset)
2775                                 obdstripe = true;
2776                 } else {
2777                         for (i = 0; i < lum->lum_stripe_count; i++) {
2778                                 if (obdindex == objects[i].lum_mds) {
2779                                         llapi_printf(LLAPI_MSG_NORMAL,
2780                                                      "%s%s\n", prefix,
2781                                                      path);
2782                                         obdstripe = true;
2783                                         break;
2784                                 }
2785                         }
2786                 }
2787         } else {
2788                 obdstripe = true;
2789         }
2790
2791         if (!obdstripe)
2792                 return;
2793
2794         /* show all information default */
2795         if (!verbose) {
2796                 if (lum->lum_magic == LMV_USER_MAGIC)
2797                         verbose = VERBOSE_POOL | VERBOSE_STRIPE_COUNT |
2798                                   VERBOSE_STRIPE_OFFSET | VERBOSE_HASH_TYPE;
2799                 else
2800                         verbose = VERBOSE_OBJID;
2801         }
2802
2803         if (depth && path && ((verbose != VERBOSE_OBJID)))
2804                 llapi_printf(LLAPI_MSG_NORMAL, "%s%s\n", prefix, path);
2805
2806         if (verbose & VERBOSE_STRIPE_COUNT) {
2807                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2808                 if (verbose & ~VERBOSE_STRIPE_COUNT)
2809                         llapi_printf(LLAPI_MSG_NORMAL, "lmv_stripe_count: ");
2810                 llapi_printf(LLAPI_MSG_NORMAL, "%u",
2811                              (int)lum->lum_stripe_count);
2812                 if ((verbose & VERBOSE_STRIPE_OFFSET) && !yaml)
2813                         separator = " ";
2814                 else
2815                         separator = "\n";
2816         }
2817
2818         if (verbose & VERBOSE_STRIPE_OFFSET) {
2819                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2820                 if (verbose & ~VERBOSE_STRIPE_OFFSET)
2821                         llapi_printf(LLAPI_MSG_NORMAL, "lmv_stripe_offset: ");
2822                 llapi_printf(LLAPI_MSG_NORMAL, "%d",
2823                              (int)lum->lum_stripe_offset);
2824                 if (verbose & VERBOSE_HASH_TYPE && !yaml)
2825                         separator = " ";
2826                 else
2827                         separator = "\n";
2828         }
2829
2830         if (verbose & VERBOSE_HASH_TYPE) {
2831                 unsigned int type = lum->lum_hash_type & LMV_HASH_TYPE_MASK;
2832                 unsigned int flags = lum->lum_hash_type & ~LMV_HASH_TYPE_MASK;
2833
2834                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2835                 if (verbose & ~VERBOSE_HASH_TYPE)
2836                         llapi_printf(LLAPI_MSG_NORMAL, "lmv_hash_type: ");
2837                 if (type < LMV_HASH_TYPE_MAX)
2838                         llapi_printf(LLAPI_MSG_NORMAL, "%s",
2839                                      mdt_hash_name[type]);
2840                 else
2841                         llapi_printf(LLAPI_MSG_NORMAL, "%#x", type);
2842
2843                 if (flags & LMV_HASH_FLAG_MIGRATION)
2844                         llapi_printf(LLAPI_MSG_NORMAL, ",migrating");
2845                 if (flags & LMV_HASH_FLAG_DEAD)
2846                         llapi_printf(LLAPI_MSG_NORMAL, ",dead");
2847                 if (flags & LMV_HASH_FLAG_BAD_TYPE)
2848                         llapi_printf(LLAPI_MSG_NORMAL, ",bad_type");
2849                 if (flags & LMV_HASH_FLAG_LOST_LMV)
2850                         llapi_printf(LLAPI_MSG_NORMAL, ",lost_lmv");
2851                 separator = "\n";
2852
2853         }
2854
2855         if (verbose & VERBOSE_OBJID && lum->lum_magic != LMV_USER_MAGIC) {
2856                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2857                 if (lum->lum_stripe_count > 0)
2858                         llapi_printf(LLAPI_MSG_NORMAL,
2859                                      "mdtidx\t\t FID[seq:oid:ver]\n");
2860                 for (i = 0; i < lum->lum_stripe_count; i++) {
2861                         int idx = objects[i].lum_mds;
2862                         struct lu_fid *fid = &objects[i].lum_fid;
2863                         if ((obdindex == OBD_NOT_FOUND) || (obdindex == idx))
2864                                 llapi_printf(LLAPI_MSG_NORMAL,
2865                                              "%6u\t\t "DFID"\t\t%s\n",
2866                                             idx, PFID(fid),
2867                                             obdindex == idx ? " *" : "");
2868                 }
2869
2870         }
2871
2872         if ((verbose & VERBOSE_POOL) && pool_name != NULL &&
2873              pool_name[0] != '\0') {
2874                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2875                 if (verbose & ~VERBOSE_POOL)
2876                         llapi_printf(LLAPI_MSG_NORMAL, "%slmv_pool:           ",
2877                                      prefix);
2878                 llapi_printf(LLAPI_MSG_NORMAL, "%s%c ", pool_name, ' ');
2879                 separator = "\n";
2880         }
2881
2882         if (!(verbose & VERBOSE_OBJID) || lum->lum_magic == LMV_USER_MAGIC)
2883                 llapi_printf(LLAPI_MSG_NORMAL, "\n");
2884 }
2885
2886 static void lov_dump_comp_v1_header(struct find_param *param, char *path,
2887                                     enum lov_dump_flags flags)
2888 {
2889         struct lov_comp_md_v1 *comp_v1 = (void *)&param->fp_lmd->lmd_lmm;
2890         int depth = param->fp_max_depth;
2891         enum llapi_layout_verbose verbose = param->fp_verbose;
2892         bool yaml = flags & LDF_YAML;
2893
2894         if (depth && path && ((verbose != VERBOSE_OBJID) ||
2895                               !(flags & LDF_IS_DIR)) && !yaml)
2896                 llapi_printf(LLAPI_MSG_NORMAL, "%s\n", path);
2897
2898         if (verbose & VERBOSE_DETAIL) {
2899                 llapi_printf(LLAPI_MSG_NORMAL, "composite_header:\n");
2900                 llapi_printf(LLAPI_MSG_NORMAL, "%2slcm_magic:         0x%08X\n",
2901                              " ", comp_v1->lcm_magic);
2902                 llapi_printf(LLAPI_MSG_NORMAL, "%2slcm_size:          %u\n",
2903                              " ", comp_v1->lcm_size);
2904                 if (flags & LDF_IS_DIR)
2905                         llapi_printf(LLAPI_MSG_NORMAL,
2906                                      "%2slcm_flags:         %s\n", " ",
2907                                      comp_v1->lcm_mirror_count > 0 ?
2908                                                         "mirrored" : "");
2909                 else
2910                         llapi_printf(LLAPI_MSG_NORMAL,
2911                                      "%2slcm_flags:         %s\n", " ",
2912                                 llapi_layout_flags_string(comp_v1->lcm_flags));
2913         }
2914
2915         if (verbose & VERBOSE_GENERATION) {
2916                 if (verbose & ~VERBOSE_GENERATION)
2917                         llapi_printf(LLAPI_MSG_NORMAL, "%2slcm_layout_gen:    ",
2918                                      " ");
2919                 llapi_printf(LLAPI_MSG_NORMAL, "%u\n", comp_v1->lcm_layout_gen);
2920         }
2921
2922         if (verbose & VERBOSE_MIRROR_COUNT) {
2923                 if (verbose & ~VERBOSE_MIRROR_COUNT)
2924                         llapi_printf(LLAPI_MSG_NORMAL, "%2slcm_mirror_count:  ",
2925                                      " ");
2926                 llapi_printf(LLAPI_MSG_NORMAL, "%u\n",
2927                              comp_v1->lcm_magic == LOV_USER_MAGIC_COMP_V1 ?
2928                              comp_v1->lcm_mirror_count + 1 : 1);
2929         }
2930
2931         if (verbose & VERBOSE_COMP_COUNT) {
2932                 if (verbose & ~VERBOSE_COMP_COUNT)
2933                         llapi_printf(LLAPI_MSG_NORMAL, "%2slcm_entry_count:   ",
2934                                      " ");
2935                 llapi_printf(LLAPI_MSG_NORMAL, "%u\n",
2936                              comp_v1->lcm_magic == LOV_USER_MAGIC_COMP_V1 ?
2937                              comp_v1->lcm_entry_count : 0);
2938         }
2939
2940         if (verbose & VERBOSE_DETAIL && !yaml)
2941                 llapi_printf(LLAPI_MSG_NORMAL, "components:\n");
2942 }
2943
2944 static void lcme_flags2str(__u32 comp_flags)
2945 {
2946         bool found = false;
2947         int i = 0;
2948
2949         if (!comp_flags) {
2950                 llapi_printf(LLAPI_MSG_NORMAL, "0");
2951                 return;
2952         }
2953         for (i = 0; i < ARRAY_SIZE(comp_flags_table); i++) {
2954                 if (comp_flags & comp_flags_table[i].cfn_flag) {
2955                         if (found)
2956                                 llapi_printf(LLAPI_MSG_NORMAL, ",");
2957                         llapi_printf(LLAPI_MSG_NORMAL, "%s",
2958                                      comp_flags_table[i].cfn_name);
2959                         comp_flags &= ~comp_flags_table[i].cfn_flag;
2960                         found = true;
2961                 }
2962         }
2963         if (comp_flags) {
2964                 if (found)
2965                         llapi_printf(LLAPI_MSG_NORMAL, ",");
2966                 llapi_printf(LLAPI_MSG_NORMAL, "%#x", comp_flags);
2967         }
2968 }
2969
2970 static void lov_dump_comp_v1_entry(struct find_param *param,
2971                                    enum lov_dump_flags flags, int index)
2972 {
2973         struct lov_comp_md_v1 *comp_v1 = (void *)&param->fp_lmd->lmd_lmm;
2974         struct lov_comp_md_entry_v1 *entry;
2975         char *separator = "";
2976         enum llapi_layout_verbose verbose = param->fp_verbose;
2977         bool yaml = flags & LDF_YAML;
2978
2979         entry = &comp_v1->lcm_entries[index];
2980
2981         if (yaml)
2982                 llapi_printf(LLAPI_MSG_NORMAL, "%2scomponent%d:\n", " ", index);
2983
2984         if (verbose & VERBOSE_COMP_ID) {
2985                 if (verbose & VERBOSE_DETAIL && !yaml)
2986                         llapi_printf(LLAPI_MSG_NORMAL,
2987                                      "%slcme_id:             ", "  - ");
2988                 else if (verbose & ~VERBOSE_COMP_ID)
2989                         llapi_printf(LLAPI_MSG_NORMAL,
2990                                      "%4slcme_id:             ", " ");
2991                 if (entry->lcme_id != LCME_ID_INVAL)
2992                         llapi_printf(LLAPI_MSG_NORMAL, "%u", entry->lcme_id);
2993                 else
2994                         llapi_printf(LLAPI_MSG_NORMAL, "N/A");
2995                 separator = "\n";
2996         }
2997
2998         if (verbose & VERBOSE_MIRROR_ID) {
2999                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
3000                 if (verbose & ~VERBOSE_MIRROR_ID)
3001                         llapi_printf(LLAPI_MSG_NORMAL,
3002                                      "%4slcme_mirror_id:      ", " ");
3003                 if (entry->lcme_id != LCME_ID_INVAL)
3004                         llapi_printf(LLAPI_MSG_NORMAL, "%u",
3005                                      mirror_id_of(entry->lcme_id));
3006                 else
3007                         llapi_printf(LLAPI_MSG_NORMAL, "N/A");
3008                 separator = "\n";
3009         }
3010
3011         if (verbose & VERBOSE_COMP_FLAGS) {
3012                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
3013                 if (verbose & ~VERBOSE_COMP_FLAGS)
3014                         llapi_printf(LLAPI_MSG_NORMAL,
3015                                      "%4slcme_flags:          ", " ");
3016                 lcme_flags2str(entry->lcme_flags);
3017                 separator = "\n";
3018         }
3019         /* print snapshot timestamp if its a nosync comp */
3020         if ((verbose & VERBOSE_COMP_FLAGS) &&
3021             (entry->lcme_flags & LCME_FL_NOSYNC)) {
3022                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
3023                 if (verbose & ~VERBOSE_COMP_FLAGS)
3024                         llapi_printf(LLAPI_MSG_NORMAL,
3025                                      "%4slcme_timestamp:      ", " ");
3026                 if (yaml) {
3027                         llapi_printf(LLAPI_MSG_NORMAL, "%llu",
3028                                                         entry->lcme_timestamp);
3029                 } else {
3030                         time_t stamp = entry->lcme_timestamp;
3031                         char *date_str = asctime(localtime(&stamp));
3032
3033                         date_str[strlen(date_str) - 1] = '\0';
3034                         llapi_printf(LLAPI_MSG_NORMAL, "'%s'", date_str);
3035                 }
3036
3037                 separator = "\n";
3038         }
3039
3040         if (verbose & VERBOSE_COMP_START) {
3041                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
3042                 if (verbose & ~VERBOSE_COMP_START)
3043                         llapi_printf(LLAPI_MSG_NORMAL,
3044                                      "%4slcme_extent.e_start: ", " ");
3045                 llapi_printf(LLAPI_MSG_NORMAL, "%llu",
3046                              entry->lcme_extent.e_start);
3047                 separator = "\n";
3048         }
3049
3050         if (verbose & VERBOSE_COMP_END) {
3051                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
3052                 if (verbose & ~VERBOSE_COMP_END)
3053                         llapi_printf(LLAPI_MSG_NORMAL,
3054                                      "%4slcme_extent.e_end:   ", " ");
3055                 if (entry->lcme_extent.e_end == LUSTRE_EOF)
3056                         llapi_printf(LLAPI_MSG_NORMAL, "%s", "EOF");
3057                 else
3058                         llapi_printf(LLAPI_MSG_NORMAL, "%llu",
3059                                         entry->lcme_extent.e_end);
3060                 separator = "\n";
3061         }
3062
3063         if (yaml) {
3064                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
3065                 llapi_printf(LLAPI_MSG_NORMAL, "%4ssub_layout:\n", " ");
3066         } else if (verbose & VERBOSE_DETAIL) {
3067                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
3068                 llapi_printf(LLAPI_MSG_NORMAL, "%4slcme_offset:         %u\n",
3069                              " ", entry->lcme_offset);
3070                 llapi_printf(LLAPI_MSG_NORMAL, "%4slcme_size:           %u\n",
3071                              " ", entry->lcme_size);
3072                 llapi_printf(LLAPI_MSG_NORMAL, "%4ssub_layout:\n", " ");
3073         } else {
3074                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
3075         }
3076 }
3077
3078 /* Check if the value matches 1 of the given criteria (e.g. --atime +/-N).
3079  * @mds indicates if this is MDS timestamps and there are attributes on OSTs.
3080  *
3081  * The result is -1 if it does not match, 0 if not yet clear, 1 if matches.
3082  * The table below gives the answers for the specified parameters (value and
3083  * sign), 1st column is the answer for the MDS value, the 2nd is for the OST:
3084  * --------------------------------------
3085  * 1 | file > limit; sign > 0 | -1 / -1 |
3086  * 2 | file = limit; sign > 0 | -1 / -1 |
3087  * 3 | file < limit; sign > 0 |  ? /  1 |
3088  * 4 | file > limit; sign = 0 | -1 / -1 |
3089  * 5 | file = limit; sign = 0 |  ? /  1 |  <- (see the Note below)
3090  * 6 | file < limit; sign = 0 |  ? / -1 |
3091  * 7 | file > limit; sign < 0 |  1 /  1 |
3092  * 8 | file = limit; sign < 0 |  ? / -1 |
3093  * 9 | file < limit; sign < 0 |  ? / -1 |
3094  * --------------------------------------
3095  * Note: 5th actually means that the value is within the interval
3096  * (limit - margin, limit]. */
3097 static int find_value_cmp(unsigned long long file, unsigned long long limit,
3098                           int sign, int negopt, unsigned long long margin,
3099                           int mds)
3100 {
3101         int ret = -1;
3102
3103         if (sign > 0) {
3104                 /* Drop the fraction of margin (of days). */
3105                 if (file + margin <= limit)
3106                         ret = mds ? 0 : 1;
3107         } else if (sign == 0) {
3108                 if (file <= limit && file + margin > limit)
3109                         ret = mds ? 0 : 1;
3110                 else if (file + margin <= limit)
3111                         ret = mds ? 0 : -1;
3112         } else if (sign < 0) {
3113                 if (file > limit)
3114                         ret = 1;
3115                 else if (mds)
3116                         ret = 0;
3117         }
3118
3119         return negopt ? ~ret + 1 : ret;
3120 }
3121
3122 static inline struct lov_user_md *
3123 lov_comp_entry(struct lov_comp_md_v1 *comp_v1, int ent_idx)
3124 {
3125         return (struct lov_user_md *)((char *)comp_v1 +
3126                         comp_v1->lcm_entries[ent_idx].lcme_offset);
3127 }
3128
3129 static inline struct lov_user_ost_data_v1 *
3130 lov_v1v3_objects(struct lov_user_md *v1)
3131 {
3132         if (v1->lmm_magic == LOV_USER_MAGIC_V3)
3133                 return ((struct lov_user_md_v3 *)v1)->lmm_objects;
3134         else
3135                 return v1->lmm_objects;
3136 }
3137
3138 static inline void
3139 lov_v1v3_pool_name(struct lov_user_md *v1, char *pool_name)
3140 {
3141         if (v1->lmm_magic == LOV_USER_MAGIC_V3)
3142                 snprintf(pool_name, LOV_MAXPOOLNAME, "%s",
3143                          ((struct lov_user_md_v3 *)v1)->lmm_pool_name);
3144         else
3145                 pool_name[0] = '\0';
3146 }
3147
3148 static inline bool
3149 print_last_init_comp(struct find_param *param)
3150 {
3151         /* print all component info */
3152         if ((param->fp_verbose & VERBOSE_DEFAULT) == VERBOSE_DEFAULT)
3153                 return false;
3154
3155         /* print specific component info */
3156         if (param->fp_check_comp_id || param->fp_check_comp_flags ||
3157             param->fp_check_comp_start || param->fp_check_comp_end ||
3158             param->fp_check_mirror_id || param->fp_check_mirror_index)
3159                 return false;
3160
3161         return true;
3162 }
3163
3164 static int find_comp_end_cmp(unsigned long long end, struct find_param *param)
3165 {
3166         int match;
3167
3168         if (param->fp_comp_end == LUSTRE_EOF) {
3169                 if (param->fp_comp_end_sign == 0) /* equal to EOF */
3170                         match = end == LUSTRE_EOF ? 1 : -1;
3171                 else if (param->fp_comp_end_sign > 0) /* at most EOF */
3172                         match = end == LUSTRE_EOF ? -1 : 1;
3173                 else /* at least EOF */
3174                         match = -1;
3175                 if (param->fp_exclude_comp_end)
3176                         match = ~match + 1;
3177         } else {
3178                 unsigned long long margin;
3179
3180                 margin = end == LUSTRE_EOF ? 0 : param->fp_comp_end_units;
3181                 match = find_value_cmp(end, param->fp_comp_end,
3182                                        param->fp_comp_end_sign,
3183                                        param->fp_exclude_comp_end, margin, 0);
3184         }
3185
3186         return match;
3187 }
3188
3189 /**
3190  * An example of "getstripe -v" for a two components PFL file:
3191  *
3192  * composite_header:
3193  * lcm_magic:       0x0BD60BD0
3194  * lcm_size:        264
3195  * lcm_flags:       0
3196  * lcm_layout_gen:  2
3197  * lcm_entry_count: 2
3198  * components:
3199  * - lcme_id:             1
3200  *   lcme_flags:          0x10
3201  *   lcme_extent.e_start: 0
3202  *   lcme_extent.e_end:   1048576
3203  *   lcme_offset:         128
3204  *   lcme_size:           56
3205  *   sub_layout:
3206  *     lmm_magic:         0x0BD10BD0
3207  *     lmm_seq:           0x200000401
3208  *     lmm_object_id:     0x1
3209  *     lmm_fid:           [0x200000401:0x1:0x0]
3210  *     lmm_stripe_count:  1
3211  *     lmm_stripe_size:   1048576
3212  *     lmm_pattern:       raid0
3213  *     lmm_layout_gen:    0
3214  *     lmm_stripe_offset: 0
3215  *     lmm_objects:
3216  *     - 0: { l_ost_idx: 0, l_fid: [0x100000000:0x2:0x0] }
3217  *
3218  * - lcme_id:             2
3219  *   lcme_flags:          0x10
3220  *   lcme_extent.e_start: 1048576
3221  *   lcme_extent.e_end:   EOF
3222  *   lcme_offset:         184
3223  *   lcme_size:           80
3224  *     sub_layout:
3225  *     lmm_magic:         0x0BD10BD0
3226  *     lmm_seq:           0x200000401
3227  *     lmm_object_id:     0x1
3228  *     lmm_fid:           [0x200000401:0x1:0x0]
3229  *     lmm_stripe_count:  2
3230  *     lmm_stripe_size:   1048576
3231  *     lmm_pattern:       raid0
3232  *     lmm_layout_gen:    0
3233  *     lmm_stripe_offset: 1
3234  *     lmm_objects:
3235  *     - 0: { l_ost_idx: 1, l_fid: [0x100010000:0x2:0x0] }
3236  *     - 1: { l_ost_idx: 0, l_fid: [0x100000000:0x3:0x0] }
3237  */
3238 static void lov_dump_comp_v1(struct find_param *param, char *path,
3239                              enum lov_dump_flags flags)
3240 {
3241         struct lov_comp_md_entry_v1 *entry;
3242         struct lov_user_ost_data_v1 *objects;
3243         struct lov_comp_md_v1 *comp_v1 = (void *)&param->fp_lmd->lmd_lmm;
3244         struct lov_user_md_v1 *v1;
3245         char pool_name[LOV_MAXPOOLNAME + 1];
3246         int obdindex = param->fp_obd_index;
3247         int i, j, match;
3248         bool obdstripe = false;
3249         __u16 mirror_index = 0;
3250         __u16 mirror_id = 0;
3251
3252         if (obdindex != OBD_NOT_FOUND) {
3253                 for (i = 0; !(flags & LDF_IS_DIR) && !obdstripe &&
3254                             i < comp_v1->lcm_entry_count; i++) {
3255                         if (!(comp_v1->lcm_entries[i].lcme_flags &
3256                               LCME_FL_INIT))
3257                                 continue;
3258
3259                         v1 = lov_comp_entry(comp_v1, i);
3260                         objects = lov_v1v3_objects(v1);
3261
3262                         for (j = 0; j < v1->lmm_stripe_count; j++) {
3263                                 if (obdindex == objects[j].l_ost_idx) {
3264                                         obdstripe = true;
3265                                         break;
3266                                 }
3267                         }
3268                 }
3269         } else {
3270                 obdstripe = true;
3271         }
3272
3273         if (!obdstripe)
3274                 return;
3275
3276         lov_dump_comp_v1_header(param, path, flags);
3277
3278         flags |= LDF_INDENT;
3279
3280         for (i = 0; i < comp_v1->lcm_entry_count; i++) {
3281                 entry = &comp_v1->lcm_entries[i];
3282
3283                 if (param->fp_check_comp_flags) {
3284                         if (((param->fp_comp_flags & entry->lcme_flags) !=
3285                              param->fp_comp_flags) ||
3286                             (param->fp_comp_neg_flags & entry->lcme_flags))
3287                                 continue;
3288                 }
3289
3290                 if (param->fp_check_comp_id &&
3291                     param->fp_comp_id != entry->lcme_id)
3292                         continue;
3293
3294                 if (param->fp_check_comp_start) {
3295                         match = find_value_cmp(entry->lcme_extent.e_start,
3296                                                param->fp_comp_start,
3297                                                param->fp_comp_start_sign,
3298                                                0,
3299                                                param->fp_comp_start_units, 0);
3300                         if (match == -1)
3301                                 continue;
3302                 }
3303
3304                 if (param->fp_check_comp_end) {
3305                         match = find_comp_end_cmp(entry->lcme_extent.e_end,
3306                                                   param);
3307                         if (match == -1)
3308                                 continue;
3309                 }
3310
3311                 if (param->fp_check_mirror_index) {
3312                         if (mirror_id != mirror_id_of(entry->lcme_id)) {
3313                                 mirror_index++;
3314                                 mirror_id = mirror_id_of(entry->lcme_id);
3315                         }
3316
3317                         match = find_value_cmp(mirror_index,
3318                                                param->fp_mirror_index,
3319                                                param->fp_mirror_index_sign,
3320                                                param->fp_exclude_mirror_index,
3321                                                1, 0);
3322                         if (match == -1)
3323                                 continue;
3324                 } else if (param->fp_check_mirror_id) {
3325                         if (mirror_id != mirror_id_of(entry->lcme_id))
3326                                 mirror_id = mirror_id_of(entry->lcme_id);
3327
3328                         match = find_value_cmp(mirror_id,
3329                                                param->fp_mirror_id,
3330                                                param->fp_mirror_id_sign,
3331                                                param->fp_exclude_mirror_id,
3332                                                1, 0);
3333                         if (match == -1)
3334                                 continue;
3335                 }
3336
3337                 if (print_last_init_comp(param)) {
3338                         /**
3339                          * if part of stripe info is needed, we'd print only
3340                          * the last instantiated component info.
3341                          */
3342                         if (entry->lcme_flags & LCME_FL_INIT)
3343                                 continue;
3344                         else
3345                                 break;
3346                 }
3347
3348                 if (entry->lcme_flags & LCME_FL_INIT) {
3349                         if (obdindex != OBD_NOT_FOUND) {
3350                                 flags |= LDF_SKIP_OBJS;
3351                                 v1 = lov_comp_entry(comp_v1, i);
3352                                 objects = lov_v1v3_objects(v1);
3353
3354                                 for (j = 0; j < v1->lmm_stripe_count; j++) {
3355                                         if (obdindex == objects[j].l_ost_idx) {
3356                                                 flags &= ~LDF_SKIP_OBJS;
3357                                                 break;
3358                                         }
3359                                 }
3360                         } else {
3361                                 flags &= ~LDF_SKIP_OBJS;
3362                         }
3363                 } else {
3364                         flags |= LDF_SKIP_OBJS;
3365                 }
3366
3367                 if (obdindex != OBD_NOT_FOUND && (flags & LDF_SKIP_OBJS))
3368                         continue;
3369                 lov_dump_comp_v1_entry(param, flags, i);
3370
3371                 v1 = lov_comp_entry(comp_v1, i);
3372                 objects = lov_v1v3_objects(v1);
3373                 lov_v1v3_pool_name(v1, pool_name);
3374
3375                 lov_dump_user_lmm_v1v3(v1, pool_name, objects, path, obdindex,
3376                                        param->fp_max_depth, param->fp_verbose,
3377                                        flags);
3378         }
3379         if (print_last_init_comp(param)) {
3380                 /**
3381                  * directory layout contains only layout template, print the
3382                  * last component.
3383                  */
3384                 if (i == 0)
3385                         i = comp_v1->lcm_entry_count - 1;
3386                 else
3387                         i--;
3388                 flags &= ~LDF_SKIP_OBJS;
3389
3390                 lov_dump_comp_v1_entry(param, flags, i);
3391
3392                 v1 = lov_comp_entry(comp_v1, i);
3393                 objects = lov_v1v3_objects(v1);
3394                 lov_v1v3_pool_name(v1, pool_name);
3395
3396                 lov_dump_user_lmm_v1v3(v1, pool_name, objects, path, obdindex,
3397                                        param->fp_max_depth, param->fp_verbose,
3398                                        flags);
3399         }
3400 }
3401
3402 #define VERBOSE_COMP_OPTS       (VERBOSE_COMP_COUNT | VERBOSE_COMP_ID | \
3403                                  VERBOSE_COMP_START | VERBOSE_COMP_END | \
3404                                  VERBOSE_COMP_FLAGS)
3405
3406 static inline bool has_any_comp_options(struct find_param *param)
3407 {
3408         enum llapi_layout_verbose verbose = param->fp_verbose;
3409
3410         if (param->fp_check_comp_id || param->fp_check_comp_count ||
3411             param->fp_check_comp_start || param->fp_check_comp_end ||
3412             param->fp_check_comp_flags)
3413                 return true;
3414
3415         /* show full layout information, not component specific */
3416         if ((verbose & ~VERBOSE_DETAIL) == VERBOSE_DEFAULT)
3417                 return false;
3418
3419         return verbose & VERBOSE_COMP_OPTS;
3420 }
3421
3422 struct lov_user_mds_data *lov_forge_comp_v1(struct lov_user_mds_data *orig,
3423                                             bool is_dir)
3424 {
3425         struct lov_user_md *lum = &orig->lmd_lmm;
3426         struct lov_user_mds_data *new;
3427         struct lov_comp_md_v1 *comp_v1;
3428         struct lov_comp_md_entry_v1 *ent;
3429         int lum_off = sizeof(*comp_v1) + sizeof(*ent);
3430         int lum_size = lov_user_md_size(is_dir ? 0 : lum->lmm_stripe_count,
3431                                         lum->lmm_magic);
3432
3433         new = malloc(sizeof(lstat_t) + lum_off + lum_size);
3434         if (new == NULL) {
3435                 llapi_printf(LLAPI_MSG_NORMAL, "out of memory\n");
3436                 return new;
3437         }
3438
3439         memcpy(new, orig, sizeof(lstat_t));
3440
3441         comp_v1 = (struct lov_comp_md_v1 *)&new->lmd_lmm;
3442         comp_v1->lcm_magic = lum->lmm_magic;
3443         comp_v1->lcm_size = lum_off + lum_size;
3444         comp_v1->lcm_layout_gen = is_dir ? 0 : lum->lmm_layout_gen;
3445         comp_v1->lcm_flags = 0;
3446         comp_v1->lcm_entry_count = 1;
3447
3448         ent = &comp_v1->lcm_entries[0];
3449         ent->lcme_id = 0;
3450         ent->lcme_flags = is_dir ? 0 : LCME_FL_INIT;
3451         ent->lcme_extent.e_start = 0;
3452         ent->lcme_extent.e_end = LUSTRE_EOF;
3453         ent->lcme_offset = lum_off;
3454         ent->lcme_size = lum_size;
3455
3456         memcpy((char *)comp_v1 + lum_off, lum, lum_size);
3457
3458         return new;
3459 }
3460
3461 static void lov_dump_plain_user_lmm(struct find_param *param, char *path,
3462                                     enum lov_dump_flags flags)
3463 {
3464         __u32 magic = *(__u32 *)&param->fp_lmd->lmd_lmm;
3465
3466         if (has_any_comp_options(param)) {
3467                 struct lov_user_mds_data *new_lmd, *orig_lmd;
3468
3469                 orig_lmd = param->fp_lmd;
3470                 new_lmd = lov_forge_comp_v1(orig_lmd, flags & LDF_IS_DIR);
3471                 if (new_lmd != NULL) {
3472                         param->fp_lmd = new_lmd;
3473                         lov_dump_comp_v1(param, path, flags);
3474                         param->fp_lmd = orig_lmd;
3475                         free(new_lmd);
3476                 }
3477                 return;
3478         }
3479
3480         if (magic == LOV_USER_MAGIC_V1) {
3481                 lov_dump_user_lmm_v1v3(&param->fp_lmd->lmd_lmm, NULL,
3482                                        param->fp_lmd->lmd_lmm.lmm_objects,
3483                                        path, param->fp_obd_index,
3484                                        param->fp_max_depth, param->fp_verbose,
3485                                        flags);
3486         } else {
3487                 char pool_name[LOV_MAXPOOLNAME + 1];
3488                 struct lov_user_ost_data_v1 *objects;
3489                 struct lov_user_md_v3 *lmmv3 = (void *)&param->fp_lmd->lmd_lmm;
3490
3491                 snprintf(pool_name, sizeof(pool_name), "%s",
3492                          lmmv3->lmm_pool_name);
3493                 objects = lmmv3->lmm_objects;
3494                 lov_dump_user_lmm_v1v3(&param->fp_lmd->lmd_lmm, pool_name,
3495                                        objects, path, param->fp_obd_index,
3496                                        param->fp_max_depth, param->fp_verbose,
3497                                        flags);
3498         }
3499 }
3500
3501 static void llapi_lov_dump_user_lmm(struct find_param *param, char *path,
3502                                     enum lov_dump_flags flags)
3503 {
3504         __u32 magic;
3505
3506         if (param->fp_get_lmv || param->fp_get_default_lmv)
3507                 magic = (__u32)param->fp_lmv_md->lum_magic;
3508         else
3509                 magic = *(__u32 *)&param->fp_lmd->lmd_lmm; /* lum->lmm_magic */
3510
3511         if (param->fp_raw)
3512                 flags |= LDF_IS_RAW;
3513         if (param->fp_yaml)
3514                 flags |= LDF_YAML;
3515
3516         switch (magic) {
3517         case LOV_USER_MAGIC_V1:
3518         case LOV_USER_MAGIC_V3:
3519         case LOV_USER_MAGIC_SPECIFIC:
3520                 lov_dump_plain_user_lmm(param, path, flags);
3521                 break;
3522         case LMV_MAGIC_V1:
3523         case LMV_USER_MAGIC: {
3524                 char pool_name[LOV_MAXPOOLNAME + 1];
3525                 struct lmv_user_md *lum;
3526
3527                 lum = (struct lmv_user_md *)param->fp_lmv_md;
3528                 snprintf(pool_name, sizeof(pool_name), "%s",
3529                          lum->lum_pool_name);
3530                 lmv_dump_user_lmm(lum, pool_name, path, param->fp_obd_index,
3531                                   param->fp_max_depth, param->fp_verbose,
3532                                   flags);
3533                 break;
3534         }
3535         case LOV_USER_MAGIC_COMP_V1:
3536                 lov_dump_comp_v1(param, path, flags);
3537                 break;
3538         default:
3539                 llapi_printf(LLAPI_MSG_NORMAL, "unknown lmm_magic:  %#x "
3540                              "(expecting one of %#x %#x %#x %#x)\n",
3541                              *(__u32 *)&param->fp_lmd->lmd_lmm,
3542                              LOV_USER_MAGIC_V1, LOV_USER_MAGIC_V3,
3543                              LMV_USER_MAGIC, LMV_MAGIC_V1);
3544                 return;
3545         }
3546 }
3547
3548 int llapi_file_get_stripe(const char *path, struct lov_user_md *lum)
3549 {
3550         const char *fname;
3551         char *dname;
3552         int fd, rc = 0;
3553
3554         fname = strrchr(path, '/');
3555
3556         /* It should be a file (or other non-directory) */
3557         if (fname == NULL) {
3558                 dname = (char *)malloc(2);
3559                 if (dname == NULL)
3560                         return -ENOMEM;
3561                 strcpy(dname, ".");
3562                 fname = (char *)path;
3563         } else {
3564                 dname = (char *)malloc(fname - path + 1);
3565                 if (dname == NULL)
3566                         return -ENOMEM;
3567                 strncpy(dname, path, fname - path);
3568                 dname[fname - path] = '\0';
3569                 fname++;
3570         }
3571
3572         fd = open(dname, O_RDONLY | O_NONBLOCK);
3573         if (fd == -1) {
3574                 rc = -errno;
3575                 free(dname);
3576                 return rc;
3577         }
3578
3579         strcpy((char *)lum, fname);
3580         if (ioctl(fd, IOC_MDC_GETFILESTRIPE, (void *)lum) == -1)
3581                 rc = -errno;
3582
3583         if (close(fd) == -1 && rc == 0)
3584                 rc = -errno;
3585
3586         free(dname);
3587         return rc;
3588 }
3589
3590 int llapi_file_lookup(int dirfd, const char *name)
3591 {
3592         struct obd_ioctl_data data = { 0 };
3593         char rawbuf[8192];
3594         char *buf = rawbuf;
3595         int rc;
3596
3597         if (dirfd < 0 || name == NULL)
3598                 return -EINVAL;
3599
3600         data.ioc_version = OBD_IOCTL_VERSION;
3601         data.ioc_len = sizeof(data);
3602         data.ioc_inlbuf1 = (char *)name;
3603         data.ioc_inllen1 = strlen(name) + 1;
3604
3605         rc = llapi_ioctl_pack(&data, &buf, sizeof(rawbuf));
3606         if (rc) {
3607                 llapi_error(LLAPI_MSG_ERROR, rc,
3608                             "error: IOC_MDC_LOOKUP pack failed for '%s': rc %d",
3609                             name, rc);
3610                 return rc;
3611         }
3612
3613         rc = ioctl(dirfd, IOC_MDC_LOOKUP, buf);
3614         if (rc < 0)
3615                 rc = -errno;
3616         return rc;
3617 }
3618
3619 /* Check if the file time matches all the given criteria (e.g. --atime +/-N).
3620  * Return -1 or 1 if file timestamp does not or does match the given criteria
3621  * correspondingly. Return 0 if the MDS time is being checked and there are
3622  * attributes on OSTs and it is not yet clear if the timespamp matches.
3623  *
3624  * If 0 is returned, we need to do another RPC to the OSTs to obtain the
3625  * updated timestamps. */
3626 static int find_time_check(lstat_t *st, struct find_param *param, int mds)
3627 {
3628         int rc = 1;
3629         int rc2;
3630
3631         /* Check if file is accepted. */
3632         if (param->fp_atime) {
3633                 rc2 = find_value_cmp(st->st_atime, param->fp_atime,
3634                                      param->fp_asign, param->fp_exclude_atime,
3635                                      24 * 60 * 60, mds);
3636                 if (rc2 < 0)
3637                         return rc2;
3638                 rc = rc2;
3639         }
3640
3641         if (param->fp_mtime) {
3642                 rc2 = find_value_cmp(st->st_mtime, param->fp_mtime,
3643                                      param->fp_msign, param->fp_exclude_mtime,
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         if (param->fp_ctime) {
3655                 rc2 = find_value_cmp(st->st_ctime, param->fp_ctime,
3656                                      param->fp_csign, param->fp_exclude_ctime,
3657                                      24 * 60 * 60, mds);
3658                 if (rc2 < 0)
3659                         return rc2;
3660
3661                 /* If the previous check matches, but this one is not yet clear,
3662                  * we should return 0 to do an RPC on OSTs. */
3663                 if (rc == 1)
3664                         rc = rc2;
3665         }
3666
3667         return rc;
3668 }
3669
3670 /**
3671  * Check whether the stripes matches the indexes user provided
3672  *       1   : matched
3673  *       0   : Unmatched
3674  */
3675 static int check_obd_match(struct find_param *param)
3676 {
3677         struct lov_user_ost_data_v1 *objects;
3678         struct lov_comp_md_v1 *comp_v1 = NULL;
3679         struct lov_user_md_v1 *v1 = &param->fp_lmd->lmd_lmm;
3680         lstat_t *st = &param->fp_lmd->lmd_st;
3681         int i, j, k, count = 1;
3682
3683         if (param->fp_obd_uuid && param->fp_obd_index == OBD_NOT_FOUND)
3684                 return 0;
3685
3686         if (!S_ISREG(st->st_mode))
3687                 return 0;
3688
3689         /* Only those files should be accepted, which have a
3690          * stripe on the specified OST. */
3691         if (v1->lmm_magic == LOV_USER_MAGIC_COMP_V1) {
3692                 comp_v1 = (struct lov_comp_md_v1 *)v1;
3693                 count = comp_v1->lcm_entry_count;
3694         }
3695
3696         for (i = 0; i < count; i++) {
3697                 if (comp_v1)
3698                         v1 = lov_comp_entry(comp_v1, i);
3699
3700                 objects = lov_v1v3_objects(v1);
3701
3702                 for (j = 0; j < v1->lmm_stripe_count; j++) {
3703                         if (comp_v1 && !(comp_v1->lcm_entries[i].lcme_flags &
3704                                          LCME_FL_INIT))
3705                                 continue;
3706                         for (k = 0; k < param->fp_num_obds; k++) {
3707                                 if (param->fp_obd_indexes[k] ==
3708                                     objects[j].l_ost_idx)
3709                                         return !param->fp_exclude_obd;
3710                         }
3711                 }
3712         }
3713
3714         return param->fp_exclude_obd;
3715 }
3716
3717 static int check_mdt_match(struct find_param *param)
3718 {
3719         int i;
3720
3721         if (param->fp_mdt_uuid && param->fp_mdt_index == OBD_NOT_FOUND)
3722                 return 0;
3723
3724         /* FIXME: For striped dir, we should get stripe information and check */
3725         for (i = 0; i < param->fp_num_mdts; i++) {
3726                 if (param->fp_mdt_indexes[i] == param->fp_file_mdt_index)
3727                         return !param->fp_exclude_mdt;
3728         }
3729
3730         if (param->fp_exclude_mdt)
3731                 return 1;
3732
3733         return 0;
3734 }
3735
3736 /**
3737  * Check whether the obd is active or not, if it is
3738  * not active, just print the object affected by this
3739  * failed target
3740  **/
3741 static int print_failed_tgt(struct find_param *param, char *path, int type)
3742 {
3743         struct obd_statfs stat_buf;
3744         struct obd_uuid uuid_buf;
3745         int ret;
3746
3747         if (type != LL_STATFS_LOV && type != LL_STATFS_LMV)
3748                 return -EINVAL;
3749
3750         memset(&stat_buf, 0, sizeof(struct obd_statfs));
3751         memset(&uuid_buf, 0, sizeof(struct obd_uuid));
3752         ret = llapi_obd_statfs(path, type,
3753                                param->fp_obd_index, &stat_buf,
3754                                &uuid_buf);
3755         if (ret) {
3756                 llapi_printf(LLAPI_MSG_NORMAL,
3757                              "obd_uuid: %s failed %s ",
3758                              param->fp_obd_uuid->uuid,
3759                              strerror(errno));
3760         }
3761
3762         return ret;
3763 }
3764
3765 static int find_check_stripe_size(struct find_param *param)
3766 {
3767         struct lov_comp_md_v1 *comp_v1 = NULL;
3768         struct lov_user_md_v1 *v1 = &param->fp_lmd->lmd_lmm;
3769         int ret, i, count = 1;
3770
3771         if (v1->lmm_magic == LOV_USER_MAGIC_COMP_V1) {
3772                 comp_v1 = (struct lov_comp_md_v1 *)v1;
3773                 count = comp_v1->lcm_entry_count;
3774                 ret = param->fp_exclude_stripe_size ? 1 : -1;
3775         }
3776
3777         for (i = 0; i < count; i++) {
3778                 if (comp_v1)
3779                         v1 = lov_comp_entry(comp_v1, i);
3780
3781                 ret = find_value_cmp(v1->lmm_stripe_size, param->fp_stripe_size,
3782                                      param->fp_stripe_size_sign,
3783                                      param->fp_exclude_stripe_size,
3784                                      param->fp_stripe_size_units, 0);
3785                 /* If any stripe_size matches */
3786                 if (ret != -1)
3787                         break;
3788         }
3789
3790         return ret;
3791 }
3792
3793 static __u32 find_get_stripe_count(struct find_param *param)
3794 {
3795         struct lov_comp_md_v1 *comp_v1 = NULL;
3796         struct lov_user_md_v1 *v1 = &param->fp_lmd->lmd_lmm;
3797         int i, count = 1;
3798         __u32 stripe_count = 0;
3799
3800         if (v1->lmm_magic == LOV_USER_MAGIC_COMP_V1) {
3801                 comp_v1 = (struct lov_comp_md_v1 *)v1;
3802                 count = comp_v1->lcm_entry_count;
3803         }
3804
3805         for (i = 0; i < count; i++) {
3806                 if (comp_v1)
3807                         v1 = lov_comp_entry(comp_v1, i);
3808                 stripe_count += v1->lmm_stripe_count;
3809         }
3810
3811         return stripe_count;
3812 }
3813
3814 #define LOV_PATTERN_INVALID     0xFFFFFFFF
3815
3816 static int find_check_layout(struct find_param *param)
3817 {
3818         struct lov_comp_md_v1 *comp_v1 = NULL;
3819         struct lov_user_md_v1 *v1 = &param->fp_lmd->lmd_lmm;
3820         int i, count = 1;
3821         bool found = false, valid = false;
3822
3823         if (v1->lmm_magic == LOV_USER_MAGIC_COMP_V1) {
3824                 comp_v1 = (struct lov_comp_md_v1 *)v1;
3825                 count = comp_v1->lcm_entry_count;
3826         }
3827
3828         for (i = 0; i < count; i++) {
3829                 if (comp_v1)
3830                         v1 = lov_comp_entry(comp_v1, i);
3831
3832                 if (v1->lmm_pattern == LOV_PATTERN_INVALID)
3833                         continue;
3834
3835                 valid = true;
3836                 if (v1->lmm_pattern & param->fp_layout) {
3837                         found = true;
3838                         break;
3839                 }
3840         }
3841
3842         if (!valid)
3843                 return -1;
3844
3845         if ((found && !param->fp_exclude_layout) ||
3846             (!found && param->fp_exclude_layout))
3847                 return 1;
3848
3849         return -1;
3850 }
3851
3852 static int find_check_pool(struct find_param *param)
3853 {
3854         struct lov_comp_md_v1 *comp_v1 = NULL;
3855         struct lov_user_md_v1 *v1 = &param->fp_lmd->lmd_lmm;
3856         struct lov_user_md_v3 *v3 = (void *)v1;
3857         int i, count = 1;
3858         bool found = false;
3859
3860         if (v1->lmm_magic == LOV_USER_MAGIC_COMP_V1) {
3861                 comp_v1 = (struct lov_comp_md_v1 *)v1;
3862                 count = comp_v1->lcm_entry_count;
3863                 /* empty requested pool is taken as no pool search */
3864                 if (count == 0 && param->fp_poolname[0] == '\0')
3865                         found = true;
3866         }
3867
3868         for (i = 0; i < count; i++) {
3869                 if (comp_v1 != NULL)
3870                         v1 = lov_comp_entry(comp_v1, i);
3871
3872                 if (((v1->lmm_magic == LOV_USER_MAGIC_V1) &&
3873                      (param->fp_poolname[0] == '\0')) ||
3874                     ((v1->lmm_magic == LOV_USER_MAGIC_V3) &&
3875                      (strncmp(v3->lmm_pool_name,
3876                               param->fp_poolname, LOV_MAXPOOLNAME) == 0)) ||
3877                     ((v1->lmm_magic == LOV_USER_MAGIC_V3) &&
3878                      (strcmp(param->fp_poolname, "*") == 0))) {
3879                         found = true;
3880                         break;
3881                 }
3882         }
3883
3884         if ((found && !param->fp_exclude_pool) ||
3885             (!found && param->fp_exclude_pool))
3886                 return 1;
3887
3888         return -1;
3889 }
3890
3891 static int find_check_comp_options(struct find_param *param)
3892 {
3893         lstat_t *st = &param->fp_lmd->lmd_st;
3894         struct lov_comp_md_v1 *comp_v1, *forged_v1 = NULL;
3895         struct lov_user_md_v1 *v1 = &param->fp_lmd->lmd_lmm;
3896         struct lov_comp_md_entry_v1 *entry;
3897         int i, ret = 0;
3898
3899         if (v1->lmm_magic == LOV_USER_MAGIC_COMP_V1) {
3900                 comp_v1 = (struct lov_comp_md_v1 *)v1;
3901         } else {
3902                 forged_v1 = malloc(sizeof(*forged_v1) + sizeof(*entry));
3903                 if (forged_v1 == NULL)
3904                         return -1;
3905                 comp_v1 = forged_v1;
3906                 comp_v1->lcm_entry_count = 1;
3907                 entry = &comp_v1->lcm_entries[0];
3908                 entry->lcme_flags = S_ISDIR(st->st_mode) ? 0 : LCME_FL_INIT;
3909                 entry->lcme_extent.e_start = 0;
3910                 entry->lcme_extent.e_end = LUSTRE_EOF;
3911         }
3912
3913         /* invalid case, don't match for any kind of search. */
3914         if (comp_v1->lcm_entry_count == 0) {
3915                 ret = -1;
3916                 goto out;
3917         }
3918
3919         if (param->fp_check_comp_count) {
3920                 ret = find_value_cmp(forged_v1 ? 0 : comp_v1->lcm_entry_count,
3921                                      param->fp_comp_count,
3922                                      param->fp_comp_count_sign,
3923                                      param->fp_exclude_comp_count, 1, 0);
3924                 if (ret == -1)
3925                         goto out;
3926         }
3927
3928         ret = 1;
3929         for (i = 0; i < comp_v1->lcm_entry_count; i++) {
3930                 entry = &comp_v1->lcm_entries[i];
3931
3932                 if (param->fp_check_comp_flags) {
3933                         ret = 1;
3934                         if (((param->fp_comp_flags & entry->lcme_flags) !=
3935                              param->fp_comp_flags) ||
3936                             (param->fp_comp_neg_flags & entry->lcme_flags)) {
3937                                 ret = -1;
3938                                 continue;
3939                         }
3940                 }
3941
3942                 if (param->fp_check_comp_start) {
3943                         ret = find_value_cmp(entry->lcme_extent.e_start,
3944                                              param->fp_comp_start,
3945                                              param->fp_comp_start_sign,
3946                                              param->fp_exclude_comp_start,
3947                                              param->fp_comp_start_units, 0);
3948                         if (ret == -1)
3949                                 continue;
3950                 }
3951
3952                 if (param->fp_check_comp_end) {
3953                         ret = find_comp_end_cmp(entry->lcme_extent.e_end,
3954                                                 param);
3955                         if (ret == -1)
3956                                 continue;
3957                 }
3958
3959                 /* the component matches all criteria */
3960                 break;
3961         }
3962 out:
3963         if (forged_v1 != NULL)
3964                 free(forged_v1);
3965         return ret;
3966 }
3967
3968 static int find_check_mirror_options(struct find_param *param)
3969 {
3970         struct lov_comp_md_v1 *comp_v1;
3971         struct lov_user_md_v1 *v1 = &param->fp_lmd->lmd_lmm;
3972         int ret = 0;
3973
3974         if (v1->lmm_magic != LOV_USER_MAGIC_COMP_V1)
3975                 return -1;
3976
3977         comp_v1 = (struct lov_comp_md_v1 *)v1;
3978
3979         if (param->fp_check_mirror_count) {
3980                 ret = find_value_cmp(comp_v1->lcm_mirror_count + 1,
3981                                      param->fp_mirror_count,
3982                                      param->fp_mirror_count_sign,
3983                                      param->fp_exclude_mirror_count, 1, 0);
3984                 if (ret == -1)
3985                         return ret;
3986         }
3987
3988         if (param->fp_check_mirror_state) {
3989                 ret = 1;
3990                 __u16 file_state = comp_v1->lcm_flags & LCM_FL_FLR_MASK;
3991
3992                 if ((param->fp_mirror_state != 0 &&
3993                     file_state != param->fp_mirror_state) ||
3994                     file_state == param->fp_mirror_neg_state)
3995                         return -1;
3996         }
3997
3998         return ret;
3999 }
4000
4001 static bool find_check_lmm_info(struct find_param *param)
4002 {
4003         return param->fp_check_pool || param->fp_check_stripe_count ||
4004                param->fp_check_stripe_size || param->fp_check_layout ||
4005                param->fp_check_comp_count || param->fp_check_comp_end ||
4006                param->fp_check_comp_start || param->fp_check_comp_flags ||
4007                param->fp_check_mirror_count ||
4008                param->fp_check_mirror_state ||
4009                param->fp_check_projid;
4010 }
4011
4012 /*
4013  * Get file/directory project id.
4014  * by the open fd resides on.
4015  * Return 0 and project id on success, or -ve errno.
4016  */
4017 static int fget_projid(int fd, int *projid)
4018 {
4019         struct fsxattr fsx;
4020         int rc;
4021
4022         rc = ioctl(fd, LL_IOC_FSGETXATTR, &fsx);
4023         if (rc)
4024                 return -errno;
4025
4026         *projid = fsx.fsx_projid;
4027         return 0;
4028 }
4029
4030 static int cb_find_init(char *path, DIR *parent, DIR **dirp,
4031                         void *data, struct dirent64 *de)
4032 {
4033         struct find_param *param = (struct find_param *)data;
4034         DIR *dir = dirp == NULL ? NULL : *dirp;
4035         int decision = 1; /* 1 is accepted; -1 is rejected. */
4036         lstat_t *st = &param->fp_lmd->lmd_st;
4037         int lustre_fs = 1;
4038         int checked_type = 0;
4039         int ret = 0;
4040         __u32 stripe_count = 0;
4041         int fd = -2;
4042
4043         if (parent == NULL && dir == NULL)
4044                 return -EINVAL;
4045
4046         /* If a regular expression is presented, make the initial decision */
4047         if (param->fp_pattern != NULL) {
4048                 char *fname = strrchr(path, '/');
4049                 fname = (fname == NULL ? path : fname + 1);
4050                 ret = fnmatch(param->fp_pattern, fname, 0);
4051                 if ((ret == FNM_NOMATCH && !param->fp_exclude_pattern) ||
4052                     (ret == 0 && param->fp_exclude_pattern))
4053                         goto decided;
4054         }
4055
4056         /* See if we can check the file type from the dirent. */
4057         if (param->fp_type != 0 && de != NULL && de->d_type != DT_UNKNOWN) {
4058                 checked_type = 1;
4059
4060                 if (DTTOIF(de->d_type) == param->fp_type) {
4061                         if (param->fp_exclude_type)
4062                                 goto decided;
4063                 } else {
4064                         if (!param->fp_exclude_type)
4065                                 goto decided;
4066                 }
4067         }
4068
4069         ret = 0;
4070
4071         /* Request MDS for the stat info if some of these parameters need
4072          * to be compared. */
4073         if (param->fp_obd_uuid || param->fp_mdt_uuid ||
4074             param->fp_check_uid || param->fp_check_gid ||
4075             param->fp_atime || param->fp_mtime || param->fp_ctime ||
4076             param->fp_check_size || param->fp_check_blocks ||
4077             find_check_lmm_info(param) ||
4078             param->fp_check_mdt_count || param->fp_check_hash_type)
4079                 decision = 0;
4080
4081         if (param->fp_type != 0 && checked_type == 0)
4082                 decision = 0;
4083
4084         if (decision == 0) {
4085                 if (param->fp_check_mdt_count || param->fp_check_hash_type) {
4086                         param->fp_get_lmv = 1;
4087                         ret = cb_get_dirstripe(path, dir, param);
4088                         if (ret != 0)
4089                                 return ret;
4090                 }
4091
4092                 param->fp_lmd->lmd_lmm.lmm_magic = 0;
4093                 ret = get_lmd_info(path, parent, dir, param->fp_lmd,
4094                                    param->fp_lum_size, GET_LMD_INFO);
4095                 if (ret == 0 && param->fp_lmd->lmd_lmm.lmm_magic == 0 &&
4096                     find_check_lmm_info(param)) {
4097                         struct lov_user_md *lmm = &param->fp_lmd->lmd_lmm;
4098
4099                         /* We need to "fake" the "use the default" values
4100                          * since the lmm struct is zeroed out at this point. */
4101                         lmm->lmm_magic = LOV_USER_MAGIC_V1;
4102                         lmm->lmm_pattern = LOV_PATTERN_DEFAULT;
4103                         if (!param->fp_raw)
4104                                 ostid_set_seq(&lmm->lmm_oi,
4105                                               FID_SEQ_LOV_DEFAULT);
4106                         lmm->lmm_stripe_size = 0;
4107                         lmm->lmm_stripe_count = 0;
4108                         lmm->lmm_stripe_offset = -1;
4109                 }
4110                 if (ret == 0 && param->fp_mdt_uuid != NULL) {
4111                         if (dir != NULL) {
4112                                 ret = llapi_file_fget_mdtidx(dirfd(dir),
4113                                                      &param->fp_file_mdt_index);
4114                         } else if (S_ISREG(st->st_mode)) {
4115                                 /* FIXME: we could get the MDT index from the
4116                                  * file's FID in lmd->lmd_lmm.lmm_oi without
4117                                  * opening the file, once we are sure that
4118                                  * LFSCK2 (2.6) has fixed up pre-2.0 LOV EAs.
4119                                  * That would still be an ioctl() to map the
4120                                  * FID to the MDT, but not an open RPC. */
4121                                 fd = open(path, O_RDONLY);
4122                                 if (fd > 0) {
4123                                         ret = llapi_file_fget_mdtidx(fd,
4124                                                      &param->fp_file_mdt_index);
4125                                 } else {
4126                                         ret = -errno;
4127                                 }
4128                         } else {
4129                                 /* For a special file, we assume it resides on
4130                                  * the same MDT as the parent directory. */
4131                                 ret = llapi_file_fget_mdtidx(dirfd(parent),
4132                                                      &param->fp_file_mdt_index);
4133                         }
4134                 }
4135                 if (ret != 0) {
4136                         if (ret == -ENOTTY)
4137                                 lustre_fs = 0;
4138                         if (ret == -ENOENT)
4139                                 goto decided;
4140
4141                         goto out;
4142                 } else {
4143                         stripe_count = find_get_stripe_count(param);
4144                 }
4145         }
4146
4147         if (param->fp_type && !checked_type) {
4148                 if ((st->st_mode & S_IFMT) == param->fp_type) {
4149                         if (param->fp_exclude_type)
4150                                 goto decided;
4151                 } else {
4152                         if (!param->fp_exclude_type)
4153                                 goto decided;
4154                 }
4155         }
4156
4157         /* Prepare odb. */
4158         if (param->fp_obd_uuid || param->fp_mdt_uuid) {
4159                 if (lustre_fs && param->fp_got_uuids &&
4160                     param->fp_dev != st->st_dev) {
4161                         /* A lustre/lustre mount point is crossed. */
4162                         param->fp_got_uuids = 0;
4163                         param->fp_obds_printed = 0;
4164                         param->fp_mdt_index = OBD_NOT_FOUND;
4165                         param->fp_obd_index = OBD_NOT_FOUND;
4166                 }
4167
4168                 if (lustre_fs && !param->fp_got_uuids) {
4169                         ret = setup_target_indexes(dir ? dir : parent, path,
4170                                                    param);
4171                         if (ret)
4172                                 goto out;
4173
4174                         param->fp_dev = st->st_dev;
4175                 } else if (!lustre_fs && param->fp_got_uuids) {
4176                         /* A lustre/non-lustre mount point is crossed. */
4177                         param->fp_got_uuids = 0;
4178                         param->fp_mdt_index = OBD_NOT_FOUND;
4179                         param->fp_obd_index = OBD_NOT_FOUND;
4180                 }
4181         }
4182
4183         if (param->fp_check_stripe_size) {
4184                 decision = find_check_stripe_size(param);
4185                 if (decision == -1)
4186                         goto decided;
4187         }
4188
4189         if (param->fp_check_stripe_count) {
4190                 decision = find_value_cmp(stripe_count, param->fp_stripe_count,
4191                                           param->fp_stripe_count_sign,
4192                                           param->fp_exclude_stripe_count, 1, 0);
4193                 if (decision == -1)
4194                         goto decided;
4195         }
4196
4197         if (param->fp_check_mdt_count) {
4198                 decision = find_value_cmp(
4199                                 param->fp_lmv_md->lum_stripe_count,
4200                                 param->fp_mdt_count,
4201                                 param->fp_mdt_count_sign,
4202                                 param->fp_exclude_mdt_count, 1, 0);
4203                 if (decision == -1)
4204                         goto decided;
4205         }
4206
4207         if (param->fp_check_layout) {
4208                 decision = find_check_layout(param);
4209                 if (decision == -1)
4210                         goto decided;
4211         }
4212
4213         if (param->fp_check_hash_type) {
4214                 __u32 found;
4215
4216                 found = param->fp_lmv_md->lum_hash_type & param->fp_hash_type;
4217                 if ((found && param->fp_exclude_hash_type) ||
4218                     (!found && !param->fp_exclude_hash_type)) {
4219                         decision = -1;
4220                         goto decided;
4221                 }
4222         }
4223
4224         /* If an OBD UUID is specified but none matches, skip this file. */
4225         if ((param->fp_obd_uuid && param->fp_obd_index == OBD_NOT_FOUND) ||
4226             (param->fp_mdt_uuid && param->fp_mdt_index == OBD_NOT_FOUND))
4227                 goto decided;
4228
4229         /* If an OST or MDT UUID is given, and some OST matches,
4230          * check it here. */
4231         if (param->fp_obd_index != OBD_NOT_FOUND ||
4232             param->fp_mdt_index != OBD_NOT_FOUND) {
4233                 if (param->fp_obd_uuid) {
4234                         if (check_obd_match(param)) {
4235                                 /* If no mdtuuid is given, we are done.
4236                                  * Otherwise, fall through to the mdtuuid
4237                                  * check below. */
4238                                 if (!param->fp_mdt_uuid)
4239                                         goto obd_matches;
4240                         } else {
4241                                 goto decided;
4242                         }
4243                 }
4244
4245                 if (param->fp_mdt_uuid) {
4246                         if (check_mdt_match(param))
4247                                 goto obd_matches;
4248                         goto decided;
4249                 }
4250         }
4251
4252 obd_matches:
4253         if (param->fp_check_uid) {
4254                 if (st->st_uid == param->fp_uid) {
4255                         if (param->fp_exclude_uid)
4256                                 goto decided;
4257                 } else {
4258                         if (!param->fp_exclude_uid)
4259                                 goto decided;
4260                 }
4261         }
4262
4263         if (param->fp_check_gid) {
4264                 if (st->st_gid == param->fp_gid) {
4265                         if (param->fp_exclude_gid)
4266                                 goto decided;
4267                 } else {
4268                         if (!param->fp_exclude_gid)
4269                                 goto decided;
4270                 }
4271         }
4272
4273         if (param->fp_check_projid) {
4274                 int projid = 0;
4275
4276                 if (fd == -2)
4277                         fd = open(path, O_RDONLY);
4278
4279                 if (fd > 0)
4280                         ret = fget_projid(fd, &projid);
4281                 else
4282                         ret = -errno;
4283                 if (ret)
4284                         goto out;
4285                 if (projid == param->fp_projid) {
4286                         if (param->fp_exclude_uid)
4287                                 goto decided;
4288                 } else {
4289                         if (!param->fp_exclude_projid)
4290                                 goto decided;
4291                 }
4292         }
4293
4294         if (param->fp_check_pool) {
4295                 decision = find_check_pool(param);
4296                 if (decision == -1)
4297                         goto decided;
4298         }
4299
4300         if (param->fp_check_comp_count || param->fp_check_comp_flags ||
4301             param->fp_check_comp_start || param->fp_check_comp_end) {
4302                 decision = find_check_comp_options(param);
4303                 if (decision == -1)
4304                         goto decided;
4305         }
4306
4307         if (param->fp_check_mirror_count || param->fp_check_mirror_state) {
4308                 decision = find_check_mirror_options(param);
4309                 if (decision == -1)
4310                         goto decided;
4311         }
4312
4313         /* Check the time on mds. */
4314         decision = 1;
4315         if (param->fp_atime || param->fp_mtime || param->fp_ctime) {
4316                 int for_mds;
4317
4318                 for_mds = lustre_fs ?
4319                         (S_ISREG(st->st_mode) && stripe_count) : 0;
4320                 decision = find_time_check(st, param, for_mds);
4321                 if (decision == -1)
4322                         goto decided;
4323         }
4324
4325         /* If file still fits the request, ask ost for updated info.
4326            The regular stat is almost of the same speed as some new
4327            'glimpse-size-ioctl'. */
4328
4329         if ((param->fp_check_size || param->fp_check_blocks) &&
4330             ((S_ISREG(st->st_mode) && stripe_count) || S_ISDIR(st->st_mode)))
4331                 decision = 0;
4332
4333         if (!decision) {
4334                 /* For regular files with the stripe the decision may have not
4335                  * been taken yet if *time or size is to be checked. */
4336                 if (param->fp_obd_index != OBD_NOT_FOUND)
4337                         print_failed_tgt(param, path, LL_STATFS_LOV);
4338
4339                 if (param->fp_mdt_index != OBD_NOT_FOUND)
4340                         print_failed_tgt(param, path, LL_STATFS_LMV);
4341
4342                 if (dir != NULL)
4343                         ret = fstat_f(dirfd(dir), st);
4344                 else if (de != NULL)
4345                         ret = fstatat_f(dirfd(parent), de->d_name, st,
4346                                         AT_SYMLINK_NOFOLLOW);
4347                 else
4348                         ret = lstat_f(path, st);
4349
4350                 if (ret) {
4351                         if (errno == ENOENT) {
4352                                 llapi_error(LLAPI_MSG_ERROR, -ENOENT,
4353                                             "warning: %s: %s does not exist",
4354                                             __func__, path);
4355                                 goto decided;
4356                         } else {
4357                                 ret = -errno;
4358                                 llapi_error(LLAPI_MSG_ERROR, ret,
4359                                             "%s: IOC_LOV_GETINFO on %s failed",
4360                                             __func__, path);
4361                                 goto out;
4362                         }
4363                 }
4364
4365                 /* Check the time on osc. */
4366                 decision = find_time_check(st, param, 0);
4367                 if (decision == -1)
4368                         goto decided;
4369         }
4370
4371         if (param->fp_check_size) {
4372                 decision = find_value_cmp(st->st_size, param->fp_size,
4373                                           param->fp_size_sign,
4374                                           param->fp_exclude_size,
4375                                           param->fp_size_units, 0);
4376                 if (decision == -1)
4377                         goto decided;
4378         }
4379
4380         if (param->fp_check_blocks) { /* convert st_blocks to bytes */
4381                 decision = find_value_cmp(st->st_blocks * 512, param->fp_blocks,
4382                                           param->fp_blocks_sign,
4383                                           param->fp_exclude_blocks,
4384                                           param->fp_blocks_units, 0);
4385                 if (decision == -1)
4386                         goto decided;
4387         }
4388
4389         llapi_printf(LLAPI_MSG_NORMAL, "%s", path);
4390         if (param->fp_zero_end)
4391                 llapi_printf(LLAPI_MSG_NORMAL, "%c", '\0');
4392         else
4393                 llapi_printf(LLAPI_MSG_NORMAL, "\n");
4394
4395 decided:
4396         ret = 0;
4397         /* Do not get down anymore? */
4398         if (param->fp_depth == param->fp_max_depth) {
4399                 ret = 1;
4400                 goto out;
4401         }
4402         param->fp_depth++;
4403 out:
4404         if (fd > 0)
4405                 close(fd);
4406         return ret;
4407 }
4408
4409 static int cb_migrate_mdt_init(char *path, DIR *parent, DIR **dirp,
4410                                void *param_data, struct dirent64 *de)
4411 {
4412         struct find_param *param = (struct find_param *)param_data;
4413         struct lmv_user_md *lmu = param->fp_lmv_md;
4414         DIR *tmp_parent = parent;
4415         char raw[MAX_IOC_BUFLEN] = {'\0'};
4416         char *rawbuf = raw;
4417         struct obd_ioctl_data data = { 0 };
4418         int fd;
4419         int ret;
4420         char *path_copy;
4421         char *filename;
4422         bool retry = false;
4423
4424         if (parent == NULL && dirp == NULL)
4425                 return -EINVAL;
4426
4427         if (!lmu)
4428                 return -EINVAL;
4429
4430         if (dirp != NULL)
4431                 closedir(*dirp);
4432
4433         if (parent == NULL) {
4434                 tmp_parent = opendir_parent(path);
4435                 if (tmp_parent == NULL) {
4436                         *dirp = NULL;
4437                         ret = -errno;
4438                         llapi_error(LLAPI_MSG_ERROR, ret,
4439                                     "can not open %s", path);
4440                         return ret;
4441                 }
4442         }
4443
4444         fd = dirfd(tmp_parent);
4445
4446         path_copy = strdup(path);
4447         filename = basename(path_copy);
4448
4449         data.ioc_inlbuf1 = (char *)filename;
4450         data.ioc_inllen1 = strlen(filename) + 1;
4451         data.ioc_inlbuf2 = (char *)lmu;
4452         data.ioc_inllen2 = lmv_user_md_size(lmu->lum_stripe_count,
4453                                             lmu->lum_magic);
4454         ret = llapi_ioctl_pack(&data, &rawbuf, sizeof(raw));
4455         if (ret != 0) {
4456                 llapi_error(LLAPI_MSG_ERROR, ret,
4457                             "llapi_obd_statfs: error packing ioctl data");
4458                 goto out;
4459         }
4460
4461 migrate:
4462         ret = ioctl(fd, LL_IOC_MIGRATE, rawbuf);
4463         if (ret != 0) {
4464                 if (errno == EBUSY && !retry) {
4465                         /* because migrate may not be able to lock all involved
4466                          * objects in order, for some of them it try lock, while
4467                          * there may be conflicting COS locks and cause migrate
4468                          * fail with EBUSY, hope a sync() could cause
4469                          * transaction commit and release these COS locks. */
4470                         sync();
4471                         retry = true;
4472                         goto migrate;
4473                 } else if (errno == EALREADY) {
4474                         if (param->fp_verbose & VERBOSE_DETAIL)
4475                                 fprintf(stdout,
4476                                         "%s was migrated to MDT%d already\n",
4477                                         path, lmu->lum_stripe_offset);
4478                         ret = 0;
4479                 } else {
4480                         ret = -errno;
4481                         fprintf(stderr, "%s migrate failed: %s (%d)\n",
4482                                 path, strerror(-ret), ret);
4483                         goto out;
4484                 }
4485         } else if (param->fp_verbose & VERBOSE_DETAIL) {
4486                 fprintf(stdout, "migrate %s to MDT%d stripe count %d\n",
4487                         path, lmu->lum_stripe_offset, lmu->lum_stripe_count);
4488         }
4489
4490 out:
4491         if (dirp != NULL) {
4492                 /* If the directory is being migration, we need
4493                  * close the directory after migration,
4494                  * so the old directory cache will be cleanup
4495                  * on the client side, and re-open to get the
4496                  * new directory handle */
4497                 *dirp = opendir(path);
4498                 if (*dirp == NULL) {
4499                         ret = -errno;
4500                         llapi_error(LLAPI_MSG_ERROR, ret,
4501                                     "%s: Failed to open '%s'", __func__, path);
4502                 }
4503         }
4504
4505         if (parent == NULL)
4506                 closedir(tmp_parent);
4507
4508         free(path_copy);
4509
4510         return ret;
4511 }
4512
4513 /* dir migration finished, shrink its stripes */
4514 static int cb_migrate_mdt_fini(char *path, DIR *parent, DIR **dirp, void *data,
4515                                struct dirent64 *de)
4516 {
4517         struct find_param *param = data;
4518         struct lmv_user_md *lmu = param->fp_lmv_md;
4519         int lmulen = lmv_user_md_size(lmu->lum_stripe_count, lmu->lum_magic);
4520         int ret = 0;
4521
4522         if (de && de->d_type != DT_DIR)
4523                 goto out;
4524
4525         if (*dirp) {
4526                 /*
4527                  * close it before setxattr because the latter may destroy the
4528                  * original object, and cause close fail.
4529                  */
4530                 ret = closedir(*dirp);
4531                 *dirp = NULL;
4532                 if (ret)
4533                         goto out;
4534         }
4535
4536         ret = setxattr(path, XATTR_NAME_LMV, lmu, lmulen, 0);
4537         if (ret == -EALREADY)
4538                 ret = 0;
4539 out:
4540         cb_common_fini(path, parent, dirp, data, de);
4541         return ret;
4542 }
4543
4544 int llapi_migrate_mdt(char *path, struct find_param *param)
4545 {
4546         return param_callback(path, cb_migrate_mdt_init, cb_migrate_mdt_fini,
4547                               param);
4548 }
4549
4550 int llapi_mv(char *path, struct find_param *param)
4551 {
4552 #if LUSTRE_VERSION_CODE > OBD_OCD_VERSION(2, 9, 59, 0)
4553         static bool printed;
4554
4555         if (!printed) {
4556                 llapi_error(LLAPI_MSG_ERROR, -ESTALE,
4557                             "llapi_mv() is deprecated, use llapi_migrate_mdt()\n");
4558                 printed = true;
4559         }
4560 #endif
4561         return llapi_migrate_mdt(path, param);
4562 }
4563
4564 int llapi_find(char *path, struct find_param *param)
4565 {
4566         return param_callback(path, cb_find_init, cb_common_fini, param);
4567 }
4568
4569 /*
4570  * Get MDT number that the file/directory inode referenced
4571  * by the open fd resides on.
4572  * Return 0 and mdtidx on success, or -ve errno.
4573  */
4574 int llapi_file_fget_mdtidx(int fd, int *mdtidx)
4575 {
4576         if (ioctl(fd, LL_IOC_GET_MDTIDX, mdtidx) < 0)
4577                 return -errno;
4578         return 0;
4579 }
4580
4581 static int cb_get_mdt_index(char *path, DIR *parent, DIR **dirp, void *data,
4582                             struct dirent64 *de)
4583 {
4584         struct find_param *param = (struct find_param *)data;
4585         DIR *d = dirp == NULL ? NULL : *dirp;
4586         int ret;
4587         int mdtidx;
4588
4589         if (parent == NULL && d == NULL)
4590                 return -EINVAL;
4591
4592         if (d != NULL) {
4593                 ret = llapi_file_fget_mdtidx(dirfd(d), &mdtidx);
4594         } else /* if (parent) */ {
4595                 int fd;
4596
4597                 fd = open(path, O_RDONLY | O_NOCTTY);
4598                 if (fd > 0) {
4599                         ret = llapi_file_fget_mdtidx(fd, &mdtidx);
4600                         close(fd);
4601                 } else {
4602                         ret = -errno;
4603                 }
4604         }
4605
4606         if (ret != 0) {
4607                 if (ret == -ENODATA) {
4608                         if (!param->fp_obd_uuid)
4609                                 llapi_printf(LLAPI_MSG_NORMAL,
4610                                              "'%s' has no stripe info\n", path);
4611                         goto out;
4612                 } else if (ret == -ENOENT) {
4613                         llapi_error(LLAPI_MSG_WARN, ret,
4614                                     "warning: %s: '%s' does not exist",
4615                                     __func__, path);
4616                         goto out;
4617                 } else if (ret == -ENOTTY) {
4618                         llapi_error(LLAPI_MSG_ERROR, ret,
4619                                     "%s: '%s' not on a Lustre fs",
4620                                     __func__, path);
4621                 } else {
4622                         llapi_error(LLAPI_MSG_ERROR, ret,
4623                                     "error: %s: '%s' failed get_mdtidx",
4624                                     __func__, path);
4625                 }
4626                 return ret;
4627         }
4628
4629         if (param->fp_quiet || !(param->fp_verbose & VERBOSE_DETAIL))
4630                 llapi_printf(LLAPI_MSG_NORMAL, "%d\n", mdtidx);
4631         else
4632                 llapi_printf(LLAPI_MSG_NORMAL, "%s\nmdt_index:\t%d\n",
4633                              path, mdtidx);
4634
4635 out:
4636         /* Do not go down anymore? */
4637         if (param->fp_depth == param->fp_max_depth)
4638                 return 1;
4639
4640         param->fp_depth++;
4641
4642         return 0;
4643 }
4644
4645 static int cb_getstripe(char *path, DIR *parent, DIR **dirp, void *data,
4646                         struct dirent64 *de)
4647 {
4648         struct find_param *param = (struct find_param *)data;
4649         DIR *d = dirp == NULL ? NULL : *dirp;
4650         int ret = 0;
4651
4652         if (parent == NULL && d == NULL)
4653                 return -EINVAL;
4654
4655         if (param->fp_obd_uuid) {
4656                 param->fp_quiet = 1;
4657                 ret = setup_obd_uuid(d ? dirfd(d) : dirfd(parent), path, param);
4658                 if (ret)
4659                         return ret;
4660         }
4661
4662         if (d && (param->fp_get_lmv || param->fp_get_default_lmv))
4663                 ret = cb_get_dirstripe(path, d, param);
4664         else if (d ||
4665                  (parent && !param->fp_get_lmv && !param->fp_get_default_lmv))
4666                 ret = get_lmd_info(path, parent, d, &param->fp_lmd->lmd_lmm,
4667                                    param->fp_lum_size, GET_LMD_STRIPE);
4668         else
4669                 return 0;
4670
4671         if (ret) {
4672                 if (errno == ENODATA && d != NULL) {
4673                         /* We need to "fake" the "use the default" values
4674                          * since the lmm struct is zeroed out at this point.
4675                          * The magic needs to be set in order to satisfy
4676                          * a check later on in the code path.
4677                          * The object_seq needs to be set for the "(Default)"
4678                          * prefix to be displayed. */
4679                         if (param->fp_get_default_lmv) {
4680                                 struct lmv_user_md *lum = param->fp_lmv_md;
4681
4682                                 lum->lum_magic = LMV_USER_MAGIC;
4683                                 lum->lum_stripe_count = 0;
4684                                 lum->lum_stripe_offset = -1;
4685                                 goto dump;
4686                         } else if (param->fp_get_lmv) {
4687                                 struct lmv_user_md *lum = param->fp_lmv_md;
4688                                 int mdtidx;
4689
4690                                 ret = llapi_file_fget_mdtidx(dirfd(d), &mdtidx);
4691                                 if (ret != 0)
4692                                         goto err_out;
4693                                 lum->lum_magic = LMV_MAGIC_V1;
4694                                 lum->lum_stripe_count = 0;
4695                                 lum->lum_stripe_offset = mdtidx;
4696                                 goto dump;
4697                         } else {
4698                                 struct lov_user_md *lmm =
4699                                         &param->fp_lmd->lmd_lmm;
4700
4701                                 lmm->lmm_magic = LOV_USER_MAGIC_V1;
4702                                 if (!param->fp_raw)
4703                                         ostid_set_seq(&lmm->lmm_oi,
4704                                                       FID_SEQ_LOV_DEFAULT);
4705                                 lmm->lmm_stripe_count = 0;
4706                                 lmm->lmm_stripe_size = 0;
4707                                 lmm->lmm_stripe_offset = -1;
4708                                 goto dump;
4709                         }
4710                 } else if (errno == ENODATA && parent != NULL) {
4711                         if (!param->fp_obd_uuid && !param->fp_mdt_uuid)
4712                                 llapi_printf(LLAPI_MSG_NORMAL,
4713                                              "%s has no stripe info\n", path);
4714                         goto out;
4715                 } else if (errno == ENOENT) {
4716                         llapi_error(LLAPI_MSG_WARN, -ENOENT,
4717                                     "warning: %s: %s does not exist",
4718                                     __func__, path);
4719                         goto out;
4720                 } else if (errno == ENOTTY) {
4721                         ret = -errno;
4722                         llapi_error(LLAPI_MSG_ERROR, ret,
4723                                     "%s: '%s' not on a Lustre fs?",
4724                                     __func__, path);
4725                 } else {
4726                         ret = -errno;
4727 err_out:
4728                         llapi_error(LLAPI_MSG_ERROR, ret,
4729                                     "error: %s: %s failed for %s",
4730                                      __func__, d ? "LL_IOC_LOV_GETSTRIPE" :
4731                                     "IOC_MDC_GETFILESTRIPE", path);
4732                 }
4733
4734                 return ret;
4735         }
4736
4737 dump:
4738         if (!(param->fp_verbose & VERBOSE_MDTINDEX))
4739                 llapi_lov_dump_user_lmm(param, path, d ? LDF_IS_DIR : 0);
4740
4741 out:
4742         /* Do not get down anymore? */
4743         if (param->fp_depth == param->fp_max_depth)
4744                 return 1;
4745
4746         param->fp_depth++;
4747
4748         return 0;
4749 }
4750
4751 int llapi_getstripe(char *path, struct find_param *param)
4752 {
4753         return param_callback(path, (param->fp_verbose & VERBOSE_MDTINDEX) ?
4754                               cb_get_mdt_index : cb_getstripe,
4755                               cb_common_fini, param);
4756 }
4757
4758 int llapi_obd_fstatfs(int fd, __u32 type, __u32 index,
4759                       struct obd_statfs *stat_buf, struct obd_uuid *uuid_buf)
4760 {
4761         char raw[MAX_IOC_BUFLEN] = {'\0'};
4762         char *rawbuf = raw;
4763         struct obd_ioctl_data data = { 0 };
4764         int rc = 0;
4765
4766         data.ioc_inlbuf1 = (char *)&type;
4767         data.ioc_inllen1 = sizeof(__u32);
4768         data.ioc_inlbuf2 = (char *)&index;
4769         data.ioc_inllen2 = sizeof(__u32);
4770         data.ioc_pbuf1 = (char *)stat_buf;
4771         data.ioc_plen1 = sizeof(struct obd_statfs);
4772         data.ioc_pbuf2 = (char *)uuid_buf;
4773         data.ioc_plen2 = sizeof(struct obd_uuid);
4774
4775         rc = llapi_ioctl_pack(&data, &rawbuf, sizeof(raw));
4776         if (rc != 0) {
4777                 llapi_error(LLAPI_MSG_ERROR, rc,
4778                             "llapi_obd_statfs: error packing ioctl data");
4779                 return rc;
4780         }
4781
4782         rc = ioctl(fd, IOC_OBD_STATFS, (void *)rawbuf);
4783
4784         return rc < 0 ? -errno : 0;
4785 }
4786
4787 int llapi_obd_statfs(char *path, __u32 type, __u32 index,
4788                      struct obd_statfs *stat_buf, struct obd_uuid *uuid_buf)
4789 {
4790         int fd;
4791         int rc;
4792
4793         fd = open(path, O_RDONLY);
4794         if (fd < 0) {
4795                 rc = -errno;
4796                 llapi_error(LLAPI_MSG_ERROR, rc, "error: %s: opening '%s'",
4797                             __func__, path);
4798                 /* If we can't even open a file on the filesystem (e.g. with
4799                  * -ESHUTDOWN), force caller to exit or it will loop forever. */
4800                 return -ENODEV;
4801         }
4802
4803         rc = llapi_obd_fstatfs(fd, type, index, stat_buf, uuid_buf);
4804
4805         close(fd);
4806
4807         return rc;
4808 }
4809
4810 #define MAX_STRING_SIZE 128
4811
4812 int llapi_ping(char *obd_type, char *obd_name)
4813 {
4814         glob_t path;
4815         char buf[1];
4816         int rc, fd;
4817
4818         rc = cfs_get_param_paths(&path, "%s/%s/ping",
4819                                 obd_type, obd_name);
4820         if (rc != 0)
4821                 return -errno;
4822
4823         fd = open(path.gl_pathv[0], O_WRONLY);
4824         if (fd < 0) {
4825                 rc = -errno;
4826                 llapi_error(LLAPI_MSG_ERROR, rc, "error opening %s",
4827                             path.gl_pathv[0]);
4828                 goto failed;
4829         }
4830
4831         /* The purpose is to send a byte as a ping, whatever this byte is. */
4832         /* coverity[uninit_use_in_call] */
4833         rc = write(fd, buf, 1);
4834         if (rc < 0)
4835                 rc = -errno;
4836         close(fd);
4837
4838         if (rc == 1)
4839                 rc = 0;
4840 failed:
4841         cfs_free_param_data(&path);
4842         return rc;
4843 }
4844
4845 int llapi_target_iterate(int type_num, char **obd_type,
4846                          void *args, llapi_cb_t cb)
4847 {
4848         char buf[MAX_STRING_SIZE];
4849         int i, rc = 0;
4850         glob_t param;
4851         FILE *fp;
4852
4853         rc = cfs_get_param_paths(&param, "devices");
4854         if (rc != 0)
4855                 return -ENOENT;
4856
4857         fp = fopen(param.gl_pathv[0], "r");
4858         if (fp == NULL) {
4859                 rc = -errno;
4860                 llapi_error(LLAPI_MSG_ERROR, rc, "error: opening '%s'",
4861                             param.gl_pathv[0]);
4862                 goto free_path;
4863         }
4864
4865         while (fgets(buf, sizeof(buf), fp) != NULL) {
4866                 char *obd_type_name = NULL;
4867                 char *obd_name = NULL;
4868                 char *obd_uuid = NULL;
4869                 char *bufp = buf;
4870                 struct obd_statfs osfs_buffer;
4871
4872                 while(bufp[0] == ' ')
4873                         ++bufp;
4874
4875                 for(i = 0; i < 3; i++) {
4876                         obd_type_name = strsep(&bufp, " ");
4877                 }
4878                 obd_name = strsep(&bufp, " ");
4879                 obd_uuid = strsep(&bufp, " ");
4880
4881                 memset(&osfs_buffer, 0, sizeof (osfs_buffer));
4882
4883                 for (i = 0; i < type_num; i++) {
4884                         if (strcmp(obd_type_name, obd_type[i]) != 0)
4885                                 continue;
4886
4887                         cb(obd_type_name, obd_name, obd_uuid, args);
4888                 }
4889         }
4890         fclose(fp);
4891 free_path:
4892         cfs_free_param_data(&param);
4893         return 0;
4894 }
4895
4896 static void do_target_check(char *obd_type_name, char *obd_name,
4897                             char *obd_uuid, void *args)
4898 {
4899         int rc;
4900
4901         rc = llapi_ping(obd_type_name, obd_name);
4902         if (rc == ENOTCONN) {
4903                 llapi_printf(LLAPI_MSG_NORMAL, "%s inactive.\n", obd_name);
4904         } else if (rc) {
4905                 llapi_error(LLAPI_MSG_ERROR, rc, "error: check '%s'", obd_name);
4906         } else {
4907                 llapi_printf(LLAPI_MSG_NORMAL, "%s active.\n", obd_name);
4908         }
4909 }
4910
4911 int llapi_target_check(int type_num, char **obd_type, char *dir)
4912 {
4913         return llapi_target_iterate(type_num, obd_type, NULL, do_target_check);
4914 }
4915
4916 #undef MAX_STRING_SIZE
4917
4918 /* Is this a lustre fs? */
4919 int llapi_is_lustre_mnttype(const char *type)
4920 {
4921         return (strcmp(type, "lustre") == 0 || strcmp(type,"lustre_lite") == 0);
4922 }
4923
4924 /* Is this a lustre client fs? */
4925 int llapi_is_lustre_mnt(struct mntent *mnt)
4926 {
4927         return (llapi_is_lustre_mnttype(mnt->mnt_type) &&
4928                 strstr(mnt->mnt_fsname, ":/") != NULL);
4929 }
4930
4931 int llapi_quotactl(char *mnt, struct if_quotactl *qctl)
4932 {
4933         char fsname[PATH_MAX + 1];
4934         int root;
4935         int rc;
4936
4937         rc = llapi_search_fsname(mnt, fsname);
4938         if (rc)
4939                 return rc;
4940
4941         root = open(mnt, O_RDONLY | O_DIRECTORY);
4942         if (root < 0) {
4943                 rc = -errno;
4944                 llapi_error(LLAPI_MSG_ERROR, rc, "cannot open '%s'", mnt);
4945                 return rc;
4946         }
4947
4948         rc = ioctl(root, OBD_IOC_QUOTACTL, qctl);
4949         if (rc < 0)
4950                 rc = -errno;
4951
4952         close(root);
4953         return rc;
4954 }
4955
4956 /* Print mdtname 'name' into 'buf' using 'format'.  Add -MDT0000 if needed.
4957  * format must have %s%s, buf must be > 16
4958  * Eg: if name = "lustre-MDT0000", "lustre", or "lustre-MDT0000_UUID"
4959  *     then buf = "lustre-MDT0000"
4960  */
4961 static int get_mdtname(char *name, char *format, char *buf)
4962 {
4963         char suffix[]="-MDT0000";
4964         int len = strlen(name);
4965
4966         if ((len > 5) && (strncmp(name + len - 5, "_UUID", 5) == 0)) {
4967                 name[len - 5] = '\0';
4968                 len -= 5;
4969         }
4970
4971         if (len > 8) {
4972                 if ((len <= 16) && strncmp(name + len - 8, "-MDT", 4) == 0) {
4973                         suffix[0] = '\0';
4974                 } else {
4975                         /* Not enough room to add suffix */
4976                         llapi_err_noerrno(LLAPI_MSG_ERROR,
4977                                           "Invalid MDT name |%s|", name);
4978                         return -EINVAL;
4979                 }
4980         }
4981
4982         return sprintf(buf, format, name, suffix);
4983 }
4984
4985 /** ioctl on filsystem root, with mdtindex sent as data
4986  * \param mdtname path, fsname, or mdtname (lutre-MDT0004)
4987  * \param mdtidxp pointer to integer within data to be filled in with the
4988  *    mdt index (0 if no mdt is specified).  NULL won't be filled.
4989  */
4990 int root_ioctl(const char *mdtname, int opc, void *data, int *mdtidxp,
4991                int want_error)
4992 {
4993         char fsname[20];
4994         char *ptr;
4995         int fd, rc;
4996         long index;
4997
4998         /* Take path, fsname, or MDTname.  Assume MDT0000 in the former cases.
4999          Open root and parse mdt index. */
5000         if (mdtname[0] == '/') {
5001                 index = 0;
5002                 rc = get_root_path(WANT_FD | want_error, NULL, &fd,
5003                                    (char *)mdtname, -1);
5004         } else {
5005                 if (get_mdtname((char *)mdtname, "%s%s", fsname) < 0)
5006                         return -EINVAL;
5007                 ptr = fsname + strlen(fsname) - 8;
5008                 *ptr = '\0';
5009                 index = strtol(ptr + 4, NULL, 16);
5010                 rc = get_root_path(WANT_FD | want_error, fsname, &fd, NULL, -1);
5011         }
5012         if (rc < 0) {
5013                 if (want_error)
5014                         llapi_err_noerrno(LLAPI_MSG_ERROR,
5015                                           "Can't open %s: %d\n", mdtname, rc);
5016                 return rc;
5017         }
5018
5019         if (mdtidxp)
5020                 *mdtidxp = index;
5021
5022         rc = ioctl(fd, opc, data);
5023         if (rc == -1)
5024                 rc = -errno;
5025         else
5026                 rc = 0;
5027         close(fd);
5028         return rc;
5029 }
5030
5031 int llapi_fid2path(const char *device, const char *fidstr, char *buf,
5032                    int buflen, long long *recno, int *linkno)
5033 {
5034         const char *fidstr_orig = fidstr;
5035         struct lu_fid fid;
5036         struct getinfo_fid2path *gf;
5037         char *a;
5038         char *b;
5039         int rc;
5040
5041         while (*fidstr == '[')
5042                 fidstr++;
5043
5044         sscanf(fidstr, SFID, RFID(&fid));
5045         if (!fid_is_sane(&fid)) {
5046                 llapi_err_noerrno(LLAPI_MSG_ERROR,
5047                                   "bad FID format '%s', should be [seq:oid:ver]"
5048                                   " (e.g. "DFID")\n", fidstr_orig,
5049                                   (unsigned long long)FID_SEQ_NORMAL, 2, 0);
5050                 return -EINVAL;
5051         }
5052
5053         gf = malloc(sizeof(*gf) + buflen);
5054         if (gf == NULL)
5055                 return -ENOMEM;
5056
5057         gf->gf_fid = fid;
5058         gf->gf_recno = *recno;
5059         gf->gf_linkno = *linkno;
5060         gf->gf_pathlen = buflen;
5061
5062         /* Take path or fsname */
5063         rc = root_ioctl(device, OBD_IOC_FID2PATH, gf, NULL, 0);
5064         if (rc)
5065                 goto out_free;
5066
5067         b = buf;
5068         /* strip out instances of // */
5069         for (a = gf->gf_u.gf_path; *a != '\0'; a++) {
5070                 if ((*a == '/') && (*(a + 1) == '/'))
5071                         continue;
5072                 *b = *a;
5073                 b++;
5074         }
5075         *b = '\0';
5076
5077         if (buf[0] == '\0') { /* ROOT path */
5078                 buf[0] = '/';
5079                 buf[1] = '\0';
5080         }
5081
5082         *recno = gf->gf_recno;
5083         *linkno = gf->gf_linkno;
5084
5085 out_free:
5086         free(gf);
5087         return rc;
5088 }
5089
5090 static int fid_from_lma(const char *path, int fd, struct lu_fid *fid)
5091 {
5092         char                     buf[512];
5093         struct lustre_mdt_attrs *lma;
5094         int                      rc;
5095
5096         if (path == NULL)
5097                 rc = fgetxattr(fd, XATTR_NAME_LMA, buf, sizeof(buf));
5098         else
5099                 rc = lgetxattr(path, XATTR_NAME_LMA, buf, sizeof(buf));
5100         if (rc < 0)
5101                 return -errno;
5102         lma = (struct lustre_mdt_attrs *)buf;
5103         fid_le_to_cpu(fid, &lma->lma_self_fid);
5104         return 0;
5105 }
5106
5107 int llapi_get_mdt_index_by_fid(int fd, const struct lu_fid *fid,
5108                                int *mdt_index)
5109 {
5110         int     rc;
5111
5112         rc = ioctl(fd, LL_IOC_FID2MDTIDX, fid);
5113         if (rc < 0)
5114                 return -errno;
5115
5116         *mdt_index = rc;
5117
5118         return rc;
5119 }
5120
5121 int llapi_fd2fid(int fd, struct lu_fid *fid)
5122 {
5123         int rc;
5124
5125         memset(fid, 0, sizeof(*fid));
5126
5127         rc = ioctl(fd, LL_IOC_PATH2FID, fid) < 0 ? -errno : 0;
5128         if (rc == -EINVAL || rc == -ENOTTY)
5129                 rc = fid_from_lma(NULL, fd, fid);
5130
5131         return rc;
5132 }
5133
5134 int llapi_path2fid(const char *path, struct lu_fid *fid)
5135 {
5136         int fd, rc;
5137
5138         memset(fid, 0, sizeof(*fid));
5139         fd = open(path, O_RDONLY | O_NONBLOCK | O_NOFOLLOW);
5140         if (fd < 0) {
5141                 if (errno == ELOOP || errno == ENXIO)
5142                         return fid_from_lma(path, -1, fid);
5143                 return -errno;
5144         }
5145
5146         rc = llapi_fd2fid(fd, fid);
5147         if (rc == -EINVAL || rc == -ENOTTY)
5148                 rc = fid_from_lma(path, -1, fid);
5149
5150         close(fd);
5151         return rc;
5152 }
5153
5154 int llapi_fd2parent(int fd, unsigned int linkno, struct lu_fid *parent_fid,
5155                     char *name, size_t name_size)
5156 {
5157         struct getparent        *gp;
5158         int                      rc;
5159
5160         gp = malloc(sizeof(*gp) + name_size);
5161         if (gp == NULL)
5162                 return -ENOMEM;
5163
5164         gp->gp_linkno = linkno;
5165         gp->gp_name_size = name_size;
5166
5167         rc = ioctl(fd, LL_IOC_GETPARENT, gp);
5168         if (rc < 0) {
5169                 rc = -errno;
5170                 goto err_free;
5171         }
5172
5173         *parent_fid = gp->gp_fid;
5174
5175         strncpy(name, gp->gp_name, name_size);
5176         name[name_size - 1] = '\0';
5177
5178 err_free:
5179         free(gp);
5180         return rc;
5181 }
5182
5183 int llapi_path2parent(const char *path, unsigned int linkno,
5184                       struct lu_fid *parent_fid, char *name, size_t name_size)
5185 {
5186         int     fd;
5187         int     rc;
5188
5189         fd = open(path, O_RDONLY | O_NONBLOCK | O_NOFOLLOW);
5190         if (fd < 0)
5191                 return -errno;
5192
5193         rc = llapi_fd2parent(fd, linkno, parent_fid, name, name_size);
5194         close(fd);
5195         return rc;
5196 }
5197
5198 int llapi_get_connect_flags(const char *mnt, __u64 *flags)
5199 {
5200         int root;
5201         int rc;
5202
5203         root = open(mnt, O_RDONLY | O_DIRECTORY);
5204         if (root < 0) {
5205                 rc = -errno;
5206                 llapi_error(LLAPI_MSG_ERROR, rc, "open %s failed", mnt);
5207                 return rc;
5208         }
5209
5210         rc = ioctl(root, LL_IOC_GET_CONNECT_FLAGS, flags);
5211         if (rc < 0) {
5212                 rc = -errno;
5213                 llapi_error(LLAPI_MSG_ERROR, rc,
5214                         "ioctl on %s for getting connect flags failed", mnt);
5215         }
5216         close(root);
5217         return rc;
5218 }
5219
5220 /**
5221  * Get a 64-bit value representing the version of file data pointed by fd.
5222  *
5223  * Each write or truncate, flushed on OST, will change this value. You can use
5224  * this value to verify if file data was modified. This only checks the file
5225  * data, not metadata.
5226  *
5227  * \param  flags  0: no flush pages, usually used it the process has already
5228  *                  taken locks;
5229  *                LL_DV_RD_FLUSH: OSTs will take LCK_PR to flush dirty pages
5230  *                  from clients;
5231  *                LL_DV_WR_FLUSH: OSTs will take LCK_PW to flush all caching
5232  *                  pages from clients.
5233  *
5234  * \retval 0 on success.
5235  * \retval -errno on error.
5236  */
5237 int llapi_get_data_version(int fd, __u64 *data_version, __u64 flags)
5238 {
5239         int rc;
5240         struct ioc_data_version idv;
5241
5242         idv.idv_flags = (__u32)flags;
5243
5244         rc = ioctl(fd, LL_IOC_DATA_VERSION, &idv);
5245         if (rc)
5246                 rc = -errno;
5247         else
5248                 *data_version = idv.idv_version;
5249
5250         return rc;
5251 }
5252
5253 /**
5254  * Flush cached pages from all clients.
5255  *
5256  * \param fd    File descriptor
5257  * \retval 0    success
5258  * \retval < 0  error
5259  */
5260 int llapi_file_flush(int fd)
5261 {
5262         __u64 dv;
5263
5264         return llapi_get_data_version(fd, &dv, LL_DV_WR_FLUSH);
5265 }
5266
5267 /*
5268  * Fetch layout version from OST objects. Layout version on OST objects are
5269  * only set when the file is a mirrored file AND after the file has been
5270  * written at least once.
5271  *
5272  * It actually fetches the least layout version from the objects.
5273  */
5274 int llapi_get_ost_layout_version(int fd, __u32 *layout_version)
5275 {
5276         int rc;
5277         struct ioc_data_version idv = { 0 };
5278
5279         rc = ioctl(fd, LL_IOC_DATA_VERSION, &idv);
5280         if (rc)
5281                 rc = -errno;
5282         else
5283                 *layout_version = idv.idv_layout_version;
5284
5285         return rc;
5286 }
5287
5288 /*
5289  * Create a file without any name and open it for read/write
5290  *
5291  * - file is created as if it were a standard file in the given \a directory
5292  * - file does not appear in \a directory and mtime does not change because
5293  *   the filename is handled specially by the Lustre MDS.
5294  * - file is destroyed at final close
5295  *
5296  * \param[in]   directory       directory from which to inherit layout/MDT idx
5297  * \param[in]   mdt_idx         MDT index on which the file is created,
5298  *                              \a idx == -1 means no specific MDT is requested
5299  * \param[in]   mode            standard open(2) mode
5300  * \param[in]   stripe_param    stripe parameters. May be NULL.
5301  *
5302  * \retval      a file descriptor on success.
5303  * \retval      -errno on error.
5304  */
5305 int llapi_create_volatile_param(const char *directory, int mdt_idx,
5306                                 int open_flags, mode_t mode,
5307                                 const struct llapi_stripe_param *stripe_param)
5308 {
5309         char file_path[PATH_MAX];
5310         int saved_errno = errno;
5311         int fd;
5312         unsigned int rnumber;
5313         int rc;
5314
5315         do {
5316                 rnumber = random();
5317                 if (mdt_idx == -1)
5318                         rc = snprintf(file_path, sizeof(file_path),
5319                                       "%s/" LUSTRE_VOLATILE_HDR "::%.4X",
5320                                       directory, rnumber);
5321                 else
5322                         rc = snprintf(file_path, sizeof(file_path),
5323                                       "%s/" LUSTRE_VOLATILE_HDR ":%.4X:%.4X",
5324                                       directory, mdt_idx, rnumber);
5325
5326                 if (rc < 0 || rc >= sizeof(file_path))
5327                         return -ENAMETOOLONG;
5328
5329                 /*
5330                  * Either open O_WRONLY or O_RDWR, creating RDONLY
5331                  * is non-sensical here
5332                  */
5333                 if ((open_flags & O_ACCMODE) == O_RDONLY)
5334                         open_flags = O_RDWR | (open_flags & ~O_ACCMODE);
5335
5336                 open_flags |= O_CREAT | O_EXCL | O_NOFOLLOW;
5337
5338                 if (stripe_param != NULL) {
5339                         fd = llapi_file_open_param(file_path, open_flags,
5340                                                    mode, stripe_param);
5341                         if (fd < 0)
5342                                 rc = fd;
5343                 } else {
5344                         fd = open(file_path, open_flags, mode);
5345                         if (fd < 0)
5346                                 rc = -errno;
5347                 }
5348         } while (fd < 0 && rc == -EEXIST);
5349
5350         if (fd < 0) {
5351                 llapi_error(LLAPI_MSG_ERROR, rc,
5352                             "Cannot create volatile file '%s' in '%s'",
5353                             file_path + strlen(directory) + 1 +
5354                             LUSTRE_VOLATILE_HDR_LEN,
5355                             directory);
5356                 return rc;
5357         }
5358
5359         /*
5360          * Unlink file in case this wasn't a Lustre filesystem and the magic
5361          * volatile filename wasn't handled as intended. The effect is the
5362          * same. If volatile open was supported then we expect unlink() to
5363          * return -ENOENT.
5364          */
5365         (void)unlink(file_path);
5366
5367         /*
5368          * Since we are returning successfully we restore errno (and
5369          * mask out possible EEXIST from open() and ENOENT from unlink().
5370          */
5371         errno = saved_errno;
5372
5373         return fd;
5374 }
5375
5376 /*
5377  * Create a file without any name open it for read/write
5378  *
5379  * - file is created as if it were a standard file in the given \a directory
5380  * - file does not appear in \a directory and mtime does not change because
5381  *   the filename is handled specially by the Lustre MDS.
5382  * - file is removed at final close
5383  * - file modes are rw------- since it doesn't make sense to have a read-only
5384  *   or write-only file that cannot be opened again.
5385  * - if user wants another mode it must use fchmod() on the open file, no
5386  *   security problems arise because it cannot be opened by another process.
5387  *
5388  * \param[in]   directory       directory from which to inherit layout/MDT idx
5389  * \param[in]   idx             MDT index on which the file is created,
5390  *                              \a idx == -1 means no specific MDT is requested
5391  * \param[in]   open_flags      standard open(2) flags
5392  *
5393  * \retval      a file descriptor on success.
5394  * \retval      -errno on error.
5395  */
5396 int llapi_create_volatile_idx(const char *directory, int mdt_idx,
5397                               int open_flags)
5398 {
5399         return llapi_create_volatile_param(directory, mdt_idx, open_flags,
5400                                            S_IRUSR | S_IWUSR, NULL);
5401 }
5402
5403 /**
5404  * Swap the layouts between 2 file descriptors
5405  * the 2 files must be open for writing
5406  * first fd received the ioctl, second fd is passed as arg
5407  * this is assymetric but avoid use of root path for ioctl
5408  */
5409 int llapi_fswap_layouts_grouplock(int fd1, int fd2, __u64 dv1, __u64 dv2,
5410                                   int gid, __u64 flags)
5411 {
5412         struct lustre_swap_layouts      lsl;
5413         struct stat                     st1;
5414         struct stat                     st2;
5415         int                             rc;
5416
5417         if (flags & (SWAP_LAYOUTS_KEEP_ATIME | SWAP_LAYOUTS_KEEP_MTIME)) {
5418                 rc = fstat(fd1, &st1);
5419                 if (rc < 0)
5420                         return -errno;
5421
5422                 rc = fstat(fd2, &st2);
5423                 if (rc < 0)
5424                         return -errno;
5425         }
5426         lsl.sl_fd = fd2;
5427         lsl.sl_flags = flags;
5428         lsl.sl_gid = gid;
5429         lsl.sl_dv1 = dv1;
5430         lsl.sl_dv2 = dv2;
5431         rc = ioctl(fd1, LL_IOC_LOV_SWAP_LAYOUTS, &lsl);
5432         if (rc < 0)
5433                 return -errno;
5434
5435         if (flags & (SWAP_LAYOUTS_KEEP_ATIME | SWAP_LAYOUTS_KEEP_MTIME)) {
5436                 struct timeval  tv1[2];
5437                 struct timeval  tv2[2];
5438
5439                 memset(tv1, 0, sizeof(tv1));
5440                 memset(tv2, 0, sizeof(tv2));
5441
5442                 if (flags & SWAP_LAYOUTS_KEEP_ATIME) {
5443                         tv1[0].tv_sec = st1.st_atime;
5444                         tv2[0].tv_sec = st2.st_atime;
5445                 } else {
5446                         tv1[0].tv_sec = st2.st_atime;
5447                         tv2[0].tv_sec = st1.st_atime;
5448                 }
5449
5450                 if (flags & SWAP_LAYOUTS_KEEP_MTIME) {
5451                         tv1[1].tv_sec = st1.st_mtime;
5452                         tv2[1].tv_sec = st2.st_mtime;
5453                 } else {
5454                         tv1[1].tv_sec = st2.st_mtime;
5455                         tv2[1].tv_sec = st1.st_mtime;
5456                 }
5457
5458                 rc = futimes(fd1, tv1);
5459                 if (rc < 0)
5460                         return -errno;
5461
5462                 rc = futimes(fd2, tv2);
5463                 if (rc < 0)
5464                         return -errno;
5465         }
5466
5467         return 0;
5468 }
5469
5470 int llapi_fswap_layouts(int fd1, int fd2, __u64 dv1, __u64 dv2, __u64 flags)
5471 {
5472         int     rc;
5473         int     grp_id;
5474
5475         do
5476                 grp_id = random();
5477         while (grp_id == 0);
5478
5479         rc = llapi_fswap_layouts_grouplock(fd1, fd2, dv1, dv2, grp_id, flags);
5480         if (rc < 0)
5481                 return rc;
5482
5483         return 0;
5484 }
5485
5486 /**
5487  * Swap the layouts between 2 files
5488  * the 2 files are open in write
5489  */
5490 int llapi_swap_layouts(const char *path1, const char *path2,
5491                        __u64 dv1, __u64 dv2, __u64 flags)
5492 {
5493         int     fd1, fd2, rc;
5494
5495         fd1 = open(path1, O_WRONLY | O_LOV_DELAY_CREATE);
5496         if (fd1 < 0) {
5497                 rc = -errno;
5498                 llapi_error(LLAPI_MSG_ERROR, rc,
5499                             "error: cannot open '%s' for write", path1);
5500                 goto out;
5501         }
5502
5503         fd2 = open(path2, O_WRONLY | O_LOV_DELAY_CREATE);
5504         if (fd2 < 0) {
5505                 rc = -errno;
5506                 llapi_error(LLAPI_MSG_ERROR, rc,
5507                             "error: cannot open '%s' for write", path2);
5508                 goto out_close;
5509         }
5510
5511         rc = llapi_fswap_layouts(fd1, fd2, dv1, dv2, flags);
5512         if (rc < 0)
5513                 llapi_error(LLAPI_MSG_ERROR, rc,
5514                             "error: cannot swap layout between '%s' and '%s'",
5515                             path1, path2);
5516
5517         close(fd2);
5518 out_close:
5519         close(fd1);
5520 out:
5521         return rc;
5522 }
5523
5524 /**
5525  * Attempt to open a file with Lustre file identifier \a fid
5526  * and return an open file descriptor.
5527  *
5528  * \param[in] lustre_dir        path within Lustre filesystem containing \a fid
5529  * \param[in] fid               Lustre file identifier of file to open
5530  * \param[in] flags             open() flags
5531  *
5532  * \retval                      non-negative file descriptor on successful open
5533  * \retval                      -1 if an error occurred
5534  */
5535 int llapi_open_by_fid(const char *lustre_dir, const struct lu_fid *fid,
5536                       int flags)
5537 {
5538         char mntdir[PATH_MAX];
5539         char path[PATH_MAX];
5540         int rc;
5541
5542         rc = llapi_search_mounts(lustre_dir, 0, mntdir, NULL);
5543         if (rc != 0)
5544                 return -1;
5545
5546         snprintf(path, sizeof(path), "%s/.lustre/fid/"DFID, mntdir, PFID(fid));
5547         return open(path, flags);
5548 }
5549
5550 /**
5551  * Take group lock.
5552  *
5553  * \param fd   File to lock.
5554  * \param gid  Group Identifier.
5555  *
5556  * \retval 0 on success.
5557  * \retval -errno on failure.
5558  */
5559 int llapi_group_lock(int fd, int gid)
5560 {
5561         int rc;
5562
5563         rc = ioctl(fd, LL_IOC_GROUP_LOCK, gid);
5564         if (rc < 0) {
5565                 rc = -errno;
5566                 llapi_error(LLAPI_MSG_ERROR, rc, "cannot get group lock");
5567         }
5568         return rc;
5569 }
5570
5571 /**
5572  * Put group lock.
5573  *
5574  * \param fd   File to unlock.
5575  * \param gid  Group Identifier.
5576  *
5577  * \retval 0 on success.
5578  * \retval -errno on failure.
5579  */
5580 int llapi_group_unlock(int fd, int gid)
5581 {
5582         int rc;
5583
5584         rc = ioctl(fd, LL_IOC_GROUP_UNLOCK, gid);
5585         if (rc < 0) {
5586                 rc = -errno;
5587                 llapi_error(LLAPI_MSG_ERROR, rc, "cannot put group lock");
5588         }
5589         return rc;
5590 }