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