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