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