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