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