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