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