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