Whamcloud - gitweb
LU-3846 test: Fix sanity test_56* with different layouts
[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         bool obdstripe = obdindex == OBD_NOT_FOUND;
2633         int i;
2634
2635         if (!obdstripe && !skip_objs) {
2636                 for (i = 0; !is_dir && i < lum->lmm_stripe_count; i++) {
2637                         if (obdindex == objects[i].l_ost_idx) {
2638                                 obdstripe = true;
2639                                 break;
2640                         }
2641                 }
2642         }
2643
2644         if (!obdstripe)
2645                 return;
2646
2647         lov_dump_user_lmm_header(lum, path, objects, header, depth, pool_name,
2648                                  flags);
2649
2650         if (!is_dir && !skip_objs && (header & VERBOSE_OBJID) &&
2651             !(lum->lmm_pattern & LOV_PATTERN_F_RELEASED)) {
2652                 char *space = "      - ";
2653
2654                 if (indent)
2655                         llapi_printf(LLAPI_MSG_NORMAL,
2656                                      "%6slmm_objects:\n", " ");
2657                 else if (yaml)
2658                         llapi_printf(LLAPI_MSG_NORMAL, "lmm_objects:\n");
2659                 else
2660                         llapi_printf(LLAPI_MSG_NORMAL,
2661                                 "\tobdidx\t\t objid\t\t objid\t\t group\n");
2662
2663                 for (i = 0; i < lum->lmm_stripe_count; i++) {
2664                         int idx = objects[i].l_ost_idx;
2665                         long long oid = ostid_id(&objects[i].l_ost_oi);
2666                         long long gr = ostid_seq(&objects[i].l_ost_oi);
2667
2668                         if (obdindex != OBD_NOT_FOUND && obdindex != idx)
2669                                 continue;
2670
2671                         if (yaml) {
2672                                 struct lu_fid fid = { 0 };
2673
2674                                 ostid_to_fid(&fid, &objects[i].l_ost_oi, idx);
2675                                 llapi_printf(LLAPI_MSG_NORMAL,
2676                                     "%sl_ost_idx: %d\n", space, idx);
2677                                 llapi_printf(LLAPI_MSG_NORMAL,
2678                                     "%8sl_fid:     "DFID_NOBRACE"\n",
2679                                     " ", PFID(&fid));
2680                         } else if (indent) {
2681                                 struct lu_fid fid = { 0 };
2682
2683                                 ostid_to_fid(&fid, &objects[i].l_ost_oi, idx);
2684                                 llapi_printf(LLAPI_MSG_NORMAL,
2685                                     "%s%d: { l_ost_idx: %d, l_fid: "DFID" }\n",
2686                                     space, i, idx, PFID(&fid));
2687                         } else {
2688                                 char fmt[48];
2689                                 sprintf(fmt, "%s%s%s\n",
2690                                         "\t%6u\t%14llu\t%#13llx\t",
2691                                         (fid_seq_is_rsvd(gr) ||
2692                                          fid_seq_is_mdt0(gr)) ?
2693                                          "%14llu" : "%#14llx", "%s");
2694                                 llapi_printf(LLAPI_MSG_NORMAL, fmt, idx, oid,
2695                                              oid, gr,
2696                                              obdindex == idx ? " *" : "");
2697                         }
2698                 }
2699         }
2700         llapi_printf(LLAPI_MSG_NORMAL, "\n");
2701 }
2702
2703 void lmv_dump_user_lmm(struct lmv_user_md *lum, char *pool_name,
2704                        char *path, int obdindex, int depth, int verbose,
2705                        enum lov_dump_flags flags)
2706 {
2707         struct lmv_user_mds_data *objects = lum->lum_objects;
2708         char *prefix = lum->lum_magic == LMV_USER_MAGIC ? "(Default)" : "";
2709         char *separator = "";
2710         bool yaml = flags & LDF_YAML;
2711         bool obdstripe = false;
2712         int i;
2713
2714         if (obdindex != OBD_NOT_FOUND) {
2715                 if (lum->lum_stripe_count == 0) {
2716                         if (obdindex == lum->lum_stripe_offset)
2717                                 obdstripe = true;
2718                 } else {
2719                         for (i = 0; i < lum->lum_stripe_count; i++) {
2720                                 if (obdindex == objects[i].lum_mds) {
2721                                         llapi_printf(LLAPI_MSG_NORMAL,
2722                                                      "%s%s\n", prefix,
2723                                                      path);
2724                                         obdstripe = true;
2725                                         break;
2726                                 }
2727                         }
2728                 }
2729         } else {
2730                 obdstripe = true;
2731         }
2732
2733         if (!obdstripe)
2734                 return;
2735
2736         /* show all information default */
2737         if (!verbose) {
2738                 if (lum->lum_magic == LMV_USER_MAGIC)
2739                         verbose = VERBOSE_POOL | VERBOSE_COUNT |
2740                                   VERBOSE_OFFSET | VERBOSE_HASH_TYPE;
2741                 else
2742                         verbose = VERBOSE_OBJID;
2743         }
2744
2745         if (depth && path && ((verbose != VERBOSE_OBJID)))
2746                 llapi_printf(LLAPI_MSG_NORMAL, "%s%s\n", prefix, path);
2747
2748         if (verbose & VERBOSE_COUNT) {
2749                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2750                 if (verbose & ~VERBOSE_COUNT)
2751                         llapi_printf(LLAPI_MSG_NORMAL, "lmv_stripe_count: ");
2752                 llapi_printf(LLAPI_MSG_NORMAL, "%u",
2753                              (int)lum->lum_stripe_count);
2754                 if ((verbose & VERBOSE_OFFSET) && !yaml)
2755                         separator = " ";
2756                 else
2757                         separator = "\n";
2758         }
2759
2760         if (verbose & VERBOSE_OFFSET) {
2761                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2762                 if (verbose & ~VERBOSE_OFFSET)
2763                         llapi_printf(LLAPI_MSG_NORMAL, "lmv_stripe_offset: ");
2764                 llapi_printf(LLAPI_MSG_NORMAL, "%d",
2765                              (int)lum->lum_stripe_offset);
2766                 if (verbose & VERBOSE_HASH_TYPE && !yaml)
2767                         separator = " ";
2768                 else
2769                         separator = "\n";
2770         }
2771
2772         if (verbose & VERBOSE_HASH_TYPE) {
2773                 unsigned int type = lum->lum_hash_type;
2774
2775                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2776                 if (verbose & ~VERBOSE_HASH_TYPE)
2777                         llapi_printf(LLAPI_MSG_NORMAL, "lmv_hash_type: ");
2778                 if (type < LMV_HASH_TYPE_MAX)
2779                         llapi_printf(LLAPI_MSG_NORMAL, "%s",
2780                                      mdt_hash_name[type]);
2781                 else
2782                         llapi_printf(LLAPI_MSG_NORMAL, "%d",
2783                                      (int)type);
2784                 separator = "\n";
2785         }
2786
2787         if (verbose & VERBOSE_OBJID && lum->lum_magic != LMV_USER_MAGIC) {
2788                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2789                 if (lum->lum_stripe_count > 0)
2790                         llapi_printf(LLAPI_MSG_NORMAL,
2791                                      "mdtidx\t\t FID[seq:oid:ver]\n");
2792                 for (i = 0; i < lum->lum_stripe_count; i++) {
2793                         int idx = objects[i].lum_mds;
2794                         struct lu_fid *fid = &objects[i].lum_fid;
2795                         if ((obdindex == OBD_NOT_FOUND) || (obdindex == idx))
2796                                 llapi_printf(LLAPI_MSG_NORMAL,
2797                                              "%6u\t\t "DFID"\t\t%s\n",
2798                                             idx, PFID(fid),
2799                                             obdindex == idx ? " *" : "");
2800                 }
2801
2802         }
2803
2804         if ((verbose & VERBOSE_POOL) && pool_name != NULL &&
2805              pool_name[0] != '\0') {
2806                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2807                 if (verbose & ~VERBOSE_POOL)
2808                         llapi_printf(LLAPI_MSG_NORMAL, "%slmv_pool:           ",
2809                                      prefix);
2810                 llapi_printf(LLAPI_MSG_NORMAL, "%s%c ", pool_name, ' ');
2811                 separator = "\n";
2812         }
2813
2814         if (!(verbose & VERBOSE_OBJID) || lum->lum_magic == LMV_USER_MAGIC)
2815                 llapi_printf(LLAPI_MSG_NORMAL, "\n");
2816 }
2817
2818 static void lov_dump_comp_v1_header(struct find_param *param, char *path,
2819                                     enum lov_dump_flags flags)
2820 {
2821         struct lov_comp_md_v1 *comp_v1 = (void *)&param->fp_lmd->lmd_lmm;
2822         int depth = param->fp_max_depth;
2823         int verbose = param->fp_verbose;
2824         bool yaml = flags & LDF_YAML;
2825
2826         if (depth && path && ((verbose != VERBOSE_OBJID) ||
2827                               !(flags & LDF_IS_DIR)) && !yaml)
2828                 llapi_printf(LLAPI_MSG_NORMAL, "%s\n", path);
2829
2830         if (verbose & VERBOSE_DETAIL) {
2831                 llapi_printf(LLAPI_MSG_NORMAL, "composite_header:\n");
2832                 llapi_printf(LLAPI_MSG_NORMAL, "%2slcm_magic:         0x%08X\n",
2833                              " ", comp_v1->lcm_magic);
2834                 llapi_printf(LLAPI_MSG_NORMAL, "%2slcm_size:          %u\n",
2835                              " ", comp_v1->lcm_size);
2836                 if (flags & LDF_IS_DIR)
2837                         llapi_printf(LLAPI_MSG_NORMAL,
2838                                      "%2slcm_flags:         %s\n", " ",
2839                                      comp_v1->lcm_mirror_count > 0 ?
2840                                                         "mirrored" : "");
2841                 else
2842                         llapi_printf(LLAPI_MSG_NORMAL,
2843                                      "%2slcm_flags:         %s\n",
2844                                      " ", lcm_flags_string(comp_v1->lcm_flags));
2845         }
2846
2847         if (verbose & VERBOSE_GENERATION) {
2848                 if (verbose & ~VERBOSE_GENERATION)
2849                         llapi_printf(LLAPI_MSG_NORMAL, "%2slcm_layout_gen:    ",
2850                                      " ");
2851                 llapi_printf(LLAPI_MSG_NORMAL, "%u\n", comp_v1->lcm_layout_gen);
2852         }
2853
2854         if (verbose & VERBOSE_MIRROR_COUNT) {
2855                 if (verbose & ~VERBOSE_MIRROR_COUNT)
2856                         llapi_printf(LLAPI_MSG_NORMAL, "%2slcm_mirror_count:  ",
2857                                      " ");
2858                 llapi_printf(LLAPI_MSG_NORMAL, "%u\n",
2859                              comp_v1->lcm_magic == LOV_USER_MAGIC_COMP_V1 ?
2860                              comp_v1->lcm_mirror_count + 1 : 1);
2861         }
2862
2863         if (verbose & VERBOSE_COMP_COUNT) {
2864                 if (verbose & ~VERBOSE_COMP_COUNT)
2865                         llapi_printf(LLAPI_MSG_NORMAL, "%2slcm_entry_count:   ",
2866                                      " ");
2867                 llapi_printf(LLAPI_MSG_NORMAL, "%u\n",
2868                              comp_v1->lcm_magic == LOV_USER_MAGIC_COMP_V1 ?
2869                              comp_v1->lcm_entry_count : 0);
2870         }
2871
2872         if (verbose & VERBOSE_DETAIL && !yaml)
2873                 llapi_printf(LLAPI_MSG_NORMAL, "components:\n");
2874 }
2875
2876 static void lcme_flags2str(__u32 comp_flags)
2877 {
2878         bool found = false;
2879         int i = 0;
2880
2881         if (!comp_flags) {
2882                 llapi_printf(LLAPI_MSG_NORMAL, "0");
2883                 return;
2884         }
2885         for (i = 0; i < ARRAY_SIZE(comp_flags_table); i++) {
2886                 if (comp_flags & comp_flags_table[i].cfn_flag) {
2887                         if (found)
2888                                 llapi_printf(LLAPI_MSG_NORMAL, ",");
2889                         llapi_printf(LLAPI_MSG_NORMAL, "%s",
2890                                      comp_flags_table[i].cfn_name);
2891                         comp_flags &= ~comp_flags_table[i].cfn_flag;
2892                         found = true;
2893                 }
2894         }
2895         if (comp_flags) {
2896                 if (found)
2897                         llapi_printf(LLAPI_MSG_NORMAL, ",");
2898                 llapi_printf(LLAPI_MSG_NORMAL, "%#x", comp_flags);
2899         }
2900 }
2901
2902 static void lov_dump_comp_v1_entry(struct find_param *param,
2903                                    enum lov_dump_flags flags, int index)
2904 {
2905         struct lov_comp_md_v1 *comp_v1 = (void *)&param->fp_lmd->lmd_lmm;
2906         struct lov_comp_md_entry_v1 *entry;
2907         char *separator = "";
2908         int verbose = param->fp_verbose;
2909         bool yaml = flags & LDF_YAML;
2910
2911         entry = &comp_v1->lcm_entries[index];
2912
2913         if (yaml)
2914                 llapi_printf(LLAPI_MSG_NORMAL, "%2scomponent%d:\n", " ", index);
2915
2916         if (verbose & VERBOSE_COMP_ID) {
2917                 if (verbose & VERBOSE_DETAIL && !yaml)
2918                         llapi_printf(LLAPI_MSG_NORMAL,
2919                                      "%slcme_id:             ", "  - ");
2920                 else if (verbose & ~VERBOSE_COMP_ID)
2921                         llapi_printf(LLAPI_MSG_NORMAL,
2922                                      "%4slcme_id:             ", " ");
2923                 if (entry->lcme_id != LCME_ID_INVAL)
2924                         llapi_printf(LLAPI_MSG_NORMAL, "%u", entry->lcme_id);
2925                 else
2926                         llapi_printf(LLAPI_MSG_NORMAL, "N/A");
2927                 separator = "\n";
2928         }
2929
2930         if (verbose & VERBOSE_COMP_FLAGS) {
2931                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2932                 if (verbose & ~VERBOSE_COMP_FLAGS)
2933                         llapi_printf(LLAPI_MSG_NORMAL,
2934                                      "%4slcme_flags:          ", " ");
2935                 lcme_flags2str(entry->lcme_flags);
2936                 separator = "\n";
2937         }
2938
2939         if (verbose & VERBOSE_COMP_START) {
2940                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2941                 if (verbose & ~VERBOSE_COMP_START)
2942                         llapi_printf(LLAPI_MSG_NORMAL,
2943                                      "%4slcme_extent.e_start: ", " ");
2944                 llapi_printf(LLAPI_MSG_NORMAL, "%llu",
2945                              entry->lcme_extent.e_start);
2946                 separator = "\n";
2947         }
2948
2949         if (verbose & VERBOSE_COMP_END) {
2950                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2951                 if (verbose & ~VERBOSE_COMP_END)
2952                         llapi_printf(LLAPI_MSG_NORMAL,
2953                                      "%4slcme_extent.e_end:   ", " ");
2954                 if (entry->lcme_extent.e_end == LUSTRE_EOF)
2955                         llapi_printf(LLAPI_MSG_NORMAL, "%s", "EOF");
2956                 else
2957                         llapi_printf(LLAPI_MSG_NORMAL, "%llu",
2958                                         entry->lcme_extent.e_end);
2959                 separator = "\n";
2960         }
2961
2962         if (yaml) {
2963                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2964                 llapi_printf(LLAPI_MSG_NORMAL, "%4ssub_layout:\n", " ");
2965         } else if (verbose & VERBOSE_DETAIL) {
2966                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2967                 llapi_printf(LLAPI_MSG_NORMAL, "%4slcme_offset:         %u\n",
2968                              " ", entry->lcme_offset);
2969                 llapi_printf(LLAPI_MSG_NORMAL, "%4slcme_size:           %u\n",
2970                              " ", entry->lcme_size);
2971                 llapi_printf(LLAPI_MSG_NORMAL, "%4ssub_layout:\n", " ");
2972         } else {
2973                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2974         }
2975 }
2976
2977 /* Check if the value matches 1 of the given criteria (e.g. --atime +/-N).
2978  * @mds indicates if this is MDS timestamps and there are attributes on OSTs.
2979  *
2980  * The result is -1 if it does not match, 0 if not yet clear, 1 if matches.
2981  * The table below gives the answers for the specified parameters (value and
2982  * sign), 1st column is the answer for the MDS value, the 2nd is for the OST:
2983  * --------------------------------------
2984  * 1 | file > limit; sign > 0 | -1 / -1 |
2985  * 2 | file = limit; sign > 0 | -1 / -1 |
2986  * 3 | file < limit; sign > 0 |  ? /  1 |
2987  * 4 | file > limit; sign = 0 | -1 / -1 |
2988  * 5 | file = limit; sign = 0 |  ? /  1 |  <- (see the Note below)
2989  * 6 | file < limit; sign = 0 |  ? / -1 |
2990  * 7 | file > limit; sign < 0 |  1 /  1 |
2991  * 8 | file = limit; sign < 0 |  ? / -1 |
2992  * 9 | file < limit; sign < 0 |  ? / -1 |
2993  * --------------------------------------
2994  * Note: 5th actually means that the value is within the interval
2995  * (limit - margin, limit]. */
2996 static int find_value_cmp(unsigned long long file, unsigned long long limit,
2997                           int sign, int negopt, unsigned long long margin,
2998                           int mds)
2999 {
3000         int ret = -1;
3001
3002         if (sign > 0) {
3003                 /* Drop the fraction of margin (of days). */
3004                 if (file + margin <= limit)
3005                         ret = mds ? 0 : 1;
3006         } else if (sign == 0) {
3007                 if (file <= limit && file + margin > limit)
3008                         ret = mds ? 0 : 1;
3009                 else if (file + margin <= limit)
3010                         ret = mds ? 0 : -1;
3011         } else if (sign < 0) {
3012                 if (file > limit)
3013                         ret = 1;
3014                 else if (mds)
3015                         ret = 0;
3016         }
3017
3018         return negopt ? ~ret + 1 : ret;
3019 }
3020
3021 static inline struct lov_user_md *
3022 lov_comp_entry(struct lov_comp_md_v1 *comp_v1, int ent_idx)
3023 {
3024         return (struct lov_user_md *)((char *)comp_v1 +
3025                         comp_v1->lcm_entries[ent_idx].lcme_offset);
3026 }
3027
3028 static inline struct lov_user_ost_data_v1 *
3029 lov_v1v3_objects(struct lov_user_md *v1)
3030 {
3031         if (v1->lmm_magic == LOV_USER_MAGIC_V3)
3032                 return ((struct lov_user_md_v3 *)v1)->lmm_objects;
3033         else
3034                 return v1->lmm_objects;
3035 }
3036
3037 static inline void
3038 lov_v1v3_pool_name(struct lov_user_md *v1, char *pool_name)
3039 {
3040         if (v1->lmm_magic == LOV_USER_MAGIC_V3)
3041                 strlcpy(pool_name, ((struct lov_user_md_v3 *)v1)->lmm_pool_name,
3042                         LOV_MAXPOOLNAME);
3043         else
3044                 pool_name[0] = '\0';
3045 }
3046
3047 static inline bool
3048 print_last_init_comp(struct find_param *param)
3049 {
3050         /* print all component info */
3051         if ((param->fp_verbose & VERBOSE_DEFAULT) == VERBOSE_DEFAULT)
3052                 return false;
3053
3054         /* print specific component info */
3055         if (param->fp_check_comp_id || param->fp_check_comp_flags ||
3056             param->fp_check_comp_start || param->fp_check_comp_end)
3057                 return false;
3058
3059         return true;
3060 }
3061
3062 static int find_comp_end_cmp(unsigned long long end, struct find_param *param)
3063 {
3064         int match;
3065
3066         if (param->fp_comp_end == LUSTRE_EOF) {
3067                 if (param->fp_comp_end_sign == 0) /* equal to EOF */
3068                         match = end == LUSTRE_EOF ? 1 : -1;
3069                 else if (param->fp_comp_end_sign > 0) /* at most EOF */
3070                         match = end == LUSTRE_EOF ? -1 : 1;
3071                 else /* at least EOF */
3072                         match = -1;
3073                 if (param->fp_exclude_comp_end)
3074                         match = ~match + 1;
3075         } else {
3076                 unsigned long long margin;
3077
3078                 margin = end == LUSTRE_EOF ? 0 : param->fp_comp_end_units;
3079                 match = find_value_cmp(end, param->fp_comp_end,
3080                                        param->fp_comp_end_sign,
3081                                        param->fp_exclude_comp_end, margin, 0);
3082         }
3083
3084         return match;
3085 }
3086
3087 /**
3088  * An example of "getstripe -v" for a two components PFL file:
3089  *
3090  * composite_header:
3091  * lcm_magic:       0x0BD60BD0
3092  * lcm_size:        264
3093  * lcm_flags:       0
3094  * lcm_layout_gen:  2
3095  * lcm_entry_count: 2
3096  * components:
3097  * - lcme_id:             1
3098  *   lcme_flags:          0x10
3099  *   lcme_extent.e_start: 0
3100  *   lcme_extent.e_end:   1048576
3101  *   lcme_offset:         128
3102  *   lcme_size:           56
3103  *   sub_layout:
3104  *     lmm_magic:         0x0BD10BD0
3105  *     lmm_seq:           0x200000401
3106  *     lmm_object_id:     0x1
3107  *     lmm_fid:           [0x200000401:0x1:0x0]
3108  *     lmm_stripe_count:  1
3109  *     lmm_stripe_size:   1048576
3110  *     lmm_pattern:       raid0
3111  *     lmm_layout_gen:    0
3112  *     lmm_stripe_offset: 0
3113  *     lmm_objects:
3114  *     - 0: { l_ost_idx: 0, l_fid: [0x100000000:0x2:0x0] }
3115  *
3116  * - lcme_id:             2
3117  *   lcme_flags:          0x10
3118  *   lcme_extent.e_start: 1048576
3119  *   lcme_extent.e_end:   EOF
3120  *   lcme_offset:         184
3121  *   lcme_size:           80
3122  *     sub_layout:
3123  *     lmm_magic:         0x0BD10BD0
3124  *     lmm_seq:           0x200000401
3125  *     lmm_object_id:     0x1
3126  *     lmm_fid:           [0x200000401:0x1:0x0]
3127  *     lmm_stripe_count:  2
3128  *     lmm_stripe_size:   1048576
3129  *     lmm_pattern:       raid0
3130  *     lmm_layout_gen:    0
3131  *     lmm_stripe_offset: 1
3132  *     lmm_objects:
3133  *     - 0: { l_ost_idx: 1, l_fid: [0x100010000:0x2:0x0] }
3134  *     - 1: { l_ost_idx: 0, l_fid: [0x100000000:0x3:0x0] }
3135  */
3136 static void lov_dump_comp_v1(struct find_param *param, char *path,
3137                              enum lov_dump_flags flags)
3138 {
3139         struct lov_comp_md_entry_v1 *entry;
3140         struct lov_user_ost_data_v1 *objects;
3141         struct lov_comp_md_v1 *comp_v1 = (void *)&param->fp_lmd->lmd_lmm;
3142         struct lov_user_md_v1 *v1;
3143         char pool_name[LOV_MAXPOOLNAME + 1];
3144         int obdindex = param->fp_obd_index;
3145         int i, j, match;
3146         bool obdstripe = false;
3147
3148         if (obdindex != OBD_NOT_FOUND) {
3149                 for (i = 0; !(flags & LDF_IS_DIR) && !obdstripe &&
3150                             i < comp_v1->lcm_entry_count; i++) {
3151                         if (!(comp_v1->lcm_entries[i].lcme_flags &
3152                               LCME_FL_INIT))
3153                                 continue;
3154
3155                         v1 = lov_comp_entry(comp_v1, i);
3156                         objects = lov_v1v3_objects(v1);
3157
3158                         for (j = 0; j < v1->lmm_stripe_count; j++) {
3159                                 if (obdindex == objects[j].l_ost_idx) {
3160                                         obdstripe = true;
3161                                         break;
3162                                 }
3163                         }
3164                 }
3165         } else {
3166                 obdstripe = true;
3167         }
3168
3169         if (!obdstripe)
3170                 return;
3171
3172         lov_dump_comp_v1_header(param, path, flags);
3173
3174         flags |= LDF_INDENT;
3175
3176         for (i = 0; i < comp_v1->lcm_entry_count; i++) {
3177                 entry = &comp_v1->lcm_entries[i];
3178
3179                 if (param->fp_check_comp_flags) {
3180                         if ((param->fp_exclude_comp_flags &&
3181                              (param->fp_comp_flags & entry->lcme_flags)) ||
3182                             (!param->fp_exclude_comp_flags &&
3183                              !(param->fp_comp_flags & entry->lcme_flags)))
3184                                 continue;
3185                 }
3186
3187                 if (param->fp_check_comp_id &&
3188                     param->fp_comp_id != entry->lcme_id)
3189                         continue;
3190
3191                 if (param->fp_check_comp_start) {
3192                         match = find_value_cmp(entry->lcme_extent.e_start,
3193                                                param->fp_comp_start,
3194                                                param->fp_comp_start_sign,
3195                                                0,
3196                                                param->fp_comp_start_units, 0);
3197                         if (match == -1)
3198                                 continue;
3199                 }
3200
3201                 if (param->fp_check_comp_end) {
3202                         match = find_comp_end_cmp(entry->lcme_extent.e_end,
3203                                                   param);
3204                         if (match == -1)
3205                                 continue;
3206                 }
3207
3208                 if (print_last_init_comp(param)) {
3209                         /**
3210                          * if part of stripe info is needed, we'd print only
3211                          * the last instantiated component info.
3212                          */
3213                         if (entry->lcme_flags & LCME_FL_INIT)
3214                                 continue;
3215                         else
3216                                 break;
3217                 }
3218
3219                 if (entry->lcme_flags & LCME_FL_INIT) {
3220                         if (obdindex != OBD_NOT_FOUND) {
3221                                 flags |= LDF_SKIP_OBJS;
3222                                 v1 = lov_comp_entry(comp_v1, i);
3223                                 objects = lov_v1v3_objects(v1);
3224
3225                                 for (j = 0; j < v1->lmm_stripe_count; j++) {
3226                                         if (obdindex == objects[j].l_ost_idx) {
3227                                                 flags &= ~LDF_SKIP_OBJS;
3228                                                 break;
3229                                         }
3230                                 }
3231                         } else {
3232                                 flags &= ~LDF_SKIP_OBJS;
3233                         }
3234                 } else {
3235                         flags |= LDF_SKIP_OBJS;
3236                 }
3237
3238                 if (obdindex != OBD_NOT_FOUND && (flags & LDF_SKIP_OBJS))
3239                         continue;
3240                 lov_dump_comp_v1_entry(param, flags, i);
3241
3242                 v1 = lov_comp_entry(comp_v1, i);
3243                 objects = lov_v1v3_objects(v1);
3244                 lov_v1v3_pool_name(v1, pool_name);
3245
3246                 lov_dump_user_lmm_v1v3(v1, pool_name, objects, path, obdindex,
3247                                        param->fp_max_depth, param->fp_verbose,
3248                                        flags);
3249         }
3250         if (print_last_init_comp(param)) {
3251                 /**
3252                  * directory layout contains only layout template, print the
3253                  * last component.
3254                  */
3255                 if (i == 0)
3256                         i = comp_v1->lcm_entry_count - 1;
3257                 else
3258                         i--;
3259                 flags &= ~LDF_SKIP_OBJS;
3260
3261                 lov_dump_comp_v1_entry(param, flags, i);
3262
3263                 v1 = lov_comp_entry(comp_v1, i);
3264                 objects = lov_v1v3_objects(v1);
3265                 lov_v1v3_pool_name(v1, pool_name);
3266
3267                 lov_dump_user_lmm_v1v3(v1, pool_name, objects, path, obdindex,
3268                                        param->fp_max_depth, param->fp_verbose,
3269                                        flags);
3270         }
3271 }
3272
3273 #define VERBOSE_COMP_OPTS       (VERBOSE_COMP_COUNT | VERBOSE_COMP_ID | \
3274                                  VERBOSE_COMP_START | VERBOSE_COMP_END | \
3275                                  VERBOSE_COMP_FLAGS)
3276
3277 static inline bool has_any_comp_options(struct find_param *param)
3278 {
3279         int verbose = param->fp_verbose;
3280
3281         if (param->fp_check_comp_id || param->fp_check_comp_count ||
3282             param->fp_check_comp_start || param->fp_check_comp_end ||
3283             param->fp_check_comp_flags)
3284                 return true;
3285
3286         /* show full layout information, not component specific */
3287         if ((verbose & ~VERBOSE_DETAIL) == VERBOSE_DEFAULT)
3288                 return false;
3289
3290         return verbose & VERBOSE_COMP_OPTS;
3291 }
3292
3293 struct lov_user_mds_data *lov_forge_comp_v1(struct lov_user_mds_data *orig,
3294                                             bool is_dir)
3295 {
3296         struct lov_user_md *lum = &orig->lmd_lmm;
3297         struct lov_user_mds_data *new;
3298         struct lov_comp_md_v1 *comp_v1;
3299         struct lov_comp_md_entry_v1 *ent;
3300         int lum_off = sizeof(*comp_v1) + sizeof(*ent);
3301         int lum_size = lov_user_md_size(is_dir ? 0 : lum->lmm_stripe_count,
3302                                         lum->lmm_magic);
3303
3304         new = malloc(sizeof(lstat_t) + lum_off + lum_size);
3305         if (new == NULL) {
3306                 llapi_printf(LLAPI_MSG_NORMAL, "out of memory\n");
3307                 return new;
3308         }
3309
3310         memcpy(new, orig, sizeof(lstat_t));
3311
3312         comp_v1 = (struct lov_comp_md_v1 *)&new->lmd_lmm;
3313         comp_v1->lcm_magic = lum->lmm_magic;
3314         comp_v1->lcm_size = lum_off + lum_size;
3315         comp_v1->lcm_layout_gen = is_dir ? 0 : lum->lmm_layout_gen;
3316         comp_v1->lcm_flags = 0;
3317         comp_v1->lcm_entry_count = 1;
3318
3319         ent = &comp_v1->lcm_entries[0];
3320         ent->lcme_id = 0;
3321         ent->lcme_flags = is_dir ? 0 : LCME_FL_INIT;
3322         ent->lcme_extent.e_start = 0;
3323         ent->lcme_extent.e_end = LUSTRE_EOF;
3324         ent->lcme_offset = lum_off;
3325         ent->lcme_size = lum_size;
3326
3327         memcpy((char *)comp_v1 + lum_off, lum, lum_size);
3328
3329         return new;
3330 }
3331
3332 static void lov_dump_plain_user_lmm(struct find_param *param, char *path,
3333                                     enum lov_dump_flags flags)
3334 {
3335         __u32 magic = *(__u32 *)&param->fp_lmd->lmd_lmm;
3336
3337         if (has_any_comp_options(param)) {
3338                 struct lov_user_mds_data *new_lmd, *orig_lmd;
3339
3340                 orig_lmd = param->fp_lmd;
3341                 new_lmd = lov_forge_comp_v1(orig_lmd, flags & LDF_IS_DIR);
3342                 if (new_lmd != NULL) {
3343                         param->fp_lmd = new_lmd;
3344                         lov_dump_comp_v1(param, path, flags);
3345                         param->fp_lmd = orig_lmd;
3346                         free(new_lmd);
3347                 }
3348                 return;
3349         }
3350
3351         if (magic == LOV_USER_MAGIC_V1) {
3352                 lov_dump_user_lmm_v1v3(&param->fp_lmd->lmd_lmm, NULL,
3353                                        param->fp_lmd->lmd_lmm.lmm_objects,
3354                                        path, param->fp_obd_index,
3355                                        param->fp_max_depth, param->fp_verbose,
3356                                        flags);
3357         } else {
3358                 char pool_name[LOV_MAXPOOLNAME + 1];
3359                 struct lov_user_ost_data_v1 *objects;
3360                 struct lov_user_md_v3 *lmmv3 = (void *)&param->fp_lmd->lmd_lmm;
3361
3362                 strlcpy(pool_name, lmmv3->lmm_pool_name, sizeof(pool_name));
3363                 objects = lmmv3->lmm_objects;
3364                 lov_dump_user_lmm_v1v3(&param->fp_lmd->lmd_lmm, pool_name,
3365                                        objects, path, param->fp_obd_index,
3366                                        param->fp_max_depth, param->fp_verbose,
3367                                        flags);
3368         }
3369 }
3370
3371 static void llapi_lov_dump_user_lmm(struct find_param *param, char *path,
3372                                     enum lov_dump_flags flags)
3373 {
3374         __u32 magic;
3375
3376         if (param->fp_get_lmv || param->fp_get_default_lmv)
3377                 magic = (__u32)param->fp_lmv_md->lum_magic;
3378         else
3379                 magic = *(__u32 *)&param->fp_lmd->lmd_lmm; /* lum->lmm_magic */
3380
3381         if (param->fp_raw)
3382                 flags |= LDF_IS_RAW;
3383         if (param->fp_yaml)
3384                 flags |= LDF_YAML;
3385
3386         switch (magic) {
3387         case LOV_USER_MAGIC_V1:
3388         case LOV_USER_MAGIC_V3:
3389                 lov_dump_plain_user_lmm(param, path, flags);
3390                 break;
3391         case LMV_MAGIC_V1:
3392         case LMV_USER_MAGIC: {
3393                 char pool_name[LOV_MAXPOOLNAME + 1];
3394                 struct lmv_user_md *lum;
3395
3396                 lum = (struct lmv_user_md *)param->fp_lmv_md;
3397                 strlcpy(pool_name, lum->lum_pool_name, sizeof(pool_name));
3398                 lmv_dump_user_lmm(lum, pool_name, path, param->fp_obd_index,
3399                                   param->fp_max_depth, param->fp_verbose,
3400                                   flags);
3401                 break;
3402         }
3403         case LOV_USER_MAGIC_COMP_V1:
3404                 lov_dump_comp_v1(param, path, flags);
3405                 break;
3406         default:
3407                 llapi_printf(LLAPI_MSG_NORMAL, "unknown lmm_magic:  %#x "
3408                              "(expecting one of %#x %#x %#x %#x)\n",
3409                              *(__u32 *)&param->fp_lmd->lmd_lmm,
3410                              LOV_USER_MAGIC_V1, LOV_USER_MAGIC_V3,
3411                              LMV_USER_MAGIC, LMV_MAGIC_V1);
3412                 return;
3413         }
3414 }
3415
3416 int llapi_file_get_stripe(const char *path, struct lov_user_md *lum)
3417 {
3418         const char *fname;
3419         char *dname;
3420         int fd, rc = 0;
3421
3422         fname = strrchr(path, '/');
3423
3424         /* It should be a file (or other non-directory) */
3425         if (fname == NULL) {
3426                 dname = (char *)malloc(2);
3427                 if (dname == NULL)
3428                         return -ENOMEM;
3429                 strcpy(dname, ".");
3430                 fname = (char *)path;
3431         } else {
3432                 dname = (char *)malloc(fname - path + 1);
3433                 if (dname == NULL)
3434                         return -ENOMEM;
3435                 strncpy(dname, path, fname - path);
3436                 dname[fname - path] = '\0';
3437                 fname++;
3438         }
3439
3440         fd = open(dname, O_RDONLY | O_NONBLOCK);
3441         if (fd == -1) {
3442                 rc = -errno;
3443                 free(dname);
3444                 return rc;
3445         }
3446
3447         strcpy((char *)lum, fname);
3448         if (ioctl(fd, IOC_MDC_GETFILESTRIPE, (void *)lum) == -1)
3449                 rc = -errno;
3450
3451         if (close(fd) == -1 && rc == 0)
3452                 rc = -errno;
3453
3454         free(dname);
3455         return rc;
3456 }
3457
3458 int llapi_file_lookup(int dirfd, const char *name)
3459 {
3460         struct obd_ioctl_data data = { 0 };
3461         char rawbuf[8192];
3462         char *buf = rawbuf;
3463         int rc;
3464
3465         if (dirfd < 0 || name == NULL)
3466                 return -EINVAL;
3467
3468         data.ioc_version = OBD_IOCTL_VERSION;
3469         data.ioc_len = sizeof(data);
3470         data.ioc_inlbuf1 = (char *)name;
3471         data.ioc_inllen1 = strlen(name) + 1;
3472
3473         rc = obd_ioctl_pack(&data, &buf, sizeof(rawbuf));
3474         if (rc) {
3475                 llapi_error(LLAPI_MSG_ERROR, rc,
3476                             "error: IOC_MDC_LOOKUP pack failed for '%s': rc %d",
3477                             name, rc);
3478                 return rc;
3479         }
3480
3481         rc = ioctl(dirfd, IOC_MDC_LOOKUP, buf);
3482         if (rc < 0)
3483                 rc = -errno;
3484         return rc;
3485 }
3486
3487 /* Check if the file time matches all the given criteria (e.g. --atime +/-N).
3488  * Return -1 or 1 if file timestamp does not or does match the given criteria
3489  * correspondingly. Return 0 if the MDS time is being checked and there are
3490  * attributes on OSTs and it is not yet clear if the timespamp matches.
3491  *
3492  * If 0 is returned, we need to do another RPC to the OSTs to obtain the
3493  * updated timestamps. */
3494 static int find_time_check(lstat_t *st, struct find_param *param, int mds)
3495 {
3496         int rc = 1;
3497         int rc2;
3498
3499         /* Check if file is accepted. */
3500         if (param->fp_atime) {
3501                 rc2 = find_value_cmp(st->st_atime, param->fp_atime,
3502                                      param->fp_asign, param->fp_exclude_atime,
3503                                      24 * 60 * 60, mds);
3504                 if (rc2 < 0)
3505                         return rc2;
3506                 rc = rc2;
3507         }
3508
3509         if (param->fp_mtime) {
3510                 rc2 = find_value_cmp(st->st_mtime, param->fp_mtime,
3511                                      param->fp_msign, param->fp_exclude_mtime,
3512                                      24 * 60 * 60, mds);
3513                 if (rc2 < 0)
3514                         return rc2;
3515
3516                 /* If the previous check matches, but this one is not yet clear,
3517                  * we should return 0 to do an RPC on OSTs. */
3518                 if (rc == 1)
3519                         rc = rc2;
3520         }
3521
3522         if (param->fp_ctime) {
3523                 rc2 = find_value_cmp(st->st_ctime, param->fp_ctime,
3524                                      param->fp_csign, param->fp_exclude_ctime,
3525                                      24 * 60 * 60, mds);
3526                 if (rc2 < 0)
3527                         return rc2;
3528
3529                 /* If the previous check matches, but this one is not yet clear,
3530                  * we should return 0 to do an RPC on OSTs. */
3531                 if (rc == 1)
3532                         rc = rc2;
3533         }
3534
3535         return rc;
3536 }
3537
3538 /**
3539  * Check whether the stripes matches the indexes user provided
3540  *       1   : matched
3541  *       0   : Unmatched
3542  */
3543 static int check_obd_match(struct find_param *param)
3544 {
3545         struct lov_user_ost_data_v1 *objects;
3546         struct lov_comp_md_v1 *comp_v1 = NULL;
3547         struct lov_user_md_v1 *v1 = &param->fp_lmd->lmd_lmm;
3548         lstat_t *st = &param->fp_lmd->lmd_st;
3549         int i, j, k, count = 1;
3550
3551         if (param->fp_obd_uuid && param->fp_obd_index == OBD_NOT_FOUND)
3552                 return 0;
3553
3554         if (!S_ISREG(st->st_mode))
3555                 return 0;
3556
3557         /* Only those files should be accepted, which have a
3558          * stripe on the specified OST. */
3559         if (v1->lmm_magic == LOV_USER_MAGIC_COMP_V1) {
3560                 comp_v1 = (struct lov_comp_md_v1 *)v1;
3561                 count = comp_v1->lcm_entry_count;
3562         }
3563
3564         for (i = 0; i < count; i++) {
3565                 if (comp_v1)
3566                         v1 = lov_comp_entry(comp_v1, i);
3567
3568                 objects = lov_v1v3_objects(v1);
3569
3570                 for (j = 0; j < v1->lmm_stripe_count; j++) {
3571                         if (comp_v1 && !(comp_v1->lcm_entries[i].lcme_flags &
3572                                          LCME_FL_INIT))
3573                                 continue;
3574                         for (k = 0; k < param->fp_num_obds; k++) {
3575                                 if (param->fp_obd_indexes[k] ==
3576                                     objects[j].l_ost_idx)
3577                                         return !param->fp_exclude_obd;
3578                         }
3579                 }
3580         }
3581
3582         return param->fp_exclude_obd;
3583 }
3584
3585 static int check_mdt_match(struct find_param *param)
3586 {
3587         int i;
3588
3589         if (param->fp_mdt_uuid && param->fp_mdt_index == OBD_NOT_FOUND)
3590                 return 0;
3591
3592         /* FIXME: For striped dir, we should get stripe information and check */
3593         for (i = 0; i < param->fp_num_mdts; i++) {
3594                 if (param->fp_mdt_indexes[i] == param->fp_file_mdt_index)
3595                         return !param->fp_exclude_mdt;
3596         }
3597
3598         if (param->fp_exclude_mdt)
3599                 return 1;
3600
3601         return 0;
3602 }
3603
3604 /**
3605  * Check whether the obd is active or not, if it is
3606  * not active, just print the object affected by this
3607  * failed target
3608  **/
3609 static int print_failed_tgt(struct find_param *param, char *path, int type)
3610 {
3611         struct obd_statfs stat_buf;
3612         struct obd_uuid uuid_buf;
3613         int ret;
3614
3615         if (type != LL_STATFS_LOV && type != LL_STATFS_LMV)
3616                 return -EINVAL;
3617
3618         memset(&stat_buf, 0, sizeof(struct obd_statfs));
3619         memset(&uuid_buf, 0, sizeof(struct obd_uuid));
3620         ret = llapi_obd_statfs(path, type,
3621                                param->fp_obd_index, &stat_buf,
3622                                &uuid_buf);
3623         if (ret) {
3624                 llapi_printf(LLAPI_MSG_NORMAL,
3625                              "obd_uuid: %s failed %s ",
3626                              param->fp_obd_uuid->uuid,
3627                              strerror(errno));
3628         }
3629
3630         return ret;
3631 }
3632
3633 static int find_check_stripe_size(struct find_param *param)
3634 {
3635         struct lov_comp_md_v1 *comp_v1 = NULL;
3636         struct lov_user_md_v1 *v1 = &param->fp_lmd->lmd_lmm;
3637         int ret, i, count = 1;
3638
3639         if (v1->lmm_magic == LOV_USER_MAGIC_COMP_V1) {
3640                 comp_v1 = (struct lov_comp_md_v1 *)v1;
3641                 count = comp_v1->lcm_entry_count;
3642                 ret = param->fp_exclude_stripe_size ? 1 : -1;
3643         }
3644
3645         for (i = 0; i < count; i++) {
3646                 if (comp_v1)
3647                         v1 = lov_comp_entry(comp_v1, i);
3648
3649                 ret = find_value_cmp(v1->lmm_stripe_size, param->fp_stripe_size,
3650                                      param->fp_stripe_size_sign,
3651                                      param->fp_exclude_stripe_size,
3652                                      param->fp_stripe_size_units, 0);
3653                 /* If any stripe_size matches */
3654                 if (ret != -1)
3655                         break;
3656         }
3657
3658         return ret;
3659 }
3660
3661 static __u32 find_get_stripe_count(struct find_param *param)
3662 {
3663         struct lov_comp_md_v1 *comp_v1 = NULL;
3664         struct lov_user_md_v1 *v1 = &param->fp_lmd->lmd_lmm;
3665         int i, count = 1;
3666         __u32 stripe_count = 0;
3667
3668         if (v1->lmm_magic == LOV_USER_MAGIC_COMP_V1) {
3669                 comp_v1 = (struct lov_comp_md_v1 *)v1;
3670                 count = comp_v1->lcm_entry_count;
3671         }
3672
3673         for (i = 0; i < count; i++) {
3674                 if (comp_v1)
3675                         v1 = lov_comp_entry(comp_v1, i);
3676                 stripe_count += v1->lmm_stripe_count;
3677         }
3678
3679         return stripe_count;
3680 }
3681
3682 #define LOV_PATTERN_INVALID     0xFFFFFFFF
3683
3684 static int find_check_layout(struct find_param *param)
3685 {
3686         struct lov_comp_md_v1 *comp_v1 = NULL;
3687         struct lov_user_md_v1 *v1 = &param->fp_lmd->lmd_lmm;
3688         int i, count = 1;
3689         bool found = false, valid = false;
3690
3691         if (v1->lmm_magic == LOV_USER_MAGIC_COMP_V1) {
3692                 comp_v1 = (struct lov_comp_md_v1 *)v1;
3693                 count = comp_v1->lcm_entry_count;
3694         }
3695
3696         for (i = 0; i < count; i++) {
3697                 if (comp_v1)
3698                         v1 = lov_comp_entry(comp_v1, i);
3699
3700                 if (v1->lmm_pattern == LOV_PATTERN_INVALID)
3701                         continue;
3702
3703                 valid = true;
3704                 if (v1->lmm_pattern & param->fp_layout) {
3705                         found = true;
3706                         break;
3707                 }
3708         }
3709
3710         if (!valid)
3711                 return -1;
3712
3713         if ((found && !param->fp_exclude_layout) ||
3714             (!found && param->fp_exclude_layout))
3715                 return 1;
3716
3717         return -1;
3718 }
3719
3720 static int find_check_pool(struct find_param *param)
3721 {
3722         struct lov_comp_md_v1 *comp_v1 = NULL;
3723         struct lov_user_md_v1 *v1 = &param->fp_lmd->lmd_lmm;
3724         struct lov_user_md_v3 *v3 = (void *)v1;
3725         int i, count = 1;
3726         bool found = false;
3727
3728         if (v1->lmm_magic == LOV_USER_MAGIC_COMP_V1) {
3729                 comp_v1 = (struct lov_comp_md_v1 *)v1;
3730                 count = comp_v1->lcm_entry_count;
3731                 /* empty requested pool is taken as no pool search */
3732                 if (count == 0 && param->fp_poolname[0] == '\0')
3733                         found = true;
3734         }
3735
3736         for (i = 0; i < count; i++) {
3737                 if (comp_v1 != NULL)
3738                         v1 = lov_comp_entry(comp_v1, i);
3739
3740                 if (((v1->lmm_magic == LOV_USER_MAGIC_V1) &&
3741                      (param->fp_poolname[0] == '\0')) ||
3742                     ((v1->lmm_magic == LOV_USER_MAGIC_V3) &&
3743                      (strncmp(v3->lmm_pool_name,
3744                               param->fp_poolname, LOV_MAXPOOLNAME) == 0)) ||
3745                     ((v1->lmm_magic == LOV_USER_MAGIC_V3) &&
3746                      (strcmp(param->fp_poolname, "*") == 0))) {
3747                         found = true;
3748                         break;
3749                 }
3750         }
3751
3752         if ((found && !param->fp_exclude_pool) ||
3753             (!found && param->fp_exclude_pool))
3754                 return 1;
3755
3756         return -1;
3757 }
3758
3759 static int find_check_comp_options(struct find_param *param)
3760 {
3761         lstat_t *st = &param->fp_lmd->lmd_st;
3762         struct lov_comp_md_v1 *comp_v1, *forged_v1 = NULL;
3763         struct lov_user_md_v1 *v1 = &param->fp_lmd->lmd_lmm;
3764         struct lov_comp_md_entry_v1 *entry;
3765         int i, ret = 0;
3766
3767         if (v1->lmm_magic == LOV_USER_MAGIC_COMP_V1) {
3768                 comp_v1 = (struct lov_comp_md_v1 *)v1;
3769         } else {
3770                 forged_v1 = malloc(sizeof(*forged_v1) + sizeof(*entry));
3771                 if (forged_v1 == NULL)
3772                         return -1;
3773                 comp_v1 = forged_v1;
3774                 comp_v1->lcm_entry_count = 1;
3775                 entry = &comp_v1->lcm_entries[0];
3776                 entry->lcme_flags = S_ISDIR(st->st_mode) ? 0 : LCME_FL_INIT;
3777                 entry->lcme_extent.e_start = 0;
3778                 entry->lcme_extent.e_end = LUSTRE_EOF;
3779         }
3780
3781         /* invalid case, don't match for any kind of search. */
3782         if (comp_v1->lcm_entry_count == 0) {
3783                 ret = -1;
3784                 goto out;
3785         }
3786
3787         if (param->fp_check_comp_count) {
3788                 ret = find_value_cmp(forged_v1 ? 0 : comp_v1->lcm_entry_count,
3789                                      param->fp_comp_count,
3790                                      param->fp_comp_count_sign,
3791                                      param->fp_exclude_comp_count, 1, 0);
3792                 if (ret == -1)
3793                         goto out;
3794         }
3795
3796         ret = 1;
3797         for (i = 0; i < comp_v1->lcm_entry_count; i++) {
3798                 entry = &comp_v1->lcm_entries[i];
3799
3800                 if (param->fp_check_comp_flags) {
3801                         if (((entry->lcme_flags & param->fp_comp_flags) &&
3802                              param->fp_exclude_comp_flags) ||
3803                             (!(entry->lcme_flags & param->fp_comp_flags) &&
3804                              !param->fp_exclude_comp_flags))
3805                                 ret = -1;
3806                         else
3807                                 ret = 1;
3808
3809                         if (ret == -1)
3810                                 continue;
3811                 }
3812
3813                 if (param->fp_check_comp_start) {
3814                         ret = find_value_cmp(entry->lcme_extent.e_start,
3815                                              param->fp_comp_start,
3816                                              param->fp_comp_start_sign,
3817                                              param->fp_exclude_comp_start,
3818                                              param->fp_comp_start_units, 0);
3819                         if (ret == -1)
3820                                 continue;
3821                 }
3822
3823                 if (param->fp_check_comp_end) {
3824                         ret = find_comp_end_cmp(entry->lcme_extent.e_end,
3825                                                 param);
3826                         if (ret == -1)
3827                                 continue;
3828                 }
3829
3830                 /* the component matches all criteria */
3831                 break;
3832         }
3833 out:
3834         if (forged_v1 != NULL)
3835                 free(forged_v1);
3836         return ret;
3837 }
3838
3839 static bool find_check_lmm_info(struct find_param *param)
3840 {
3841         return param->fp_check_pool || param->fp_check_stripe_count ||
3842                param->fp_check_stripe_size || param->fp_check_layout ||
3843                param->fp_check_comp_count || param->fp_check_comp_end ||
3844                param->fp_check_comp_start || param->fp_check_comp_flags ||
3845                param->fp_check_projid;
3846 }
3847
3848 /*
3849  * Get file/directory project id.
3850  * by the open fd resides on.
3851  * Return 0 and project id on success, or -ve errno.
3852  */
3853 static int fget_projid(int fd, int *projid)
3854 {
3855         struct fsxattr fsx;
3856         int rc;
3857
3858         rc = ioctl(fd, LL_IOC_FSGETXATTR, &fsx);
3859         if (rc)
3860                 return -errno;
3861
3862         *projid = fsx.fsx_projid;
3863         return 0;
3864 }
3865
3866 static int cb_find_init(char *path, DIR *parent, DIR **dirp,
3867                         void *data, struct dirent64 *de)
3868 {
3869         struct find_param *param = (struct find_param *)data;
3870         DIR *dir = dirp == NULL ? NULL : *dirp;
3871         int decision = 1; /* 1 is accepted; -1 is rejected. */
3872         lstat_t *st = &param->fp_lmd->lmd_st;
3873         int lustre_fs = 1;
3874         int checked_type = 0;
3875         int ret = 0;
3876         __u32 stripe_count = 0;
3877         int fd = -2;
3878
3879         if (parent == NULL && dir == NULL)
3880                 return -EINVAL;
3881
3882         /* If a regular expression is presented, make the initial decision */
3883         if (param->fp_pattern != NULL) {
3884                 char *fname = strrchr(path, '/');
3885                 fname = (fname == NULL ? path : fname + 1);
3886                 ret = fnmatch(param->fp_pattern, fname, 0);
3887                 if ((ret == FNM_NOMATCH && !param->fp_exclude_pattern) ||
3888                     (ret == 0 && param->fp_exclude_pattern))
3889                         goto decided;
3890         }
3891
3892         /* See if we can check the file type from the dirent. */
3893         if (param->fp_type != 0 && de != NULL && de->d_type != DT_UNKNOWN) {
3894                 checked_type = 1;
3895
3896                 if (DTTOIF(de->d_type) == param->fp_type) {
3897                         if (param->fp_exclude_type)
3898                                 goto decided;
3899                 } else {
3900                         if (!param->fp_exclude_type)
3901                                 goto decided;
3902                 }
3903         }
3904
3905         ret = 0;
3906
3907         /* Request MDS for the stat info if some of these parameters need
3908          * to be compared. */
3909         if (param->fp_obd_uuid || param->fp_mdt_uuid ||
3910             param->fp_check_uid || param->fp_check_gid ||
3911             param->fp_atime || param->fp_mtime || param->fp_ctime ||
3912             param->fp_check_size || find_check_lmm_info(param) ||
3913             param->fp_check_mdt_count || param->fp_check_hash_type)
3914                 decision = 0;
3915
3916         if (param->fp_type != 0 && checked_type == 0)
3917                 decision = 0;
3918
3919         if (decision == 0) {
3920                 if (param->fp_check_mdt_count || param->fp_check_hash_type) {
3921                         param->fp_get_lmv = 1;
3922                         ret = cb_get_dirstripe(path, dir, param);
3923                         if (ret != 0)
3924                                 return ret;
3925                 }
3926
3927                 param->fp_lmd->lmd_lmm.lmm_magic = 0;
3928                 ret = get_lmd_info(path, parent, dir, param->fp_lmd,
3929                                    param->fp_lum_size);
3930                 if (ret == 0 && param->fp_lmd->lmd_lmm.lmm_magic == 0 &&
3931                     find_check_lmm_info(param)) {
3932                         struct lov_user_md *lmm = &param->fp_lmd->lmd_lmm;
3933
3934                         /* We need to "fake" the "use the default" values
3935                          * since the lmm struct is zeroed out at this point. */
3936                         lmm->lmm_magic = LOV_USER_MAGIC_V1;
3937                         lmm->lmm_pattern = LOV_PATTERN_DEFAULT;
3938                         if (!param->fp_raw)
3939                                 ostid_set_seq(&lmm->lmm_oi,
3940                                               FID_SEQ_LOV_DEFAULT);
3941                         lmm->lmm_stripe_size = 0;
3942                         lmm->lmm_stripe_count = 0;
3943                         lmm->lmm_stripe_offset = -1;
3944                 }
3945                 if (ret == 0 && param->fp_mdt_uuid != NULL) {
3946                         if (dir != NULL) {
3947                                 ret = llapi_file_fget_mdtidx(dirfd(dir),
3948                                                      &param->fp_file_mdt_index);
3949                         } else if (S_ISREG(st->st_mode)) {
3950                                 /* FIXME: we could get the MDT index from the
3951                                  * file's FID in lmd->lmd_lmm.lmm_oi without
3952                                  * opening the file, once we are sure that
3953                                  * LFSCK2 (2.6) has fixed up pre-2.0 LOV EAs.
3954                                  * That would still be an ioctl() to map the
3955                                  * FID to the MDT, but not an open RPC. */
3956                                 fd = open(path, O_RDONLY);
3957                                 if (fd > 0) {
3958                                         ret = llapi_file_fget_mdtidx(fd,
3959                                                      &param->fp_file_mdt_index);
3960                                 } else {
3961                                         ret = -errno;
3962                                 }
3963                         } else {
3964                                 /* For a special file, we assume it resides on
3965                                  * the same MDT as the parent directory. */
3966                                 ret = llapi_file_fget_mdtidx(dirfd(parent),
3967                                                      &param->fp_file_mdt_index);
3968                         }
3969                 }
3970                 if (ret != 0) {
3971                         if (ret == -ENOTTY)
3972                                 lustre_fs = 0;
3973                         if (ret == -ENOENT)
3974                                 goto decided;
3975
3976                         goto out;
3977                 } else {
3978                         stripe_count = find_get_stripe_count(param);
3979                 }
3980         }
3981
3982         if (param->fp_type && !checked_type) {
3983                 if ((st->st_mode & S_IFMT) == param->fp_type) {
3984                         if (param->fp_exclude_type)
3985                                 goto decided;
3986                 } else {
3987                         if (!param->fp_exclude_type)
3988                                 goto decided;
3989                 }
3990         }
3991
3992         /* Prepare odb. */
3993         if (param->fp_obd_uuid || param->fp_mdt_uuid) {
3994                 if (lustre_fs && param->fp_got_uuids &&
3995                     param->fp_dev != st->st_dev) {
3996                         /* A lustre/lustre mount point is crossed. */
3997                         param->fp_got_uuids = 0;
3998                         param->fp_obds_printed = 0;
3999                         param->fp_mdt_index = OBD_NOT_FOUND;
4000                         param->fp_obd_index = OBD_NOT_FOUND;
4001                 }
4002
4003                 if (lustre_fs && !param->fp_got_uuids) {
4004                         ret = setup_target_indexes(dir ? dir : parent, path,
4005                                                    param);
4006                         if (ret)
4007                                 goto out;
4008
4009                         param->fp_dev = st->st_dev;
4010                 } else if (!lustre_fs && param->fp_got_uuids) {
4011                         /* A lustre/non-lustre mount point is crossed. */
4012                         param->fp_got_uuids = 0;
4013                         param->fp_mdt_index = OBD_NOT_FOUND;
4014                         param->fp_obd_index = OBD_NOT_FOUND;
4015                 }
4016         }
4017
4018         if (param->fp_check_stripe_size) {
4019                 decision = find_check_stripe_size(param);
4020                 if (decision == -1)
4021                         goto decided;
4022         }
4023
4024         if (param->fp_check_stripe_count) {
4025                 decision = find_value_cmp(stripe_count, param->fp_stripe_count,
4026                                           param->fp_stripe_count_sign,
4027                                           param->fp_exclude_stripe_count, 1, 0);
4028                 if (decision == -1)
4029                         goto decided;
4030         }
4031
4032         if (param->fp_check_mdt_count) {
4033                 decision = find_value_cmp(
4034                                 param->fp_lmv_md->lum_stripe_count,
4035                                 param->fp_mdt_count,
4036                                 param->fp_mdt_count_sign,
4037                                 param->fp_exclude_mdt_count, 1, 0);
4038                 if (decision == -1)
4039                         goto decided;
4040         }
4041
4042         if (param->fp_check_layout) {
4043                 decision = find_check_layout(param);
4044                 if (decision == -1)
4045                         goto decided;
4046         }
4047
4048         if (param->fp_check_hash_type) {
4049                 __u32 found;
4050
4051                 found = param->fp_lmv_md->lum_hash_type & param->fp_hash_type;
4052                 if ((found && param->fp_exclude_hash_type) ||
4053                     (!found && !param->fp_exclude_hash_type)) {
4054                         decision = -1;
4055                         goto decided;
4056                 }
4057         }
4058
4059         /* If an OBD UUID is specified but none matches, skip this file. */
4060         if ((param->fp_obd_uuid && param->fp_obd_index == OBD_NOT_FOUND) ||
4061             (param->fp_mdt_uuid && param->fp_mdt_index == OBD_NOT_FOUND))
4062                 goto decided;
4063
4064         /* If an OST or MDT UUID is given, and some OST matches,
4065          * check it here. */
4066         if (param->fp_obd_index != OBD_NOT_FOUND ||
4067             param->fp_mdt_index != OBD_NOT_FOUND) {
4068                 if (param->fp_obd_uuid) {
4069                         if (check_obd_match(param)) {
4070                                 /* If no mdtuuid is given, we are done.
4071                                  * Otherwise, fall through to the mdtuuid
4072                                  * check below. */
4073                                 if (!param->fp_mdt_uuid)
4074                                         goto obd_matches;
4075                         } else {
4076                                 goto decided;
4077                         }
4078                 }
4079
4080                 if (param->fp_mdt_uuid) {
4081                         if (check_mdt_match(param))
4082                                 goto obd_matches;
4083                         goto decided;
4084                 }
4085         }
4086
4087 obd_matches:
4088         if (param->fp_check_uid) {
4089                 if (st->st_uid == param->fp_uid) {
4090                         if (param->fp_exclude_uid)
4091                                 goto decided;
4092                 } else {
4093                         if (!param->fp_exclude_uid)
4094                                 goto decided;
4095                 }
4096         }
4097
4098         if (param->fp_check_gid) {
4099                 if (st->st_gid == param->fp_gid) {
4100                         if (param->fp_exclude_gid)
4101                                 goto decided;
4102                 } else {
4103                         if (!param->fp_exclude_gid)
4104                                 goto decided;
4105                 }
4106         }
4107
4108         if (param->fp_check_projid) {
4109                 int projid = 0;
4110
4111                 if (fd == -2)
4112                         fd = open(path, O_RDONLY);
4113
4114                 if (fd > 0)
4115                         ret = fget_projid(fd, &projid);
4116                 else
4117                         ret = -errno;
4118                 if (ret)
4119                         goto out;
4120                 if (projid == param->fp_projid) {
4121                         if (param->fp_exclude_uid)
4122                                 goto decided;
4123                 } else {
4124                         if (!param->fp_exclude_projid)
4125                                 goto decided;
4126                 }
4127         }
4128
4129         if (param->fp_check_pool) {
4130                 decision = find_check_pool(param);
4131                 if (decision == -1)
4132                         goto decided;
4133         }
4134
4135         if (param->fp_check_comp_count || param->fp_check_comp_flags ||
4136             param->fp_check_comp_start || param->fp_check_comp_end) {
4137                 decision = find_check_comp_options(param);
4138                 if (decision == -1)
4139                         goto decided;
4140         }
4141
4142         /* Check the time on mds. */
4143         decision = 1;
4144         if (param->fp_atime || param->fp_mtime || param->fp_ctime) {
4145                 int for_mds;
4146
4147                 for_mds = lustre_fs ?
4148                         (S_ISREG(st->st_mode) && stripe_count) : 0;
4149                 decision = find_time_check(st, param, for_mds);
4150                 if (decision == -1)
4151                         goto decided;
4152         }
4153
4154         /* If file still fits the request, ask ost for updated info.
4155            The regular stat is almost of the same speed as some new
4156            'glimpse-size-ioctl'. */
4157
4158         if (param->fp_check_size && S_ISREG(st->st_mode) && stripe_count)
4159                 decision = 0;
4160
4161         if (param->fp_check_size && S_ISDIR(st->st_mode))
4162                 decision = 0;
4163
4164         if (!decision) {
4165                 /* For regular files with the stripe the decision may have not
4166                  * been taken yet if *time or size is to be checked. */
4167                 if (param->fp_obd_index != OBD_NOT_FOUND)
4168                         print_failed_tgt(param, path, LL_STATFS_LOV);
4169
4170                 if (param->fp_mdt_index != OBD_NOT_FOUND)
4171                         print_failed_tgt(param, path, LL_STATFS_LMV);
4172
4173                 if (dir != NULL)
4174                         ret = fstat_f(dirfd(dir), st);
4175                 else if (de != NULL)
4176                         ret = fstatat_f(dirfd(parent), de->d_name, st,
4177                                         AT_SYMLINK_NOFOLLOW);
4178                 else
4179                         ret = lstat_f(path, st);
4180
4181                 if (ret) {
4182                         if (errno == ENOENT) {
4183                                 llapi_error(LLAPI_MSG_ERROR, -ENOENT,
4184                                             "warning: %s: %s does not exist",
4185                                             __func__, path);
4186                                 goto decided;
4187                         } else {
4188                                 ret = -errno;
4189                                 llapi_error(LLAPI_MSG_ERROR, ret,
4190                                             "%s: IOC_LOV_GETINFO on %s failed",
4191                                             __func__, path);
4192                                 goto out;
4193                         }
4194                 }
4195
4196                 /* Check the time on osc. */
4197                 decision = find_time_check(st, param, 0);
4198                 if (decision == -1)
4199                         goto decided;
4200         }
4201
4202         if (param->fp_check_size)
4203                 decision = find_value_cmp(st->st_size, param->fp_size,
4204                                           param->fp_size_sign,
4205                                           param->fp_exclude_size,
4206                                           param->fp_size_units, 0);
4207
4208         if (decision != -1) {
4209                 llapi_printf(LLAPI_MSG_NORMAL, "%s", path);
4210                 if (param->fp_zero_end)
4211                         llapi_printf(LLAPI_MSG_NORMAL, "%c", '\0');
4212                 else
4213                         llapi_printf(LLAPI_MSG_NORMAL, "\n");
4214         }
4215
4216 decided:
4217         ret = 0;
4218         /* Do not get down anymore? */
4219         if (param->fp_depth == param->fp_max_depth) {
4220                 ret = 1;
4221                 goto out;
4222         }
4223         param->fp_depth++;
4224 out:
4225         if (fd > 0)
4226                 close(fd);
4227         return ret;
4228 }
4229
4230 static int cb_migrate_mdt_init(char *path, DIR *parent, DIR **dirp,
4231                                void *param_data, struct dirent64 *de)
4232 {
4233         struct find_param       *param = (struct find_param *)param_data;
4234         DIR                     *tmp_parent = parent;
4235         char                    raw[MAX_IOC_BUFLEN] = {'\0'};
4236         char                    *rawbuf = raw;
4237         struct obd_ioctl_data   data = { 0 };
4238         int                     fd;
4239         int                     ret;
4240         char                    *path_copy;
4241         char                    *filename;
4242         bool                    retry = false;
4243
4244         if (parent == NULL && dirp == NULL)
4245                 return -EINVAL;
4246
4247         if (dirp != NULL)
4248                 closedir(*dirp);
4249
4250         if (parent == NULL) {
4251                 tmp_parent = opendir_parent(path);
4252                 if (tmp_parent == NULL) {
4253                         *dirp = NULL;
4254                         ret = -errno;
4255                         llapi_error(LLAPI_MSG_ERROR, ret,
4256                                     "can not open %s", path);
4257                         return ret;
4258                 }
4259         }
4260
4261         fd = dirfd(tmp_parent);
4262
4263         path_copy = strdup(path);
4264         filename = basename(path_copy);
4265         data.ioc_inlbuf1 = (char *)filename;
4266         data.ioc_inllen1 = strlen(filename) + 1;
4267         data.ioc_inlbuf2 = (char *)&param->fp_mdt_index;
4268         data.ioc_inllen2 = sizeof(param->fp_mdt_index);
4269         ret = obd_ioctl_pack(&data, &rawbuf, sizeof(raw));
4270         if (ret != 0) {
4271                 llapi_error(LLAPI_MSG_ERROR, ret,
4272                             "llapi_obd_statfs: error packing ioctl data");
4273                 goto out;
4274         }
4275
4276 migrate:
4277         ret = ioctl(fd, LL_IOC_MIGRATE, rawbuf);
4278         if (ret != 0) {
4279                 if (errno == EBUSY && !retry) {
4280                         /* because migrate may not be able to lock all involved
4281                          * objects in order, for some of them it try lock, while
4282                          * there may be conflicting COS locks and cause migrate
4283                          * fail with EBUSY, hope a sync() could cause
4284                          * transaction commit and release these COS locks. */
4285                         sync();
4286                         retry = true;
4287                         goto migrate;
4288                 }
4289                 ret = -errno;
4290                 fprintf(stderr, "%s migrate failed: %s (%d)\n",
4291                         path, strerror(-ret), ret);
4292                 goto out;
4293         } else if (param->fp_verbose & VERBOSE_DETAIL) {
4294                 fprintf(stdout, "migrate %s to MDT%d\n",
4295                         path, param->fp_mdt_index);
4296         }
4297
4298 out:
4299         if (dirp != NULL) {
4300                 /* If the directory is being migration, we need
4301                  * close the directory after migration,
4302                  * so the old directory cache will be cleanup
4303                  * on the client side, and re-open to get the
4304                  * new directory handle */
4305                 *dirp = opendir(path);
4306                 if (*dirp == NULL) {
4307                         ret = -errno;
4308                         llapi_error(LLAPI_MSG_ERROR, ret,
4309                                     "%s: Failed to open '%s'", __func__, path);
4310                 }
4311         }
4312
4313         if (parent == NULL)
4314                 closedir(tmp_parent);
4315
4316         free(path_copy);
4317
4318         return ret;
4319 }
4320
4321 int llapi_migrate_mdt(char *path, struct find_param *param)
4322 {
4323         return param_callback(path, cb_migrate_mdt_init, cb_common_fini, param);
4324 }
4325
4326 int llapi_mv(char *path, struct find_param *param)
4327 {
4328 #if LUSTRE_VERSION_CODE > OBD_OCD_VERSION(2, 9, 59, 0)
4329         static bool printed;
4330
4331         if (!printed) {
4332                 llapi_error(LLAPI_MSG_ERROR, -ESTALE,
4333                             "llapi_mv() is deprecated, use llapi_migrate_mdt()\n");
4334                 printed = true;
4335         }
4336 #endif
4337         return llapi_migrate_mdt(path, param);
4338 }
4339
4340 int llapi_find(char *path, struct find_param *param)
4341 {
4342         return param_callback(path, cb_find_init, cb_common_fini, param);
4343 }
4344
4345 /*
4346  * Get MDT number that the file/directory inode referenced
4347  * by the open fd resides on.
4348  * Return 0 and mdtidx on success, or -ve errno.
4349  */
4350 int llapi_file_fget_mdtidx(int fd, int *mdtidx)
4351 {
4352         if (ioctl(fd, LL_IOC_GET_MDTIDX, mdtidx) < 0)
4353                 return -errno;
4354         return 0;
4355 }
4356
4357 static int cb_get_mdt_index(char *path, DIR *parent, DIR **dirp, void *data,
4358                             struct dirent64 *de)
4359 {
4360         struct find_param *param = (struct find_param *)data;
4361         DIR *d = dirp == NULL ? NULL : *dirp;
4362         int ret;
4363         int mdtidx;
4364
4365         if (parent == NULL && d == NULL)
4366                 return -EINVAL;
4367
4368         if (d != NULL) {
4369                 ret = llapi_file_fget_mdtidx(dirfd(d), &mdtidx);
4370         } else /* if (parent) */ {
4371                 int fd;
4372
4373                 fd = open(path, O_RDONLY | O_NOCTTY);
4374                 if (fd > 0) {
4375                         ret = llapi_file_fget_mdtidx(fd, &mdtidx);
4376                         close(fd);
4377                 } else {
4378                         ret = -errno;
4379                 }
4380         }
4381
4382         if (ret != 0) {
4383                 if (ret == -ENODATA) {
4384                         if (!param->fp_obd_uuid)
4385                                 llapi_printf(LLAPI_MSG_NORMAL,
4386                                              "'%s' has no stripe info\n", path);
4387                         goto out;
4388                 } else if (ret == -ENOENT) {
4389                         llapi_error(LLAPI_MSG_WARN, ret,
4390                                     "warning: %s: '%s' does not exist",
4391                                     __func__, path);
4392                         goto out;
4393                 } else if (ret == -ENOTTY) {
4394                         llapi_error(LLAPI_MSG_ERROR, ret,
4395                                     "%s: '%s' not on a Lustre fs",
4396                                     __func__, path);
4397                 } else {
4398                         llapi_error(LLAPI_MSG_ERROR, ret,
4399                                     "error: %s: '%s' failed get_mdtidx",
4400                                     __func__, path);
4401                 }
4402                 return ret;
4403         }
4404
4405         if (param->fp_quiet || !(param->fp_verbose & VERBOSE_DETAIL))
4406                 llapi_printf(LLAPI_MSG_NORMAL, "%d\n", mdtidx);
4407         else
4408                 llapi_printf(LLAPI_MSG_NORMAL, "%s\nmdt_index:\t%d\n",
4409                              path, mdtidx);
4410
4411 out:
4412         /* Do not go down anymore? */
4413         if (param->fp_depth == param->fp_max_depth)
4414                 return 1;
4415
4416         param->fp_depth++;
4417
4418         return 0;
4419 }
4420
4421 static int cb_getstripe(char *path, DIR *parent, DIR **dirp, void *data,
4422                         struct dirent64 *de)
4423 {
4424         struct find_param *param = (struct find_param *)data;
4425         DIR *d = dirp == NULL ? NULL : *dirp;
4426         int ret = 0;
4427
4428         if (parent == NULL && d == NULL)
4429                 return -EINVAL;
4430
4431         if (param->fp_obd_uuid) {
4432                 param->fp_quiet = 1;
4433                 ret = setup_obd_uuid(d ? dirfd(d) : dirfd(parent), path, param);
4434                 if (ret)
4435                         return ret;
4436         }
4437
4438         if (d) {
4439                 if (param->fp_get_lmv || param->fp_get_default_lmv) {
4440                         ret = cb_get_dirstripe(path, d, param);
4441                 } else {
4442                         ret = ioctl(dirfd(d), LL_IOC_LOV_GETSTRIPE,
4443                                      (void *)&param->fp_lmd->lmd_lmm);
4444                 }
4445
4446         } else if (parent && !param->fp_get_lmv && !param->fp_get_default_lmv) {
4447                 char *fname = strrchr(path, '/');
4448                 fname = (fname == NULL ? path : fname + 1);
4449
4450                 strlcpy((char *)&param->fp_lmd->lmd_lmm, fname,
4451                         param->fp_lum_size);
4452
4453                 ret = ioctl(dirfd(parent), IOC_MDC_GETFILESTRIPE,
4454                             (void *)&param->fp_lmd->lmd_lmm);
4455         } else {
4456                 return 0;
4457         }
4458
4459         if (ret) {
4460                 if (errno == ENODATA && d != NULL) {
4461                         /* We need to "fake" the "use the default" values
4462                          * since the lmm struct is zeroed out at this point.
4463                          * The magic needs to be set in order to satisfy
4464                          * a check later on in the code path.
4465                          * The object_seq needs to be set for the "(Default)"
4466                          * prefix to be displayed. */
4467                         if (param->fp_get_default_lmv) {
4468                                 struct lmv_user_md *lum = param->fp_lmv_md;
4469
4470                                 lum->lum_magic = LMV_USER_MAGIC;
4471                                 lum->lum_stripe_count = 0;
4472                                 lum->lum_stripe_offset = -1;
4473                                 goto dump;
4474                         } else if (param->fp_get_lmv) {
4475                                 struct lmv_user_md *lum = param->fp_lmv_md;
4476                                 int mdtidx;
4477
4478                                 ret = llapi_file_fget_mdtidx(dirfd(d), &mdtidx);
4479                                 if (ret != 0)
4480                                         goto err_out;
4481                                 lum->lum_magic = LMV_MAGIC_V1;
4482                                 lum->lum_stripe_count = 0;
4483                                 lum->lum_stripe_offset = mdtidx;
4484                                 goto dump;
4485                         } else {
4486                                 struct lov_user_md *lmm =
4487                                         &param->fp_lmd->lmd_lmm;
4488
4489                                 lmm->lmm_magic = LOV_USER_MAGIC_V1;
4490                                 if (!param->fp_raw)
4491                                         ostid_set_seq(&lmm->lmm_oi,
4492                                                       FID_SEQ_LOV_DEFAULT);
4493                                 lmm->lmm_stripe_count = 0;
4494                                 lmm->lmm_stripe_size = 0;
4495                                 lmm->lmm_stripe_offset = -1;
4496                                 goto dump;
4497                         }
4498                 } else if (errno == ENODATA && parent != NULL) {
4499                         if (!param->fp_obd_uuid && !param->fp_mdt_uuid)
4500                                 llapi_printf(LLAPI_MSG_NORMAL,
4501                                              "%s has no stripe info\n", path);
4502                         goto out;
4503                 } else if (errno == ENOENT) {
4504                         llapi_error(LLAPI_MSG_WARN, -ENOENT,
4505                                     "warning: %s: %s does not exist",
4506                                     __func__, path);
4507                         goto out;
4508                 } else if (errno == ENOTTY) {
4509                         ret = -errno;
4510                         llapi_error(LLAPI_MSG_ERROR, ret,
4511                                     "%s: '%s' not on a Lustre fs?",
4512                                     __func__, path);
4513                 } else {
4514                         ret = -errno;
4515 err_out:
4516                         llapi_error(LLAPI_MSG_ERROR, ret,
4517                                     "error: %s: %s failed for %s",
4518                                      __func__, d ? "LL_IOC_LOV_GETSTRIPE" :
4519                                     "IOC_MDC_GETFILESTRIPE", path);
4520                 }
4521
4522                 return ret;
4523         }
4524
4525 dump:
4526         if (!(param->fp_verbose & VERBOSE_MDTINDEX))
4527                 llapi_lov_dump_user_lmm(param, path, d ? LDF_IS_DIR : 0);
4528
4529 out:
4530         /* Do not get down anymore? */
4531         if (param->fp_depth == param->fp_max_depth)
4532                 return 1;
4533
4534         param->fp_depth++;
4535
4536         return 0;
4537 }
4538
4539 int llapi_getstripe(char *path, struct find_param *param)
4540 {
4541         return param_callback(path, (param->fp_verbose & VERBOSE_MDTINDEX) ?
4542                               cb_get_mdt_index : cb_getstripe,
4543                               cb_common_fini, param);
4544 }
4545
4546 int llapi_obd_fstatfs(int fd, __u32 type, __u32 index,
4547                       struct obd_statfs *stat_buf, struct obd_uuid *uuid_buf)
4548 {
4549         char raw[MAX_IOC_BUFLEN] = {'\0'};
4550         char *rawbuf = raw;
4551         struct obd_ioctl_data data = { 0 };
4552         int rc = 0;
4553
4554         data.ioc_inlbuf1 = (char *)&type;
4555         data.ioc_inllen1 = sizeof(__u32);
4556         data.ioc_inlbuf2 = (char *)&index;
4557         data.ioc_inllen2 = sizeof(__u32);
4558         data.ioc_pbuf1 = (char *)stat_buf;
4559         data.ioc_plen1 = sizeof(struct obd_statfs);
4560         data.ioc_pbuf2 = (char *)uuid_buf;
4561         data.ioc_plen2 = sizeof(struct obd_uuid);
4562
4563         rc = obd_ioctl_pack(&data, &rawbuf, sizeof(raw));
4564         if (rc != 0) {
4565                 llapi_error(LLAPI_MSG_ERROR, rc,
4566                             "llapi_obd_statfs: error packing ioctl data");
4567                 return rc;
4568         }
4569
4570         rc = ioctl(fd, IOC_OBD_STATFS, (void *)rawbuf);
4571
4572         return rc < 0 ? -errno : 0;
4573 }
4574
4575 int llapi_obd_statfs(char *path, __u32 type, __u32 index,
4576                      struct obd_statfs *stat_buf, struct obd_uuid *uuid_buf)
4577 {
4578         int fd;
4579         int rc;
4580
4581         fd = open(path, O_RDONLY);
4582         if (fd < 0) {
4583                 rc = -errno;
4584                 llapi_error(LLAPI_MSG_ERROR, rc, "error: %s: opening '%s'",
4585                             __func__, path);
4586                 /* If we can't even open a file on the filesystem (e.g. with
4587                  * -ESHUTDOWN), force caller to exit or it will loop forever. */
4588                 return -ENODEV;
4589         }
4590
4591         rc = llapi_obd_fstatfs(fd, type, index, stat_buf, uuid_buf);
4592
4593         close(fd);
4594
4595         return rc;
4596 }
4597
4598 #define MAX_STRING_SIZE 128
4599
4600 int llapi_ping(char *obd_type, char *obd_name)
4601 {
4602         glob_t path;
4603         char buf[1];
4604         int rc, fd;
4605
4606         rc = cfs_get_param_paths(&path, "%s/%s/ping",
4607                                 obd_type, obd_name);
4608         if (rc != 0)
4609                 return -errno;
4610
4611         fd = open(path.gl_pathv[0], O_WRONLY);
4612         if (fd < 0) {
4613                 rc = -errno;
4614                 llapi_error(LLAPI_MSG_ERROR, rc, "error opening %s",
4615                             path.gl_pathv[0]);
4616                 goto failed;
4617         }
4618
4619         /* The purpose is to send a byte as a ping, whatever this byte is. */
4620         /* coverity[uninit_use_in_call] */
4621         rc = write(fd, buf, 1);
4622         if (rc < 0)
4623                 rc = -errno;
4624         close(fd);
4625
4626         if (rc == 1)
4627                 rc = 0;
4628 failed:
4629         cfs_free_param_data(&path);
4630         return rc;
4631 }
4632
4633 int llapi_target_iterate(int type_num, char **obd_type,
4634                          void *args, llapi_cb_t cb)
4635 {
4636         char buf[MAX_STRING_SIZE];
4637         int i, rc = 0;
4638         glob_t param;
4639         FILE *fp;
4640
4641         rc = cfs_get_param_paths(&param, "devices");
4642         if (rc != 0)
4643                 return -ENOENT;
4644
4645         fp = fopen(param.gl_pathv[0], "r");
4646         if (fp == NULL) {
4647                 rc = -errno;
4648                 llapi_error(LLAPI_MSG_ERROR, rc, "error: opening '%s'",
4649                             param.gl_pathv[0]);
4650                 goto free_path;
4651         }
4652
4653         while (fgets(buf, sizeof(buf), fp) != NULL) {
4654                 char *obd_type_name = NULL;
4655                 char *obd_name = NULL;
4656                 char *obd_uuid = NULL;
4657                 char *bufp = buf;
4658                 struct obd_statfs osfs_buffer;
4659
4660                 while(bufp[0] == ' ')
4661                         ++bufp;
4662
4663                 for(i = 0; i < 3; i++) {
4664                         obd_type_name = strsep(&bufp, " ");
4665                 }
4666                 obd_name = strsep(&bufp, " ");
4667                 obd_uuid = strsep(&bufp, " ");
4668
4669                 memset(&osfs_buffer, 0, sizeof (osfs_buffer));
4670
4671                 for (i = 0; i < type_num; i++) {
4672                         if (strcmp(obd_type_name, obd_type[i]) != 0)
4673                                 continue;
4674
4675                         cb(obd_type_name, obd_name, obd_uuid, args);
4676                 }
4677         }
4678         fclose(fp);
4679 free_path:
4680         cfs_free_param_data(&param);
4681         return 0;
4682 }
4683
4684 static void do_target_check(char *obd_type_name, char *obd_name,
4685                             char *obd_uuid, void *args)
4686 {
4687         int rc;
4688
4689         rc = llapi_ping(obd_type_name, obd_name);
4690         if (rc == ENOTCONN) {
4691                 llapi_printf(LLAPI_MSG_NORMAL, "%s inactive.\n", obd_name);
4692         } else if (rc) {
4693                 llapi_error(LLAPI_MSG_ERROR, rc, "error: check '%s'", obd_name);
4694         } else {
4695                 llapi_printf(LLAPI_MSG_NORMAL, "%s active.\n", obd_name);
4696         }
4697 }
4698
4699 int llapi_target_check(int type_num, char **obd_type, char *dir)
4700 {
4701         return llapi_target_iterate(type_num, obd_type, NULL, do_target_check);
4702 }
4703
4704 #undef MAX_STRING_SIZE
4705
4706 /* Is this a lustre fs? */
4707 int llapi_is_lustre_mnttype(const char *type)
4708 {
4709         return (strcmp(type, "lustre") == 0 || strcmp(type,"lustre_lite") == 0);
4710 }
4711
4712 /* Is this a lustre client fs? */
4713 int llapi_is_lustre_mnt(struct mntent *mnt)
4714 {
4715         return (llapi_is_lustre_mnttype(mnt->mnt_type) &&
4716                 strstr(mnt->mnt_fsname, ":/") != NULL);
4717 }
4718
4719 int llapi_quotactl(char *mnt, struct if_quotactl *qctl)
4720 {
4721         char fsname[PATH_MAX + 1];
4722         int root;
4723         int rc;
4724
4725         rc = llapi_search_fsname(mnt, fsname);
4726         if (rc)
4727                 return rc;
4728
4729         root = open(mnt, O_RDONLY | O_DIRECTORY);
4730         if (root < 0) {
4731                 rc = -errno;
4732                 llapi_error(LLAPI_MSG_ERROR, rc, "cannot open '%s'", mnt);
4733                 return rc;
4734         }
4735
4736         rc = ioctl(root, OBD_IOC_QUOTACTL, qctl);
4737         if (rc < 0)
4738                 rc = -errno;
4739
4740         close(root);
4741         return rc;
4742 }
4743
4744 /* Print mdtname 'name' into 'buf' using 'format'.  Add -MDT0000 if needed.
4745  * format must have %s%s, buf must be > 16
4746  * Eg: if name = "lustre-MDT0000", "lustre", or "lustre-MDT0000_UUID"
4747  *     then buf = "lustre-MDT0000"
4748  */
4749 static int get_mdtname(char *name, char *format, char *buf)
4750 {
4751         char suffix[]="-MDT0000";
4752         int len = strlen(name);
4753
4754         if ((len > 5) && (strncmp(name + len - 5, "_UUID", 5) == 0)) {
4755                 name[len - 5] = '\0';
4756                 len -= 5;
4757         }
4758
4759         if (len > 8) {
4760                 if ((len <= 16) && strncmp(name + len - 8, "-MDT", 4) == 0) {
4761                         suffix[0] = '\0';
4762                 } else {
4763                         /* Not enough room to add suffix */
4764                         llapi_err_noerrno(LLAPI_MSG_ERROR,
4765                                           "Invalid MDT name |%s|", name);
4766                         return -EINVAL;
4767                 }
4768         }
4769
4770         return sprintf(buf, format, name, suffix);
4771 }
4772
4773 /** ioctl on filsystem root, with mdtindex sent as data
4774  * \param mdtname path, fsname, or mdtname (lutre-MDT0004)
4775  * \param mdtidxp pointer to integer within data to be filled in with the
4776  *    mdt index (0 if no mdt is specified).  NULL won't be filled.
4777  */
4778 int root_ioctl(const char *mdtname, int opc, void *data, int *mdtidxp,
4779                int want_error)
4780 {
4781         char fsname[20];
4782         char *ptr;
4783         int fd, rc;
4784         long index;
4785
4786         /* Take path, fsname, or MDTname.  Assume MDT0000 in the former cases.
4787          Open root and parse mdt index. */
4788         if (mdtname[0] == '/') {
4789                 index = 0;
4790                 rc = get_root_path(WANT_FD | want_error, NULL, &fd,
4791                                    (char *)mdtname, -1);
4792         } else {
4793                 if (get_mdtname((char *)mdtname, "%s%s", fsname) < 0)
4794                         return -EINVAL;
4795                 ptr = fsname + strlen(fsname) - 8;
4796                 *ptr = '\0';
4797                 index = strtol(ptr + 4, NULL, 16);
4798                 rc = get_root_path(WANT_FD | want_error, fsname, &fd, NULL, -1);
4799         }
4800         if (rc < 0) {
4801                 if (want_error)
4802                         llapi_err_noerrno(LLAPI_MSG_ERROR,
4803                                           "Can't open %s: %d\n", mdtname, rc);
4804                 return rc;
4805         }
4806
4807         if (mdtidxp)
4808                 *mdtidxp = index;
4809
4810         rc = ioctl(fd, opc, data);
4811         if (rc == -1)
4812                 rc = -errno;
4813         else
4814                 rc = 0;
4815         close(fd);
4816         return rc;
4817 }
4818
4819 int llapi_fid2path(const char *device, const char *fidstr, char *buf,
4820                    int buflen, long long *recno, int *linkno)
4821 {
4822         const char *fidstr_orig = fidstr;
4823         struct lu_fid fid;
4824         struct getinfo_fid2path *gf;
4825         char *a;
4826         char *b;
4827         int rc;
4828
4829         while (*fidstr == '[')
4830                 fidstr++;
4831
4832         sscanf(fidstr, SFID, RFID(&fid));
4833         if (!fid_is_sane(&fid)) {
4834                 llapi_err_noerrno(LLAPI_MSG_ERROR,
4835                                   "bad FID format '%s', should be [seq:oid:ver]"
4836                                   " (e.g. "DFID")\n", fidstr_orig,
4837                                   (unsigned long long)FID_SEQ_NORMAL, 2, 0);
4838                 return -EINVAL;
4839         }
4840
4841         gf = malloc(sizeof(*gf) + buflen);
4842         if (gf == NULL)
4843                 return -ENOMEM;
4844
4845         gf->gf_fid = fid;
4846         gf->gf_recno = *recno;
4847         gf->gf_linkno = *linkno;
4848         gf->gf_pathlen = buflen;
4849
4850         /* Take path or fsname */
4851         rc = root_ioctl(device, OBD_IOC_FID2PATH, gf, NULL, 0);
4852         if (rc)
4853                 goto out_free;
4854
4855         b = buf;
4856         /* strip out instances of // */
4857         for (a = gf->gf_u.gf_path; *a != '\0'; a++) {
4858                 if ((*a == '/') && (*(a + 1) == '/'))
4859                         continue;
4860                 *b = *a;
4861                 b++;
4862         }
4863         *b = '\0';
4864
4865         if (buf[0] == '\0') { /* ROOT path */
4866                 buf[0] = '/';
4867                 buf[1] = '\0';
4868         }
4869
4870         *recno = gf->gf_recno;
4871         *linkno = gf->gf_linkno;
4872
4873 out_free:
4874         free(gf);
4875         return rc;
4876 }
4877
4878 static int fid_from_lma(const char *path, int fd, struct lu_fid *fid)
4879 {
4880         char                     buf[512];
4881         struct lustre_mdt_attrs *lma;
4882         int                      rc;
4883
4884         if (path == NULL)
4885                 rc = fgetxattr(fd, XATTR_NAME_LMA, buf, sizeof(buf));
4886         else
4887                 rc = lgetxattr(path, XATTR_NAME_LMA, buf, sizeof(buf));
4888         if (rc < 0)
4889                 return -errno;
4890         lma = (struct lustre_mdt_attrs *)buf;
4891         fid_le_to_cpu(fid, &lma->lma_self_fid);
4892         return 0;
4893 }
4894
4895 int llapi_get_mdt_index_by_fid(int fd, const struct lu_fid *fid,
4896                                int *mdt_index)
4897 {
4898         int     rc;
4899
4900         rc = ioctl(fd, LL_IOC_FID2MDTIDX, fid);
4901         if (rc < 0)
4902                 return -errno;
4903
4904         *mdt_index = rc;
4905
4906         return rc;
4907 }
4908
4909 int llapi_fd2fid(int fd, struct lu_fid *fid)
4910 {
4911         int rc;
4912
4913         memset(fid, 0, sizeof(*fid));
4914
4915         rc = ioctl(fd, LL_IOC_PATH2FID, fid) < 0 ? -errno : 0;
4916         if (rc == -EINVAL || rc == -ENOTTY)
4917                 rc = fid_from_lma(NULL, fd, fid);
4918
4919         return rc;
4920 }
4921
4922 int llapi_path2fid(const char *path, struct lu_fid *fid)
4923 {
4924         int fd, rc;
4925
4926         memset(fid, 0, sizeof(*fid));
4927         fd = open(path, O_RDONLY | O_NONBLOCK | O_NOFOLLOW);
4928         if (fd < 0) {
4929                 if (errno == ELOOP || errno == ENXIO)
4930                         return fid_from_lma(path, -1, fid);
4931                 return -errno;
4932         }
4933
4934         rc = llapi_fd2fid(fd, fid);
4935         if (rc == -EINVAL || rc == -ENOTTY)
4936                 rc = fid_from_lma(path, -1, fid);
4937
4938         close(fd);
4939         return rc;
4940 }
4941
4942 int llapi_fd2parent(int fd, unsigned int linkno, struct lu_fid *parent_fid,
4943                     char *name, size_t name_size)
4944 {
4945         struct getparent        *gp;
4946         int                      rc;
4947
4948         gp = malloc(sizeof(*gp) + name_size);
4949         if (gp == NULL)
4950                 return -ENOMEM;
4951
4952         gp->gp_linkno = linkno;
4953         gp->gp_name_size = name_size;
4954
4955         rc = ioctl(fd, LL_IOC_GETPARENT, gp);
4956         if (rc < 0) {
4957                 rc = -errno;
4958                 goto err_free;
4959         }
4960
4961         *parent_fid = gp->gp_fid;
4962
4963         strncpy(name, gp->gp_name, name_size);
4964         name[name_size - 1] = '\0';
4965
4966 err_free:
4967         free(gp);
4968         return rc;
4969 }
4970
4971 int llapi_path2parent(const char *path, unsigned int linkno,
4972                       struct lu_fid *parent_fid, char *name, size_t name_size)
4973 {
4974         int     fd;
4975         int     rc;
4976
4977         fd = open(path, O_RDONLY | O_NONBLOCK | O_NOFOLLOW);
4978         if (fd < 0)
4979                 return -errno;
4980
4981         rc = llapi_fd2parent(fd, linkno, parent_fid, name, name_size);
4982         close(fd);
4983         return rc;
4984 }
4985
4986 int llapi_get_connect_flags(const char *mnt, __u64 *flags)
4987 {
4988         int root;
4989         int rc;
4990
4991         root = open(mnt, O_RDONLY | O_DIRECTORY);
4992         if (root < 0) {
4993                 rc = -errno;
4994                 llapi_error(LLAPI_MSG_ERROR, rc, "open %s failed", mnt);
4995                 return rc;
4996         }
4997
4998         rc = ioctl(root, LL_IOC_GET_CONNECT_FLAGS, flags);
4999         if (rc < 0) {
5000                 rc = -errno;
5001                 llapi_error(LLAPI_MSG_ERROR, rc,
5002                         "ioctl on %s for getting connect flags failed", mnt);
5003         }
5004         close(root);
5005         return rc;
5006 }
5007
5008 /**
5009  * Get a 64-bit value representing the version of file data pointed by fd.
5010  *
5011  * Each write or truncate, flushed on OST, will change this value. You can use
5012  * this value to verify if file data was modified. This only checks the file
5013  * data, not metadata.
5014  *
5015  * \param  flags  0: no flush pages, usually used it the process has already
5016  *                  taken locks;
5017  *                LL_DV_RD_FLUSH: OSTs will take LCK_PR to flush dirty pages
5018  *                  from clients;
5019  *                LL_DV_WR_FLUSH: OSTs will take LCK_PW to flush all caching
5020  *                  pages from clients.
5021  *
5022  * \retval 0 on success.
5023  * \retval -errno on error.
5024  */
5025 int llapi_get_data_version(int fd, __u64 *data_version, __u64 flags)
5026 {
5027         int rc;
5028         struct ioc_data_version idv;
5029
5030         idv.idv_flags = (__u32)flags;
5031
5032         rc = ioctl(fd, LL_IOC_DATA_VERSION, &idv);
5033         if (rc)
5034                 rc = -errno;
5035         else
5036                 *data_version = idv.idv_version;
5037
5038         return rc;
5039 }
5040
5041 /*
5042  * Fetch layout version from OST objects. Layout version on OST objects are
5043  * only set when the file is a mirrored file AND after the file has been
5044  * written at least once.
5045  *
5046  * It actually fetches the least layout version from the objects.
5047  */
5048 int llapi_get_ost_layout_version(int fd, __u32 *layout_version)
5049 {
5050         int rc;
5051         struct ioc_data_version idv = { 0 };
5052
5053         rc = ioctl(fd, LL_IOC_DATA_VERSION, &idv);
5054         if (rc)
5055                 rc = -errno;
5056         else
5057                 *layout_version = idv.idv_layout_version;
5058
5059         return rc;
5060 }
5061
5062 /*
5063  * Create a file without any name open it for read/write
5064  *
5065  * - file is created as if it were a standard file in the given \a directory
5066  * - file does not appear in \a directory and mtime does not change because
5067  *   the filename is handled specially by the Lustre MDS.
5068  * - file is removed at final close
5069  * - file modes are rw------- since it doesn't make sense to have a read-only
5070  *   or write-only file that cannot be opened again.
5071  * - if user wants another mode it must use fchmod() on the open file, no
5072  *   security problems arise because it cannot be opened by another process.
5073  *
5074  * \param[in]   directory       directory from which to inherit layout/MDT idx
5075  * \param[in]   idx             MDT index on which the file is created,
5076  *                              \a idx == -1 means no specific MDT is requested
5077  * \param[in]   open_flags      standard open(2) flags
5078  *
5079  * \retval      0 on success.
5080  * \retval      -errno on error.
5081  */
5082 int llapi_create_volatile_idx(char *directory, int idx, int open_flags)
5083 {
5084         char    file_path[PATH_MAX];
5085         char    filename[PATH_MAX];
5086         int     saved_errno = errno;
5087         int     fd;
5088         int     rnumber;
5089         int     rc;
5090
5091         do {
5092                 rnumber = random();
5093                 if (idx == -1)
5094                         snprintf(filename, sizeof(filename),
5095                                  LUSTRE_VOLATILE_HDR"::%.4X", rnumber);
5096                 else
5097                         snprintf(filename, sizeof(filename),
5098                                  LUSTRE_VOLATILE_HDR":%.4X:%.4X", idx, rnumber);
5099
5100                 rc = snprintf(file_path, sizeof(file_path),
5101                               "%s/%s", directory, filename);
5102                 if (rc >= sizeof(file_path))
5103                         return -E2BIG;
5104
5105                 fd = open(file_path,
5106                           O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW | open_flags,
5107                           S_IRUSR | S_IWUSR);
5108         } while (fd < 0 && errno == EEXIST);
5109
5110         if (fd < 0) {
5111                 llapi_error(LLAPI_MSG_ERROR, errno,
5112                             "Cannot create volatile file '%s' in '%s'",
5113                             filename + LUSTRE_VOLATILE_HDR_LEN,
5114                             directory);
5115                 return -errno;
5116         }
5117
5118         /* Unlink file in case this wasn't a Lustre filesystem and the
5119          * magic volatile filename wasn't handled as intended. The
5120          * effect is the same. If volatile open was supported then we
5121          * expect unlink() to return -ENOENT. */
5122         (void)unlink(file_path);
5123
5124         /* Since we are returning successfully we restore errno (and
5125          * mask out possible EEXIST from open() and ENOENT from
5126          * unlink(). */
5127         errno = saved_errno;
5128
5129         return fd;
5130 }
5131
5132 /**
5133  * Swap the layouts between 2 file descriptors
5134  * the 2 files must be open for writing
5135  * first fd received the ioctl, second fd is passed as arg
5136  * this is assymetric but avoid use of root path for ioctl
5137  */
5138 int llapi_fswap_layouts_grouplock(int fd1, int fd2, __u64 dv1, __u64 dv2,
5139                                   int gid, __u64 flags)
5140 {
5141         struct lustre_swap_layouts      lsl;
5142         struct stat                     st1;
5143         struct stat                     st2;
5144         int                             rc;
5145
5146         if (flags & (SWAP_LAYOUTS_KEEP_ATIME | SWAP_LAYOUTS_KEEP_MTIME)) {
5147                 rc = fstat(fd1, &st1);
5148                 if (rc < 0)
5149                         return -errno;
5150
5151                 rc = fstat(fd2, &st2);
5152                 if (rc < 0)
5153                         return -errno;
5154         }
5155         lsl.sl_fd = fd2;
5156         lsl.sl_flags = flags;
5157         lsl.sl_gid = gid;
5158         lsl.sl_dv1 = dv1;
5159         lsl.sl_dv2 = dv2;
5160         rc = ioctl(fd1, LL_IOC_LOV_SWAP_LAYOUTS, &lsl);
5161         if (rc < 0)
5162                 return -errno;
5163
5164         if (flags & (SWAP_LAYOUTS_KEEP_ATIME | SWAP_LAYOUTS_KEEP_MTIME)) {
5165                 struct timeval  tv1[2];
5166                 struct timeval  tv2[2];
5167
5168                 memset(tv1, 0, sizeof(tv1));
5169                 memset(tv2, 0, sizeof(tv2));
5170
5171                 if (flags & SWAP_LAYOUTS_KEEP_ATIME) {
5172                         tv1[0].tv_sec = st1.st_atime;
5173                         tv2[0].tv_sec = st2.st_atime;
5174                 } else {
5175                         tv1[0].tv_sec = st2.st_atime;
5176                         tv2[0].tv_sec = st1.st_atime;
5177                 }
5178
5179                 if (flags & SWAP_LAYOUTS_KEEP_MTIME) {
5180                         tv1[1].tv_sec = st1.st_mtime;
5181                         tv2[1].tv_sec = st2.st_mtime;
5182                 } else {
5183                         tv1[1].tv_sec = st2.st_mtime;
5184                         tv2[1].tv_sec = st1.st_mtime;
5185                 }
5186
5187                 rc = futimes(fd1, tv1);
5188                 if (rc < 0)
5189                         return -errno;
5190
5191                 rc = futimes(fd2, tv2);
5192                 if (rc < 0)
5193                         return -errno;
5194         }
5195
5196         return 0;
5197 }
5198
5199 int llapi_fswap_layouts(int fd1, int fd2, __u64 dv1, __u64 dv2, __u64 flags)
5200 {
5201         int     rc;
5202         int     grp_id;
5203
5204         do
5205                 grp_id = random();
5206         while (grp_id == 0);
5207
5208         rc = llapi_fswap_layouts_grouplock(fd1, fd2, dv1, dv2, grp_id, flags);
5209         if (rc < 0)
5210                 return rc;
5211
5212         return 0;
5213 }
5214
5215 /**
5216  * Swap the layouts between 2 files
5217  * the 2 files are open in write
5218  */
5219 int llapi_swap_layouts(const char *path1, const char *path2,
5220                        __u64 dv1, __u64 dv2, __u64 flags)
5221 {
5222         int     fd1, fd2, rc;
5223
5224         fd1 = open(path1, O_WRONLY | O_LOV_DELAY_CREATE);
5225         if (fd1 < 0) {
5226                 rc = -errno;
5227                 llapi_error(LLAPI_MSG_ERROR, rc,
5228                             "error: cannot open '%s' for write", path1);
5229                 goto out;
5230         }
5231
5232         fd2 = open(path2, O_WRONLY | O_LOV_DELAY_CREATE);
5233         if (fd2 < 0) {
5234                 rc = -errno;
5235                 llapi_error(LLAPI_MSG_ERROR, rc,
5236                             "error: cannot open '%s' for write", path2);
5237                 goto out_close;
5238         }
5239
5240         rc = llapi_fswap_layouts(fd1, fd2, dv1, dv2, flags);
5241         if (rc < 0)
5242                 llapi_error(LLAPI_MSG_ERROR, rc,
5243                             "error: cannot swap layout between '%s' and '%s'",
5244                             path1, path2);
5245
5246         close(fd2);
5247 out_close:
5248         close(fd1);
5249 out:
5250         return rc;
5251 }
5252
5253 /**
5254  * Attempt to open a file with Lustre file identifier \a fid
5255  * and return an open file descriptor.
5256  *
5257  * \param[in] lustre_dir        path within Lustre filesystem containing \a fid
5258  * \param[in] fid               Lustre file identifier of file to open
5259  * \param[in] flags             open() flags
5260  *
5261  * \retval                      non-negative file descriptor on successful open
5262  * \retval                      -1 if an error occurred
5263  */
5264 int llapi_open_by_fid(const char *lustre_dir, const struct lu_fid *fid,
5265                       int flags)
5266 {
5267         char mntdir[PATH_MAX];
5268         char path[PATH_MAX];
5269         int rc;
5270
5271         rc = llapi_search_mounts(lustre_dir, 0, mntdir, NULL);
5272         if (rc != 0)
5273                 return -1;
5274
5275         snprintf(path, sizeof(path), "%s/.lustre/fid/"DFID, mntdir, PFID(fid));
5276         return open(path, flags);
5277 }
5278
5279 /**
5280  * Take group lock.
5281  *
5282  * \param fd   File to lock.
5283  * \param gid  Group Identifier.
5284  *
5285  * \retval 0 on success.
5286  * \retval -errno on failure.
5287  */
5288 int llapi_group_lock(int fd, int gid)
5289 {
5290         int rc;
5291
5292         rc = ioctl(fd, LL_IOC_GROUP_LOCK, gid);
5293         if (rc < 0) {
5294                 rc = -errno;
5295                 llapi_error(LLAPI_MSG_ERROR, rc, "cannot get group lock");
5296         }
5297         return rc;
5298 }
5299
5300 /**
5301  * Put group lock.
5302  *
5303  * \param fd   File to unlock.
5304  * \param gid  Group Identifier.
5305  *
5306  * \retval 0 on success.
5307  * \retval -errno on failure.
5308  */
5309 int llapi_group_unlock(int fd, int gid)
5310 {
5311         int rc;
5312
5313         rc = ioctl(fd, LL_IOC_GROUP_UNLOCK, gid);
5314         if (rc < 0) {
5315                 rc = -errno;
5316                 llapi_error(LLAPI_MSG_ERROR, rc, "cannot put group lock");
5317         }
5318         return rc;
5319 }