Whamcloud - gitweb
LU-8998 lustreapi: composite llapi_layout
[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, 2016, 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 <mntent.h>
45 #include <stdlib.h>
46 #include <stdio.h>
47 #include <string.h>
48 #include <stddef.h>
49 #include <sys/ioctl.h>
50 #include <unistd.h>
51 #include <fcntl.h>
52 #include <errno.h>
53 #include <dirent.h>
54 #include <stdarg.h>
55 #include <sys/stat.h>
56 #include <sys/statfs.h>
57 #include <sys/syscall.h>
58 #include <sys/time.h>
59 #include <sys/types.h>
60 #include <sys/xattr.h>
61 #include <time.h>
62 #include <fnmatch.h>
63 #include <libgen.h> /* for dirname() */
64 #ifdef HAVE_LINUX_UNISTD_H
65 #include <linux/unistd.h>
66 #else
67 #include <unistd.h>
68 #endif
69 #include <poll.h>
70
71 #include <libcfs/util/param.h>
72 #include <libcfs/util/string.h>
73 #include <lnet/lnetctl.h>
74 #include <lustre/lustreapi.h>
75 #include <lustre/lustre_ostid.h>
76 #include <lustre_ioctl.h>
77 #include "lustreapi_internal.h"
78
79 static int llapi_msg_level = LLAPI_MSG_MAX;
80
81 char *mdt_hash_name[] = { "none",
82                           LMV_HASH_NAME_ALL_CHARS,
83                           LMV_HASH_NAME_FNV_1A_64 };
84
85 void llapi_msg_set_level(int level)
86 {
87         /* ensure level is in the good range */
88         if (level < LLAPI_MSG_OFF)
89                 llapi_msg_level = LLAPI_MSG_OFF;
90         else if (level > LLAPI_MSG_MAX)
91                 llapi_msg_level = LLAPI_MSG_MAX;
92         else
93                 llapi_msg_level = level;
94 }
95
96 int llapi_msg_get_level(void)
97 {
98         return llapi_msg_level;
99 }
100
101 static void error_callback_default(enum llapi_message_level level, int err,
102                                    const char *fmt, va_list ap)
103 {
104         vfprintf(stderr, fmt, ap);
105         if (level & LLAPI_MSG_NO_ERRNO)
106                 fprintf(stderr, "\n");
107         else
108                 fprintf(stderr, ": %s (%d)\n", strerror(err), err);
109 }
110
111 static void info_callback_default(enum llapi_message_level level, int err,
112                                   const char *fmt, va_list ap)
113 {
114         vfprintf(stdout, fmt, ap);
115 }
116
117 static llapi_log_callback_t llapi_error_callback = error_callback_default;
118 static llapi_log_callback_t llapi_info_callback = info_callback_default;
119
120
121 /* llapi_error will preserve errno */
122 void llapi_error(enum llapi_message_level level, int err, const char *fmt, ...)
123 {
124         va_list  args;
125         int      tmp_errno = errno;
126
127         if ((level & LLAPI_MSG_MASK) > llapi_msg_level)
128                 return;
129
130         va_start(args, fmt);
131         llapi_error_callback(level, abs(err), fmt, args);
132         va_end(args);
133         errno = tmp_errno;
134 }
135
136 /* llapi_printf will preserve errno */
137 void llapi_printf(enum llapi_message_level level, const char *fmt, ...)
138 {
139         va_list  args;
140         int      tmp_errno = errno;
141
142         if ((level & LLAPI_MSG_MASK) > llapi_msg_level)
143                 return;
144
145         va_start(args, fmt);
146         llapi_info_callback(level, 0, fmt, args);
147         va_end(args);
148         errno = tmp_errno;
149 }
150
151 /**
152  * Set a custom error logging function. Passing in NULL will reset the logging
153  * callback to its default value.
154  *
155  * This function returns the value of the old callback.
156  */
157 llapi_log_callback_t llapi_error_callback_set(llapi_log_callback_t cb)
158 {
159         llapi_log_callback_t    old = llapi_error_callback;
160
161         if (cb != NULL)
162                 llapi_error_callback = cb;
163         else
164                 llapi_error_callback = error_callback_default;
165
166         return old;
167 }
168
169 /**
170  * Set a custom info logging function. Passing in NULL will reset the logging
171  * callback to its default value.
172  *
173  * This function returns the value of the old callback.
174  */
175 llapi_log_callback_t llapi_info_callback_set(llapi_log_callback_t cb)
176 {
177         llapi_log_callback_t    old = llapi_info_callback;
178
179         if (cb != NULL)
180                 llapi_info_callback = cb;
181         else
182                 llapi_info_callback = info_callback_default;
183
184         return old;
185 }
186
187 /**
188  * size_units is to be initialized (or zeroed) by caller.
189  */
190 int llapi_parse_size(const char *optarg, unsigned long long *size,
191                      unsigned long long *size_units, int bytes_spec)
192 {
193         char *end;
194         char *argbuf = (char *)optarg;
195         unsigned long long frac = 0, frac_d = 1;
196
197         if (strncmp(optarg, "-", 1) == 0)
198                 return -1;
199
200         if (*size_units == 0)
201                 *size_units = 1;
202
203         *size = strtoull(argbuf, &end, 0);
204         if (end != NULL && *end == '.') {
205                 int i;
206
207                 argbuf = end + 1;
208                 frac = strtoull(argbuf, &end, 10);
209                 /* count decimal places */
210                 for (i = 0; i < (end - argbuf); i++)
211                         frac_d *= 10;
212         }
213
214         if (*end != '\0') {
215                 if ((*end == 'b') && *(end + 1) == '\0' &&
216                     (*size & (~0ULL << (64 - 9))) == 0 &&
217                     !bytes_spec) {
218                         *size_units = 1 << 9;
219                 } else if ((*end == 'b') &&
220                            *(end + 1) == '\0' &&
221                            bytes_spec) {
222                         *size_units = 1;
223                 } else if ((*end == 'k' || *end == 'K') &&
224                            *(end + 1) == '\0' &&
225                            (*size & (~0ULL << (64 - 10))) == 0) {
226                         *size_units = 1 << 10;
227                 } else if ((*end == 'm' || *end == 'M') &&
228                            *(end + 1) == '\0' &&
229                            (*size & (~0ULL << (64 - 20))) == 0) {
230                         *size_units = 1 << 20;
231                 } else if ((*end == 'g' || *end == 'G') &&
232                            *(end + 1) == '\0' &&
233                            (*size & (~0ULL << (64 - 30))) == 0) {
234                         *size_units = 1 << 30;
235                 } else if ((*end == 't' || *end == 'T') &&
236                            *(end + 1) == '\0' &&
237                            (*size & (~0ULL << (64 - 40))) == 0) {
238                         *size_units = 1ULL << 40;
239                 } else if ((*end == 'p' || *end == 'P') &&
240                            *(end + 1) == '\0' &&
241                            (*size & (~0ULL << (64 - 50))) == 0) {
242                         *size_units = 1ULL << 50;
243                 } else if ((*end == 'e' || *end == 'E') &&
244                            *(end + 1) == '\0' &&
245                            (*size & (~0ULL << (64 - 60))) == 0) {
246                         *size_units = 1ULL << 60;
247                 } else {
248                         return -1;
249                 }
250         }
251         *size = *size * *size_units + frac * *size_units / frac_d;
252
253         return 0;
254 }
255
256 /* XXX: llapi_xxx() functions return negative values upon failure */
257
258 int llapi_stripe_limit_check(unsigned long long stripe_size, int stripe_offset,
259                                 int stripe_count, int stripe_pattern)
260 {
261         int page_size, rc;
262
263         /* 64 KB is the largest common page size I'm aware of (on ia64), but
264          * check the local page size just in case. */
265         page_size = LOV_MIN_STRIPE_SIZE;
266         if (getpagesize() > page_size) {
267                 page_size = getpagesize();
268                 llapi_err_noerrno(LLAPI_MSG_WARN,
269                                 "warning: your page size (%u) is "
270                                 "larger than expected (%u)", page_size,
271                                 LOV_MIN_STRIPE_SIZE);
272         }
273         if (!llapi_stripe_size_is_aligned(stripe_size)) {
274                 rc = -EINVAL;
275                 llapi_error(LLAPI_MSG_ERROR, rc, "error: bad stripe_size %llu, "
276                                 "must be an even multiple of %d bytes",
277                                 stripe_size, page_size);
278                 return rc;
279         }
280         if (!llapi_stripe_index_is_valid(stripe_offset)) {
281                 rc = -EINVAL;
282                 llapi_error(LLAPI_MSG_ERROR, rc, "error: bad stripe offset %d",
283                                 stripe_offset);
284                 return rc;
285         }
286         if (!llapi_stripe_count_is_valid(stripe_count)) {
287                 rc = -EINVAL;
288                 llapi_error(LLAPI_MSG_ERROR, rc, "error: bad stripe count %d",
289                                 stripe_count);
290                 return rc;
291         }
292         if (llapi_stripe_size_is_too_big(stripe_size)) {
293                 rc = -EINVAL;
294                 llapi_error(LLAPI_MSG_ERROR, rc,
295                                 "warning: stripe size 4G or larger "
296                                 "is not currently supported and would wrap");
297                 return rc;
298         }
299         return 0;
300 }
301
302 /*
303  * Trim a trailing newline from a string, if it exists.
304  */
305 int llapi_chomp_string(char *buf)
306 {
307         if (!buf || !*buf)
308                 return 0;
309
310         while (buf[1])
311                 buf++;
312
313         if (*buf != '\n')
314                 return 0;
315
316         *buf = '\0';
317         return '\n';
318 }
319
320 /*
321  * Wrapper to grab parameter settings for lov.*-clilov-*.* values
322  */
323 static int get_param_lov(const char *path, const char *param,
324                          char *buf, size_t buf_size)
325 {
326         struct obd_uuid uuid;
327         int rc;
328
329         rc = llapi_file_get_lov_uuid(path, &uuid);
330         if (rc != 0)
331                 return rc;
332
333         return get_lustre_param_value("lov", uuid.uuid, FILTER_BY_EXACT, param,
334                                       buf, buf_size);
335 }
336
337 /*
338  * Wrapper to grab parameter settings for lmv.*-clilov-*.* values
339  */
340 static int get_param_lmv(const char *path, const char *param,
341                          char *buf, size_t buf_size)
342 {
343         struct obd_uuid uuid;
344         int rc;
345
346         rc = llapi_file_get_lmv_uuid(path, &uuid);
347         if (rc != 0)
348                 return rc;
349
350         return get_lustre_param_value("lmv", uuid.uuid, FILTER_BY_EXACT, param,
351                                buf, buf_size);
352 }
353
354 static int get_mds_md_size(const char *path)
355 {
356         char buf[PATH_MAX], inst[PATH_MAX];
357         int md_size = lov_user_md_size(LOV_MAX_STRIPE_COUNT, LOV_USER_MAGIC_V3);
358         int rc;
359
360         rc = llapi_getname(path, inst, sizeof(inst));
361         if (rc != 0)
362                 return md_size;
363
364         /* Get the max ea size from llite parameters. */
365         rc = get_lustre_param_value("llite", inst, FILTER_BY_EXACT,
366                                     "max_easize", buf, sizeof(buf));
367         if (rc != 0)
368                 return md_size;
369
370         rc = atoi(buf);
371
372         return rc > 0 ? rc : md_size;
373 }
374
375 int llapi_get_agent_uuid(char *path, char *buf, size_t bufsize)
376 {
377         return get_param_lmv(path, "uuid", buf, bufsize);
378 }
379
380 /*
381  * if pool is NULL, search ostname in target_obd
382  * if pool is not NULL:
383  *  if pool not found returns errno < 0
384  *  if ostname is NULL, returns 1 if pool is not empty and 0 if pool empty
385  *  if ostname is not NULL, returns 1 if OST is in pool and 0 if not
386  */
387 int llapi_search_ost(char *fsname, char *poolname, char *ostname)
388 {
389         char buffer[PATH_MAX];
390         size_t len = 0;
391         glob_t param;
392         FILE *fd;
393         int rc;
394
395         /* You need one or the other */
396         if (poolname == NULL && fsname == NULL)
397                 return -EINVAL;
398
399         if (ostname != NULL)
400                 len = strlen(ostname);
401
402         if (poolname == NULL && len == 0)
403                 return -EINVAL;
404
405         /* Search by poolname and fsname if is not NULL */
406         if (poolname != NULL) {
407                 rc = poolpath(&param, fsname, NULL);
408                 if (rc == 0) {
409                         snprintf(buffer, sizeof(buffer), "%s/%s",
410                                  param.gl_pathv[0], poolname);
411                 }
412         } else if (fsname != NULL) {
413                 rc = get_lustre_param_path("lov", fsname,
414                                            FILTER_BY_FS_NAME,
415                                            "target_obd", &param);
416                 if (rc == 0) {
417                         strncpy(buffer, param.gl_pathv[0],
418                                 sizeof(buffer));
419                 }
420         } else {
421                 return -EINVAL;
422         }
423         cfs_free_param_data(&param);
424         if (rc)
425                 return rc;
426
427         fd = fopen(buffer, "r");
428         if (fd == NULL)
429                 return -errno;
430
431         while (fgets(buffer, sizeof(buffer), fd) != NULL) {
432                 if (poolname == NULL) {
433                         char *ptr;
434                         /* Search for an ostname in the list of OSTs
435                          Line format is IDX: fsname-OSTxxxx_UUID STATUS */
436                         ptr = strchr(buffer, ' ');
437                         if ((ptr != NULL) &&
438                             (strncmp(ptr + 1, ostname, len) == 0)) {
439                                 fclose(fd);
440                                 return 1;
441                         }
442                 } else {
443                         /* Search for an ostname in a pool,
444                          (or an existing non-empty pool if no ostname) */
445                         if ((ostname == NULL) ||
446                             (strncmp(buffer, ostname, len) == 0)) {
447                                 fclose(fd);
448                                 return 1;
449                         }
450                 }
451         }
452         fclose(fd);
453         return 0;
454 }
455
456 /**
457  * Open a Lustre file.
458  *
459  * \param name     the name of the file to be opened
460  * \param flags    access mode, see flags in open(2)
461  * \param mode     permission of the file if it is created, see mode in open(2)
462  * \param param    stripe pattern of the newly created file
463  *
464  * \retval         file descriptor of opened file
465  * \retval         negative errno on failure
466  */
467 int llapi_file_open_param(const char *name, int flags, mode_t mode,
468                           const struct llapi_stripe_param *param)
469 {
470         char fsname[MAX_OBD_NAME + 1] = { 0 };
471         char *pool_name = param->lsp_pool;
472         struct lov_user_md *lum = NULL;
473         size_t lum_size = sizeof(*lum);
474         int fd, rc;
475
476         /* Make sure we are on a Lustre file system */
477         rc = llapi_search_fsname(name, fsname);
478         if (rc) {
479                 llapi_error(LLAPI_MSG_ERROR, rc,
480                             "'%s' is not on a Lustre filesystem",
481                             name);
482                 return rc;
483         }
484
485         /* Check if the stripe pattern is sane. */
486         rc = llapi_stripe_limit_check(param->lsp_stripe_size,
487                                       param->lsp_stripe_offset,
488                                       param->lsp_stripe_count,
489                                       param->lsp_stripe_pattern);
490         if (rc != 0)
491                 return rc;
492
493         /* Make sure we have a good pool */
494         if (pool_name != NULL) {
495                 /* in case user gives the full pool name <fsname>.<poolname>,
496                  * strip the fsname */
497                 char *ptr = strchr(pool_name, '.');
498                 if (ptr != NULL) {
499                         *ptr = '\0';
500                         if (strcmp(pool_name, fsname) != 0) {
501                                 *ptr = '.';
502                                 llapi_err_noerrno(LLAPI_MSG_ERROR,
503                                         "Pool '%s' is not on filesystem '%s'",
504                                         pool_name, fsname);
505                                 return -EINVAL;
506                         }
507                         pool_name = ptr + 1;
508                 }
509
510                 /* Make sure the pool exists and is non-empty */
511                 rc = llapi_search_ost(fsname, pool_name, NULL);
512                 if (rc < 1) {
513                         char *err = rc == 0 ? "has no OSTs" : "does not exist";
514
515                         llapi_err_noerrno(LLAPI_MSG_ERROR, "pool '%s.%s' %s",
516                                           fsname, pool_name, err);
517                         return -EINVAL;
518                 }
519
520                 lum_size = sizeof(struct lov_user_md_v3);
521         }
522
523         /* sanity check of target list */
524         if (param->lsp_is_specific) {
525                 char ostname[MAX_OBD_NAME + 1];
526                 bool found = false;
527                 int i;
528
529                 for (i = 0; i < param->lsp_stripe_count; i++) {
530                         snprintf(ostname, sizeof(ostname), "%s-OST%04x_UUID",
531                                  fsname, param->lsp_osts[i]);
532                         rc = llapi_search_ost(fsname, pool_name, ostname);
533                         if (rc <= 0) {
534                                 if (rc == 0)
535                                         rc = -ENODEV;
536
537                                 llapi_error(LLAPI_MSG_ERROR, rc,
538                                             "%s: cannot find OST %s in %s",
539                                             __func__, ostname,
540                                             pool_name != NULL ?
541                                             "pool" : "system");
542                                 return rc;
543                         }
544
545                         /* Make sure stripe offset is in OST list. */
546                         if (param->lsp_osts[i] == param->lsp_stripe_offset)
547                                 found = true;
548                 }
549                 if (!found) {
550                         llapi_error(LLAPI_MSG_ERROR, -EINVAL,
551                                     "%s: stripe offset '%d' is not in the "
552                                     "target list",
553                                     __func__, param->lsp_stripe_offset);
554                         return -EINVAL;
555                 }
556
557                 lum_size = lov_user_md_size(param->lsp_stripe_count,
558                                             LOV_USER_MAGIC_SPECIFIC);
559         }
560
561         lum = calloc(1, lum_size);
562         if (lum == NULL)
563                 return -ENOMEM;
564
565 retry_open:
566         fd = open(name, flags | O_LOV_DELAY_CREATE, mode);
567         if (fd < 0) {
568                 if (errno == EISDIR && !(flags & O_DIRECTORY)) {
569                         flags = O_DIRECTORY | O_RDONLY;
570                         goto retry_open;
571                 }
572         }
573
574         if (fd < 0) {
575                 rc = -errno;
576                 llapi_error(LLAPI_MSG_ERROR, rc, "unable to open '%s'", name);
577                 free(lum);
578                 return rc;
579         }
580
581         /*  Initialize IOCTL striping pattern structure */
582         lum->lmm_magic = LOV_USER_MAGIC_V1;
583         lum->lmm_pattern = param->lsp_stripe_pattern;
584         lum->lmm_stripe_size = param->lsp_stripe_size;
585         lum->lmm_stripe_count = param->lsp_stripe_count;
586         lum->lmm_stripe_offset = param->lsp_stripe_offset;
587         if (pool_name != NULL) {
588                 struct lov_user_md_v3 *lumv3 = (void *)lum;
589
590                 lumv3->lmm_magic = LOV_USER_MAGIC_V3;
591                 strncpy(lumv3->lmm_pool_name, pool_name, LOV_MAXPOOLNAME);
592         }
593         if (param->lsp_is_specific) {
594                 struct lov_user_md_v3 *lumv3 = (void *)lum;
595                 int i;
596
597                 lumv3->lmm_magic = LOV_USER_MAGIC_SPECIFIC;
598                 if (pool_name == NULL) {
599                         /* LOV_USER_MAGIC_SPECIFIC uses v3 format plus specified
600                          * OST list, therefore if pool is not specified we have
601                          * to pack a null pool name for placeholder. */
602                         memset(lumv3->lmm_pool_name, 0, LOV_MAXPOOLNAME);
603                 }
604
605                 for (i = 0; i < param->lsp_stripe_count; i++)
606                         lumv3->lmm_objects[i].l_ost_idx = param->lsp_osts[i];
607         }
608
609         if (ioctl(fd, LL_IOC_LOV_SETSTRIPE, lum) != 0) {
610                 char *errmsg = "stripe already set";
611
612                 rc = -errno;
613                 if (errno != EEXIST && errno != EALREADY)
614                         errmsg = strerror(errno);
615
616                 llapi_err_noerrno(LLAPI_MSG_ERROR,
617                                   "error on ioctl %#jx for '%s' (%d): %s",
618                                   (uintmax_t)LL_IOC_LOV_SETSTRIPE, name, fd,
619                                   errmsg);
620
621                 close(fd);
622                 fd = rc;
623         }
624
625         free(lum);
626
627         return fd;
628 }
629
630 int llapi_file_open_pool(const char *name, int flags, int mode,
631                          unsigned long long stripe_size, int stripe_offset,
632                          int stripe_count, int stripe_pattern, char *pool_name)
633 {
634         const struct llapi_stripe_param param = {
635                 .lsp_stripe_size = stripe_size,
636                 .lsp_stripe_count = stripe_count,
637                 .lsp_stripe_pattern = stripe_pattern,
638                 .lsp_stripe_offset = stripe_offset,
639                 .lsp_pool = pool_name
640         };
641         return llapi_file_open_param(name, flags, mode, &param);
642 }
643
644 int llapi_file_open(const char *name, int flags, int mode,
645                     unsigned long long stripe_size, int stripe_offset,
646                     int stripe_count, int stripe_pattern)
647 {
648         return llapi_file_open_pool(name, flags, mode, stripe_size,
649                                     stripe_offset, stripe_count,
650                                     stripe_pattern, NULL);
651 }
652
653 int llapi_file_create(const char *name, unsigned long long stripe_size,
654                       int stripe_offset, int stripe_count, int stripe_pattern)
655 {
656         int fd;
657
658         fd = llapi_file_open_pool(name, O_CREAT | O_WRONLY, 0644, stripe_size,
659                                   stripe_offset, stripe_count, stripe_pattern,
660                                   NULL);
661         if (fd < 0)
662                 return fd;
663
664         close(fd);
665         return 0;
666 }
667
668 int llapi_file_create_pool(const char *name, unsigned long long stripe_size,
669                            int stripe_offset, int stripe_count,
670                            int stripe_pattern, char *pool_name)
671 {
672         int fd;
673
674         fd = llapi_file_open_pool(name, O_CREAT | O_WRONLY, 0644, stripe_size,
675                                   stripe_offset, stripe_count, stripe_pattern,
676                                   pool_name);
677         if (fd < 0)
678                 return fd;
679
680         close(fd);
681         return 0;
682 }
683
684 int llapi_dir_set_default_lmv_stripe(const char *name, int stripe_offset,
685                                      int stripe_count, int stripe_pattern,
686                                      const char *pool_name)
687 {
688         struct lmv_user_md      lum = { 0 };
689         int                     fd;
690         int                     rc = 0;
691
692         lum.lum_magic = LMV_USER_MAGIC;
693         lum.lum_stripe_offset = stripe_offset;
694         lum.lum_stripe_count = stripe_count;
695         lum.lum_hash_type = stripe_pattern;
696         if (pool_name != NULL) {
697                 if (strlen(pool_name) >= sizeof(lum.lum_pool_name)) {
698                         llapi_err_noerrno(LLAPI_MSG_ERROR,
699                                   "error LL_IOC_LMV_SET_DEFAULT_STRIPE '%s'"
700                                   ": too large pool name: %s", name, pool_name);
701                         return -E2BIG;
702                 }
703                 strncpy(lum.lum_pool_name, pool_name,
704                         sizeof(lum.lum_pool_name));
705         }
706
707         fd = open(name, O_DIRECTORY | O_RDONLY);
708         if (fd < 0) {
709                 rc = -errno;
710                 llapi_error(LLAPI_MSG_ERROR, rc, "unable to open '%s'", name);
711                 return rc;
712         }
713
714         rc = ioctl(fd, LL_IOC_LMV_SET_DEFAULT_STRIPE, &lum);
715         if (rc < 0) {
716                 char *errmsg = "stripe already set";
717                 rc = -errno;
718                 if (errno != EEXIST && errno != EALREADY)
719                         errmsg = strerror(errno);
720
721                 llapi_err_noerrno(LLAPI_MSG_ERROR,
722                                   "error on LL_IOC_LMV_SETSTRIPE '%s' (%d): %s",
723                                   name, fd, errmsg);
724         }
725         close(fd);
726         return rc;
727 }
728
729 int llapi_dir_create_pool(const char *name, int mode, int stripe_offset,
730                           int stripe_count, int stripe_pattern,
731                           const char *pool_name)
732 {
733         struct lmv_user_md lmu = { 0 };
734         struct obd_ioctl_data data = { 0 };
735         char rawbuf[8192];
736         char *buf = rawbuf;
737         char *dirpath = NULL;
738         char *namepath = NULL;
739         char *dir;
740         char *filename;
741         int fd = -1;
742         int rc;
743
744         dirpath = strdup(name);
745         namepath = strdup(name);
746         if (!dirpath || !namepath)
747                 return -ENOMEM;
748
749         lmu.lum_magic = LMV_USER_MAGIC;
750         lmu.lum_stripe_offset = stripe_offset;
751         lmu.lum_stripe_count = stripe_count;
752         lmu.lum_hash_type = stripe_pattern;
753         if (pool_name != NULL) {
754                 if (strlen(pool_name) > LOV_MAXPOOLNAME) {
755                         llapi_err_noerrno(LLAPI_MSG_ERROR,
756                                   "error LL_IOC_LMV_SETSTRIPE '%s' : too large"
757                                   "pool name: %s", name, pool_name);
758                         rc = -E2BIG;
759                         goto out;
760                 }
761                 memcpy(lmu.lum_pool_name, pool_name, strlen(pool_name));
762         }
763
764         filename = basename(namepath);
765         dir = dirname(dirpath);
766
767         data.ioc_inlbuf1 = (char *)filename;
768         data.ioc_inllen1 = strlen(filename) + 1;
769         data.ioc_inlbuf2 = (char *)&lmu;
770         data.ioc_inllen2 = sizeof(struct lmv_user_md);
771         data.ioc_type = mode;
772         rc = obd_ioctl_pack(&data, &buf, sizeof(rawbuf));
773         if (rc) {
774                 llapi_error(LLAPI_MSG_ERROR, rc,
775                             "error: LL_IOC_LMV_SETSTRIPE pack failed '%s'.",
776                             name);
777                 goto out;
778         }
779
780         fd = open(dir, O_DIRECTORY | O_RDONLY);
781         if (fd < 0) {
782                 rc = -errno;
783                 llapi_error(LLAPI_MSG_ERROR, rc, "unable to open '%s'", name);
784                 goto out;
785         }
786
787         if (ioctl(fd, LL_IOC_LMV_SETSTRIPE, buf)) {
788                 char *errmsg = "stripe already set";
789                 rc = -errno;
790                 if (errno != EEXIST && errno != EALREADY)
791                         errmsg = strerror(errno);
792
793                 llapi_err_noerrno(LLAPI_MSG_ERROR,
794                                   "error on LL_IOC_LMV_SETSTRIPE '%s' (%d): %s",
795                                   name, fd, errmsg);
796         }
797         close(fd);
798 out:
799         free(dirpath);
800         free(namepath);
801         return rc;
802 }
803
804 int llapi_direntry_remove(char *dname)
805 {
806         char *dirpath = NULL;
807         char *namepath = NULL;
808         char *dir;
809         char *filename;
810         int fd = -1;
811         int rc = 0;
812
813         dirpath = strdup(dname);
814         namepath = strdup(dname);
815         if (!dirpath || !namepath)
816                 return -ENOMEM;
817
818         filename = basename(namepath);
819
820         dir = dirname(dirpath);
821
822         fd = open(dir, O_DIRECTORY | O_RDONLY);
823         if (fd < 0) {
824                 rc = -errno;
825                 llapi_error(LLAPI_MSG_ERROR, rc, "unable to open '%s'",
826                             filename);
827                 goto out;
828         }
829
830         if (ioctl(fd, LL_IOC_REMOVE_ENTRY, filename)) {
831                 char *errmsg = strerror(errno);
832                 llapi_err_noerrno(LLAPI_MSG_ERROR,
833                                   "error on ioctl %#jx for '%s' (%d): %s",
834                                   (uintmax_t)LL_IOC_LMV_SETSTRIPE, filename,
835                                   fd, errmsg);
836         }
837 out:
838         free(dirpath);
839         free(namepath);
840         if (fd != -1)
841                 close(fd);
842         return rc;
843 }
844
845 /*
846  * Find the fsname, the full path, and/or an open fd.
847  * Either the fsname or path must not be NULL
848  */
849 int get_root_path(int want, char *fsname, int *outfd, char *path, int index)
850 {
851         struct mntent mnt;
852         char buf[PATH_MAX], mntdir[PATH_MAX];
853         char *ptr, *ptr_end;
854         FILE *fp;
855         int idx = 0, len = 0, mntlen, fd;
856         int rc = -ENODEV;
857
858         /* get the mount point */
859         fp = setmntent(PROC_MOUNTS, "r");
860         if (fp == NULL) {
861                 rc = -EIO;
862                 llapi_error(LLAPI_MSG_ERROR, rc,
863                             "setmntent(%s) failed", PROC_MOUNTS);
864                 return rc;
865         }
866         while (1) {
867                 if (getmntent_r(fp, &mnt, buf, sizeof(buf)) == NULL)
868                         break;
869
870                 if (!llapi_is_lustre_mnt(&mnt))
871                         continue;
872
873                 if ((want & WANT_INDEX) && (idx++ != index))
874                         continue;
875
876                 mntlen = strlen(mnt.mnt_dir);
877                 ptr = strchr(mnt.mnt_fsname, '/');
878                 while (ptr && *ptr == '/')
879                         ptr++;
880                 /* thanks to the call to llapi_is_lustre_mnt() above,
881                  * we are sure that mnt.mnt_fsname contains ":/",
882                  * so ptr should never be NULL */
883                 if (ptr == NULL)
884                         continue;
885                 ptr_end = ptr;
886                 while (*ptr_end != '/' && *ptr_end != '\0')
887                         ptr_end++;
888
889                 /* Check the fsname for a match, if given */
890                 if (!(want & WANT_FSNAME) && fsname != NULL &&
891                     (strlen(fsname) > 0) &&
892                     (strncmp(ptr, fsname, ptr_end - ptr) != 0))
893                         continue;
894
895                 /* If the path isn't set return the first one we find */
896                 if (path == NULL || strlen(path) == 0) {
897                         strncpy(mntdir, mnt.mnt_dir, strlen(mnt.mnt_dir));
898                         mntdir[strlen(mnt.mnt_dir)] = '\0';
899                         if ((want & WANT_FSNAME) && fsname != NULL) {
900                                 strncpy(fsname, ptr, ptr_end - ptr);
901                                 fsname[ptr_end - ptr] = '\0';
902                         }
903                         rc = 0;
904                         break;
905                 /* Otherwise find the longest matching path */
906                 } else if ((strlen(path) >= mntlen) && (mntlen >= len) &&
907                            (strncmp(mnt.mnt_dir, path, mntlen) == 0)) {
908                         strncpy(mntdir, mnt.mnt_dir, strlen(mnt.mnt_dir));
909                         mntdir[strlen(mnt.mnt_dir)] = '\0';
910                         len = mntlen;
911                         if ((want & WANT_FSNAME) && fsname != NULL) {
912                                 strncpy(fsname, ptr, ptr_end - ptr);
913                                 fsname[ptr_end - ptr] = '\0';
914                         }
915                         rc = 0;
916                 }
917         }
918         endmntent(fp);
919
920         /* Found it */
921         if (rc == 0) {
922                 if ((want & WANT_PATH) && path != NULL) {
923                         strncpy(path, mntdir, strlen(mntdir));
924                         path[strlen(mntdir)] = '\0';
925                 }
926                 if (want & WANT_FD) {
927                         fd = open(mntdir, O_RDONLY | O_DIRECTORY | O_NONBLOCK);
928                         if (fd < 0) {
929                                 rc = -errno;
930                                 llapi_error(LLAPI_MSG_ERROR, rc,
931                                             "error opening '%s'", mntdir);
932
933                         } else {
934                                 *outfd = fd;
935                         }
936                 }
937         } else if (want & WANT_ERROR)
938                 llapi_err_noerrno(LLAPI_MSG_ERROR,
939                                   "can't find fs root for '%s': %d",
940                                   (want & WANT_PATH) ? fsname : path, rc);
941         return rc;
942 }
943
944 /*
945  * search lustre mounts
946  *
947  * Calling this function will return to the user the mount point, mntdir, and
948  * the file system name, fsname, if the user passed a buffer to this routine.
949  *
950  * The user inputs are pathname and index. If the pathname is supplied then
951  * the value of the index will be ignored. The pathname will return data if
952  * the pathname is located on a lustre mount. Index is used to pick which
953  * mount point you want in the case of multiple mounted lustre file systems.
954  * See function lfs_osts in lfs.c for an example of the index use.
955  */
956 int llapi_search_mounts(const char *pathname, int index, char *mntdir,
957                         char *fsname)
958 {
959         int want = WANT_PATH, idx = -1;
960
961         if (!pathname || pathname[0] == '\0') {
962                 want |= WANT_INDEX;
963                 idx = index;
964         } else
965                 strcpy(mntdir, pathname);
966
967         if (fsname)
968                 want |= WANT_FSNAME;
969         return get_root_path(want, fsname, NULL, mntdir, idx);
970 }
971
972 /* Given a path, find the corresponding Lustre fsname */
973 int llapi_search_fsname(const char *pathname, char *fsname)
974 {
975         char *path;
976         int rc;
977
978         path = realpath(pathname, NULL);
979         if (path == NULL) {
980                 char buf[PATH_MAX], *ptr;
981
982                 buf[0] = '\0';
983                 if (pathname[0] != '/') {
984                         /* Need an absolute path, but realpath() only works for
985                          * pathnames that actually exist.  We go through the
986                          * extra hurdle of dirname(getcwd() + pathname) in
987                          * case the relative pathname contains ".." in it. */
988                         if (getcwd(buf, sizeof(buf) - 2) == NULL)
989                                 return -errno;
990                         rc = strlcat(buf, "/", sizeof(buf));
991                         if (rc >= sizeof(buf))
992                                 return -E2BIG;
993                 }
994                 rc = strlcat(buf, pathname, sizeof(buf));
995                 if (rc >= sizeof(buf))
996                         return -E2BIG;
997                 path = realpath(buf, NULL);
998                 if (path == NULL) {
999                         ptr = strrchr(buf, '/');
1000                         if (ptr == NULL)
1001                                 return -ENOENT;
1002                         *ptr = '\0';
1003                         path = realpath(buf, NULL);
1004                         if (path == NULL) {
1005                                 rc = -errno;
1006                                 llapi_error(LLAPI_MSG_ERROR, rc,
1007                                             "pathname '%s' cannot expand",
1008                                             pathname);
1009                                 return rc;
1010                         }
1011                 }
1012         }
1013         rc = get_root_path(WANT_FSNAME | WANT_ERROR, fsname, NULL, path, -1);
1014         free(path);
1015         return rc;
1016 }
1017
1018 int llapi_search_rootpath(char *pathname, const char *fsname)
1019 {
1020         return get_root_path(WANT_PATH, (char *)fsname, NULL, pathname, -1);
1021 }
1022
1023 int llapi_getname(const char *path, char *buf, size_t size)
1024 {
1025         struct obd_uuid uuid_buf;
1026         char *uuid = uuid_buf.uuid;
1027         int rc, nr;
1028
1029         memset(&uuid_buf, 0, sizeof(uuid_buf));
1030         rc = llapi_file_get_lov_uuid(path, &uuid_buf);
1031         if (rc)
1032                 return rc;
1033
1034         /* We want to turn lustre-clilov-ffff88002738bc00 into
1035          * lustre-ffff88002738bc00. */
1036
1037         nr = snprintf(buf, size, "%.*s-%s",
1038                       (int) (strlen(uuid) - 24), uuid,
1039                       uuid + strlen(uuid) - 16);
1040
1041         if (nr >= size)
1042                 rc = -ENAMETOOLONG;
1043
1044         return rc;
1045 }
1046
1047 /**
1048  * Get the list of pool members.
1049  * \param poolname    string of format \<fsname\>.\<poolname\>
1050  * \param members     caller-allocated array of char*
1051  * \param list_size   size of the members array
1052  * \param buffer      caller-allocated buffer for storing OST names
1053  * \param buffer_size size of the buffer
1054  *
1055  * \return number of members retrieved for this pool
1056  * \retval -error failure
1057  */
1058 int llapi_get_poolmembers(const char *poolname, char **members,
1059                           int list_size, char *buffer, int buffer_size)
1060 {
1061         char fsname[PATH_MAX];
1062         char *pool, *tmp;
1063         glob_t pathname;
1064         char buf[PATH_MAX];
1065         FILE *fd;
1066         int rc = 0;
1067         int nb_entries = 0;
1068         int used = 0;
1069
1070         /* name is FSNAME.POOLNAME */
1071         if (strlen(poolname) >= sizeof(fsname))
1072                 return -EOVERFLOW;
1073         strlcpy(fsname, poolname, sizeof(fsname));
1074         pool = strchr(fsname, '.');
1075         if (pool == NULL)
1076                 return -EINVAL;
1077
1078         *pool = '\0';
1079         pool++;
1080
1081         rc = poolpath(&pathname, fsname, NULL);
1082         if (rc != 0) {
1083                 llapi_error(LLAPI_MSG_ERROR, rc,
1084                             "Lustre filesystem '%s' not found",
1085                             fsname);
1086                 return rc;
1087         }
1088
1089         llapi_printf(LLAPI_MSG_NORMAL, "Pool: %s.%s\n", fsname, pool);
1090         rc = snprintf(buf, sizeof(buf), "%s/%s", pathname.gl_pathv[0], pool);
1091         cfs_free_param_data(&pathname);
1092         if (rc >= sizeof(buf))
1093                 return -EOVERFLOW;
1094         fd = fopen(buf, "r");
1095         if (fd == NULL) {
1096                 rc = -errno;
1097                 llapi_error(LLAPI_MSG_ERROR, rc, "cannot open %s", buf);
1098                 return rc;
1099         }
1100
1101         rc = 0;
1102         while (fgets(buf, sizeof(buf), fd) != NULL) {
1103                 if (nb_entries >= list_size) {
1104                         rc = -EOVERFLOW;
1105                         break;
1106                 }
1107                 buf[sizeof(buf) - 1] = '\0';
1108                 /* remove '\n' */
1109                 tmp = strchr(buf, '\n');
1110                 if (tmp != NULL)
1111                         *tmp='\0';
1112                 if (used + strlen(buf) + 1 > buffer_size) {
1113                         rc = -EOVERFLOW;
1114                         break;
1115                 }
1116
1117                 strcpy(buffer + used, buf);
1118                 members[nb_entries] = buffer + used;
1119                 used += strlen(buf) + 1;
1120                 nb_entries++;
1121                 rc = nb_entries;
1122         }
1123
1124         fclose(fd);
1125         return rc;
1126 }
1127
1128 /**
1129  * Get the list of pools in a filesystem.
1130  * \param name        filesystem name or path
1131  * \param poollist    caller-allocated array of char*
1132  * \param list_size   size of the poollist array
1133  * \param buffer      caller-allocated buffer for storing pool names
1134  * \param buffer_size size of the buffer
1135  *
1136  * \return number of pools retrieved for this filesystem
1137  * \retval -error failure
1138  */
1139 int llapi_get_poollist(const char *name, char **poollist, int list_size,
1140                        char *buffer, int buffer_size)
1141 {
1142         char rname[PATH_MAX];
1143         glob_t pathname;
1144         char *fsname;
1145         char *ptr;
1146         DIR *dir;
1147         struct dirent pool;
1148         struct dirent *cookie = NULL;
1149         int rc = 0;
1150         unsigned int nb_entries = 0;
1151         unsigned int used = 0;
1152         unsigned int i;
1153
1154         /* initialize output array */
1155         for (i = 0; i < list_size; i++)
1156                 poollist[i] = NULL;
1157
1158         /* is name a pathname ? */
1159         ptr = strchr(name, '/');
1160         if (ptr != NULL) {
1161                 /* only absolute pathname is supported */
1162                 if (*name != '/')
1163                         return -EINVAL;
1164
1165                 if (!realpath(name, rname)) {
1166                         rc = -errno;
1167                         llapi_error(LLAPI_MSG_ERROR, rc, "invalid path '%s'",
1168                                     name);
1169                         return rc;
1170                 }
1171
1172                 fsname = strdup(rname);
1173                 if (!fsname)
1174                         return -ENOMEM;
1175
1176                 rc = poolpath(&pathname, NULL, rname);
1177         } else {
1178                 /* name is FSNAME */
1179                 fsname = strdup(name);
1180                 if (!fsname)
1181                         return -ENOMEM;
1182                 rc = poolpath(&pathname, fsname, NULL);
1183         }
1184         if (rc != 0) {
1185                 llapi_error(LLAPI_MSG_ERROR, rc,
1186                             "Lustre filesystem '%s' not found", name);
1187                 goto free_path;
1188         }
1189
1190         llapi_printf(LLAPI_MSG_NORMAL, "Pools from %s:\n", fsname);
1191         dir = opendir(pathname.gl_pathv[0]);
1192         if (dir == NULL) {
1193                 rc = -errno;
1194                 llapi_error(LLAPI_MSG_ERROR, rc,
1195                             "Could not open pool list for '%s'",
1196                             name);
1197                 goto free_path;
1198         }
1199
1200         while(1) {
1201                 rc = readdir_r(dir, &pool, &cookie);
1202                 if (rc != 0) {
1203                         rc = -errno;
1204                         llapi_error(LLAPI_MSG_ERROR, rc,
1205                                     "Error reading pool list for '%s'", name);
1206                         goto free_path;
1207                 } else if ((rc == 0) && (cookie == NULL)) {
1208                         /* end of directory */
1209                         break;
1210                 }
1211
1212                 /* ignore . and .. */
1213                 if (!strcmp(pool.d_name, ".") || !strcmp(pool.d_name, ".."))
1214                         continue;
1215
1216                 /* check output bounds */
1217                 if (nb_entries >= list_size) {
1218                         rc = -EOVERFLOW;
1219                         goto free_dir;
1220                 }
1221
1222                 /* +2 for '.' and final '\0' */
1223                 if (used + strlen(pool.d_name) + strlen(fsname) + 2
1224                     > buffer_size) {
1225                         rc = -EOVERFLOW;
1226                         goto free_dir;
1227                 }
1228
1229                 sprintf(buffer + used, "%s.%s", fsname, pool.d_name);
1230                 poollist[nb_entries] = buffer + used;
1231                 used += strlen(pool.d_name) + strlen(fsname) + 2;
1232                 nb_entries++;
1233         }
1234
1235 free_dir:
1236         closedir(dir);
1237 free_path:
1238         cfs_free_param_data(&pathname);
1239         if (fsname)
1240                 free(fsname);
1241         return rc != 0 ? rc : nb_entries;
1242 }
1243
1244 /* wrapper for lfs.c and obd.c */
1245 int llapi_poollist(const char *name)
1246 {
1247         /* list of pool names (assume that pool count is smaller
1248            than OST count) */
1249         char **list, *buffer = NULL, *fsname = (char *)name;
1250         char *poolname = NULL, *tmp = NULL, data[16];
1251         enum param_filter type = FILTER_BY_PATH;
1252         int obdcount, bufsize, rc, nb, i;
1253
1254         if (name == NULL)
1255                 return -EINVAL;
1256
1257         if (name[0] != '/') {
1258                 fsname = strdup(name);
1259                 if (fsname == NULL)
1260                         return -ENOMEM;
1261
1262                 poolname = strchr(fsname, '.');
1263                 if (poolname)
1264                         *poolname = '\0';
1265                 type = FILTER_BY_FS_NAME;
1266         }
1267
1268         rc = get_lustre_param_value("lov", fsname, type, "numobd",
1269                                     data, sizeof(data));
1270         if (rc < 0)
1271                 goto err;
1272         obdcount = atoi(data);
1273
1274         /* Allocate space for each fsname-OST0000_UUID, 1 per OST,
1275          * and also an array to store the pointers for all that
1276          * allocated space. */
1277 retry_get_pools:
1278         bufsize = sizeof(struct obd_uuid) * obdcount;
1279         buffer = realloc(tmp, bufsize + sizeof(*list) * obdcount);
1280         if (buffer == NULL) {
1281                 rc = -ENOMEM;
1282                 goto err;
1283         }
1284         list = (char **) (buffer + bufsize);
1285
1286         if (!poolname) {
1287                 /* name is a path or fsname */
1288                 nb = llapi_get_poollist(name, list, obdcount,
1289                                         buffer, bufsize);
1290         } else {
1291                 /* name is a pool name (<fsname>.<poolname>) */
1292                 nb = llapi_get_poolmembers(name, list, obdcount,
1293                                            buffer, bufsize);
1294         }
1295
1296         if (nb == -EOVERFLOW) {
1297                 obdcount *= 2;
1298                 tmp = buffer;
1299                 goto retry_get_pools;
1300         }
1301
1302         for (i = 0; i < nb; i++)
1303                 llapi_printf(LLAPI_MSG_NORMAL, "%s\n", list[i]);
1304         rc = (nb < 0 ? nb : 0);
1305 err:
1306         if (buffer)
1307                 free(buffer);
1308         if (fsname != NULL && type == FILTER_BY_FS_NAME)
1309                 free(fsname);
1310         return rc;
1311 }
1312
1313 typedef int (semantic_func_t)(char *path, DIR *parent, DIR **d,
1314                               void *data, struct dirent64 *de);
1315
1316 #define OBD_NOT_FOUND           (-1)
1317
1318 static int common_param_init(struct find_param *param, char *path)
1319 {
1320         int lum_size = get_mds_md_size(path);
1321
1322         if (lum_size < PATH_MAX + 1)
1323                 lum_size = PATH_MAX + 1;
1324
1325         param->fp_lum_size = lum_size;
1326         param->fp_lmd = calloc(1, sizeof(lstat_t) + param->fp_lum_size);
1327         if (param->fp_lmd == NULL) {
1328                 llapi_error(LLAPI_MSG_ERROR, -ENOMEM,
1329                             "error: allocation of %zu bytes for ioctl",
1330                             sizeof(lstat_t) + param->fp_lum_size);
1331                 return -ENOMEM;
1332         }
1333
1334         param->fp_lmv_stripe_count = 256;
1335         param->fp_lmv_md = calloc(1,
1336                                   lmv_user_md_size(param->fp_lmv_stripe_count,
1337                                                    LMV_MAGIC_V1));
1338         if (param->fp_lmv_md == NULL) {
1339                 llapi_error(LLAPI_MSG_ERROR, -ENOMEM,
1340                             "error: allocation of %d bytes for ioctl",
1341                             lmv_user_md_size(param->fp_lmv_stripe_count,
1342                                              LMV_MAGIC_V1));
1343                 return -ENOMEM;
1344         }
1345
1346         param->fp_got_uuids = 0;
1347         param->fp_obd_indexes = NULL;
1348         param->fp_obd_index = OBD_NOT_FOUND;
1349         if (!param->fp_migrate)
1350                 param->fp_mdt_index = OBD_NOT_FOUND;
1351         return 0;
1352 }
1353
1354 static void find_param_fini(struct find_param *param)
1355 {
1356         if (param->fp_obd_indexes)
1357                 free(param->fp_obd_indexes);
1358
1359         if (param->fp_lmd)
1360                 free(param->fp_lmd);
1361
1362         if (param->fp_lmv_md)
1363                 free(param->fp_lmv_md);
1364 }
1365
1366 static int cb_common_fini(char *path, DIR *parent, DIR **dirp, void *data,
1367                           struct dirent64 *de)
1368 {
1369         struct find_param *param = data;
1370         param->fp_depth--;
1371
1372         return 0;
1373 }
1374
1375 /* set errno upon failure */
1376 static DIR *opendir_parent(const char *path)
1377 {
1378         char *path_copy;
1379         char *parent_path;
1380         DIR *parent;
1381
1382         path_copy = strdup(path);
1383         if (path_copy == NULL)
1384                 return NULL;
1385
1386         parent_path = dirname(path_copy);
1387         parent = opendir(parent_path);
1388         free(path_copy);
1389
1390         return parent;
1391 }
1392
1393 static int cb_get_dirstripe(char *path, DIR *d, struct find_param *param)
1394 {
1395         int ret;
1396
1397 again:
1398         param->fp_lmv_md->lum_stripe_count = param->fp_lmv_stripe_count;
1399         if (param->fp_get_default_lmv)
1400                 param->fp_lmv_md->lum_magic = LMV_USER_MAGIC;
1401         else
1402                 param->fp_lmv_md->lum_magic = LMV_MAGIC_V1;
1403
1404         ret = ioctl(dirfd(d), LL_IOC_LMV_GETSTRIPE, param->fp_lmv_md);
1405         if (errno == E2BIG && ret != 0) {
1406                 int stripe_count;
1407                 int lmv_size;
1408
1409                 stripe_count = (__u32)param->fp_lmv_md->lum_stripe_count;
1410                 if (stripe_count <= param->fp_lmv_stripe_count)
1411                         return ret;
1412
1413                 free(param->fp_lmv_md);
1414                 param->fp_lmv_stripe_count = stripe_count;
1415                 lmv_size = lmv_user_md_size(stripe_count, LMV_MAGIC_V1);
1416                 param->fp_lmv_md = malloc(lmv_size);
1417                 if (param->fp_lmv_md == NULL) {
1418                         llapi_error(LLAPI_MSG_ERROR, -ENOMEM,
1419                                     "error: allocation of %d bytes for ioctl",
1420                                     lmv_user_md_size(param->fp_lmv_stripe_count,
1421                                                      LMV_MAGIC_V1));
1422                         return -ENOMEM;
1423                 }
1424                 goto again;
1425         }
1426         return ret;
1427 }
1428
1429 static int get_lmd_info(char *path, DIR *parent, DIR *dir,
1430                  struct lov_user_mds_data *lmd, int lumlen)
1431 {
1432         lstat_t *st = &lmd->lmd_st;
1433         int ret = 0;
1434
1435         if (parent == NULL && dir == NULL)
1436                 return -EINVAL;
1437
1438         if (dir) {
1439                 ret = ioctl(dirfd(dir), LL_IOC_MDC_GETINFO, (void *)lmd);
1440         } else if (parent) {
1441                 char *fname = strrchr(path, '/');
1442
1443                 /* To avoid opening, locking, and closing each file on the
1444                  * client if that is not needed. The GETFILEINFO ioctl can
1445                  * be done on the patent dir with a single open for all
1446                  * files in that directory, and it also doesn't pollute the
1447                  * client dcache with millions of dentries when traversing
1448                  * a large filesystem.  */
1449                 fname = (fname == NULL ? path : fname + 1);
1450                 /* retrieve needed file info */
1451                 strlcpy((char *)lmd, fname, lumlen);
1452                 ret = ioctl(dirfd(parent), IOC_MDC_GETFILEINFO, (void *)lmd);
1453         }
1454
1455         if (ret) {
1456                 if (errno == ENOTTY) {
1457                         /* ioctl is not supported, it is not a lustre fs.
1458                          * Do the regular lstat(2) instead. */
1459                         ret = lstat_f(path, st);
1460                         if (ret) {
1461                                 ret = -errno;
1462                                 llapi_error(LLAPI_MSG_ERROR, ret,
1463                                             "error: %s: lstat failed for %s",
1464                                             __func__, path);
1465                         }
1466                 } else if (errno == ENOENT) {
1467                         ret = -errno;
1468                         llapi_error(LLAPI_MSG_WARN, ret,
1469                                     "warning: %s: %s does not exist",
1470                                     __func__, path);
1471                 } else if (errno != EISDIR) {
1472                         ret = -errno;
1473                         llapi_error(LLAPI_MSG_ERROR, ret,
1474                                     "%s ioctl failed for %s.",
1475                                     dir ? "LL_IOC_MDC_GETINFO" :
1476                                     "IOC_MDC_GETFILEINFO", path);
1477                 } else {
1478                         ret = -errno;
1479                         llapi_error(LLAPI_MSG_ERROR, ret,
1480                                  "error: %s: IOC_MDC_GETFILEINFO failed for %s",
1481                                    __func__, path);
1482                 }
1483         }
1484         return ret;
1485 }
1486
1487 static int llapi_semantic_traverse(char *path, int size, DIR *parent,
1488                                    semantic_func_t sem_init,
1489                                    semantic_func_t sem_fini, void *data,
1490                                    struct dirent64 *de)
1491 {
1492         struct find_param *param = (struct find_param *)data;
1493         struct dirent64 *dent;
1494         int len, ret;
1495         DIR *d, *p = NULL;
1496
1497         ret = 0;
1498         len = strlen(path);
1499
1500         d = opendir(path);
1501         if (!d && errno != ENOTDIR) {
1502                 ret = -errno;
1503                 llapi_error(LLAPI_MSG_ERROR, ret, "%s: Failed to open '%s'",
1504                             __func__, path);
1505                 return ret;
1506         } else if (!d && !parent) {
1507                 /* ENOTDIR. Open the parent dir. */
1508                 p = opendir_parent(path);
1509                 if (!p) {
1510                         ret = -errno;
1511                         goto out;
1512                 }
1513         }
1514
1515         if (sem_init && (ret = sem_init(path, parent ?: p, &d, data, de)))
1516                 goto err;
1517
1518         if (d == NULL)
1519                 goto out;
1520
1521         while ((dent = readdir64(d)) != NULL) {
1522                 int rc;
1523
1524                 if (!strcmp(dent->d_name, ".") || !strcmp(dent->d_name, ".."))
1525                         continue;
1526
1527                 /* Don't traverse .lustre directory */
1528                 if (!(strcmp(dent->d_name, dot_lustre_name)))
1529                         continue;
1530
1531                 path[len] = 0;
1532                 if ((len + dent->d_reclen + 2) > size) {
1533                         llapi_err_noerrno(LLAPI_MSG_ERROR,
1534                                           "error: %s: string buffer is too small",
1535                                           __func__);
1536                         break;
1537                 }
1538                 strcat(path, "/");
1539                 strcat(path, dent->d_name);
1540
1541                 if (dent->d_type == DT_UNKNOWN) {
1542                         lstat_t *st = &param->fp_lmd->lmd_st;
1543
1544                         rc = get_lmd_info(path, d, NULL, param->fp_lmd,
1545                                            param->fp_lum_size);
1546                         if (rc == 0)
1547                                 dent->d_type = IFTODT(st->st_mode);
1548                         else if (ret == 0)
1549                                 ret = rc;
1550
1551                         if (rc == -ENOENT)
1552                                 continue;
1553                 }
1554                 switch (dent->d_type) {
1555                 case DT_UNKNOWN:
1556                         llapi_err_noerrno(LLAPI_MSG_ERROR,
1557                                           "error: %s: '%s' is UNKNOWN type %d",
1558                                           __func__, dent->d_name, dent->d_type);
1559                         break;
1560                 case DT_DIR:
1561                         rc = llapi_semantic_traverse(path, size, d, sem_init,
1562                                                       sem_fini, data, dent);
1563                         if (rc != 0 && ret == 0)
1564                                 ret = rc;
1565                         break;
1566                 default:
1567                         rc = 0;
1568                         if (sem_init) {
1569                                 rc = sem_init(path, d, NULL, data, dent);
1570                                 if (rc < 0 && ret == 0)
1571                                         ret = rc;
1572                         }
1573                         if (sem_fini && rc == 0)
1574                                 sem_fini(path, d, NULL, data, dent);
1575                 }
1576         }
1577
1578 out:
1579         path[len] = 0;
1580
1581         if (sem_fini)
1582                 sem_fini(path, parent, &d, data, de);
1583 err:
1584         if (d)
1585                 closedir(d);
1586         if (p)
1587                 closedir(p);
1588         return ret;
1589 }
1590
1591 static int param_callback(char *path, semantic_func_t sem_init,
1592                           semantic_func_t sem_fini, struct find_param *param)
1593 {
1594         int ret, len = strlen(path);
1595         char *buf;
1596
1597         if (len > PATH_MAX) {
1598                 ret = -EINVAL;
1599                 llapi_error(LLAPI_MSG_ERROR, ret,
1600                             "Path name '%s' is too long", path);
1601                 return ret;
1602         }
1603
1604         buf = (char *)malloc(PATH_MAX + 1);
1605         if (!buf)
1606                 return -ENOMEM;
1607
1608         strlcpy(buf, path, PATH_MAX + 1);
1609         ret = common_param_init(param, buf);
1610         if (ret)
1611                 goto out;
1612
1613         param->fp_depth = 0;
1614
1615         ret = llapi_semantic_traverse(buf, PATH_MAX + 1, NULL, sem_init,
1616                                       sem_fini, param, NULL);
1617 out:
1618         find_param_fini(param);
1619         free(buf);
1620         return ret < 0 ? ret : 0;
1621 }
1622
1623 int llapi_file_fget_lov_uuid(int fd, struct obd_uuid *lov_name)
1624 {
1625         int rc = ioctl(fd, OBD_IOC_GETNAME, lov_name);
1626         if (rc) {
1627                 rc = -errno;
1628                 llapi_error(LLAPI_MSG_ERROR, rc, "error: can't get lov name.");
1629         }
1630         return rc;
1631 }
1632
1633 int llapi_file_fget_lmv_uuid(int fd, struct obd_uuid *lov_name)
1634 {
1635         int rc = ioctl(fd, OBD_IOC_GETMDNAME, lov_name);
1636         if (rc) {
1637                 rc = -errno;
1638                 llapi_error(LLAPI_MSG_ERROR, rc, "error: can't get lmv name.");
1639         }
1640         return rc;
1641 }
1642
1643 int llapi_file_get_lov_uuid(const char *path, struct obd_uuid *lov_uuid)
1644 {
1645         int fd, rc;
1646
1647         fd = open(path, O_RDONLY | O_NONBLOCK);
1648         if (fd < 0) {
1649                 rc = -errno;
1650                 llapi_error(LLAPI_MSG_ERROR, rc, "error opening %s", path);
1651                 return rc;
1652         }
1653
1654         rc = llapi_file_fget_lov_uuid(fd, lov_uuid);
1655
1656         close(fd);
1657         return rc;
1658 }
1659
1660 int llapi_file_get_lmv_uuid(const char *path, struct obd_uuid *lov_uuid)
1661 {
1662         int fd, rc;
1663
1664         fd = open(path, O_RDONLY | O_NONBLOCK);
1665         if (fd < 0) {
1666                 rc = -errno;
1667                 llapi_error(LLAPI_MSG_ERROR, rc, "error opening %s", path);
1668                 return rc;
1669         }
1670
1671         rc = llapi_file_fget_lmv_uuid(fd, lov_uuid);
1672
1673         close(fd);
1674         return rc;
1675 }
1676
1677 enum tgt_type {
1678         LOV_TYPE = 1,
1679         LMV_TYPE
1680 };
1681
1682 /*
1683  * If uuidp is NULL, return the number of available obd uuids.
1684  * If uuidp is non-NULL, then it will return the uuids of the obds. If
1685  * there are more OSTs than allocated to uuidp, then an error is returned with
1686  * the ost_count set to number of available obd uuids.
1687  */
1688 static int llapi_get_target_uuids(int fd, struct obd_uuid *uuidp,
1689                                   int *ost_count, enum tgt_type type)
1690 {
1691         char buf[PATH_MAX], format[32];
1692         int rc = 0, index = 0;
1693         struct obd_uuid name;
1694         glob_t param;
1695         FILE *fp;
1696
1697         /* Get the lov name */
1698         if (type == LOV_TYPE)
1699                 rc = llapi_file_fget_lov_uuid(fd, &name);
1700         else
1701                 rc = llapi_file_fget_lmv_uuid(fd, &name);
1702         if (rc != 0)
1703                 return rc;
1704
1705         /* Now get the ost uuids */
1706         rc = get_lustre_param_path(type == LOV_TYPE ? "lov" : "lmv", name.uuid,
1707                                    FILTER_BY_EXACT, "target_obd", &param);
1708         if (rc != 0)
1709                 return -ENOENT;
1710
1711         fp = fopen(param.gl_pathv[0], "r");
1712         if (fp == NULL) {
1713                 rc = -errno;
1714                 llapi_error(LLAPI_MSG_ERROR, rc, "error: opening '%s'",
1715                             param.gl_pathv[0]);
1716                 goto free_param;
1717         }
1718
1719         snprintf(format, sizeof(format),
1720                  "%%d: %%%zus", sizeof(uuidp[0].uuid) - 1);
1721         while (fgets(buf, sizeof(buf), fp) != NULL) {
1722                 if (uuidp && (index < *ost_count)) {
1723                         if (sscanf(buf, format, &index, uuidp[index].uuid) < 2)
1724                                 break;
1725                 }
1726                 index++;
1727         }
1728
1729         fclose(fp);
1730
1731         if (uuidp && (index > *ost_count))
1732                 rc = -EOVERFLOW;
1733
1734         *ost_count = index;
1735 free_param:
1736         cfs_free_param_data(&param);
1737         return rc;
1738 }
1739
1740 int llapi_lov_get_uuids(int fd, struct obd_uuid *uuidp, int *ost_count)
1741 {
1742         return llapi_get_target_uuids(fd, uuidp, ost_count, LOV_TYPE);
1743 }
1744
1745 int llapi_get_obd_count(char *mnt, int *count, int is_mdt)
1746 {
1747         int root;
1748         int rc;
1749
1750         root = open(mnt, O_RDONLY | O_DIRECTORY);
1751         if (root < 0) {
1752                 rc = -errno;
1753                 llapi_error(LLAPI_MSG_ERROR, rc, "open %s failed", mnt);
1754                 return rc;
1755         }
1756
1757         *count = is_mdt;
1758         rc = ioctl(root, LL_IOC_GETOBDCOUNT, count);
1759         if (rc < 0)
1760                 rc = -errno;
1761
1762         close(root);
1763         return rc;
1764 }
1765
1766 /* Check if user specified value matches a real uuid.  Ignore _UUID,
1767  * -osc-4ba41334, other trailing gunk in comparison.
1768  * @param real_uuid ends in "_UUID"
1769  * @param search_uuid may or may not end in "_UUID"
1770  */
1771 int llapi_uuid_match(char *real_uuid, char *search_uuid)
1772 {
1773         int cmplen = strlen(real_uuid);
1774         int searchlen = strlen(search_uuid);
1775
1776         if (cmplen > 5 && strcmp(real_uuid + cmplen - 5, "_UUID") == 0)
1777                 cmplen -= 5;
1778         if (searchlen > 5 && strcmp(search_uuid + searchlen - 5, "_UUID") == 0)
1779                 searchlen -= 5;
1780
1781         /* The UUIDs may legitimately be different lengths, if
1782          * the system was upgraded from an older version. */
1783         if (cmplen != searchlen)
1784                 return 0;
1785
1786         return (strncmp(search_uuid, real_uuid, cmplen) == 0);
1787 }
1788
1789 /* Here, param->fp_obd_uuid points to a single obduuid, the index of which is
1790  * returned in param->fp_obd_index */
1791 static int setup_obd_uuid(int fd, char *dname, struct find_param *param)
1792 {
1793         struct obd_uuid obd_uuid;
1794         char buf[PATH_MAX];
1795         glob_t param_data;
1796         char format[32];
1797         int rc = 0;
1798         FILE *fp;
1799
1800         if (param->fp_got_uuids)
1801                 return rc;
1802
1803         /* Get the lov/lmv name */
1804         if (param->fp_get_lmv)
1805                 rc = llapi_file_fget_lmv_uuid(fd, &obd_uuid);
1806         else
1807                 rc = llapi_file_fget_lov_uuid(fd, &obd_uuid);
1808         if (rc) {
1809                 if (rc != -ENOTTY) {
1810                         llapi_error(LLAPI_MSG_ERROR, rc,
1811                                     "error: can't get %s name: %s",
1812                                     param->fp_get_lmv ? "lmv" : "lov",
1813                                     dname);
1814                 } else {
1815                         rc = 0;
1816                 }
1817                 return rc;
1818         }
1819
1820         param->fp_got_uuids = 1;
1821
1822         /* Now get the ost uuids */
1823         rc = get_lustre_param_path(param->fp_get_lmv ? "lmv" : "lov",
1824                                    obd_uuid.uuid, FILTER_BY_EXACT,
1825                                    "target_obd", &param_data);
1826         if (rc != 0)
1827                 return -ENOENT;
1828
1829         fp = fopen(param_data.gl_pathv[0], "r");
1830         if (fp == NULL) {
1831                 rc = -errno;
1832                 llapi_error(LLAPI_MSG_ERROR, rc, "error: opening '%s'",
1833                             param_data.gl_pathv[0]);
1834                 goto free_param;
1835         }
1836
1837         if (!param->fp_obd_uuid && !param->fp_quiet && !param->fp_obds_printed)
1838                 llapi_printf(LLAPI_MSG_NORMAL, "%s:\n",
1839                              param->fp_get_lmv ? "MDTS" : "OBDS");
1840
1841         snprintf(format, sizeof(format),
1842                  "%%d: %%%zus", sizeof(obd_uuid.uuid) - 1);
1843         while (fgets(buf, sizeof(buf), fp) != NULL) {
1844                 int index;
1845
1846                 if (sscanf(buf, format, &index, obd_uuid.uuid) < 2)
1847                         break;
1848
1849                 if (param->fp_obd_uuid) {
1850                         if (llapi_uuid_match(obd_uuid.uuid,
1851                                              param->fp_obd_uuid->uuid)) {
1852                                 param->fp_obd_index = index;
1853                                 break;
1854                         }
1855                 } else if (!param->fp_quiet && !param->fp_obds_printed) {
1856                         /* Print everything */
1857                         llapi_printf(LLAPI_MSG_NORMAL, "%s", buf);
1858                 }
1859         }
1860         param->fp_obds_printed = 1;
1861
1862         fclose(fp);
1863
1864         if (param->fp_obd_uuid && (param->fp_obd_index == OBD_NOT_FOUND)) {
1865                 llapi_err_noerrno(LLAPI_MSG_ERROR,
1866                                   "error: %s: unknown obduuid: %s",
1867                                   __func__, param->fp_obd_uuid->uuid);
1868                 rc = -EINVAL;
1869         }
1870 free_param:
1871         cfs_free_param_data(&param_data);
1872         return rc;
1873 }
1874
1875 /* In this case, param->fp_obd_uuid will be an array of obduuids and
1876  * obd index for all these obduuids will be returned in
1877  * param->fp_obd_indexes */
1878 static int setup_indexes(DIR *dir, char *path, struct obd_uuid *obduuids,
1879                          int num_obds, int **obdindexes, int *obdindex,
1880                          enum tgt_type type)
1881 {
1882         int ret, obdcount, obd_valid = 0, obdnum;
1883         long i;
1884         struct obd_uuid *uuids = NULL;
1885         char buf[16];
1886         int *indexes;
1887
1888         if (type == LOV_TYPE)
1889                 ret = get_param_lov(path, "numobd", buf, sizeof(buf));
1890         else
1891                 ret = get_param_lmv(path, "numobd", buf, sizeof(buf));
1892         if (ret != 0)
1893                 return ret;
1894
1895         obdcount = atoi(buf);
1896         uuids = malloc(obdcount * sizeof(struct obd_uuid));
1897         if (uuids == NULL)
1898                 return -ENOMEM;
1899
1900 retry_get_uuids:
1901         ret = llapi_get_target_uuids(dirfd(dir), uuids, &obdcount, type);
1902         if (ret) {
1903                 if (ret == -EOVERFLOW) {
1904                         struct obd_uuid *uuids_temp;
1905
1906                         uuids_temp = realloc(uuids, obdcount *
1907                                              sizeof(struct obd_uuid));
1908                         if (uuids_temp != NULL) {
1909                                 uuids = uuids_temp;
1910                                 goto retry_get_uuids;
1911                         }
1912                         ret = -ENOMEM;
1913                 }
1914
1915                 llapi_error(LLAPI_MSG_ERROR, ret, "get ost uuid failed");
1916                 goto out_free;
1917         }
1918
1919         indexes = malloc(num_obds * sizeof(*obdindex));
1920         if (indexes == NULL) {
1921                 ret = -ENOMEM;
1922                 goto out_free;
1923         }
1924
1925         for (obdnum = 0; obdnum < num_obds; obdnum++) {
1926                 char *end = NULL;
1927
1928                 /* The user may have specified a simple index */
1929                 i = strtol(obduuids[obdnum].uuid, &end, 0);
1930                 if (end && *end == '\0' && i < obdcount) {
1931                         indexes[obdnum] = i;
1932                         obd_valid++;
1933                 } else {
1934                         for (i = 0; i < obdcount; i++) {
1935                                 if (llapi_uuid_match(uuids[i].uuid,
1936                                                      obduuids[obdnum].uuid)) {
1937                                         indexes[obdnum] = i;
1938                                         obd_valid++;
1939                                         break;
1940                                 }
1941                         }
1942                 }
1943                 if (i >= obdcount) {
1944                         indexes[obdnum] = OBD_NOT_FOUND;
1945                         llapi_err_noerrno(LLAPI_MSG_ERROR,
1946                                           "error: %s: unknown obduuid: %s",
1947                                           __func__, obduuids[obdnum].uuid);
1948                         ret = -EINVAL;
1949                 }
1950         }
1951
1952         if (obd_valid == 0)
1953                 *obdindex = OBD_NOT_FOUND;
1954         else
1955                 *obdindex = obd_valid;
1956
1957         *obdindexes = indexes;
1958 out_free:
1959         if (uuids)
1960                 free(uuids);
1961
1962         return ret;
1963 }
1964
1965 static int setup_target_indexes(DIR *dir, char *path, struct find_param *param)
1966 {
1967         int ret = 0;
1968
1969         if (param->fp_mdt_uuid) {
1970                 ret = setup_indexes(dir, path, param->fp_mdt_uuid,
1971                                     param->fp_num_mdts,
1972                                     &param->fp_mdt_indexes,
1973                                     &param->fp_mdt_index, LMV_TYPE);
1974                 if (ret)
1975                         return ret;
1976         }
1977
1978         if (param->fp_obd_uuid) {
1979                 ret = setup_indexes(dir, path, param->fp_obd_uuid,
1980                                     param->fp_num_obds,
1981                                     &param->fp_obd_indexes,
1982                                     &param->fp_obd_index, LOV_TYPE);
1983                 if (ret)
1984                         return ret;
1985         }
1986
1987         param->fp_got_uuids = 1;
1988
1989         return ret;
1990 }
1991
1992 int llapi_ostlist(char *path, struct find_param *param)
1993 {
1994         int fd;
1995         int ret;
1996
1997         fd = open(path, O_RDONLY | O_DIRECTORY);
1998         if (fd < 0)
1999                 return -errno;
2000
2001         ret = setup_obd_uuid(fd, path, param);
2002         close(fd);
2003
2004         return ret;
2005 }
2006
2007 /*
2008  * Tries to determine the default stripe attributes for a given filesystem. The
2009  * filesystem to check should be specified by fsname, or will be determined
2010  * using pathname.
2011  */
2012 static int sattr_get_defaults(const char *const fsname,
2013                               unsigned int *scount,
2014                               unsigned int *ssize,
2015                               unsigned int *soffset)
2016 {
2017         char val[PATH_MAX];
2018         int rc;
2019
2020         if (scount) {
2021                 rc = get_lustre_param_value("lov", fsname, FILTER_BY_FS_NAME,
2022                                             "stripecount", val, sizeof(val));
2023                 if (rc != 0)
2024                         return rc;
2025                 *scount = atoi(val);
2026         }
2027
2028         if (ssize) {
2029                 rc = get_lustre_param_value("lov", fsname, FILTER_BY_FS_NAME,
2030                                             "stripesize", val, sizeof(val));
2031                 if (rc != 0)
2032                         return rc;
2033                 *ssize = atoi(val);
2034         }
2035
2036         if (soffset) {
2037                 rc = get_lustre_param_value("lov", fsname, FILTER_BY_FS_NAME,
2038                                             "stripeoffset", val, sizeof(val));
2039                 if (rc != 0)
2040                         return rc;
2041                 *soffset = atoi(val);
2042         }
2043
2044         return 0;
2045 }
2046
2047 /*
2048  * Tries to gather the default stripe attributes for a given filesystem. If
2049  * the attributes can be determined, they are cached for easy retreival the
2050  * next time they are needed. Only a single filesystem's attributes are
2051  * cached at a time.
2052  */
2053 int sattr_cache_get_defaults(const char *const fsname,
2054                              const char *const pathname, unsigned int *scount,
2055                              unsigned int *ssize, unsigned int *soffset)
2056 {
2057         static struct {
2058                 char fsname[PATH_MAX + 1];
2059                 unsigned int stripecount;
2060                 unsigned int stripesize;
2061                 unsigned int stripeoffset;
2062         } cache = {
2063                 .fsname = {'\0'}
2064         };
2065
2066         int rc;
2067         char fsname_buf[PATH_MAX + 1];
2068         unsigned int tmp[3];
2069
2070         if (fsname == NULL) {
2071                 rc = llapi_search_fsname(pathname, fsname_buf);
2072                 if (rc)
2073                         return rc;
2074         } else {
2075                 strlcpy(fsname_buf, fsname, sizeof(fsname_buf));
2076         }
2077
2078         if (strncmp(fsname_buf, cache.fsname, sizeof(fsname_buf) - 1) != 0) {
2079                 /*
2080                  * Ensure all 3 sattrs (count, size, and offset) are
2081                  * successfully retrieved and stored in tmp before writing to
2082                  * cache.
2083                  */
2084                 rc = sattr_get_defaults(fsname_buf, &tmp[0], &tmp[1], &tmp[2]);
2085                 if (rc != 0)
2086                         return rc;
2087
2088                 cache.stripecount = tmp[0];
2089                 cache.stripesize = tmp[1];
2090                 cache.stripeoffset = tmp[2];
2091                 strlcpy(cache.fsname, fsname_buf, sizeof(cache.fsname));
2092         }
2093
2094         if (scount)
2095                 *scount = cache.stripecount;
2096         if (ssize)
2097                 *ssize = cache.stripesize;
2098         if (soffset)
2099                 *soffset = cache.stripeoffset;
2100
2101         return 0;
2102 }
2103
2104 static void lov_dump_user_lmm_header(struct lov_user_md *lum, char *path,
2105                                      struct lov_user_ost_data_v1 *objects,
2106                                      int is_dir, int verbose, int depth,
2107                                      int raw, char *pool_name)
2108 {
2109         char *prefix = is_dir ? "" : "lmm_";
2110         char *separator = "";
2111         int rc;
2112
2113         if (is_dir && lmm_oi_seq(&lum->lmm_oi) == FID_SEQ_LOV_DEFAULT) {
2114                 lmm_oi_set_seq(&lum->lmm_oi, 0);
2115                 if (verbose & VERBOSE_DETAIL)
2116                         llapi_printf(LLAPI_MSG_NORMAL, "(Default) ");
2117         }
2118
2119         if (depth && path && ((verbose != VERBOSE_OBJID) || !is_dir))
2120                 llapi_printf(LLAPI_MSG_NORMAL, "%s\n", path);
2121
2122         if ((verbose & VERBOSE_DETAIL) && !is_dir) {
2123                 llapi_printf(LLAPI_MSG_NORMAL, "lmm_magic:          0x%08X\n",
2124                              lum->lmm_magic);
2125                 llapi_printf(LLAPI_MSG_NORMAL, "lmm_seq:            %#jx\n",
2126                              (uintmax_t)lmm_oi_seq(&lum->lmm_oi));
2127                 llapi_printf(LLAPI_MSG_NORMAL, "lmm_object_id:      %#jx\n",
2128                              (uintmax_t)lmm_oi_id(&lum->lmm_oi));
2129         }
2130         if ((verbose & (VERBOSE_DETAIL | VERBOSE_DFID)) && !is_dir) {
2131                 if (verbose & ~VERBOSE_DFID)
2132                         llapi_printf(LLAPI_MSG_NORMAL, "lmm_fid:            ");
2133                 /* This needs a bit of hand-holding since old 1.x lmm_oi
2134                  * have { oi.oi_id = mds_inum, oi.oi_seq = 0 } and 2.x lmm_oi
2135                  * have { oi.oi_id = mds_oid, oi.oi_seq = mds_seq } instead of
2136                  * a real FID.  Ideally the 2.x code would have stored this
2137                  * like a FID with { oi_id = mds_seq, oi_seq = mds_oid } so the
2138                  * ostid union lu_fid { f_seq = mds_seq, f_oid = mds_oid }
2139                  * worked properly (especially since IGIF FIDs use mds_inum as
2140                  * the FID SEQ), but unfortunately that didn't happen.
2141                  *
2142                  * Print it to look like an IGIF FID, even though the fields
2143                  * are reversed on disk, so that it makes sense to userspace.
2144                  *
2145                  * Don't use ostid_id() and ostid_seq(), since they assume the
2146                  * oi_fid fields are in the right order.  This is why there are
2147                  * separate lmm_oi_seq() and lmm_oi_id() routines for this.
2148                  *
2149                  * For newer layout types hopefully this will be a real FID. */
2150                 llapi_printf(LLAPI_MSG_NORMAL, DFID"\n",
2151                              lmm_oi_seq(&lum->lmm_oi) == 0 ?
2152                                 lmm_oi_id(&lum->lmm_oi) :
2153                                 lmm_oi_seq(&lum->lmm_oi),
2154                              lmm_oi_seq(&lum->lmm_oi) == 0 ?
2155                                 0 : (__u32)lmm_oi_id(&lum->lmm_oi),
2156                              (__u32)(lmm_oi_id(&lum->lmm_oi) >> 32));
2157         }
2158
2159         if (verbose & VERBOSE_COUNT) {
2160                 if (verbose & ~VERBOSE_COUNT)
2161                         llapi_printf(LLAPI_MSG_NORMAL, "%sstripe_count:   ",
2162                                      prefix);
2163                 if (is_dir) {
2164                         if (!raw && lum->lmm_stripe_count == 0) {
2165                                 unsigned int scount;
2166                                 rc = sattr_cache_get_defaults(NULL, path,
2167                                                               &scount, NULL,
2168                                                               NULL);
2169                                 if (rc == 0)
2170                                         llapi_printf(LLAPI_MSG_NORMAL, "%d",
2171                                                      scount);
2172                                 else
2173                                         llapi_error(LLAPI_MSG_ERROR, rc,
2174                                                     "Cannot determine default"
2175                                                     " stripe count.");
2176                         } else {
2177                                 llapi_printf(LLAPI_MSG_NORMAL, "%d",
2178                                              lum->lmm_stripe_count ==
2179                                              (typeof(lum->lmm_stripe_count))(-1)
2180                                              ? -1 : lum->lmm_stripe_count);
2181                         }
2182                 } else {
2183                         llapi_printf(LLAPI_MSG_NORMAL, "%hd",
2184                                      (__s16)lum->lmm_stripe_count);
2185                 }
2186                 separator = is_dir ? " " : "\n";
2187         }
2188
2189         if (verbose & VERBOSE_SIZE) {
2190                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2191                 if (verbose & ~VERBOSE_SIZE)
2192                         llapi_printf(LLAPI_MSG_NORMAL, "%sstripe_size:    ",
2193                                      prefix);
2194                 if (is_dir && !raw && lum->lmm_stripe_size == 0) {
2195                         unsigned int ssize;
2196                         rc = sattr_cache_get_defaults(NULL, path, NULL, &ssize,
2197                                                       NULL);
2198                         if (rc == 0)
2199                                 llapi_printf(LLAPI_MSG_NORMAL, "%u", ssize);
2200                         else
2201                                 llapi_error(LLAPI_MSG_ERROR, rc,
2202                                             "Cannot determine default"
2203                                             " stripe size.");
2204                 } else {
2205                         llapi_printf(LLAPI_MSG_NORMAL, "%u",
2206                                      lum->lmm_stripe_size);
2207                 }
2208                 separator = is_dir ? " " : "\n";
2209         }
2210
2211         if ((verbose & VERBOSE_LAYOUT) && !is_dir) {
2212                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2213                 if (verbose & ~VERBOSE_LAYOUT)
2214                         llapi_printf(LLAPI_MSG_NORMAL, "%spattern:        ",
2215                                      prefix);
2216                 llapi_printf(LLAPI_MSG_NORMAL, "%.x", lum->lmm_pattern);
2217                 separator = "\n";
2218         }
2219
2220         if ((verbose & VERBOSE_GENERATION) && !is_dir) {
2221                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2222                 if (verbose & ~VERBOSE_GENERATION)
2223                         llapi_printf(LLAPI_MSG_NORMAL, "%slayout_gen:     ",
2224                                      prefix);
2225                 llapi_printf(LLAPI_MSG_NORMAL, "%u",
2226                              (int)lum->lmm_layout_gen);
2227                 separator = "\n";
2228         }
2229
2230         if (verbose & VERBOSE_OFFSET) {
2231                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2232                 if (verbose & ~VERBOSE_OFFSET)
2233                         llapi_printf(LLAPI_MSG_NORMAL, "%sstripe_offset:  ",
2234                                      prefix);
2235                 if (is_dir)
2236                         llapi_printf(LLAPI_MSG_NORMAL, "%d",
2237                                      lum->lmm_stripe_offset ==
2238                                      (typeof(lum->lmm_stripe_offset))(-1) ? -1 :
2239                                      lum->lmm_stripe_offset);
2240                 else
2241                         llapi_printf(LLAPI_MSG_NORMAL, "%u",
2242                                      objects[0].l_ost_idx);
2243                 separator = is_dir ? " " : "\n";
2244         }
2245
2246         if ((verbose & VERBOSE_POOL) && (pool_name != NULL)) {
2247                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2248                 if (verbose & ~VERBOSE_POOL)
2249                         llapi_printf(LLAPI_MSG_NORMAL, "%spool:           ",
2250                                      prefix);
2251                 llapi_printf(LLAPI_MSG_NORMAL, "%s", pool_name);
2252         }
2253
2254         if (!is_dir || (is_dir && (verbose != VERBOSE_OBJID)))
2255                 llapi_printf(LLAPI_MSG_NORMAL, "\n");
2256 }
2257
2258 void lov_dump_user_lmm_v1v3(struct lov_user_md *lum, char *pool_name,
2259                             struct lov_user_ost_data_v1 *objects,
2260                             char *path, int is_dir, int obdindex,
2261                             int depth, int header, int raw)
2262 {
2263         int i, obdstripe = (obdindex != OBD_NOT_FOUND) ? 0 : 1;
2264
2265         if (!obdstripe) {
2266                 for (i = 0; !is_dir && i < lum->lmm_stripe_count; i++) {
2267                         if (obdindex == objects[i].l_ost_idx) {
2268                                 obdstripe = 1;
2269                                 break;
2270                         }
2271                 }
2272         }
2273
2274         if (obdstripe == 1)
2275                 lov_dump_user_lmm_header(lum, path, objects, is_dir, header,
2276                                          depth, raw, pool_name);
2277
2278         if (!is_dir && (header & VERBOSE_OBJID) &&
2279             !(lum->lmm_pattern & LOV_PATTERN_F_RELEASED)) {
2280                 if (obdstripe == 1)
2281                         llapi_printf(LLAPI_MSG_NORMAL,
2282                                    "\tobdidx\t\t objid\t\t objid\t\t group\n");
2283
2284                 for (i = 0; i < lum->lmm_stripe_count; i++) {
2285                         int idx = objects[i].l_ost_idx;
2286                         long long oid = ostid_id(&objects[i].l_ost_oi);
2287                         long long gr = ostid_seq(&objects[i].l_ost_oi);
2288                         if ((obdindex == OBD_NOT_FOUND) || (obdindex == idx)) {
2289                                 char fmt[48];
2290                                 sprintf(fmt, "%s%s%s\n",
2291                                         "\t%6u\t%14llu\t%#13llx\t",
2292                                         (fid_seq_is_rsvd(gr) ||
2293                                          fid_seq_is_mdt0(gr)) ?
2294                                          "%14llu" : "%#14llx", "%s");
2295                                 llapi_printf(LLAPI_MSG_NORMAL, fmt, idx, oid,
2296                                              oid, gr,
2297                                              obdindex == idx ? " *" : "");
2298                         }
2299
2300                 }
2301                 llapi_printf(LLAPI_MSG_NORMAL, "\n");
2302         }
2303 }
2304
2305 void lmv_dump_user_lmm(struct lmv_user_md *lum, char *pool_name,
2306                        char *path, int obdindex, int depth, int verbose)
2307 {
2308         struct lmv_user_mds_data *objects = lum->lum_objects;
2309         char *prefix = lum->lum_magic == LMV_USER_MAGIC ? "(Default)" : "";
2310         int i, obdstripe = 0;
2311         char *separator = "";
2312
2313         if (obdindex != OBD_NOT_FOUND) {
2314                 if (lum->lum_stripe_count == 0) {
2315                         if (obdindex == lum->lum_stripe_offset)
2316                                 obdstripe = 1;
2317                 } else {
2318                         for (i = 0; i < lum->lum_stripe_count; i++) {
2319                                 if (obdindex == objects[i].lum_mds) {
2320                                         llapi_printf(LLAPI_MSG_NORMAL,
2321                                                      "%s%s\n", prefix,
2322                                                      path);
2323                                         obdstripe = 1;
2324                                         break;
2325                                 }
2326                         }
2327                 }
2328         } else {
2329                 obdstripe = 1;
2330         }
2331
2332         if (!obdstripe)
2333                 return;
2334
2335         /* show all information default */
2336         if (!verbose) {
2337                 if (lum->lum_magic == LMV_USER_MAGIC)
2338                         verbose = VERBOSE_POOL | VERBOSE_COUNT |
2339                                   VERBOSE_OFFSET | VERBOSE_HASH_TYPE;
2340                 else
2341                         verbose = VERBOSE_OBJID;
2342         }
2343
2344         if (depth && path && ((verbose != VERBOSE_OBJID)))
2345                 llapi_printf(LLAPI_MSG_NORMAL, "%s%s\n", prefix, path);
2346
2347         if (verbose & VERBOSE_COUNT) {
2348                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2349                 if (verbose & ~VERBOSE_COUNT)
2350                         llapi_printf(LLAPI_MSG_NORMAL, "lmv_stripe_count: ");
2351                 llapi_printf(LLAPI_MSG_NORMAL, "%u",
2352                              (int)lum->lum_stripe_count);
2353                 if (verbose & VERBOSE_OFFSET)
2354                         separator = " ";
2355                 else
2356                         separator = "\n";
2357         }
2358
2359         if (verbose & VERBOSE_OFFSET) {
2360                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2361                 if (verbose & ~VERBOSE_OFFSET)
2362                         llapi_printf(LLAPI_MSG_NORMAL, "lmv_stripe_offset: ");
2363                 llapi_printf(LLAPI_MSG_NORMAL, "%d",
2364                              (int)lum->lum_stripe_offset);
2365                 if (verbose & VERBOSE_HASH_TYPE)
2366                         separator = " ";
2367                 else
2368                         separator = "\n";
2369         }
2370
2371         if (verbose & VERBOSE_HASH_TYPE) {
2372                 unsigned int type = lum->lum_hash_type;
2373
2374                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2375                 if (verbose & ~VERBOSE_HASH_TYPE)
2376                         llapi_printf(LLAPI_MSG_NORMAL, "lmv_hash_type: ");
2377                 if (type < LMV_HASH_TYPE_MAX)
2378                         llapi_printf(LLAPI_MSG_NORMAL, "%s",
2379                                      mdt_hash_name[type]);
2380                 else
2381                         llapi_printf(LLAPI_MSG_NORMAL, "%d",
2382                                      (int)type);
2383                 separator = "\n";
2384         }
2385
2386         if (verbose & VERBOSE_OBJID && lum->lum_magic != LMV_USER_MAGIC) {
2387                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2388                 if (obdstripe == 1 && lum->lum_stripe_count > 0)
2389                         llapi_printf(LLAPI_MSG_NORMAL,
2390                                      "mdtidx\t\t FID[seq:oid:ver]\n");
2391                 for (i = 0; i < lum->lum_stripe_count; i++) {
2392                         int idx = objects[i].lum_mds;
2393                         struct lu_fid *fid = &objects[i].lum_fid;
2394                         if ((obdindex == OBD_NOT_FOUND) || (obdindex == idx))
2395                                 llapi_printf(LLAPI_MSG_NORMAL,
2396                                              "%6u\t\t "DFID"\t\t%s\n",
2397                                             idx, PFID(fid),
2398                                             obdindex == idx ? " *" : "");
2399                 }
2400
2401         }
2402
2403         if ((verbose & VERBOSE_POOL) && pool_name != NULL &&
2404              pool_name[0] != '\0') {
2405                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2406                 if (verbose & ~VERBOSE_POOL)
2407                         llapi_printf(LLAPI_MSG_NORMAL, "%slmv_pool:           ",
2408                                      prefix);
2409                 llapi_printf(LLAPI_MSG_NORMAL, "%s%c ", pool_name, ' ');
2410                 separator = "\n";
2411         }
2412
2413         if (!(verbose & VERBOSE_OBJID) || lum->lum_magic == LMV_USER_MAGIC)
2414                 llapi_printf(LLAPI_MSG_NORMAL, "\n");
2415 }
2416
2417 void llapi_lov_dump_user_lmm(struct find_param *param, char *path, int is_dir)
2418 {
2419         __u32 magic;
2420
2421         if (param->fp_get_lmv || param->fp_get_default_lmv)
2422                 magic = (__u32)param->fp_lmv_md->lum_magic;
2423         else
2424                 magic = *(__u32 *)&param->fp_lmd->lmd_lmm; /* lum->lmm_magic */
2425
2426         switch (magic) {
2427         case LOV_USER_MAGIC_V1:
2428                 lov_dump_user_lmm_v1v3(&param->fp_lmd->lmd_lmm, NULL,
2429                                        param->fp_lmd->lmd_lmm.lmm_objects,
2430                                        path, is_dir,
2431                                        param->fp_obd_index, param->fp_max_depth,
2432                                        param->fp_verbose, param->fp_raw);
2433                 break;
2434         case LOV_USER_MAGIC_V3: {
2435                 char pool_name[LOV_MAXPOOLNAME + 1];
2436                 struct lov_user_ost_data_v1 *objects;
2437                 struct lov_user_md_v3 *lmmv3 = (void *)&param->fp_lmd->lmd_lmm;
2438
2439                 strlcpy(pool_name, lmmv3->lmm_pool_name, sizeof(pool_name));
2440                 objects = lmmv3->lmm_objects;
2441                 lov_dump_user_lmm_v1v3(&param->fp_lmd->lmd_lmm,
2442                                        pool_name[0] == '\0' ? NULL : pool_name,
2443                                        objects, path, is_dir,
2444                                        param->fp_obd_index, param->fp_max_depth,
2445                                        param->fp_verbose, param->fp_raw);
2446                 break;
2447         }
2448         case LMV_MAGIC_V1:
2449         case LMV_USER_MAGIC: {
2450                 char pool_name[LOV_MAXPOOLNAME + 1];
2451                 struct lmv_user_md *lum;
2452
2453                 lum = (struct lmv_user_md *)param->fp_lmv_md;
2454                 strlcpy(pool_name, lum->lum_pool_name, sizeof(pool_name));
2455                 lmv_dump_user_lmm(lum,
2456                                   pool_name[0] == '\0' ? NULL : pool_name,
2457                                   path, param->fp_obd_index,
2458                                   param->fp_max_depth, param->fp_verbose);
2459                 break;
2460         }
2461         default:
2462                 llapi_printf(LLAPI_MSG_NORMAL, "unknown lmm_magic:  %#x "
2463                              "(expecting one of %#x %#x %#x %#x)\n",
2464                              *(__u32 *)&param->fp_lmd->lmd_lmm,
2465                              LOV_USER_MAGIC_V1, LOV_USER_MAGIC_V3,
2466                              LMV_USER_MAGIC, LMV_MAGIC_V1);
2467                 return;
2468         }
2469 }
2470
2471 int llapi_file_get_stripe(const char *path, struct lov_user_md *lum)
2472 {
2473         const char *fname;
2474         char *dname;
2475         int fd, rc = 0;
2476
2477         fname = strrchr(path, '/');
2478
2479         /* It should be a file (or other non-directory) */
2480         if (fname == NULL) {
2481                 dname = (char *)malloc(2);
2482                 if (dname == NULL)
2483                         return -ENOMEM;
2484                 strcpy(dname, ".");
2485                 fname = (char *)path;
2486         } else {
2487                 dname = (char *)malloc(fname - path + 1);
2488                 if (dname == NULL)
2489                         return -ENOMEM;
2490                 strncpy(dname, path, fname - path);
2491                 dname[fname - path] = '\0';
2492                 fname++;
2493         }
2494
2495         fd = open(dname, O_RDONLY | O_NONBLOCK);
2496         if (fd == -1) {
2497                 rc = -errno;
2498                 free(dname);
2499                 return rc;
2500         }
2501
2502         strcpy((char *)lum, fname);
2503         if (ioctl(fd, IOC_MDC_GETFILESTRIPE, (void *)lum) == -1)
2504                 rc = -errno;
2505
2506         if (close(fd) == -1 && rc == 0)
2507                 rc = -errno;
2508
2509         free(dname);
2510         return rc;
2511 }
2512
2513 int llapi_file_lookup(int dirfd, const char *name)
2514 {
2515         struct obd_ioctl_data data = { 0 };
2516         char rawbuf[8192];
2517         char *buf = rawbuf;
2518         int rc;
2519
2520         if (dirfd < 0 || name == NULL)
2521                 return -EINVAL;
2522
2523         data.ioc_version = OBD_IOCTL_VERSION;
2524         data.ioc_len = sizeof(data);
2525         data.ioc_inlbuf1 = (char *)name;
2526         data.ioc_inllen1 = strlen(name) + 1;
2527
2528         rc = obd_ioctl_pack(&data, &buf, sizeof(rawbuf));
2529         if (rc) {
2530                 llapi_error(LLAPI_MSG_ERROR, rc,
2531                             "error: IOC_MDC_LOOKUP pack failed for '%s': rc %d",
2532                             name, rc);
2533                 return rc;
2534         }
2535
2536         rc = ioctl(dirfd, IOC_MDC_LOOKUP, buf);
2537         if (rc < 0)
2538                 rc = -errno;
2539         return rc;
2540 }
2541
2542 /* Check if the value matches 1 of the given criteria (e.g. --atime +/-N).
2543  * @mds indicates if this is MDS timestamps and there are attributes on OSTs.
2544  *
2545  * The result is -1 if it does not match, 0 if not yet clear, 1 if matches.
2546  * The table below gives the answers for the specified parameters (value and
2547  * sign), 1st column is the answer for the MDS value, the 2nd is for the OST:
2548  * --------------------------------------
2549  * 1 | file > limit; sign > 0 | -1 / -1 |
2550  * 2 | file = limit; sign > 0 | -1 / -1 |
2551  * 3 | file < limit; sign > 0 |  ? /  1 |
2552  * 4 | file > limit; sign = 0 | -1 / -1 |
2553  * 5 | file = limit; sign = 0 |  ? /  1 |  <- (see the Note below)
2554  * 6 | file < limit; sign = 0 |  ? / -1 |
2555  * 7 | file > limit; sign < 0 |  1 /  1 |
2556  * 8 | file = limit; sign < 0 |  ? / -1 |
2557  * 9 | file < limit; sign < 0 |  ? / -1 |
2558  * --------------------------------------
2559  * Note: 5th actually means that the value is within the interval
2560  * (limit - margin, limit]. */
2561 static int find_value_cmp(unsigned long long file, unsigned long long limit,
2562                           int sign, int negopt, unsigned long long margin,
2563                           int mds)
2564 {
2565         int ret = -1;
2566
2567         if (sign > 0) {
2568                 /* Drop the fraction of margin (of days). */
2569                 if (file + margin <= limit)
2570                         ret = mds ? 0 : 1;
2571         } else if (sign == 0) {
2572                 if (file <= limit && file + margin > limit)
2573                         ret = mds ? 0 : 1;
2574                 else if (file + margin <= limit)
2575                         ret = mds ? 0 : -1;
2576         } else if (sign < 0) {
2577                 if (file > limit)
2578                         ret = 1;
2579                 else if (mds)
2580                         ret = 0;
2581         }
2582
2583         return negopt ? ~ret + 1 : ret;
2584 }
2585
2586 /* Check if the file time matches all the given criteria (e.g. --atime +/-N).
2587  * Return -1 or 1 if file timestamp does not or does match the given criteria
2588  * correspondingly. Return 0 if the MDS time is being checked and there are
2589  * attributes on OSTs and it is not yet clear if the timespamp matches.
2590  *
2591  * If 0 is returned, we need to do another RPC to the OSTs to obtain the
2592  * updated timestamps. */
2593 static int find_time_check(lstat_t *st, struct find_param *param, int mds)
2594 {
2595         int rc = 1;
2596         int rc2;
2597
2598         /* Check if file is accepted. */
2599         if (param->fp_atime) {
2600                 rc2 = find_value_cmp(st->st_atime, param->fp_atime,
2601                                      param->fp_asign, param->fp_exclude_atime,
2602                                      24 * 60 * 60, mds);
2603                 if (rc2 < 0)
2604                         return rc2;
2605                 rc = rc2;
2606         }
2607
2608         if (param->fp_mtime) {
2609                 rc2 = find_value_cmp(st->st_mtime, param->fp_mtime,
2610                                      param->fp_msign, param->fp_exclude_mtime,
2611                                      24 * 60 * 60, mds);
2612                 if (rc2 < 0)
2613                         return rc2;
2614
2615                 /* If the previous check matches, but this one is not yet clear,
2616                  * we should return 0 to do an RPC on OSTs. */
2617                 if (rc == 1)
2618                         rc = rc2;
2619         }
2620
2621         if (param->fp_ctime) {
2622                 rc2 = find_value_cmp(st->st_ctime, param->fp_ctime,
2623                                      param->fp_csign, param->fp_exclude_ctime,
2624                                      24 * 60 * 60, mds);
2625                 if (rc2 < 0)
2626                         return rc2;
2627
2628                 /* If the previous check matches, but this one is not yet clear,
2629                  * we should return 0 to do an RPC on OSTs. */
2630                 if (rc == 1)
2631                         rc = rc2;
2632         }
2633
2634         return rc;
2635 }
2636
2637 /**
2638  * Check whether the stripes matches the indexes user provided
2639  *       1   : matched
2640  *       0   : Unmatched
2641  */
2642 static int check_obd_match(struct find_param *param)
2643 {
2644         lstat_t *st = &param->fp_lmd->lmd_st;
2645         struct lov_user_ost_data_v1 *lmm_objects;
2646         int i, j;
2647
2648         if (param->fp_obd_uuid && param->fp_obd_index == OBD_NOT_FOUND)
2649                 return 0;
2650
2651         if (!S_ISREG(st->st_mode))
2652                 return 0;
2653
2654         /* Only those files should be accepted, which have a
2655          * stripe on the specified OST. */
2656         if (!param->fp_lmd->lmd_lmm.lmm_stripe_count)
2657                 return 0;
2658
2659         if (param->fp_lmd->lmd_lmm.lmm_magic ==
2660             LOV_USER_MAGIC_V3) {
2661                 struct lov_user_md_v3 *lmmv3 = (void *)&param->fp_lmd->lmd_lmm;
2662
2663                 lmm_objects = lmmv3->lmm_objects;
2664         } else if (param->fp_lmd->lmd_lmm.lmm_magic ==  LOV_USER_MAGIC_V1) {
2665                 lmm_objects = param->fp_lmd->lmd_lmm.lmm_objects;
2666         } else {
2667                 llapi_err_noerrno(LLAPI_MSG_ERROR, "%s:Unknown magic: 0x%08X\n",
2668                                   __func__, param->fp_lmd->lmd_lmm.lmm_magic);
2669                 return -EINVAL;
2670         }
2671
2672         for (i = 0; i < param->fp_lmd->lmd_lmm.lmm_stripe_count; i++) {
2673                 for (j = 0; j < param->fp_num_obds; j++) {
2674                         if (param->fp_obd_indexes[j] ==
2675                             lmm_objects[i].l_ost_idx) {
2676                                 if (param->fp_exclude_obd)
2677                                         return 0;
2678                                 return 1;
2679                         }
2680                 }
2681         }
2682
2683         if (param->fp_exclude_obd)
2684                 return 1;
2685
2686         return 0;
2687 }
2688
2689 static int check_mdt_match(struct find_param *param)
2690 {
2691         int i;
2692
2693         if (param->fp_mdt_uuid && param->fp_mdt_index == OBD_NOT_FOUND)
2694                 return 0;
2695
2696         /* FIXME: For striped dir, we should get stripe information and check */
2697         for (i = 0; i < param->fp_num_mdts; i++) {
2698                 if (param->fp_mdt_indexes[i] == param->fp_file_mdt_index)
2699                         return !param->fp_exclude_mdt;
2700         }
2701
2702         if (param->fp_exclude_mdt)
2703                 return 1;
2704
2705         return 0;
2706 }
2707
2708 /**
2709  * Check whether the obd is active or not, if it is
2710  * not active, just print the object affected by this
2711  * failed target
2712  **/
2713 static int print_failed_tgt(struct find_param *param, char *path, int type)
2714 {
2715         struct obd_statfs stat_buf;
2716         struct obd_uuid uuid_buf;
2717         int ret;
2718
2719         if (type != LL_STATFS_LOV && type != LL_STATFS_LMV)
2720                 return -EINVAL;
2721
2722         memset(&stat_buf, 0, sizeof(struct obd_statfs));
2723         memset(&uuid_buf, 0, sizeof(struct obd_uuid));
2724         ret = llapi_obd_statfs(path, type,
2725                                param->fp_obd_index, &stat_buf,
2726                                &uuid_buf);
2727         if (ret) {
2728                 llapi_printf(LLAPI_MSG_NORMAL,
2729                              "obd_uuid: %s failed %s ",
2730                              param->fp_obd_uuid->uuid,
2731                              strerror(errno));
2732         }
2733
2734         return ret;
2735 }
2736
2737 static int cb_find_init(char *path, DIR *parent, DIR **dirp,
2738                         void *data, struct dirent64 *de)
2739 {
2740         struct find_param *param = (struct find_param *)data;
2741         DIR *dir = dirp == NULL ? NULL : *dirp;
2742         int decision = 1; /* 1 is accepted; -1 is rejected. */
2743         lstat_t *st = &param->fp_lmd->lmd_st;
2744         int lustre_fs = 1;
2745         int checked_type = 0;
2746         int ret = 0;
2747
2748         if (parent == NULL && dir == NULL)
2749                 return -EINVAL;
2750
2751         param->fp_lmd->lmd_lmm.lmm_stripe_count = 0;
2752
2753         /* If a regular expression is presented, make the initial decision */
2754         if (param->fp_pattern != NULL) {
2755                 char *fname = strrchr(path, '/');
2756                 fname = (fname == NULL ? path : fname + 1);
2757                 ret = fnmatch(param->fp_pattern, fname, 0);
2758                 if ((ret == FNM_NOMATCH && !param->fp_exclude_pattern) ||
2759                     (ret == 0 && param->fp_exclude_pattern))
2760                         goto decided;
2761         }
2762
2763         /* See if we can check the file type from the dirent. */
2764         if (param->fp_type != 0 && de != NULL && de->d_type != DT_UNKNOWN) {
2765                 checked_type = 1;
2766
2767                 if (DTTOIF(de->d_type) == param->fp_type) {
2768                         if (param->fp_exclude_type)
2769                                 goto decided;
2770                 } else {
2771                         if (!param->fp_exclude_type)
2772                                 goto decided;
2773                 }
2774         }
2775
2776         ret = 0;
2777
2778         /* Request MDS for the stat info if some of these parameters need
2779          * to be compared. */
2780         if (param->fp_obd_uuid || param->fp_mdt_uuid ||
2781             param->fp_check_uid || param->fp_check_gid ||
2782             param->fp_atime || param->fp_mtime || param->fp_ctime ||
2783             param->fp_check_pool || param->fp_check_size ||
2784             param->fp_check_stripe_count || param->fp_check_stripe_size ||
2785             param->fp_check_layout)
2786                 decision = 0;
2787
2788         if (param->fp_type != 0 && checked_type == 0)
2789                 decision = 0;
2790
2791         if (decision == 0) {
2792                 ret = get_lmd_info(path, parent, dir, param->fp_lmd,
2793                                    param->fp_lum_size);
2794                 if (ret == 0 && param->fp_lmd->lmd_lmm.lmm_magic == 0 &&
2795                     (param->fp_check_pool || param->fp_check_stripe_count ||
2796                      param->fp_check_stripe_size || param->fp_check_layout)) {
2797                         struct lov_user_md *lmm = &param->fp_lmd->lmd_lmm;
2798
2799                         /* We need to "fake" the "use the default" values
2800                          * since the lmm struct is zeroed out at this point. */
2801                         lmm->lmm_magic = LOV_USER_MAGIC_V1;
2802                         lmm->lmm_pattern = 0xFFFFFFFF;
2803                         if (!param->fp_raw)
2804                                 ostid_set_seq(&lmm->lmm_oi,
2805                                               FID_SEQ_LOV_DEFAULT);
2806                         lmm->lmm_stripe_size = 0;
2807                         lmm->lmm_stripe_count = 0;
2808                         lmm->lmm_stripe_offset = -1;
2809                 }
2810                 if (ret == 0 && param->fp_mdt_uuid != NULL) {
2811                         if (dir != NULL) {
2812                                 ret = llapi_file_fget_mdtidx(dirfd(dir),
2813                                                      &param->fp_file_mdt_index);
2814                         } else if (S_ISREG(st->st_mode)) {
2815                                 int fd;
2816
2817                                 /* FIXME: we could get the MDT index from the
2818                                  * file's FID in lmd->lmd_lmm.lmm_oi without
2819                                  * opening the file, once we are sure that
2820                                  * LFSCK2 (2.6) has fixed up pre-2.0 LOV EAs.
2821                                  * That would still be an ioctl() to map the
2822                                  * FID to the MDT, but not an open RPC. */
2823                                 fd = open(path, O_RDONLY);
2824                                 if (fd > 0) {
2825                                         ret = llapi_file_fget_mdtidx(fd,
2826                                                      &param->fp_file_mdt_index);
2827                                         close(fd);
2828                                 } else {
2829                                         ret = -errno;
2830                                 }
2831                         } else {
2832                                 /* For a special file, we assume it resides on
2833                                  * the same MDT as the parent directory. */
2834                                 ret = llapi_file_fget_mdtidx(dirfd(parent),
2835                                                      &param->fp_file_mdt_index);
2836                         }
2837                 }
2838                 if (ret != 0) {
2839                         if (ret == -ENOTTY)
2840                                 lustre_fs = 0;
2841                         if (ret == -ENOENT)
2842                                 goto decided;
2843
2844                         return ret;
2845                 }
2846         }
2847
2848         if (param->fp_type && !checked_type) {
2849                 if ((st->st_mode & S_IFMT) == param->fp_type) {
2850                         if (param->fp_exclude_type)
2851                                 goto decided;
2852                 } else {
2853                         if (!param->fp_exclude_type)
2854                                 goto decided;
2855                 }
2856         }
2857
2858         /* Prepare odb. */
2859         if (param->fp_obd_uuid || param->fp_mdt_uuid) {
2860                 if (lustre_fs && param->fp_got_uuids &&
2861                     param->fp_dev != st->st_dev) {
2862                         /* A lustre/lustre mount point is crossed. */
2863                         param->fp_got_uuids = 0;
2864                         param->fp_obds_printed = 0;
2865                         param->fp_mdt_index = OBD_NOT_FOUND;
2866                         param->fp_obd_index = OBD_NOT_FOUND;
2867                 }
2868
2869                 if (lustre_fs && !param->fp_got_uuids) {
2870                         ret = setup_target_indexes(dir ? dir : parent, path,
2871                                                    param);
2872                         if (ret)
2873                                 return ret;
2874
2875                         param->fp_dev = st->st_dev;
2876                 } else if (!lustre_fs && param->fp_got_uuids) {
2877                         /* A lustre/non-lustre mount point is crossed. */
2878                         param->fp_got_uuids = 0;
2879                         param->fp_mdt_index = OBD_NOT_FOUND;
2880                         param->fp_obd_index = OBD_NOT_FOUND;
2881                 }
2882         }
2883
2884         if (param->fp_check_stripe_size) {
2885                 decision = find_value_cmp(
2886                                 param->fp_lmd->lmd_lmm.lmm_stripe_size,
2887                                 param->fp_stripe_size,
2888                                 param->fp_stripe_size_sign,
2889                                 param->fp_exclude_stripe_size,
2890                                 param->fp_stripe_size_units, 0);
2891                 if (decision == -1)
2892                         goto decided;
2893         }
2894
2895         if (param->fp_check_stripe_count) {
2896                 decision = find_value_cmp(
2897                                 param->fp_lmd->lmd_lmm.lmm_stripe_count,
2898                                 param->fp_stripe_count,
2899                                 param->fp_stripe_count_sign,
2900                                 param->fp_exclude_stripe_count, 1, 0);
2901                 if (decision == -1)
2902                         goto decided;
2903         }
2904
2905         if (param->fp_check_layout) {
2906                 __u32 found;
2907
2908                 found = (param->fp_lmd->lmd_lmm.lmm_pattern & param->fp_layout);
2909                 if ((param->fp_lmd->lmd_lmm.lmm_pattern == 0xFFFFFFFF) ||
2910                     (found && param->fp_exclude_layout) ||
2911                     (!found && !param->fp_exclude_layout)) {
2912                         decision = -1;
2913                         goto decided;
2914                 }
2915         }
2916
2917         /* If an OBD UUID is specified but none matches, skip this file. */
2918         if ((param->fp_obd_uuid && param->fp_obd_index == OBD_NOT_FOUND) ||
2919             (param->fp_mdt_uuid && param->fp_mdt_index == OBD_NOT_FOUND))
2920                 goto decided;
2921
2922         /* If an OST or MDT UUID is given, and some OST matches,
2923          * check it here. */
2924         if (param->fp_obd_index != OBD_NOT_FOUND ||
2925             param->fp_mdt_index != OBD_NOT_FOUND) {
2926                 if (param->fp_obd_uuid) {
2927                         if (check_obd_match(param)) {
2928                                 /* If no mdtuuid is given, we are done.
2929                                  * Otherwise, fall through to the mdtuuid
2930                                  * check below. */
2931                                 if (!param->fp_mdt_uuid)
2932                                         goto obd_matches;
2933                         } else {
2934                                 goto decided;
2935                         }
2936                 }
2937
2938                 if (param->fp_mdt_uuid) {
2939                         if (check_mdt_match(param))
2940                                 goto obd_matches;
2941                         goto decided;
2942                 }
2943         }
2944
2945 obd_matches:
2946         if (param->fp_check_uid) {
2947                 if (st->st_uid == param->fp_uid) {
2948                         if (param->fp_exclude_uid)
2949                                 goto decided;
2950                 } else {
2951                         if (!param->fp_exclude_uid)
2952                                 goto decided;
2953                 }
2954         }
2955
2956         if (param->fp_check_gid) {
2957                 if (st->st_gid == param->fp_gid) {
2958                         if (param->fp_exclude_gid)
2959                                 goto decided;
2960                 } else {
2961                         if (!param->fp_exclude_gid)
2962                                 goto decided;
2963                 }
2964         }
2965
2966         if (param->fp_check_pool) {
2967                 struct lov_user_md_v3 *lmmv3 = (void *)&param->fp_lmd->lmd_lmm;
2968
2969                 /* empty requested pool is taken as no pool search => V1 */
2970                 if (((param->fp_lmd->lmd_lmm.lmm_magic == LOV_USER_MAGIC_V1) &&
2971                      (param->fp_poolname[0] == '\0')) ||
2972                     ((param->fp_lmd->lmd_lmm.lmm_magic == LOV_USER_MAGIC_V3) &&
2973                      (strncmp(lmmv3->lmm_pool_name,
2974                               param->fp_poolname, LOV_MAXPOOLNAME) == 0)) ||
2975                     ((param->fp_lmd->lmd_lmm.lmm_magic == LOV_USER_MAGIC_V3) &&
2976                      (strcmp(param->fp_poolname, "*") == 0))) {
2977                         if (param->fp_exclude_pool)
2978                                 goto decided;
2979                 } else {
2980                         if (!param->fp_exclude_pool)
2981                                 goto decided;
2982                 }
2983         }
2984
2985         /* Check the time on mds. */
2986         decision = 1;
2987         if (param->fp_atime || param->fp_mtime || param->fp_ctime) {
2988                 int for_mds;
2989
2990                 for_mds = lustre_fs ? (S_ISREG(st->st_mode) &&
2991                                        param->fp_lmd->lmd_lmm.lmm_stripe_count)
2992                         : 0;
2993                 decision = find_time_check(st, param, for_mds);
2994                 if (decision == -1)
2995                         goto decided;
2996         }
2997
2998         /* If file still fits the request, ask ost for updated info.
2999            The regular stat is almost of the same speed as some new
3000            'glimpse-size-ioctl'. */
3001
3002         if (param->fp_check_size && S_ISREG(st->st_mode) &&
3003             param->fp_lmd->lmd_lmm.lmm_stripe_count)
3004                 decision = 0;
3005
3006         if (param->fp_check_size && S_ISDIR(st->st_mode))
3007                 decision = 0;
3008
3009         if (!decision) {
3010                 /* For regular files with the stripe the decision may have not
3011                  * been taken yet if *time or size is to be checked. */
3012                 if (param->fp_obd_index != OBD_NOT_FOUND)
3013                         print_failed_tgt(param, path, LL_STATFS_LOV);
3014
3015                 if (param->fp_mdt_index != OBD_NOT_FOUND)
3016                         print_failed_tgt(param, path, LL_STATFS_LMV);
3017
3018                 if (dir != NULL)
3019                         ret = fstat_f(dirfd(dir), st);
3020                 else if (de != NULL)
3021                         ret = fstatat_f(dirfd(parent), de->d_name, st,
3022                                         AT_SYMLINK_NOFOLLOW);
3023                 else
3024                         ret = lstat_f(path, st);
3025
3026                 if (ret) {
3027                         if (errno == ENOENT) {
3028                                 llapi_error(LLAPI_MSG_ERROR, -ENOENT,
3029                                             "warning: %s: %s does not exist",
3030                                             __func__, path);
3031                                 goto decided;
3032                         } else {
3033                                 ret = -errno;
3034                                 llapi_error(LLAPI_MSG_ERROR, ret,
3035                                             "%s: IOC_LOV_GETINFO on %s failed",
3036                                             __func__, path);
3037                                 return ret;
3038                         }
3039                 }
3040
3041                 /* Check the time on osc. */
3042                 decision = find_time_check(st, param, 0);
3043                 if (decision == -1)
3044                         goto decided;
3045         }
3046
3047         if (param->fp_check_size)
3048                 decision = find_value_cmp(st->st_size, param->fp_size,
3049                                           param->fp_size_sign,
3050                                           param->fp_exclude_size,
3051                                           param->fp_size_units, 0);
3052
3053         if (decision != -1) {
3054                 llapi_printf(LLAPI_MSG_NORMAL, "%s", path);
3055                 if (param->fp_zero_end)
3056                         llapi_printf(LLAPI_MSG_NORMAL, "%c", '\0');
3057                 else
3058                         llapi_printf(LLAPI_MSG_NORMAL, "\n");
3059         }
3060
3061 decided:
3062         /* Do not get down anymore? */
3063         if (param->fp_depth == param->fp_max_depth)
3064                 return 1;
3065
3066         param->fp_depth++;
3067
3068         return 0;
3069 }
3070
3071 static int cb_migrate_mdt_init(char *path, DIR *parent, DIR **dirp,
3072                                void *param_data, struct dirent64 *de)
3073 {
3074         struct find_param       *param = (struct find_param *)param_data;
3075         DIR                     *tmp_parent = parent;
3076         char                    raw[OBD_MAX_IOCTL_BUFFER] = {'\0'};
3077         char                    *rawbuf = raw;
3078         struct obd_ioctl_data   data = { 0 };
3079         int                     fd;
3080         int                     ret;
3081         char                    *path_copy;
3082         char                    *filename;
3083         bool                    retry = false;
3084
3085         if (parent == NULL && dirp == NULL)
3086                 return -EINVAL;
3087
3088         if (dirp != NULL)
3089                 closedir(*dirp);
3090
3091         if (parent == NULL) {
3092                 tmp_parent = opendir_parent(path);
3093                 if (tmp_parent == NULL) {
3094                         *dirp = NULL;
3095                         ret = -errno;
3096                         llapi_error(LLAPI_MSG_ERROR, ret,
3097                                     "can not open %s", path);
3098                         return ret;
3099                 }
3100         }
3101
3102         fd = dirfd(tmp_parent);
3103
3104         path_copy = strdup(path);
3105         filename = basename(path_copy);
3106         data.ioc_inlbuf1 = (char *)filename;
3107         data.ioc_inllen1 = strlen(filename) + 1;
3108         data.ioc_inlbuf2 = (char *)&param->fp_mdt_index;
3109         data.ioc_inllen2 = sizeof(param->fp_mdt_index);
3110         ret = obd_ioctl_pack(&data, &rawbuf, sizeof(raw));
3111         if (ret != 0) {
3112                 llapi_error(LLAPI_MSG_ERROR, ret,
3113                             "llapi_obd_statfs: error packing ioctl data");
3114                 goto out;
3115         }
3116
3117 migrate:
3118         ret = ioctl(fd, LL_IOC_MIGRATE, rawbuf);
3119         if (ret != 0) {
3120                 if (errno == EBUSY && !retry) {
3121                         /* because migrate may not be able to lock all involved
3122                          * objects in order, for some of them it try lock, while
3123                          * there may be conflicting COS locks and cause migrate
3124                          * fail with EBUSY, hope a sync() could cause
3125                          * transaction commit and release these COS locks. */
3126                         sync();
3127                         retry = true;
3128                         goto migrate;
3129                 }
3130                 ret = -errno;
3131                 fprintf(stderr, "%s migrate failed: %s (%d)\n",
3132                         path, strerror(-ret), ret);
3133                 goto out;
3134         } else if (param->fp_verbose & VERBOSE_DETAIL) {
3135                 fprintf(stdout, "migrate %s to MDT%d\n",
3136                         path, param->fp_mdt_index);
3137         }
3138
3139 out:
3140         if (dirp != NULL) {
3141                 /* If the directory is being migration, we need
3142                  * close the directory after migration,
3143                  * so the old directory cache will be cleanup
3144                  * on the client side, and re-open to get the
3145                  * new directory handle */
3146                 *dirp = opendir(path);
3147                 if (*dirp == NULL) {
3148                         ret = -errno;
3149                         llapi_error(LLAPI_MSG_ERROR, ret,
3150                                     "%s: Failed to open '%s'", __func__, path);
3151                 }
3152         }
3153
3154         if (parent == NULL)
3155                 closedir(tmp_parent);
3156
3157         free(path_copy);
3158
3159         return ret;
3160 }
3161
3162 int llapi_migrate_mdt(char *path, struct find_param *param)
3163 {
3164         return param_callback(path, cb_migrate_mdt_init, cb_common_fini, param);
3165 }
3166
3167 int llapi_mv(char *path, struct find_param *param)
3168 {
3169 #if LUSTRE_VERSION_CODE > OBD_OCD_VERSION(2, 9, 59, 0)
3170         static bool printed;
3171
3172         if (!printed) {
3173                 llapi_error(LLAPI_MSG_ERROR, -ESTALE,
3174                             "llapi_mv() is deprecated, use llapi_migrate_mdt()\n");
3175                 printed = true;
3176         }
3177 #endif
3178         return llapi_migrate_mdt(path, param);
3179 }
3180
3181 int llapi_find(char *path, struct find_param *param)
3182 {
3183         return param_callback(path, cb_find_init, cb_common_fini, param);
3184 }
3185
3186 /*
3187  * Get MDT number that the file/directory inode referenced
3188  * by the open fd resides on.
3189  * Return 0 and mdtidx on success, or -ve errno.
3190  */
3191 int llapi_file_fget_mdtidx(int fd, int *mdtidx)
3192 {
3193         if (ioctl(fd, LL_IOC_GET_MDTIDX, mdtidx) < 0)
3194                 return -errno;
3195         return 0;
3196 }
3197
3198 static int cb_get_mdt_index(char *path, DIR *parent, DIR **dirp, void *data,
3199                             struct dirent64 *de)
3200 {
3201         struct find_param *param = (struct find_param *)data;
3202         DIR *d = dirp == NULL ? NULL : *dirp;
3203         int ret;
3204         int mdtidx;
3205
3206         if (parent == NULL && d == NULL)
3207                 return -EINVAL;
3208
3209         if (d != NULL) {
3210                 ret = llapi_file_fget_mdtidx(dirfd(d), &mdtidx);
3211         } else /* if (parent) */ {
3212                 int fd;
3213
3214                 fd = open(path, O_RDONLY | O_NOCTTY);
3215                 if (fd > 0) {
3216                         ret = llapi_file_fget_mdtidx(fd, &mdtidx);
3217                         close(fd);
3218                 } else {
3219                         ret = -errno;
3220                 }
3221         }
3222
3223         if (ret != 0) {
3224                 if (ret == -ENODATA) {
3225                         if (!param->fp_obd_uuid)
3226                                 llapi_printf(LLAPI_MSG_NORMAL,
3227                                              "'%s' has no stripe info\n", path);
3228                         goto out;
3229                 } else if (ret == -ENOENT) {
3230                         llapi_error(LLAPI_MSG_WARN, ret,
3231                                     "warning: %s: '%s' does not exist",
3232                                     __func__, path);
3233                         goto out;
3234                 } else if (ret == -ENOTTY) {
3235                         llapi_error(LLAPI_MSG_ERROR, ret,
3236                                     "%s: '%s' not on a Lustre fs",
3237                                     __func__, path);
3238                 } else {
3239                         llapi_error(LLAPI_MSG_ERROR, ret,
3240                                     "error: %s: '%s' failed get_mdtidx",
3241                                     __func__, path);
3242                 }
3243                 return ret;
3244         }
3245
3246         if (param->fp_quiet || !(param->fp_verbose & VERBOSE_DETAIL))
3247                 llapi_printf(LLAPI_MSG_NORMAL, "%d\n", mdtidx);
3248         else
3249                 llapi_printf(LLAPI_MSG_NORMAL, "%s\nmdt_index:\t%d\n",
3250                              path, mdtidx);
3251
3252 out:
3253         /* Do not go down anymore? */
3254         if (param->fp_depth == param->fp_max_depth)
3255                 return 1;
3256
3257         param->fp_depth++;
3258
3259         return 0;
3260 }
3261
3262 static int cb_getstripe(char *path, DIR *parent, DIR **dirp, void *data,
3263                         struct dirent64 *de)
3264 {
3265         struct find_param *param = (struct find_param *)data;
3266         DIR *d = dirp == NULL ? NULL : *dirp;
3267         int ret = 0;
3268
3269         if (parent == NULL && d == NULL)
3270                 return -EINVAL;
3271
3272         if (param->fp_obd_uuid) {
3273                 param->fp_quiet = 1;
3274                 ret = setup_obd_uuid(d ? dirfd(d) : dirfd(parent), path, param);
3275                 if (ret)
3276                         return ret;
3277         }
3278
3279         if (d) {
3280                 if (param->fp_get_lmv || param->fp_get_default_lmv) {
3281                         ret = cb_get_dirstripe(path, d, param);
3282                 } else {
3283                         ret = ioctl(dirfd(d), LL_IOC_LOV_GETSTRIPE,
3284                                      (void *)&param->fp_lmd->lmd_lmm);
3285                 }
3286
3287         } else if (parent && !param->fp_get_lmv && !param->fp_get_default_lmv) {
3288                 char *fname = strrchr(path, '/');
3289                 fname = (fname == NULL ? path : fname + 1);
3290
3291                 strlcpy((char *)&param->fp_lmd->lmd_lmm, fname,
3292                         param->fp_lum_size);
3293
3294                 ret = ioctl(dirfd(parent), IOC_MDC_GETFILESTRIPE,
3295                             (void *)&param->fp_lmd->lmd_lmm);
3296         } else {
3297                 return 0;
3298         }
3299
3300         if (ret) {
3301                 if (errno == ENODATA && d != NULL) {
3302                         /* We need to "fake" the "use the default" values
3303                          * since the lmm struct is zeroed out at this point.
3304                          * The magic needs to be set in order to satisfy
3305                          * a check later on in the code path.
3306                          * The object_seq needs to be set for the "(Default)"
3307                          * prefix to be displayed. */
3308                         if (param->fp_get_default_lmv) {
3309                                 struct lmv_user_md *lum = param->fp_lmv_md;
3310
3311                                 lum->lum_magic = LMV_USER_MAGIC;
3312                                 lum->lum_stripe_count = 0;
3313                                 lum->lum_stripe_offset = -1;
3314                                 goto dump;
3315                         } else if (param->fp_get_lmv) {
3316                                 struct lmv_user_md *lum = param->fp_lmv_md;
3317                                 int mdtidx;
3318
3319                                 ret = llapi_file_fget_mdtidx(dirfd(d), &mdtidx);
3320                                 if (ret != 0)
3321                                         goto err_out;
3322                                 lum->lum_magic = LMV_MAGIC_V1;
3323                                 lum->lum_stripe_count = 0;
3324                                 lum->lum_stripe_offset = mdtidx;
3325                                 goto dump;
3326                         } else {
3327                                 struct lov_user_md *lmm =
3328                                         &param->fp_lmd->lmd_lmm;
3329
3330                                 lmm->lmm_magic = LOV_USER_MAGIC_V1;
3331                                 if (!param->fp_raw)
3332                                         ostid_set_seq(&lmm->lmm_oi,
3333                                                       FID_SEQ_LOV_DEFAULT);
3334                                 lmm->lmm_stripe_count = 0;
3335                                 lmm->lmm_stripe_size = 0;
3336                                 lmm->lmm_stripe_offset = -1;
3337                                 goto dump;
3338                         }
3339                 } else if (errno == ENODATA && parent != NULL) {
3340                         if (!param->fp_obd_uuid && !param->fp_mdt_uuid)
3341                                 llapi_printf(LLAPI_MSG_NORMAL,
3342                                              "%s has no stripe info\n", path);
3343                         goto out;
3344                 } else if (errno == ENOENT) {
3345                         llapi_error(LLAPI_MSG_WARN, -ENOENT,
3346                                     "warning: %s: %s does not exist",
3347                                     __func__, path);
3348                         goto out;
3349                 } else if (errno == ENOTTY) {
3350                         ret = -errno;
3351                         llapi_error(LLAPI_MSG_ERROR, ret,
3352                                     "%s: '%s' not on a Lustre fs?",
3353                                     __func__, path);
3354                 } else {
3355                         ret = -errno;
3356 err_out:
3357                         llapi_error(LLAPI_MSG_ERROR, ret,
3358                                     "error: %s: %s failed for %s",
3359                                      __func__, d ? "LL_IOC_LOV_GETSTRIPE" :
3360                                     "IOC_MDC_GETFILESTRIPE", path);
3361                 }
3362
3363                 return ret;
3364         }
3365
3366 dump:
3367         if (!(param->fp_verbose & VERBOSE_MDTINDEX))
3368                 llapi_lov_dump_user_lmm(param, path, d ? 1 : 0);
3369
3370 out:
3371         /* Do not get down anymore? */
3372         if (param->fp_depth == param->fp_max_depth)
3373                 return 1;
3374
3375         param->fp_depth++;
3376
3377         return 0;
3378 }
3379
3380 int llapi_getstripe(char *path, struct find_param *param)
3381 {
3382         return param_callback(path, (param->fp_verbose & VERBOSE_MDTINDEX) ?
3383                               cb_get_mdt_index : cb_getstripe,
3384                               cb_common_fini, param);
3385 }
3386
3387 int llapi_obd_fstatfs(int fd, __u32 type, __u32 index,
3388                       struct obd_statfs *stat_buf, struct obd_uuid *uuid_buf)
3389 {
3390         char raw[OBD_MAX_IOCTL_BUFFER] = {'\0'};
3391         char *rawbuf = raw;
3392         struct obd_ioctl_data data = { 0 };
3393         int rc = 0;
3394
3395         data.ioc_inlbuf1 = (char *)&type;
3396         data.ioc_inllen1 = sizeof(__u32);
3397         data.ioc_inlbuf2 = (char *)&index;
3398         data.ioc_inllen2 = sizeof(__u32);
3399         data.ioc_pbuf1 = (char *)stat_buf;
3400         data.ioc_plen1 = sizeof(struct obd_statfs);
3401         data.ioc_pbuf2 = (char *)uuid_buf;
3402         data.ioc_plen2 = sizeof(struct obd_uuid);
3403
3404         rc = obd_ioctl_pack(&data, &rawbuf, sizeof(raw));
3405         if (rc != 0) {
3406                 llapi_error(LLAPI_MSG_ERROR, rc,
3407                             "llapi_obd_statfs: error packing ioctl data");
3408                 return rc;
3409         }
3410
3411         rc = ioctl(fd, IOC_OBD_STATFS, (void *)rawbuf);
3412
3413         return rc < 0 ? -errno : 0;
3414 }
3415
3416 int llapi_obd_statfs(char *path, __u32 type, __u32 index,
3417                      struct obd_statfs *stat_buf, struct obd_uuid *uuid_buf)
3418 {
3419         int fd;
3420         int rc;
3421
3422         fd = open(path, O_RDONLY);
3423         if (fd < 0) {
3424                 rc = -errno;
3425                 llapi_error(LLAPI_MSG_ERROR, rc, "error: %s: opening '%s'",
3426                             __func__, path);
3427                 /* If we can't even open a file on the filesystem (e.g. with
3428                  * -ESHUTDOWN), force caller to exit or it will loop forever. */
3429                 return -ENODEV;
3430         }
3431
3432         rc = llapi_obd_fstatfs(fd, type, index, stat_buf, uuid_buf);
3433
3434         close(fd);
3435
3436         return rc;
3437 }
3438
3439 #define MAX_STRING_SIZE 128
3440
3441 int llapi_ping(char *obd_type, char *obd_name)
3442 {
3443         glob_t path;
3444         char buf[1];
3445         int rc, fd;
3446
3447         rc = cfs_get_param_paths(&path, "%s/%s/ping",
3448                                 obd_type, obd_name);
3449         if (rc != 0)
3450                 return -errno;
3451
3452         fd = open(path.gl_pathv[0], O_WRONLY);
3453         if (fd < 0) {
3454                 rc = -errno;
3455                 llapi_error(LLAPI_MSG_ERROR, rc, "error opening %s",
3456                             path.gl_pathv[0]);
3457                 goto failed;
3458         }
3459
3460         /* The purpose is to send a byte as a ping, whatever this byte is. */
3461         /* coverity[uninit_use_in_call] */
3462         rc = write(fd, buf, 1);
3463         if (rc < 0)
3464                 rc = -errno;
3465         close(fd);
3466
3467         if (rc == 1)
3468                 rc = 0;
3469 failed:
3470         cfs_free_param_data(&path);
3471         return rc;
3472 }
3473
3474 int llapi_target_iterate(int type_num, char **obd_type,
3475                          void *args, llapi_cb_t cb)
3476 {
3477         char buf[MAX_STRING_SIZE];
3478         int i, rc = 0;
3479         glob_t param;
3480         FILE *fp;
3481
3482         rc = cfs_get_param_paths(&param, "devices");
3483         if (rc != 0)
3484                 return -ENOENT;
3485
3486         fp = fopen(param.gl_pathv[0], "r");
3487         if (fp == NULL) {
3488                 rc = -errno;
3489                 llapi_error(LLAPI_MSG_ERROR, rc, "error: opening '%s'",
3490                             param.gl_pathv[0]);
3491                 goto free_path;
3492         }
3493
3494         while (fgets(buf, sizeof(buf), fp) != NULL) {
3495                 char *obd_type_name = NULL;
3496                 char *obd_name = NULL;
3497                 char *obd_uuid = NULL;
3498                 char *bufp = buf;
3499                 struct obd_statfs osfs_buffer;
3500
3501                 while(bufp[0] == ' ')
3502                         ++bufp;
3503
3504                 for(i = 0; i < 3; i++) {
3505                         obd_type_name = strsep(&bufp, " ");
3506                 }
3507                 obd_name = strsep(&bufp, " ");
3508                 obd_uuid = strsep(&bufp, " ");
3509
3510                 memset(&osfs_buffer, 0, sizeof (osfs_buffer));
3511
3512                 for (i = 0; i < type_num; i++) {
3513                         if (strcmp(obd_type_name, obd_type[i]) != 0)
3514                                 continue;
3515
3516                         cb(obd_type_name, obd_name, obd_uuid, args);
3517                 }
3518         }
3519         fclose(fp);
3520 free_path:
3521         cfs_free_param_data(&param);
3522         return 0;
3523 }
3524
3525 static void do_target_check(char *obd_type_name, char *obd_name,
3526                             char *obd_uuid, void *args)
3527 {
3528         int rc;
3529
3530         rc = llapi_ping(obd_type_name, obd_name);
3531         if (rc == ENOTCONN) {
3532                 llapi_printf(LLAPI_MSG_NORMAL, "%s inactive.\n", obd_name);
3533         } else if (rc) {
3534                 llapi_error(LLAPI_MSG_ERROR, rc, "error: check '%s'", obd_name);
3535         } else {
3536                 llapi_printf(LLAPI_MSG_NORMAL, "%s active.\n", obd_name);
3537         }
3538 }
3539
3540 int llapi_target_check(int type_num, char **obd_type, char *dir)
3541 {
3542         return llapi_target_iterate(type_num, obd_type, NULL, do_target_check);
3543 }
3544
3545 #undef MAX_STRING_SIZE
3546
3547 /* Is this a lustre fs? */
3548 int llapi_is_lustre_mnttype(const char *type)
3549 {
3550         return (strcmp(type, "lustre") == 0 || strcmp(type,"lustre_lite") == 0);
3551 }
3552
3553 /* Is this a lustre client fs? */
3554 int llapi_is_lustre_mnt(struct mntent *mnt)
3555 {
3556         return (llapi_is_lustre_mnttype(mnt->mnt_type) &&
3557                 strstr(mnt->mnt_fsname, ":/") != NULL);
3558 }
3559
3560 int llapi_quotactl(char *mnt, struct if_quotactl *qctl)
3561 {
3562         char fsname[PATH_MAX + 1];
3563         int root;
3564         int rc;
3565
3566         rc = llapi_search_fsname(mnt, fsname);
3567         if (rc) {
3568                 llapi_err_noerrno(LLAPI_MSG_ERROR,
3569                                   "'%s' isn't on Lustre filesystem", mnt);
3570                 return rc;
3571         }
3572
3573         root = open(mnt, O_RDONLY | O_DIRECTORY);
3574         if (root < 0) {
3575                 rc = -errno;
3576                 llapi_error(LLAPI_MSG_ERROR, rc, "open %s failed", mnt);
3577                 return rc;
3578         }
3579
3580         rc = ioctl(root, OBD_IOC_QUOTACTL, qctl);
3581         if (rc < 0)
3582                 rc = -errno;
3583
3584         close(root);
3585         return rc;
3586 }
3587
3588 /* Print mdtname 'name' into 'buf' using 'format'.  Add -MDT0000 if needed.
3589  * format must have %s%s, buf must be > 16
3590  * Eg: if name = "lustre-MDT0000", "lustre", or "lustre-MDT0000_UUID"
3591  *     then buf = "lustre-MDT0000"
3592  */
3593 static int get_mdtname(char *name, char *format, char *buf)
3594 {
3595         char suffix[]="-MDT0000";
3596         int len = strlen(name);
3597
3598         if ((len > 5) && (strncmp(name + len - 5, "_UUID", 5) == 0)) {
3599                 name[len - 5] = '\0';
3600                 len -= 5;
3601         }
3602
3603         if (len > 8) {
3604                 if ((len <= 16) && strncmp(name + len - 8, "-MDT", 4) == 0) {
3605                         suffix[0] = '\0';
3606                 } else {
3607                         /* Not enough room to add suffix */
3608                         llapi_err_noerrno(LLAPI_MSG_ERROR,
3609                                           "MDT name too long |%s|", name);
3610                         return -EINVAL;
3611                 }
3612         }
3613
3614         return sprintf(buf, format, name, suffix);
3615 }
3616
3617 /** ioctl on filsystem root, with mdtindex sent as data
3618  * \param mdtname path, fsname, or mdtname (lutre-MDT0004)
3619  * \param mdtidxp pointer to integer within data to be filled in with the
3620  *    mdt index (0 if no mdt is specified).  NULL won't be filled.
3621  */
3622 int root_ioctl(const char *mdtname, int opc, void *data, int *mdtidxp,
3623                int want_error)
3624 {
3625         char fsname[20];
3626         char *ptr;
3627         int fd, rc;
3628         long index;
3629
3630         /* Take path, fsname, or MDTname.  Assume MDT0000 in the former cases.
3631          Open root and parse mdt index. */
3632         if (mdtname[0] == '/') {
3633                 index = 0;
3634                 rc = get_root_path(WANT_FD | want_error, NULL, &fd,
3635                                    (char *)mdtname, -1);
3636         } else {
3637                 if (get_mdtname((char *)mdtname, "%s%s", fsname) < 0)
3638                         return -EINVAL;
3639                 ptr = fsname + strlen(fsname) - 8;
3640                 *ptr = '\0';
3641                 index = strtol(ptr + 4, NULL, 10);
3642                 rc = get_root_path(WANT_FD | want_error, fsname, &fd, NULL, -1);
3643         }
3644         if (rc < 0) {
3645                 if (want_error)
3646                         llapi_err_noerrno(LLAPI_MSG_ERROR,
3647                                           "Can't open %s: %d\n", mdtname, rc);
3648                 return rc;
3649         }
3650
3651         if (mdtidxp)
3652                 *mdtidxp = index;
3653
3654         rc = ioctl(fd, opc, data);
3655         if (rc == -1)
3656                 rc = -errno;
3657         else
3658                 rc = 0;
3659         close(fd);
3660         return rc;
3661 }
3662
3663 /****** Changelog API ********/
3664
3665 static int changelog_ioctl(const char *mdtname, int opc, int id,
3666                            long long recno, int flags)
3667 {
3668         struct ioc_changelog data;
3669         int *idx;
3670
3671         data.icc_id = id;
3672         data.icc_recno = recno;
3673         data.icc_flags = flags;
3674         idx = (int *)(&data.icc_mdtindex);
3675
3676         return root_ioctl(mdtname, opc, &data, idx, WANT_ERROR);
3677 }
3678
3679 #define CHANGELOG_PRIV_MAGIC 0xCA8E1080
3680 struct changelog_private {
3681         int                             magic;
3682         enum changelog_send_flag        flags;
3683         struct lustre_kernelcomm        kuc;
3684 };
3685
3686 /** Start reading from a changelog
3687  * @param priv Opaque private control structure
3688  * @param flags Start flags (e.g. CHANGELOG_FLAG_BLOCK)
3689  * @param device Report changes recorded on this MDT
3690  * @param startrec Report changes beginning with this record number
3691  * (just call llapi_changelog_fini when done; don't need an endrec)
3692  */
3693 int llapi_changelog_start(void **priv, enum changelog_send_flag flags,
3694                           const char *device, long long startrec)
3695 {
3696         struct changelog_private        *cp;
3697         static bool                      warned;
3698         int                              rc;
3699
3700         /* Set up the receiver control struct */
3701         cp = calloc(1, sizeof(*cp));
3702         if (cp == NULL)
3703                 return -ENOMEM;
3704
3705         cp->magic = CHANGELOG_PRIV_MAGIC;
3706         cp->flags = flags;
3707
3708         /* Set up the receiver */
3709         rc = libcfs_ukuc_start(&cp->kuc, 0 /* no group registration */, 0);
3710         if (rc < 0)
3711                 goto out_free;
3712
3713         *priv = cp;
3714
3715         /* CHANGELOG_FLAG_JOBID will eventually become mandatory. Display a
3716          * warning if it's missing. */
3717         if (!(flags & CHANGELOG_FLAG_JOBID) && !warned) {
3718                 llapi_err_noerrno(LLAPI_MSG_WARN, "warning: %s() called "
3719                                   "w/o CHANGELOG_FLAG_JOBID", __func__);
3720                 warned = true;
3721         }
3722
3723         /* Tell the kernel to start sending */
3724         rc = changelog_ioctl(device, OBD_IOC_CHANGELOG_SEND, cp->kuc.lk_wfd,
3725                              startrec, flags);
3726         /* Only the kernel reference keeps the write side open */
3727         close(cp->kuc.lk_wfd);
3728         cp->kuc.lk_wfd = LK_NOFD;
3729         if (rc < 0) {
3730                 /* frees and clears priv */
3731                 llapi_changelog_fini(priv);
3732                 return rc;
3733         }
3734
3735         return 0;
3736
3737 out_free:
3738         free(cp);
3739         return rc;
3740 }
3741
3742 /** Finish reading from a changelog */
3743 int llapi_changelog_fini(void **priv)
3744 {
3745         struct changelog_private *cp = (struct changelog_private *)*priv;
3746
3747         if (!cp || (cp->magic != CHANGELOG_PRIV_MAGIC))
3748                 return -EINVAL;
3749
3750         libcfs_ukuc_stop(&cp->kuc);
3751         free(cp);
3752         *priv = NULL;
3753         return 0;
3754 }
3755
3756 /**
3757  * Convert all records to a same format according to the caller's wishes.
3758  * Default is CLF_VERSION | CLF_RENAME.
3759  * Add CLF_JOBID if explicitely requested.
3760  *
3761  * \param rec  The record to remap. It is expected to be big enough to
3762  *             properly handle the final format.
3763  * \return 1 if anything changed. 0 otherwise.
3764  */
3765 /** Read the next changelog entry
3766  * @param priv Opaque private control structure
3767  * @param rech Changelog record handle; record will be allocated here
3768  * @return 0 valid message received; rec is set
3769  *         <0 error code
3770  *         1 EOF
3771  */
3772 #define DEFAULT_RECORD_FMT      (CLF_VERSION | CLF_RENAME)
3773 int llapi_changelog_recv(void *priv, struct changelog_rec **rech)
3774 {
3775         struct changelog_private        *cp = (struct changelog_private *)priv;
3776         struct kuc_hdr                  *kuch;
3777         enum changelog_rec_flags         rec_fmt = DEFAULT_RECORD_FMT;
3778         int                              rc = 0;
3779
3780         if (!cp || (cp->magic != CHANGELOG_PRIV_MAGIC))
3781                 return -EINVAL;
3782         if (rech == NULL)
3783                 return -EINVAL;
3784         kuch = malloc(KUC_CHANGELOG_MSG_MAXSIZE);
3785         if (kuch == NULL)
3786                 return -ENOMEM;
3787
3788         if (cp->flags & CHANGELOG_FLAG_JOBID)
3789                 rec_fmt |= CLF_JOBID;
3790
3791 repeat:
3792         rc = libcfs_ukuc_msg_get(&cp->kuc, (char *)kuch,
3793                                  KUC_CHANGELOG_MSG_MAXSIZE,
3794                                  KUC_TRANSPORT_CHANGELOG);
3795         if (rc < 0)
3796                 goto out_free;
3797
3798         if ((kuch->kuc_transport != KUC_TRANSPORT_CHANGELOG) ||
3799             ((kuch->kuc_msgtype != CL_RECORD) &&
3800              (kuch->kuc_msgtype != CL_EOF))) {
3801                 llapi_err_noerrno(LLAPI_MSG_ERROR,
3802                                   "Unknown changelog message type %d:%d\n",
3803                                   kuch->kuc_transport, kuch->kuc_msgtype);
3804                 rc = -EPROTO;
3805                 goto out_free;
3806         }
3807
3808         if (kuch->kuc_msgtype == CL_EOF) {
3809                 if (cp->flags & CHANGELOG_FLAG_FOLLOW) {
3810                         /* Ignore EOFs */
3811                         goto repeat;
3812                 } else {
3813                         rc = 1;
3814                         goto out_free;
3815                 }
3816         }
3817
3818         /* Our message is a changelog_rec.  Use pointer math to skip
3819          * kuch_hdr and point directly to the message payload. */
3820         *rech = (struct changelog_rec *)(kuch + 1);
3821         changelog_remap_rec(*rech, rec_fmt);
3822
3823         return 0;
3824
3825 out_free:
3826         *rech = NULL;
3827         free(kuch);
3828         return rc;
3829 }
3830
3831 /** Release the changelog record when done with it. */
3832 int llapi_changelog_free(struct changelog_rec **rech)
3833 {
3834         if (*rech) {
3835                 /* We allocated memory starting at the kuc_hdr, but passed
3836                  * the consumer a pointer to the payload.
3837                  * Use pointer math to get back to the header.
3838                  */
3839                 struct kuc_hdr *kuch = (struct kuc_hdr *)*rech - 1;
3840                 free(kuch);
3841         }
3842         *rech = NULL;
3843         return 0;
3844 }
3845
3846 int llapi_changelog_clear(const char *mdtname, const char *idstr,
3847                           long long endrec)
3848 {
3849         long id;
3850
3851         if (endrec < 0) {
3852                 llapi_err_noerrno(LLAPI_MSG_ERROR,
3853                                   "can't purge negative records\n");
3854                 return -EINVAL;
3855         }
3856
3857         id = strtol(idstr + strlen(CHANGELOG_USER_PREFIX), NULL, 10);
3858         if ((id == 0) || (strncmp(idstr, CHANGELOG_USER_PREFIX,
3859                                   strlen(CHANGELOG_USER_PREFIX)) != 0)) {
3860                 llapi_err_noerrno(LLAPI_MSG_ERROR,
3861                                   "expecting id of the form '"
3862                                   CHANGELOG_USER_PREFIX
3863                                   "<num>'; got '%s'\n", idstr);
3864                 return -EINVAL;
3865         }
3866
3867         return changelog_ioctl(mdtname, OBD_IOC_CHANGELOG_CLEAR, id, endrec, 0);
3868 }
3869
3870 int llapi_fid2path(const char *device, const char *fidstr, char *buf,
3871                    int buflen, long long *recno, int *linkno)
3872 {
3873         const char *fidstr_orig = fidstr;
3874         struct lu_fid fid;
3875         struct getinfo_fid2path *gf;
3876         int rc;
3877
3878         while (*fidstr == '[')
3879                 fidstr++;
3880
3881         sscanf(fidstr, SFID, RFID(&fid));
3882         if (!fid_is_sane(&fid)) {
3883                 llapi_err_noerrno(LLAPI_MSG_ERROR,
3884                                   "bad FID format '%s', should be [seq:oid:ver]"
3885                                   " (e.g. "DFID")\n", fidstr_orig,
3886                                   (unsigned long long)FID_SEQ_NORMAL, 2, 0);
3887                 return -EINVAL;
3888         }
3889
3890         gf = malloc(sizeof(*gf) + buflen);
3891         if (gf == NULL)
3892                 return -ENOMEM;
3893
3894         gf->gf_fid = fid;
3895         gf->gf_recno = *recno;
3896         gf->gf_linkno = *linkno;
3897         gf->gf_pathlen = buflen;
3898
3899         /* Take path or fsname */
3900         rc = root_ioctl(device, OBD_IOC_FID2PATH, gf, NULL, 0);
3901         if (rc)
3902                 goto out_free;
3903
3904         memcpy(buf, gf->gf_u.gf_path, gf->gf_pathlen);
3905         if (buf[0] == '\0') { /* ROOT path */
3906                 buf[0] = '/';
3907                 buf[1] = '\0';
3908         }
3909         *recno = gf->gf_recno;
3910         *linkno = gf->gf_linkno;
3911
3912 out_free:
3913         free(gf);
3914         return rc;
3915 }
3916
3917 static int fid_from_lma(const char *path, const int fd, lustre_fid *fid)
3918 {
3919         char                     buf[512];
3920         struct lustre_mdt_attrs *lma;
3921         int                      rc;
3922
3923         if (path == NULL)
3924                 rc = fgetxattr(fd, XATTR_NAME_LMA, buf, sizeof(buf));
3925         else
3926                 rc = lgetxattr(path, XATTR_NAME_LMA, buf, sizeof(buf));
3927         if (rc < 0)
3928                 return -errno;
3929         lma = (struct lustre_mdt_attrs *)buf;
3930         fid_le_to_cpu(fid, &lma->lma_self_fid);
3931         return 0;
3932 }
3933
3934 int llapi_get_mdt_index_by_fid(int fd, const lustre_fid *fid,
3935                                int *mdt_index)
3936 {
3937         int     rc;
3938
3939         rc = ioctl(fd, LL_IOC_FID2MDTIDX, fid);
3940         if (rc < 0)
3941                 return -errno;
3942
3943         *mdt_index = rc;
3944
3945         return rc;
3946 }
3947
3948 int llapi_fd2fid(const int fd, lustre_fid *fid)
3949 {
3950         int rc;
3951
3952         memset(fid, 0, sizeof(*fid));
3953
3954         rc = ioctl(fd, LL_IOC_PATH2FID, fid) < 0 ? -errno : 0;
3955         if (rc == -EINVAL || rc == -ENOTTY)
3956                 rc = fid_from_lma(NULL, fd, fid);
3957
3958         return rc;
3959 }
3960
3961 int llapi_path2fid(const char *path, lustre_fid *fid)
3962 {
3963         int fd, rc;
3964
3965         memset(fid, 0, sizeof(*fid));
3966         fd = open(path, O_RDONLY | O_NONBLOCK | O_NOFOLLOW);
3967         if (fd < 0) {
3968                 if (errno == ELOOP || errno == ENXIO)
3969                         return fid_from_lma(path, -1, fid);
3970                 return -errno;
3971         }
3972
3973         rc = llapi_fd2fid(fd, fid);
3974         if (rc == -EINVAL || rc == -ENOTTY)
3975                 rc = fid_from_lma(path, -1, fid);
3976
3977         close(fd);
3978         return rc;
3979 }
3980
3981 int llapi_fd2parent(int fd, unsigned int linkno, lustre_fid *parent_fid,
3982                     char *name, size_t name_size)
3983 {
3984         struct getparent        *gp;
3985         int                      rc;
3986
3987         gp = malloc(sizeof(*gp) + name_size);
3988         if (gp == NULL)
3989                 return -ENOMEM;
3990
3991         gp->gp_linkno = linkno;
3992         gp->gp_name_size = name_size;
3993
3994         rc = ioctl(fd, LL_IOC_GETPARENT, gp);
3995         if (rc < 0) {
3996                 rc = -errno;
3997                 goto err_free;
3998         }
3999
4000         *parent_fid = gp->gp_fid;
4001
4002         strncpy(name, gp->gp_name, name_size);
4003         name[name_size - 1] = '\0';
4004
4005 err_free:
4006         free(gp);
4007         return rc;
4008 }
4009
4010 int llapi_path2parent(const char *path, unsigned int linkno,
4011                       lustre_fid *parent_fid, char *name, size_t name_size)
4012 {
4013         int     fd;
4014         int     rc;
4015
4016         fd = open(path, O_RDONLY | O_NONBLOCK | O_NOFOLLOW);
4017         if (fd < 0)
4018                 return -errno;
4019
4020         rc = llapi_fd2parent(fd, linkno, parent_fid, name, name_size);
4021         close(fd);
4022         return rc;
4023 }
4024
4025 int llapi_get_connect_flags(const char *mnt, __u64 *flags)
4026 {
4027         int root;
4028         int rc;
4029
4030         root = open(mnt, O_RDONLY | O_DIRECTORY);
4031         if (root < 0) {
4032                 rc = -errno;
4033                 llapi_error(LLAPI_MSG_ERROR, rc, "open %s failed", mnt);
4034                 return rc;
4035         }
4036
4037         rc = ioctl(root, LL_IOC_GET_CONNECT_FLAGS, flags);
4038         if (rc < 0) {
4039                 rc = -errno;
4040                 llapi_error(LLAPI_MSG_ERROR, rc,
4041                         "ioctl on %s for getting connect flags failed", mnt);
4042         }
4043         close(root);
4044         return rc;
4045 }
4046
4047 /**
4048  * Get a 64-bit value representing the version of file data pointed by fd.
4049  *
4050  * Each write or truncate, flushed on OST, will change this value. You can use
4051  * this value to verify if file data was modified. This only checks the file
4052  * data, not metadata.
4053  *
4054  * \param  flags  0: no flush pages, usually used it the process has already
4055  *                  taken locks;
4056  *                LL_DV_RD_FLUSH: OSTs will take LCK_PR to flush dirty pages
4057  *                  from clients;
4058  *                LL_DV_WR_FLUSH: OSTs will take LCK_PW to flush all caching
4059  *                  pages from clients.
4060  *
4061  * \retval 0 on success.
4062  * \retval -errno on error.
4063  */
4064 int llapi_get_data_version(int fd, __u64 *data_version, __u64 flags)
4065 {
4066         int rc;
4067         struct ioc_data_version idv;
4068
4069         idv.idv_flags = flags;
4070
4071         rc = ioctl(fd, LL_IOC_DATA_VERSION, &idv);
4072         if (rc)
4073                 rc = -errno;
4074         else
4075                 *data_version = idv.idv_version;
4076
4077         return rc;
4078 }
4079
4080 /*
4081  * Create a file without any name open it for read/write
4082  *
4083  * - file is created as if it were a standard file in the given \a directory
4084  * - file does not appear in \a directory and mtime does not change because
4085  *   the filename is handled specially by the Lustre MDS.
4086  * - file is removed at final close
4087  * - file modes are rw------- since it doesn't make sense to have a read-only
4088  *   or write-only file that cannot be opened again.
4089  * - if user wants another mode it must use fchmod() on the open file, no
4090  *   security problems arise because it cannot be opened by another process.
4091  *
4092  * \param[in]   directory       directory from which to inherit layout/MDT idx
4093  * \param[in]   idx             MDT index on which the file is created,
4094  *                              \a idx == -1 means no specific MDT is requested
4095  * \param[in]   open_flags      standard open(2) flags
4096  *
4097  * \retval      0 on success.
4098  * \retval      -errno on error.
4099  */
4100 int llapi_create_volatile_idx(char *directory, int idx, int open_flags)
4101 {
4102         char    file_path[PATH_MAX];
4103         char    filename[PATH_MAX];
4104         int     saved_errno = errno;
4105         int     fd;
4106         int     rnumber;
4107         int     rc;
4108
4109         do {
4110                 rnumber = random();
4111                 if (idx == -1)
4112                         snprintf(filename, sizeof(filename),
4113                                  LUSTRE_VOLATILE_HDR"::%.4X", rnumber);
4114                 else
4115                         snprintf(filename, sizeof(filename),
4116                                  LUSTRE_VOLATILE_HDR":%.4X:%.4X", idx, rnumber);
4117
4118                 rc = snprintf(file_path, sizeof(file_path),
4119                               "%s/%s", directory, filename);
4120                 if (rc >= sizeof(file_path))
4121                         return -E2BIG;
4122
4123                 fd = open(file_path,
4124                           O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW | open_flags,
4125                           S_IRUSR | S_IWUSR);
4126         } while (fd < 0 && errno == EEXIST);
4127
4128         if (fd < 0) {
4129                 llapi_error(LLAPI_MSG_ERROR, errno,
4130                             "Cannot create volatile file '%s' in '%s'",
4131                             filename + LUSTRE_VOLATILE_HDR_LEN,
4132                             directory);
4133                 return -errno;
4134         }
4135
4136         /* Unlink file in case this wasn't a Lustre filesystem and the
4137          * magic volatile filename wasn't handled as intended. The
4138          * effect is the same. If volatile open was supported then we
4139          * expect unlink() to return -ENOENT. */
4140         (void)unlink(file_path);
4141
4142         /* Since we are returning successfully we restore errno (and
4143          * mask out possible EEXIST from open() and ENOENT from
4144          * unlink(). */
4145         errno = saved_errno;
4146
4147         return fd;
4148 }
4149
4150 /**
4151  * Swap the layouts between 2 file descriptors
4152  * the 2 files must be open for writing
4153  * first fd received the ioctl, second fd is passed as arg
4154  * this is assymetric but avoid use of root path for ioctl
4155  */
4156 int llapi_fswap_layouts_grouplock(int fd1, int fd2, __u64 dv1, __u64 dv2,
4157                                   int gid, __u64 flags)
4158 {
4159         struct lustre_swap_layouts      lsl;
4160         struct stat                     st1;
4161         struct stat                     st2;
4162         int                             rc;
4163
4164         if (flags & (SWAP_LAYOUTS_KEEP_ATIME | SWAP_LAYOUTS_KEEP_MTIME)) {
4165                 rc = fstat(fd1, &st1);
4166                 if (rc < 0)
4167                         return -errno;
4168
4169                 rc = fstat(fd2, &st2);
4170                 if (rc < 0)
4171                         return -errno;
4172         }
4173         lsl.sl_fd = fd2;
4174         lsl.sl_flags = flags;
4175         lsl.sl_gid = gid;
4176         lsl.sl_dv1 = dv1;
4177         lsl.sl_dv2 = dv2;
4178         rc = ioctl(fd1, LL_IOC_LOV_SWAP_LAYOUTS, &lsl);
4179         if (rc < 0)
4180                 return -errno;
4181
4182         if (flags & (SWAP_LAYOUTS_KEEP_ATIME | SWAP_LAYOUTS_KEEP_MTIME)) {
4183                 struct timeval  tv1[2];
4184                 struct timeval  tv2[2];
4185
4186                 memset(tv1, 0, sizeof(tv1));
4187                 memset(tv2, 0, sizeof(tv2));
4188
4189                 if (flags & SWAP_LAYOUTS_KEEP_ATIME) {
4190                         tv1[0].tv_sec = st1.st_atime;
4191                         tv2[0].tv_sec = st2.st_atime;
4192                 } else {
4193                         tv1[0].tv_sec = st2.st_atime;
4194                         tv2[0].tv_sec = st1.st_atime;
4195                 }
4196
4197                 if (flags & SWAP_LAYOUTS_KEEP_MTIME) {
4198                         tv1[1].tv_sec = st1.st_mtime;
4199                         tv2[1].tv_sec = st2.st_mtime;
4200                 } else {
4201                         tv1[1].tv_sec = st2.st_mtime;
4202                         tv2[1].tv_sec = st1.st_mtime;
4203                 }
4204
4205                 rc = futimes(fd1, tv1);
4206                 if (rc < 0)
4207                         return -errno;
4208
4209                 rc = futimes(fd2, tv2);
4210                 if (rc < 0)
4211                         return -errno;
4212         }
4213
4214         return 0;
4215 }
4216
4217 int llapi_fswap_layouts(int fd1, int fd2, __u64 dv1, __u64 dv2, __u64 flags)
4218 {
4219         int     rc;
4220         int     grp_id;
4221
4222         do
4223                 grp_id = random();
4224         while (grp_id == 0);
4225
4226         rc = llapi_fswap_layouts_grouplock(fd1, fd2, dv1, dv2, grp_id, flags);
4227         if (rc < 0)
4228                 return rc;
4229
4230         return 0;
4231 }
4232
4233 /**
4234  * Swap the layouts between 2 files
4235  * the 2 files are open in write
4236  */
4237 int llapi_swap_layouts(const char *path1, const char *path2,
4238                        __u64 dv1, __u64 dv2, __u64 flags)
4239 {
4240         int     fd1, fd2, rc;
4241
4242         fd1 = open(path1, O_WRONLY | O_LOV_DELAY_CREATE);
4243         if (fd1 < 0) {
4244                 rc = -errno;
4245                 llapi_error(LLAPI_MSG_ERROR, rc,
4246                             "error: cannot open '%s' for write", path1);
4247                 goto out;
4248         }
4249
4250         fd2 = open(path2, O_WRONLY | O_LOV_DELAY_CREATE);
4251         if (fd2 < 0) {
4252                 rc = -errno;
4253                 llapi_error(LLAPI_MSG_ERROR, rc,
4254                             "error: cannot open '%s' for write", path2);
4255                 goto out_close;
4256         }
4257
4258         rc = llapi_fswap_layouts(fd1, fd2, dv1, dv2, flags);
4259         if (rc < 0)
4260                 llapi_error(LLAPI_MSG_ERROR, rc,
4261                             "error: cannot swap layout between '%s' and '%s'",
4262                             path1, path2);
4263
4264         close(fd2);
4265 out_close:
4266         close(fd1);
4267 out:
4268         return rc;
4269 }
4270
4271 /**
4272  * Attempt to open a file with Lustre file identifier \a fid
4273  * and return an open file descriptor.
4274  *
4275  * \param[in] lustre_dir        path within Lustre filesystem containing \a fid
4276  * \param[in] fid               Lustre file identifier of file to open
4277  * \param[in] flags             open() flags
4278  *
4279  * \retval                      non-negative file descriptor on successful open
4280  * \retval                      -1 if an error occurred
4281  */
4282 int llapi_open_by_fid(const char *lustre_dir, const lustre_fid *fid, int flags)
4283 {
4284         char mntdir[PATH_MAX];
4285         char path[PATH_MAX];
4286         int rc;
4287
4288         rc = llapi_search_mounts(lustre_dir, 0, mntdir, NULL);
4289         if (rc != 0)
4290                 return -1;
4291
4292         snprintf(path, sizeof(path), "%s/.lustre/fid/"DFID, mntdir, PFID(fid));
4293         return open(path, flags);
4294 }
4295
4296 /**
4297  * Take group lock.
4298  *
4299  * \param fd   File to lock.
4300  * \param gid  Group Identifier.
4301  *
4302  * \retval 0 on success.
4303  * \retval -errno on failure.
4304  */
4305 int llapi_group_lock(int fd, int gid)
4306 {
4307         int rc;
4308
4309         rc = ioctl(fd, LL_IOC_GROUP_LOCK, gid);
4310         if (rc < 0) {
4311                 rc = -errno;
4312                 llapi_error(LLAPI_MSG_ERROR, rc, "cannot get group lock");
4313         }
4314         return rc;
4315 }
4316
4317 /**
4318  * Put group lock.
4319  *
4320  * \param fd   File to unlock.
4321  * \param gid  Group Identifier.
4322  *
4323  * \retval 0 on success.
4324  * \retval -errno on failure.
4325  */
4326 int llapi_group_unlock(int fd, int gid)
4327 {
4328         int rc;
4329
4330         rc = ioctl(fd, LL_IOC_GROUP_UNLOCK, gid);
4331         if (rc < 0) {
4332                 rc = -errno;
4333                 llapi_error(LLAPI_MSG_ERROR, rc, "cannot put group lock");
4334         }
4335         return rc;
4336 }