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