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