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