Whamcloud - gitweb
LU-8769 lnet: removal of obsolete LNDs
[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 static int sattr_cache_get_defaults(const char *const fsname,
2054                                     const char *const pathname,
2055                                     unsigned int *scount,
2056                                     unsigned int *ssize,
2057                                     unsigned int *soffset)
2058 {
2059         static struct {
2060                 char fsname[PATH_MAX + 1];
2061                 unsigned int stripecount;
2062                 unsigned int stripesize;
2063                 unsigned int stripeoffset;
2064         } cache = {
2065                 .fsname = {'\0'}
2066         };
2067
2068         int rc;
2069         char fsname_buf[PATH_MAX + 1];
2070         unsigned int tmp[3];
2071
2072         if (fsname == NULL) {
2073                 rc = llapi_search_fsname(pathname, fsname_buf);
2074                 if (rc)
2075                         return rc;
2076         } else {
2077                 strlcpy(fsname_buf, fsname, sizeof(fsname_buf));
2078         }
2079
2080         if (strncmp(fsname_buf, cache.fsname, sizeof(fsname_buf) - 1) != 0) {
2081                 /*
2082                  * Ensure all 3 sattrs (count, size, and offset) are
2083                  * successfully retrieved and stored in tmp before writing to
2084                  * cache.
2085                  */
2086                 rc = sattr_get_defaults(fsname_buf, &tmp[0], &tmp[1], &tmp[2]);
2087                 if (rc != 0)
2088                         return rc;
2089
2090                 cache.stripecount = tmp[0];
2091                 cache.stripesize = tmp[1];
2092                 cache.stripeoffset = tmp[2];
2093                 strlcpy(cache.fsname, fsname_buf, sizeof(cache.fsname));
2094         }
2095
2096         if (scount)
2097                 *scount = cache.stripecount;
2098         if (ssize)
2099                 *ssize = cache.stripesize;
2100         if (soffset)
2101                 *soffset = cache.stripeoffset;
2102
2103         return 0;
2104 }
2105
2106 static void lov_dump_user_lmm_header(struct lov_user_md *lum, char *path,
2107                                      struct lov_user_ost_data_v1 *objects,
2108                                      int is_dir, int verbose, int depth,
2109                                      int raw, char *pool_name)
2110 {
2111         char *prefix = is_dir ? "" : "lmm_";
2112         char *separator = "";
2113         int rc;
2114
2115         if (is_dir && lmm_oi_seq(&lum->lmm_oi) == FID_SEQ_LOV_DEFAULT) {
2116                 lmm_oi_set_seq(&lum->lmm_oi, 0);
2117                 if (verbose & VERBOSE_DETAIL)
2118                         llapi_printf(LLAPI_MSG_NORMAL, "(Default) ");
2119         }
2120
2121         if (depth && path && ((verbose != VERBOSE_OBJID) || !is_dir))
2122                 llapi_printf(LLAPI_MSG_NORMAL, "%s\n", path);
2123
2124         if ((verbose & VERBOSE_DETAIL) && !is_dir) {
2125                 llapi_printf(LLAPI_MSG_NORMAL, "lmm_magic:          0x%08X\n",
2126                              lum->lmm_magic);
2127                 llapi_printf(LLAPI_MSG_NORMAL, "lmm_seq:            %#jx\n",
2128                              (uintmax_t)lmm_oi_seq(&lum->lmm_oi));
2129                 llapi_printf(LLAPI_MSG_NORMAL, "lmm_object_id:      %#jx\n",
2130                              (uintmax_t)lmm_oi_id(&lum->lmm_oi));
2131         }
2132         if ((verbose & (VERBOSE_DETAIL | VERBOSE_DFID)) && !is_dir) {
2133                 if (verbose & ~VERBOSE_DFID)
2134                         llapi_printf(LLAPI_MSG_NORMAL, "lmm_fid:            ");
2135                 /* This needs a bit of hand-holding since old 1.x lmm_oi
2136                  * have { oi.oi_id = mds_inum, oi.oi_seq = 0 } and 2.x lmm_oi
2137                  * have { oi.oi_id = mds_oid, oi.oi_seq = mds_seq } instead of
2138                  * a real FID.  Ideally the 2.x code would have stored this
2139                  * like a FID with { oi_id = mds_seq, oi_seq = mds_oid } so the
2140                  * ostid union lu_fid { f_seq = mds_seq, f_oid = mds_oid }
2141                  * worked properly (especially since IGIF FIDs use mds_inum as
2142                  * the FID SEQ), but unfortunately that didn't happen.
2143                  *
2144                  * Print it to look like an IGIF FID, even though the fields
2145                  * are reversed on disk, so that it makes sense to userspace.
2146                  *
2147                  * Don't use ostid_id() and ostid_seq(), since they assume the
2148                  * oi_fid fields are in the right order.  This is why there are
2149                  * separate lmm_oi_seq() and lmm_oi_id() routines for this.
2150                  *
2151                  * For newer layout types hopefully this will be a real FID. */
2152                 llapi_printf(LLAPI_MSG_NORMAL, DFID"\n",
2153                              lmm_oi_seq(&lum->lmm_oi) == 0 ?
2154                                 lmm_oi_id(&lum->lmm_oi) :
2155                                 lmm_oi_seq(&lum->lmm_oi),
2156                              lmm_oi_seq(&lum->lmm_oi) == 0 ?
2157                                 0 : (__u32)lmm_oi_id(&lum->lmm_oi),
2158                              (__u32)(lmm_oi_id(&lum->lmm_oi) >> 32));
2159         }
2160
2161         if (verbose & VERBOSE_COUNT) {
2162                 if (verbose & ~VERBOSE_COUNT)
2163                         llapi_printf(LLAPI_MSG_NORMAL, "%sstripe_count:   ",
2164                                      prefix);
2165                 if (is_dir) {
2166                         if (!raw && lum->lmm_stripe_count == 0) {
2167                                 unsigned int scount;
2168                                 rc = sattr_cache_get_defaults(NULL, path,
2169                                                               &scount, NULL,
2170                                                               NULL);
2171                                 if (rc == 0)
2172                                         llapi_printf(LLAPI_MSG_NORMAL, "%d",
2173                                                      scount);
2174                                 else
2175                                         llapi_error(LLAPI_MSG_ERROR, rc,
2176                                                     "Cannot determine default"
2177                                                     " stripe count.");
2178                         } else {
2179                                 llapi_printf(LLAPI_MSG_NORMAL, "%d",
2180                                              lum->lmm_stripe_count ==
2181                                              (typeof(lum->lmm_stripe_count))(-1)
2182                                              ? -1 : lum->lmm_stripe_count);
2183                         }
2184                 } else {
2185                         llapi_printf(LLAPI_MSG_NORMAL, "%hd",
2186                                      (__s16)lum->lmm_stripe_count);
2187                 }
2188                 separator = is_dir ? " " : "\n";
2189         }
2190
2191         if (verbose & VERBOSE_SIZE) {
2192                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2193                 if (verbose & ~VERBOSE_SIZE)
2194                         llapi_printf(LLAPI_MSG_NORMAL, "%sstripe_size:    ",
2195                                      prefix);
2196                 if (is_dir && !raw && lum->lmm_stripe_size == 0) {
2197                         unsigned int ssize;
2198                         rc = sattr_cache_get_defaults(NULL, path, NULL, &ssize,
2199                                                       NULL);
2200                         if (rc == 0)
2201                                 llapi_printf(LLAPI_MSG_NORMAL, "%u", ssize);
2202                         else
2203                                 llapi_error(LLAPI_MSG_ERROR, rc,
2204                                             "Cannot determine default"
2205                                             " stripe size.");
2206                 } else {
2207                         llapi_printf(LLAPI_MSG_NORMAL, "%u",
2208                                      lum->lmm_stripe_size);
2209                 }
2210                 separator = is_dir ? " " : "\n";
2211         }
2212
2213         if ((verbose & VERBOSE_LAYOUT) && !is_dir) {
2214                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2215                 if (verbose & ~VERBOSE_LAYOUT)
2216                         llapi_printf(LLAPI_MSG_NORMAL, "%spattern:        ",
2217                                      prefix);
2218                 llapi_printf(LLAPI_MSG_NORMAL, "%.x", lum->lmm_pattern);
2219                 separator = "\n";
2220         }
2221
2222         if ((verbose & VERBOSE_GENERATION) && !is_dir) {
2223                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2224                 if (verbose & ~VERBOSE_GENERATION)
2225                         llapi_printf(LLAPI_MSG_NORMAL, "%slayout_gen:     ",
2226                                      prefix);
2227                 llapi_printf(LLAPI_MSG_NORMAL, "%u",
2228                              (int)lum->lmm_layout_gen);
2229                 separator = "\n";
2230         }
2231
2232         if (verbose & VERBOSE_OFFSET) {
2233                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2234                 if (verbose & ~VERBOSE_OFFSET)
2235                         llapi_printf(LLAPI_MSG_NORMAL, "%sstripe_offset:  ",
2236                                      prefix);
2237                 if (is_dir)
2238                         llapi_printf(LLAPI_MSG_NORMAL, "%d",
2239                                      lum->lmm_stripe_offset ==
2240                                      (typeof(lum->lmm_stripe_offset))(-1) ? -1 :
2241                                      lum->lmm_stripe_offset);
2242                 else
2243                         llapi_printf(LLAPI_MSG_NORMAL, "%u",
2244                                      objects[0].l_ost_idx);
2245                 separator = is_dir ? " " : "\n";
2246         }
2247
2248         if ((verbose & VERBOSE_POOL) && (pool_name != NULL)) {
2249                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2250                 if (verbose & ~VERBOSE_POOL)
2251                         llapi_printf(LLAPI_MSG_NORMAL, "%spool:           ",
2252                                      prefix);
2253                 llapi_printf(LLAPI_MSG_NORMAL, "%s", pool_name);
2254         }
2255
2256         if (!is_dir || (is_dir && (verbose != VERBOSE_OBJID)))
2257                 llapi_printf(LLAPI_MSG_NORMAL, "\n");
2258 }
2259
2260 void lov_dump_user_lmm_v1v3(struct lov_user_md *lum, char *pool_name,
2261                             struct lov_user_ost_data_v1 *objects,
2262                             char *path, int is_dir, int obdindex,
2263                             int depth, int header, int raw)
2264 {
2265         int i, obdstripe = (obdindex != OBD_NOT_FOUND) ? 0 : 1;
2266
2267         if (!obdstripe) {
2268                 for (i = 0; !is_dir && i < lum->lmm_stripe_count; i++) {
2269                         if (obdindex == objects[i].l_ost_idx) {
2270                                 obdstripe = 1;
2271                                 break;
2272                         }
2273                 }
2274         }
2275
2276         if (obdstripe == 1)
2277                 lov_dump_user_lmm_header(lum, path, objects, is_dir, header,
2278                                          depth, raw, pool_name);
2279
2280         if (!is_dir && (header & VERBOSE_OBJID) &&
2281             !(lum->lmm_pattern & LOV_PATTERN_F_RELEASED)) {
2282                 if (obdstripe == 1)
2283                         llapi_printf(LLAPI_MSG_NORMAL,
2284                                    "\tobdidx\t\t objid\t\t objid\t\t group\n");
2285
2286                 for (i = 0; i < lum->lmm_stripe_count; i++) {
2287                         int idx = objects[i].l_ost_idx;
2288                         long long oid = ostid_id(&objects[i].l_ost_oi);
2289                         long long gr = ostid_seq(&objects[i].l_ost_oi);
2290                         if ((obdindex == OBD_NOT_FOUND) || (obdindex == idx)) {
2291                                 char fmt[48];
2292                                 sprintf(fmt, "%s%s%s\n",
2293                                         "\t%6u\t%14llu\t%#13llx\t",
2294                                         (fid_seq_is_rsvd(gr) ||
2295                                          fid_seq_is_mdt0(gr)) ?
2296                                          "%14llu" : "%#14llx", "%s");
2297                                 llapi_printf(LLAPI_MSG_NORMAL, fmt, idx, oid,
2298                                              oid, gr,
2299                                              obdindex == idx ? " *" : "");
2300                         }
2301
2302                 }
2303                 llapi_printf(LLAPI_MSG_NORMAL, "\n");
2304         }
2305 }
2306
2307 void lmv_dump_user_lmm(struct lmv_user_md *lum, char *pool_name,
2308                        char *path, int obdindex, int depth, int verbose)
2309 {
2310         struct lmv_user_mds_data *objects = lum->lum_objects;
2311         char *prefix = lum->lum_magic == LMV_USER_MAGIC ? "(Default)" : "";
2312         int i, obdstripe = 0;
2313         char *separator = "";
2314
2315         if (obdindex != OBD_NOT_FOUND) {
2316                 if (lum->lum_stripe_count == 0) {
2317                         if (obdindex == lum->lum_stripe_offset)
2318                                 obdstripe = 1;
2319                 } else {
2320                         for (i = 0; i < lum->lum_stripe_count; i++) {
2321                                 if (obdindex == objects[i].lum_mds) {
2322                                         llapi_printf(LLAPI_MSG_NORMAL,
2323                                                      "%s%s\n", prefix,
2324                                                      path);
2325                                         obdstripe = 1;
2326                                         break;
2327                                 }
2328                         }
2329                 }
2330         } else {
2331                 obdstripe = 1;
2332         }
2333
2334         if (!obdstripe)
2335                 return;
2336
2337         /* show all information default */
2338         if (!verbose) {
2339                 if (lum->lum_magic == LMV_USER_MAGIC)
2340                         verbose = VERBOSE_POOL | VERBOSE_COUNT |
2341                                   VERBOSE_OFFSET | VERBOSE_HASH_TYPE;
2342                 else
2343                         verbose = VERBOSE_OBJID;
2344         }
2345
2346         if (depth && path && ((verbose != VERBOSE_OBJID)))
2347                 llapi_printf(LLAPI_MSG_NORMAL, "%s%s\n", prefix, path);
2348
2349         if (verbose & VERBOSE_COUNT) {
2350                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2351                 if (verbose & ~VERBOSE_COUNT)
2352                         llapi_printf(LLAPI_MSG_NORMAL, "lmv_stripe_count: ");
2353                 llapi_printf(LLAPI_MSG_NORMAL, "%u",
2354                              (int)lum->lum_stripe_count);
2355                 if (verbose & VERBOSE_OFFSET)
2356                         separator = " ";
2357                 else
2358                         separator = "\n";
2359         }
2360
2361         if (verbose & VERBOSE_OFFSET) {
2362                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2363                 if (verbose & ~VERBOSE_OFFSET)
2364                         llapi_printf(LLAPI_MSG_NORMAL, "lmv_stripe_offset: ");
2365                 llapi_printf(LLAPI_MSG_NORMAL, "%d",
2366                              (int)lum->lum_stripe_offset);
2367                 if (verbose & VERBOSE_HASH_TYPE)
2368                         separator = " ";
2369                 else
2370                         separator = "\n";
2371         }
2372
2373         if (verbose & VERBOSE_HASH_TYPE) {
2374                 unsigned int type = lum->lum_hash_type;
2375
2376                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2377                 if (verbose & ~VERBOSE_HASH_TYPE)
2378                         llapi_printf(LLAPI_MSG_NORMAL, "lmv_hash_type: ");
2379                 if (type < LMV_HASH_TYPE_MAX)
2380                         llapi_printf(LLAPI_MSG_NORMAL, "%s",
2381                                      mdt_hash_name[type]);
2382                 else
2383                         llapi_printf(LLAPI_MSG_NORMAL, "%d",
2384                                      (int)type);
2385                 separator = "\n";
2386         }
2387
2388         if (verbose & VERBOSE_OBJID && lum->lum_magic != LMV_USER_MAGIC) {
2389                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2390                 if (obdstripe == 1 && lum->lum_stripe_count > 0)
2391                         llapi_printf(LLAPI_MSG_NORMAL,
2392                                      "mdtidx\t\t FID[seq:oid:ver]\n");
2393                 for (i = 0; i < lum->lum_stripe_count; i++) {
2394                         int idx = objects[i].lum_mds;
2395                         struct lu_fid *fid = &objects[i].lum_fid;
2396                         if ((obdindex == OBD_NOT_FOUND) || (obdindex == idx))
2397                                 llapi_printf(LLAPI_MSG_NORMAL,
2398                                              "%6u\t\t "DFID"\t\t%s\n",
2399                                             idx, PFID(fid),
2400                                             obdindex == idx ? " *" : "");
2401                 }
2402
2403         }
2404
2405         if ((verbose & VERBOSE_POOL) && pool_name != NULL &&
2406              pool_name[0] != '\0') {
2407                 llapi_printf(LLAPI_MSG_NORMAL, "%s", separator);
2408                 if (verbose & ~VERBOSE_POOL)
2409                         llapi_printf(LLAPI_MSG_NORMAL, "%slmv_pool:           ",
2410                                      prefix);
2411                 llapi_printf(LLAPI_MSG_NORMAL, "%s%c ", pool_name, ' ');
2412                 separator = "\n";
2413         }
2414
2415         if (!(verbose & VERBOSE_OBJID) || lum->lum_magic == LMV_USER_MAGIC)
2416                 llapi_printf(LLAPI_MSG_NORMAL, "\n");
2417 }
2418
2419 void llapi_lov_dump_user_lmm(struct find_param *param, char *path, int is_dir)
2420 {
2421         __u32 magic;
2422
2423         if (param->fp_get_lmv || param->fp_get_default_lmv)
2424                 magic = (__u32)param->fp_lmv_md->lum_magic;
2425         else
2426                 magic = *(__u32 *)&param->fp_lmd->lmd_lmm; /* lum->lmm_magic */
2427
2428         switch (magic) {
2429         case LOV_USER_MAGIC_V1:
2430                 lov_dump_user_lmm_v1v3(&param->fp_lmd->lmd_lmm, NULL,
2431                                        param->fp_lmd->lmd_lmm.lmm_objects,
2432                                        path, is_dir,
2433                                        param->fp_obd_index, param->fp_max_depth,
2434                                        param->fp_verbose, param->fp_raw);
2435                 break;
2436         case LOV_USER_MAGIC_V3: {
2437                 char pool_name[LOV_MAXPOOLNAME + 1];
2438                 struct lov_user_ost_data_v1 *objects;
2439                 struct lov_user_md_v3 *lmmv3 = (void *)&param->fp_lmd->lmd_lmm;
2440
2441                 strlcpy(pool_name, lmmv3->lmm_pool_name, sizeof(pool_name));
2442                 objects = lmmv3->lmm_objects;
2443                 lov_dump_user_lmm_v1v3(&param->fp_lmd->lmd_lmm,
2444                                        pool_name[0] == '\0' ? NULL : pool_name,
2445                                        objects, path, is_dir,
2446                                        param->fp_obd_index, param->fp_max_depth,
2447                                        param->fp_verbose, param->fp_raw);
2448                 break;
2449         }
2450         case LMV_MAGIC_V1:
2451         case LMV_USER_MAGIC: {
2452                 char pool_name[LOV_MAXPOOLNAME + 1];
2453                 struct lmv_user_md *lum;
2454
2455                 lum = (struct lmv_user_md *)param->fp_lmv_md;
2456                 strlcpy(pool_name, lum->lum_pool_name, sizeof(pool_name));
2457                 lmv_dump_user_lmm(lum,
2458                                   pool_name[0] == '\0' ? NULL : pool_name,
2459                                   path, param->fp_obd_index,
2460                                   param->fp_max_depth, param->fp_verbose);
2461                 break;
2462         }
2463         default:
2464                 llapi_printf(LLAPI_MSG_NORMAL, "unknown lmm_magic:  %#x "
2465                              "(expecting one of %#x %#x %#x %#x)\n",
2466                              *(__u32 *)&param->fp_lmd->lmd_lmm,
2467                              LOV_USER_MAGIC_V1, LOV_USER_MAGIC_V3,
2468                              LMV_USER_MAGIC, LMV_MAGIC_V1);
2469                 return;
2470         }
2471 }
2472
2473 int llapi_file_get_stripe(const char *path, struct lov_user_md *lum)
2474 {
2475         const char *fname;
2476         char *dname;
2477         int fd, rc = 0;
2478
2479         fname = strrchr(path, '/');
2480
2481         /* It should be a file (or other non-directory) */
2482         if (fname == NULL) {
2483                 dname = (char *)malloc(2);
2484                 if (dname == NULL)
2485                         return -ENOMEM;
2486                 strcpy(dname, ".");
2487                 fname = (char *)path;
2488         } else {
2489                 dname = (char *)malloc(fname - path + 1);
2490                 if (dname == NULL)
2491                         return -ENOMEM;
2492                 strncpy(dname, path, fname - path);
2493                 dname[fname - path] = '\0';
2494                 fname++;
2495         }
2496
2497         fd = open(dname, O_RDONLY | O_NONBLOCK);
2498         if (fd == -1) {
2499                 rc = -errno;
2500                 free(dname);
2501                 return rc;
2502         }
2503
2504         strcpy((char *)lum, fname);
2505         if (ioctl(fd, IOC_MDC_GETFILESTRIPE, (void *)lum) == -1)
2506                 rc = -errno;
2507
2508         if (close(fd) == -1 && rc == 0)
2509                 rc = -errno;
2510
2511         free(dname);
2512         return rc;
2513 }
2514
2515 int llapi_file_lookup(int dirfd, const char *name)
2516 {
2517         struct obd_ioctl_data data = { 0 };
2518         char rawbuf[8192];
2519         char *buf = rawbuf;
2520         int rc;
2521
2522         if (dirfd < 0 || name == NULL)
2523                 return -EINVAL;
2524
2525         data.ioc_version = OBD_IOCTL_VERSION;
2526         data.ioc_len = sizeof(data);
2527         data.ioc_inlbuf1 = (char *)name;
2528         data.ioc_inllen1 = strlen(name) + 1;
2529
2530         rc = obd_ioctl_pack(&data, &buf, sizeof(rawbuf));
2531         if (rc) {
2532                 llapi_error(LLAPI_MSG_ERROR, rc,
2533                             "error: IOC_MDC_LOOKUP pack failed for '%s': rc %d",
2534                             name, rc);
2535                 return rc;
2536         }
2537
2538         rc = ioctl(dirfd, IOC_MDC_LOOKUP, buf);
2539         if (rc < 0)
2540                 rc = -errno;
2541         return rc;
2542 }
2543
2544 /* Check if the value matches 1 of the given criteria (e.g. --atime +/-N).
2545  * @mds indicates if this is MDS timestamps and there are attributes on OSTs.
2546  *
2547  * The result is -1 if it does not match, 0 if not yet clear, 1 if matches.
2548  * The table below gives the answers for the specified parameters (value and
2549  * sign), 1st column is the answer for the MDS value, the 2nd is for the OST:
2550  * --------------------------------------
2551  * 1 | file > limit; sign > 0 | -1 / -1 |
2552  * 2 | file = limit; sign > 0 | -1 / -1 |
2553  * 3 | file < limit; sign > 0 |  ? /  1 |
2554  * 4 | file > limit; sign = 0 | -1 / -1 |
2555  * 5 | file = limit; sign = 0 |  ? /  1 |  <- (see the Note below)
2556  * 6 | file < limit; sign = 0 |  ? / -1 |
2557  * 7 | file > limit; sign < 0 |  1 /  1 |
2558  * 8 | file = limit; sign < 0 |  ? / -1 |
2559  * 9 | file < limit; sign < 0 |  ? / -1 |
2560  * --------------------------------------
2561  * Note: 5th actually means that the value is within the interval
2562  * (limit - margin, limit]. */
2563 static int find_value_cmp(unsigned long long file, unsigned long long limit,
2564                           int sign, int negopt, unsigned long long margin,
2565                           int mds)
2566 {
2567         int ret = -1;
2568
2569         if (sign > 0) {
2570                 /* Drop the fraction of margin (of days). */
2571                 if (file + margin <= limit)
2572                         ret = mds ? 0 : 1;
2573         } else if (sign == 0) {
2574                 if (file <= limit && file + margin > limit)
2575                         ret = mds ? 0 : 1;
2576                 else if (file + margin <= limit)
2577                         ret = mds ? 0 : -1;
2578         } else if (sign < 0) {
2579                 if (file > limit)
2580                         ret = 1;
2581                 else if (mds)
2582                         ret = 0;
2583         }
2584
2585         return negopt ? ~ret + 1 : ret;
2586 }
2587
2588 /* Check if the file time matches all the given criteria (e.g. --atime +/-N).
2589  * Return -1 or 1 if file timestamp does not or does match the given criteria
2590  * correspondingly. Return 0 if the MDS time is being checked and there are
2591  * attributes on OSTs and it is not yet clear if the timespamp matches.
2592  *
2593  * If 0 is returned, we need to do another RPC to the OSTs to obtain the
2594  * updated timestamps. */
2595 static int find_time_check(lstat_t *st, struct find_param *param, int mds)
2596 {
2597         int rc = 1;
2598         int rc2;
2599
2600         /* Check if file is accepted. */
2601         if (param->fp_atime) {
2602                 rc2 = find_value_cmp(st->st_atime, param->fp_atime,
2603                                      param->fp_asign, param->fp_exclude_atime,
2604                                      24 * 60 * 60, mds);
2605                 if (rc2 < 0)
2606                         return rc2;
2607                 rc = rc2;
2608         }
2609
2610         if (param->fp_mtime) {
2611                 rc2 = find_value_cmp(st->st_mtime, param->fp_mtime,
2612                                      param->fp_msign, param->fp_exclude_mtime,
2613                                      24 * 60 * 60, mds);
2614                 if (rc2 < 0)
2615                         return rc2;
2616
2617                 /* If the previous check matches, but this one is not yet clear,
2618                  * we should return 0 to do an RPC on OSTs. */
2619                 if (rc == 1)
2620                         rc = rc2;
2621         }
2622
2623         if (param->fp_ctime) {
2624                 rc2 = find_value_cmp(st->st_ctime, param->fp_ctime,
2625                                      param->fp_csign, param->fp_exclude_ctime,
2626                                      24 * 60 * 60, mds);
2627                 if (rc2 < 0)
2628                         return rc2;
2629
2630                 /* If the previous check matches, but this one is not yet clear,
2631                  * we should return 0 to do an RPC on OSTs. */
2632                 if (rc == 1)
2633                         rc = rc2;
2634         }
2635
2636         return rc;
2637 }
2638
2639 /**
2640  * Check whether the stripes matches the indexes user provided
2641  *       1   : matched
2642  *       0   : Unmatched
2643  */
2644 static int check_obd_match(struct find_param *param)
2645 {
2646         lstat_t *st = &param->fp_lmd->lmd_st;
2647         struct lov_user_ost_data_v1 *lmm_objects;
2648         int i, j;
2649
2650         if (param->fp_obd_uuid && param->fp_obd_index == OBD_NOT_FOUND)
2651                 return 0;
2652
2653         if (!S_ISREG(st->st_mode))
2654                 return 0;
2655
2656         /* Only those files should be accepted, which have a
2657          * stripe on the specified OST. */
2658         if (!param->fp_lmd->lmd_lmm.lmm_stripe_count)
2659                 return 0;
2660
2661         if (param->fp_lmd->lmd_lmm.lmm_magic ==
2662             LOV_USER_MAGIC_V3) {
2663                 struct lov_user_md_v3 *lmmv3 = (void *)&param->fp_lmd->lmd_lmm;
2664
2665                 lmm_objects = lmmv3->lmm_objects;
2666         } else if (param->fp_lmd->lmd_lmm.lmm_magic ==  LOV_USER_MAGIC_V1) {
2667                 lmm_objects = param->fp_lmd->lmd_lmm.lmm_objects;
2668         } else {
2669                 llapi_err_noerrno(LLAPI_MSG_ERROR, "%s:Unknown magic: 0x%08X\n",
2670                                   __func__, param->fp_lmd->lmd_lmm.lmm_magic);
2671                 return -EINVAL;
2672         }
2673
2674         for (i = 0; i < param->fp_lmd->lmd_lmm.lmm_stripe_count; i++) {
2675                 for (j = 0; j < param->fp_num_obds; j++) {
2676                         if (param->fp_obd_indexes[j] ==
2677                             lmm_objects[i].l_ost_idx) {
2678                                 if (param->fp_exclude_obd)
2679                                         return 0;
2680                                 return 1;
2681                         }
2682                 }
2683         }
2684
2685         if (param->fp_exclude_obd)
2686                 return 1;
2687
2688         return 0;
2689 }
2690
2691 static int check_mdt_match(struct find_param *param)
2692 {
2693         int i;
2694
2695         if (param->fp_mdt_uuid && param->fp_mdt_index == OBD_NOT_FOUND)
2696                 return 0;
2697
2698         /* FIXME: For striped dir, we should get stripe information and check */
2699         for (i = 0; i < param->fp_num_mdts; i++) {
2700                 if (param->fp_mdt_indexes[i] == param->fp_file_mdt_index)
2701                         return !param->fp_exclude_mdt;
2702         }
2703
2704         if (param->fp_exclude_mdt)
2705                 return 1;
2706
2707         return 0;
2708 }
2709
2710 /**
2711  * Check whether the obd is active or not, if it is
2712  * not active, just print the object affected by this
2713  * failed target
2714  **/
2715 static int print_failed_tgt(struct find_param *param, char *path, int type)
2716 {
2717         struct obd_statfs stat_buf;
2718         struct obd_uuid uuid_buf;
2719         int ret;
2720
2721         if (type != LL_STATFS_LOV && type != LL_STATFS_LMV)
2722                 return -EINVAL;
2723
2724         memset(&stat_buf, 0, sizeof(struct obd_statfs));
2725         memset(&uuid_buf, 0, sizeof(struct obd_uuid));
2726         ret = llapi_obd_statfs(path, type,
2727                                param->fp_obd_index, &stat_buf,
2728                                &uuid_buf);
2729         if (ret) {
2730                 llapi_printf(LLAPI_MSG_NORMAL,
2731                              "obd_uuid: %s failed %s ",
2732                              param->fp_obd_uuid->uuid,
2733                              strerror(errno));
2734         }
2735
2736         return ret;
2737 }
2738
2739 static int cb_find_init(char *path, DIR *parent, DIR **dirp,
2740                         void *data, struct dirent64 *de)
2741 {
2742         struct find_param *param = (struct find_param *)data;
2743         DIR *dir = dirp == NULL ? NULL : *dirp;
2744         int decision = 1; /* 1 is accepted; -1 is rejected. */
2745         lstat_t *st = &param->fp_lmd->lmd_st;
2746         int lustre_fs = 1;
2747         int checked_type = 0;
2748         int ret = 0;
2749
2750         if (parent == NULL && dir == NULL)
2751                 return -EINVAL;
2752
2753         param->fp_lmd->lmd_lmm.lmm_stripe_count = 0;
2754
2755         /* If a regular expression is presented, make the initial decision */
2756         if (param->fp_pattern != NULL) {
2757                 char *fname = strrchr(path, '/');
2758                 fname = (fname == NULL ? path : fname + 1);
2759                 ret = fnmatch(param->fp_pattern, fname, 0);
2760                 if ((ret == FNM_NOMATCH && !param->fp_exclude_pattern) ||
2761                     (ret == 0 && param->fp_exclude_pattern))
2762                         goto decided;
2763         }
2764
2765         /* See if we can check the file type from the dirent. */
2766         if (param->fp_type != 0 && de != NULL && de->d_type != DT_UNKNOWN) {
2767                 checked_type = 1;
2768
2769                 if (DTTOIF(de->d_type) == param->fp_type) {
2770                         if (param->fp_exclude_type)
2771                                 goto decided;
2772                 } else {
2773                         if (!param->fp_exclude_type)
2774                                 goto decided;
2775                 }
2776         }
2777
2778         ret = 0;
2779
2780         /* Request MDS for the stat info if some of these parameters need
2781          * to be compared. */
2782         if (param->fp_obd_uuid || param->fp_mdt_uuid ||
2783             param->fp_check_uid || param->fp_check_gid ||
2784             param->fp_atime || param->fp_mtime || param->fp_ctime ||
2785             param->fp_check_pool || param->fp_check_size ||
2786             param->fp_check_stripe_count || param->fp_check_stripe_size ||
2787             param->fp_check_layout)
2788                 decision = 0;
2789
2790         if (param->fp_type != 0 && checked_type == 0)
2791                 decision = 0;
2792
2793         if (decision == 0) {
2794                 ret = get_lmd_info(path, parent, dir, param->fp_lmd,
2795                                    param->fp_lum_size);
2796                 if (ret == 0 && param->fp_lmd->lmd_lmm.lmm_magic == 0 &&
2797                     (param->fp_check_pool || param->fp_check_stripe_count ||
2798                      param->fp_check_stripe_size || param->fp_check_layout)) {
2799                         struct lov_user_md *lmm = &param->fp_lmd->lmd_lmm;
2800
2801                         /* We need to "fake" the "use the default" values
2802                          * since the lmm struct is zeroed out at this point. */
2803                         lmm->lmm_magic = LOV_USER_MAGIC_V1;
2804                         lmm->lmm_pattern = 0xFFFFFFFF;
2805                         if (!param->fp_raw)
2806                                 ostid_set_seq(&lmm->lmm_oi,
2807                                               FID_SEQ_LOV_DEFAULT);
2808                         lmm->lmm_stripe_size = 0;
2809                         lmm->lmm_stripe_count = 0;
2810                         lmm->lmm_stripe_offset = -1;
2811                 }
2812                 if (ret == 0 && param->fp_mdt_uuid != NULL) {
2813                         if (dir != NULL) {
2814                                 ret = llapi_file_fget_mdtidx(dirfd(dir),
2815                                                      &param->fp_file_mdt_index);
2816                         } else if (S_ISREG(st->st_mode)) {
2817                                 int fd;
2818
2819                                 /* FIXME: we could get the MDT index from the
2820                                  * file's FID in lmd->lmd_lmm.lmm_oi without
2821                                  * opening the file, once we are sure that
2822                                  * LFSCK2 (2.6) has fixed up pre-2.0 LOV EAs.
2823                                  * That would still be an ioctl() to map the
2824                                  * FID to the MDT, but not an open RPC. */
2825                                 fd = open(path, O_RDONLY);
2826                                 if (fd > 0) {
2827                                         ret = llapi_file_fget_mdtidx(fd,
2828                                                      &param->fp_file_mdt_index);
2829                                         close(fd);
2830                                 } else {
2831                                         ret = -errno;
2832                                 }
2833                         } else {
2834                                 /* For a special file, we assume it resides on
2835                                  * the same MDT as the parent directory. */
2836                                 ret = llapi_file_fget_mdtidx(dirfd(parent),
2837                                                      &param->fp_file_mdt_index);
2838                         }
2839                 }
2840                 if (ret != 0) {
2841                         if (ret == -ENOTTY)
2842                                 lustre_fs = 0;
2843                         if (ret == -ENOENT)
2844                                 goto decided;
2845
2846                         return ret;
2847                 }
2848         }
2849
2850         if (param->fp_type && !checked_type) {
2851                 if ((st->st_mode & S_IFMT) == param->fp_type) {
2852                         if (param->fp_exclude_type)
2853                                 goto decided;
2854                 } else {
2855                         if (!param->fp_exclude_type)
2856                                 goto decided;
2857                 }
2858         }
2859
2860         /* Prepare odb. */
2861         if (param->fp_obd_uuid || param->fp_mdt_uuid) {
2862                 if (lustre_fs && param->fp_got_uuids &&
2863                     param->fp_dev != st->st_dev) {
2864                         /* A lustre/lustre mount point is crossed. */
2865                         param->fp_got_uuids = 0;
2866                         param->fp_obds_printed = 0;
2867                         param->fp_mdt_index = OBD_NOT_FOUND;
2868                         param->fp_obd_index = OBD_NOT_FOUND;
2869                 }
2870
2871                 if (lustre_fs && !param->fp_got_uuids) {
2872                         ret = setup_target_indexes(dir ? dir : parent, path,
2873                                                    param);
2874                         if (ret)
2875                                 return ret;
2876
2877                         param->fp_dev = st->st_dev;
2878                 } else if (!lustre_fs && param->fp_got_uuids) {
2879                         /* A lustre/non-lustre mount point is crossed. */
2880                         param->fp_got_uuids = 0;
2881                         param->fp_mdt_index = OBD_NOT_FOUND;
2882                         param->fp_obd_index = OBD_NOT_FOUND;
2883                 }
2884         }
2885
2886         if (param->fp_check_stripe_size) {
2887                 decision = find_value_cmp(
2888                                 param->fp_lmd->lmd_lmm.lmm_stripe_size,
2889                                 param->fp_stripe_size,
2890                                 param->fp_stripe_size_sign,
2891                                 param->fp_exclude_stripe_size,
2892                                 param->fp_stripe_size_units, 0);
2893                 if (decision == -1)
2894                         goto decided;
2895         }
2896
2897         if (param->fp_check_stripe_count) {
2898                 decision = find_value_cmp(
2899                                 param->fp_lmd->lmd_lmm.lmm_stripe_count,
2900                                 param->fp_stripe_count,
2901                                 param->fp_stripe_count_sign,
2902                                 param->fp_exclude_stripe_count, 1, 0);
2903                 if (decision == -1)
2904                         goto decided;
2905         }
2906
2907         if (param->fp_check_layout) {
2908                 __u32 found;
2909
2910                 found = (param->fp_lmd->lmd_lmm.lmm_pattern & param->fp_layout);
2911                 if ((param->fp_lmd->lmd_lmm.lmm_pattern == 0xFFFFFFFF) ||
2912                     (found && param->fp_exclude_layout) ||
2913                     (!found && !param->fp_exclude_layout)) {
2914                         decision = -1;
2915                         goto decided;
2916                 }
2917         }
2918
2919         /* If an OBD UUID is specified but none matches, skip this file. */
2920         if ((param->fp_obd_uuid && param->fp_obd_index == OBD_NOT_FOUND) ||
2921             (param->fp_mdt_uuid && param->fp_mdt_index == OBD_NOT_FOUND))
2922                 goto decided;
2923
2924         /* If an OST or MDT UUID is given, and some OST matches,
2925          * check it here. */
2926         if (param->fp_obd_index != OBD_NOT_FOUND ||
2927             param->fp_mdt_index != OBD_NOT_FOUND) {
2928                 if (param->fp_obd_uuid) {
2929                         if (check_obd_match(param)) {
2930                                 /* If no mdtuuid is given, we are done.
2931                                  * Otherwise, fall through to the mdtuuid
2932                                  * check below. */
2933                                 if (!param->fp_mdt_uuid)
2934                                         goto obd_matches;
2935                         } else {
2936                                 goto decided;
2937                         }
2938                 }
2939
2940                 if (param->fp_mdt_uuid) {
2941                         if (check_mdt_match(param))
2942                                 goto obd_matches;
2943                         goto decided;
2944                 }
2945         }
2946
2947 obd_matches:
2948         if (param->fp_check_uid) {
2949                 if (st->st_uid == param->fp_uid) {
2950                         if (param->fp_exclude_uid)
2951                                 goto decided;
2952                 } else {
2953                         if (!param->fp_exclude_uid)
2954                                 goto decided;
2955                 }
2956         }
2957
2958         if (param->fp_check_gid) {
2959                 if (st->st_gid == param->fp_gid) {
2960                         if (param->fp_exclude_gid)
2961                                 goto decided;
2962                 } else {
2963                         if (!param->fp_exclude_gid)
2964                                 goto decided;
2965                 }
2966         }
2967
2968         if (param->fp_check_pool) {
2969                 struct lov_user_md_v3 *lmmv3 = (void *)&param->fp_lmd->lmd_lmm;
2970
2971                 /* empty requested pool is taken as no pool search => V1 */
2972                 if (((param->fp_lmd->lmd_lmm.lmm_magic == LOV_USER_MAGIC_V1) &&
2973                      (param->fp_poolname[0] == '\0')) ||
2974                     ((param->fp_lmd->lmd_lmm.lmm_magic == LOV_USER_MAGIC_V3) &&
2975                      (strncmp(lmmv3->lmm_pool_name,
2976                               param->fp_poolname, LOV_MAXPOOLNAME) == 0)) ||
2977                     ((param->fp_lmd->lmd_lmm.lmm_magic == LOV_USER_MAGIC_V3) &&
2978                      (strcmp(param->fp_poolname, "*") == 0))) {
2979                         if (param->fp_exclude_pool)
2980                                 goto decided;
2981                 } else {
2982                         if (!param->fp_exclude_pool)
2983                                 goto decided;
2984                 }
2985         }
2986
2987         /* Check the time on mds. */
2988         decision = 1;
2989         if (param->fp_atime || param->fp_mtime || param->fp_ctime) {
2990                 int for_mds;
2991
2992                 for_mds = lustre_fs ? (S_ISREG(st->st_mode) &&
2993                                        param->fp_lmd->lmd_lmm.lmm_stripe_count)
2994                         : 0;
2995                 decision = find_time_check(st, param, for_mds);
2996                 if (decision == -1)
2997                         goto decided;
2998         }
2999
3000         /* If file still fits the request, ask ost for updated info.
3001            The regular stat is almost of the same speed as some new
3002            'glimpse-size-ioctl'. */
3003
3004         if (param->fp_check_size && S_ISREG(st->st_mode) &&
3005             param->fp_lmd->lmd_lmm.lmm_stripe_count)
3006                 decision = 0;
3007
3008         if (param->fp_check_size && S_ISDIR(st->st_mode))
3009                 decision = 0;
3010
3011         if (!decision) {
3012                 /* For regular files with the stripe the decision may have not
3013                  * been taken yet if *time or size is to be checked. */
3014                 if (param->fp_obd_index != OBD_NOT_FOUND)
3015                         print_failed_tgt(param, path, LL_STATFS_LOV);
3016
3017                 if (param->fp_mdt_index != OBD_NOT_FOUND)
3018                         print_failed_tgt(param, path, LL_STATFS_LMV);
3019
3020                 if (dir != NULL)
3021                         ret = fstat_f(dirfd(dir), st);
3022                 else if (de != NULL)
3023                         ret = fstatat_f(dirfd(parent), de->d_name, st,
3024                                         AT_SYMLINK_NOFOLLOW);
3025                 else
3026                         ret = lstat_f(path, st);
3027
3028                 if (ret) {
3029                         if (errno == ENOENT) {
3030                                 llapi_error(LLAPI_MSG_ERROR, -ENOENT,
3031                                             "warning: %s: %s does not exist",
3032                                             __func__, path);
3033                                 goto decided;
3034                         } else {
3035                                 ret = -errno;
3036                                 llapi_error(LLAPI_MSG_ERROR, ret,
3037                                             "%s: IOC_LOV_GETINFO on %s failed",
3038                                             __func__, path);
3039                                 return ret;
3040                         }
3041                 }
3042
3043                 /* Check the time on osc. */
3044                 decision = find_time_check(st, param, 0);
3045                 if (decision == -1)
3046                         goto decided;
3047         }
3048
3049         if (param->fp_check_size)
3050                 decision = find_value_cmp(st->st_size, param->fp_size,
3051                                           param->fp_size_sign,
3052                                           param->fp_exclude_size,
3053                                           param->fp_size_units, 0);
3054
3055         if (decision != -1) {
3056                 llapi_printf(LLAPI_MSG_NORMAL, "%s", path);
3057                 if (param->fp_zero_end)
3058                         llapi_printf(LLAPI_MSG_NORMAL, "%c", '\0');
3059                 else
3060                         llapi_printf(LLAPI_MSG_NORMAL, "\n");
3061         }
3062
3063 decided:
3064         /* Do not get down anymore? */
3065         if (param->fp_depth == param->fp_max_depth)
3066                 return 1;
3067
3068         param->fp_depth++;
3069
3070         return 0;
3071 }
3072
3073 static int cb_migrate_mdt_init(char *path, DIR *parent, DIR **dirp,
3074                                void *param_data, struct dirent64 *de)
3075 {
3076         struct find_param       *param = (struct find_param *)param_data;
3077         DIR                     *tmp_parent = parent;
3078         char                    raw[OBD_MAX_IOCTL_BUFFER] = {'\0'};
3079         char                    *rawbuf = raw;
3080         struct obd_ioctl_data   data = { 0 };
3081         int                     fd;
3082         int                     ret;
3083         char                    *path_copy;
3084         char                    *filename;
3085         bool                    retry = false;
3086
3087         if (parent == NULL && dirp == NULL)
3088                 return -EINVAL;
3089
3090         if (dirp != NULL)
3091                 closedir(*dirp);
3092
3093         if (parent == NULL) {
3094                 tmp_parent = opendir_parent(path);
3095                 if (tmp_parent == NULL) {
3096                         *dirp = NULL;
3097                         ret = -errno;
3098                         llapi_error(LLAPI_MSG_ERROR, ret,
3099                                     "can not open %s", path);
3100                         return ret;
3101                 }
3102         }
3103
3104         fd = dirfd(tmp_parent);
3105
3106         path_copy = strdup(path);
3107         filename = basename(path_copy);
3108         data.ioc_inlbuf1 = (char *)filename;
3109         data.ioc_inllen1 = strlen(filename) + 1;
3110         data.ioc_inlbuf2 = (char *)&param->fp_mdt_index;
3111         data.ioc_inllen2 = sizeof(param->fp_mdt_index);
3112         ret = obd_ioctl_pack(&data, &rawbuf, sizeof(raw));
3113         if (ret != 0) {
3114                 llapi_error(LLAPI_MSG_ERROR, ret,
3115                             "llapi_obd_statfs: error packing ioctl data");
3116                 goto out;
3117         }
3118
3119 migrate:
3120         ret = ioctl(fd, LL_IOC_MIGRATE, rawbuf);
3121         if (ret != 0) {
3122                 if (errno == EBUSY && !retry) {
3123                         /* because migrate may not be able to lock all involved
3124                          * objects in order, for some of them it try lock, while
3125                          * there may be conflicting COS locks and cause migrate
3126                          * fail with EBUSY, hope a sync() could cause
3127                          * transaction commit and release these COS locks. */
3128                         sync();
3129                         retry = true;
3130                         goto migrate;
3131                 }
3132                 ret = -errno;
3133                 fprintf(stderr, "%s migrate failed: %s (%d)\n",
3134                         path, strerror(-ret), ret);
3135                 goto out;
3136         } else if (param->fp_verbose & VERBOSE_DETAIL) {
3137                 fprintf(stdout, "migrate %s to MDT%d\n",
3138                         path, param->fp_mdt_index);
3139         }
3140
3141 out:
3142         if (dirp != NULL) {
3143                 /* If the directory is being migration, we need
3144                  * close the directory after migration,
3145                  * so the old directory cache will be cleanup
3146                  * on the client side, and re-open to get the
3147                  * new directory handle */
3148                 *dirp = opendir(path);
3149                 if (*dirp == NULL) {
3150                         ret = -errno;
3151                         llapi_error(LLAPI_MSG_ERROR, ret,
3152                                     "%s: Failed to open '%s'", __func__, path);
3153                 }
3154         }
3155
3156         if (parent == NULL)
3157                 closedir(tmp_parent);
3158
3159         free(path_copy);
3160
3161         return ret;
3162 }
3163
3164 int llapi_migrate_mdt(char *path, struct find_param *param)
3165 {
3166         return param_callback(path, cb_migrate_mdt_init, cb_common_fini, param);
3167 }
3168
3169 int llapi_mv(char *path, struct find_param *param)
3170 {
3171 #if LUSTRE_VERSION_CODE > OBD_OCD_VERSION(2, 9, 53, 0)
3172         static bool printed;
3173
3174         if (!printed) {
3175                 llapi_error(LLAPI_MSG_ERROR, -ESTALE,
3176                             "llapi_mv() is deprecated, use llapi_migrate_mdt()\n");
3177                 printed = true;
3178         }
3179 #endif
3180         return llapi_migrate_mdt(path, param);
3181 }
3182
3183 int llapi_find(char *path, struct find_param *param)
3184 {
3185         return param_callback(path, cb_find_init, cb_common_fini, param);
3186 }
3187
3188 /*
3189  * Get MDT number that the file/directory inode referenced
3190  * by the open fd resides on.
3191  * Return 0 and mdtidx on success, or -ve errno.
3192  */
3193 int llapi_file_fget_mdtidx(int fd, int *mdtidx)
3194 {
3195         if (ioctl(fd, LL_IOC_GET_MDTIDX, mdtidx) < 0)
3196                 return -errno;
3197         return 0;
3198 }
3199
3200 static int cb_get_mdt_index(char *path, DIR *parent, DIR **dirp, void *data,
3201                             struct dirent64 *de)
3202 {
3203         struct find_param *param = (struct find_param *)data;
3204         DIR *d = dirp == NULL ? NULL : *dirp;
3205         int ret;
3206         int mdtidx;
3207
3208         if (parent == NULL && d == NULL)
3209                 return -EINVAL;
3210
3211         if (d != NULL) {
3212                 ret = llapi_file_fget_mdtidx(dirfd(d), &mdtidx);
3213         } else /* if (parent) */ {
3214                 int fd;
3215
3216                 fd = open(path, O_RDONLY | O_NOCTTY);
3217                 if (fd > 0) {
3218                         ret = llapi_file_fget_mdtidx(fd, &mdtidx);
3219                         close(fd);
3220                 } else {
3221                         ret = -errno;
3222                 }
3223         }
3224
3225         if (ret != 0) {
3226                 if (ret == -ENODATA) {
3227                         if (!param->fp_obd_uuid)
3228                                 llapi_printf(LLAPI_MSG_NORMAL,
3229                                              "'%s' has no stripe info\n", path);
3230                         goto out;
3231                 } else if (ret == -ENOENT) {
3232                         llapi_error(LLAPI_MSG_WARN, ret,
3233                                     "warning: %s: '%s' does not exist",
3234                                     __func__, path);
3235                         goto out;
3236                 } else if (ret == -ENOTTY) {
3237                         llapi_error(LLAPI_MSG_ERROR, ret,
3238                                     "%s: '%s' not on a Lustre fs",
3239                                     __func__, path);
3240                 } else {
3241                         llapi_error(LLAPI_MSG_ERROR, ret,
3242                                     "error: %s: '%s' failed get_mdtidx",
3243                                     __func__, path);
3244                 }
3245                 return ret;
3246         }
3247
3248         if (param->fp_quiet || !(param->fp_verbose & VERBOSE_DETAIL))
3249                 llapi_printf(LLAPI_MSG_NORMAL, "%d\n", mdtidx);
3250         else
3251                 llapi_printf(LLAPI_MSG_NORMAL, "%s\nmdt_index:\t%d\n",
3252                              path, mdtidx);
3253
3254 out:
3255         /* Do not go down anymore? */
3256         if (param->fp_depth == param->fp_max_depth)
3257                 return 1;
3258
3259         param->fp_depth++;
3260
3261         return 0;
3262 }
3263
3264 static int cb_getstripe(char *path, DIR *parent, DIR **dirp, void *data,
3265                         struct dirent64 *de)
3266 {
3267         struct find_param *param = (struct find_param *)data;
3268         DIR *d = dirp == NULL ? NULL : *dirp;
3269         int ret = 0;
3270
3271         if (parent == NULL && d == NULL)
3272                 return -EINVAL;
3273
3274         if (param->fp_obd_uuid) {
3275                 param->fp_quiet = 1;
3276                 ret = setup_obd_uuid(d ? dirfd(d) : dirfd(parent), path, param);
3277                 if (ret)
3278                         return ret;
3279         }
3280
3281         if (d) {
3282                 if (param->fp_get_lmv || param->fp_get_default_lmv) {
3283                         ret = cb_get_dirstripe(path, d, param);
3284                 } else {
3285                         ret = ioctl(dirfd(d), LL_IOC_LOV_GETSTRIPE,
3286                                      (void *)&param->fp_lmd->lmd_lmm);
3287                 }
3288
3289         } else if (parent && !param->fp_get_lmv && !param->fp_get_default_lmv) {
3290                 char *fname = strrchr(path, '/');
3291                 fname = (fname == NULL ? path : fname + 1);
3292
3293                 strlcpy((char *)&param->fp_lmd->lmd_lmm, fname,
3294                         param->fp_lum_size);
3295
3296                 ret = ioctl(dirfd(parent), IOC_MDC_GETFILESTRIPE,
3297                             (void *)&param->fp_lmd->lmd_lmm);
3298         } else {
3299                 return 0;
3300         }
3301
3302         if (ret) {
3303                 if (errno == ENODATA && d != NULL) {
3304                         /* We need to "fake" the "use the default" values
3305                          * since the lmm struct is zeroed out at this point.
3306                          * The magic needs to be set in order to satisfy
3307                          * a check later on in the code path.
3308                          * The object_seq needs to be set for the "(Default)"
3309                          * prefix to be displayed. */
3310                         if (param->fp_get_default_lmv) {
3311                                 struct lmv_user_md *lum = param->fp_lmv_md;
3312
3313                                 lum->lum_magic = LMV_USER_MAGIC;
3314                                 lum->lum_stripe_count = 0;
3315                                 lum->lum_stripe_offset = -1;
3316                                 goto dump;
3317                         } else if (param->fp_get_lmv) {
3318                                 struct lmv_user_md *lum = param->fp_lmv_md;
3319                                 int mdtidx;
3320
3321                                 ret = llapi_file_fget_mdtidx(dirfd(d), &mdtidx);
3322                                 if (ret != 0)
3323                                         goto err_out;
3324                                 lum->lum_magic = LMV_MAGIC_V1;
3325                                 lum->lum_stripe_count = 0;
3326                                 lum->lum_stripe_offset = mdtidx;
3327                                 goto dump;
3328                         } else {
3329                                 struct lov_user_md *lmm =
3330                                         &param->fp_lmd->lmd_lmm;
3331
3332                                 lmm->lmm_magic = LOV_USER_MAGIC_V1;
3333                                 if (!param->fp_raw)
3334                                         ostid_set_seq(&lmm->lmm_oi,
3335                                                       FID_SEQ_LOV_DEFAULT);
3336                                 lmm->lmm_stripe_count = 0;
3337                                 lmm->lmm_stripe_size = 0;
3338                                 lmm->lmm_stripe_offset = -1;
3339                                 goto dump;
3340                         }
3341                 } else if (errno == ENODATA && parent != NULL) {
3342                         if (!param->fp_obd_uuid && !param->fp_mdt_uuid)
3343                                 llapi_printf(LLAPI_MSG_NORMAL,
3344                                              "%s has no stripe info\n", path);
3345                         goto out;
3346                 } else if (errno == ENOENT) {
3347                         llapi_error(LLAPI_MSG_WARN, -ENOENT,
3348                                     "warning: %s: %s does not exist",
3349                                     __func__, path);
3350                         goto out;
3351                 } else if (errno == ENOTTY) {
3352                         ret = -errno;
3353                         llapi_error(LLAPI_MSG_ERROR, ret,
3354                                     "%s: '%s' not on a Lustre fs?",
3355                                     __func__, path);
3356                 } else {
3357                         ret = -errno;
3358 err_out:
3359                         llapi_error(LLAPI_MSG_ERROR, ret,
3360                                     "error: %s: %s failed for %s",
3361                                      __func__, d ? "LL_IOC_LOV_GETSTRIPE" :
3362                                     "IOC_MDC_GETFILESTRIPE", path);
3363                 }
3364
3365                 return ret;
3366         }
3367
3368 dump:
3369         if (!(param->fp_verbose & VERBOSE_MDTINDEX))
3370                 llapi_lov_dump_user_lmm(param, path, d ? 1 : 0);
3371
3372 out:
3373         /* Do not get down anymore? */
3374         if (param->fp_depth == param->fp_max_depth)
3375                 return 1;
3376
3377         param->fp_depth++;
3378
3379         return 0;
3380 }
3381
3382 int llapi_getstripe(char *path, struct find_param *param)
3383 {
3384         return param_callback(path, (param->fp_verbose & VERBOSE_MDTINDEX) ?
3385                               cb_get_mdt_index : cb_getstripe,
3386                               cb_common_fini, param);
3387 }
3388
3389 int llapi_obd_fstatfs(int fd, __u32 type, __u32 index,
3390                       struct obd_statfs *stat_buf, struct obd_uuid *uuid_buf)
3391 {
3392         char raw[OBD_MAX_IOCTL_BUFFER] = {'\0'};
3393         char *rawbuf = raw;
3394         struct obd_ioctl_data data = { 0 };
3395         int rc = 0;
3396
3397         data.ioc_inlbuf1 = (char *)&type;
3398         data.ioc_inllen1 = sizeof(__u32);
3399         data.ioc_inlbuf2 = (char *)&index;
3400         data.ioc_inllen2 = sizeof(__u32);
3401         data.ioc_pbuf1 = (char *)stat_buf;
3402         data.ioc_plen1 = sizeof(struct obd_statfs);
3403         data.ioc_pbuf2 = (char *)uuid_buf;
3404         data.ioc_plen2 = sizeof(struct obd_uuid);
3405
3406         rc = obd_ioctl_pack(&data, &rawbuf, sizeof(raw));
3407         if (rc != 0) {
3408                 llapi_error(LLAPI_MSG_ERROR, rc,
3409                             "llapi_obd_statfs: error packing ioctl data");
3410                 return rc;
3411         }
3412
3413         rc = ioctl(fd, IOC_OBD_STATFS, (void *)rawbuf);
3414
3415         return rc < 0 ? -errno : 0;
3416 }
3417
3418 int llapi_obd_statfs(char *path, __u32 type, __u32 index,
3419                      struct obd_statfs *stat_buf, struct obd_uuid *uuid_buf)
3420 {
3421         int fd;
3422         int rc;
3423
3424         fd = open(path, O_RDONLY);
3425         if (fd < 0) {
3426                 rc = -errno;
3427                 llapi_error(LLAPI_MSG_ERROR, rc, "error: %s: opening '%s'",
3428                             __func__, path);
3429                 /* If we can't even open a file on the filesystem (e.g. with
3430                  * -ESHUTDOWN), force caller to exit or it will loop forever. */
3431                 return -ENODEV;
3432         }
3433
3434         rc = llapi_obd_fstatfs(fd, type, index, stat_buf, uuid_buf);
3435
3436         close(fd);
3437
3438         return rc;
3439 }
3440
3441 #define MAX_STRING_SIZE 128
3442
3443 int llapi_ping(char *obd_type, char *obd_name)
3444 {
3445         glob_t path;
3446         char buf[1];
3447         int rc, fd;
3448
3449         rc = cfs_get_param_paths(&path, "%s/%s/ping",
3450                                 obd_type, obd_name);
3451         if (rc != 0)
3452                 return -errno;
3453
3454         fd = open(path.gl_pathv[0], O_WRONLY);
3455         if (fd < 0) {
3456                 rc = -errno;
3457                 llapi_error(LLAPI_MSG_ERROR, rc, "error opening %s",
3458                             path.gl_pathv[0]);
3459                 goto failed;
3460         }
3461
3462         /* The purpose is to send a byte as a ping, whatever this byte is. */
3463         /* coverity[uninit_use_in_call] */
3464         rc = write(fd, buf, 1);
3465         if (rc < 0)
3466                 rc = -errno;
3467         close(fd);
3468
3469         if (rc == 1)
3470                 rc = 0;
3471 failed:
3472         cfs_free_param_data(&path);
3473         return rc;
3474 }
3475
3476 int llapi_target_iterate(int type_num, char **obd_type,
3477                          void *args, llapi_cb_t cb)
3478 {
3479         char buf[MAX_STRING_SIZE];
3480         int i, rc = 0;
3481         glob_t param;
3482         FILE *fp;
3483
3484         rc = cfs_get_param_paths(&param, "devices");
3485         if (rc != 0)
3486                 return -ENOENT;
3487
3488         fp = fopen(param.gl_pathv[0], "r");
3489         if (fp == NULL) {
3490                 rc = -errno;
3491                 llapi_error(LLAPI_MSG_ERROR, rc, "error: opening '%s'",
3492                             param.gl_pathv[0]);
3493                 goto free_path;
3494         }
3495
3496         while (fgets(buf, sizeof(buf), fp) != NULL) {
3497                 char *obd_type_name = NULL;
3498                 char *obd_name = NULL;
3499                 char *obd_uuid = NULL;
3500                 char *bufp = buf;
3501                 struct obd_statfs osfs_buffer;
3502
3503                 while(bufp[0] == ' ')
3504                         ++bufp;
3505
3506                 for(i = 0; i < 3; i++) {
3507                         obd_type_name = strsep(&bufp, " ");
3508                 }
3509                 obd_name = strsep(&bufp, " ");
3510                 obd_uuid = strsep(&bufp, " ");
3511
3512                 memset(&osfs_buffer, 0, sizeof (osfs_buffer));
3513
3514                 for (i = 0; i < type_num; i++) {
3515                         if (strcmp(obd_type_name, obd_type[i]) != 0)
3516                                 continue;
3517
3518                         cb(obd_type_name, obd_name, obd_uuid, args);
3519                 }
3520         }
3521         fclose(fp);
3522 free_path:
3523         cfs_free_param_data(&param);
3524         return 0;
3525 }
3526
3527 static void do_target_check(char *obd_type_name, char *obd_name,
3528                             char *obd_uuid, void *args)
3529 {
3530         int rc;
3531
3532         rc = llapi_ping(obd_type_name, obd_name);
3533         if (rc == ENOTCONN) {
3534                 llapi_printf(LLAPI_MSG_NORMAL, "%s inactive.\n", obd_name);
3535         } else if (rc) {
3536                 llapi_error(LLAPI_MSG_ERROR, rc, "error: check '%s'", obd_name);
3537         } else {
3538                 llapi_printf(LLAPI_MSG_NORMAL, "%s active.\n", obd_name);
3539         }
3540 }
3541
3542 int llapi_target_check(int type_num, char **obd_type, char *dir)
3543 {
3544         return llapi_target_iterate(type_num, obd_type, NULL, do_target_check);
3545 }
3546
3547 #undef MAX_STRING_SIZE
3548
3549 /* Is this a lustre fs? */
3550 int llapi_is_lustre_mnttype(const char *type)
3551 {
3552         return (strcmp(type, "lustre") == 0 || strcmp(type,"lustre_lite") == 0);
3553 }
3554
3555 /* Is this a lustre client fs? */
3556 int llapi_is_lustre_mnt(struct mntent *mnt)
3557 {
3558         return (llapi_is_lustre_mnttype(mnt->mnt_type) &&
3559                 strstr(mnt->mnt_fsname, ":/") != NULL);
3560 }
3561
3562 int llapi_quotactl(char *mnt, struct if_quotactl *qctl)
3563 {
3564         char fsname[PATH_MAX + 1];
3565         int root;
3566         int rc;
3567
3568         rc = llapi_search_fsname(mnt, fsname);
3569         if (rc) {
3570                 llapi_err_noerrno(LLAPI_MSG_ERROR,
3571                                   "'%s' isn't on Lustre filesystem", mnt);
3572                 return rc;
3573         }
3574
3575         root = open(mnt, O_RDONLY | O_DIRECTORY);
3576         if (root < 0) {
3577                 rc = -errno;
3578                 llapi_error(LLAPI_MSG_ERROR, rc, "open %s failed", mnt);
3579                 return rc;
3580         }
3581
3582         rc = ioctl(root, OBD_IOC_QUOTACTL, qctl);
3583         if (rc < 0)
3584                 rc = -errno;
3585
3586         close(root);
3587         return rc;
3588 }
3589
3590 /* Print mdtname 'name' into 'buf' using 'format'.  Add -MDT0000 if needed.
3591  * format must have %s%s, buf must be > 16
3592  * Eg: if name = "lustre-MDT0000", "lustre", or "lustre-MDT0000_UUID"
3593  *     then buf = "lustre-MDT0000"
3594  */
3595 static int get_mdtname(char *name, char *format, char *buf)
3596 {
3597         char suffix[]="-MDT0000";
3598         int len = strlen(name);
3599
3600         if ((len > 5) && (strncmp(name + len - 5, "_UUID", 5) == 0)) {
3601                 name[len - 5] = '\0';
3602                 len -= 5;
3603         }
3604
3605         if (len > 8) {
3606                 if ((len <= 16) && strncmp(name + len - 8, "-MDT", 4) == 0) {
3607                         suffix[0] = '\0';
3608                 } else {
3609                         /* Not enough room to add suffix */
3610                         llapi_err_noerrno(LLAPI_MSG_ERROR,
3611                                           "MDT name too long |%s|", name);
3612                         return -EINVAL;
3613                 }
3614         }
3615
3616         return sprintf(buf, format, name, suffix);
3617 }
3618
3619 /** ioctl on filsystem root, with mdtindex sent as data
3620  * \param mdtname path, fsname, or mdtname (lutre-MDT0004)
3621  * \param mdtidxp pointer to integer within data to be filled in with the
3622  *    mdt index (0 if no mdt is specified).  NULL won't be filled.
3623  */
3624 int root_ioctl(const char *mdtname, int opc, void *data, int *mdtidxp,
3625                int want_error)
3626 {
3627         char fsname[20];
3628         char *ptr;
3629         int fd, rc;
3630         long index;
3631
3632         /* Take path, fsname, or MDTname.  Assume MDT0000 in the former cases.
3633          Open root and parse mdt index. */
3634         if (mdtname[0] == '/') {
3635                 index = 0;
3636                 rc = get_root_path(WANT_FD | want_error, NULL, &fd,
3637                                    (char *)mdtname, -1);
3638         } else {
3639                 if (get_mdtname((char *)mdtname, "%s%s", fsname) < 0)
3640                         return -EINVAL;
3641                 ptr = fsname + strlen(fsname) - 8;
3642                 *ptr = '\0';
3643                 index = strtol(ptr + 4, NULL, 10);
3644                 rc = get_root_path(WANT_FD | want_error, fsname, &fd, NULL, -1);
3645         }
3646         if (rc < 0) {
3647                 if (want_error)
3648                         llapi_err_noerrno(LLAPI_MSG_ERROR,
3649                                           "Can't open %s: %d\n", mdtname, rc);
3650                 return rc;
3651         }
3652
3653         if (mdtidxp)
3654                 *mdtidxp = index;
3655
3656         rc = ioctl(fd, opc, data);
3657         if (rc == -1)
3658                 rc = -errno;
3659         else
3660                 rc = 0;
3661         close(fd);
3662         return rc;
3663 }
3664
3665 /****** Changelog API ********/
3666
3667 static int changelog_ioctl(const char *mdtname, int opc, int id,
3668                            long long recno, int flags)
3669 {
3670         struct ioc_changelog data;
3671         int *idx;
3672
3673         data.icc_id = id;
3674         data.icc_recno = recno;
3675         data.icc_flags = flags;
3676         idx = (int *)(&data.icc_mdtindex);
3677
3678         return root_ioctl(mdtname, opc, &data, idx, WANT_ERROR);
3679 }
3680
3681 #define CHANGELOG_PRIV_MAGIC 0xCA8E1080
3682 struct changelog_private {
3683         int                             magic;
3684         enum changelog_send_flag        flags;
3685         struct lustre_kernelcomm        kuc;
3686 };
3687
3688 /** Start reading from a changelog
3689  * @param priv Opaque private control structure
3690  * @param flags Start flags (e.g. CHANGELOG_FLAG_BLOCK)
3691  * @param device Report changes recorded on this MDT
3692  * @param startrec Report changes beginning with this record number
3693  * (just call llapi_changelog_fini when done; don't need an endrec)
3694  */
3695 int llapi_changelog_start(void **priv, enum changelog_send_flag flags,
3696                           const char *device, long long startrec)
3697 {
3698         struct changelog_private        *cp;
3699         static bool                      warned;
3700         int                              rc;
3701
3702         /* Set up the receiver control struct */
3703         cp = calloc(1, sizeof(*cp));
3704         if (cp == NULL)
3705                 return -ENOMEM;
3706
3707         cp->magic = CHANGELOG_PRIV_MAGIC;
3708         cp->flags = flags;
3709
3710         /* Set up the receiver */
3711         rc = libcfs_ukuc_start(&cp->kuc, 0 /* no group registration */, 0);
3712         if (rc < 0)
3713                 goto out_free;
3714
3715         *priv = cp;
3716
3717         /* CHANGELOG_FLAG_JOBID will eventually become mandatory. Display a
3718          * warning if it's missing. */
3719         if (!(flags & CHANGELOG_FLAG_JOBID) && !warned) {
3720                 llapi_err_noerrno(LLAPI_MSG_WARN, "warning: %s() called "
3721                                   "w/o CHANGELOG_FLAG_JOBID", __func__);
3722                 warned = true;
3723         }
3724
3725         /* Tell the kernel to start sending */
3726         rc = changelog_ioctl(device, OBD_IOC_CHANGELOG_SEND, cp->kuc.lk_wfd,
3727                              startrec, flags);
3728         /* Only the kernel reference keeps the write side open */
3729         close(cp->kuc.lk_wfd);
3730         cp->kuc.lk_wfd = LK_NOFD;
3731         if (rc < 0) {
3732                 /* frees and clears priv */
3733                 llapi_changelog_fini(priv);
3734                 return rc;
3735         }
3736
3737         return 0;
3738
3739 out_free:
3740         free(cp);
3741         return rc;
3742 }
3743
3744 /** Finish reading from a changelog */
3745 int llapi_changelog_fini(void **priv)
3746 {
3747         struct changelog_private *cp = (struct changelog_private *)*priv;
3748
3749         if (!cp || (cp->magic != CHANGELOG_PRIV_MAGIC))
3750                 return -EINVAL;
3751
3752         libcfs_ukuc_stop(&cp->kuc);
3753         free(cp);
3754         *priv = NULL;
3755         return 0;
3756 }
3757
3758 /**
3759  * Convert all records to a same format according to the caller's wishes.
3760  * Default is CLF_VERSION | CLF_RENAME.
3761  * Add CLF_JOBID if explicitely requested.
3762  *
3763  * \param rec  The record to remap. It is expected to be big enough to
3764  *             properly handle the final format.
3765  * \return 1 if anything changed. 0 otherwise.
3766  */
3767 /** Read the next changelog entry
3768  * @param priv Opaque private control structure
3769  * @param rech Changelog record handle; record will be allocated here
3770  * @return 0 valid message received; rec is set
3771  *         <0 error code
3772  *         1 EOF
3773  */
3774 #define DEFAULT_RECORD_FMT      (CLF_VERSION | CLF_RENAME)
3775 int llapi_changelog_recv(void *priv, struct changelog_rec **rech)
3776 {
3777         struct changelog_private        *cp = (struct changelog_private *)priv;
3778         struct kuc_hdr                  *kuch;
3779         enum changelog_rec_flags         rec_fmt = DEFAULT_RECORD_FMT;
3780         int                              rc = 0;
3781
3782         if (!cp || (cp->magic != CHANGELOG_PRIV_MAGIC))
3783                 return -EINVAL;
3784         if (rech == NULL)
3785                 return -EINVAL;
3786         kuch = malloc(KUC_CHANGELOG_MSG_MAXSIZE);
3787         if (kuch == NULL)
3788                 return -ENOMEM;
3789
3790         if (cp->flags & CHANGELOG_FLAG_JOBID)
3791                 rec_fmt |= CLF_JOBID;
3792
3793 repeat:
3794         rc = libcfs_ukuc_msg_get(&cp->kuc, (char *)kuch,
3795                                  KUC_CHANGELOG_MSG_MAXSIZE,
3796                                  KUC_TRANSPORT_CHANGELOG);
3797         if (rc < 0)
3798                 goto out_free;
3799
3800         if ((kuch->kuc_transport != KUC_TRANSPORT_CHANGELOG) ||
3801             ((kuch->kuc_msgtype != CL_RECORD) &&
3802              (kuch->kuc_msgtype != CL_EOF))) {
3803                 llapi_err_noerrno(LLAPI_MSG_ERROR,
3804                                   "Unknown changelog message type %d:%d\n",
3805                                   kuch->kuc_transport, kuch->kuc_msgtype);
3806                 rc = -EPROTO;
3807                 goto out_free;
3808         }
3809
3810         if (kuch->kuc_msgtype == CL_EOF) {
3811                 if (cp->flags & CHANGELOG_FLAG_FOLLOW) {
3812                         /* Ignore EOFs */
3813                         goto repeat;
3814                 } else {
3815                         rc = 1;
3816                         goto out_free;
3817                 }
3818         }
3819
3820         /* Our message is a changelog_rec.  Use pointer math to skip
3821          * kuch_hdr and point directly to the message payload. */
3822         *rech = (struct changelog_rec *)(kuch + 1);
3823         changelog_remap_rec(*rech, rec_fmt);
3824
3825         return 0;
3826
3827 out_free:
3828         *rech = NULL;
3829         free(kuch);
3830         return rc;
3831 }
3832
3833 /** Release the changelog record when done with it. */
3834 int llapi_changelog_free(struct changelog_rec **rech)
3835 {
3836         if (*rech) {
3837                 /* We allocated memory starting at the kuc_hdr, but passed
3838                  * the consumer a pointer to the payload.
3839                  * Use pointer math to get back to the header.
3840                  */
3841                 struct kuc_hdr *kuch = (struct kuc_hdr *)*rech - 1;
3842                 free(kuch);
3843         }
3844         *rech = NULL;
3845         return 0;
3846 }
3847
3848 int llapi_changelog_clear(const char *mdtname, const char *idstr,
3849                           long long endrec)
3850 {
3851         long id;
3852
3853         if (endrec < 0) {
3854                 llapi_err_noerrno(LLAPI_MSG_ERROR,
3855                                   "can't purge negative records\n");
3856                 return -EINVAL;
3857         }
3858
3859         id = strtol(idstr + strlen(CHANGELOG_USER_PREFIX), NULL, 10);
3860         if ((id == 0) || (strncmp(idstr, CHANGELOG_USER_PREFIX,
3861                                   strlen(CHANGELOG_USER_PREFIX)) != 0)) {
3862                 llapi_err_noerrno(LLAPI_MSG_ERROR,
3863                                   "expecting id of the form '"
3864                                   CHANGELOG_USER_PREFIX
3865                                   "<num>'; got '%s'\n", idstr);
3866                 return -EINVAL;
3867         }
3868
3869         return changelog_ioctl(mdtname, OBD_IOC_CHANGELOG_CLEAR, id, endrec, 0);
3870 }
3871
3872 int llapi_fid2path(const char *device, const char *fidstr, char *buf,
3873                    int buflen, long long *recno, int *linkno)
3874 {
3875         const char *fidstr_orig = fidstr;
3876         struct lu_fid fid;
3877         struct getinfo_fid2path *gf;
3878         int rc;
3879
3880         while (*fidstr == '[')
3881                 fidstr++;
3882
3883         sscanf(fidstr, SFID, RFID(&fid));
3884         if (!fid_is_sane(&fid)) {
3885                 llapi_err_noerrno(LLAPI_MSG_ERROR,
3886                                   "bad FID format '%s', should be [seq:oid:ver]"
3887                                   " (e.g. "DFID")\n", fidstr_orig,
3888                                   (unsigned long long)FID_SEQ_NORMAL, 2, 0);
3889                 return -EINVAL;
3890         }
3891
3892         gf = malloc(sizeof(*gf) + buflen);
3893         if (gf == NULL)
3894                 return -ENOMEM;
3895
3896         gf->gf_fid = fid;
3897         gf->gf_recno = *recno;
3898         gf->gf_linkno = *linkno;
3899         gf->gf_pathlen = buflen;
3900
3901         /* Take path or fsname */
3902         rc = root_ioctl(device, OBD_IOC_FID2PATH, gf, NULL, 0);
3903         if (rc)
3904                 goto out_free;
3905
3906         memcpy(buf, gf->gf_u.gf_path, gf->gf_pathlen);
3907         if (buf[0] == '\0') { /* ROOT path */
3908                 buf[0] = '/';
3909                 buf[1] = '\0';
3910         }
3911         *recno = gf->gf_recno;
3912         *linkno = gf->gf_linkno;
3913
3914 out_free:
3915         free(gf);
3916         return rc;
3917 }
3918
3919 static int fid_from_lma(const char *path, const int fd, lustre_fid *fid)
3920 {
3921         char                     buf[512];
3922         struct lustre_mdt_attrs *lma;
3923         int                      rc;
3924
3925         if (path == NULL)
3926                 rc = fgetxattr(fd, XATTR_NAME_LMA, buf, sizeof(buf));
3927         else
3928                 rc = lgetxattr(path, XATTR_NAME_LMA, buf, sizeof(buf));
3929         if (rc < 0)
3930                 return -errno;
3931         lma = (struct lustre_mdt_attrs *)buf;
3932         fid_le_to_cpu(fid, &lma->lma_self_fid);
3933         return 0;
3934 }
3935
3936 int llapi_get_mdt_index_by_fid(int fd, const lustre_fid *fid,
3937                                int *mdt_index)
3938 {
3939         int     rc;
3940
3941         rc = ioctl(fd, LL_IOC_FID2MDTIDX, fid);
3942         if (rc < 0)
3943                 return -errno;
3944
3945         *mdt_index = rc;
3946
3947         return rc;
3948 }
3949
3950 int llapi_fd2fid(const int fd, lustre_fid *fid)
3951 {
3952         int rc;
3953
3954         memset(fid, 0, sizeof(*fid));
3955
3956         rc = ioctl(fd, LL_IOC_PATH2FID, fid) < 0 ? -errno : 0;
3957         if (rc == -EINVAL || rc == -ENOTTY)
3958                 rc = fid_from_lma(NULL, fd, fid);
3959
3960         return rc;
3961 }
3962
3963 int llapi_path2fid(const char *path, lustre_fid *fid)
3964 {
3965         int fd, rc;
3966
3967         memset(fid, 0, sizeof(*fid));
3968         fd = open(path, O_RDONLY | O_NONBLOCK | O_NOFOLLOW);
3969         if (fd < 0) {
3970                 if (errno == ELOOP || errno == ENXIO)
3971                         return fid_from_lma(path, -1, fid);
3972                 return -errno;
3973         }
3974
3975         rc = llapi_fd2fid(fd, fid);
3976         if (rc == -EINVAL || rc == -ENOTTY)
3977                 rc = fid_from_lma(path, -1, fid);
3978
3979         close(fd);
3980         return rc;
3981 }
3982
3983 int llapi_fd2parent(int fd, unsigned int linkno, lustre_fid *parent_fid,
3984                     char *name, size_t name_size)
3985 {
3986         struct getparent        *gp;
3987         int                      rc;
3988
3989         gp = malloc(sizeof(*gp) + name_size);
3990         if (gp == NULL)
3991                 return -ENOMEM;
3992
3993         gp->gp_linkno = linkno;
3994         gp->gp_name_size = name_size;
3995
3996         rc = ioctl(fd, LL_IOC_GETPARENT, gp);
3997         if (rc < 0) {
3998                 rc = -errno;
3999                 goto err_free;
4000         }
4001
4002         *parent_fid = gp->gp_fid;
4003
4004         strncpy(name, gp->gp_name, name_size);
4005         name[name_size - 1] = '\0';
4006
4007 err_free:
4008         free(gp);
4009         return rc;
4010 }
4011
4012 int llapi_path2parent(const char *path, unsigned int linkno,
4013                       lustre_fid *parent_fid, char *name, size_t name_size)
4014 {
4015         int     fd;
4016         int     rc;
4017
4018         fd = open(path, O_RDONLY | O_NONBLOCK | O_NOFOLLOW);
4019         if (fd < 0)
4020                 return -errno;
4021
4022         rc = llapi_fd2parent(fd, linkno, parent_fid, name, name_size);
4023         close(fd);
4024         return rc;
4025 }
4026
4027 int llapi_get_connect_flags(const char *mnt, __u64 *flags)
4028 {
4029         int root;
4030         int rc;
4031
4032         root = open(mnt, O_RDONLY | O_DIRECTORY);
4033         if (root < 0) {
4034                 rc = -errno;
4035                 llapi_error(LLAPI_MSG_ERROR, rc, "open %s failed", mnt);
4036                 return rc;
4037         }
4038
4039         rc = ioctl(root, LL_IOC_GET_CONNECT_FLAGS, flags);
4040         if (rc < 0) {
4041                 rc = -errno;
4042                 llapi_error(LLAPI_MSG_ERROR, rc,
4043                         "ioctl on %s for getting connect flags failed", mnt);
4044         }
4045         close(root);
4046         return rc;
4047 }
4048
4049 /**
4050  * Get a 64-bit value representing the version of file data pointed by fd.
4051  *
4052  * Each write or truncate, flushed on OST, will change this value. You can use
4053  * this value to verify if file data was modified. This only checks the file
4054  * data, not metadata.
4055  *
4056  * \param  flags  0: no flush pages, usually used it the process has already
4057  *                  taken locks;
4058  *                LL_DV_RD_FLUSH: OSTs will take LCK_PR to flush dirty pages
4059  *                  from clients;
4060  *                LL_DV_WR_FLUSH: OSTs will take LCK_PW to flush all caching
4061  *                  pages from clients.
4062  *
4063  * \retval 0 on success.
4064  * \retval -errno on error.
4065  */
4066 int llapi_get_data_version(int fd, __u64 *data_version, __u64 flags)
4067 {
4068         int rc;
4069         struct ioc_data_version idv;
4070
4071         idv.idv_flags = flags;
4072
4073         rc = ioctl(fd, LL_IOC_DATA_VERSION, &idv);
4074         if (rc)
4075                 rc = -errno;
4076         else
4077                 *data_version = idv.idv_version;
4078
4079         return rc;
4080 }
4081
4082 /*
4083  * Create a file without any name open it for read/write
4084  *
4085  * - file is created as if it were a standard file in the given \a directory
4086  * - file does not appear in \a directory and mtime does not change because
4087  *   the filename is handled specially by the Lustre MDS.
4088  * - file is removed at final close
4089  * - file modes are rw------- since it doesn't make sense to have a read-only
4090  *   or write-only file that cannot be opened again.
4091  * - if user wants another mode it must use fchmod() on the open file, no
4092  *   security problems arise because it cannot be opened by another process.
4093  *
4094  * \param[in]   directory       directory from which to inherit layout/MDT idx
4095  * \param[in]   idx             MDT index on which the file is created,
4096  *                              \a idx == -1 means no specific MDT is requested
4097  * \param[in]   open_flags      standard open(2) flags
4098  *
4099  * \retval      0 on success.
4100  * \retval      -errno on error.
4101  */
4102 int llapi_create_volatile_idx(char *directory, int idx, int open_flags)
4103 {
4104         char    file_path[PATH_MAX];
4105         char    filename[PATH_MAX];
4106         int     saved_errno = errno;
4107         int     fd;
4108         int     rnumber;
4109         int     rc;
4110
4111         do {
4112                 rnumber = random();
4113                 if (idx == -1)
4114                         snprintf(filename, sizeof(filename),
4115                                  LUSTRE_VOLATILE_HDR"::%.4X", rnumber);
4116                 else
4117                         snprintf(filename, sizeof(filename),
4118                                  LUSTRE_VOLATILE_HDR":%.4X:%.4X", idx, rnumber);
4119
4120                 rc = snprintf(file_path, sizeof(file_path),
4121                               "%s/%s", directory, filename);
4122                 if (rc >= sizeof(file_path))
4123                         return -E2BIG;
4124
4125                 fd = open(file_path,
4126                           O_RDWR | O_CREAT | O_EXCL | O_NOFOLLOW | open_flags,
4127                           S_IRUSR | S_IWUSR);
4128         } while (fd < 0 && errno == EEXIST);
4129
4130         if (fd < 0) {
4131                 llapi_error(LLAPI_MSG_ERROR, errno,
4132                             "Cannot create volatile file '%s' in '%s'",
4133                             filename + LUSTRE_VOLATILE_HDR_LEN,
4134                             directory);
4135                 return -errno;
4136         }
4137
4138         /* Unlink file in case this wasn't a Lustre filesystem and the
4139          * magic volatile filename wasn't handled as intended. The
4140          * effect is the same. If volatile open was supported then we
4141          * expect unlink() to return -ENOENT. */
4142         (void)unlink(file_path);
4143
4144         /* Since we are returning successfully we restore errno (and
4145          * mask out possible EEXIST from open() and ENOENT from
4146          * unlink(). */
4147         errno = saved_errno;
4148
4149         return fd;
4150 }
4151
4152 /**
4153  * Swap the layouts between 2 file descriptors
4154  * the 2 files must be open for writing
4155  * first fd received the ioctl, second fd is passed as arg
4156  * this is assymetric but avoid use of root path for ioctl
4157  */
4158 int llapi_fswap_layouts_grouplock(int fd1, int fd2, __u64 dv1, __u64 dv2,
4159                                   int gid, __u64 flags)
4160 {
4161         struct lustre_swap_layouts      lsl;
4162         struct stat                     st1;
4163         struct stat                     st2;
4164         int                             rc;
4165
4166         if (flags & (SWAP_LAYOUTS_KEEP_ATIME | SWAP_LAYOUTS_KEEP_MTIME)) {
4167                 rc = fstat(fd1, &st1);
4168                 if (rc < 0)
4169                         return -errno;
4170
4171                 rc = fstat(fd2, &st2);
4172                 if (rc < 0)
4173                         return -errno;
4174         }
4175         lsl.sl_fd = fd2;
4176         lsl.sl_flags = flags;
4177         lsl.sl_gid = gid;
4178         lsl.sl_dv1 = dv1;
4179         lsl.sl_dv2 = dv2;
4180         rc = ioctl(fd1, LL_IOC_LOV_SWAP_LAYOUTS, &lsl);
4181         if (rc < 0)
4182                 return -errno;
4183
4184         if (flags & (SWAP_LAYOUTS_KEEP_ATIME | SWAP_LAYOUTS_KEEP_MTIME)) {
4185                 struct timeval  tv1[2];
4186                 struct timeval  tv2[2];
4187
4188                 memset(tv1, 0, sizeof(tv1));
4189                 memset(tv2, 0, sizeof(tv2));
4190
4191                 if (flags & SWAP_LAYOUTS_KEEP_ATIME) {
4192                         tv1[0].tv_sec = st1.st_atime;
4193                         tv2[0].tv_sec = st2.st_atime;
4194                 } else {
4195                         tv1[0].tv_sec = st2.st_atime;
4196                         tv2[0].tv_sec = st1.st_atime;
4197                 }
4198
4199                 if (flags & SWAP_LAYOUTS_KEEP_MTIME) {
4200                         tv1[1].tv_sec = st1.st_mtime;
4201                         tv2[1].tv_sec = st2.st_mtime;
4202                 } else {
4203                         tv1[1].tv_sec = st2.st_mtime;
4204                         tv2[1].tv_sec = st1.st_mtime;
4205                 }
4206
4207                 rc = futimes(fd1, tv1);
4208                 if (rc < 0)
4209                         return -errno;
4210
4211                 rc = futimes(fd2, tv2);
4212                 if (rc < 0)
4213                         return -errno;
4214         }
4215
4216         return 0;
4217 }
4218
4219 int llapi_fswap_layouts(int fd1, int fd2, __u64 dv1, __u64 dv2, __u64 flags)
4220 {
4221         int     rc;
4222         int     grp_id;
4223
4224         do
4225                 grp_id = random();
4226         while (grp_id == 0);
4227
4228         rc = llapi_fswap_layouts_grouplock(fd1, fd2, dv1, dv2, grp_id, flags);
4229         if (rc < 0)
4230                 return rc;
4231
4232         return 0;
4233 }
4234
4235 /**
4236  * Swap the layouts between 2 files
4237  * the 2 files are open in write
4238  */
4239 int llapi_swap_layouts(const char *path1, const char *path2,
4240                        __u64 dv1, __u64 dv2, __u64 flags)
4241 {
4242         int     fd1, fd2, rc;
4243
4244         fd1 = open(path1, O_WRONLY | O_LOV_DELAY_CREATE);
4245         if (fd1 < 0) {
4246                 rc = -errno;
4247                 llapi_error(LLAPI_MSG_ERROR, rc,
4248                             "error: cannot open '%s' for write", path1);
4249                 goto out;
4250         }
4251
4252         fd2 = open(path2, O_WRONLY | O_LOV_DELAY_CREATE);
4253         if (fd2 < 0) {
4254                 rc = -errno;
4255                 llapi_error(LLAPI_MSG_ERROR, rc,
4256                             "error: cannot open '%s' for write", path2);
4257                 goto out_close;
4258         }
4259
4260         rc = llapi_fswap_layouts(fd1, fd2, dv1, dv2, flags);
4261         if (rc < 0)
4262                 llapi_error(LLAPI_MSG_ERROR, rc,
4263                             "error: cannot swap layout between '%s' and '%s'",
4264                             path1, path2);
4265
4266         close(fd2);
4267 out_close:
4268         close(fd1);
4269 out:
4270         return rc;
4271 }
4272
4273 /**
4274  * Attempt to open a file with Lustre file identifier \a fid
4275  * and return an open file descriptor.
4276  *
4277  * \param[in] lustre_dir        path within Lustre filesystem containing \a fid
4278  * \param[in] fid               Lustre file identifier of file to open
4279  * \param[in] flags             open() flags
4280  *
4281  * \retval                      non-negative file descriptor on successful open
4282  * \retval                      -1 if an error occurred
4283  */
4284 int llapi_open_by_fid(const char *lustre_dir, const lustre_fid *fid, int flags)
4285 {
4286         char mntdir[PATH_MAX];
4287         char path[PATH_MAX];
4288         int rc;
4289
4290         rc = llapi_search_mounts(lustre_dir, 0, mntdir, NULL);
4291         if (rc != 0)
4292                 return -1;
4293
4294         snprintf(path, sizeof(path), "%s/.lustre/fid/"DFID, mntdir, PFID(fid));
4295         return open(path, flags);
4296 }
4297
4298 /**
4299  * Take group lock.
4300  *
4301  * \param fd   File to lock.
4302  * \param gid  Group Identifier.
4303  *
4304  * \retval 0 on success.
4305  * \retval -errno on failure.
4306  */
4307 int llapi_group_lock(int fd, int gid)
4308 {
4309         int rc;
4310
4311         rc = ioctl(fd, LL_IOC_GROUP_LOCK, gid);
4312         if (rc < 0) {
4313                 rc = -errno;
4314                 llapi_error(LLAPI_MSG_ERROR, rc, "cannot get group lock");
4315         }
4316         return rc;
4317 }
4318
4319 /**
4320  * Put group lock.
4321  *
4322  * \param fd   File to unlock.
4323  * \param gid  Group Identifier.
4324  *
4325  * \retval 0 on success.
4326  * \retval -errno on failure.
4327  */
4328 int llapi_group_unlock(int fd, int gid)
4329 {
4330         int rc;
4331
4332         rc = ioctl(fd, LL_IOC_GROUP_UNLOCK, gid);
4333         if (rc < 0) {
4334                 rc = -errno;
4335                 llapi_error(LLAPI_MSG_ERROR, rc, "cannot put group lock");
4336         }
4337         return rc;
4338 }