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