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