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