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